@dynamic-labs/sdk-api 0.0.897 → 0.0.898
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/WalletsApi.cjs
CHANGED
|
@@ -120,8 +120,8 @@ var WalletsResponse = require('../models/WalletsResponse.cjs');
|
|
|
120
120
|
*/
|
|
121
121
|
class WalletsApi extends runtime.BaseAPI {
|
|
122
122
|
/**
|
|
123
|
-
* Creates a new embedded wallet for a user given an email or userId. If an email is provided and it is not associated with an existing user this call will also create a new user.
|
|
124
|
-
*
|
|
123
|
+
* Deprecated. Creates a new embedded wallet for a user given an email or userId (V2/Turnkey only). If an email is provided and it is not associated with an existing user this call will also create a new user.
|
|
124
|
+
* Creates a new embedded wallet for a user given an identifier (deprecated)
|
|
125
125
|
*/
|
|
126
126
|
createEmbeddedWalletRaw(requestParameters, initOverrides) {
|
|
127
127
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -152,8 +152,8 @@ class WalletsApi extends runtime.BaseAPI {
|
|
|
152
152
|
});
|
|
153
153
|
}
|
|
154
154
|
/**
|
|
155
|
-
* Creates a new embedded wallet for a user given an email or userId. If an email is provided and it is not associated with an existing user this call will also create a new user.
|
|
156
|
-
*
|
|
155
|
+
* Deprecated. Creates a new embedded wallet for a user given an email or userId (V2/Turnkey only). If an email is provided and it is not associated with an existing user this call will also create a new user.
|
|
156
|
+
* Creates a new embedded wallet for a user given an identifier (deprecated)
|
|
157
157
|
*/
|
|
158
158
|
createEmbeddedWallet(requestParameters, initOverrides) {
|
|
159
159
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -204,8 +204,8 @@ class WalletsApi extends runtime.BaseAPI {
|
|
|
204
204
|
});
|
|
205
205
|
}
|
|
206
206
|
/**
|
|
207
|
-
* Creates a new wallet for the user. Note that this API is not meant for creating embedded wallets
|
|
208
|
-
*
|
|
207
|
+
* Creates a new wallet for the user. Note that if the user already has an embedded wallet linked, this call will fail. This API is not meant for creating embedded wallets; use the /embeddedWallets endpoint for that.
|
|
208
|
+
* Creates a new wallet for the user
|
|
209
209
|
*/
|
|
210
210
|
createWalletRaw(requestParameters, initOverrides) {
|
|
211
211
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -239,8 +239,8 @@ class WalletsApi extends runtime.BaseAPI {
|
|
|
239
239
|
});
|
|
240
240
|
}
|
|
241
241
|
/**
|
|
242
|
-
* Creates a new wallet for the user. Note that this API is not meant for creating embedded wallets
|
|
243
|
-
*
|
|
242
|
+
* Creates a new wallet for the user. Note that if the user already has an embedded wallet linked, this call will fail. This API is not meant for creating embedded wallets; use the /embeddedWallets endpoint for that.
|
|
243
|
+
* Creates a new wallet for the user
|
|
244
244
|
*/
|
|
245
245
|
createWallet(requestParameters, initOverrides) {
|
|
246
246
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
package/src/apis/WalletsApi.d.ts
CHANGED
|
@@ -66,13 +66,13 @@ export interface RecoverDeletedWalletsWithEnvironmentRequest {
|
|
|
66
66
|
*/
|
|
67
67
|
export declare class WalletsApi extends runtime.BaseAPI {
|
|
68
68
|
/**
|
|
69
|
-
* Creates a new embedded wallet for a user given an email or userId. If an email is provided and it is not associated with an existing user this call will also create a new user.
|
|
70
|
-
*
|
|
69
|
+
* Deprecated. Creates a new embedded wallet for a user given an email or userId (V2/Turnkey only). If an email is provided and it is not associated with an existing user this call will also create a new user.
|
|
70
|
+
* Creates a new embedded wallet for a user given an identifier (deprecated)
|
|
71
71
|
*/
|
|
72
72
|
createEmbeddedWalletRaw(requestParameters: CreateEmbeddedWalletRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<UserResponse>>;
|
|
73
73
|
/**
|
|
74
|
-
* Creates a new embedded wallet for a user given an email or userId. If an email is provided and it is not associated with an existing user this call will also create a new user.
|
|
75
|
-
*
|
|
74
|
+
* Deprecated. Creates a new embedded wallet for a user given an email or userId (V2/Turnkey only). If an email is provided and it is not associated with an existing user this call will also create a new user.
|
|
75
|
+
* Creates a new embedded wallet for a user given an identifier (deprecated)
|
|
76
76
|
*/
|
|
77
77
|
createEmbeddedWallet(requestParameters: CreateEmbeddedWalletRequest, initOverrides?: RequestInit): Promise<UserResponse>;
|
|
78
78
|
/**
|
|
@@ -86,13 +86,13 @@ export declare class WalletsApi extends runtime.BaseAPI {
|
|
|
86
86
|
*/
|
|
87
87
|
createEmbeddedWalletFromFarcaster(requestParameters: CreateEmbeddedWalletFromFarcasterRequest, initOverrides?: RequestInit): Promise<UserResponse>;
|
|
88
88
|
/**
|
|
89
|
-
* Creates a new wallet for the user. Note that this API is not meant for creating embedded wallets
|
|
90
|
-
*
|
|
89
|
+
* Creates a new wallet for the user. Note that if the user already has an embedded wallet linked, this call will fail. This API is not meant for creating embedded wallets; use the /embeddedWallets endpoint for that.
|
|
90
|
+
* Creates a new wallet for the user
|
|
91
91
|
*/
|
|
92
92
|
createWalletRaw(requestParameters: CreateWalletOperationRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<Wallet>>;
|
|
93
93
|
/**
|
|
94
|
-
* Creates a new wallet for the user. Note that this API is not meant for creating embedded wallets
|
|
95
|
-
*
|
|
94
|
+
* Creates a new wallet for the user. Note that if the user already has an embedded wallet linked, this call will fail. This API is not meant for creating embedded wallets; use the /embeddedWallets endpoint for that.
|
|
95
|
+
* Creates a new wallet for the user
|
|
96
96
|
*/
|
|
97
97
|
createWallet(requestParameters: CreateWalletOperationRequest, initOverrides?: RequestInit): Promise<Wallet>;
|
|
98
98
|
/**
|
package/src/apis/WalletsApi.js
CHANGED
|
@@ -116,8 +116,8 @@ import { WalletsResponseFromJSON } from '../models/WalletsResponse.js';
|
|
|
116
116
|
*/
|
|
117
117
|
class WalletsApi extends BaseAPI {
|
|
118
118
|
/**
|
|
119
|
-
* Creates a new embedded wallet for a user given an email or userId. If an email is provided and it is not associated with an existing user this call will also create a new user.
|
|
120
|
-
*
|
|
119
|
+
* Deprecated. Creates a new embedded wallet for a user given an email or userId (V2/Turnkey only). If an email is provided and it is not associated with an existing user this call will also create a new user.
|
|
120
|
+
* Creates a new embedded wallet for a user given an identifier (deprecated)
|
|
121
121
|
*/
|
|
122
122
|
createEmbeddedWalletRaw(requestParameters, initOverrides) {
|
|
123
123
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -148,8 +148,8 @@ class WalletsApi extends BaseAPI {
|
|
|
148
148
|
});
|
|
149
149
|
}
|
|
150
150
|
/**
|
|
151
|
-
* Creates a new embedded wallet for a user given an email or userId. If an email is provided and it is not associated with an existing user this call will also create a new user.
|
|
152
|
-
*
|
|
151
|
+
* Deprecated. Creates a new embedded wallet for a user given an email or userId (V2/Turnkey only). If an email is provided and it is not associated with an existing user this call will also create a new user.
|
|
152
|
+
* Creates a new embedded wallet for a user given an identifier (deprecated)
|
|
153
153
|
*/
|
|
154
154
|
createEmbeddedWallet(requestParameters, initOverrides) {
|
|
155
155
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -200,8 +200,8 @@ class WalletsApi extends BaseAPI {
|
|
|
200
200
|
});
|
|
201
201
|
}
|
|
202
202
|
/**
|
|
203
|
-
* Creates a new wallet for the user. Note that this API is not meant for creating embedded wallets
|
|
204
|
-
*
|
|
203
|
+
* Creates a new wallet for the user. Note that if the user already has an embedded wallet linked, this call will fail. This API is not meant for creating embedded wallets; use the /embeddedWallets endpoint for that.
|
|
204
|
+
* Creates a new wallet for the user
|
|
205
205
|
*/
|
|
206
206
|
createWalletRaw(requestParameters, initOverrides) {
|
|
207
207
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -235,8 +235,8 @@ class WalletsApi extends BaseAPI {
|
|
|
235
235
|
});
|
|
236
236
|
}
|
|
237
237
|
/**
|
|
238
|
-
* Creates a new wallet for the user. Note that this API is not meant for creating embedded wallets
|
|
239
|
-
*
|
|
238
|
+
* Creates a new wallet for the user. Note that if the user already has an embedded wallet linked, this call will fail. This API is not meant for creating embedded wallets; use the /embeddedWallets endpoint for that.
|
|
239
|
+
* Creates a new wallet for the user
|
|
240
240
|
*/
|
|
241
241
|
createWallet(requestParameters, initOverrides) {
|
|
242
242
|
return __awaiter(this, void 0, void 0, function* () {
|