@dynamic-labs/sdk-api 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
CHANGED
package/src/apis/SDKApi.cjs
CHANGED
|
@@ -3994,6 +3994,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3994
3994
|
}
|
|
3995
3995
|
/**
|
|
3996
3996
|
* 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.
|
|
3997
|
+
* Update wallet in a multi-wallet selection
|
|
3997
3998
|
*/
|
|
3998
3999
|
selectUserWalletRaw(requestParameters, initOverrides) {
|
|
3999
4000
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4025,6 +4026,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4025
4026
|
}
|
|
4026
4027
|
/**
|
|
4027
4028
|
* 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.
|
|
4029
|
+
* Update wallet in a multi-wallet selection
|
|
4028
4030
|
*/
|
|
4029
4031
|
selectUserWallet(requestParameters, initOverrides) {
|
|
4030
4032
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
package/src/apis/SDKApi.d.ts
CHANGED
|
@@ -1578,10 +1578,12 @@ export declare class SDKApi extends runtime.BaseAPI {
|
|
|
1578
1578
|
sdkSettingsOptions(requestParameters: SdkSettingsOptionsRequest, initOverrides?: RequestInit): Promise<void>;
|
|
1579
1579
|
/**
|
|
1580
1580
|
* 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.
|
|
1581
|
+
* Update wallet in a multi-wallet selection
|
|
1581
1582
|
*/
|
|
1582
1583
|
selectUserWalletRaw(requestParameters: SelectUserWalletRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<VerifyResponse>>;
|
|
1583
1584
|
/**
|
|
1584
1585
|
* 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.
|
|
1586
|
+
* Update wallet in a multi-wallet selection
|
|
1585
1587
|
*/
|
|
1586
1588
|
selectUserWallet(requestParameters: SelectUserWalletRequest, initOverrides?: RequestInit): Promise<VerifyResponse>;
|
|
1587
1589
|
/**
|
package/src/apis/SDKApi.js
CHANGED
|
@@ -3990,6 +3990,7 @@ class SDKApi extends BaseAPI {
|
|
|
3990
3990
|
}
|
|
3991
3991
|
/**
|
|
3992
3992
|
* 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.
|
|
3993
|
+
* Update wallet in a multi-wallet selection
|
|
3993
3994
|
*/
|
|
3994
3995
|
selectUserWalletRaw(requestParameters, initOverrides) {
|
|
3995
3996
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4021,6 +4022,7 @@ class SDKApi extends BaseAPI {
|
|
|
4021
4022
|
}
|
|
4022
4023
|
/**
|
|
4023
4024
|
* 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.
|
|
4025
|
+
* Update wallet in a multi-wallet selection
|
|
4024
4026
|
*/
|
|
4025
4027
|
selectUserWallet(requestParameters, initOverrides) {
|
|
4026
4028
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -33,6 +33,7 @@ exports.UserFilterableFieldsEnum = void 0;
|
|
|
33
33
|
UserFilterableFieldsEnum["JobTitle"] = "jobTitle";
|
|
34
34
|
UserFilterableFieldsEnum["Wallet"] = "wallet";
|
|
35
35
|
UserFilterableFieldsEnum["Username"] = "username";
|
|
36
|
+
UserFilterableFieldsEnum["AccountId"] = "accountId";
|
|
36
37
|
})(exports.UserFilterableFieldsEnum || (exports.UserFilterableFieldsEnum = {}));
|
|
37
38
|
function UserFilterableFieldsEnumFromJSON(json) {
|
|
38
39
|
return UserFilterableFieldsEnumFromJSONTyped(json);
|
|
@@ -25,7 +25,8 @@ export declare enum UserFilterableFieldsEnum {
|
|
|
25
25
|
PhoneNumber = "phoneNumber",
|
|
26
26
|
JobTitle = "jobTitle",
|
|
27
27
|
Wallet = "wallet",
|
|
28
|
-
Username = "username"
|
|
28
|
+
Username = "username",
|
|
29
|
+
AccountId = "accountId"
|
|
29
30
|
}
|
|
30
31
|
export declare function UserFilterableFieldsEnumFromJSON(json: any): UserFilterableFieldsEnum;
|
|
31
32
|
export declare function UserFilterableFieldsEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserFilterableFieldsEnum;
|
|
@@ -29,6 +29,7 @@ var UserFilterableFieldsEnum;
|
|
|
29
29
|
UserFilterableFieldsEnum["JobTitle"] = "jobTitle";
|
|
30
30
|
UserFilterableFieldsEnum["Wallet"] = "wallet";
|
|
31
31
|
UserFilterableFieldsEnum["Username"] = "username";
|
|
32
|
+
UserFilterableFieldsEnum["AccountId"] = "accountId";
|
|
32
33
|
})(UserFilterableFieldsEnum || (UserFilterableFieldsEnum = {}));
|
|
33
34
|
function UserFilterableFieldsEnumFromJSON(json) {
|
|
34
35
|
return UserFilterableFieldsEnumFromJSONTyped(json);
|