@expressms/smartapp-sdk 1.5.0-alpha.4 → 1.5.0-alpha.5

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.
@@ -66,6 +66,6 @@ export interface File {
66
66
  export interface StatusResponse extends EmitterEventPayload {
67
67
  payload: {
68
68
  status: STATUS;
69
- errorCode?: string;
69
+ errorCode?: string | null;
70
70
  };
71
71
  }
@@ -10,6 +10,7 @@ export type StorageErrorType = CLIENT_STORAGE_ERROR_CODES | null;
10
10
  export interface ClientStorageGetResponse extends EmitterEventPayload {
11
11
  payload: {
12
12
  status: STATUS;
13
+ errorCode?: string | null;
13
14
  value: StorageValueType;
14
15
  };
15
16
  }
@@ -66,6 +66,6 @@ export interface File {
66
66
  export interface StatusResponse extends EmitterEventPayload {
67
67
  payload: {
68
68
  status: STATUS;
69
- errorCode?: string;
69
+ errorCode?: string | null;
70
70
  };
71
71
  }
@@ -10,6 +10,7 @@ export type StorageErrorType = CLIENT_STORAGE_ERROR_CODES | null;
10
10
  export interface ClientStorageGetResponse extends EmitterEventPayload {
11
11
  payload: {
12
12
  status: STATUS;
13
+ errorCode?: string | null;
13
14
  value: StorageValueType;
14
15
  };
15
16
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expressms/smartapp-sdk",
3
- "version": "1.5.0-alpha.4",
3
+ "version": "1.5.0-alpha.5",
4
4
  "description": "Smartapp SDK",
5
5
  "main": "build/main/index.js",
6
6
  "typings": "build/main/index.d.ts",