From 09962644834cc3995cffb3d01422a72556973b71 Mon Sep 17 00:00:00 2001 From: mhartington Date: Wed, 17 May 2017 15:00:00 -0400 Subject: [PATCH 1/5] docs(file): set classes to hidden Set classes to hidden to prevent doc generation --- src/@ionic-native/plugins/file/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/@ionic-native/plugins/file/index.ts b/src/@ionic-native/plugins/file/index.ts index 12d06a550..d85e08c66 100644 --- a/src/@ionic-native/plugins/file/index.ts +++ b/src/@ionic-native/plugins/file/index.ts @@ -489,6 +489,7 @@ export declare class FileSaver extends EventTarget { } /** + * @hidden * This interface expands on the FileSaver interface to allow for multiple write actions, rather than just saving a single Blob. */ export declare class FileWriter extends FileSaver { @@ -528,6 +529,7 @@ export interface IWriteOptions { truncate?: number; // if present, number of bytes to truncate file to before writing } +/** @hidden */ export declare class FileError { constructor(code: number); static NOT_FOUND_ERR: number; @@ -547,6 +549,7 @@ export declare class FileError { message: string; } +/** @hidden */ export declare class FileReader { static EMPTY: number; static LOADING: number; From 36be795623602649591ece54d11dfe5d74f6ff14 Mon Sep 17 00:00:00 2001 From: mhartington Date: Wed, 17 May 2017 15:14:25 -0400 Subject: [PATCH 2/5] docs(file): set filesaver class to hidden --- src/@ionic-native/plugins/file/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/@ionic-native/plugins/file/index.ts b/src/@ionic-native/plugins/file/index.ts index d85e08c66..1b67c7960 100644 --- a/src/@ionic-native/plugins/file/index.ts +++ b/src/@ionic-native/plugins/file/index.ts @@ -400,6 +400,7 @@ export interface RemoveResult { fileRemoved: Entry; } +/** @hidden */ export declare class FileSaver extends EventTarget { /** * When the FileSaver constructor is called, the user agent must return a new FileSaver object with readyState set to INIT. From 5b82d82d7587f1cadf619da2e199e3263c28f0b4 Mon Sep 17 00:00:00 2001 From: Ibby Hadeed Date: Wed, 17 May 2017 16:33:52 -0400 Subject: [PATCH 3/5] Update index.ts --- src/@ionic-native/plugins/flurry-analytics/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/@ionic-native/plugins/flurry-analytics/index.ts b/src/@ionic-native/plugins/flurry-analytics/index.ts index 3acfff93b..8689f8768 100644 --- a/src/@ionic-native/plugins/flurry-analytics/index.ts +++ b/src/@ionic-native/plugins/flurry-analytics/index.ts @@ -72,6 +72,9 @@ export interface FlurryAnalyticsLocation { horizontalAccuracy?: number; } +/** +* @hidden +*/ export class FlurryAnalyticsObject { constructor(private _objectInstance: any) { } From c0c0c5cec52504a20593f24ac7f90d4688861a03 Mon Sep 17 00:00:00 2001 From: Matias Solis de la Torre Date: Fri, 19 May 2017 00:38:58 -0300 Subject: [PATCH 4/5] docs(): update install command (#1584) --- src/@ionic-native/plugins/google-plus/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/@ionic-native/plugins/google-plus/index.ts b/src/@ionic-native/plugins/google-plus/index.ts index d882ad43f..3288a66e5 100644 --- a/src/@ionic-native/plugins/google-plus/index.ts +++ b/src/@ionic-native/plugins/google-plus/index.ts @@ -24,7 +24,7 @@ import { Cordova, Plugin, IonicNativePlugin } from '@ionic-native/core'; pluginRef: 'window.plugins.googleplus', repo: 'https://github.com/EddyVerbruggen/cordova-plugin-googleplus', platforms: ['Web', 'Android', 'iOS'], - install: 'ionic plugin add cordova-plugin-googleplus --variable REVERSED_CLIENT_ID=myreversedclientid', + install: 'ionic cordova plugin add cordova-plugin-googleplus --variable REVERSED_CLIENT_ID=myreversedclientid', installVariables: ['REVERSED_CLIENT_ID'] }) @Injectable() From 61c73eaa4e9d03dd7aed4220d1e01bc377325def Mon Sep 17 00:00:00 2001 From: seshachalamyv Date: Fri, 19 May 2017 09:09:31 +0530 Subject: [PATCH 5/5] docs(): fix package name in import statement (#1581) import { FCM } from 'ionic-native'; Corrected as import { FCM } from '@ionic-native/fcm'; --- src/@ionic-native/plugins/fcm/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/@ionic-native/plugins/fcm/index.ts b/src/@ionic-native/plugins/fcm/index.ts index 4b0a52c0f..053e492ef 100644 --- a/src/@ionic-native/plugins/fcm/index.ts +++ b/src/@ionic-native/plugins/fcm/index.ts @@ -25,7 +25,7 @@ export interface NotificationData { * * @usage * ```typescript - * import { FCM } from 'ionic-native'; + * import { FCM } from '@ionic-native/fcm'; * * constructor(private fcm: FCM) {} *