@dynamic-labs/sdk-api-core 0.0.570 → 0.0.572
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 -0
- package/src/apis/SDKApi.d.ts +2 -0
- package/src/apis/SDKApi.js +2 -0
package/package.json
CHANGED
package/src/apis/SDKApi.cjs
CHANGED
|
@@ -3927,6 +3927,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3927
3927
|
}
|
|
3928
3928
|
/**
|
|
3929
3929
|
* When a user selects a wallet to be the primary wallet in a multi-wallet enabled environment, this endpoint is called to record this on the backend.
|
|
3930
|
+
* Update wallet in a multi-wallet selection
|
|
3930
3931
|
*/
|
|
3931
3932
|
selectUserWalletRaw(requestParameters, initOverrides) {
|
|
3932
3933
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3958,6 +3959,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3958
3959
|
}
|
|
3959
3960
|
/**
|
|
3960
3961
|
* When a user selects a wallet to be the primary wallet in a multi-wallet enabled environment, this endpoint is called to record this on the backend.
|
|
3962
|
+
* Update wallet in a multi-wallet selection
|
|
3961
3963
|
*/
|
|
3962
3964
|
selectUserWallet(requestParameters, initOverrides) {
|
|
3963
3965
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
package/src/apis/SDKApi.d.ts
CHANGED
|
@@ -1562,10 +1562,12 @@ export declare class SDKApi extends runtime.BaseAPI {
|
|
|
1562
1562
|
sdkSettingsOptions(requestParameters: SdkSettingsOptionsRequest, initOverrides?: RequestInit): Promise<void>;
|
|
1563
1563
|
/**
|
|
1564
1564
|
* When a user selects a wallet to be the primary wallet in a multi-wallet enabled environment, this endpoint is called to record this on the backend.
|
|
1565
|
+
* Update wallet in a multi-wallet selection
|
|
1565
1566
|
*/
|
|
1566
1567
|
selectUserWalletRaw(requestParameters: SelectUserWalletRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<VerifyResponse>>;
|
|
1567
1568
|
/**
|
|
1568
1569
|
* When a user selects a wallet to be the primary wallet in a multi-wallet enabled environment, this endpoint is called to record this on the backend.
|
|
1570
|
+
* Update wallet in a multi-wallet selection
|
|
1569
1571
|
*/
|
|
1570
1572
|
selectUserWallet(requestParameters: SelectUserWalletRequest, initOverrides?: RequestInit): Promise<VerifyResponse>;
|
|
1571
1573
|
/**
|
package/src/apis/SDKApi.js
CHANGED
|
@@ -3923,6 +3923,7 @@ class SDKApi extends BaseAPI {
|
|
|
3923
3923
|
}
|
|
3924
3924
|
/**
|
|
3925
3925
|
* When a user selects a wallet to be the primary wallet in a multi-wallet enabled environment, this endpoint is called to record this on the backend.
|
|
3926
|
+
* Update wallet in a multi-wallet selection
|
|
3926
3927
|
*/
|
|
3927
3928
|
selectUserWalletRaw(requestParameters, initOverrides) {
|
|
3928
3929
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3954,6 +3955,7 @@ class SDKApi extends BaseAPI {
|
|
|
3954
3955
|
}
|
|
3955
3956
|
/**
|
|
3956
3957
|
* When a user selects a wallet to be the primary wallet in a multi-wallet enabled environment, this endpoint is called to record this on the backend.
|
|
3958
|
+
* Update wallet in a multi-wallet selection
|
|
3957
3959
|
*/
|
|
3958
3960
|
selectUserWallet(requestParameters, initOverrides) {
|
|
3959
3961
|
return __awaiter(this, void 0, void 0, function* () {
|