@dynamic-labs/sdk-api 0.0.318 → 0.0.319
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
|
@@ -49,7 +49,8 @@ require('../models/VisitorFilterableFieldsEnum.cjs');
|
|
|
49
49
|
*/
|
|
50
50
|
class WalletsApi extends runtime.BaseAPI {
|
|
51
51
|
/**
|
|
52
|
-
* Creates a new embedded wallet for a user given an email. If
|
|
52
|
+
* 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.
|
|
53
|
+
* Creates a new embedded wallet for a user given an identifier
|
|
53
54
|
*/
|
|
54
55
|
createEmbeddedWalletRaw(requestParameters, initOverrides) {
|
|
55
56
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -80,7 +81,8 @@ class WalletsApi extends runtime.BaseAPI {
|
|
|
80
81
|
});
|
|
81
82
|
}
|
|
82
83
|
/**
|
|
83
|
-
* Creates a new embedded wallet for a user given an email. If
|
|
84
|
+
* 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.
|
|
85
|
+
* Creates a new embedded wallet for a user given an identifier
|
|
84
86
|
*/
|
|
85
87
|
createEmbeddedWallet(requestParameters, initOverrides) {
|
|
86
88
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
package/src/apis/WalletsApi.d.ts
CHANGED
|
@@ -33,11 +33,13 @@ export interface GetWalletsByUserIdRequest {
|
|
|
33
33
|
*/
|
|
34
34
|
export declare class WalletsApi extends runtime.BaseAPI {
|
|
35
35
|
/**
|
|
36
|
-
* Creates a new embedded wallet for a user given an email. If
|
|
36
|
+
* 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.
|
|
37
|
+
* Creates a new embedded wallet for a user given an identifier
|
|
37
38
|
*/
|
|
38
39
|
createEmbeddedWalletRaw(requestParameters: CreateEmbeddedWalletRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<UserResponse>>;
|
|
39
40
|
/**
|
|
40
|
-
* Creates a new embedded wallet for a user given an email. If
|
|
41
|
+
* 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.
|
|
42
|
+
* Creates a new embedded wallet for a user given an identifier
|
|
41
43
|
*/
|
|
42
44
|
createEmbeddedWallet(requestParameters: CreateEmbeddedWalletRequest, initOverrides?: RequestInit): Promise<UserResponse>;
|
|
43
45
|
/**
|
package/src/apis/WalletsApi.js
CHANGED
|
@@ -45,7 +45,8 @@ import '../models/VisitorFilterableFieldsEnum.js';
|
|
|
45
45
|
*/
|
|
46
46
|
class WalletsApi extends BaseAPI {
|
|
47
47
|
/**
|
|
48
|
-
* Creates a new embedded wallet for a user given an email. If
|
|
48
|
+
* 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.
|
|
49
|
+
* Creates a new embedded wallet for a user given an identifier
|
|
49
50
|
*/
|
|
50
51
|
createEmbeddedWalletRaw(requestParameters, initOverrides) {
|
|
51
52
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -76,7 +77,8 @@ class WalletsApi extends BaseAPI {
|
|
|
76
77
|
});
|
|
77
78
|
}
|
|
78
79
|
/**
|
|
79
|
-
* Creates a new embedded wallet for a user given an email. If
|
|
80
|
+
* 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.
|
|
81
|
+
* Creates a new embedded wallet for a user given an identifier
|
|
80
82
|
*/
|
|
81
83
|
createEmbeddedWallet(requestParameters, initOverrides) {
|
|
82
84
|
return __awaiter(this, void 0, void 0, function* () {
|