@turnkey/http 3.5.0 → 3.6.0
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/CHANGELOG.md +14 -0
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.d.ts +155 -80
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.d.ts.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.js +205 -80
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.js.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.mjs +205 -80
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.mjs.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.d.ts +5767 -1921
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.d.ts.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.js +277 -157
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.js.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.mjs +268 -158
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.mjs.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.types.d.ts +457 -228
- package/dist/__generated__/services/coordinator/public/v1/public_api.types.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/version.mjs +1 -1
- package/package.json +4 -4
|
@@ -4,15 +4,15 @@
|
|
|
4
4
|
*/
|
|
5
5
|
export type paths = {
|
|
6
6
|
"/public/v1/query/get_activity": {
|
|
7
|
-
/** Get details about an
|
|
7
|
+
/** Get details about an activity. */
|
|
8
8
|
post: operations["PublicApiService_GetActivity"];
|
|
9
9
|
};
|
|
10
10
|
"/public/v1/query/get_api_key": {
|
|
11
|
-
/** Get details about an API key */
|
|
11
|
+
/** Get details about an API key. */
|
|
12
12
|
post: operations["PublicApiService_GetApiKey"];
|
|
13
13
|
};
|
|
14
14
|
"/public/v1/query/get_api_keys": {
|
|
15
|
-
/** Get details about API keys for a user */
|
|
15
|
+
/** Get details about API keys for a user. */
|
|
16
16
|
post: operations["PublicApiService_GetApiKeys"];
|
|
17
17
|
};
|
|
18
18
|
"/public/v1/query/get_attestation": {
|
|
@@ -20,71 +20,83 @@ export type paths = {
|
|
|
20
20
|
post: operations["PublicApiService_GetAttestationDocument"];
|
|
21
21
|
};
|
|
22
22
|
"/public/v1/query/get_authenticator": {
|
|
23
|
-
/** Get details about an authenticator */
|
|
23
|
+
/** Get details about an authenticator. */
|
|
24
24
|
post: operations["PublicApiService_GetAuthenticator"];
|
|
25
25
|
};
|
|
26
26
|
"/public/v1/query/get_authenticators": {
|
|
27
|
-
/** Get details about authenticators for a user */
|
|
27
|
+
/** Get details about authenticators for a user. */
|
|
28
28
|
post: operations["PublicApiService_GetAuthenticators"];
|
|
29
29
|
};
|
|
30
30
|
"/public/v1/query/get_oauth_providers": {
|
|
31
|
-
/** Get details about Oauth providers for a user */
|
|
31
|
+
/** Get details about Oauth providers for a user. */
|
|
32
32
|
post: operations["PublicApiService_GetOauthProviders"];
|
|
33
33
|
};
|
|
34
34
|
"/public/v1/query/get_organization": {
|
|
35
|
-
/** Get details about an
|
|
35
|
+
/** Get details about an organization. */
|
|
36
36
|
post: operations["PublicApiService_GetOrganization"];
|
|
37
37
|
};
|
|
38
38
|
"/public/v1/query/get_organization_configs": {
|
|
39
|
-
/** Get quorum settings and features for an organization */
|
|
39
|
+
/** Get quorum settings and features for an organization. */
|
|
40
40
|
post: operations["PublicApiService_GetOrganizationConfigs"];
|
|
41
41
|
};
|
|
42
42
|
"/public/v1/query/get_policy": {
|
|
43
|
-
/** Get details about a
|
|
43
|
+
/** Get details about a policy. */
|
|
44
44
|
post: operations["PublicApiService_GetPolicy"];
|
|
45
45
|
};
|
|
46
|
+
"/public/v1/query/get_policy_evaluations": {
|
|
47
|
+
/** Get the policy evaluations for an activity. */
|
|
48
|
+
post: operations["PublicApiService_GetPolicyEvaluations"];
|
|
49
|
+
};
|
|
46
50
|
"/public/v1/query/get_private_key": {
|
|
47
|
-
/** Get details about a
|
|
51
|
+
/** Get details about a private key. */
|
|
48
52
|
post: operations["PublicApiService_GetPrivateKey"];
|
|
49
53
|
};
|
|
54
|
+
"/public/v1/query/get_smart_contract_interface": {
|
|
55
|
+
/** Get details about a smart contract interface. */
|
|
56
|
+
post: operations["PublicApiService_GetSmartContractInterface"];
|
|
57
|
+
};
|
|
50
58
|
"/public/v1/query/get_user": {
|
|
51
|
-
/** Get details about a
|
|
59
|
+
/** Get details about a user. */
|
|
52
60
|
post: operations["PublicApiService_GetUser"];
|
|
53
61
|
};
|
|
54
62
|
"/public/v1/query/get_wallet": {
|
|
55
|
-
/** Get details about a
|
|
63
|
+
/** Get details about a wallet. */
|
|
56
64
|
post: operations["PublicApiService_GetWallet"];
|
|
57
65
|
};
|
|
58
66
|
"/public/v1/query/get_wallet_account": {
|
|
59
|
-
/** Get a single wallet account */
|
|
67
|
+
/** Get a single wallet account. */
|
|
60
68
|
post: operations["PublicApiService_GetWalletAccount"];
|
|
61
69
|
};
|
|
62
70
|
"/public/v1/query/list_activities": {
|
|
63
|
-
/** List all
|
|
71
|
+
/** List all activities within an organization. */
|
|
64
72
|
post: operations["PublicApiService_GetActivities"];
|
|
65
73
|
};
|
|
66
74
|
"/public/v1/query/list_policies": {
|
|
67
|
-
/** List all
|
|
75
|
+
/** List all policies within an organization. */
|
|
68
76
|
post: operations["PublicApiService_GetPolicies"];
|
|
69
77
|
};
|
|
70
78
|
"/public/v1/query/list_private_key_tags": {
|
|
71
|
-
/** List all
|
|
79
|
+
/** List all private key tags within an organization. */
|
|
72
80
|
post: operations["PublicApiService_ListPrivateKeyTags"];
|
|
73
81
|
};
|
|
74
82
|
"/public/v1/query/list_private_keys": {
|
|
75
|
-
/** List all
|
|
83
|
+
/** List all private keys within an organization. */
|
|
76
84
|
post: operations["PublicApiService_GetPrivateKeys"];
|
|
77
85
|
};
|
|
86
|
+
"/public/v1/query/list_smart_contract_interfaces": {
|
|
87
|
+
/** List all smart contract interfaces within an organization. */
|
|
88
|
+
post: operations["PublicApiService_GetSmartContractInterfaces"];
|
|
89
|
+
};
|
|
78
90
|
"/public/v1/query/list_suborgs": {
|
|
79
91
|
/** Get all suborg IDs associated given a parent org ID and an optional filter. */
|
|
80
92
|
post: operations["PublicApiService_GetSubOrgIds"];
|
|
81
93
|
};
|
|
82
94
|
"/public/v1/query/list_user_tags": {
|
|
83
|
-
/** List all
|
|
95
|
+
/** List all user tags within an organization. */
|
|
84
96
|
post: operations["PublicApiService_ListUserTags"];
|
|
85
97
|
};
|
|
86
98
|
"/public/v1/query/list_users": {
|
|
87
|
-
/** List all
|
|
99
|
+
/** List all users within an organization. */
|
|
88
100
|
post: operations["PublicApiService_GetUsers"];
|
|
89
101
|
};
|
|
90
102
|
"/public/v1/query/list_verified_suborgs": {
|
|
@@ -92,47 +104,47 @@ export type paths = {
|
|
|
92
104
|
post: operations["PublicApiService_GetVerifiedSubOrgIds"];
|
|
93
105
|
};
|
|
94
106
|
"/public/v1/query/list_wallet_accounts": {
|
|
95
|
-
/** List all
|
|
107
|
+
/** List all accounts within a wallet. */
|
|
96
108
|
post: operations["PublicApiService_GetWalletAccounts"];
|
|
97
109
|
};
|
|
98
110
|
"/public/v1/query/list_wallets": {
|
|
99
|
-
/** List all
|
|
111
|
+
/** List all wallets within an organization. */
|
|
100
112
|
post: operations["PublicApiService_GetWallets"];
|
|
101
113
|
};
|
|
102
114
|
"/public/v1/query/whoami": {
|
|
103
|
-
/** Get basic information about your current API or WebAuthN user and their organization. Affords
|
|
115
|
+
/** Get basic information about your current API or WebAuthN user and their organization. Affords sub-organization look ups via parent organization for WebAuthN or API key users. */
|
|
104
116
|
post: operations["PublicApiService_GetWhoami"];
|
|
105
117
|
};
|
|
106
118
|
"/public/v1/submit/approve_activity": {
|
|
107
|
-
/** Approve an
|
|
119
|
+
/** Approve an activity. */
|
|
108
120
|
post: operations["PublicApiService_ApproveActivity"];
|
|
109
121
|
};
|
|
110
122
|
"/public/v1/submit/create_api_keys": {
|
|
111
|
-
/** Add
|
|
123
|
+
/** Add API keys to an existing user. */
|
|
112
124
|
post: operations["PublicApiService_CreateApiKeys"];
|
|
113
125
|
};
|
|
114
126
|
"/public/v1/submit/create_api_only_users": {
|
|
115
|
-
/** Create API-only
|
|
127
|
+
/** Create API-only users in an existing organization. */
|
|
116
128
|
post: operations["PublicApiService_CreateApiOnlyUsers"];
|
|
117
129
|
};
|
|
118
130
|
"/public/v1/submit/create_authenticators": {
|
|
119
|
-
/** Create
|
|
131
|
+
/** Create authenticators to authenticate requests to Turnkey. */
|
|
120
132
|
post: operations["PublicApiService_CreateAuthenticators"];
|
|
121
133
|
};
|
|
122
134
|
"/public/v1/submit/create_invitations": {
|
|
123
|
-
/** Create
|
|
135
|
+
/** Create invitations to join an existing organization. */
|
|
124
136
|
post: operations["PublicApiService_CreateInvitations"];
|
|
125
137
|
};
|
|
126
138
|
"/public/v1/submit/create_oauth_providers": {
|
|
127
|
-
/**
|
|
139
|
+
/** Create Oauth providers for a specified user. */
|
|
128
140
|
post: operations["PublicApiService_CreateOauthProviders"];
|
|
129
141
|
};
|
|
130
142
|
"/public/v1/submit/create_policies": {
|
|
131
|
-
/** Create new
|
|
143
|
+
/** Create new policies. */
|
|
132
144
|
post: operations["PublicApiService_CreatePolicies"];
|
|
133
145
|
};
|
|
134
146
|
"/public/v1/submit/create_policy": {
|
|
135
|
-
/** Create a new
|
|
147
|
+
/** Create a new policy. */
|
|
136
148
|
post: operations["PublicApiService_CreatePolicy"];
|
|
137
149
|
};
|
|
138
150
|
"/public/v1/submit/create_private_key_tag": {
|
|
@@ -140,19 +152,23 @@ export type paths = {
|
|
|
140
152
|
post: operations["PublicApiService_CreatePrivateKeyTag"];
|
|
141
153
|
};
|
|
142
154
|
"/public/v1/submit/create_private_keys": {
|
|
143
|
-
/** Create new
|
|
155
|
+
/** Create new private keys. */
|
|
144
156
|
post: operations["PublicApiService_CreatePrivateKeys"];
|
|
145
157
|
};
|
|
146
158
|
"/public/v1/submit/create_read_only_session": {
|
|
147
|
-
/** Create a read only session for a user (valid for 1 hour) */
|
|
159
|
+
/** Create a read only session for a user (valid for 1 hour). */
|
|
148
160
|
post: operations["PublicApiService_CreateReadOnlySession"];
|
|
149
161
|
};
|
|
150
162
|
"/public/v1/submit/create_read_write_session": {
|
|
151
|
-
/** Create a read write session for a user */
|
|
163
|
+
/** Create a read write session for a user. */
|
|
152
164
|
post: operations["PublicApiService_CreateReadWriteSession"];
|
|
153
165
|
};
|
|
166
|
+
"/public/v1/submit/create_smart_contract_interface": {
|
|
167
|
+
/** Create an ABI/IDL in JSON. */
|
|
168
|
+
post: operations["PublicApiService_CreateSmartContractInterface"];
|
|
169
|
+
};
|
|
154
170
|
"/public/v1/submit/create_sub_organization": {
|
|
155
|
-
/** Create a new
|
|
171
|
+
/** Create a new sub-organization. */
|
|
156
172
|
post: operations["PublicApiService_CreateSubOrganization"];
|
|
157
173
|
};
|
|
158
174
|
"/public/v1/submit/create_user_tag": {
|
|
@@ -160,159 +176,163 @@ export type paths = {
|
|
|
160
176
|
post: operations["PublicApiService_CreateUserTag"];
|
|
161
177
|
};
|
|
162
178
|
"/public/v1/submit/create_users": {
|
|
163
|
-
/** Create
|
|
179
|
+
/** Create users in an existing organization. */
|
|
164
180
|
post: operations["PublicApiService_CreateUsers"];
|
|
165
181
|
};
|
|
166
182
|
"/public/v1/submit/create_wallet": {
|
|
167
|
-
/** Create a
|
|
183
|
+
/** Create a wallet and derive addresses. */
|
|
168
184
|
post: operations["PublicApiService_CreateWallet"];
|
|
169
185
|
};
|
|
170
186
|
"/public/v1/submit/create_wallet_accounts": {
|
|
171
|
-
/** Derive additional addresses using an existing wallet */
|
|
187
|
+
/** Derive additional addresses using an existing wallet. */
|
|
172
188
|
post: operations["PublicApiService_CreateWalletAccounts"];
|
|
173
189
|
};
|
|
174
190
|
"/public/v1/submit/delete_api_keys": {
|
|
175
|
-
/** Remove api keys from a
|
|
191
|
+
/** Remove api keys from a user. */
|
|
176
192
|
post: operations["PublicApiService_DeleteApiKeys"];
|
|
177
193
|
};
|
|
178
194
|
"/public/v1/submit/delete_authenticators": {
|
|
179
|
-
/** Remove authenticators from a
|
|
195
|
+
/** Remove authenticators from a user. */
|
|
180
196
|
post: operations["PublicApiService_DeleteAuthenticators"];
|
|
181
197
|
};
|
|
182
198
|
"/public/v1/submit/delete_invitation": {
|
|
183
|
-
/** Delete an existing
|
|
199
|
+
/** Delete an existing invitation. */
|
|
184
200
|
post: operations["PublicApiService_DeleteInvitation"];
|
|
185
201
|
};
|
|
186
202
|
"/public/v1/submit/delete_oauth_providers": {
|
|
187
|
-
/**
|
|
203
|
+
/** Remove Oauth providers for a specified user. */
|
|
188
204
|
post: operations["PublicApiService_DeleteOauthProviders"];
|
|
189
205
|
};
|
|
190
206
|
"/public/v1/submit/delete_policy": {
|
|
191
|
-
/** Delete an existing
|
|
207
|
+
/** Delete an existing policy. */
|
|
192
208
|
post: operations["PublicApiService_DeletePolicy"];
|
|
193
209
|
};
|
|
194
210
|
"/public/v1/submit/delete_private_key_tags": {
|
|
195
|
-
/** Delete
|
|
211
|
+
/** Delete private key tags within an organization. */
|
|
196
212
|
post: operations["PublicApiService_DeletePrivateKeyTags"];
|
|
197
213
|
};
|
|
198
214
|
"/public/v1/submit/delete_private_keys": {
|
|
199
|
-
/**
|
|
215
|
+
/** Delete private keys for an organization. */
|
|
200
216
|
post: operations["PublicApiService_DeletePrivateKeys"];
|
|
201
217
|
};
|
|
218
|
+
"/public/v1/submit/delete_smart_contract_interface": {
|
|
219
|
+
/** Delete a smart contract interface. */
|
|
220
|
+
post: operations["PublicApiService_DeleteSmartContractInterface"];
|
|
221
|
+
};
|
|
202
222
|
"/public/v1/submit/delete_sub_organization": {
|
|
203
|
-
/**
|
|
223
|
+
/** Delete a sub-organization. */
|
|
204
224
|
post: operations["PublicApiService_DeleteSubOrganization"];
|
|
205
225
|
};
|
|
206
226
|
"/public/v1/submit/delete_user_tags": {
|
|
207
|
-
/** Delete
|
|
227
|
+
/** Delete user tags within an organization. */
|
|
208
228
|
post: operations["PublicApiService_DeleteUserTags"];
|
|
209
229
|
};
|
|
210
230
|
"/public/v1/submit/delete_users": {
|
|
211
|
-
/** Delete
|
|
231
|
+
/** Delete users within an organization. */
|
|
212
232
|
post: operations["PublicApiService_DeleteUsers"];
|
|
213
233
|
};
|
|
214
234
|
"/public/v1/submit/delete_wallets": {
|
|
215
|
-
/**
|
|
235
|
+
/** Delete wallets for an organization. */
|
|
216
236
|
post: operations["PublicApiService_DeleteWallets"];
|
|
217
237
|
};
|
|
218
238
|
"/public/v1/submit/email_auth": {
|
|
219
|
-
/** Authenticate a user via
|
|
239
|
+
/** Authenticate a user via email. */
|
|
220
240
|
post: operations["PublicApiService_EmailAuth"];
|
|
221
241
|
};
|
|
222
242
|
"/public/v1/submit/export_private_key": {
|
|
223
|
-
/**
|
|
243
|
+
/** Export a private key. */
|
|
224
244
|
post: operations["PublicApiService_ExportPrivateKey"];
|
|
225
245
|
};
|
|
226
246
|
"/public/v1/submit/export_wallet": {
|
|
227
|
-
/**
|
|
247
|
+
/** Export a wallet. */
|
|
228
248
|
post: operations["PublicApiService_ExportWallet"];
|
|
229
249
|
};
|
|
230
250
|
"/public/v1/submit/export_wallet_account": {
|
|
231
|
-
/**
|
|
251
|
+
/** Export a wallet account. */
|
|
232
252
|
post: operations["PublicApiService_ExportWalletAccount"];
|
|
233
253
|
};
|
|
234
254
|
"/public/v1/submit/import_private_key": {
|
|
235
|
-
/**
|
|
255
|
+
/** Import a private key. */
|
|
236
256
|
post: operations["PublicApiService_ImportPrivateKey"];
|
|
237
257
|
};
|
|
238
258
|
"/public/v1/submit/import_wallet": {
|
|
239
|
-
/**
|
|
259
|
+
/** Import a wallet. */
|
|
240
260
|
post: operations["PublicApiService_ImportWallet"];
|
|
241
261
|
};
|
|
242
262
|
"/public/v1/submit/init_fiat_on_ramp": {
|
|
243
|
-
/** Initiate a fiat on ramp flow */
|
|
263
|
+
/** Initiate a fiat on ramp flow. */
|
|
244
264
|
post: operations["PublicApiService_InitFiatOnRamp"];
|
|
245
265
|
};
|
|
246
266
|
"/public/v1/submit/init_import_private_key": {
|
|
247
|
-
/**
|
|
267
|
+
/** Initialize a new private key import. */
|
|
248
268
|
post: operations["PublicApiService_InitImportPrivateKey"];
|
|
249
269
|
};
|
|
250
270
|
"/public/v1/submit/init_import_wallet": {
|
|
251
|
-
/**
|
|
271
|
+
/** Initialize a new wallet import. */
|
|
252
272
|
post: operations["PublicApiService_InitImportWallet"];
|
|
253
273
|
};
|
|
254
274
|
"/public/v1/submit/init_otp": {
|
|
255
|
-
/** Initiate a
|
|
275
|
+
/** Initiate a generic OTP activity. */
|
|
256
276
|
post: operations["PublicApiService_InitOtp"];
|
|
257
277
|
};
|
|
258
278
|
"/public/v1/submit/init_otp_auth": {
|
|
259
|
-
/** Initiate an OTP auth activity */
|
|
279
|
+
/** Initiate an OTP auth activity. */
|
|
260
280
|
post: operations["PublicApiService_InitOtpAuth"];
|
|
261
281
|
};
|
|
262
282
|
"/public/v1/submit/init_user_email_recovery": {
|
|
263
|
-
/**
|
|
283
|
+
/** Initialize a new email recovery. */
|
|
264
284
|
post: operations["PublicApiService_InitUserEmailRecovery"];
|
|
265
285
|
};
|
|
266
286
|
"/public/v1/submit/oauth": {
|
|
267
|
-
/** Authenticate a user with an
|
|
287
|
+
/** Authenticate a user with an OIDC token (Oauth). */
|
|
268
288
|
post: operations["PublicApiService_Oauth"];
|
|
269
289
|
};
|
|
270
290
|
"/public/v1/submit/oauth_login": {
|
|
271
|
-
/** Create an Oauth session for a user */
|
|
291
|
+
/** Create an Oauth session for a user. */
|
|
272
292
|
post: operations["PublicApiService_OauthLogin"];
|
|
273
293
|
};
|
|
274
294
|
"/public/v1/submit/otp_auth": {
|
|
275
|
-
/** Authenticate a user with an OTP code sent via email or SMS */
|
|
295
|
+
/** Authenticate a user with an OTP code sent via email or SMS. */
|
|
276
296
|
post: operations["PublicApiService_OtpAuth"];
|
|
277
297
|
};
|
|
278
298
|
"/public/v1/submit/otp_login": {
|
|
279
|
-
/** Create an OTP session for a user */
|
|
299
|
+
/** Create an OTP session for a user. */
|
|
280
300
|
post: operations["PublicApiService_OtpLogin"];
|
|
281
301
|
};
|
|
282
302
|
"/public/v1/submit/recover_user": {
|
|
283
|
-
/**
|
|
303
|
+
/** Complete the process of recovering a user by adding an authenticator. */
|
|
284
304
|
post: operations["PublicApiService_RecoverUser"];
|
|
285
305
|
};
|
|
286
306
|
"/public/v1/submit/reject_activity": {
|
|
287
|
-
/** Reject an
|
|
307
|
+
/** Reject an activity. */
|
|
288
308
|
post: operations["PublicApiService_RejectActivity"];
|
|
289
309
|
};
|
|
290
310
|
"/public/v1/submit/remove_organization_feature": {
|
|
291
|
-
/**
|
|
311
|
+
/** Remove an organization feature. This activity must be approved by the current root quorum. */
|
|
292
312
|
post: operations["PublicApiService_RemoveOrganizationFeature"];
|
|
293
313
|
};
|
|
294
314
|
"/public/v1/submit/set_organization_feature": {
|
|
295
|
-
/**
|
|
315
|
+
/** Set an organization feature. This activity must be approved by the current root quorum. */
|
|
296
316
|
post: operations["PublicApiService_SetOrganizationFeature"];
|
|
297
317
|
};
|
|
298
318
|
"/public/v1/submit/sign_raw_payload": {
|
|
299
|
-
/** Sign a raw payload */
|
|
319
|
+
/** Sign a raw payload. */
|
|
300
320
|
post: operations["PublicApiService_SignRawPayload"];
|
|
301
321
|
};
|
|
302
322
|
"/public/v1/submit/sign_raw_payloads": {
|
|
303
|
-
/** Sign multiple raw payloads with the same signing parameters */
|
|
323
|
+
/** Sign multiple raw payloads with the same signing parameters. */
|
|
304
324
|
post: operations["PublicApiService_SignRawPayloads"];
|
|
305
325
|
};
|
|
306
326
|
"/public/v1/submit/sign_transaction": {
|
|
307
|
-
/** Sign a transaction */
|
|
327
|
+
/** Sign a transaction. */
|
|
308
328
|
post: operations["PublicApiService_SignTransaction"];
|
|
309
329
|
};
|
|
310
330
|
"/public/v1/submit/stamp_login": {
|
|
311
|
-
/** Create a session for a user through stamping client side (
|
|
331
|
+
/** Create a session for a user through stamping client side (API key, wallet client, or passkey client). */
|
|
312
332
|
post: operations["PublicApiService_StampLogin"];
|
|
313
333
|
};
|
|
314
334
|
"/public/v1/submit/update_policy": {
|
|
315
|
-
/** Update an existing
|
|
335
|
+
/** Update an existing policy. */
|
|
316
336
|
post: operations["PublicApiService_UpdatePolicy"];
|
|
317
337
|
};
|
|
318
338
|
"/public/v1/submit/update_private_key_tag": {
|
|
@@ -324,19 +344,19 @@ export type paths = {
|
|
|
324
344
|
post: operations["PublicApiService_UpdateRootQuorum"];
|
|
325
345
|
};
|
|
326
346
|
"/public/v1/submit/update_user": {
|
|
327
|
-
/** Update a
|
|
347
|
+
/** Update a user in an existing organization. */
|
|
328
348
|
post: operations["PublicApiService_UpdateUser"];
|
|
329
349
|
};
|
|
330
350
|
"/public/v1/submit/update_user_email": {
|
|
331
|
-
/** Update a
|
|
351
|
+
/** Update a user's email in an existing organization. */
|
|
332
352
|
post: operations["PublicApiService_UpdateUserEmail"];
|
|
333
353
|
};
|
|
334
354
|
"/public/v1/submit/update_user_name": {
|
|
335
|
-
/** Update a
|
|
355
|
+
/** Update a user's name in an existing organization. */
|
|
336
356
|
post: operations["PublicApiService_UpdateUserName"];
|
|
337
357
|
};
|
|
338
358
|
"/public/v1/submit/update_user_phone_number": {
|
|
339
|
-
/** Update a
|
|
359
|
+
/** Update a user's phone number in an existing organization. */
|
|
340
360
|
post: operations["PublicApiService_UpdateUserPhoneNumber"];
|
|
341
361
|
};
|
|
342
362
|
"/public/v1/submit/update_user_tag": {
|
|
@@ -344,18 +364,18 @@ export type paths = {
|
|
|
344
364
|
post: operations["PublicApiService_UpdateUserTag"];
|
|
345
365
|
};
|
|
346
366
|
"/public/v1/submit/update_wallet": {
|
|
347
|
-
/** Update a wallet for an organization */
|
|
367
|
+
/** Update a wallet for an organization. */
|
|
348
368
|
post: operations["PublicApiService_UpdateWallet"];
|
|
349
369
|
};
|
|
350
370
|
"/public/v1/submit/verify_otp": {
|
|
351
|
-
/** Verify a
|
|
371
|
+
/** Verify a generic OTP. */
|
|
352
372
|
post: operations["PublicApiService_VerifyOtp"];
|
|
353
373
|
};
|
|
354
374
|
"/tkhq/api/v1/noop-codegen-anchor": {
|
|
355
375
|
post: operations["PublicApiService_NOOPCodegenAnchor"];
|
|
356
376
|
};
|
|
357
377
|
"/tkhq/api/v1/test_rate_limits": {
|
|
358
|
-
/** Set a rate local rate limit just on the current endpoint, for purposes of testing with Vivosuite */
|
|
378
|
+
/** Set a rate local rate limit just on the current endpoint, for purposes of testing with Vivosuite. */
|
|
359
379
|
post: operations["PublicApiService_TestRateLimits"];
|
|
360
380
|
};
|
|
361
381
|
};
|
|
@@ -423,6 +443,19 @@ export type definitions = {
|
|
|
423
443
|
createdAt: definitions["externaldatav1Timestamp"];
|
|
424
444
|
updatedAt: definitions["externaldatav1Timestamp"];
|
|
425
445
|
};
|
|
446
|
+
externalactivityv1PolicyEvaluation: {
|
|
447
|
+
/** @description Unique identifier for a given policy evaluation. */
|
|
448
|
+
id: string;
|
|
449
|
+
/** @description Unique identifier for a given Activity. */
|
|
450
|
+
activityId: string;
|
|
451
|
+
/** @description Unique identifier for the Organization the Activity belongs to. */
|
|
452
|
+
organizationId: string;
|
|
453
|
+
/** @description Unique identifier for the Vote associated with this policy evaluation. */
|
|
454
|
+
voteId: string;
|
|
455
|
+
/** @description Detailed evaluation result for each Policy that was run. */
|
|
456
|
+
policyEvaluations: definitions["privateumpv1PolicyEvaluation"][];
|
|
457
|
+
createdAt: definitions["externaldatav1Timestamp"];
|
|
458
|
+
};
|
|
426
459
|
externaldatav1Address: {
|
|
427
460
|
format?: definitions["v1AddressFormat"];
|
|
428
461
|
address?: string;
|
|
@@ -441,6 +474,24 @@ export type definitions = {
|
|
|
441
474
|
/** @description Unique identifiers of quorum set members. */
|
|
442
475
|
userIds: string[];
|
|
443
476
|
};
|
|
477
|
+
externaldatav1SmartContractInterface: {
|
|
478
|
+
/** @description The Organization the Smart Contract Interface belongs to. */
|
|
479
|
+
organizationId: string;
|
|
480
|
+
/** @description Unique identifier for a given Smart Contract Interface (ABI or IDL). */
|
|
481
|
+
smartContractInterfaceId: string;
|
|
482
|
+
/** @description The address corresponding to the Smart Contract or Program. */
|
|
483
|
+
smartContractAddress: string;
|
|
484
|
+
/** @description The JSON corresponding to the Smart Contract Interface (ABI or IDL). */
|
|
485
|
+
smartContractInterface: string;
|
|
486
|
+
/** @description The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */
|
|
487
|
+
type: string;
|
|
488
|
+
/** @description The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */
|
|
489
|
+
label: string;
|
|
490
|
+
/** @description The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */
|
|
491
|
+
notes: string;
|
|
492
|
+
createdAt: definitions["externaldatav1Timestamp"];
|
|
493
|
+
updatedAt: definitions["externaldatav1Timestamp"];
|
|
494
|
+
};
|
|
444
495
|
externaldatav1Timestamp: {
|
|
445
496
|
seconds: string;
|
|
446
497
|
nanos: string;
|
|
@@ -449,6 +500,10 @@ export type definitions = {
|
|
|
449
500
|
format?: definitions["v1AddressFormat"];
|
|
450
501
|
address?: string;
|
|
451
502
|
};
|
|
503
|
+
privateumpv1PolicyEvaluation: {
|
|
504
|
+
policyId?: string;
|
|
505
|
+
outcome?: definitions["v1Outcome"];
|
|
506
|
+
};
|
|
452
507
|
protobufAny: {
|
|
453
508
|
"@type"?: string;
|
|
454
509
|
} & {
|
|
@@ -509,13 +564,13 @@ export type definitions = {
|
|
|
509
564
|
failure?: definitions["rpcStatus"];
|
|
510
565
|
};
|
|
511
566
|
v1ActivityResponse: {
|
|
512
|
-
/** @description An action that can
|
|
567
|
+
/** @description An action that can be taken within the Turnkey infrastructure. */
|
|
513
568
|
activity: definitions["v1Activity"];
|
|
514
569
|
};
|
|
515
570
|
/** @enum {string} */
|
|
516
571
|
v1ActivityStatus: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
|
|
517
572
|
/** @enum {string} */
|
|
518
|
-
v1ActivityType: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2" | "ACTIVITY_TYPE_CREATE_ORGANIZATION_V2" | "ACTIVITY_TYPE_CREATE_USERS_V2" | "ACTIVITY_TYPE_ACCEPT_INVITATION_V2" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V2" | "ACTIVITY_TYPE_UPDATE_ALLOWED_ORIGINS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2" | "ACTIVITY_TYPE_UPDATE_USER" | "ACTIVITY_TYPE_UPDATE_POLICY" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD_V2" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V3" | "ACTIVITY_TYPE_CREATE_WALLET" | "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS" | "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY" | "ACTIVITY_TYPE_RECOVER_USER" | "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE" | "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2" | "ACTIVITY_TYPE_SIGN_TRANSACTION_V2" | "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY" | "ACTIVITY_TYPE_EXPORT_WALLET" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V4" | "ACTIVITY_TYPE_EMAIL_AUTH" | "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT" | "ACTIVITY_TYPE_INIT_IMPORT_WALLET" | "ACTIVITY_TYPE_IMPORT_WALLET" | "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY" | "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY" | "ACTIVITY_TYPE_CREATE_POLICIES" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS" | "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION" | "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS" | "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V5" | "ACTIVITY_TYPE_OAUTH" | "ACTIVITY_TYPE_CREATE_API_KEYS_V2" | "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION" | "ACTIVITY_TYPE_EMAIL_AUTH_V2" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V6" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS" | "ACTIVITY_TYPE_DELETE_WALLETS" | "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2" | "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION" | "ACTIVITY_TYPE_INIT_OTP_AUTH" | "ACTIVITY_TYPE_OTP_AUTH" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7" | "ACTIVITY_TYPE_UPDATE_WALLET" | "ACTIVITY_TYPE_UPDATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_USERS_V3" | "ACTIVITY_TYPE_INIT_OTP_AUTH_V2" | "ACTIVITY_TYPE_INIT_OTP" | "ACTIVITY_TYPE_VERIFY_OTP" | "ACTIVITY_TYPE_OTP_LOGIN" | "ACTIVITY_TYPE_STAMP_LOGIN" | "ACTIVITY_TYPE_OAUTH_LOGIN" | "ACTIVITY_TYPE_UPDATE_USER_NAME" | "ACTIVITY_TYPE_UPDATE_USER_EMAIL" | "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" | "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP";
|
|
573
|
+
v1ActivityType: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2" | "ACTIVITY_TYPE_CREATE_ORGANIZATION_V2" | "ACTIVITY_TYPE_CREATE_USERS_V2" | "ACTIVITY_TYPE_ACCEPT_INVITATION_V2" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V2" | "ACTIVITY_TYPE_UPDATE_ALLOWED_ORIGINS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2" | "ACTIVITY_TYPE_UPDATE_USER" | "ACTIVITY_TYPE_UPDATE_POLICY" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD_V2" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V3" | "ACTIVITY_TYPE_CREATE_WALLET" | "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS" | "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY" | "ACTIVITY_TYPE_RECOVER_USER" | "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE" | "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2" | "ACTIVITY_TYPE_SIGN_TRANSACTION_V2" | "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY" | "ACTIVITY_TYPE_EXPORT_WALLET" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V4" | "ACTIVITY_TYPE_EMAIL_AUTH" | "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT" | "ACTIVITY_TYPE_INIT_IMPORT_WALLET" | "ACTIVITY_TYPE_IMPORT_WALLET" | "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY" | "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY" | "ACTIVITY_TYPE_CREATE_POLICIES" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS" | "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION" | "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS" | "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V5" | "ACTIVITY_TYPE_OAUTH" | "ACTIVITY_TYPE_CREATE_API_KEYS_V2" | "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION" | "ACTIVITY_TYPE_EMAIL_AUTH_V2" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V6" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS" | "ACTIVITY_TYPE_DELETE_WALLETS" | "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2" | "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION" | "ACTIVITY_TYPE_INIT_OTP_AUTH" | "ACTIVITY_TYPE_OTP_AUTH" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7" | "ACTIVITY_TYPE_UPDATE_WALLET" | "ACTIVITY_TYPE_UPDATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_USERS_V3" | "ACTIVITY_TYPE_INIT_OTP_AUTH_V2" | "ACTIVITY_TYPE_INIT_OTP" | "ACTIVITY_TYPE_VERIFY_OTP" | "ACTIVITY_TYPE_OTP_LOGIN" | "ACTIVITY_TYPE_STAMP_LOGIN" | "ACTIVITY_TYPE_OAUTH_LOGIN" | "ACTIVITY_TYPE_UPDATE_USER_NAME" | "ACTIVITY_TYPE_UPDATE_USER_EMAIL" | "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" | "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" | "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE" | "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE";
|
|
519
574
|
/** @enum {string} */
|
|
520
575
|
v1AddressFormat: "ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM" | "ADDRESS_FORMAT_SOLANA" | "ADDRESS_FORMAT_COSMOS" | "ADDRESS_FORMAT_TRON" | "ADDRESS_FORMAT_SUI" | "ADDRESS_FORMAT_APTOS" | "ADDRESS_FORMAT_BITCOIN_MAINNET_P2PKH" | "ADDRESS_FORMAT_BITCOIN_MAINNET_P2SH" | "ADDRESS_FORMAT_BITCOIN_MAINNET_P2WPKH" | "ADDRESS_FORMAT_BITCOIN_MAINNET_P2WSH" | "ADDRESS_FORMAT_BITCOIN_MAINNET_P2TR" | "ADDRESS_FORMAT_BITCOIN_TESTNET_P2PKH" | "ADDRESS_FORMAT_BITCOIN_TESTNET_P2SH" | "ADDRESS_FORMAT_BITCOIN_TESTNET_P2WPKH" | "ADDRESS_FORMAT_BITCOIN_TESTNET_P2WSH" | "ADDRESS_FORMAT_BITCOIN_TESTNET_P2TR" | "ADDRESS_FORMAT_BITCOIN_SIGNET_P2PKH" | "ADDRESS_FORMAT_BITCOIN_SIGNET_P2SH" | "ADDRESS_FORMAT_BITCOIN_SIGNET_P2WPKH" | "ADDRESS_FORMAT_BITCOIN_SIGNET_P2WSH" | "ADDRESS_FORMAT_BITCOIN_SIGNET_P2TR" | "ADDRESS_FORMAT_BITCOIN_REGTEST_P2PKH" | "ADDRESS_FORMAT_BITCOIN_REGTEST_P2SH" | "ADDRESS_FORMAT_BITCOIN_REGTEST_P2WPKH" | "ADDRESS_FORMAT_BITCOIN_REGTEST_P2WSH" | "ADDRESS_FORMAT_BITCOIN_REGTEST_P2TR" | "ADDRESS_FORMAT_SEI" | "ADDRESS_FORMAT_XLM" | "ADDRESS_FORMAT_DOGE_MAINNET" | "ADDRESS_FORMAT_DOGE_TESTNET" | "ADDRESS_FORMAT_TON_V3R2" | "ADDRESS_FORMAT_TON_V4R2" | "ADDRESS_FORMAT_TON_V5R1" | "ADDRESS_FORMAT_XRP";
|
|
521
576
|
v1ApiKey: {
|
|
@@ -947,6 +1002,30 @@ export type definitions = {
|
|
|
947
1002
|
/** @description HPKE encrypted credential bundle */
|
|
948
1003
|
credentialBundle: string;
|
|
949
1004
|
};
|
|
1005
|
+
v1CreateSmartContractInterfaceIntent: {
|
|
1006
|
+
/** @description Corresponding contract address or program ID */
|
|
1007
|
+
smartContractAddress: string;
|
|
1008
|
+
/** @description ABI/IDL as a JSON string */
|
|
1009
|
+
smartContractInterface: string;
|
|
1010
|
+
type: definitions["v1SmartContractInterfaceType"];
|
|
1011
|
+
/** @description Human-readable name for a Smart Contract Interface. */
|
|
1012
|
+
label: string;
|
|
1013
|
+
/** @description Notes for a Smart Contract Interface. */
|
|
1014
|
+
notes?: string;
|
|
1015
|
+
};
|
|
1016
|
+
v1CreateSmartContractInterfaceRequest: {
|
|
1017
|
+
/** @enum {string} */
|
|
1018
|
+
type: "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE";
|
|
1019
|
+
/** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
|
|
1020
|
+
timestampMs: string;
|
|
1021
|
+
/** @description Unique identifier for a given Organization. */
|
|
1022
|
+
organizationId: string;
|
|
1023
|
+
parameters: definitions["v1CreateSmartContractInterfaceIntent"];
|
|
1024
|
+
};
|
|
1025
|
+
v1CreateSmartContractInterfaceResult: {
|
|
1026
|
+
/** @description The ID of the created Smart Contract Interface. */
|
|
1027
|
+
smartContractInterfaceId: string;
|
|
1028
|
+
};
|
|
950
1029
|
v1CreateSubOrganizationIntent: {
|
|
951
1030
|
/** @description Name for this sub-organization */
|
|
952
1031
|
name: string;
|
|
@@ -1323,6 +1402,23 @@ export type definitions = {
|
|
|
1323
1402
|
/** @description A list of private key unique identifiers that were removed */
|
|
1324
1403
|
privateKeyIds: string[];
|
|
1325
1404
|
};
|
|
1405
|
+
v1DeleteSmartContractInterfaceIntent: {
|
|
1406
|
+
/** @description The ID of a Smart Contract Interface intended for deletion. */
|
|
1407
|
+
smartContractInterfaceId: string;
|
|
1408
|
+
};
|
|
1409
|
+
v1DeleteSmartContractInterfaceRequest: {
|
|
1410
|
+
/** @enum {string} */
|
|
1411
|
+
type: "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE";
|
|
1412
|
+
/** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
|
|
1413
|
+
timestampMs: string;
|
|
1414
|
+
/** @description Unique identifier for a given Organization. */
|
|
1415
|
+
organizationId: string;
|
|
1416
|
+
parameters: definitions["v1DeleteSmartContractInterfaceIntent"];
|
|
1417
|
+
};
|
|
1418
|
+
v1DeleteSmartContractInterfaceResult: {
|
|
1419
|
+
/** @description The ID of the deleted Smart Contract Interface. */
|
|
1420
|
+
smartContractInterfaceId: string;
|
|
1421
|
+
};
|
|
1326
1422
|
v1DeleteSubOrganizationIntent: {
|
|
1327
1423
|
/** @description Sub-organization deletion, by default, requires associated wallets and private keys to be exported for security reasons. Set this boolean to true to force sub-organization deletion even if some wallets or private keys within it have not been exported yet. Default: false. */
|
|
1328
1424
|
deleteWithoutExport?: boolean;
|
|
@@ -1554,27 +1650,27 @@ export type definitions = {
|
|
|
1554
1650
|
/** @enum {string} */
|
|
1555
1651
|
v1FiatOnRampProvider: "FIAT_ON_RAMP_PROVIDER_COINBASE" | "FIAT_ON_RAMP_PROVIDER_MOONPAY";
|
|
1556
1652
|
v1GetActivitiesRequest: {
|
|
1557
|
-
/** @description Unique identifier for a given
|
|
1653
|
+
/** @description Unique identifier for a given organization. */
|
|
1558
1654
|
organizationId: string;
|
|
1559
|
-
/** @description Array of
|
|
1655
|
+
/** @description Array of activity statuses filtering which activities will be listed in the response. */
|
|
1560
1656
|
filterByStatus?: definitions["v1ActivityStatus"][];
|
|
1561
1657
|
/** @description Parameters used for cursor-based pagination. */
|
|
1562
1658
|
paginationOptions?: definitions["v1Pagination"];
|
|
1563
|
-
/** @description Array of
|
|
1659
|
+
/** @description Array of activity types filtering which activities will be listed in the response. */
|
|
1564
1660
|
filterByType?: definitions["v1ActivityType"][];
|
|
1565
1661
|
};
|
|
1566
1662
|
v1GetActivitiesResponse: {
|
|
1567
|
-
/** @description A list of
|
|
1663
|
+
/** @description A list of activities. */
|
|
1568
1664
|
activities: definitions["v1Activity"][];
|
|
1569
1665
|
};
|
|
1570
1666
|
v1GetActivityRequest: {
|
|
1571
|
-
/** @description Unique identifier for a given
|
|
1667
|
+
/** @description Unique identifier for a given organization. */
|
|
1572
1668
|
organizationId: string;
|
|
1573
|
-
/** @description Unique identifier for a given
|
|
1669
|
+
/** @description Unique identifier for a given activity object. */
|
|
1574
1670
|
activityId: string;
|
|
1575
1671
|
};
|
|
1576
1672
|
v1GetApiKeyRequest: {
|
|
1577
|
-
/** @description Unique identifier for a given
|
|
1673
|
+
/** @description Unique identifier for a given organization. */
|
|
1578
1674
|
organizationId: string;
|
|
1579
1675
|
/** @description Unique identifier for a given API key. */
|
|
1580
1676
|
apiKeyId: string;
|
|
@@ -1584,9 +1680,9 @@ export type definitions = {
|
|
|
1584
1680
|
apiKey: definitions["v1ApiKey"];
|
|
1585
1681
|
};
|
|
1586
1682
|
v1GetApiKeysRequest: {
|
|
1587
|
-
/** @description Unique identifier for a given
|
|
1683
|
+
/** @description Unique identifier for a given organization. */
|
|
1588
1684
|
organizationId: string;
|
|
1589
|
-
/** @description Unique identifier for a given
|
|
1685
|
+
/** @description Unique identifier for a given user. */
|
|
1590
1686
|
userId?: string;
|
|
1591
1687
|
};
|
|
1592
1688
|
v1GetApiKeysResponse: {
|
|
@@ -1594,22 +1690,22 @@ export type definitions = {
|
|
|
1594
1690
|
apiKeys: definitions["v1ApiKey"][];
|
|
1595
1691
|
};
|
|
1596
1692
|
v1GetAttestationDocumentRequest: {
|
|
1597
|
-
/** @description Unique identifier for a given
|
|
1693
|
+
/** @description Unique identifier for a given organization. */
|
|
1598
1694
|
organizationId: string;
|
|
1599
|
-
/** @description The enclave type, one of: ump, notarizer, signer, evm-parser */
|
|
1695
|
+
/** @description The enclave type, one of: ump, notarizer, signer, evm-parser. */
|
|
1600
1696
|
enclaveType: string;
|
|
1601
1697
|
};
|
|
1602
1698
|
v1GetAttestationDocumentResponse: {
|
|
1603
1699
|
/**
|
|
1604
1700
|
* Format: byte
|
|
1605
|
-
* @description Raw (CBOR-encoded) attestation document
|
|
1701
|
+
* @description Raw (CBOR-encoded) attestation document.
|
|
1606
1702
|
*/
|
|
1607
1703
|
attestationDocument: string;
|
|
1608
1704
|
};
|
|
1609
1705
|
v1GetAuthenticatorRequest: {
|
|
1610
|
-
/** @description Unique identifier for a given
|
|
1706
|
+
/** @description Unique identifier for a given organization. */
|
|
1611
1707
|
organizationId: string;
|
|
1612
|
-
/** @description Unique identifier for a given
|
|
1708
|
+
/** @description Unique identifier for a given authenticator. */
|
|
1613
1709
|
authenticatorId: string;
|
|
1614
1710
|
};
|
|
1615
1711
|
v1GetAuthenticatorResponse: {
|
|
@@ -1617,9 +1713,9 @@ export type definitions = {
|
|
|
1617
1713
|
authenticator: definitions["v1Authenticator"];
|
|
1618
1714
|
};
|
|
1619
1715
|
v1GetAuthenticatorsRequest: {
|
|
1620
|
-
/** @description Unique identifier for a given
|
|
1716
|
+
/** @description Unique identifier for a given organization. */
|
|
1621
1717
|
organizationId: string;
|
|
1622
|
-
/** @description Unique identifier for a given
|
|
1718
|
+
/** @description Unique identifier for a given user. */
|
|
1623
1719
|
userId: string;
|
|
1624
1720
|
};
|
|
1625
1721
|
v1GetAuthenticatorsResponse: {
|
|
@@ -1627,53 +1723,62 @@ export type definitions = {
|
|
|
1627
1723
|
authenticators: definitions["v1Authenticator"][];
|
|
1628
1724
|
};
|
|
1629
1725
|
v1GetOauthProvidersRequest: {
|
|
1630
|
-
/** @description Unique identifier for a given
|
|
1726
|
+
/** @description Unique identifier for a given organization. */
|
|
1631
1727
|
organizationId: string;
|
|
1632
|
-
/** @description Unique identifier for a given
|
|
1728
|
+
/** @description Unique identifier for a given user. */
|
|
1633
1729
|
userId?: string;
|
|
1634
1730
|
};
|
|
1635
1731
|
v1GetOauthProvidersResponse: {
|
|
1636
|
-
/** @description A list of Oauth
|
|
1732
|
+
/** @description A list of Oauth providers. */
|
|
1637
1733
|
oauthProviders: definitions["v1OauthProvider"][];
|
|
1638
1734
|
};
|
|
1639
1735
|
v1GetOrganizationConfigsRequest: {
|
|
1640
|
-
/** @description Unique identifier for a given
|
|
1736
|
+
/** @description Unique identifier for a given organization. */
|
|
1641
1737
|
organizationId: string;
|
|
1642
1738
|
};
|
|
1643
1739
|
v1GetOrganizationConfigsResponse: {
|
|
1644
|
-
/** @description Organization configs including quorum settings and organization features */
|
|
1740
|
+
/** @description Organization configs including quorum settings and organization features. */
|
|
1645
1741
|
configs: definitions["v1Config"];
|
|
1646
1742
|
};
|
|
1647
1743
|
v1GetOrganizationRequest: {
|
|
1648
|
-
/** @description Unique identifier for a given
|
|
1744
|
+
/** @description Unique identifier for a given organization. */
|
|
1649
1745
|
organizationId: string;
|
|
1650
1746
|
};
|
|
1651
1747
|
v1GetOrganizationResponse: {
|
|
1652
|
-
/** @description Object representing the full current and deleted / disabled collection of
|
|
1748
|
+
/** @description Object representing the full current and deleted / disabled collection of users, policies, private keys, and invitations attributable to a particular organization. */
|
|
1653
1749
|
organizationData: definitions["v1OrganizationData"];
|
|
1654
1750
|
};
|
|
1655
1751
|
v1GetPoliciesRequest: {
|
|
1656
|
-
/** @description Unique identifier for a given
|
|
1752
|
+
/** @description Unique identifier for a given organization. */
|
|
1657
1753
|
organizationId: string;
|
|
1658
1754
|
};
|
|
1659
1755
|
v1GetPoliciesResponse: {
|
|
1660
|
-
/** @description A list of
|
|
1756
|
+
/** @description A list of policies. */
|
|
1661
1757
|
policies: definitions["v1Policy"][];
|
|
1662
1758
|
};
|
|
1759
|
+
v1GetPolicyEvaluationsRequest: {
|
|
1760
|
+
/** @description Unique identifier for a given organization. */
|
|
1761
|
+
organizationId: string;
|
|
1762
|
+
/** @description Unique identifier for a given activity. */
|
|
1763
|
+
activityId: string;
|
|
1764
|
+
};
|
|
1765
|
+
v1GetPolicyEvaluationsResponse: {
|
|
1766
|
+
policyEvaluations: definitions["externalactivityv1PolicyEvaluation"][];
|
|
1767
|
+
};
|
|
1663
1768
|
v1GetPolicyRequest: {
|
|
1664
|
-
/** @description Unique identifier for a given
|
|
1769
|
+
/** @description Unique identifier for a given organization. */
|
|
1665
1770
|
organizationId: string;
|
|
1666
|
-
/** @description Unique identifier for a given
|
|
1771
|
+
/** @description Unique identifier for a given policy. */
|
|
1667
1772
|
policyId: string;
|
|
1668
1773
|
};
|
|
1669
1774
|
v1GetPolicyResponse: {
|
|
1670
|
-
/** @description Object that codifies rules defining the actions that are permissible within an
|
|
1775
|
+
/** @description Object that codifies rules defining the actions that are permissible within an organization. */
|
|
1671
1776
|
policy: definitions["v1Policy"];
|
|
1672
1777
|
};
|
|
1673
1778
|
v1GetPrivateKeyRequest: {
|
|
1674
|
-
/** @description Unique identifier for a given
|
|
1779
|
+
/** @description Unique identifier for a given organization. */
|
|
1675
1780
|
organizationId: string;
|
|
1676
|
-
/** @description Unique identifier for a given
|
|
1781
|
+
/** @description Unique identifier for a given private key. */
|
|
1677
1782
|
privateKeyId: string;
|
|
1678
1783
|
};
|
|
1679
1784
|
v1GetPrivateKeyResponse: {
|
|
@@ -1681,17 +1786,35 @@ export type definitions = {
|
|
|
1681
1786
|
privateKey: definitions["v1PrivateKey"];
|
|
1682
1787
|
};
|
|
1683
1788
|
v1GetPrivateKeysRequest: {
|
|
1684
|
-
/** @description Unique identifier for a given
|
|
1789
|
+
/** @description Unique identifier for a given organization. */
|
|
1685
1790
|
organizationId: string;
|
|
1686
1791
|
};
|
|
1687
1792
|
v1GetPrivateKeysResponse: {
|
|
1688
|
-
/** @description A list of
|
|
1793
|
+
/** @description A list of private keys. */
|
|
1689
1794
|
privateKeys: definitions["v1PrivateKey"][];
|
|
1690
1795
|
};
|
|
1796
|
+
v1GetSmartContractInterfaceRequest: {
|
|
1797
|
+
/** @description Unique identifier for a given organization. */
|
|
1798
|
+
organizationId: string;
|
|
1799
|
+
/** @description Unique identifier for a given smart contract interface. */
|
|
1800
|
+
smartContractInterfaceId: string;
|
|
1801
|
+
};
|
|
1802
|
+
v1GetSmartContractInterfaceResponse: {
|
|
1803
|
+
/** @description Object to be used in conjunction with policies to guard transaction signing. */
|
|
1804
|
+
smartContractInterface: definitions["externaldatav1SmartContractInterface"];
|
|
1805
|
+
};
|
|
1806
|
+
v1GetSmartContractInterfacesRequest: {
|
|
1807
|
+
/** @description Unique identifier for a given organization. */
|
|
1808
|
+
organizationId: string;
|
|
1809
|
+
};
|
|
1810
|
+
v1GetSmartContractInterfacesResponse: {
|
|
1811
|
+
/** @description A list of smart contract interfaces. */
|
|
1812
|
+
smartContractInterfaces: definitions["externaldatav1SmartContractInterface"][];
|
|
1813
|
+
};
|
|
1691
1814
|
v1GetSubOrgIdsRequest: {
|
|
1692
|
-
/** @description Unique identifier for the parent
|
|
1815
|
+
/** @description Unique identifier for the parent organization. This is used to find sub-organizations within it. */
|
|
1693
1816
|
organizationId: string;
|
|
1694
|
-
/** @description Specifies the type of filter to apply, i.e 'CREDENTIAL_ID', 'NAME', 'USERNAME', 'EMAIL', 'PHONE_NUMBER', 'OIDC_TOKEN' or 'PUBLIC_KEY' */
|
|
1817
|
+
/** @description Specifies the type of filter to apply, i.e 'CREDENTIAL_ID', 'NAME', 'USERNAME', 'EMAIL', 'PHONE_NUMBER', 'OIDC_TOKEN', 'WALLET_ACCOUNT_ADDRESS' or 'PUBLIC_KEY' */
|
|
1695
1818
|
filterType?: string;
|
|
1696
1819
|
/** @description The value of the filter to apply for the specified type. For example, a specific email or name string. */
|
|
1697
1820
|
filterValue?: string;
|
|
@@ -1703,27 +1826,27 @@ export type definitions = {
|
|
|
1703
1826
|
organizationIds: string[];
|
|
1704
1827
|
};
|
|
1705
1828
|
v1GetUserRequest: {
|
|
1706
|
-
/** @description Unique identifier for a given
|
|
1829
|
+
/** @description Unique identifier for a given organization. */
|
|
1707
1830
|
organizationId: string;
|
|
1708
|
-
/** @description Unique identifier for a given
|
|
1831
|
+
/** @description Unique identifier for a given user. */
|
|
1709
1832
|
userId: string;
|
|
1710
1833
|
};
|
|
1711
1834
|
v1GetUserResponse: {
|
|
1712
|
-
/** @description Web and/or API user within your
|
|
1835
|
+
/** @description Web and/or API user within your organization. */
|
|
1713
1836
|
user: definitions["v1User"];
|
|
1714
1837
|
};
|
|
1715
1838
|
v1GetUsersRequest: {
|
|
1716
|
-
/** @description Unique identifier for a given
|
|
1839
|
+
/** @description Unique identifier for a given organization. */
|
|
1717
1840
|
organizationId: string;
|
|
1718
1841
|
};
|
|
1719
1842
|
v1GetUsersResponse: {
|
|
1720
|
-
/** @description A list of
|
|
1843
|
+
/** @description A list of users. */
|
|
1721
1844
|
users: definitions["v1User"][];
|
|
1722
1845
|
};
|
|
1723
1846
|
v1GetVerifiedSubOrgIdsRequest: {
|
|
1724
|
-
/** @description Unique identifier for the parent
|
|
1847
|
+
/** @description Unique identifier for the parent organization. This is used to find sub-organizations within it. */
|
|
1725
1848
|
organizationId: string;
|
|
1726
|
-
/** @description Specifies the type of filter to apply, i.e 'EMAIL', 'PHONE_NUMBER' */
|
|
1849
|
+
/** @description Specifies the type of filter to apply, i.e 'EMAIL', 'PHONE_NUMBER'. */
|
|
1727
1850
|
filterType?: string;
|
|
1728
1851
|
/** @description The value of the filter to apply for the specified type. For example, a specific email or phone number string. */
|
|
1729
1852
|
filterValue?: string;
|
|
@@ -1735,61 +1858,61 @@ export type definitions = {
|
|
|
1735
1858
|
organizationIds: string[];
|
|
1736
1859
|
};
|
|
1737
1860
|
v1GetWalletAccountRequest: {
|
|
1738
|
-
/** @description Unique identifier for a given
|
|
1861
|
+
/** @description Unique identifier for a given organization. */
|
|
1739
1862
|
organizationId: string;
|
|
1740
|
-
/** @description Unique identifier for a given
|
|
1863
|
+
/** @description Unique identifier for a given wallet. */
|
|
1741
1864
|
walletId: string;
|
|
1742
|
-
/** @description Address corresponding to a
|
|
1865
|
+
/** @description Address corresponding to a wallet account. */
|
|
1743
1866
|
address?: string;
|
|
1744
|
-
/** @description Path corresponding to a
|
|
1867
|
+
/** @description Path corresponding to a wallet account. */
|
|
1745
1868
|
path?: string;
|
|
1746
1869
|
};
|
|
1747
1870
|
v1GetWalletAccountResponse: {
|
|
1748
|
-
/** @description The resulting
|
|
1871
|
+
/** @description The resulting wallet account. */
|
|
1749
1872
|
account: definitions["v1WalletAccount"];
|
|
1750
1873
|
};
|
|
1751
1874
|
v1GetWalletAccountsRequest: {
|
|
1752
|
-
/** @description Unique identifier for a given
|
|
1875
|
+
/** @description Unique identifier for a given organization. */
|
|
1753
1876
|
organizationId: string;
|
|
1754
|
-
/** @description Unique identifier for a given
|
|
1755
|
-
walletId
|
|
1877
|
+
/** @description Unique identifier for a given wallet. If not provided, all accounts for the organization will be returned. */
|
|
1878
|
+
walletId?: string;
|
|
1756
1879
|
/** @description Parameters used for cursor-based pagination. */
|
|
1757
1880
|
paginationOptions?: definitions["v1Pagination"];
|
|
1758
1881
|
};
|
|
1759
1882
|
v1GetWalletAccountsResponse: {
|
|
1760
|
-
/** @description A list of
|
|
1883
|
+
/** @description A list of accounts generated from a wallet that share a common seed. */
|
|
1761
1884
|
accounts: definitions["v1WalletAccount"][];
|
|
1762
1885
|
};
|
|
1763
1886
|
v1GetWalletRequest: {
|
|
1764
|
-
/** @description Unique identifier for a given
|
|
1887
|
+
/** @description Unique identifier for a given organization. */
|
|
1765
1888
|
organizationId: string;
|
|
1766
|
-
/** @description Unique identifier for a given
|
|
1889
|
+
/** @description Unique identifier for a given wallet. */
|
|
1767
1890
|
walletId: string;
|
|
1768
1891
|
};
|
|
1769
1892
|
v1GetWalletResponse: {
|
|
1770
|
-
/** @description A collection of deterministically generated cryptographic public / private key pairs that share a common seed */
|
|
1893
|
+
/** @description A collection of deterministically generated cryptographic public / private key pairs that share a common seed. */
|
|
1771
1894
|
wallet: definitions["v1Wallet"];
|
|
1772
1895
|
};
|
|
1773
1896
|
v1GetWalletsRequest: {
|
|
1774
|
-
/** @description Unique identifier for a given
|
|
1897
|
+
/** @description Unique identifier for a given organization. */
|
|
1775
1898
|
organizationId: string;
|
|
1776
1899
|
};
|
|
1777
1900
|
v1GetWalletsResponse: {
|
|
1778
|
-
/** @description A list of
|
|
1901
|
+
/** @description A list of wallets. */
|
|
1779
1902
|
wallets: definitions["v1Wallet"][];
|
|
1780
1903
|
};
|
|
1781
1904
|
v1GetWhoamiRequest: {
|
|
1782
|
-
/** @description Unique identifier for a given
|
|
1905
|
+
/** @description Unique identifier for a given organization. If the request is being made by a WebAuthN user and their sub-organization ID is unknown, this can be the parent organization ID; using the sub-organization ID when possible is preferred due to performance reasons. */
|
|
1783
1906
|
organizationId: string;
|
|
1784
1907
|
};
|
|
1785
1908
|
v1GetWhoamiResponse: {
|
|
1786
|
-
/** @description Unique identifier for a given
|
|
1909
|
+
/** @description Unique identifier for a given organization. */
|
|
1787
1910
|
organizationId: string;
|
|
1788
|
-
/** @description Human-readable name for an
|
|
1911
|
+
/** @description Human-readable name for an organization. */
|
|
1789
1912
|
organizationName: string;
|
|
1790
|
-
/** @description Unique identifier for a given
|
|
1913
|
+
/** @description Unique identifier for a given user. */
|
|
1791
1914
|
userId: string;
|
|
1792
|
-
/** @description Human-readable name for a
|
|
1915
|
+
/** @description Human-readable name for a user. */
|
|
1793
1916
|
username: string;
|
|
1794
1917
|
};
|
|
1795
1918
|
/** @enum {string} */
|
|
@@ -1865,6 +1988,8 @@ export type definitions = {
|
|
|
1865
1988
|
countryCode?: string;
|
|
1866
1989
|
/** @description ISO 3166-2 two-digit country subdivision code for Coinbase representing the purchasing user’s subdivision of residence within their country, e.g. NY. Required if country_code=US. */
|
|
1867
1990
|
countrySubdivisionCode?: string;
|
|
1991
|
+
/** @description Optional flag to indicate whether to use the sandbox mode to simulate transactions for the on-ramp provider. Default is false. */
|
|
1992
|
+
sandboxMode?: boolean;
|
|
1868
1993
|
};
|
|
1869
1994
|
v1InitFiatOnRampRequest: {
|
|
1870
1995
|
/** @enum {string} */
|
|
@@ -2131,6 +2256,8 @@ export type definitions = {
|
|
|
2131
2256
|
updateUserEmailIntent?: definitions["v1UpdateUserEmailIntent"];
|
|
2132
2257
|
updateUserPhoneNumberIntent?: definitions["v1UpdateUserPhoneNumberIntent"];
|
|
2133
2258
|
initFiatOnRampIntent?: definitions["v1InitFiatOnRampIntent"];
|
|
2259
|
+
createSmartContractInterfaceIntent?: definitions["v1CreateSmartContractInterfaceIntent"];
|
|
2260
|
+
deleteSmartContractInterfaceIntent?: definitions["v1DeleteSmartContractInterfaceIntent"];
|
|
2134
2261
|
};
|
|
2135
2262
|
v1Invitation: {
|
|
2136
2263
|
/** @description Unique identifier for a given Invitation object. */
|
|
@@ -2165,19 +2292,19 @@ export type definitions = {
|
|
|
2165
2292
|
/** @enum {string} */
|
|
2166
2293
|
v1InvitationStatus: "INVITATION_STATUS_CREATED" | "INVITATION_STATUS_ACCEPTED" | "INVITATION_STATUS_REVOKED";
|
|
2167
2294
|
v1ListPrivateKeyTagsRequest: {
|
|
2168
|
-
/** @description Unique identifier for a given
|
|
2295
|
+
/** @description Unique identifier for a given organization. */
|
|
2169
2296
|
organizationId: string;
|
|
2170
2297
|
};
|
|
2171
2298
|
v1ListPrivateKeyTagsResponse: {
|
|
2172
|
-
/** @description A list of
|
|
2299
|
+
/** @description A list of private key tags. */
|
|
2173
2300
|
privateKeyTags: definitions["datav1Tag"][];
|
|
2174
2301
|
};
|
|
2175
2302
|
v1ListUserTagsRequest: {
|
|
2176
|
-
/** @description Unique identifier for a given
|
|
2303
|
+
/** @description Unique identifier for a given organization. */
|
|
2177
2304
|
organizationId: string;
|
|
2178
2305
|
};
|
|
2179
2306
|
v1ListUserTagsResponse: {
|
|
2180
|
-
/** @description A list of
|
|
2307
|
+
/** @description A list of user tags. */
|
|
2181
2308
|
userTags: definitions["datav1Tag"][];
|
|
2182
2309
|
};
|
|
2183
2310
|
/** @enum {string} */
|
|
@@ -2270,6 +2397,7 @@ export type definitions = {
|
|
|
2270
2397
|
rootQuorum?: definitions["externaldatav1Quorum"];
|
|
2271
2398
|
features?: definitions["v1Feature"][];
|
|
2272
2399
|
wallets?: definitions["v1Wallet"][];
|
|
2400
|
+
smartContractInterfaceReferences?: definitions["v1SmartContractInterfaceReference"][];
|
|
2273
2401
|
};
|
|
2274
2402
|
v1OtpAuthIntent: {
|
|
2275
2403
|
/** @description ID representing the result of an init OTP activity. */
|
|
@@ -2325,6 +2453,8 @@ export type definitions = {
|
|
|
2325
2453
|
/** @description Signed JWT containing an expiry, public key, session type, user id, and organization id */
|
|
2326
2454
|
session: string;
|
|
2327
2455
|
};
|
|
2456
|
+
/** @enum {string} */
|
|
2457
|
+
v1Outcome: "OUTCOME_ALLOW" | "OUTCOME_DENY_EXPLICIT" | "OUTCOME_DENY_IMPLICIT" | "OUTCOME_REQUIRES_CONSENSUS" | "OUTCOME_REJECTED" | "OUTCOME_ERROR";
|
|
2328
2458
|
v1Pagination: {
|
|
2329
2459
|
/** @description A limit of the number of object to be returned, between 1 and 100. Defaults to 10. */
|
|
2330
2460
|
limit?: string;
|
|
@@ -2524,6 +2654,8 @@ export type definitions = {
|
|
|
2524
2654
|
updateUserEmailResult?: definitions["v1UpdateUserEmailResult"];
|
|
2525
2655
|
updateUserPhoneNumberResult?: definitions["v1UpdateUserPhoneNumberResult"];
|
|
2526
2656
|
initFiatOnRampResult?: definitions["v1InitFiatOnRampResult"];
|
|
2657
|
+
createSmartContractInterfaceResult?: definitions["v1CreateSmartContractInterfaceResult"];
|
|
2658
|
+
deleteSmartContractInterfaceResult?: definitions["v1DeleteSmartContractInterfaceResult"];
|
|
2527
2659
|
};
|
|
2528
2660
|
v1RootUserParams: {
|
|
2529
2661
|
/** @description Human-readable name for a User. */
|
|
@@ -2692,6 +2824,13 @@ export type definitions = {
|
|
|
2692
2824
|
appidExclude?: boolean;
|
|
2693
2825
|
credProps?: definitions["v1CredPropsAuthenticationExtensionsClientOutputs"];
|
|
2694
2826
|
};
|
|
2827
|
+
v1SmartContractInterfaceReference: {
|
|
2828
|
+
smartContractInterfaceId?: string;
|
|
2829
|
+
smartContractAddress?: string;
|
|
2830
|
+
digest?: string;
|
|
2831
|
+
};
|
|
2832
|
+
/** @enum {string} */
|
|
2833
|
+
v1SmartContractInterfaceType: "SMART_CONTRACT_INTERFACE_TYPE_ETHEREUM" | "SMART_CONTRACT_INTERFACE_TYPE_SOLANA";
|
|
2695
2834
|
v1SmsCustomizationParams: {
|
|
2696
2835
|
/** @description Template containing references to .OtpCode i.e Your OTP is {{.OtpCode}} */
|
|
2697
2836
|
template?: string;
|
|
@@ -2720,13 +2859,13 @@ export type definitions = {
|
|
|
2720
2859
|
/** @enum {string} */
|
|
2721
2860
|
v1TagType: "TAG_TYPE_USER" | "TAG_TYPE_PRIVATE_KEY";
|
|
2722
2861
|
v1TestRateLimitsRequest: {
|
|
2723
|
-
/** @description Unique identifier for a given
|
|
2862
|
+
/** @description Unique identifier for a given organization. If the request is being made by a WebAuthN user and their sub-organization ID is unknown, this can be the parent organization ID; using the sub-organization ID when possible is preferred due to performance reasons. */
|
|
2724
2863
|
organizationId: string;
|
|
2725
2864
|
/** @description Whether or not to set a limit on this request. */
|
|
2726
2865
|
isSetLimit: boolean;
|
|
2727
2866
|
/**
|
|
2728
2867
|
* Format: int64
|
|
2729
|
-
* @description Rate limit to set for org, if is_set_limit is set to true
|
|
2868
|
+
* @description Rate limit to set for org, if is_set_limit is set to true.
|
|
2730
2869
|
*/
|
|
2731
2870
|
limit: number;
|
|
2732
2871
|
};
|
|
@@ -3135,7 +3274,7 @@ export type definitions = {
|
|
|
3135
3274
|
};
|
|
3136
3275
|
};
|
|
3137
3276
|
export type operations = {
|
|
3138
|
-
/** Get details about an
|
|
3277
|
+
/** Get details about an activity. */
|
|
3139
3278
|
PublicApiService_GetActivity: {
|
|
3140
3279
|
parameters: {
|
|
3141
3280
|
body: {
|
|
@@ -3153,7 +3292,7 @@ export type operations = {
|
|
|
3153
3292
|
};
|
|
3154
3293
|
};
|
|
3155
3294
|
};
|
|
3156
|
-
/** Get details about an API key */
|
|
3295
|
+
/** Get details about an API key. */
|
|
3157
3296
|
PublicApiService_GetApiKey: {
|
|
3158
3297
|
parameters: {
|
|
3159
3298
|
body: {
|
|
@@ -3171,7 +3310,7 @@ export type operations = {
|
|
|
3171
3310
|
};
|
|
3172
3311
|
};
|
|
3173
3312
|
};
|
|
3174
|
-
/** Get details about API keys for a user */
|
|
3313
|
+
/** Get details about API keys for a user. */
|
|
3175
3314
|
PublicApiService_GetApiKeys: {
|
|
3176
3315
|
parameters: {
|
|
3177
3316
|
body: {
|
|
@@ -3207,7 +3346,7 @@ export type operations = {
|
|
|
3207
3346
|
};
|
|
3208
3347
|
};
|
|
3209
3348
|
};
|
|
3210
|
-
/** Get details about an authenticator */
|
|
3349
|
+
/** Get details about an authenticator. */
|
|
3211
3350
|
PublicApiService_GetAuthenticator: {
|
|
3212
3351
|
parameters: {
|
|
3213
3352
|
body: {
|
|
@@ -3225,7 +3364,7 @@ export type operations = {
|
|
|
3225
3364
|
};
|
|
3226
3365
|
};
|
|
3227
3366
|
};
|
|
3228
|
-
/** Get details about authenticators for a user */
|
|
3367
|
+
/** Get details about authenticators for a user. */
|
|
3229
3368
|
PublicApiService_GetAuthenticators: {
|
|
3230
3369
|
parameters: {
|
|
3231
3370
|
body: {
|
|
@@ -3243,7 +3382,7 @@ export type operations = {
|
|
|
3243
3382
|
};
|
|
3244
3383
|
};
|
|
3245
3384
|
};
|
|
3246
|
-
/** Get details about Oauth providers for a user */
|
|
3385
|
+
/** Get details about Oauth providers for a user. */
|
|
3247
3386
|
PublicApiService_GetOauthProviders: {
|
|
3248
3387
|
parameters: {
|
|
3249
3388
|
body: {
|
|
@@ -3261,7 +3400,7 @@ export type operations = {
|
|
|
3261
3400
|
};
|
|
3262
3401
|
};
|
|
3263
3402
|
};
|
|
3264
|
-
/** Get details about an
|
|
3403
|
+
/** Get details about an organization. */
|
|
3265
3404
|
PublicApiService_GetOrganization: {
|
|
3266
3405
|
parameters: {
|
|
3267
3406
|
body: {
|
|
@@ -3279,7 +3418,7 @@ export type operations = {
|
|
|
3279
3418
|
};
|
|
3280
3419
|
};
|
|
3281
3420
|
};
|
|
3282
|
-
/** Get quorum settings and features for an organization */
|
|
3421
|
+
/** Get quorum settings and features for an organization. */
|
|
3283
3422
|
PublicApiService_GetOrganizationConfigs: {
|
|
3284
3423
|
parameters: {
|
|
3285
3424
|
body: {
|
|
@@ -3297,7 +3436,7 @@ export type operations = {
|
|
|
3297
3436
|
};
|
|
3298
3437
|
};
|
|
3299
3438
|
};
|
|
3300
|
-
/** Get details about a
|
|
3439
|
+
/** Get details about a policy. */
|
|
3301
3440
|
PublicApiService_GetPolicy: {
|
|
3302
3441
|
parameters: {
|
|
3303
3442
|
body: {
|
|
@@ -3315,7 +3454,25 @@ export type operations = {
|
|
|
3315
3454
|
};
|
|
3316
3455
|
};
|
|
3317
3456
|
};
|
|
3318
|
-
/** Get
|
|
3457
|
+
/** Get the policy evaluations for an activity. */
|
|
3458
|
+
PublicApiService_GetPolicyEvaluations: {
|
|
3459
|
+
parameters: {
|
|
3460
|
+
body: {
|
|
3461
|
+
body: definitions["v1GetPolicyEvaluationsRequest"];
|
|
3462
|
+
};
|
|
3463
|
+
};
|
|
3464
|
+
responses: {
|
|
3465
|
+
/** A successful response. */
|
|
3466
|
+
200: {
|
|
3467
|
+
schema: definitions["v1GetPolicyEvaluationsResponse"];
|
|
3468
|
+
};
|
|
3469
|
+
/** An unexpected error response. */
|
|
3470
|
+
default: {
|
|
3471
|
+
schema: definitions["rpcStatus"];
|
|
3472
|
+
};
|
|
3473
|
+
};
|
|
3474
|
+
};
|
|
3475
|
+
/** Get details about a private key. */
|
|
3319
3476
|
PublicApiService_GetPrivateKey: {
|
|
3320
3477
|
parameters: {
|
|
3321
3478
|
body: {
|
|
@@ -3333,7 +3490,25 @@ export type operations = {
|
|
|
3333
3490
|
};
|
|
3334
3491
|
};
|
|
3335
3492
|
};
|
|
3336
|
-
/** Get details about a
|
|
3493
|
+
/** Get details about a smart contract interface. */
|
|
3494
|
+
PublicApiService_GetSmartContractInterface: {
|
|
3495
|
+
parameters: {
|
|
3496
|
+
body: {
|
|
3497
|
+
body: definitions["v1GetSmartContractInterfaceRequest"];
|
|
3498
|
+
};
|
|
3499
|
+
};
|
|
3500
|
+
responses: {
|
|
3501
|
+
/** A successful response. */
|
|
3502
|
+
200: {
|
|
3503
|
+
schema: definitions["v1GetSmartContractInterfaceResponse"];
|
|
3504
|
+
};
|
|
3505
|
+
/** An unexpected error response. */
|
|
3506
|
+
default: {
|
|
3507
|
+
schema: definitions["rpcStatus"];
|
|
3508
|
+
};
|
|
3509
|
+
};
|
|
3510
|
+
};
|
|
3511
|
+
/** Get details about a user. */
|
|
3337
3512
|
PublicApiService_GetUser: {
|
|
3338
3513
|
parameters: {
|
|
3339
3514
|
body: {
|
|
@@ -3351,7 +3526,7 @@ export type operations = {
|
|
|
3351
3526
|
};
|
|
3352
3527
|
};
|
|
3353
3528
|
};
|
|
3354
|
-
/** Get details about a
|
|
3529
|
+
/** Get details about a wallet. */
|
|
3355
3530
|
PublicApiService_GetWallet: {
|
|
3356
3531
|
parameters: {
|
|
3357
3532
|
body: {
|
|
@@ -3369,7 +3544,7 @@ export type operations = {
|
|
|
3369
3544
|
};
|
|
3370
3545
|
};
|
|
3371
3546
|
};
|
|
3372
|
-
/** Get a single wallet account */
|
|
3547
|
+
/** Get a single wallet account. */
|
|
3373
3548
|
PublicApiService_GetWalletAccount: {
|
|
3374
3549
|
parameters: {
|
|
3375
3550
|
body: {
|
|
@@ -3387,7 +3562,7 @@ export type operations = {
|
|
|
3387
3562
|
};
|
|
3388
3563
|
};
|
|
3389
3564
|
};
|
|
3390
|
-
/** List all
|
|
3565
|
+
/** List all activities within an organization. */
|
|
3391
3566
|
PublicApiService_GetActivities: {
|
|
3392
3567
|
parameters: {
|
|
3393
3568
|
body: {
|
|
@@ -3405,7 +3580,7 @@ export type operations = {
|
|
|
3405
3580
|
};
|
|
3406
3581
|
};
|
|
3407
3582
|
};
|
|
3408
|
-
/** List all
|
|
3583
|
+
/** List all policies within an organization. */
|
|
3409
3584
|
PublicApiService_GetPolicies: {
|
|
3410
3585
|
parameters: {
|
|
3411
3586
|
body: {
|
|
@@ -3423,7 +3598,7 @@ export type operations = {
|
|
|
3423
3598
|
};
|
|
3424
3599
|
};
|
|
3425
3600
|
};
|
|
3426
|
-
/** List all
|
|
3601
|
+
/** List all private key tags within an organization. */
|
|
3427
3602
|
PublicApiService_ListPrivateKeyTags: {
|
|
3428
3603
|
parameters: {
|
|
3429
3604
|
body: {
|
|
@@ -3441,7 +3616,7 @@ export type operations = {
|
|
|
3441
3616
|
};
|
|
3442
3617
|
};
|
|
3443
3618
|
};
|
|
3444
|
-
/** List all
|
|
3619
|
+
/** List all private keys within an organization. */
|
|
3445
3620
|
PublicApiService_GetPrivateKeys: {
|
|
3446
3621
|
parameters: {
|
|
3447
3622
|
body: {
|
|
@@ -3459,6 +3634,24 @@ export type operations = {
|
|
|
3459
3634
|
};
|
|
3460
3635
|
};
|
|
3461
3636
|
};
|
|
3637
|
+
/** List all smart contract interfaces within an organization. */
|
|
3638
|
+
PublicApiService_GetSmartContractInterfaces: {
|
|
3639
|
+
parameters: {
|
|
3640
|
+
body: {
|
|
3641
|
+
body: definitions["v1GetSmartContractInterfacesRequest"];
|
|
3642
|
+
};
|
|
3643
|
+
};
|
|
3644
|
+
responses: {
|
|
3645
|
+
/** A successful response. */
|
|
3646
|
+
200: {
|
|
3647
|
+
schema: definitions["v1GetSmartContractInterfacesResponse"];
|
|
3648
|
+
};
|
|
3649
|
+
/** An unexpected error response. */
|
|
3650
|
+
default: {
|
|
3651
|
+
schema: definitions["rpcStatus"];
|
|
3652
|
+
};
|
|
3653
|
+
};
|
|
3654
|
+
};
|
|
3462
3655
|
/** Get all suborg IDs associated given a parent org ID and an optional filter. */
|
|
3463
3656
|
PublicApiService_GetSubOrgIds: {
|
|
3464
3657
|
parameters: {
|
|
@@ -3477,7 +3670,7 @@ export type operations = {
|
|
|
3477
3670
|
};
|
|
3478
3671
|
};
|
|
3479
3672
|
};
|
|
3480
|
-
/** List all
|
|
3673
|
+
/** List all user tags within an organization. */
|
|
3481
3674
|
PublicApiService_ListUserTags: {
|
|
3482
3675
|
parameters: {
|
|
3483
3676
|
body: {
|
|
@@ -3495,7 +3688,7 @@ export type operations = {
|
|
|
3495
3688
|
};
|
|
3496
3689
|
};
|
|
3497
3690
|
};
|
|
3498
|
-
/** List all
|
|
3691
|
+
/** List all users within an organization. */
|
|
3499
3692
|
PublicApiService_GetUsers: {
|
|
3500
3693
|
parameters: {
|
|
3501
3694
|
body: {
|
|
@@ -3531,7 +3724,7 @@ export type operations = {
|
|
|
3531
3724
|
};
|
|
3532
3725
|
};
|
|
3533
3726
|
};
|
|
3534
|
-
/** List all
|
|
3727
|
+
/** List all accounts within a wallet. */
|
|
3535
3728
|
PublicApiService_GetWalletAccounts: {
|
|
3536
3729
|
parameters: {
|
|
3537
3730
|
body: {
|
|
@@ -3549,7 +3742,7 @@ export type operations = {
|
|
|
3549
3742
|
};
|
|
3550
3743
|
};
|
|
3551
3744
|
};
|
|
3552
|
-
/** List all
|
|
3745
|
+
/** List all wallets within an organization. */
|
|
3553
3746
|
PublicApiService_GetWallets: {
|
|
3554
3747
|
parameters: {
|
|
3555
3748
|
body: {
|
|
@@ -3567,7 +3760,7 @@ export type operations = {
|
|
|
3567
3760
|
};
|
|
3568
3761
|
};
|
|
3569
3762
|
};
|
|
3570
|
-
/** Get basic information about your current API or WebAuthN user and their organization. Affords
|
|
3763
|
+
/** Get basic information about your current API or WebAuthN user and their organization. Affords sub-organization look ups via parent organization for WebAuthN or API key users. */
|
|
3571
3764
|
PublicApiService_GetWhoami: {
|
|
3572
3765
|
parameters: {
|
|
3573
3766
|
body: {
|
|
@@ -3585,7 +3778,7 @@ export type operations = {
|
|
|
3585
3778
|
};
|
|
3586
3779
|
};
|
|
3587
3780
|
};
|
|
3588
|
-
/** Approve an
|
|
3781
|
+
/** Approve an activity. */
|
|
3589
3782
|
PublicApiService_ApproveActivity: {
|
|
3590
3783
|
parameters: {
|
|
3591
3784
|
body: {
|
|
@@ -3603,7 +3796,7 @@ export type operations = {
|
|
|
3603
3796
|
};
|
|
3604
3797
|
};
|
|
3605
3798
|
};
|
|
3606
|
-
/** Add
|
|
3799
|
+
/** Add API keys to an existing user. */
|
|
3607
3800
|
PublicApiService_CreateApiKeys: {
|
|
3608
3801
|
parameters: {
|
|
3609
3802
|
body: {
|
|
@@ -3621,7 +3814,7 @@ export type operations = {
|
|
|
3621
3814
|
};
|
|
3622
3815
|
};
|
|
3623
3816
|
};
|
|
3624
|
-
/** Create API-only
|
|
3817
|
+
/** Create API-only users in an existing organization. */
|
|
3625
3818
|
PublicApiService_CreateApiOnlyUsers: {
|
|
3626
3819
|
parameters: {
|
|
3627
3820
|
body: {
|
|
@@ -3639,7 +3832,7 @@ export type operations = {
|
|
|
3639
3832
|
};
|
|
3640
3833
|
};
|
|
3641
3834
|
};
|
|
3642
|
-
/** Create
|
|
3835
|
+
/** Create authenticators to authenticate requests to Turnkey. */
|
|
3643
3836
|
PublicApiService_CreateAuthenticators: {
|
|
3644
3837
|
parameters: {
|
|
3645
3838
|
body: {
|
|
@@ -3657,7 +3850,7 @@ export type operations = {
|
|
|
3657
3850
|
};
|
|
3658
3851
|
};
|
|
3659
3852
|
};
|
|
3660
|
-
/** Create
|
|
3853
|
+
/** Create invitations to join an existing organization. */
|
|
3661
3854
|
PublicApiService_CreateInvitations: {
|
|
3662
3855
|
parameters: {
|
|
3663
3856
|
body: {
|
|
@@ -3675,7 +3868,7 @@ export type operations = {
|
|
|
3675
3868
|
};
|
|
3676
3869
|
};
|
|
3677
3870
|
};
|
|
3678
|
-
/**
|
|
3871
|
+
/** Create Oauth providers for a specified user. */
|
|
3679
3872
|
PublicApiService_CreateOauthProviders: {
|
|
3680
3873
|
parameters: {
|
|
3681
3874
|
body: {
|
|
@@ -3693,7 +3886,7 @@ export type operations = {
|
|
|
3693
3886
|
};
|
|
3694
3887
|
};
|
|
3695
3888
|
};
|
|
3696
|
-
/** Create new
|
|
3889
|
+
/** Create new policies. */
|
|
3697
3890
|
PublicApiService_CreatePolicies: {
|
|
3698
3891
|
parameters: {
|
|
3699
3892
|
body: {
|
|
@@ -3711,7 +3904,7 @@ export type operations = {
|
|
|
3711
3904
|
};
|
|
3712
3905
|
};
|
|
3713
3906
|
};
|
|
3714
|
-
/** Create a new
|
|
3907
|
+
/** Create a new policy. */
|
|
3715
3908
|
PublicApiService_CreatePolicy: {
|
|
3716
3909
|
parameters: {
|
|
3717
3910
|
body: {
|
|
@@ -3747,7 +3940,7 @@ export type operations = {
|
|
|
3747
3940
|
};
|
|
3748
3941
|
};
|
|
3749
3942
|
};
|
|
3750
|
-
/** Create new
|
|
3943
|
+
/** Create new private keys. */
|
|
3751
3944
|
PublicApiService_CreatePrivateKeys: {
|
|
3752
3945
|
parameters: {
|
|
3753
3946
|
body: {
|
|
@@ -3765,7 +3958,7 @@ export type operations = {
|
|
|
3765
3958
|
};
|
|
3766
3959
|
};
|
|
3767
3960
|
};
|
|
3768
|
-
/** Create a read only session for a user (valid for 1 hour) */
|
|
3961
|
+
/** Create a read only session for a user (valid for 1 hour). */
|
|
3769
3962
|
PublicApiService_CreateReadOnlySession: {
|
|
3770
3963
|
parameters: {
|
|
3771
3964
|
body: {
|
|
@@ -3783,7 +3976,7 @@ export type operations = {
|
|
|
3783
3976
|
};
|
|
3784
3977
|
};
|
|
3785
3978
|
};
|
|
3786
|
-
/** Create a read write session for a user */
|
|
3979
|
+
/** Create a read write session for a user. */
|
|
3787
3980
|
PublicApiService_CreateReadWriteSession: {
|
|
3788
3981
|
parameters: {
|
|
3789
3982
|
body: {
|
|
@@ -3801,7 +3994,25 @@ export type operations = {
|
|
|
3801
3994
|
};
|
|
3802
3995
|
};
|
|
3803
3996
|
};
|
|
3804
|
-
/** Create
|
|
3997
|
+
/** Create an ABI/IDL in JSON. */
|
|
3998
|
+
PublicApiService_CreateSmartContractInterface: {
|
|
3999
|
+
parameters: {
|
|
4000
|
+
body: {
|
|
4001
|
+
body: definitions["v1CreateSmartContractInterfaceRequest"];
|
|
4002
|
+
};
|
|
4003
|
+
};
|
|
4004
|
+
responses: {
|
|
4005
|
+
/** A successful response. */
|
|
4006
|
+
200: {
|
|
4007
|
+
schema: definitions["v1ActivityResponse"];
|
|
4008
|
+
};
|
|
4009
|
+
/** An unexpected error response. */
|
|
4010
|
+
default: {
|
|
4011
|
+
schema: definitions["rpcStatus"];
|
|
4012
|
+
};
|
|
4013
|
+
};
|
|
4014
|
+
};
|
|
4015
|
+
/** Create a new sub-organization. */
|
|
3805
4016
|
PublicApiService_CreateSubOrganization: {
|
|
3806
4017
|
parameters: {
|
|
3807
4018
|
body: {
|
|
@@ -3837,7 +4048,7 @@ export type operations = {
|
|
|
3837
4048
|
};
|
|
3838
4049
|
};
|
|
3839
4050
|
};
|
|
3840
|
-
/** Create
|
|
4051
|
+
/** Create users in an existing organization. */
|
|
3841
4052
|
PublicApiService_CreateUsers: {
|
|
3842
4053
|
parameters: {
|
|
3843
4054
|
body: {
|
|
@@ -3855,7 +4066,7 @@ export type operations = {
|
|
|
3855
4066
|
};
|
|
3856
4067
|
};
|
|
3857
4068
|
};
|
|
3858
|
-
/** Create a
|
|
4069
|
+
/** Create a wallet and derive addresses. */
|
|
3859
4070
|
PublicApiService_CreateWallet: {
|
|
3860
4071
|
parameters: {
|
|
3861
4072
|
body: {
|
|
@@ -3873,7 +4084,7 @@ export type operations = {
|
|
|
3873
4084
|
};
|
|
3874
4085
|
};
|
|
3875
4086
|
};
|
|
3876
|
-
/** Derive additional addresses using an existing wallet */
|
|
4087
|
+
/** Derive additional addresses using an existing wallet. */
|
|
3877
4088
|
PublicApiService_CreateWalletAccounts: {
|
|
3878
4089
|
parameters: {
|
|
3879
4090
|
body: {
|
|
@@ -3891,7 +4102,7 @@ export type operations = {
|
|
|
3891
4102
|
};
|
|
3892
4103
|
};
|
|
3893
4104
|
};
|
|
3894
|
-
/** Remove api keys from a
|
|
4105
|
+
/** Remove api keys from a user. */
|
|
3895
4106
|
PublicApiService_DeleteApiKeys: {
|
|
3896
4107
|
parameters: {
|
|
3897
4108
|
body: {
|
|
@@ -3909,7 +4120,7 @@ export type operations = {
|
|
|
3909
4120
|
};
|
|
3910
4121
|
};
|
|
3911
4122
|
};
|
|
3912
|
-
/** Remove authenticators from a
|
|
4123
|
+
/** Remove authenticators from a user. */
|
|
3913
4124
|
PublicApiService_DeleteAuthenticators: {
|
|
3914
4125
|
parameters: {
|
|
3915
4126
|
body: {
|
|
@@ -3927,7 +4138,7 @@ export type operations = {
|
|
|
3927
4138
|
};
|
|
3928
4139
|
};
|
|
3929
4140
|
};
|
|
3930
|
-
/** Delete an existing
|
|
4141
|
+
/** Delete an existing invitation. */
|
|
3931
4142
|
PublicApiService_DeleteInvitation: {
|
|
3932
4143
|
parameters: {
|
|
3933
4144
|
body: {
|
|
@@ -3945,7 +4156,7 @@ export type operations = {
|
|
|
3945
4156
|
};
|
|
3946
4157
|
};
|
|
3947
4158
|
};
|
|
3948
|
-
/**
|
|
4159
|
+
/** Remove Oauth providers for a specified user. */
|
|
3949
4160
|
PublicApiService_DeleteOauthProviders: {
|
|
3950
4161
|
parameters: {
|
|
3951
4162
|
body: {
|
|
@@ -3963,7 +4174,7 @@ export type operations = {
|
|
|
3963
4174
|
};
|
|
3964
4175
|
};
|
|
3965
4176
|
};
|
|
3966
|
-
/** Delete an existing
|
|
4177
|
+
/** Delete an existing policy. */
|
|
3967
4178
|
PublicApiService_DeletePolicy: {
|
|
3968
4179
|
parameters: {
|
|
3969
4180
|
body: {
|
|
@@ -3981,7 +4192,7 @@ export type operations = {
|
|
|
3981
4192
|
};
|
|
3982
4193
|
};
|
|
3983
4194
|
};
|
|
3984
|
-
/** Delete
|
|
4195
|
+
/** Delete private key tags within an organization. */
|
|
3985
4196
|
PublicApiService_DeletePrivateKeyTags: {
|
|
3986
4197
|
parameters: {
|
|
3987
4198
|
body: {
|
|
@@ -3999,7 +4210,7 @@ export type operations = {
|
|
|
3999
4210
|
};
|
|
4000
4211
|
};
|
|
4001
4212
|
};
|
|
4002
|
-
/**
|
|
4213
|
+
/** Delete private keys for an organization. */
|
|
4003
4214
|
PublicApiService_DeletePrivateKeys: {
|
|
4004
4215
|
parameters: {
|
|
4005
4216
|
body: {
|
|
@@ -4017,7 +4228,25 @@ export type operations = {
|
|
|
4017
4228
|
};
|
|
4018
4229
|
};
|
|
4019
4230
|
};
|
|
4020
|
-
/**
|
|
4231
|
+
/** Delete a smart contract interface. */
|
|
4232
|
+
PublicApiService_DeleteSmartContractInterface: {
|
|
4233
|
+
parameters: {
|
|
4234
|
+
body: {
|
|
4235
|
+
body: definitions["v1DeleteSmartContractInterfaceRequest"];
|
|
4236
|
+
};
|
|
4237
|
+
};
|
|
4238
|
+
responses: {
|
|
4239
|
+
/** A successful response. */
|
|
4240
|
+
200: {
|
|
4241
|
+
schema: definitions["v1ActivityResponse"];
|
|
4242
|
+
};
|
|
4243
|
+
/** An unexpected error response. */
|
|
4244
|
+
default: {
|
|
4245
|
+
schema: definitions["rpcStatus"];
|
|
4246
|
+
};
|
|
4247
|
+
};
|
|
4248
|
+
};
|
|
4249
|
+
/** Delete a sub-organization. */
|
|
4021
4250
|
PublicApiService_DeleteSubOrganization: {
|
|
4022
4251
|
parameters: {
|
|
4023
4252
|
body: {
|
|
@@ -4035,7 +4264,7 @@ export type operations = {
|
|
|
4035
4264
|
};
|
|
4036
4265
|
};
|
|
4037
4266
|
};
|
|
4038
|
-
/** Delete
|
|
4267
|
+
/** Delete user tags within an organization. */
|
|
4039
4268
|
PublicApiService_DeleteUserTags: {
|
|
4040
4269
|
parameters: {
|
|
4041
4270
|
body: {
|
|
@@ -4053,7 +4282,7 @@ export type operations = {
|
|
|
4053
4282
|
};
|
|
4054
4283
|
};
|
|
4055
4284
|
};
|
|
4056
|
-
/** Delete
|
|
4285
|
+
/** Delete users within an organization. */
|
|
4057
4286
|
PublicApiService_DeleteUsers: {
|
|
4058
4287
|
parameters: {
|
|
4059
4288
|
body: {
|
|
@@ -4071,7 +4300,7 @@ export type operations = {
|
|
|
4071
4300
|
};
|
|
4072
4301
|
};
|
|
4073
4302
|
};
|
|
4074
|
-
/**
|
|
4303
|
+
/** Delete wallets for an organization. */
|
|
4075
4304
|
PublicApiService_DeleteWallets: {
|
|
4076
4305
|
parameters: {
|
|
4077
4306
|
body: {
|
|
@@ -4089,7 +4318,7 @@ export type operations = {
|
|
|
4089
4318
|
};
|
|
4090
4319
|
};
|
|
4091
4320
|
};
|
|
4092
|
-
/** Authenticate a user via
|
|
4321
|
+
/** Authenticate a user via email. */
|
|
4093
4322
|
PublicApiService_EmailAuth: {
|
|
4094
4323
|
parameters: {
|
|
4095
4324
|
body: {
|
|
@@ -4107,7 +4336,7 @@ export type operations = {
|
|
|
4107
4336
|
};
|
|
4108
4337
|
};
|
|
4109
4338
|
};
|
|
4110
|
-
/**
|
|
4339
|
+
/** Export a private key. */
|
|
4111
4340
|
PublicApiService_ExportPrivateKey: {
|
|
4112
4341
|
parameters: {
|
|
4113
4342
|
body: {
|
|
@@ -4125,7 +4354,7 @@ export type operations = {
|
|
|
4125
4354
|
};
|
|
4126
4355
|
};
|
|
4127
4356
|
};
|
|
4128
|
-
/**
|
|
4357
|
+
/** Export a wallet. */
|
|
4129
4358
|
PublicApiService_ExportWallet: {
|
|
4130
4359
|
parameters: {
|
|
4131
4360
|
body: {
|
|
@@ -4143,7 +4372,7 @@ export type operations = {
|
|
|
4143
4372
|
};
|
|
4144
4373
|
};
|
|
4145
4374
|
};
|
|
4146
|
-
/**
|
|
4375
|
+
/** Export a wallet account. */
|
|
4147
4376
|
PublicApiService_ExportWalletAccount: {
|
|
4148
4377
|
parameters: {
|
|
4149
4378
|
body: {
|
|
@@ -4161,7 +4390,7 @@ export type operations = {
|
|
|
4161
4390
|
};
|
|
4162
4391
|
};
|
|
4163
4392
|
};
|
|
4164
|
-
/**
|
|
4393
|
+
/** Import a private key. */
|
|
4165
4394
|
PublicApiService_ImportPrivateKey: {
|
|
4166
4395
|
parameters: {
|
|
4167
4396
|
body: {
|
|
@@ -4179,7 +4408,7 @@ export type operations = {
|
|
|
4179
4408
|
};
|
|
4180
4409
|
};
|
|
4181
4410
|
};
|
|
4182
|
-
/**
|
|
4411
|
+
/** Import a wallet. */
|
|
4183
4412
|
PublicApiService_ImportWallet: {
|
|
4184
4413
|
parameters: {
|
|
4185
4414
|
body: {
|
|
@@ -4197,7 +4426,7 @@ export type operations = {
|
|
|
4197
4426
|
};
|
|
4198
4427
|
};
|
|
4199
4428
|
};
|
|
4200
|
-
/** Initiate a fiat on ramp flow */
|
|
4429
|
+
/** Initiate a fiat on ramp flow. */
|
|
4201
4430
|
PublicApiService_InitFiatOnRamp: {
|
|
4202
4431
|
parameters: {
|
|
4203
4432
|
body: {
|
|
@@ -4215,7 +4444,7 @@ export type operations = {
|
|
|
4215
4444
|
};
|
|
4216
4445
|
};
|
|
4217
4446
|
};
|
|
4218
|
-
/**
|
|
4447
|
+
/** Initialize a new private key import. */
|
|
4219
4448
|
PublicApiService_InitImportPrivateKey: {
|
|
4220
4449
|
parameters: {
|
|
4221
4450
|
body: {
|
|
@@ -4233,7 +4462,7 @@ export type operations = {
|
|
|
4233
4462
|
};
|
|
4234
4463
|
};
|
|
4235
4464
|
};
|
|
4236
|
-
/**
|
|
4465
|
+
/** Initialize a new wallet import. */
|
|
4237
4466
|
PublicApiService_InitImportWallet: {
|
|
4238
4467
|
parameters: {
|
|
4239
4468
|
body: {
|
|
@@ -4251,7 +4480,7 @@ export type operations = {
|
|
|
4251
4480
|
};
|
|
4252
4481
|
};
|
|
4253
4482
|
};
|
|
4254
|
-
/** Initiate a
|
|
4483
|
+
/** Initiate a generic OTP activity. */
|
|
4255
4484
|
PublicApiService_InitOtp: {
|
|
4256
4485
|
parameters: {
|
|
4257
4486
|
body: {
|
|
@@ -4269,7 +4498,7 @@ export type operations = {
|
|
|
4269
4498
|
};
|
|
4270
4499
|
};
|
|
4271
4500
|
};
|
|
4272
|
-
/** Initiate an OTP auth activity */
|
|
4501
|
+
/** Initiate an OTP auth activity. */
|
|
4273
4502
|
PublicApiService_InitOtpAuth: {
|
|
4274
4503
|
parameters: {
|
|
4275
4504
|
body: {
|
|
@@ -4287,7 +4516,7 @@ export type operations = {
|
|
|
4287
4516
|
};
|
|
4288
4517
|
};
|
|
4289
4518
|
};
|
|
4290
|
-
/**
|
|
4519
|
+
/** Initialize a new email recovery. */
|
|
4291
4520
|
PublicApiService_InitUserEmailRecovery: {
|
|
4292
4521
|
parameters: {
|
|
4293
4522
|
body: {
|
|
@@ -4305,7 +4534,7 @@ export type operations = {
|
|
|
4305
4534
|
};
|
|
4306
4535
|
};
|
|
4307
4536
|
};
|
|
4308
|
-
/** Authenticate a user with an
|
|
4537
|
+
/** Authenticate a user with an OIDC token (Oauth). */
|
|
4309
4538
|
PublicApiService_Oauth: {
|
|
4310
4539
|
parameters: {
|
|
4311
4540
|
body: {
|
|
@@ -4323,7 +4552,7 @@ export type operations = {
|
|
|
4323
4552
|
};
|
|
4324
4553
|
};
|
|
4325
4554
|
};
|
|
4326
|
-
/** Create an Oauth session for a user */
|
|
4555
|
+
/** Create an Oauth session for a user. */
|
|
4327
4556
|
PublicApiService_OauthLogin: {
|
|
4328
4557
|
parameters: {
|
|
4329
4558
|
body: {
|
|
@@ -4341,7 +4570,7 @@ export type operations = {
|
|
|
4341
4570
|
};
|
|
4342
4571
|
};
|
|
4343
4572
|
};
|
|
4344
|
-
/** Authenticate a user with an OTP code sent via email or SMS */
|
|
4573
|
+
/** Authenticate a user with an OTP code sent via email or SMS. */
|
|
4345
4574
|
PublicApiService_OtpAuth: {
|
|
4346
4575
|
parameters: {
|
|
4347
4576
|
body: {
|
|
@@ -4359,7 +4588,7 @@ export type operations = {
|
|
|
4359
4588
|
};
|
|
4360
4589
|
};
|
|
4361
4590
|
};
|
|
4362
|
-
/** Create an OTP session for a user */
|
|
4591
|
+
/** Create an OTP session for a user. */
|
|
4363
4592
|
PublicApiService_OtpLogin: {
|
|
4364
4593
|
parameters: {
|
|
4365
4594
|
body: {
|
|
@@ -4377,7 +4606,7 @@ export type operations = {
|
|
|
4377
4606
|
};
|
|
4378
4607
|
};
|
|
4379
4608
|
};
|
|
4380
|
-
/**
|
|
4609
|
+
/** Complete the process of recovering a user by adding an authenticator. */
|
|
4381
4610
|
PublicApiService_RecoverUser: {
|
|
4382
4611
|
parameters: {
|
|
4383
4612
|
body: {
|
|
@@ -4395,7 +4624,7 @@ export type operations = {
|
|
|
4395
4624
|
};
|
|
4396
4625
|
};
|
|
4397
4626
|
};
|
|
4398
|
-
/** Reject an
|
|
4627
|
+
/** Reject an activity. */
|
|
4399
4628
|
PublicApiService_RejectActivity: {
|
|
4400
4629
|
parameters: {
|
|
4401
4630
|
body: {
|
|
@@ -4413,7 +4642,7 @@ export type operations = {
|
|
|
4413
4642
|
};
|
|
4414
4643
|
};
|
|
4415
4644
|
};
|
|
4416
|
-
/**
|
|
4645
|
+
/** Remove an organization feature. This activity must be approved by the current root quorum. */
|
|
4417
4646
|
PublicApiService_RemoveOrganizationFeature: {
|
|
4418
4647
|
parameters: {
|
|
4419
4648
|
body: {
|
|
@@ -4431,7 +4660,7 @@ export type operations = {
|
|
|
4431
4660
|
};
|
|
4432
4661
|
};
|
|
4433
4662
|
};
|
|
4434
|
-
/**
|
|
4663
|
+
/** Set an organization feature. This activity must be approved by the current root quorum. */
|
|
4435
4664
|
PublicApiService_SetOrganizationFeature: {
|
|
4436
4665
|
parameters: {
|
|
4437
4666
|
body: {
|
|
@@ -4449,7 +4678,7 @@ export type operations = {
|
|
|
4449
4678
|
};
|
|
4450
4679
|
};
|
|
4451
4680
|
};
|
|
4452
|
-
/** Sign a raw payload */
|
|
4681
|
+
/** Sign a raw payload. */
|
|
4453
4682
|
PublicApiService_SignRawPayload: {
|
|
4454
4683
|
parameters: {
|
|
4455
4684
|
body: {
|
|
@@ -4467,7 +4696,7 @@ export type operations = {
|
|
|
4467
4696
|
};
|
|
4468
4697
|
};
|
|
4469
4698
|
};
|
|
4470
|
-
/** Sign multiple raw payloads with the same signing parameters */
|
|
4699
|
+
/** Sign multiple raw payloads with the same signing parameters. */
|
|
4471
4700
|
PublicApiService_SignRawPayloads: {
|
|
4472
4701
|
parameters: {
|
|
4473
4702
|
body: {
|
|
@@ -4485,7 +4714,7 @@ export type operations = {
|
|
|
4485
4714
|
};
|
|
4486
4715
|
};
|
|
4487
4716
|
};
|
|
4488
|
-
/** Sign a transaction */
|
|
4717
|
+
/** Sign a transaction. */
|
|
4489
4718
|
PublicApiService_SignTransaction: {
|
|
4490
4719
|
parameters: {
|
|
4491
4720
|
body: {
|
|
@@ -4503,7 +4732,7 @@ export type operations = {
|
|
|
4503
4732
|
};
|
|
4504
4733
|
};
|
|
4505
4734
|
};
|
|
4506
|
-
/** Create a session for a user through stamping client side (
|
|
4735
|
+
/** Create a session for a user through stamping client side (API key, wallet client, or passkey client). */
|
|
4507
4736
|
PublicApiService_StampLogin: {
|
|
4508
4737
|
parameters: {
|
|
4509
4738
|
body: {
|
|
@@ -4521,7 +4750,7 @@ export type operations = {
|
|
|
4521
4750
|
};
|
|
4522
4751
|
};
|
|
4523
4752
|
};
|
|
4524
|
-
/** Update an existing
|
|
4753
|
+
/** Update an existing policy. */
|
|
4525
4754
|
PublicApiService_UpdatePolicy: {
|
|
4526
4755
|
parameters: {
|
|
4527
4756
|
body: {
|
|
@@ -4575,7 +4804,7 @@ export type operations = {
|
|
|
4575
4804
|
};
|
|
4576
4805
|
};
|
|
4577
4806
|
};
|
|
4578
|
-
/** Update a
|
|
4807
|
+
/** Update a user in an existing organization. */
|
|
4579
4808
|
PublicApiService_UpdateUser: {
|
|
4580
4809
|
parameters: {
|
|
4581
4810
|
body: {
|
|
@@ -4593,7 +4822,7 @@ export type operations = {
|
|
|
4593
4822
|
};
|
|
4594
4823
|
};
|
|
4595
4824
|
};
|
|
4596
|
-
/** Update a
|
|
4825
|
+
/** Update a user's email in an existing organization. */
|
|
4597
4826
|
PublicApiService_UpdateUserEmail: {
|
|
4598
4827
|
parameters: {
|
|
4599
4828
|
body: {
|
|
@@ -4611,7 +4840,7 @@ export type operations = {
|
|
|
4611
4840
|
};
|
|
4612
4841
|
};
|
|
4613
4842
|
};
|
|
4614
|
-
/** Update a
|
|
4843
|
+
/** Update a user's name in an existing organization. */
|
|
4615
4844
|
PublicApiService_UpdateUserName: {
|
|
4616
4845
|
parameters: {
|
|
4617
4846
|
body: {
|
|
@@ -4629,7 +4858,7 @@ export type operations = {
|
|
|
4629
4858
|
};
|
|
4630
4859
|
};
|
|
4631
4860
|
};
|
|
4632
|
-
/** Update a
|
|
4861
|
+
/** Update a user's phone number in an existing organization. */
|
|
4633
4862
|
PublicApiService_UpdateUserPhoneNumber: {
|
|
4634
4863
|
parameters: {
|
|
4635
4864
|
body: {
|
|
@@ -4665,7 +4894,7 @@ export type operations = {
|
|
|
4665
4894
|
};
|
|
4666
4895
|
};
|
|
4667
4896
|
};
|
|
4668
|
-
/** Update a wallet for an organization */
|
|
4897
|
+
/** Update a wallet for an organization. */
|
|
4669
4898
|
PublicApiService_UpdateWallet: {
|
|
4670
4899
|
parameters: {
|
|
4671
4900
|
body: {
|
|
@@ -4683,7 +4912,7 @@ export type operations = {
|
|
|
4683
4912
|
};
|
|
4684
4913
|
};
|
|
4685
4914
|
};
|
|
4686
|
-
/** Verify a
|
|
4915
|
+
/** Verify a generic OTP. */
|
|
4687
4916
|
PublicApiService_VerifyOtp: {
|
|
4688
4917
|
parameters: {
|
|
4689
4918
|
body: {
|
|
@@ -4713,7 +4942,7 @@ export type operations = {
|
|
|
4713
4942
|
};
|
|
4714
4943
|
};
|
|
4715
4944
|
};
|
|
4716
|
-
/** Set a rate local rate limit just on the current endpoint, for purposes of testing with Vivosuite */
|
|
4945
|
+
/** Set a rate local rate limit just on the current endpoint, for purposes of testing with Vivosuite. */
|
|
4717
4946
|
PublicApiService_TestRateLimits: {
|
|
4718
4947
|
parameters: {
|
|
4719
4948
|
body: {
|