@dynamic-labs/sdk-api 0.0.871 → 0.0.872

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",
3
- "version": "0.0.871",
3
+ "version": "0.0.872",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -17,6 +17,7 @@ function WalletKeyShareInfoFromJSONTyped(json, ignoreDiscriminator) {
17
17
  'backupLocation': json['backupLocation'],
18
18
  'passwordEncrypted': json['passwordEncrypted'],
19
19
  'externalKeyShareId': !runtime.exists(json, 'externalKeyShareId') ? undefined : json['externalKeyShareId'],
20
+ 'keygenId': !runtime.exists(json, 'keygenId') ? undefined : json['keygenId'],
20
21
  };
21
22
  }
22
23
  function WalletKeyShareInfoToJSON(value) {
@@ -31,6 +32,7 @@ function WalletKeyShareInfoToJSON(value) {
31
32
  'backupLocation': value.backupLocation,
32
33
  'passwordEncrypted': value.passwordEncrypted,
33
34
  'externalKeyShareId': value.externalKeyShareId,
35
+ 'keygenId': value.keygenId,
34
36
  };
35
37
  }
36
38
 
@@ -39,6 +39,12 @@ export interface WalletKeyShareInfo {
39
39
  * @memberof WalletKeyShareInfo
40
40
  */
41
41
  externalKeyShareId?: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof WalletKeyShareInfo
46
+ */
47
+ keygenId?: string;
42
48
  }
43
49
  export declare function WalletKeyShareInfoFromJSON(json: any): WalletKeyShareInfo;
44
50
  export declare function WalletKeyShareInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletKeyShareInfo;
@@ -13,6 +13,7 @@ function WalletKeyShareInfoFromJSONTyped(json, ignoreDiscriminator) {
13
13
  'backupLocation': json['backupLocation'],
14
14
  'passwordEncrypted': json['passwordEncrypted'],
15
15
  'externalKeyShareId': !exists(json, 'externalKeyShareId') ? undefined : json['externalKeyShareId'],
16
+ 'keygenId': !exists(json, 'keygenId') ? undefined : json['keygenId'],
16
17
  };
17
18
  }
18
19
  function WalletKeyShareInfoToJSON(value) {
@@ -27,6 +28,7 @@ function WalletKeyShareInfoToJSON(value) {
27
28
  'backupLocation': value.backupLocation,
28
29
  'passwordEncrypted': value.passwordEncrypted,
29
30
  'externalKeyShareId': value.externalKeyShareId,
31
+ 'keygenId': value.keygenId,
30
32
  };
31
33
  }
32
34
 
@@ -17,6 +17,7 @@ function WalletKeyShareInfoWithEncryptedAccountCredentialFromJSONTyped(json, ign
17
17
  'backupLocation': json['backupLocation'],
18
18
  'passwordEncrypted': json['passwordEncrypted'],
19
19
  'externalKeyShareId': !runtime.exists(json, 'externalKeyShareId') ? undefined : json['externalKeyShareId'],
20
+ 'keygenId': !runtime.exists(json, 'keygenId') ? undefined : json['keygenId'],
20
21
  'encryptedAccountCredential': !runtime.exists(json, 'encryptedAccountCredential') ? undefined : json['encryptedAccountCredential'],
21
22
  };
22
23
  }
@@ -32,6 +33,7 @@ function WalletKeyShareInfoWithEncryptedAccountCredentialToJSON(value) {
32
33
  'backupLocation': value.backupLocation,
33
34
  'passwordEncrypted': value.passwordEncrypted,
34
35
  'externalKeyShareId': value.externalKeyShareId,
36
+ 'keygenId': value.keygenId,
35
37
  'encryptedAccountCredential': value.encryptedAccountCredential,
36
38
  };
37
39
  }
@@ -39,6 +39,12 @@ export interface WalletKeyShareInfoWithEncryptedAccountCredential {
39
39
  * @memberof WalletKeyShareInfoWithEncryptedAccountCredential
40
40
  */
41
41
  externalKeyShareId?: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof WalletKeyShareInfoWithEncryptedAccountCredential
46
+ */
47
+ keygenId?: string;
42
48
  /**
43
49
  * A string with a max length of 4096 characters
44
50
  * @type {string}
@@ -13,6 +13,7 @@ function WalletKeyShareInfoWithEncryptedAccountCredentialFromJSONTyped(json, ign
13
13
  'backupLocation': json['backupLocation'],
14
14
  'passwordEncrypted': json['passwordEncrypted'],
15
15
  'externalKeyShareId': !exists(json, 'externalKeyShareId') ? undefined : json['externalKeyShareId'],
16
+ 'keygenId': !exists(json, 'keygenId') ? undefined : json['keygenId'],
16
17
  'encryptedAccountCredential': !exists(json, 'encryptedAccountCredential') ? undefined : json['encryptedAccountCredential'],
17
18
  };
18
19
  }
@@ -28,6 +29,7 @@ function WalletKeyShareInfoWithEncryptedAccountCredentialToJSON(value) {
28
29
  'backupLocation': value.backupLocation,
29
30
  'passwordEncrypted': value.passwordEncrypted,
30
31
  'externalKeyShareId': value.externalKeyShareId,
32
+ 'keygenId': value.keygenId,
31
33
  'encryptedAccountCredential': value.encryptedAccountCredential,
32
34
  };
33
35
  }