@dynamic-labs/sdk-api 0.0.878 → 0.0.879

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.878",
3
+ "version": "0.0.879",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -16,6 +16,7 @@ function WalletKeyShareInfoFromJSONTyped(json, ignoreDiscriminator) {
16
16
  'id': json['id'],
17
17
  'backupLocation': json['backupLocation'],
18
18
  'passwordEncrypted': json['passwordEncrypted'],
19
+ 'walletShareDeveloperKeyEncrypted': !runtime.exists(json, 'walletShareDeveloperKeyEncrypted') ? undefined : json['walletShareDeveloperKeyEncrypted'],
19
20
  'externalKeyShareId': !runtime.exists(json, 'externalKeyShareId') ? undefined : json['externalKeyShareId'],
20
21
  'keygenId': !runtime.exists(json, 'keygenId') ? undefined : json['keygenId'],
21
22
  };
@@ -31,6 +32,7 @@ function WalletKeyShareInfoToJSON(value) {
31
32
  'id': value.id,
32
33
  'backupLocation': value.backupLocation,
33
34
  'passwordEncrypted': value.passwordEncrypted,
35
+ 'walletShareDeveloperKeyEncrypted': value.walletShareDeveloperKeyEncrypted,
34
36
  'externalKeyShareId': value.externalKeyShareId,
35
37
  'keygenId': value.keygenId,
36
38
  };
@@ -33,6 +33,12 @@ export interface WalletKeyShareInfo {
33
33
  * @memberof WalletKeyShareInfo
34
34
  */
35
35
  passwordEncrypted: boolean;
36
+ /**
37
+ *
38
+ * @type {boolean}
39
+ * @memberof WalletKeyShareInfo
40
+ */
41
+ walletShareDeveloperKeyEncrypted?: boolean;
36
42
  /**
37
43
  *
38
44
  * @type {string}
@@ -12,6 +12,7 @@ function WalletKeyShareInfoFromJSONTyped(json, ignoreDiscriminator) {
12
12
  'id': json['id'],
13
13
  'backupLocation': json['backupLocation'],
14
14
  'passwordEncrypted': json['passwordEncrypted'],
15
+ 'walletShareDeveloperKeyEncrypted': !exists(json, 'walletShareDeveloperKeyEncrypted') ? undefined : json['walletShareDeveloperKeyEncrypted'],
15
16
  'externalKeyShareId': !exists(json, 'externalKeyShareId') ? undefined : json['externalKeyShareId'],
16
17
  'keygenId': !exists(json, 'keygenId') ? undefined : json['keygenId'],
17
18
  };
@@ -27,6 +28,7 @@ function WalletKeyShareInfoToJSON(value) {
27
28
  'id': value.id,
28
29
  'backupLocation': value.backupLocation,
29
30
  'passwordEncrypted': value.passwordEncrypted,
31
+ 'walletShareDeveloperKeyEncrypted': value.walletShareDeveloperKeyEncrypted,
30
32
  'externalKeyShareId': value.externalKeyShareId,
31
33
  'keygenId': value.keygenId,
32
34
  };
@@ -16,6 +16,7 @@ function WalletKeyShareInfoWithEncryptedAccountCredentialFromJSONTyped(json, ign
16
16
  'id': json['id'],
17
17
  'backupLocation': json['backupLocation'],
18
18
  'passwordEncrypted': json['passwordEncrypted'],
19
+ 'walletShareDeveloperKeyEncrypted': !runtime.exists(json, 'walletShareDeveloperKeyEncrypted') ? undefined : json['walletShareDeveloperKeyEncrypted'],
19
20
  'externalKeyShareId': !runtime.exists(json, 'externalKeyShareId') ? undefined : json['externalKeyShareId'],
20
21
  'keygenId': !runtime.exists(json, 'keygenId') ? undefined : json['keygenId'],
21
22
  'encryptedAccountCredential': !runtime.exists(json, 'encryptedAccountCredential') ? undefined : json['encryptedAccountCredential'],
@@ -32,6 +33,7 @@ function WalletKeyShareInfoWithEncryptedAccountCredentialToJSON(value) {
32
33
  'id': value.id,
33
34
  'backupLocation': value.backupLocation,
34
35
  'passwordEncrypted': value.passwordEncrypted,
36
+ 'walletShareDeveloperKeyEncrypted': value.walletShareDeveloperKeyEncrypted,
35
37
  'externalKeyShareId': value.externalKeyShareId,
36
38
  'keygenId': value.keygenId,
37
39
  'encryptedAccountCredential': value.encryptedAccountCredential,
@@ -33,6 +33,12 @@ export interface WalletKeyShareInfoWithEncryptedAccountCredential {
33
33
  * @memberof WalletKeyShareInfoWithEncryptedAccountCredential
34
34
  */
35
35
  passwordEncrypted: boolean;
36
+ /**
37
+ *
38
+ * @type {boolean}
39
+ * @memberof WalletKeyShareInfoWithEncryptedAccountCredential
40
+ */
41
+ walletShareDeveloperKeyEncrypted?: boolean;
36
42
  /**
37
43
  *
38
44
  * @type {string}
@@ -12,6 +12,7 @@ function WalletKeyShareInfoWithEncryptedAccountCredentialFromJSONTyped(json, ign
12
12
  'id': json['id'],
13
13
  'backupLocation': json['backupLocation'],
14
14
  'passwordEncrypted': json['passwordEncrypted'],
15
+ 'walletShareDeveloperKeyEncrypted': !exists(json, 'walletShareDeveloperKeyEncrypted') ? undefined : json['walletShareDeveloperKeyEncrypted'],
15
16
  'externalKeyShareId': !exists(json, 'externalKeyShareId') ? undefined : json['externalKeyShareId'],
16
17
  'keygenId': !exists(json, 'keygenId') ? undefined : json['keygenId'],
17
18
  'encryptedAccountCredential': !exists(json, 'encryptedAccountCredential') ? undefined : json['encryptedAccountCredential'],
@@ -28,6 +29,7 @@ function WalletKeyShareInfoWithEncryptedAccountCredentialToJSON(value) {
28
29
  'id': value.id,
29
30
  'backupLocation': value.backupLocation,
30
31
  'passwordEncrypted': value.passwordEncrypted,
32
+ 'walletShareDeveloperKeyEncrypted': value.walletShareDeveloperKeyEncrypted,
31
33
  'externalKeyShareId': value.externalKeyShareId,
32
34
  'keygenId': value.keygenId,
33
35
  'encryptedAccountCredential': value.encryptedAccountCredential,