@dynamic-labs/sdk-api 0.0.778 → 0.0.779

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.778",
3
+ "version": "0.0.779",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -16,6 +16,7 @@ function BackupKeySharesToLocationsRequestLocationsFromJSONTyped(json, ignoreDis
16
16
  }
17
17
  return {
18
18
  'location': WaasBackupOptionsEnum.WaasBackupOptionsEnumFromJSON(json['location']),
19
+ 'keygenId': !runtime.exists(json, 'keygenId') ? undefined : json['keygenId'],
19
20
  'thresholdSignatureScheme': !runtime.exists(json, 'thresholdSignatureScheme') ? undefined : ThresholdSignatureScheme.ThresholdSignatureSchemeFromJSON(json['thresholdSignatureScheme']),
20
21
  'externalKeyShareId': !runtime.exists(json, 'externalKeyShareId') ? undefined : json['externalKeyShareId'],
21
22
  };
@@ -29,6 +30,7 @@ function BackupKeySharesToLocationsRequestLocationsToJSON(value) {
29
30
  }
30
31
  return {
31
32
  'location': WaasBackupOptionsEnum.WaasBackupOptionsEnumToJSON(value.location),
33
+ 'keygenId': value.keygenId,
32
34
  'thresholdSignatureScheme': ThresholdSignatureScheme.ThresholdSignatureSchemeToJSON(value.thresholdSignatureScheme),
33
35
  'externalKeyShareId': value.externalKeyShareId,
34
36
  };
@@ -23,6 +23,12 @@ export interface BackupKeySharesToLocationsRequestLocations {
23
23
  * @memberof BackupKeySharesToLocationsRequestLocations
24
24
  */
25
25
  location: WaasBackupOptionsEnum;
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof BackupKeySharesToLocationsRequestLocations
30
+ */
31
+ keygenId?: string;
26
32
  /**
27
33
  *
28
34
  * @type {ThresholdSignatureScheme}
@@ -12,6 +12,7 @@ function BackupKeySharesToLocationsRequestLocationsFromJSONTyped(json, ignoreDis
12
12
  }
13
13
  return {
14
14
  'location': WaasBackupOptionsEnumFromJSON(json['location']),
15
+ 'keygenId': !exists(json, 'keygenId') ? undefined : json['keygenId'],
15
16
  'thresholdSignatureScheme': !exists(json, 'thresholdSignatureScheme') ? undefined : ThresholdSignatureSchemeFromJSON(json['thresholdSignatureScheme']),
16
17
  'externalKeyShareId': !exists(json, 'externalKeyShareId') ? undefined : json['externalKeyShareId'],
17
18
  };
@@ -25,6 +26,7 @@ function BackupKeySharesToLocationsRequestLocationsToJSON(value) {
25
26
  }
26
27
  return {
27
28
  'location': WaasBackupOptionsEnumToJSON(value.location),
29
+ 'keygenId': value.keygenId,
28
30
  'thresholdSignatureScheme': ThresholdSignatureSchemeToJSON(value.thresholdSignatureScheme),
29
31
  'externalKeyShareId': value.externalKeyShareId,
30
32
  };