@unvired/unvired-ts-core-sdk 0.0.19 → 0.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BuildNo.txt +1 -1
- package/index.d.ts +5 -5
- package/index.js +103 -102
- package/package.json +1 -1
package/BuildNo.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
R-0.000.
|
|
1
|
+
R-0.000.0021
|
package/index.d.ts
CHANGED
|
@@ -221,7 +221,7 @@ declare module '@unvired/unvired-ts-core-sdk/authenticationService' {
|
|
|
221
221
|
login(loginParameters: LoginParameters): Promise<any>;
|
|
222
222
|
loginWithDemoData(loginParameters: any): Promise<any>;
|
|
223
223
|
logout(): Promise<any>;
|
|
224
|
-
clearData(): Promise<any>;
|
|
224
|
+
clearData(message?: string): Promise<any>;
|
|
225
225
|
authenticateAndActivate(loginParameters: any): Promise<any>;
|
|
226
226
|
authenticateLocal(loginParameters: any): Promise<any>;
|
|
227
227
|
getAllAccounts(): Promise<any>;
|
|
@@ -656,7 +656,7 @@ declare module '@unvired/unvired-ts-core-sdk/helper/serverResponseHandler' {
|
|
|
656
656
|
|
|
657
657
|
}
|
|
658
658
|
declare module '@unvired/unvired-ts-core-sdk/helper/serviceConstants' {
|
|
659
|
-
export const FrameworkVersionNumber = "0.0.
|
|
659
|
+
export const FrameworkVersionNumber = "0.0.21";
|
|
660
660
|
export const FrameworkBuildNumber = "${BUILD_NUMBER}";
|
|
661
661
|
export const FrameworkRevisionNumber = "f4444dd36a88188c063db5fe24a4eaa8b7d22106";
|
|
662
662
|
export const FrameworkRevisionUrl = "";
|
|
@@ -901,7 +901,7 @@ declare module '@unvired/unvired-ts-core-sdk/helper/settingsHelper' {
|
|
|
901
901
|
}>): Promise<void>;
|
|
902
902
|
static testPushNotification(): Promise<void>;
|
|
903
903
|
static getCompleteLogs(): Promise<string>;
|
|
904
|
-
static getInfoMessages(): Promise<any[]>;
|
|
904
|
+
static getInfoMessages(headerName: string, lid: string): Promise<any[]>;
|
|
905
905
|
static setRequestTimeout(timeout: number): Promise<void>;
|
|
906
906
|
static getRequestTimeout(): Promise<number>;
|
|
907
907
|
static setLogLevel(logLevel: string): Promise<void>;
|
|
@@ -1506,7 +1506,7 @@ declare module '@unvired/unvired-ts-core-sdk/platform/PlatformInterface' {
|
|
|
1506
1506
|
* Main Platform Adapter Interface
|
|
1507
1507
|
*/
|
|
1508
1508
|
export interface PlatformInterface {
|
|
1509
|
-
getDeviceInfo():
|
|
1509
|
+
getDeviceInfo(): IDeviceInfo;
|
|
1510
1510
|
getPlatform(): string;
|
|
1511
1511
|
getFrontendType(): string;
|
|
1512
1512
|
getDocumentDirectory(): string;
|
|
@@ -1586,7 +1586,7 @@ declare module '@unvired/unvired-ts-core-sdk/platform/PlatformManager' {
|
|
|
1586
1586
|
declare module '@unvired/unvired-ts-core-sdk/platform/ReactNativePlatformAdapter' {
|
|
1587
1587
|
import { PlatformInterface, IDeviceInfo, IFileEntry, IDatabaseAdapter, IPushNotificationAdapter, ILoggerAdapter, IStorageAdapter } from '@unvired/unvired-ts-core-sdk/platform/PlatformInterface';
|
|
1588
1588
|
export class ReactNativePlatformAdapter implements PlatformInterface {
|
|
1589
|
-
getDeviceInfo():
|
|
1589
|
+
getDeviceInfo(): IDeviceInfo;
|
|
1590
1590
|
getPlatform(): string;
|
|
1591
1591
|
getFrontendType(): string;
|
|
1592
1592
|
getDocumentDirectory(): string;
|