@unvired/unvired-ts-core-sdk 0.0.20 → 0.0.22
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 +3 -3
- package/index.js +107 -77
- package/package.json +1 -1
package/BuildNo.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
R-0.000.
|
|
1
|
+
R-0.000.0022
|
package/index.d.ts
CHANGED
|
@@ -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.22";
|
|
660
660
|
export const FrameworkBuildNumber = "${BUILD_NUMBER}";
|
|
661
661
|
export const FrameworkRevisionNumber = "f4444dd36a88188c063db5fe24a4eaa8b7d22106";
|
|
662
662
|
export const FrameworkRevisionUrl = "";
|
|
@@ -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;
|