@dynamic-labs/sdk-api-core 0.0.1076 → 0.0.1077
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 +1 -1
- package/src/apis/SDKApi.cjs +2 -2
- package/src/apis/SDKApi.d.ts +2 -2
- package/src/apis/SDKApi.js +2 -2
package/package.json
CHANGED
package/src/apis/SDKApi.cjs
CHANGED
|
@@ -1068,7 +1068,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1068
1068
|
return await response.value();
|
|
1069
1069
|
}
|
|
1070
1070
|
/**
|
|
1071
|
-
* Check if a wallet address is sanctioned
|
|
1071
|
+
* Check if a wallet address is sanctioned. Returns whether the wallet is blocked or not.
|
|
1072
1072
|
* Check if a wallet address is sanctioned
|
|
1073
1073
|
*/
|
|
1074
1074
|
async checkWalletSanctionsRaw(requestParameters, initOverrides) {
|
|
@@ -1105,7 +1105,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1105
1105
|
return new runtime.JSONApiResponse(response, (jsonValue) => WalletSanctionsResponse.WalletSanctionsResponseFromJSON(jsonValue));
|
|
1106
1106
|
}
|
|
1107
1107
|
/**
|
|
1108
|
-
* Check if a wallet address is sanctioned
|
|
1108
|
+
* Check if a wallet address is sanctioned. Returns whether the wallet is blocked or not.
|
|
1109
1109
|
* Check if a wallet address is sanctioned
|
|
1110
1110
|
*/
|
|
1111
1111
|
async checkWalletSanctions(requestParameters, initOverrides) {
|
package/src/apis/SDKApi.d.ts
CHANGED
|
@@ -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
|
|
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
|
|
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>;
|
package/src/apis/SDKApi.js
CHANGED
|
@@ -1064,7 +1064,7 @@ class SDKApi extends BaseAPI {
|
|
|
1064
1064
|
return await response.value();
|
|
1065
1065
|
}
|
|
1066
1066
|
/**
|
|
1067
|
-
* Check if a wallet address is sanctioned
|
|
1067
|
+
* Check if a wallet address is sanctioned. Returns whether the wallet is blocked or not.
|
|
1068
1068
|
* Check if a wallet address is sanctioned
|
|
1069
1069
|
*/
|
|
1070
1070
|
async checkWalletSanctionsRaw(requestParameters, initOverrides) {
|
|
@@ -1101,7 +1101,7 @@ class SDKApi extends BaseAPI {
|
|
|
1101
1101
|
return new JSONApiResponse(response, (jsonValue) => WalletSanctionsResponseFromJSON(jsonValue));
|
|
1102
1102
|
}
|
|
1103
1103
|
/**
|
|
1104
|
-
* Check if a wallet address is sanctioned
|
|
1104
|
+
* Check if a wallet address is sanctioned. Returns whether the wallet is blocked or not.
|
|
1105
1105
|
* Check if a wallet address is sanctioned
|
|
1106
1106
|
*/
|
|
1107
1107
|
async checkWalletSanctions(requestParameters, initOverrides) {
|