@dynamic-labs/sdk-api-core 0.0.1108 → 0.0.1110

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.1108",
3
+ "version": "0.0.1110",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -5314,7 +5314,7 @@ class SDKApi extends runtime.BaseAPI {
5314
5314
  return await response.value();
5315
5315
  }
5316
5316
  /**
5317
- * Returns the Composition Layer content for the calling wallet\'s own active Signer, or (given signerId) another share set of the same wallet — e.g. a delegated share set — without mutating it. Only the wallet\'s own owner may target another share set\'s signerId.
5317
+ * Returns the Composition Layer content for the calling wallet\'s own active Signer, or (given shareSetId) another share set of the same wallet — e.g. a delegated share set — without mutating it. Only the wallet\'s own owner may target another share set.
5318
5318
  * Get a signer-Layer\'s Rules
5319
5319
  */
5320
5320
  async getWaasSignerSelfPolicyLayerRaw(requestParameters, initOverrides) {
@@ -5325,8 +5325,8 @@ class SDKApi extends runtime.BaseAPI {
5325
5325
  throw new runtime.RequiredError('walletId', 'Required parameter requestParameters.walletId was null or undefined when calling getWaasSignerSelfPolicyLayer.');
5326
5326
  }
5327
5327
  const queryParameters = {};
5328
- if (requestParameters.signerId !== undefined) {
5329
- queryParameters['signerId'] = requestParameters.signerId;
5328
+ if (requestParameters.shareSetId !== undefined) {
5329
+ queryParameters['shareSetId'] = requestParameters.shareSetId;
5330
5330
  }
5331
5331
  const headerParameters = {};
5332
5332
  if (this.configuration && this.configuration.accessToken) {
@@ -5345,7 +5345,7 @@ class SDKApi extends runtime.BaseAPI {
5345
5345
  return new runtime.JSONApiResponse(response, (jsonValue) => WaasPolicyLayerResponse.WaasPolicyLayerResponseFromJSON(jsonValue));
5346
5346
  }
5347
5347
  /**
5348
- * Returns the Composition Layer content for the calling wallet\'s own active Signer, or (given signerId) another share set of the same wallet — e.g. a delegated share set — without mutating it. Only the wallet\'s own owner may target another share set\'s signerId.
5348
+ * Returns the Composition Layer content for the calling wallet\'s own active Signer, or (given shareSetId) another share set of the same wallet — e.g. a delegated share set — without mutating it. Only the wallet\'s own owner may target another share set.
5349
5349
  * Get a signer-Layer\'s Rules
5350
5350
  */
5351
5351
  async getWaasSignerSelfPolicyLayer(requestParameters, initOverrides) {
@@ -10626,7 +10626,7 @@ class SDKApi extends runtime.BaseAPI {
10626
10626
  await this.updateUserMfaDeviceRaw(requestParameters, initOverrides);
10627
10627
  }
10628
10628
  /**
10629
- * Applies a single per-Rule upsert (create when ruleId is new, update when it already exists) or remove operation to the calling wallet\'s own signer-Layer, or (given signerId in the request body) another share set of the same wallet — e.g. a delegated share set. Only the wallet\'s own owner may target another share set\'s signerId. Field permissions, grant/authorship, and the remove-vs-marker decision are enforced by wallet-service, not this route.
10629
+ * Applies a single per-Rule upsert (create when ruleId is new, update when it already exists) or remove operation to the calling wallet\'s own signer-Layer, or (given shareSetId in the request body) another share set of the same wallet — e.g. a delegated share set. Only the wallet\'s own owner may target another share set. Field permissions, grant/authorship, and the remove-vs-marker decision are enforced by wallet-service, not this route.
10630
10630
  * Create, update, or remove a Rule on a signer-Layer
10631
10631
  */
10632
10632
  async updateWaasSignerSelfPolicyLayerRaw(requestParameters, initOverrides) {
@@ -10659,7 +10659,7 @@ class SDKApi extends runtime.BaseAPI {
10659
10659
  return new runtime.JSONApiResponse(response, (jsonValue) => WaasPolicyLayerResponse.WaasPolicyLayerResponseFromJSON(jsonValue));
10660
10660
  }
10661
10661
  /**
10662
- * Applies a single per-Rule upsert (create when ruleId is new, update when it already exists) or remove operation to the calling wallet\'s own signer-Layer, or (given signerId in the request body) another share set of the same wallet — e.g. a delegated share set. Only the wallet\'s own owner may target another share set\'s signerId. Field permissions, grant/authorship, and the remove-vs-marker decision are enforced by wallet-service, not this route.
10662
+ * Applies a single per-Rule upsert (create when ruleId is new, update when it already exists) or remove operation to the calling wallet\'s own signer-Layer, or (given shareSetId in the request body) another share set of the same wallet — e.g. a delegated share set. Only the wallet\'s own owner may target another share set. Field permissions, grant/authorship, and the remove-vs-marker decision are enforced by wallet-service, not this route.
10663
10663
  * Create, update, or remove a Rule on a signer-Layer
10664
10664
  */
10665
10665
  async updateWaasSignerSelfPolicyLayer(requestParameters, initOverrides) {