@dynamic-labs/sdk-api 0.0.791 → 0.0.792

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.791",
3
+ "version": "0.0.792",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -18,6 +18,7 @@ function ReshareRequestFromJSONTyped(json, ignoreDiscriminator) {
18
18
  'oldThresholdSignatureScheme': ThresholdSignatureScheme.ThresholdSignatureSchemeFromJSON(json['oldThresholdSignatureScheme']),
19
19
  'newThresholdSignatureScheme': ThresholdSignatureScheme.ThresholdSignatureSchemeFromJSON(json['newThresholdSignatureScheme']),
20
20
  'delegateToProjectEnvironment': !runtime.exists(json, 'delegateToProjectEnvironment') ? undefined : json['delegateToProjectEnvironment'],
21
+ 'revokeDelegation': !runtime.exists(json, 'revokeDelegation') ? undefined : json['revokeDelegation'],
21
22
  };
22
23
  }
23
24
  function ReshareRequestToJSON(value) {
@@ -32,6 +33,7 @@ function ReshareRequestToJSON(value) {
32
33
  'oldThresholdSignatureScheme': ThresholdSignatureScheme.ThresholdSignatureSchemeToJSON(value.oldThresholdSignatureScheme),
33
34
  'newThresholdSignatureScheme': ThresholdSignatureScheme.ThresholdSignatureSchemeToJSON(value.newThresholdSignatureScheme),
34
35
  'delegateToProjectEnvironment': value.delegateToProjectEnvironment,
36
+ 'revokeDelegation': value.revokeDelegation,
35
37
  };
36
38
  }
37
39
 
@@ -40,6 +40,12 @@ export interface ReshareRequest {
40
40
  * @memberof ReshareRequest
41
41
  */
42
42
  delegateToProjectEnvironment?: boolean;
43
+ /**
44
+ *
45
+ * @type {boolean}
46
+ * @memberof ReshareRequest
47
+ */
48
+ revokeDelegation?: boolean;
43
49
  }
44
50
  export declare function ReshareRequestFromJSON(json: any): ReshareRequest;
45
51
  export declare function ReshareRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReshareRequest;
@@ -14,6 +14,7 @@ function ReshareRequestFromJSONTyped(json, ignoreDiscriminator) {
14
14
  'oldThresholdSignatureScheme': ThresholdSignatureSchemeFromJSON(json['oldThresholdSignatureScheme']),
15
15
  'newThresholdSignatureScheme': ThresholdSignatureSchemeFromJSON(json['newThresholdSignatureScheme']),
16
16
  'delegateToProjectEnvironment': !exists(json, 'delegateToProjectEnvironment') ? undefined : json['delegateToProjectEnvironment'],
17
+ 'revokeDelegation': !exists(json, 'revokeDelegation') ? undefined : json['revokeDelegation'],
17
18
  };
18
19
  }
19
20
  function ReshareRequestToJSON(value) {
@@ -28,6 +29,7 @@ function ReshareRequestToJSON(value) {
28
29
  'oldThresholdSignatureScheme': ThresholdSignatureSchemeToJSON(value.oldThresholdSignatureScheme),
29
30
  'newThresholdSignatureScheme': ThresholdSignatureSchemeToJSON(value.newThresholdSignatureScheme),
30
31
  'delegateToProjectEnvironment': value.delegateToProjectEnvironment,
32
+ 'revokeDelegation': value.revokeDelegation,
31
33
  };
32
34
  }
33
35