@dynamic-labs/sdk-api 0.0.403 → 0.0.405
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/models/AllowlistEntry.cjs +2 -0
- package/src/models/AllowlistEntry.d.ts +6 -0
- package/src/models/AllowlistEntry.js +2 -0
- package/src/models/InviteSendRequest.cjs +2 -0
- package/src/models/InviteSendRequest.d.ts +6 -0
- package/src/models/InviteSendRequest.js +2 -0
- package/src/models/PostAllowlistEntriesRequest.cjs +2 -0
- package/src/models/PostAllowlistEntriesRequest.d.ts +6 -0
- package/src/models/PostAllowlistEntriesRequest.js +2 -0
- package/src/models/RoleEnum.cjs +1 -0
- package/src/models/RoleEnum.d.ts +1 -0
- package/src/models/RoleEnum.js +1 -0
package/package.json
CHANGED
|
@@ -17,6 +17,7 @@ function AllowlistEntryFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
17
17
|
'allowListId': json['allowListId'],
|
|
18
18
|
'walletPublicKey': !runtime.exists(json, 'walletPublicKey') ? undefined : json['walletPublicKey'],
|
|
19
19
|
'email': !runtime.exists(json, 'email') ? undefined : json['email'],
|
|
20
|
+
'phoneNumber': !runtime.exists(json, 'phoneNumber') ? undefined : json['phoneNumber'],
|
|
20
21
|
'alias': !runtime.exists(json, 'alias') ? undefined : json['alias'],
|
|
21
22
|
};
|
|
22
23
|
}
|
|
@@ -32,6 +33,7 @@ function AllowlistEntryToJSON(value) {
|
|
|
32
33
|
'allowListId': value.allowListId,
|
|
33
34
|
'walletPublicKey': value.walletPublicKey,
|
|
34
35
|
'email': value.email,
|
|
36
|
+
'phoneNumber': value.phoneNumber,
|
|
35
37
|
'alias': value.alias,
|
|
36
38
|
};
|
|
37
39
|
}
|
|
@@ -13,6 +13,7 @@ function AllowlistEntryFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
13
13
|
'allowListId': json['allowListId'],
|
|
14
14
|
'walletPublicKey': !exists(json, 'walletPublicKey') ? undefined : json['walletPublicKey'],
|
|
15
15
|
'email': !exists(json, 'email') ? undefined : json['email'],
|
|
16
|
+
'phoneNumber': !exists(json, 'phoneNumber') ? undefined : json['phoneNumber'],
|
|
16
17
|
'alias': !exists(json, 'alias') ? undefined : json['alias'],
|
|
17
18
|
};
|
|
18
19
|
}
|
|
@@ -28,6 +29,7 @@ function AllowlistEntryToJSON(value) {
|
|
|
28
29
|
'allowListId': value.allowListId,
|
|
29
30
|
'walletPublicKey': value.walletPublicKey,
|
|
30
31
|
'email': value.email,
|
|
32
|
+
'phoneNumber': value.phoneNumber,
|
|
31
33
|
'alias': value.alias,
|
|
32
34
|
};
|
|
33
35
|
}
|
|
@@ -16,6 +16,7 @@ function InviteSendRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
16
16
|
'walletPublicKey': !runtime.exists(json, 'walletPublicKey') ? undefined : json['walletPublicKey'],
|
|
17
17
|
'alias': !runtime.exists(json, 'alias') ? undefined : json['alias'],
|
|
18
18
|
'email': !runtime.exists(json, 'email') ? undefined : json['email'],
|
|
19
|
+
'phoneNumber': !runtime.exists(json, 'phoneNumber') ? undefined : json['phoneNumber'],
|
|
19
20
|
};
|
|
20
21
|
}
|
|
21
22
|
function InviteSendRequestToJSON(value) {
|
|
@@ -29,6 +30,7 @@ function InviteSendRequestToJSON(value) {
|
|
|
29
30
|
'walletPublicKey': value.walletPublicKey,
|
|
30
31
|
'alias': value.alias,
|
|
31
32
|
'email': value.email,
|
|
33
|
+
'phoneNumber': value.phoneNumber,
|
|
32
34
|
};
|
|
33
35
|
}
|
|
34
36
|
|
|
@@ -33,6 +33,12 @@ export interface InviteSendRequest {
|
|
|
33
33
|
* @memberof InviteSendRequest
|
|
34
34
|
*/
|
|
35
35
|
email?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof InviteSendRequest
|
|
40
|
+
*/
|
|
41
|
+
phoneNumber?: string;
|
|
36
42
|
}
|
|
37
43
|
export declare function InviteSendRequestFromJSON(json: any): InviteSendRequest;
|
|
38
44
|
export declare function InviteSendRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): InviteSendRequest;
|
|
@@ -12,6 +12,7 @@ function InviteSendRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
12
12
|
'walletPublicKey': !exists(json, 'walletPublicKey') ? undefined : json['walletPublicKey'],
|
|
13
13
|
'alias': !exists(json, 'alias') ? undefined : json['alias'],
|
|
14
14
|
'email': !exists(json, 'email') ? undefined : json['email'],
|
|
15
|
+
'phoneNumber': !exists(json, 'phoneNumber') ? undefined : json['phoneNumber'],
|
|
15
16
|
};
|
|
16
17
|
}
|
|
17
18
|
function InviteSendRequestToJSON(value) {
|
|
@@ -25,6 +26,7 @@ function InviteSendRequestToJSON(value) {
|
|
|
25
26
|
'walletPublicKey': value.walletPublicKey,
|
|
26
27
|
'alias': value.alias,
|
|
27
28
|
'email': value.email,
|
|
29
|
+
'phoneNumber': value.phoneNumber,
|
|
28
30
|
};
|
|
29
31
|
}
|
|
30
32
|
|
|
@@ -15,6 +15,7 @@ function PostAllowlistEntriesRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
15
15
|
return {
|
|
16
16
|
'walletPublicKey': !runtime.exists(json, 'walletPublicKey') ? undefined : json['walletPublicKey'],
|
|
17
17
|
'email': !runtime.exists(json, 'email') ? undefined : json['email'],
|
|
18
|
+
'phoneNumber': !runtime.exists(json, 'phoneNumber') ? undefined : json['phoneNumber'],
|
|
18
19
|
'alias': !runtime.exists(json, 'alias') ? undefined : json['alias'],
|
|
19
20
|
};
|
|
20
21
|
}
|
|
@@ -28,6 +29,7 @@ function PostAllowlistEntriesRequestToJSON(value) {
|
|
|
28
29
|
return {
|
|
29
30
|
'walletPublicKey': value.walletPublicKey,
|
|
30
31
|
'email': value.email,
|
|
32
|
+
'phoneNumber': value.phoneNumber,
|
|
31
33
|
'alias': value.alias,
|
|
32
34
|
};
|
|
33
35
|
}
|
|
@@ -27,6 +27,12 @@ export interface PostAllowlistEntriesRequest {
|
|
|
27
27
|
* @memberof PostAllowlistEntriesRequest
|
|
28
28
|
*/
|
|
29
29
|
email?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PostAllowlistEntriesRequest
|
|
34
|
+
*/
|
|
35
|
+
phoneNumber?: string;
|
|
30
36
|
/**
|
|
31
37
|
*
|
|
32
38
|
* @type {string}
|
|
@@ -11,6 +11,7 @@ function PostAllowlistEntriesRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
11
11
|
return {
|
|
12
12
|
'walletPublicKey': !exists(json, 'walletPublicKey') ? undefined : json['walletPublicKey'],
|
|
13
13
|
'email': !exists(json, 'email') ? undefined : json['email'],
|
|
14
|
+
'phoneNumber': !exists(json, 'phoneNumber') ? undefined : json['phoneNumber'],
|
|
14
15
|
'alias': !exists(json, 'alias') ? undefined : json['alias'],
|
|
15
16
|
};
|
|
16
17
|
}
|
|
@@ -24,6 +25,7 @@ function PostAllowlistEntriesRequestToJSON(value) {
|
|
|
24
25
|
return {
|
|
25
26
|
'walletPublicKey': value.walletPublicKey,
|
|
26
27
|
'email': value.email,
|
|
28
|
+
'phoneNumber': value.phoneNumber,
|
|
27
29
|
'alias': value.alias,
|
|
28
30
|
};
|
|
29
31
|
}
|
package/src/models/RoleEnum.cjs
CHANGED
|
@@ -24,6 +24,7 @@ exports.RoleEnum = void 0;
|
|
|
24
24
|
(function (RoleEnum) {
|
|
25
25
|
RoleEnum["Owner"] = "owner";
|
|
26
26
|
RoleEnum["Admin"] = "admin";
|
|
27
|
+
RoleEnum["Developer"] = "developer";
|
|
27
28
|
RoleEnum["Viewer"] = "viewer";
|
|
28
29
|
})(exports.RoleEnum || (exports.RoleEnum = {}));
|
|
29
30
|
function RoleEnumFromJSON(json) {
|
package/src/models/RoleEnum.d.ts
CHANGED
package/src/models/RoleEnum.js
CHANGED