@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.
@@ -662,7 +662,7 @@ export interface GetUserPasskeysRequest {
662
662
  export interface GetWaasSignerSelfPolicyLayerRequest {
663
663
  environmentId: string;
664
664
  walletId: string;
665
- signerId?: string;
665
+ shareSetId?: string;
666
666
  }
667
667
  export interface GetWaasWalletSelfPolicyLayerRequest {
668
668
  environmentId: string;
@@ -2956,12 +2956,12 @@ export declare class SDKApi extends runtime.BaseAPI {
2956
2956
  */
2957
2957
  getUserPasskeys(requestParameters: GetUserPasskeysRequest, initOverrides?: RequestInit): Promise<GetUserPasskeysResponse>;
2958
2958
  /**
2959
- * 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.
2959
+ * 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.
2960
2960
  * Get a signer-Layer\'s Rules
2961
2961
  */
2962
2962
  getWaasSignerSelfPolicyLayerRaw(requestParameters: GetWaasSignerSelfPolicyLayerRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<WaasPolicyLayerResponse>>;
2963
2963
  /**
2964
- * 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.
2964
+ * 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.
2965
2965
  * Get a signer-Layer\'s Rules
2966
2966
  */
2967
2967
  getWaasSignerSelfPolicyLayer(requestParameters: GetWaasSignerSelfPolicyLayerRequest, initOverrides?: RequestInit): Promise<WaasPolicyLayerResponse>;
@@ -4534,12 +4534,12 @@ export declare class SDKApi extends runtime.BaseAPI {
4534
4534
  */
4535
4535
  updateUserMfaDevice(requestParameters: UpdateUserMfaDeviceRequest, initOverrides?: RequestInit): Promise<void>;
4536
4536
  /**
4537
- * 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.
4537
+ * 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.
4538
4538
  * Create, update, or remove a Rule on a signer-Layer
4539
4539
  */
4540
4540
  updateWaasSignerSelfPolicyLayerRaw(requestParameters: UpdateWaasSignerSelfPolicyLayerRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<WaasPolicyLayerResponse>>;
4541
4541
  /**
4542
- * 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.
4542
+ * 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.
4543
4543
  * Create, update, or remove a Rule on a signer-Layer
4544
4544
  */
4545
4545
  updateWaasSignerSelfPolicyLayer(requestParameters: UpdateWaasSignerSelfPolicyLayerRequest, initOverrides?: RequestInit): Promise<WaasPolicyLayerResponse>;
@@ -5310,7 +5310,7 @@ class SDKApi extends BaseAPI {
5310
5310
  return await response.value();
5311
5311
  }
5312
5312
  /**
5313
- * 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.
5313
+ * 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.
5314
5314
  * Get a signer-Layer\'s Rules
5315
5315
  */
5316
5316
  async getWaasSignerSelfPolicyLayerRaw(requestParameters, initOverrides) {
@@ -5321,8 +5321,8 @@ class SDKApi extends BaseAPI {
5321
5321
  throw new RequiredError('walletId', 'Required parameter requestParameters.walletId was null or undefined when calling getWaasSignerSelfPolicyLayer.');
5322
5322
  }
5323
5323
  const queryParameters = {};
5324
- if (requestParameters.signerId !== undefined) {
5325
- queryParameters['signerId'] = requestParameters.signerId;
5324
+ if (requestParameters.shareSetId !== undefined) {
5325
+ queryParameters['shareSetId'] = requestParameters.shareSetId;
5326
5326
  }
5327
5327
  const headerParameters = {};
5328
5328
  if (this.configuration && this.configuration.accessToken) {
@@ -5341,7 +5341,7 @@ class SDKApi extends BaseAPI {
5341
5341
  return new JSONApiResponse(response, (jsonValue) => WaasPolicyLayerResponseFromJSON(jsonValue));
5342
5342
  }
5343
5343
  /**
5344
- * 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.
5344
+ * 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.
5345
5345
  * Get a signer-Layer\'s Rules
5346
5346
  */
5347
5347
  async getWaasSignerSelfPolicyLayer(requestParameters, initOverrides) {
@@ -10622,7 +10622,7 @@ class SDKApi extends BaseAPI {
10622
10622
  await this.updateUserMfaDeviceRaw(requestParameters, initOverrides);
10623
10623
  }
10624
10624
  /**
10625
- * 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.
10625
+ * 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.
10626
10626
  * Create, update, or remove a Rule on a signer-Layer
10627
10627
  */
10628
10628
  async updateWaasSignerSelfPolicyLayerRaw(requestParameters, initOverrides) {
@@ -10655,7 +10655,7 @@ class SDKApi extends BaseAPI {
10655
10655
  return new JSONApiResponse(response, (jsonValue) => WaasPolicyLayerResponseFromJSON(jsonValue));
10656
10656
  }
10657
10657
  /**
10658
- * 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.
10658
+ * 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.
10659
10659
  * Create, update, or remove a Rule on a signer-Layer
10660
10660
  */
10661
10661
  async updateWaasSignerSelfPolicyLayer(requestParameters, initOverrides) {