@fiado/type-kit 1.6.85 → 1.6.87

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.
@@ -1,5 +1,6 @@
1
+ import { SyncStatus } from "../enums/SyncStatus";
1
2
  export declare class GetUserResponse {
2
3
  identityId: string;
3
4
  userStatus: string;
4
- regionSync?: boolean;
5
+ syncStatus?: SyncStatus;
5
6
  }
@@ -1,7 +1,8 @@
1
+ import { SyncStatus } from "../enums/SyncStatus";
1
2
  export declare class SignInResponse {
2
3
  accessToken?: string;
3
4
  refreshToken?: string;
4
5
  challengeName?: string;
5
6
  session?: string;
6
- regionSync?: boolean;
7
+ syncStatus?: SyncStatus;
7
8
  }
@@ -1,4 +1,5 @@
1
+ import { SyncStatus } from "../enums/SyncStatus";
1
2
  export declare class SignUpResponse {
2
3
  identityId: string;
3
- regionSync?: boolean;
4
+ syncStatus?: SyncStatus;
4
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.6.85",
3
+ "version": "1.6.87",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -1,3 +1,4 @@
1
+ import { SyncStatus } from "../enums/SyncStatus";
1
2
 
2
3
 
3
4
 
@@ -5,6 +6,5 @@ export class GetUserResponse {
5
6
 
6
7
  identityId: string
7
8
  userStatus: string
8
- regionSync?: boolean
9
-
9
+ syncStatus?: SyncStatus;
10
10
  }
@@ -1,3 +1,4 @@
1
+ import { SyncStatus } from "../enums/SyncStatus";
1
2
 
2
3
 
3
4
 
@@ -7,6 +8,5 @@ export class SignInResponse {
7
8
  refreshToken?: string
8
9
  challengeName?: string
9
10
  session?: string
10
- regionSync?: boolean
11
-
11
+ syncStatus?: SyncStatus;
12
12
  }
@@ -1,8 +1,9 @@
1
+ import { SyncStatus } from "../enums/SyncStatus";
1
2
 
2
3
 
3
4
 
4
5
  export class SignUpResponse {
5
6
 
6
7
  identityId: string;
7
- regionSync?: boolean;
8
+ syncStatus?: SyncStatus;
8
9
  }