@dynamic-labs/sdk-api-core 0.0.677 → 0.0.678

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.677",
3
+ "version": "0.0.678",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -25,6 +25,7 @@ function DynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
25
25
  'exp': !runtime.exists(json, 'exp') ? undefined : json['exp'],
26
26
  'iat': !runtime.exists(json, 'iat') ? undefined : json['iat'],
27
27
  'sid': json['sid'],
28
+ 'sessionPublicKey': !runtime.exists(json, 'session_public_key') ? undefined : json['session_public_key'],
28
29
  'alias': !runtime.exists(json, 'alias') ? undefined : json['alias'],
29
30
  'blockchainAccounts': !runtime.exists(json, 'blockchain_accounts') ? undefined : (json['blockchain_accounts'].map(JwtBlockchainAccount.JwtBlockchainAccountFromJSON)),
30
31
  'country': !runtime.exists(json, 'country') ? undefined : json['country'],
@@ -77,6 +78,7 @@ function DynamicJwtToJSON(value) {
77
78
  'exp': value.exp,
78
79
  'iat': value.iat,
79
80
  'sid': value.sid,
81
+ 'session_public_key': value.sessionPublicKey,
80
82
  'alias': value.alias,
81
83
  'blockchain_accounts': value.blockchainAccounts === undefined ? undefined : (value.blockchainAccounts.map(JwtBlockchainAccount.JwtBlockchainAccountToJSON)),
82
84
  'country': value.country,
@@ -62,6 +62,12 @@ export interface DynamicJwt {
62
62
  * @memberof DynamicJwt
63
63
  */
64
64
  sid: string;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof DynamicJwt
69
+ */
70
+ sessionPublicKey?: string;
65
71
  /**
66
72
  *
67
73
  * @type {string}
@@ -21,6 +21,7 @@ function DynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
21
21
  'exp': !exists(json, 'exp') ? undefined : json['exp'],
22
22
  'iat': !exists(json, 'iat') ? undefined : json['iat'],
23
23
  'sid': json['sid'],
24
+ 'sessionPublicKey': !exists(json, 'session_public_key') ? undefined : json['session_public_key'],
24
25
  'alias': !exists(json, 'alias') ? undefined : json['alias'],
25
26
  'blockchainAccounts': !exists(json, 'blockchain_accounts') ? undefined : (json['blockchain_accounts'].map(JwtBlockchainAccountFromJSON)),
26
27
  'country': !exists(json, 'country') ? undefined : json['country'],
@@ -73,6 +74,7 @@ function DynamicJwtToJSON(value) {
73
74
  'exp': value.exp,
74
75
  'iat': value.iat,
75
76
  'sid': value.sid,
77
+ 'session_public_key': value.sessionPublicKey,
76
78
  'alias': value.alias,
77
79
  'blockchain_accounts': value.blockchainAccounts === undefined ? undefined : (value.blockchainAccounts.map(JwtBlockchainAccountToJSON)),
78
80
  'country': value.country,