@dynamic-labs/sdk-api-core 0.0.1076 → 0.0.1078

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.
@@ -1644,12 +1644,12 @@ export declare class SDKApi extends runtime.BaseAPI {
1644
1644
  */
1645
1645
  checkSsoProvider(requestParameters: CheckSsoProviderRequest, initOverrides?: RequestInit): Promise<SsoProviderCheckResponse>;
1646
1646
  /**
1647
- * Check if a wallet address is sanctioned using Chainalysis. Returns whether the wallet is blocked or not.
1647
+ * Check if a wallet address is sanctioned. Returns whether the wallet is blocked or not.
1648
1648
  * Check if a wallet address is sanctioned
1649
1649
  */
1650
1650
  checkWalletSanctionsRaw(requestParameters: CheckWalletSanctionsRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<WalletSanctionsResponse>>;
1651
1651
  /**
1652
- * Check if a wallet address is sanctioned using Chainalysis. Returns whether the wallet is blocked or not.
1652
+ * Check if a wallet address is sanctioned. Returns whether the wallet is blocked or not.
1653
1653
  * Check if a wallet address is sanctioned
1654
1654
  */
1655
1655
  checkWalletSanctions(requestParameters: CheckWalletSanctionsRequest, initOverrides?: RequestInit): Promise<WalletSanctionsResponse>;
@@ -5,6 +5,7 @@ import { AddBusinessAccountSignerSdkRequestToJSON } from '../models/AddBusinessA
5
5
  import { AleoCuratedPricesResponseFromJSON } from '../models/AleoCuratedPricesResponse.js';
6
6
  import { AleoProverEncryptedRequestToJSON } from '../models/AleoProverEncryptedRequest.js';
7
7
  import { AleoProverPubkeyResponseFromJSON } from '../models/AleoProverPubkeyResponse.js';
8
+ import '../models/AssignableBusinessAccountMemberRole.js';
8
9
  import { AttachSourceRequestToJSON } from '../models/AttachSourceRequest.js';
9
10
  import '../models/AttestationConveyancePreference.js';
10
11
  import '../models/AuthModeEnum.js';
@@ -1064,7 +1065,7 @@ class SDKApi extends BaseAPI {
1064
1065
  return await response.value();
1065
1066
  }
1066
1067
  /**
1067
- * Check if a wallet address is sanctioned using Chainalysis. Returns whether the wallet is blocked or not.
1068
+ * Check if a wallet address is sanctioned. Returns whether the wallet is blocked or not.
1068
1069
  * Check if a wallet address is sanctioned
1069
1070
  */
1070
1071
  async checkWalletSanctionsRaw(requestParameters, initOverrides) {
@@ -1101,7 +1102,7 @@ class SDKApi extends BaseAPI {
1101
1102
  return new JSONApiResponse(response, (jsonValue) => WalletSanctionsResponseFromJSON(jsonValue));
1102
1103
  }
1103
1104
  /**
1104
- * Check if a wallet address is sanctioned using Chainalysis. Returns whether the wallet is blocked or not.
1105
+ * Check if a wallet address is sanctioned. Returns whether the wallet is blocked or not.
1105
1106
  * Check if a wallet address is sanctioned
1106
1107
  */
1107
1108
  async checkWalletSanctions(requestParameters, initOverrides) {