Merge in v5 code

This commit is contained in:
Ibby Hadeed
2017-12-28 07:28:44 -05:00
parent d43fe72f7b
commit 0f9c21ab42
255 changed files with 11473 additions and 6501 deletions
+22 -9
View File
@@ -1,4 +1,4 @@
import { Plugin, Cordova, IonicNativePlugin } from '@ionic-native/core';
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
import { Injectable } from '@angular/core';
export type LinkedInLoginScopes = 'r_basicprofile' | 'r_emailaddress' | 'rw_company_admin' | 'w_share';
@@ -39,7 +39,7 @@ export type LinkedInLoginScopes = 'r_basicprofile' | 'r_emailaddress' | 'rw_comp
* visibility: {
* code: 'anyone'
* }
* };
* }
*
* this.linkedin.postRequest('~/shares', body)
* .then(res => console.log(res))
@@ -67,13 +67,16 @@ export class LinkedIn extends IonicNativePlugin {
* @return {Promise<any>}
*/
@Cordova()
login(scopes: LinkedInLoginScopes[], promptToInstall: boolean): Promise<any> { return; }
login(scopes: LinkedInLoginScopes[], promptToInstall: boolean): Promise<any> {
return;
}
/**
* Clears the current session
*/
@Cordova({ sync: true })
logout(): void { }
logout(): void {
}
/**
* Make a get request
@@ -81,7 +84,9 @@ export class LinkedIn extends IonicNativePlugin {
* @return {Promise<any>}
*/
@Cordova()
getRequest(path: string): Promise<any> { return; }
getRequest(path: string): Promise<any> {
return;
}
/**
* Make a post request
@@ -90,7 +95,9 @@ export class LinkedIn extends IonicNativePlugin {
* @return {Promise<any>}
*/
@Cordova()
postRequest(path: string, body: any): Promise<any> { return; }
postRequest(path: string, body: any): Promise<any> {
return;
}
/**
* Opens a member's profile
@@ -98,20 +105,26 @@ export class LinkedIn extends IonicNativePlugin {
* @return {Promise<any>}
*/
@Cordova()
openProfile(memberId: string): Promise<any> { return; }
openProfile(memberId: string): Promise<any> {
return;
}
/**
* Checks if there is already an existing active session. This should be used to avoid unnecessary login.
* @return {Promise<boolean>} returns a promise that resolves with a boolean that indicates whether there is an active session
*/
@Cordova()
hasActiveSession(): Promise<boolean> { return; }
hasActiveSession(): Promise<boolean> {
return;
}
/**
* Checks if there is an active session and returns the access token if it exists.
* @return {Promise<any>} returns a promise that resolves with an object that contains an access token if there is an active session
*/
@Cordova()
getActiveSession(): Promise<any> { return; }
getActiveSession(): Promise<any> {
return;
}
}