@dynamic-labs/sdk-api-core 0.0.947 → 0.0.948

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/sdk-api-core",
3
- "version": "0.0.947",
3
+ "version": "0.0.948",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -67,6 +67,7 @@ function DynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
67
67
  'originalSid': !runtime.exists(json, 'originalSid') ? undefined : json['originalSid'],
68
68
  'refreshExp': !runtime.exists(json, 'refreshExp') ? undefined : json['refreshExp'],
69
69
  'sdkVersion': !runtime.exists(json, 'sdkVersion') ? undefined : json['sdkVersion'],
70
+ 'deviceRegistrationId': !runtime.exists(json, 'deviceRegistrationId') ? undefined : json['deviceRegistrationId'],
70
71
  };
71
72
  }
72
73
  function DynamicJwtToJSON(value) {
@@ -126,6 +127,7 @@ function DynamicJwtToJSON(value) {
126
127
  'originalSid': value.originalSid,
127
128
  'refreshExp': value.refreshExp,
128
129
  'sdkVersion': value.sdkVersion,
130
+ 'deviceRegistrationId': value.deviceRegistrationId,
129
131
  };
130
132
  }
131
133
 
@@ -314,6 +314,12 @@ export interface DynamicJwt {
314
314
  * @memberof DynamicJwt
315
315
  */
316
316
  sdkVersion?: string;
317
+ /**
318
+ *
319
+ * @type {string}
320
+ * @memberof DynamicJwt
321
+ */
322
+ deviceRegistrationId?: string | null;
317
323
  }
318
324
  export declare function DynamicJwtFromJSON(json: any): DynamicJwt;
319
325
  export declare function DynamicJwtFromJSONTyped(json: any, ignoreDiscriminator: boolean): DynamicJwt;
@@ -63,6 +63,7 @@ function DynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
63
63
  'originalSid': !exists(json, 'originalSid') ? undefined : json['originalSid'],
64
64
  'refreshExp': !exists(json, 'refreshExp') ? undefined : json['refreshExp'],
65
65
  'sdkVersion': !exists(json, 'sdkVersion') ? undefined : json['sdkVersion'],
66
+ 'deviceRegistrationId': !exists(json, 'deviceRegistrationId') ? undefined : json['deviceRegistrationId'],
66
67
  };
67
68
  }
68
69
  function DynamicJwtToJSON(value) {
@@ -122,6 +123,7 @@ function DynamicJwtToJSON(value) {
122
123
  'originalSid': value.originalSid,
123
124
  'refreshExp': value.refreshExp,
124
125
  'sdkVersion': value.sdkVersion,
126
+ 'deviceRegistrationId': value.deviceRegistrationId,
125
127
  };
126
128
  }
127
129
 
@@ -34,6 +34,7 @@ function MinifiedDynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
34
34
  'originalSid': !runtime.exists(json, 'originalSid') ? undefined : json['originalSid'],
35
35
  'refreshExp': !runtime.exists(json, 'refreshExp') ? undefined : json['refreshExp'],
36
36
  'sdkVersion': !runtime.exists(json, 'sdkVersion') ? undefined : json['sdkVersion'],
37
+ 'deviceRegistrationId': !runtime.exists(json, 'deviceRegistrationId') ? undefined : json['deviceRegistrationId'],
37
38
  };
38
39
  }
39
40
  function MinifiedDynamicJwtToJSON(value) {
@@ -64,6 +65,7 @@ function MinifiedDynamicJwtToJSON(value) {
64
65
  'originalSid': value.originalSid,
65
66
  'refreshExp': value.refreshExp,
66
67
  'sdkVersion': value.sdkVersion,
68
+ 'deviceRegistrationId': value.deviceRegistrationId,
67
69
  };
68
70
  }
69
71
 
@@ -136,6 +136,12 @@ export interface MinifiedDynamicJwt {
136
136
  * @memberof MinifiedDynamicJwt
137
137
  */
138
138
  sdkVersion?: string;
139
+ /**
140
+ *
141
+ * @type {string}
142
+ * @memberof MinifiedDynamicJwt
143
+ */
144
+ deviceRegistrationId?: string | null;
139
145
  }
140
146
  export declare function MinifiedDynamicJwtFromJSON(json: any): MinifiedDynamicJwt;
141
147
  export declare function MinifiedDynamicJwtFromJSONTyped(json: any, ignoreDiscriminator: boolean): MinifiedDynamicJwt;
@@ -30,6 +30,7 @@ function MinifiedDynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
30
30
  'originalSid': !exists(json, 'originalSid') ? undefined : json['originalSid'],
31
31
  'refreshExp': !exists(json, 'refreshExp') ? undefined : json['refreshExp'],
32
32
  'sdkVersion': !exists(json, 'sdkVersion') ? undefined : json['sdkVersion'],
33
+ 'deviceRegistrationId': !exists(json, 'deviceRegistrationId') ? undefined : json['deviceRegistrationId'],
33
34
  };
34
35
  }
35
36
  function MinifiedDynamicJwtToJSON(value) {
@@ -60,6 +61,7 @@ function MinifiedDynamicJwtToJSON(value) {
60
61
  'originalSid': value.originalSid,
61
62
  'refreshExp': value.refreshExp,
62
63
  'sdkVersion': value.sdkVersion,
64
+ 'deviceRegistrationId': value.deviceRegistrationId,
63
65
  };
64
66
  }
65
67