@turnkey/core 1.0.0-beta.4 → 1.0.0-beta.6
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/dist/__clients__/core.d.ts +88 -35
- package/dist/__clients__/core.d.ts.map +1 -1
- package/dist/__clients__/core.js +271 -140
- package/dist/__clients__/core.js.map +1 -1
- package/dist/__clients__/core.mjs +274 -143
- package/dist/__clients__/core.mjs.map +1 -1
- package/dist/__generated__/sdk-client-base.d.ts +13 -0
- package/dist/__generated__/sdk-client-base.d.ts.map +1 -1
- package/dist/__generated__/sdk-client-base.js +198 -8
- package/dist/__generated__/sdk-client-base.js.map +1 -1
- package/dist/__generated__/sdk-client-base.mjs +198 -8
- package/dist/__generated__/sdk-client-base.mjs.map +1 -1
- package/dist/__generated__/version.d.ts +1 -1
- package/dist/__generated__/version.js +1 -1
- package/dist/__generated__/version.mjs +1 -1
- package/dist/__inputs__/public_api.types.d.ts +629 -494
- package/dist/__inputs__/public_api.types.d.ts.map +1 -1
- package/dist/__polyfills__/jest.setup.webcrypto.d.ts +2 -0
- package/dist/__polyfills__/jest.setup.webcrypto.d.ts.map +1 -0
- package/dist/__stampers__/api/base.d.ts +11 -5
- package/dist/__stampers__/api/base.d.ts.map +1 -1
- package/dist/__stampers__/api/base.js +32 -10
- package/dist/__stampers__/api/base.js.map +1 -1
- package/dist/__stampers__/api/base.mjs +32 -10
- package/dist/__stampers__/api/base.mjs.map +1 -1
- package/dist/__stampers__/api/web/stamper.d.ts.map +1 -1
- package/dist/__stampers__/api/web/stamper.js +2 -4
- package/dist/__stampers__/api/web/stamper.js.map +1 -1
- package/dist/__stampers__/api/web/stamper.mjs +2 -4
- package/dist/__stampers__/api/web/stamper.mjs.map +1 -1
- package/dist/__types__/base.d.ts +195 -75
- package/dist/__types__/base.d.ts.map +1 -1
- package/dist/__types__/base.js +14 -13
- package/dist/__types__/base.js.map +1 -1
- package/dist/__types__/base.mjs +15 -14
- package/dist/__types__/base.mjs.map +1 -1
- package/dist/__wallet__/stamper.d.ts.map +1 -1
- package/dist/__wallet__/stamper.js +8 -7
- package/dist/__wallet__/stamper.js.map +1 -1
- package/dist/__wallet__/stamper.mjs +9 -8
- package/dist/__wallet__/stamper.mjs.map +1 -1
- package/dist/__wallet__/wallet-connect/base.d.ts +3 -0
- package/dist/__wallet__/wallet-connect/base.d.ts.map +1 -1
- package/dist/__wallet__/wallet-connect/base.js +32 -8
- package/dist/__wallet__/wallet-connect/base.js.map +1 -1
- package/dist/__wallet__/wallet-connect/base.mjs +32 -8
- package/dist/__wallet__/wallet-connect/base.mjs.map +1 -1
- package/dist/__wallet__/wallet-connect/client.d.ts +28 -3
- package/dist/__wallet__/wallet-connect/client.d.ts.map +1 -1
- package/dist/__wallet__/wallet-connect/client.js +54 -5
- package/dist/__wallet__/wallet-connect/client.js.map +1 -1
- package/dist/__wallet__/wallet-connect/client.mjs +54 -5
- package/dist/__wallet__/wallet-connect/client.mjs.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/utils.d.ts +61 -13
- package/dist/utils.d.ts.map +1 -1
- package/dist/utils.js +184 -32
- package/dist/utils.js.map +1 -1
- package/dist/utils.mjs +179 -33
- package/dist/utils.mjs.map +1 -1
- package/package.json +10 -9
|
@@ -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,79 @@ 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
|
+
"/public/v1/query/get_oauth2_credential": {
|
|
31
|
+
/** Get details about an OAuth 2.0 credential. */
|
|
32
|
+
post: operations["PublicApiService_GetOauth2Credential"];
|
|
33
|
+
};
|
|
30
34
|
"/public/v1/query/get_oauth_providers": {
|
|
31
|
-
/** Get details about Oauth providers for a user */
|
|
35
|
+
/** Get details about Oauth providers for a user. */
|
|
32
36
|
post: operations["PublicApiService_GetOauthProviders"];
|
|
33
37
|
};
|
|
34
38
|
"/public/v1/query/get_organization": {
|
|
35
|
-
/** Get details about an
|
|
39
|
+
/** Get details about an organization. */
|
|
36
40
|
post: operations["PublicApiService_GetOrganization"];
|
|
37
41
|
};
|
|
38
42
|
"/public/v1/query/get_organization_configs": {
|
|
39
|
-
/** Get quorum settings and features for an organization */
|
|
43
|
+
/** Get quorum settings and features for an organization. */
|
|
40
44
|
post: operations["PublicApiService_GetOrganizationConfigs"];
|
|
41
45
|
};
|
|
42
46
|
"/public/v1/query/get_policy": {
|
|
43
|
-
/** Get details about a
|
|
47
|
+
/** Get details about a policy. */
|
|
44
48
|
post: operations["PublicApiService_GetPolicy"];
|
|
45
49
|
};
|
|
50
|
+
"/public/v1/query/get_policy_evaluations": {
|
|
51
|
+
/** Get the policy evaluations for an activity. */
|
|
52
|
+
post: operations["PublicApiService_GetPolicyEvaluations"];
|
|
53
|
+
};
|
|
46
54
|
"/public/v1/query/get_private_key": {
|
|
47
|
-
/** Get details about a
|
|
55
|
+
/** Get details about a private key. */
|
|
48
56
|
post: operations["PublicApiService_GetPrivateKey"];
|
|
49
57
|
};
|
|
50
|
-
"/public/v1/query/get_proxy_auth_config": {
|
|
51
|
-
/** Get the proxy-auth configuration (allowed origins, etc.) for an Organization */
|
|
52
|
-
post: operations["PublicApiService_GetProxyAuthConfig"];
|
|
53
|
-
};
|
|
54
58
|
"/public/v1/query/get_smart_contract_interface": {
|
|
55
|
-
/** Get details about a
|
|
59
|
+
/** Get details about a smart contract interface. */
|
|
56
60
|
post: operations["PublicApiService_GetSmartContractInterface"];
|
|
57
61
|
};
|
|
58
62
|
"/public/v1/query/get_user": {
|
|
59
|
-
/** Get details about a
|
|
63
|
+
/** Get details about a user. */
|
|
60
64
|
post: operations["PublicApiService_GetUser"];
|
|
61
65
|
};
|
|
62
66
|
"/public/v1/query/get_wallet": {
|
|
63
|
-
/** Get details about a
|
|
67
|
+
/** Get details about a wallet. */
|
|
64
68
|
post: operations["PublicApiService_GetWallet"];
|
|
65
69
|
};
|
|
66
70
|
"/public/v1/query/get_wallet_account": {
|
|
67
|
-
/** Get a single wallet account */
|
|
71
|
+
/** Get a single wallet account. */
|
|
68
72
|
post: operations["PublicApiService_GetWalletAccount"];
|
|
69
73
|
};
|
|
70
74
|
"/public/v1/query/list_activities": {
|
|
71
|
-
/** List all
|
|
75
|
+
/** List all activities within an organization. */
|
|
72
76
|
post: operations["PublicApiService_GetActivities"];
|
|
73
77
|
};
|
|
78
|
+
"/public/v1/query/list_oauth2_credentials": {
|
|
79
|
+
/** List all OAuth 2.0 credentials within an organization. */
|
|
80
|
+
post: operations["PublicApiService_ListOauth2Credentials"];
|
|
81
|
+
};
|
|
74
82
|
"/public/v1/query/list_policies": {
|
|
75
|
-
/** List all
|
|
83
|
+
/** List all policies within an organization. */
|
|
76
84
|
post: operations["PublicApiService_GetPolicies"];
|
|
77
85
|
};
|
|
78
86
|
"/public/v1/query/list_private_key_tags": {
|
|
79
|
-
/** List all
|
|
87
|
+
/** List all private key tags within an organization. */
|
|
80
88
|
post: operations["PublicApiService_ListPrivateKeyTags"];
|
|
81
89
|
};
|
|
82
90
|
"/public/v1/query/list_private_keys": {
|
|
83
|
-
/** List all
|
|
91
|
+
/** List all private keys within an organization. */
|
|
84
92
|
post: operations["PublicApiService_GetPrivateKeys"];
|
|
85
93
|
};
|
|
86
94
|
"/public/v1/query/list_smart_contract_interfaces": {
|
|
87
|
-
/** List all
|
|
95
|
+
/** List all smart contract interfaces within an organization. */
|
|
88
96
|
post: operations["PublicApiService_GetSmartContractInterfaces"];
|
|
89
97
|
};
|
|
90
98
|
"/public/v1/query/list_suborgs": {
|
|
@@ -92,11 +100,11 @@ export type paths = {
|
|
|
92
100
|
post: operations["PublicApiService_GetSubOrgIds"];
|
|
93
101
|
};
|
|
94
102
|
"/public/v1/query/list_user_tags": {
|
|
95
|
-
/** List all
|
|
103
|
+
/** List all user tags within an organization. */
|
|
96
104
|
post: operations["PublicApiService_ListUserTags"];
|
|
97
105
|
};
|
|
98
106
|
"/public/v1/query/list_users": {
|
|
99
|
-
/** List all
|
|
107
|
+
/** List all users within an organization. */
|
|
100
108
|
post: operations["PublicApiService_GetUsers"];
|
|
101
109
|
};
|
|
102
110
|
"/public/v1/query/list_verified_suborgs": {
|
|
@@ -104,47 +112,51 @@ export type paths = {
|
|
|
104
112
|
post: operations["PublicApiService_GetVerifiedSubOrgIds"];
|
|
105
113
|
};
|
|
106
114
|
"/public/v1/query/list_wallet_accounts": {
|
|
107
|
-
/** List all
|
|
115
|
+
/** List all accounts within a wallet. */
|
|
108
116
|
post: operations["PublicApiService_GetWalletAccounts"];
|
|
109
117
|
};
|
|
110
118
|
"/public/v1/query/list_wallets": {
|
|
111
|
-
/** List all
|
|
119
|
+
/** List all wallets within an organization. */
|
|
112
120
|
post: operations["PublicApiService_GetWallets"];
|
|
113
121
|
};
|
|
114
122
|
"/public/v1/query/whoami": {
|
|
115
|
-
/** Get basic information about your current API or WebAuthN user and their organization. Affords
|
|
123
|
+
/** 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. */
|
|
116
124
|
post: operations["PublicApiService_GetWhoami"];
|
|
117
125
|
};
|
|
118
126
|
"/public/v1/submit/approve_activity": {
|
|
119
|
-
/** Approve an
|
|
127
|
+
/** Approve an activity. */
|
|
120
128
|
post: operations["PublicApiService_ApproveActivity"];
|
|
121
129
|
};
|
|
122
130
|
"/public/v1/submit/create_api_keys": {
|
|
123
|
-
/** Add
|
|
131
|
+
/** Add API keys to an existing user. */
|
|
124
132
|
post: operations["PublicApiService_CreateApiKeys"];
|
|
125
133
|
};
|
|
126
134
|
"/public/v1/submit/create_api_only_users": {
|
|
127
|
-
/** Create API-only
|
|
135
|
+
/** Create API-only users in an existing organization. */
|
|
128
136
|
post: operations["PublicApiService_CreateApiOnlyUsers"];
|
|
129
137
|
};
|
|
130
138
|
"/public/v1/submit/create_authenticators": {
|
|
131
|
-
/** Create
|
|
139
|
+
/** Create authenticators to authenticate requests to Turnkey. */
|
|
132
140
|
post: operations["PublicApiService_CreateAuthenticators"];
|
|
133
141
|
};
|
|
134
142
|
"/public/v1/submit/create_invitations": {
|
|
135
|
-
/** Create
|
|
143
|
+
/** Create invitations to join an existing organization. */
|
|
136
144
|
post: operations["PublicApiService_CreateInvitations"];
|
|
137
145
|
};
|
|
146
|
+
"/public/v1/submit/create_oauth2_credential": {
|
|
147
|
+
/** Enable authentication for end users with an OAuth 2.0 provider */
|
|
148
|
+
post: operations["PublicApiService_CreateOauth2Credential"];
|
|
149
|
+
};
|
|
138
150
|
"/public/v1/submit/create_oauth_providers": {
|
|
139
|
-
/**
|
|
151
|
+
/** Create Oauth providers for a specified user. */
|
|
140
152
|
post: operations["PublicApiService_CreateOauthProviders"];
|
|
141
153
|
};
|
|
142
154
|
"/public/v1/submit/create_policies": {
|
|
143
|
-
/** Create new
|
|
155
|
+
/** Create new policies. */
|
|
144
156
|
post: operations["PublicApiService_CreatePolicies"];
|
|
145
157
|
};
|
|
146
158
|
"/public/v1/submit/create_policy": {
|
|
147
|
-
/** Create a new
|
|
159
|
+
/** Create a new policy. */
|
|
148
160
|
post: operations["PublicApiService_CreatePolicy"];
|
|
149
161
|
};
|
|
150
162
|
"/public/v1/submit/create_private_key_tag": {
|
|
@@ -152,23 +164,23 @@ export type paths = {
|
|
|
152
164
|
post: operations["PublicApiService_CreatePrivateKeyTag"];
|
|
153
165
|
};
|
|
154
166
|
"/public/v1/submit/create_private_keys": {
|
|
155
|
-
/** Create new
|
|
167
|
+
/** Create new private keys. */
|
|
156
168
|
post: operations["PublicApiService_CreatePrivateKeys"];
|
|
157
169
|
};
|
|
158
170
|
"/public/v1/submit/create_read_only_session": {
|
|
159
|
-
/** Create a read only session for a user (valid for 1 hour) */
|
|
171
|
+
/** Create a read only session for a user (valid for 1 hour). */
|
|
160
172
|
post: operations["PublicApiService_CreateReadOnlySession"];
|
|
161
173
|
};
|
|
162
174
|
"/public/v1/submit/create_read_write_session": {
|
|
163
|
-
/** Create a read write session for a user */
|
|
175
|
+
/** Create a read write session for a user. */
|
|
164
176
|
post: operations["PublicApiService_CreateReadWriteSession"];
|
|
165
177
|
};
|
|
166
178
|
"/public/v1/submit/create_smart_contract_interface": {
|
|
167
|
-
/** Create an ABI/IDL in JSON */
|
|
179
|
+
/** Create an ABI/IDL in JSON. */
|
|
168
180
|
post: operations["PublicApiService_CreateSmartContractInterface"];
|
|
169
181
|
};
|
|
170
182
|
"/public/v1/submit/create_sub_organization": {
|
|
171
|
-
/** Create a new
|
|
183
|
+
/** Create a new sub-organization. */
|
|
172
184
|
post: operations["PublicApiService_CreateSubOrganization"];
|
|
173
185
|
};
|
|
174
186
|
"/public/v1/submit/create_user_tag": {
|
|
@@ -176,199 +188,199 @@ export type paths = {
|
|
|
176
188
|
post: operations["PublicApiService_CreateUserTag"];
|
|
177
189
|
};
|
|
178
190
|
"/public/v1/submit/create_users": {
|
|
179
|
-
/** Create
|
|
191
|
+
/** Create users in an existing organization. */
|
|
180
192
|
post: operations["PublicApiService_CreateUsers"];
|
|
181
193
|
};
|
|
182
194
|
"/public/v1/submit/create_wallet": {
|
|
183
|
-
/** Create a
|
|
195
|
+
/** Create a wallet and derive addresses. */
|
|
184
196
|
post: operations["PublicApiService_CreateWallet"];
|
|
185
197
|
};
|
|
186
198
|
"/public/v1/submit/create_wallet_accounts": {
|
|
187
|
-
/** Derive additional addresses using an existing wallet */
|
|
199
|
+
/** Derive additional addresses using an existing wallet. */
|
|
188
200
|
post: operations["PublicApiService_CreateWalletAccounts"];
|
|
189
201
|
};
|
|
190
202
|
"/public/v1/submit/delete_api_keys": {
|
|
191
|
-
/** Remove api keys from a
|
|
203
|
+
/** Remove api keys from a user. */
|
|
192
204
|
post: operations["PublicApiService_DeleteApiKeys"];
|
|
193
205
|
};
|
|
194
206
|
"/public/v1/submit/delete_authenticators": {
|
|
195
|
-
/** Remove authenticators from a
|
|
207
|
+
/** Remove authenticators from a user. */
|
|
196
208
|
post: operations["PublicApiService_DeleteAuthenticators"];
|
|
197
209
|
};
|
|
198
210
|
"/public/v1/submit/delete_invitation": {
|
|
199
|
-
/** Delete an existing
|
|
211
|
+
/** Delete an existing invitation. */
|
|
200
212
|
post: operations["PublicApiService_DeleteInvitation"];
|
|
201
213
|
};
|
|
214
|
+
"/public/v1/submit/delete_oauth2_credential": {
|
|
215
|
+
/** Disable authentication for end users with an OAuth 2.0 provider */
|
|
216
|
+
post: operations["PublicApiService_DeleteOauth2Credential"];
|
|
217
|
+
};
|
|
202
218
|
"/public/v1/submit/delete_oauth_providers": {
|
|
203
|
-
/**
|
|
219
|
+
/** Remove Oauth providers for a specified user. */
|
|
204
220
|
post: operations["PublicApiService_DeleteOauthProviders"];
|
|
205
221
|
};
|
|
206
222
|
"/public/v1/submit/delete_policy": {
|
|
207
|
-
/** Delete an existing
|
|
223
|
+
/** Delete an existing policy. */
|
|
208
224
|
post: operations["PublicApiService_DeletePolicy"];
|
|
209
225
|
};
|
|
210
226
|
"/public/v1/submit/delete_private_key_tags": {
|
|
211
|
-
/** Delete
|
|
227
|
+
/** Delete private key tags within an organization. */
|
|
212
228
|
post: operations["PublicApiService_DeletePrivateKeyTags"];
|
|
213
229
|
};
|
|
214
230
|
"/public/v1/submit/delete_private_keys": {
|
|
215
|
-
/**
|
|
231
|
+
/** Delete private keys for an organization. */
|
|
216
232
|
post: operations["PublicApiService_DeletePrivateKeys"];
|
|
217
233
|
};
|
|
218
234
|
"/public/v1/submit/delete_smart_contract_interface": {
|
|
219
|
-
/** Delete a
|
|
235
|
+
/** Delete a smart contract interface. */
|
|
220
236
|
post: operations["PublicApiService_DeleteSmartContractInterface"];
|
|
221
237
|
};
|
|
222
238
|
"/public/v1/submit/delete_sub_organization": {
|
|
223
|
-
/**
|
|
239
|
+
/** Delete a sub-organization. */
|
|
224
240
|
post: operations["PublicApiService_DeleteSubOrganization"];
|
|
225
241
|
};
|
|
226
242
|
"/public/v1/submit/delete_user_tags": {
|
|
227
|
-
/** Delete
|
|
243
|
+
/** Delete user tags within an organization. */
|
|
228
244
|
post: operations["PublicApiService_DeleteUserTags"];
|
|
229
245
|
};
|
|
230
246
|
"/public/v1/submit/delete_users": {
|
|
231
|
-
/** Delete
|
|
247
|
+
/** Delete users within an organization. */
|
|
232
248
|
post: operations["PublicApiService_DeleteUsers"];
|
|
233
249
|
};
|
|
234
250
|
"/public/v1/submit/delete_wallets": {
|
|
235
|
-
/**
|
|
251
|
+
/** Delete wallets for an organization. */
|
|
236
252
|
post: operations["PublicApiService_DeleteWallets"];
|
|
237
253
|
};
|
|
238
|
-
"/public/v1/submit/disable_user_initiated_auth": {
|
|
239
|
-
/** Disable User Initiated Auth */
|
|
240
|
-
post: operations["PublicApiService_DisableUserInitiatedAuth"];
|
|
241
|
-
};
|
|
242
254
|
"/public/v1/submit/email_auth": {
|
|
243
|
-
/** Authenticate a user via
|
|
255
|
+
/** Authenticate a user via email. */
|
|
244
256
|
post: operations["PublicApiService_EmailAuth"];
|
|
245
257
|
};
|
|
246
|
-
"/public/v1/submit/enable_user_initiated_auth": {
|
|
247
|
-
/** Enable User Initiated Auth */
|
|
248
|
-
post: operations["PublicApiService_EnableUserInitiatedAuth"];
|
|
249
|
-
};
|
|
250
258
|
"/public/v1/submit/export_private_key": {
|
|
251
|
-
/**
|
|
259
|
+
/** Export a private key. */
|
|
252
260
|
post: operations["PublicApiService_ExportPrivateKey"];
|
|
253
261
|
};
|
|
254
262
|
"/public/v1/submit/export_wallet": {
|
|
255
|
-
/**
|
|
263
|
+
/** Export a wallet. */
|
|
256
264
|
post: operations["PublicApiService_ExportWallet"];
|
|
257
265
|
};
|
|
258
266
|
"/public/v1/submit/export_wallet_account": {
|
|
259
|
-
/**
|
|
267
|
+
/** Export a wallet account. */
|
|
260
268
|
post: operations["PublicApiService_ExportWalletAccount"];
|
|
261
269
|
};
|
|
262
270
|
"/public/v1/submit/import_private_key": {
|
|
263
|
-
/**
|
|
271
|
+
/** Import a private key. */
|
|
264
272
|
post: operations["PublicApiService_ImportPrivateKey"];
|
|
265
273
|
};
|
|
266
274
|
"/public/v1/submit/import_wallet": {
|
|
267
|
-
/**
|
|
275
|
+
/** Import a wallet. */
|
|
268
276
|
post: operations["PublicApiService_ImportWallet"];
|
|
269
277
|
};
|
|
270
278
|
"/public/v1/submit/init_fiat_on_ramp": {
|
|
271
|
-
/** Initiate a fiat on ramp flow */
|
|
279
|
+
/** Initiate a fiat on ramp flow. */
|
|
272
280
|
post: operations["PublicApiService_InitFiatOnRamp"];
|
|
273
281
|
};
|
|
274
282
|
"/public/v1/submit/init_import_private_key": {
|
|
275
|
-
/**
|
|
283
|
+
/** Initialize a new private key import. */
|
|
276
284
|
post: operations["PublicApiService_InitImportPrivateKey"];
|
|
277
285
|
};
|
|
278
286
|
"/public/v1/submit/init_import_wallet": {
|
|
279
|
-
/**
|
|
287
|
+
/** Initialize a new wallet import. */
|
|
280
288
|
post: operations["PublicApiService_InitImportWallet"];
|
|
281
289
|
};
|
|
282
290
|
"/public/v1/submit/init_otp": {
|
|
283
|
-
/** Initiate a
|
|
291
|
+
/** Initiate a generic OTP activity. */
|
|
284
292
|
post: operations["PublicApiService_InitOtp"];
|
|
285
293
|
};
|
|
286
294
|
"/public/v1/submit/init_otp_auth": {
|
|
287
|
-
/** Initiate an OTP auth activity */
|
|
295
|
+
/** Initiate an OTP auth activity. */
|
|
288
296
|
post: operations["PublicApiService_InitOtpAuth"];
|
|
289
297
|
};
|
|
290
298
|
"/public/v1/submit/init_user_email_recovery": {
|
|
291
|
-
/**
|
|
299
|
+
/** Initialize a new email recovery. */
|
|
292
300
|
post: operations["PublicApiService_InitUserEmailRecovery"];
|
|
293
301
|
};
|
|
294
302
|
"/public/v1/submit/oauth": {
|
|
295
|
-
/** Authenticate a user with an
|
|
303
|
+
/** Authenticate a user with an OIDC token (Oauth). */
|
|
296
304
|
post: operations["PublicApiService_Oauth"];
|
|
297
305
|
};
|
|
306
|
+
"/public/v1/submit/oauth2_authenticate": {
|
|
307
|
+
/** Authenticate a user with an OAuth 2.0 provider and receive an OIDC token to use with the LoginWithOAuth or CreateSubOrganization activities */
|
|
308
|
+
post: operations["PublicApiService_Oauth2Authenticate"];
|
|
309
|
+
};
|
|
298
310
|
"/public/v1/submit/oauth_login": {
|
|
299
|
-
/** Create an Oauth session for a user */
|
|
311
|
+
/** Create an Oauth session for a user. */
|
|
300
312
|
post: operations["PublicApiService_OauthLogin"];
|
|
301
313
|
};
|
|
302
314
|
"/public/v1/submit/otp_auth": {
|
|
303
|
-
/** Authenticate a user with an OTP code sent via email or SMS */
|
|
315
|
+
/** Authenticate a user with an OTP code sent via email or SMS. */
|
|
304
316
|
post: operations["PublicApiService_OtpAuth"];
|
|
305
317
|
};
|
|
306
318
|
"/public/v1/submit/otp_login": {
|
|
307
|
-
/** Create an OTP session for a user */
|
|
319
|
+
/** Create an OTP session for a user. */
|
|
308
320
|
post: operations["PublicApiService_OtpLogin"];
|
|
309
321
|
};
|
|
310
322
|
"/public/v1/submit/recover_user": {
|
|
311
|
-
/**
|
|
323
|
+
/** Complete the process of recovering a user by adding an authenticator. */
|
|
312
324
|
post: operations["PublicApiService_RecoverUser"];
|
|
313
325
|
};
|
|
314
326
|
"/public/v1/submit/reject_activity": {
|
|
315
|
-
/** Reject an
|
|
327
|
+
/** Reject an activity. */
|
|
316
328
|
post: operations["PublicApiService_RejectActivity"];
|
|
317
329
|
};
|
|
318
330
|
"/public/v1/submit/remove_organization_feature": {
|
|
319
|
-
/**
|
|
331
|
+
/** Remove an organization feature. This activity must be approved by the current root quorum. */
|
|
320
332
|
post: operations["PublicApiService_RemoveOrganizationFeature"];
|
|
321
333
|
};
|
|
322
334
|
"/public/v1/submit/set_organization_feature": {
|
|
323
|
-
/**
|
|
335
|
+
/** Set an organization feature. This activity must be approved by the current root quorum. */
|
|
324
336
|
post: operations["PublicApiService_SetOrganizationFeature"];
|
|
325
337
|
};
|
|
326
338
|
"/public/v1/submit/sign_raw_payload": {
|
|
327
|
-
/** Sign a raw payload */
|
|
339
|
+
/** Sign a raw payload. */
|
|
328
340
|
post: operations["PublicApiService_SignRawPayload"];
|
|
329
341
|
};
|
|
330
342
|
"/public/v1/submit/sign_raw_payloads": {
|
|
331
|
-
/** Sign multiple raw payloads with the same signing parameters */
|
|
343
|
+
/** Sign multiple raw payloads with the same signing parameters. */
|
|
332
344
|
post: operations["PublicApiService_SignRawPayloads"];
|
|
333
345
|
};
|
|
334
346
|
"/public/v1/submit/sign_transaction": {
|
|
335
|
-
/** Sign a transaction */
|
|
347
|
+
/** Sign a transaction. */
|
|
336
348
|
post: operations["PublicApiService_SignTransaction"];
|
|
337
349
|
};
|
|
338
350
|
"/public/v1/submit/stamp_login": {
|
|
339
|
-
/** Create a session for a user through stamping client side (
|
|
351
|
+
/** Create a session for a user through stamping client side (API key, wallet client, or passkey client). */
|
|
340
352
|
post: operations["PublicApiService_StampLogin"];
|
|
341
353
|
};
|
|
354
|
+
"/public/v1/submit/update_oauth2_credential": {
|
|
355
|
+
/** Update an OAuth 2.0 provider credential */
|
|
356
|
+
post: operations["PublicApiService_UpdateOauth2Credential"];
|
|
357
|
+
};
|
|
342
358
|
"/public/v1/submit/update_policy": {
|
|
343
|
-
/** Update an existing
|
|
359
|
+
/** Update an existing policy. */
|
|
344
360
|
post: operations["PublicApiService_UpdatePolicy"];
|
|
345
361
|
};
|
|
346
362
|
"/public/v1/submit/update_private_key_tag": {
|
|
347
363
|
/** Update human-readable name or associated private keys. Note that this activity is atomic: all of the updates will succeed at once, or all of them will fail. */
|
|
348
364
|
post: operations["PublicApiService_UpdatePrivateKeyTag"];
|
|
349
365
|
};
|
|
350
|
-
"/public/v1/submit/update_proxy_auth_config": {
|
|
351
|
-
/** Update the proxy-auth configuration (allowed origins, etc.) for an Organization */
|
|
352
|
-
post: operations["PublicApiService_UpdateProxyAuthConfig"];
|
|
353
|
-
};
|
|
354
366
|
"/public/v1/submit/update_root_quorum": {
|
|
355
367
|
/** Set the threshold and members of the root quorum. This activity must be approved by the current root quorum. */
|
|
356
368
|
post: operations["PublicApiService_UpdateRootQuorum"];
|
|
357
369
|
};
|
|
358
370
|
"/public/v1/submit/update_user": {
|
|
359
|
-
/** Update a
|
|
371
|
+
/** Update a user in an existing organization. */
|
|
360
372
|
post: operations["PublicApiService_UpdateUser"];
|
|
361
373
|
};
|
|
362
374
|
"/public/v1/submit/update_user_email": {
|
|
363
|
-
/** Update a
|
|
375
|
+
/** Update a user's email in an existing organization. */
|
|
364
376
|
post: operations["PublicApiService_UpdateUserEmail"];
|
|
365
377
|
};
|
|
366
378
|
"/public/v1/submit/update_user_name": {
|
|
367
|
-
/** Update a
|
|
379
|
+
/** Update a user's name in an existing organization. */
|
|
368
380
|
post: operations["PublicApiService_UpdateUserName"];
|
|
369
381
|
};
|
|
370
382
|
"/public/v1/submit/update_user_phone_number": {
|
|
371
|
-
/** Update a
|
|
383
|
+
/** Update a user's phone number in an existing organization. */
|
|
372
384
|
post: operations["PublicApiService_UpdateUserPhoneNumber"];
|
|
373
385
|
};
|
|
374
386
|
"/public/v1/submit/update_user_tag": {
|
|
@@ -376,18 +388,18 @@ export type paths = {
|
|
|
376
388
|
post: operations["PublicApiService_UpdateUserTag"];
|
|
377
389
|
};
|
|
378
390
|
"/public/v1/submit/update_wallet": {
|
|
379
|
-
/** Update a wallet for an organization */
|
|
391
|
+
/** Update a wallet for an organization. */
|
|
380
392
|
post: operations["PublicApiService_UpdateWallet"];
|
|
381
393
|
};
|
|
382
394
|
"/public/v1/submit/verify_otp": {
|
|
383
|
-
/** Verify a
|
|
395
|
+
/** Verify a generic OTP. */
|
|
384
396
|
post: operations["PublicApiService_VerifyOtp"];
|
|
385
397
|
};
|
|
386
398
|
"/tkhq/api/v1/noop-codegen-anchor": {
|
|
387
399
|
post: operations["PublicApiService_NOOPCodegenAnchor"];
|
|
388
400
|
};
|
|
389
401
|
"/tkhq/api/v1/test_rate_limits": {
|
|
390
|
-
/** Set a rate local rate limit just on the current endpoint, for purposes of testing with Vivosuite */
|
|
402
|
+
/** Set a rate local rate limit just on the current endpoint, for purposes of testing with Vivosuite. */
|
|
391
403
|
post: operations["PublicApiService_TestRateLimits"];
|
|
392
404
|
};
|
|
393
405
|
};
|
|
@@ -455,6 +467,19 @@ export type definitions = {
|
|
|
455
467
|
createdAt: definitions["externaldatav1Timestamp"];
|
|
456
468
|
updatedAt: definitions["externaldatav1Timestamp"];
|
|
457
469
|
};
|
|
470
|
+
externalactivityv1PolicyEvaluation: {
|
|
471
|
+
/** @description Unique identifier for a given policy evaluation. */
|
|
472
|
+
id: string;
|
|
473
|
+
/** @description Unique identifier for a given Activity. */
|
|
474
|
+
activityId: string;
|
|
475
|
+
/** @description Unique identifier for the Organization the Activity belongs to. */
|
|
476
|
+
organizationId: string;
|
|
477
|
+
/** @description Unique identifier for the Vote associated with this policy evaluation. */
|
|
478
|
+
voteId: string;
|
|
479
|
+
/** @description Detailed evaluation result for each Policy that was run. */
|
|
480
|
+
policyEvaluations: definitions["privateumpv1PolicyEvaluation"][];
|
|
481
|
+
createdAt: definitions["externaldatav1Timestamp"];
|
|
482
|
+
};
|
|
458
483
|
externaldatav1Address: {
|
|
459
484
|
format?: definitions["v1AddressFormat"];
|
|
460
485
|
address?: string;
|
|
@@ -473,6 +498,24 @@ export type definitions = {
|
|
|
473
498
|
/** @description Unique identifiers of quorum set members. */
|
|
474
499
|
userIds: string[];
|
|
475
500
|
};
|
|
501
|
+
externaldatav1SmartContractInterface: {
|
|
502
|
+
/** @description The Organization the Smart Contract Interface belongs to. */
|
|
503
|
+
organizationId: string;
|
|
504
|
+
/** @description Unique identifier for a given Smart Contract Interface (ABI or IDL). */
|
|
505
|
+
smartContractInterfaceId: string;
|
|
506
|
+
/** @description The address corresponding to the Smart Contract or Program. */
|
|
507
|
+
smartContractAddress: string;
|
|
508
|
+
/** @description The JSON corresponding to the Smart Contract Interface (ABI or IDL). */
|
|
509
|
+
smartContractInterface: string;
|
|
510
|
+
/** @description The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */
|
|
511
|
+
type: string;
|
|
512
|
+
/** @description The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */
|
|
513
|
+
label: string;
|
|
514
|
+
/** @description The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */
|
|
515
|
+
notes: string;
|
|
516
|
+
createdAt: definitions["externaldatav1Timestamp"];
|
|
517
|
+
updatedAt: definitions["externaldatav1Timestamp"];
|
|
518
|
+
};
|
|
476
519
|
externaldatav1Timestamp: {
|
|
477
520
|
seconds: string;
|
|
478
521
|
nanos: string;
|
|
@@ -481,6 +524,10 @@ export type definitions = {
|
|
|
481
524
|
format?: definitions["v1AddressFormat"];
|
|
482
525
|
address?: string;
|
|
483
526
|
};
|
|
527
|
+
privateumpv1PolicyEvaluation: {
|
|
528
|
+
policyId?: string;
|
|
529
|
+
outcome?: definitions["v1Outcome"];
|
|
530
|
+
};
|
|
484
531
|
protobufAny: {
|
|
485
532
|
"@type"?: string;
|
|
486
533
|
} & {
|
|
@@ -541,13 +588,13 @@ export type definitions = {
|
|
|
541
588
|
failure?: definitions["rpcStatus"];
|
|
542
589
|
};
|
|
543
590
|
v1ActivityResponse: {
|
|
544
|
-
/** @description An action that can
|
|
591
|
+
/** @description An action that can be taken within the Turnkey infrastructure. */
|
|
545
592
|
activity: definitions["v1Activity"];
|
|
546
593
|
};
|
|
547
594
|
/** @enum {string} */
|
|
548
595
|
v1ActivityStatus: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
|
|
549
596
|
/** @enum {string} */
|
|
550
|
-
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" | "
|
|
597
|
+
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" | "ACTIVITY_TYPE_ENABLE_AUTH_PROXY" | "ACTIVITY_TYPE_DISABLE_AUTH_PROXY" | "ACTIVITY_TYPE_UPDATE_AUTH_PROXY_CONFIG" | "ACTIVITY_TYPE_CREATE_OAUTH2_CREDENTIAL" | "ACTIVITY_TYPE_UPDATE_OAUTH2_CREDENTIAL" | "ACTIVITY_TYPE_DELETE_OAUTH2_CREDENTIAL" | "ACTIVITY_TYPE_OAUTH2_AUTHENTICATE";
|
|
551
598
|
/** @enum {string} */
|
|
552
599
|
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";
|
|
553
600
|
v1ApiKey: {
|
|
@@ -743,6 +790,27 @@ export type definitions = {
|
|
|
743
790
|
/** @description A list of Invitation IDs */
|
|
744
791
|
invitationIds: string[];
|
|
745
792
|
};
|
|
793
|
+
v1CreateOauth2CredentialIntent: {
|
|
794
|
+
/** @description The OAuth 2.0 provider */
|
|
795
|
+
provider: definitions["v1Oauth2Provider"];
|
|
796
|
+
/** @description The Client ID issued by the OAuth 2.0 provider */
|
|
797
|
+
clientId: string;
|
|
798
|
+
/** @description The client secret issued by the OAuth 2.0 provider encrypted to the TLS Fetcher quorum key */
|
|
799
|
+
encryptedClientSecret: string;
|
|
800
|
+
};
|
|
801
|
+
v1CreateOauth2CredentialRequest: {
|
|
802
|
+
/** @enum {string} */
|
|
803
|
+
type: "ACTIVITY_TYPE_CREATE_OAUTH2_CREDENTIAL";
|
|
804
|
+
/** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
|
|
805
|
+
timestampMs: string;
|
|
806
|
+
/** @description Unique identifier for a given Organization. */
|
|
807
|
+
organizationId: string;
|
|
808
|
+
parameters: definitions["v1CreateOauth2CredentialIntent"];
|
|
809
|
+
};
|
|
810
|
+
v1CreateOauth2CredentialResult: {
|
|
811
|
+
/** @description Unique identifier of the OAuth 2.0 credential that was created */
|
|
812
|
+
oauth2CredentialId: string;
|
|
813
|
+
};
|
|
746
814
|
v1CreateOauthProvidersIntent: {
|
|
747
815
|
/** @description The ID of the User to add an Oauth provider to */
|
|
748
816
|
userId: string;
|
|
@@ -986,7 +1054,7 @@ export type definitions = {
|
|
|
986
1054
|
smartContractInterface: string;
|
|
987
1055
|
type: definitions["v1SmartContractInterfaceType"];
|
|
988
1056
|
/** @description Human-readable name for a Smart Contract Interface. */
|
|
989
|
-
label
|
|
1057
|
+
label: string;
|
|
990
1058
|
/** @description Notes for a Smart Contract Interface. */
|
|
991
1059
|
notes?: string;
|
|
992
1060
|
};
|
|
@@ -1299,6 +1367,23 @@ export type definitions = {
|
|
|
1299
1367
|
/** @description Unique identifier for a given Invitation. */
|
|
1300
1368
|
invitationId: string;
|
|
1301
1369
|
};
|
|
1370
|
+
v1DeleteOauth2CredentialIntent: {
|
|
1371
|
+
/** @description The ID of the OAuth 2.0 credential to delete */
|
|
1372
|
+
oauth2CredentialId: string;
|
|
1373
|
+
};
|
|
1374
|
+
v1DeleteOauth2CredentialRequest: {
|
|
1375
|
+
/** @enum {string} */
|
|
1376
|
+
type: "ACTIVITY_TYPE_DELETE_OAUTH2_CREDENTIAL";
|
|
1377
|
+
/** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
|
|
1378
|
+
timestampMs: string;
|
|
1379
|
+
/** @description Unique identifier for a given Organization. */
|
|
1380
|
+
organizationId: string;
|
|
1381
|
+
parameters: definitions["v1DeleteOauth2CredentialIntent"];
|
|
1382
|
+
};
|
|
1383
|
+
v1DeleteOauth2CredentialResult: {
|
|
1384
|
+
/** @description Unique identifier of the OAuth 2.0 credential that was deleted */
|
|
1385
|
+
oauth2CredentialId: string;
|
|
1386
|
+
};
|
|
1302
1387
|
v1DeleteOauthProvidersIntent: {
|
|
1303
1388
|
/** @description The ID of the User to remove an Oauth provider from */
|
|
1304
1389
|
userId: string;
|
|
@@ -1470,6 +1555,12 @@ export type definitions = {
|
|
|
1470
1555
|
/** @description A list of wallet unique identifiers that were removed */
|
|
1471
1556
|
walletIds: string[];
|
|
1472
1557
|
};
|
|
1558
|
+
v1DisableAuthProxyIntent: {
|
|
1559
|
+
[key: string]: unknown;
|
|
1560
|
+
};
|
|
1561
|
+
v1DisableAuthProxyResult: {
|
|
1562
|
+
[key: string]: unknown;
|
|
1563
|
+
};
|
|
1473
1564
|
v1DisablePrivateKeyIntent: {
|
|
1474
1565
|
/** @description Unique identifier for a given Private Key. */
|
|
1475
1566
|
privateKeyId: string;
|
|
@@ -1478,24 +1569,6 @@ export type definitions = {
|
|
|
1478
1569
|
/** @description Unique identifier for a given Private Key. */
|
|
1479
1570
|
privateKeyId: string;
|
|
1480
1571
|
};
|
|
1481
|
-
v1DisableUserInitiatedAuthIntent: {
|
|
1482
|
-
/** @description Unique identifier for a given User. (representing the turnkey signer user id) */
|
|
1483
|
-
userId?: string;
|
|
1484
|
-
/** @description Unique identifier for a given Policy. (representing the turnkey signer associated policy) */
|
|
1485
|
-
policyId?: string;
|
|
1486
|
-
};
|
|
1487
|
-
v1DisableUserInitiatedAuthRequest: {
|
|
1488
|
-
/** @enum {string} */
|
|
1489
|
-
type: "ACTIVITY_TYPE_DISABLE_USER_INITIATED_AUTH";
|
|
1490
|
-
/** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
|
|
1491
|
-
timestampMs: string;
|
|
1492
|
-
/** @description Unique identifier for a given Organization. */
|
|
1493
|
-
organizationId: string;
|
|
1494
|
-
parameters: definitions["v1DisableUserInitiatedAuthIntent"];
|
|
1495
|
-
};
|
|
1496
|
-
v1DisableUserInitiatedAuthResult: {
|
|
1497
|
-
[key: string]: unknown;
|
|
1498
|
-
};
|
|
1499
1572
|
/** @enum {string} */
|
|
1500
1573
|
v1Effect: "EFFECT_ALLOW" | "EFFECT_DENY";
|
|
1501
1574
|
v1EmailAuthIntent: {
|
|
@@ -1565,33 +1638,12 @@ export type definitions = {
|
|
|
1565
1638
|
/** @description Unique identifier for a given Email Template. If not specified, the default is the most recent Email Template. */
|
|
1566
1639
|
templateId?: string;
|
|
1567
1640
|
};
|
|
1568
|
-
|
|
1641
|
+
v1EnableAuthProxyIntent: {
|
|
1569
1642
|
[key: string]: unknown;
|
|
1570
1643
|
};
|
|
1571
|
-
|
|
1572
|
-
/** @
|
|
1573
|
-
type: "ACTIVITY_TYPE_ENABLE_USER_INITIATED_AUTH";
|
|
1574
|
-
/** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
|
|
1575
|
-
timestampMs: string;
|
|
1576
|
-
/** @description Unique identifier for a given Organization. */
|
|
1577
|
-
organizationId: string;
|
|
1578
|
-
parameters: definitions["v1EnableUserInitiatedAuthIntent"];
|
|
1579
|
-
};
|
|
1580
|
-
v1EnableUserInitiatedAuthResult: {
|
|
1581
|
-
/** @description A User ID. */
|
|
1644
|
+
v1EnableAuthProxyResult: {
|
|
1645
|
+
/** @description A User ID with permission to initiate authentication. */
|
|
1582
1646
|
userId: string;
|
|
1583
|
-
/** @description A Policy ID. */
|
|
1584
|
-
policyId: string;
|
|
1585
|
-
};
|
|
1586
|
-
v1EwkSettingsParams: {
|
|
1587
|
-
/** @description Enable Sign in with Apple */
|
|
1588
|
-
appleEnabled?: boolean;
|
|
1589
|
-
/** @description Enable Sign in with Google */
|
|
1590
|
-
googleEnabled?: boolean;
|
|
1591
|
-
/** @description Enable Sign in with Facebook */
|
|
1592
|
-
facebookEnabled?: boolean;
|
|
1593
|
-
/** @description Whether to open OAuth providers in-page instead of a popup */
|
|
1594
|
-
openOauthInPage?: boolean;
|
|
1595
1647
|
};
|
|
1596
1648
|
v1ExportPrivateKeyIntent: {
|
|
1597
1649
|
/** @description Unique identifier for a given Private Key. */
|
|
@@ -1663,7 +1715,7 @@ export type definitions = {
|
|
|
1663
1715
|
value?: string;
|
|
1664
1716
|
};
|
|
1665
1717
|
/** @enum {string} */
|
|
1666
|
-
v1FeatureName: "FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY" | "FEATURE_NAME_WEBAUTHN_ORIGINS" | "FEATURE_NAME_EMAIL_AUTH" | "FEATURE_NAME_EMAIL_RECOVERY" | "FEATURE_NAME_WEBHOOK" | "FEATURE_NAME_SMS_AUTH" | "FEATURE_NAME_OTP_EMAIL_AUTH";
|
|
1718
|
+
v1FeatureName: "FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY" | "FEATURE_NAME_WEBAUTHN_ORIGINS" | "FEATURE_NAME_EMAIL_AUTH" | "FEATURE_NAME_EMAIL_RECOVERY" | "FEATURE_NAME_WEBHOOK" | "FEATURE_NAME_SMS_AUTH" | "FEATURE_NAME_OTP_EMAIL_AUTH" | "FEATURE_NAME_AUTH_PROXY";
|
|
1667
1719
|
/** @enum {string} */
|
|
1668
1720
|
v1FiatOnRampBlockchainNetwork: "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_BITCOIN" | "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_ETHEREUM" | "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_SOLANA" | "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_BASE";
|
|
1669
1721
|
/** @enum {string} */
|
|
@@ -1675,27 +1727,27 @@ export type definitions = {
|
|
|
1675
1727
|
/** @enum {string} */
|
|
1676
1728
|
v1FiatOnRampProvider: "FIAT_ON_RAMP_PROVIDER_COINBASE" | "FIAT_ON_RAMP_PROVIDER_MOONPAY";
|
|
1677
1729
|
v1GetActivitiesRequest: {
|
|
1678
|
-
/** @description Unique identifier for a given
|
|
1730
|
+
/** @description Unique identifier for a given organization. */
|
|
1679
1731
|
organizationId: string;
|
|
1680
|
-
/** @description Array of
|
|
1732
|
+
/** @description Array of activity statuses filtering which activities will be listed in the response. */
|
|
1681
1733
|
filterByStatus?: definitions["v1ActivityStatus"][];
|
|
1682
1734
|
/** @description Parameters used for cursor-based pagination. */
|
|
1683
1735
|
paginationOptions?: definitions["v1Pagination"];
|
|
1684
|
-
/** @description Array of
|
|
1736
|
+
/** @description Array of activity types filtering which activities will be listed in the response. */
|
|
1685
1737
|
filterByType?: definitions["v1ActivityType"][];
|
|
1686
1738
|
};
|
|
1687
1739
|
v1GetActivitiesResponse: {
|
|
1688
|
-
/** @description A list of
|
|
1740
|
+
/** @description A list of activities. */
|
|
1689
1741
|
activities: definitions["v1Activity"][];
|
|
1690
1742
|
};
|
|
1691
1743
|
v1GetActivityRequest: {
|
|
1692
|
-
/** @description Unique identifier for a given
|
|
1744
|
+
/** @description Unique identifier for a given organization. */
|
|
1693
1745
|
organizationId: string;
|
|
1694
|
-
/** @description Unique identifier for a given
|
|
1746
|
+
/** @description Unique identifier for a given activity object. */
|
|
1695
1747
|
activityId: string;
|
|
1696
1748
|
};
|
|
1697
1749
|
v1GetApiKeyRequest: {
|
|
1698
|
-
/** @description Unique identifier for a given
|
|
1750
|
+
/** @description Unique identifier for a given organization. */
|
|
1699
1751
|
organizationId: string;
|
|
1700
1752
|
/** @description Unique identifier for a given API key. */
|
|
1701
1753
|
apiKeyId: string;
|
|
@@ -1705,9 +1757,9 @@ export type definitions = {
|
|
|
1705
1757
|
apiKey: definitions["v1ApiKey"];
|
|
1706
1758
|
};
|
|
1707
1759
|
v1GetApiKeysRequest: {
|
|
1708
|
-
/** @description Unique identifier for a given
|
|
1760
|
+
/** @description Unique identifier for a given organization. */
|
|
1709
1761
|
organizationId: string;
|
|
1710
|
-
/** @description Unique identifier for a given
|
|
1762
|
+
/** @description Unique identifier for a given user. */
|
|
1711
1763
|
userId?: string;
|
|
1712
1764
|
};
|
|
1713
1765
|
v1GetApiKeysResponse: {
|
|
@@ -1715,22 +1767,22 @@ export type definitions = {
|
|
|
1715
1767
|
apiKeys: definitions["v1ApiKey"][];
|
|
1716
1768
|
};
|
|
1717
1769
|
v1GetAttestationDocumentRequest: {
|
|
1718
|
-
/** @description Unique identifier for a given
|
|
1770
|
+
/** @description Unique identifier for a given organization. */
|
|
1719
1771
|
organizationId: string;
|
|
1720
|
-
/** @description The enclave type, one of: ump, notarizer, signer, evm-parser */
|
|
1772
|
+
/** @description The enclave type, one of: ump, notarizer, signer, evm-parser. */
|
|
1721
1773
|
enclaveType: string;
|
|
1722
1774
|
};
|
|
1723
1775
|
v1GetAttestationDocumentResponse: {
|
|
1724
1776
|
/**
|
|
1725
1777
|
* Format: byte
|
|
1726
|
-
* @description Raw (CBOR-encoded) attestation document
|
|
1778
|
+
* @description Raw (CBOR-encoded) attestation document.
|
|
1727
1779
|
*/
|
|
1728
1780
|
attestationDocument: string;
|
|
1729
1781
|
};
|
|
1730
1782
|
v1GetAuthenticatorRequest: {
|
|
1731
|
-
/** @description Unique identifier for a given
|
|
1783
|
+
/** @description Unique identifier for a given organization. */
|
|
1732
1784
|
organizationId: string;
|
|
1733
|
-
/** @description Unique identifier for a given
|
|
1785
|
+
/** @description Unique identifier for a given authenticator. */
|
|
1734
1786
|
authenticatorId: string;
|
|
1735
1787
|
};
|
|
1736
1788
|
v1GetAuthenticatorResponse: {
|
|
@@ -1738,63 +1790,81 @@ export type definitions = {
|
|
|
1738
1790
|
authenticator: definitions["v1Authenticator"];
|
|
1739
1791
|
};
|
|
1740
1792
|
v1GetAuthenticatorsRequest: {
|
|
1741
|
-
/** @description Unique identifier for a given
|
|
1793
|
+
/** @description Unique identifier for a given organization. */
|
|
1742
1794
|
organizationId: string;
|
|
1743
|
-
/** @description Unique identifier for a given
|
|
1795
|
+
/** @description Unique identifier for a given user. */
|
|
1744
1796
|
userId: string;
|
|
1745
1797
|
};
|
|
1746
1798
|
v1GetAuthenticatorsResponse: {
|
|
1747
1799
|
/** @description A list of authenticators. */
|
|
1748
1800
|
authenticators: definitions["v1Authenticator"][];
|
|
1749
1801
|
};
|
|
1750
|
-
|
|
1802
|
+
v1GetOauth2CredentialRequest: {
|
|
1751
1803
|
/** @description Unique identifier for a given Organization. */
|
|
1752
1804
|
organizationId: string;
|
|
1753
|
-
/** @description Unique identifier for a given
|
|
1805
|
+
/** @description Unique identifier for a given OAuth 2.0 Credential. */
|
|
1806
|
+
oauth2CredentialId: string;
|
|
1807
|
+
};
|
|
1808
|
+
v1GetOauth2CredentialResponse: {
|
|
1809
|
+
oauth2Credential: definitions["v1Oauth2Credential"];
|
|
1810
|
+
};
|
|
1811
|
+
v1GetOauthProvidersRequest: {
|
|
1812
|
+
/** @description Unique identifier for a given organization. */
|
|
1813
|
+
organizationId: string;
|
|
1814
|
+
/** @description Unique identifier for a given user. */
|
|
1754
1815
|
userId?: string;
|
|
1755
1816
|
};
|
|
1756
1817
|
v1GetOauthProvidersResponse: {
|
|
1757
|
-
/** @description A list of Oauth
|
|
1818
|
+
/** @description A list of Oauth providers. */
|
|
1758
1819
|
oauthProviders: definitions["v1OauthProvider"][];
|
|
1759
1820
|
};
|
|
1760
1821
|
v1GetOrganizationConfigsRequest: {
|
|
1761
|
-
/** @description Unique identifier for a given
|
|
1822
|
+
/** @description Unique identifier for a given organization. */
|
|
1762
1823
|
organizationId: string;
|
|
1763
1824
|
};
|
|
1764
1825
|
v1GetOrganizationConfigsResponse: {
|
|
1765
|
-
/** @description Organization configs including quorum settings and organization features */
|
|
1826
|
+
/** @description Organization configs including quorum settings and organization features. */
|
|
1766
1827
|
configs: definitions["v1Config"];
|
|
1767
1828
|
};
|
|
1768
1829
|
v1GetOrganizationRequest: {
|
|
1769
|
-
/** @description Unique identifier for a given
|
|
1830
|
+
/** @description Unique identifier for a given organization. */
|
|
1770
1831
|
organizationId: string;
|
|
1771
1832
|
};
|
|
1772
1833
|
v1GetOrganizationResponse: {
|
|
1773
|
-
/** @description Object representing the full current and deleted / disabled collection of
|
|
1834
|
+
/** @description Object representing the full current and deleted / disabled collection of users, policies, private keys, and invitations attributable to a particular organization. */
|
|
1774
1835
|
organizationData: definitions["v1OrganizationData"];
|
|
1775
1836
|
};
|
|
1776
1837
|
v1GetPoliciesRequest: {
|
|
1777
|
-
/** @description Unique identifier for a given
|
|
1838
|
+
/** @description Unique identifier for a given organization. */
|
|
1778
1839
|
organizationId: string;
|
|
1779
1840
|
};
|
|
1780
1841
|
v1GetPoliciesResponse: {
|
|
1781
|
-
/** @description A list of
|
|
1842
|
+
/** @description A list of policies. */
|
|
1782
1843
|
policies: definitions["v1Policy"][];
|
|
1783
1844
|
};
|
|
1845
|
+
v1GetPolicyEvaluationsRequest: {
|
|
1846
|
+
/** @description Unique identifier for a given organization. */
|
|
1847
|
+
organizationId: string;
|
|
1848
|
+
/** @description Unique identifier for a given activity. */
|
|
1849
|
+
activityId: string;
|
|
1850
|
+
};
|
|
1851
|
+
v1GetPolicyEvaluationsResponse: {
|
|
1852
|
+
policyEvaluations: definitions["externalactivityv1PolicyEvaluation"][];
|
|
1853
|
+
};
|
|
1784
1854
|
v1GetPolicyRequest: {
|
|
1785
|
-
/** @description Unique identifier for a given
|
|
1855
|
+
/** @description Unique identifier for a given organization. */
|
|
1786
1856
|
organizationId: string;
|
|
1787
|
-
/** @description Unique identifier for a given
|
|
1857
|
+
/** @description Unique identifier for a given policy. */
|
|
1788
1858
|
policyId: string;
|
|
1789
1859
|
};
|
|
1790
1860
|
v1GetPolicyResponse: {
|
|
1791
|
-
/** @description Object that codifies rules defining the actions that are permissible within an
|
|
1861
|
+
/** @description Object that codifies rules defining the actions that are permissible within an organization. */
|
|
1792
1862
|
policy: definitions["v1Policy"];
|
|
1793
1863
|
};
|
|
1794
1864
|
v1GetPrivateKeyRequest: {
|
|
1795
|
-
/** @description Unique identifier for a given
|
|
1865
|
+
/** @description Unique identifier for a given organization. */
|
|
1796
1866
|
organizationId: string;
|
|
1797
|
-
/** @description Unique identifier for a given
|
|
1867
|
+
/** @description Unique identifier for a given private key. */
|
|
1798
1868
|
privateKeyId: string;
|
|
1799
1869
|
};
|
|
1800
1870
|
v1GetPrivateKeyResponse: {
|
|
@@ -1802,43 +1872,35 @@ export type definitions = {
|
|
|
1802
1872
|
privateKey: definitions["v1PrivateKey"];
|
|
1803
1873
|
};
|
|
1804
1874
|
v1GetPrivateKeysRequest: {
|
|
1805
|
-
/** @description Unique identifier for a given
|
|
1875
|
+
/** @description Unique identifier for a given organization. */
|
|
1806
1876
|
organizationId: string;
|
|
1807
1877
|
};
|
|
1808
1878
|
v1GetPrivateKeysResponse: {
|
|
1809
|
-
/** @description A list of
|
|
1879
|
+
/** @description A list of private keys. */
|
|
1810
1880
|
privateKeys: definitions["v1PrivateKey"][];
|
|
1811
1881
|
};
|
|
1812
|
-
v1GetProxyAuthConfigRequest: {
|
|
1813
|
-
/** @description Unique identifier for a given Organization. */
|
|
1814
|
-
organizationId: string;
|
|
1815
|
-
};
|
|
1816
|
-
v1GetProxyAuthConfigResponse: {
|
|
1817
|
-
/** @description Proxy authentication configuration (e.g., allowed origins). */
|
|
1818
|
-
proxyAuthConfig: definitions["v1ProxyAuthConfig"];
|
|
1819
|
-
};
|
|
1820
1882
|
v1GetSmartContractInterfaceRequest: {
|
|
1821
|
-
/** @description Unique identifier for a given
|
|
1883
|
+
/** @description Unique identifier for a given organization. */
|
|
1822
1884
|
organizationId: string;
|
|
1823
|
-
/** @description Unique identifier for a given
|
|
1885
|
+
/** @description Unique identifier for a given smart contract interface. */
|
|
1824
1886
|
smartContractInterfaceId: string;
|
|
1825
1887
|
};
|
|
1826
1888
|
v1GetSmartContractInterfaceResponse: {
|
|
1827
|
-
/** @description Object to be used in conjunction with
|
|
1828
|
-
smartContractInterface: definitions["
|
|
1889
|
+
/** @description Object to be used in conjunction with policies to guard transaction signing. */
|
|
1890
|
+
smartContractInterface: definitions["externaldatav1SmartContractInterface"];
|
|
1829
1891
|
};
|
|
1830
1892
|
v1GetSmartContractInterfacesRequest: {
|
|
1831
|
-
/** @description Unique identifier for a given
|
|
1893
|
+
/** @description Unique identifier for a given organization. */
|
|
1832
1894
|
organizationId: string;
|
|
1833
1895
|
};
|
|
1834
1896
|
v1GetSmartContractInterfacesResponse: {
|
|
1835
|
-
/** @description A list of
|
|
1836
|
-
smartContractInterfaces: definitions["
|
|
1897
|
+
/** @description A list of smart contract interfaces. */
|
|
1898
|
+
smartContractInterfaces: definitions["externaldatav1SmartContractInterface"][];
|
|
1837
1899
|
};
|
|
1838
1900
|
v1GetSubOrgIdsRequest: {
|
|
1839
|
-
/** @description Unique identifier for the parent
|
|
1901
|
+
/** @description Unique identifier for the parent organization. This is used to find sub-organizations within it. */
|
|
1840
1902
|
organizationId: string;
|
|
1841
|
-
/** @description Specifies the type of filter to apply, i.e 'CREDENTIAL_ID', 'NAME', 'USERNAME', 'EMAIL', 'PHONE_NUMBER', 'OIDC_TOKEN' or 'PUBLIC_KEY' */
|
|
1903
|
+
/** @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' */
|
|
1842
1904
|
filterType?: string;
|
|
1843
1905
|
/** @description The value of the filter to apply for the specified type. For example, a specific email or name string. */
|
|
1844
1906
|
filterValue?: string;
|
|
@@ -1850,27 +1912,27 @@ export type definitions = {
|
|
|
1850
1912
|
organizationIds: string[];
|
|
1851
1913
|
};
|
|
1852
1914
|
v1GetUserRequest: {
|
|
1853
|
-
/** @description Unique identifier for a given
|
|
1915
|
+
/** @description Unique identifier for a given organization. */
|
|
1854
1916
|
organizationId: string;
|
|
1855
|
-
/** @description Unique identifier for a given
|
|
1917
|
+
/** @description Unique identifier for a given user. */
|
|
1856
1918
|
userId: string;
|
|
1857
1919
|
};
|
|
1858
1920
|
v1GetUserResponse: {
|
|
1859
|
-
/** @description Web and/or API user within your
|
|
1921
|
+
/** @description Web and/or API user within your organization. */
|
|
1860
1922
|
user: definitions["v1User"];
|
|
1861
1923
|
};
|
|
1862
1924
|
v1GetUsersRequest: {
|
|
1863
|
-
/** @description Unique identifier for a given
|
|
1925
|
+
/** @description Unique identifier for a given organization. */
|
|
1864
1926
|
organizationId: string;
|
|
1865
1927
|
};
|
|
1866
1928
|
v1GetUsersResponse: {
|
|
1867
|
-
/** @description A list of
|
|
1929
|
+
/** @description A list of users. */
|
|
1868
1930
|
users: definitions["v1User"][];
|
|
1869
1931
|
};
|
|
1870
1932
|
v1GetVerifiedSubOrgIdsRequest: {
|
|
1871
|
-
/** @description Unique identifier for the parent
|
|
1933
|
+
/** @description Unique identifier for the parent organization. This is used to find sub-organizations within it. */
|
|
1872
1934
|
organizationId: string;
|
|
1873
|
-
/** @description Specifies the type of filter to apply, i.e 'EMAIL', 'PHONE_NUMBER' */
|
|
1935
|
+
/** @description Specifies the type of filter to apply, i.e 'EMAIL', 'PHONE_NUMBER'. */
|
|
1874
1936
|
filterType?: string;
|
|
1875
1937
|
/** @description The value of the filter to apply for the specified type. For example, a specific email or phone number string. */
|
|
1876
1938
|
filterValue?: string;
|
|
@@ -1882,61 +1944,63 @@ export type definitions = {
|
|
|
1882
1944
|
organizationIds: string[];
|
|
1883
1945
|
};
|
|
1884
1946
|
v1GetWalletAccountRequest: {
|
|
1885
|
-
/** @description Unique identifier for a given
|
|
1947
|
+
/** @description Unique identifier for a given organization. */
|
|
1886
1948
|
organizationId: string;
|
|
1887
|
-
/** @description Unique identifier for a given
|
|
1949
|
+
/** @description Unique identifier for a given wallet. */
|
|
1888
1950
|
walletId: string;
|
|
1889
|
-
/** @description Address corresponding to a
|
|
1951
|
+
/** @description Address corresponding to a wallet account. */
|
|
1890
1952
|
address?: string;
|
|
1891
|
-
/** @description Path corresponding to a
|
|
1953
|
+
/** @description Path corresponding to a wallet account. */
|
|
1892
1954
|
path?: string;
|
|
1893
1955
|
};
|
|
1894
1956
|
v1GetWalletAccountResponse: {
|
|
1895
|
-
/** @description The resulting
|
|
1957
|
+
/** @description The resulting wallet account. */
|
|
1896
1958
|
account: definitions["v1WalletAccount"];
|
|
1897
1959
|
};
|
|
1898
1960
|
v1GetWalletAccountsRequest: {
|
|
1899
|
-
/** @description Unique identifier for a given
|
|
1961
|
+
/** @description Unique identifier for a given organization. */
|
|
1900
1962
|
organizationId: string;
|
|
1901
|
-
/** @description Unique identifier for a given
|
|
1902
|
-
walletId
|
|
1963
|
+
/** @description Unique identifier for a given wallet. If not provided, all accounts for the organization will be returned. */
|
|
1964
|
+
walletId?: string;
|
|
1965
|
+
/** @description Optional flag to specify if the wallet details should be included in the response. Default = false. */
|
|
1966
|
+
includeWalletDetails?: boolean;
|
|
1903
1967
|
/** @description Parameters used for cursor-based pagination. */
|
|
1904
1968
|
paginationOptions?: definitions["v1Pagination"];
|
|
1905
1969
|
};
|
|
1906
1970
|
v1GetWalletAccountsResponse: {
|
|
1907
|
-
/** @description A list of
|
|
1971
|
+
/** @description A list of accounts generated from a wallet that share a common seed. */
|
|
1908
1972
|
accounts: definitions["v1WalletAccount"][];
|
|
1909
1973
|
};
|
|
1910
1974
|
v1GetWalletRequest: {
|
|
1911
|
-
/** @description Unique identifier for a given
|
|
1975
|
+
/** @description Unique identifier for a given organization. */
|
|
1912
1976
|
organizationId: string;
|
|
1913
|
-
/** @description Unique identifier for a given
|
|
1977
|
+
/** @description Unique identifier for a given wallet. */
|
|
1914
1978
|
walletId: string;
|
|
1915
1979
|
};
|
|
1916
1980
|
v1GetWalletResponse: {
|
|
1917
|
-
/** @description A collection of deterministically generated cryptographic public / private key pairs that share a common seed */
|
|
1981
|
+
/** @description A collection of deterministically generated cryptographic public / private key pairs that share a common seed. */
|
|
1918
1982
|
wallet: definitions["v1Wallet"];
|
|
1919
1983
|
};
|
|
1920
1984
|
v1GetWalletsRequest: {
|
|
1921
|
-
/** @description Unique identifier for a given
|
|
1985
|
+
/** @description Unique identifier for a given organization. */
|
|
1922
1986
|
organizationId: string;
|
|
1923
1987
|
};
|
|
1924
1988
|
v1GetWalletsResponse: {
|
|
1925
|
-
/** @description A list of
|
|
1989
|
+
/** @description A list of wallets. */
|
|
1926
1990
|
wallets: definitions["v1Wallet"][];
|
|
1927
1991
|
};
|
|
1928
1992
|
v1GetWhoamiRequest: {
|
|
1929
|
-
/** @description Unique identifier for a given
|
|
1993
|
+
/** @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. */
|
|
1930
1994
|
organizationId: string;
|
|
1931
1995
|
};
|
|
1932
1996
|
v1GetWhoamiResponse: {
|
|
1933
|
-
/** @description Unique identifier for a given
|
|
1997
|
+
/** @description Unique identifier for a given organization. */
|
|
1934
1998
|
organizationId: string;
|
|
1935
|
-
/** @description Human-readable name for an
|
|
1999
|
+
/** @description Human-readable name for an organization. */
|
|
1936
2000
|
organizationName: string;
|
|
1937
|
-
/** @description Unique identifier for a given
|
|
2001
|
+
/** @description Unique identifier for a given user. */
|
|
1938
2002
|
userId: string;
|
|
1939
|
-
/** @description Human-readable name for a
|
|
2003
|
+
/** @description Human-readable name for a user. */
|
|
1940
2004
|
username: string;
|
|
1941
2005
|
};
|
|
1942
2006
|
/** @enum {string} */
|
|
@@ -2012,6 +2076,8 @@ export type definitions = {
|
|
|
2012
2076
|
countryCode?: string;
|
|
2013
2077
|
/** @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. */
|
|
2014
2078
|
countrySubdivisionCode?: string;
|
|
2079
|
+
/** @description Optional flag to indicate whether to use the sandbox mode to simulate transactions for the on-ramp provider. Default is false. */
|
|
2080
|
+
sandboxMode?: boolean;
|
|
2015
2081
|
};
|
|
2016
2082
|
v1InitFiatOnRampRequest: {
|
|
2017
2083
|
/** @enum {string} */
|
|
@@ -2280,9 +2346,13 @@ export type definitions = {
|
|
|
2280
2346
|
initFiatOnRampIntent?: definitions["v1InitFiatOnRampIntent"];
|
|
2281
2347
|
createSmartContractInterfaceIntent?: definitions["v1CreateSmartContractInterfaceIntent"];
|
|
2282
2348
|
deleteSmartContractInterfaceIntent?: definitions["v1DeleteSmartContractInterfaceIntent"];
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2349
|
+
enableAuthProxyIntent?: definitions["v1EnableAuthProxyIntent"];
|
|
2350
|
+
disableAuthProxyIntent?: definitions["v1DisableAuthProxyIntent"];
|
|
2351
|
+
updateAuthProxyConfigIntent?: definitions["v1UpdateAuthProxyConfigIntent"];
|
|
2352
|
+
createOauth2CredentialIntent?: definitions["v1CreateOauth2CredentialIntent"];
|
|
2353
|
+
updateOauth2CredentialIntent?: definitions["v1UpdateOauth2CredentialIntent"];
|
|
2354
|
+
deleteOauth2CredentialIntent?: definitions["v1DeleteOauth2CredentialIntent"];
|
|
2355
|
+
oauth2AuthenticateIntent?: definitions["v1Oauth2AuthenticateIntent"];
|
|
2286
2356
|
};
|
|
2287
2357
|
v1Invitation: {
|
|
2288
2358
|
/** @description Unique identifier for a given Invitation object. */
|
|
@@ -2316,20 +2386,27 @@ export type definitions = {
|
|
|
2316
2386
|
};
|
|
2317
2387
|
/** @enum {string} */
|
|
2318
2388
|
v1InvitationStatus: "INVITATION_STATUS_CREATED" | "INVITATION_STATUS_ACCEPTED" | "INVITATION_STATUS_REVOKED";
|
|
2319
|
-
|
|
2389
|
+
v1ListOauth2CredentialsRequest: {
|
|
2320
2390
|
/** @description Unique identifier for a given Organization. */
|
|
2321
2391
|
organizationId: string;
|
|
2322
2392
|
};
|
|
2393
|
+
v1ListOauth2CredentialsResponse: {
|
|
2394
|
+
oauth2Credentials: definitions["v1Oauth2Credential"][];
|
|
2395
|
+
};
|
|
2396
|
+
v1ListPrivateKeyTagsRequest: {
|
|
2397
|
+
/** @description Unique identifier for a given organization. */
|
|
2398
|
+
organizationId: string;
|
|
2399
|
+
};
|
|
2323
2400
|
v1ListPrivateKeyTagsResponse: {
|
|
2324
|
-
/** @description A list of
|
|
2401
|
+
/** @description A list of private key tags. */
|
|
2325
2402
|
privateKeyTags: definitions["datav1Tag"][];
|
|
2326
2403
|
};
|
|
2327
2404
|
v1ListUserTagsRequest: {
|
|
2328
|
-
/** @description Unique identifier for a given
|
|
2405
|
+
/** @description Unique identifier for a given organization. */
|
|
2329
2406
|
organizationId: string;
|
|
2330
2407
|
};
|
|
2331
2408
|
v1ListUserTagsResponse: {
|
|
2332
|
-
/** @description A list of
|
|
2409
|
+
/** @description A list of user tags. */
|
|
2333
2410
|
userTags: definitions["datav1Tag"][];
|
|
2334
2411
|
};
|
|
2335
2412
|
/** @enum {string} */
|
|
@@ -2337,6 +2414,47 @@ export type definitions = {
|
|
|
2337
2414
|
v1NOOPCodegenAnchorResponse: {
|
|
2338
2415
|
stamp: definitions["v1WebAuthnStamp"];
|
|
2339
2416
|
};
|
|
2417
|
+
v1Oauth2AuthenticateIntent: {
|
|
2418
|
+
/** @description The OAuth 2.0 credential id whose client_id and client_secret will be used in the OAuth 2.0 flow */
|
|
2419
|
+
oauth2CredentialId: string;
|
|
2420
|
+
/** @description The auth_code provided by the OAuth 2.0 provider to the end user to be exchanged for a Bearer token in the OAuth 2.0 flow */
|
|
2421
|
+
authCode: string;
|
|
2422
|
+
/** @description The URI the user is redirected to after they have authenticated with the OAuth 2.0 provider */
|
|
2423
|
+
redirectUri: string;
|
|
2424
|
+
/** @description The code verifier used by OAuth 2.0 PKCE providers */
|
|
2425
|
+
codeVerifier: string;
|
|
2426
|
+
/** @description An optional nonce used by the client to prevent replay/substitution of an ID token */
|
|
2427
|
+
nonce?: string;
|
|
2428
|
+
};
|
|
2429
|
+
v1Oauth2AuthenticateRequest: {
|
|
2430
|
+
/** @enum {string} */
|
|
2431
|
+
type: "ACTIVITY_TYPE_OAUTH2_AUTHENTICATE";
|
|
2432
|
+
/** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
|
|
2433
|
+
timestampMs: string;
|
|
2434
|
+
/** @description Unique identifier for a given Organization. */
|
|
2435
|
+
organizationId: string;
|
|
2436
|
+
parameters: definitions["v1Oauth2AuthenticateIntent"];
|
|
2437
|
+
};
|
|
2438
|
+
v1Oauth2AuthenticateResult: {
|
|
2439
|
+
/** @description Base64 encoded OIDC token issued by Turnkey to be used with the LoginWithOAuth activity */
|
|
2440
|
+
oidcToken: string;
|
|
2441
|
+
};
|
|
2442
|
+
v1Oauth2Credential: {
|
|
2443
|
+
/** @description Unique identifier for a given OAuth 2.0 Credential. */
|
|
2444
|
+
oauth2CredentialId: string;
|
|
2445
|
+
/** @description Unique identifier for an Organization. */
|
|
2446
|
+
organizationId: string;
|
|
2447
|
+
/** @description The provider for a given OAuth 2.0 Credential. */
|
|
2448
|
+
provider: definitions["v1Oauth2Provider"];
|
|
2449
|
+
/** @description The client id for a given OAuth 2.0 Credential. */
|
|
2450
|
+
clientId: string;
|
|
2451
|
+
/** @description The encrypted client secret for a given OAuth 2.0 Credential encrypted to the TLS Fetcher quorum key. */
|
|
2452
|
+
encryptedClientSecret: string;
|
|
2453
|
+
createdAt: definitions["externaldatav1Timestamp"];
|
|
2454
|
+
updatedAt: definitions["externaldatav1Timestamp"];
|
|
2455
|
+
};
|
|
2456
|
+
/** @enum {string} */
|
|
2457
|
+
v1Oauth2Provider: "OAUTH2_PROVIDER_X" | "OAUTH2_PROVIDER_DISCORD";
|
|
2340
2458
|
v1OauthIntent: {
|
|
2341
2459
|
/** @description Base64 encoded OIDC token */
|
|
2342
2460
|
oidcToken: string;
|
|
@@ -2478,6 +2596,8 @@ export type definitions = {
|
|
|
2478
2596
|
/** @description Signed JWT containing an expiry, public key, session type, user id, and organization id */
|
|
2479
2597
|
session: string;
|
|
2480
2598
|
};
|
|
2599
|
+
/** @enum {string} */
|
|
2600
|
+
v1Outcome: "OUTCOME_ALLOW" | "OUTCOME_DENY_EXPLICIT" | "OUTCOME_DENY_IMPLICIT" | "OUTCOME_REQUIRES_CONSENSUS" | "OUTCOME_REJECTED" | "OUTCOME_ERROR";
|
|
2481
2601
|
v1Pagination: {
|
|
2482
2602
|
/** @description A limit of the number of object to be returned, between 1 and 100. Defaults to 10. */
|
|
2483
2603
|
limit?: string;
|
|
@@ -2489,7 +2609,7 @@ export type definitions = {
|
|
|
2489
2609
|
/** @enum {string} */
|
|
2490
2610
|
v1PathFormat: "PATH_FORMAT_BIP32";
|
|
2491
2611
|
/** @enum {string} */
|
|
2492
|
-
v1PayloadEncoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8" | "PAYLOAD_ENCODING_EIP712";
|
|
2612
|
+
v1PayloadEncoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8" | "PAYLOAD_ENCODING_EIP712" | "PAYLOAD_ENCODING_EIP7702_AUTHORIZATION";
|
|
2493
2613
|
v1Policy: {
|
|
2494
2614
|
/** @description Unique identifier for a given Policy. */
|
|
2495
2615
|
policyId: string;
|
|
@@ -2540,42 +2660,6 @@ export type definitions = {
|
|
|
2540
2660
|
privateKeyId?: string;
|
|
2541
2661
|
addresses?: definitions["immutableactivityv1Address"][];
|
|
2542
2662
|
};
|
|
2543
|
-
v1ProxyAuthConfig: {
|
|
2544
|
-
organizationId?: string;
|
|
2545
|
-
allowedOrigins?: string[];
|
|
2546
|
-
allowedAuthMethods?: string[];
|
|
2547
|
-
encryptedApiKey?: string;
|
|
2548
|
-
turnkeySignerUserId?: string;
|
|
2549
|
-
sendFromEmailAddress?: string;
|
|
2550
|
-
replyToEmailAddress?: string;
|
|
2551
|
-
emailAuthTemplateId?: string;
|
|
2552
|
-
otpTemplateId?: string;
|
|
2553
|
-
emailCustomizationParams?: string;
|
|
2554
|
-
smsCustomizationParams?: string;
|
|
2555
|
-
/** Format: int32 */
|
|
2556
|
-
otpExpirationSeconds?: number;
|
|
2557
|
-
/** Format: int32 */
|
|
2558
|
-
verificationTokenExpirationSeconds?: number;
|
|
2559
|
-
/** Format: int32 */
|
|
2560
|
-
otpSessionExpirationSeconds?: number;
|
|
2561
|
-
/** Format: int32 */
|
|
2562
|
-
oauthSessionExpirationSeconds?: number;
|
|
2563
|
-
/** Format: int32 */
|
|
2564
|
-
passkeySessionExpirationSeconds?: number;
|
|
2565
|
-
/** Format: int32 */
|
|
2566
|
-
walletSessionExpirationSeconds?: number;
|
|
2567
|
-
/** Format: date-time */
|
|
2568
|
-
createdAt?: string;
|
|
2569
|
-
/** Format: date-time */
|
|
2570
|
-
updatedAt?: string;
|
|
2571
|
-
otpAlphanumeric?: boolean;
|
|
2572
|
-
/** Format: int32 */
|
|
2573
|
-
otpLength?: number;
|
|
2574
|
-
socialLinking?: boolean;
|
|
2575
|
-
policyId?: string;
|
|
2576
|
-
proxyId?: string;
|
|
2577
|
-
ewkSettings?: string;
|
|
2578
|
-
};
|
|
2579
2663
|
v1PublicKeyCredentialWithAttestation: {
|
|
2580
2664
|
id: string;
|
|
2581
2665
|
/** @enum {string} */
|
|
@@ -2715,9 +2799,13 @@ export type definitions = {
|
|
|
2715
2799
|
initFiatOnRampResult?: definitions["v1InitFiatOnRampResult"];
|
|
2716
2800
|
createSmartContractInterfaceResult?: definitions["v1CreateSmartContractInterfaceResult"];
|
|
2717
2801
|
deleteSmartContractInterfaceResult?: definitions["v1DeleteSmartContractInterfaceResult"];
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2802
|
+
enableAuthProxyResult?: definitions["v1EnableAuthProxyResult"];
|
|
2803
|
+
disableAuthProxyResult?: definitions["v1DisableAuthProxyResult"];
|
|
2804
|
+
updateAuthProxyConfigResult?: definitions["v1UpdateAuthProxyConfigResult"];
|
|
2805
|
+
createOauth2CredentialResult?: definitions["v1CreateOauth2CredentialResult"];
|
|
2806
|
+
updateOauth2CredentialResult?: definitions["v1UpdateOauth2CredentialResult"];
|
|
2807
|
+
deleteOauth2CredentialResult?: definitions["v1DeleteOauth2CredentialResult"];
|
|
2808
|
+
oauth2AuthenticateResult?: definitions["v1Oauth2AuthenticateResult"];
|
|
2721
2809
|
};
|
|
2722
2810
|
v1RootUserParams: {
|
|
2723
2811
|
/** @description Human-readable name for a User. */
|
|
@@ -2886,24 +2974,6 @@ export type definitions = {
|
|
|
2886
2974
|
appidExclude?: boolean;
|
|
2887
2975
|
credProps?: definitions["v1CredPropsAuthenticationExtensionsClientOutputs"];
|
|
2888
2976
|
};
|
|
2889
|
-
v1SmartContractInterface: {
|
|
2890
|
-
/** @description The Organization the Smart Contract Interface belongs to. */
|
|
2891
|
-
organizationId: string;
|
|
2892
|
-
/** @description Unique identifier for a given Smart Contract Interface (ABI or IDL). */
|
|
2893
|
-
smartContractInterfaceId: string;
|
|
2894
|
-
/** @description The address corresponding to the Smart Contract or Program. */
|
|
2895
|
-
smartContractAddress: string;
|
|
2896
|
-
/** @description The JSON corresponding to the Smart Contract Interface (ABI or IDL). */
|
|
2897
|
-
smartContractInterface: string;
|
|
2898
|
-
/** @description The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */
|
|
2899
|
-
type: string;
|
|
2900
|
-
/** @description The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */
|
|
2901
|
-
label: string;
|
|
2902
|
-
/** @description The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */
|
|
2903
|
-
notes: string;
|
|
2904
|
-
createdAt: definitions["externaldatav1Timestamp"];
|
|
2905
|
-
updatedAt: definitions["externaldatav1Timestamp"];
|
|
2906
|
-
};
|
|
2907
2977
|
v1SmartContractInterfaceReference: {
|
|
2908
2978
|
smartContractInterfaceId?: string;
|
|
2909
2979
|
smartContractAddress?: string;
|
|
@@ -2939,13 +3009,13 @@ export type definitions = {
|
|
|
2939
3009
|
/** @enum {string} */
|
|
2940
3010
|
v1TagType: "TAG_TYPE_USER" | "TAG_TYPE_PRIVATE_KEY";
|
|
2941
3011
|
v1TestRateLimitsRequest: {
|
|
2942
|
-
/** @description Unique identifier for a given
|
|
3012
|
+
/** @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. */
|
|
2943
3013
|
organizationId: string;
|
|
2944
3014
|
/** @description Whether or not to set a limit on this request. */
|
|
2945
3015
|
isSetLimit: boolean;
|
|
2946
3016
|
/**
|
|
2947
3017
|
* Format: int64
|
|
2948
|
-
* @description Rate limit to set for org, if is_set_limit is set to true
|
|
3018
|
+
* @description Rate limit to set for org, if is_set_limit is set to true.
|
|
2949
3019
|
*/
|
|
2950
3020
|
limit: number;
|
|
2951
3021
|
};
|
|
@@ -2961,6 +3031,79 @@ export type definitions = {
|
|
|
2961
3031
|
v1UpdateAllowedOriginsResult: {
|
|
2962
3032
|
[key: string]: unknown;
|
|
2963
3033
|
};
|
|
3034
|
+
v1UpdateAuthProxyConfigIntent: {
|
|
3035
|
+
/** @description Updated list of allowed origins for CORS. */
|
|
3036
|
+
allowedOrigins?: string[];
|
|
3037
|
+
/** @description Updated list of allowed proxy authentication methods. */
|
|
3038
|
+
allowedAuthMethods?: string[];
|
|
3039
|
+
/** @description Custom 'from' address for auth-related emails. */
|
|
3040
|
+
sendFromEmailAddress?: string;
|
|
3041
|
+
/** @description Custom reply-to address for auth-related emails. */
|
|
3042
|
+
replyToEmailAddress?: string;
|
|
3043
|
+
/** @description Template ID for email-auth messages. */
|
|
3044
|
+
emailAuthTemplateId?: string;
|
|
3045
|
+
/** @description Template ID for OTP SMS messages. */
|
|
3046
|
+
otpTemplateId?: string;
|
|
3047
|
+
/** @description Overrides for auth-related email content. */
|
|
3048
|
+
emailCustomizationParams?: definitions["v1EmailCustomizationParams"];
|
|
3049
|
+
/** @description Overrides for auth-related SMS content. */
|
|
3050
|
+
smsCustomizationParams?: definitions["v1SmsCustomizationParams"];
|
|
3051
|
+
/** @description Overrides for react wallet kit related settings. */
|
|
3052
|
+
walletKitSettings?: definitions["v1WalletKitSettingsParams"];
|
|
3053
|
+
/**
|
|
3054
|
+
* Format: int32
|
|
3055
|
+
* @description OTP code lifetime in seconds.
|
|
3056
|
+
*/
|
|
3057
|
+
otpExpirationSeconds?: number;
|
|
3058
|
+
/**
|
|
3059
|
+
* Format: int32
|
|
3060
|
+
* @description Verification-token lifetime in seconds.
|
|
3061
|
+
*/
|
|
3062
|
+
verificationTokenExpirationSeconds?: number;
|
|
3063
|
+
/**
|
|
3064
|
+
* Format: int32
|
|
3065
|
+
* @description Session lifetime in seconds.
|
|
3066
|
+
*/
|
|
3067
|
+
sessionExpirationSeconds?: number;
|
|
3068
|
+
/** @description Enable alphanumeric OTP codes. */
|
|
3069
|
+
otpAlphanumeric?: boolean;
|
|
3070
|
+
/**
|
|
3071
|
+
* Format: int32
|
|
3072
|
+
* @description Desired OTP code length (6–9).
|
|
3073
|
+
*/
|
|
3074
|
+
otpLength?: number;
|
|
3075
|
+
/** @description A map of OAuth 2.0 provider and their respective credential ID to use for the OAuth 2.0 authentication flow. */
|
|
3076
|
+
oauth2ProviderCredentialIds?: {
|
|
3077
|
+
[key: string]: string;
|
|
3078
|
+
};
|
|
3079
|
+
};
|
|
3080
|
+
v1UpdateAuthProxyConfigResult: {
|
|
3081
|
+
/** @description Unique identifier for a given User. (representing the turnkey signer user id) */
|
|
3082
|
+
configId?: string;
|
|
3083
|
+
};
|
|
3084
|
+
v1UpdateOauth2CredentialIntent: {
|
|
3085
|
+
/** @description The ID of the OAuth 2.0 credential to update */
|
|
3086
|
+
oauth2CredentialId: string;
|
|
3087
|
+
/** @description The OAuth 2.0 provider */
|
|
3088
|
+
provider: definitions["v1Oauth2Provider"];
|
|
3089
|
+
/** @description The Client ID issued by the OAuth 2.0 provider */
|
|
3090
|
+
clientId: string;
|
|
3091
|
+
/** @description The client secret issued by the OAuth 2.0 provider encrypted to the TLS Fetcher quorum key */
|
|
3092
|
+
encryptedClientSecret: string;
|
|
3093
|
+
};
|
|
3094
|
+
v1UpdateOauth2CredentialRequest: {
|
|
3095
|
+
/** @enum {string} */
|
|
3096
|
+
type: "ACTIVITY_TYPE_UPDATE_OAUTH2_CREDENTIAL";
|
|
3097
|
+
/** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
|
|
3098
|
+
timestampMs: string;
|
|
3099
|
+
/** @description Unique identifier for a given Organization. */
|
|
3100
|
+
organizationId: string;
|
|
3101
|
+
parameters: definitions["v1UpdateOauth2CredentialIntent"];
|
|
3102
|
+
};
|
|
3103
|
+
v1UpdateOauth2CredentialResult: {
|
|
3104
|
+
/** @description Unique identifier of the OAuth 2.0 credential that was updated */
|
|
3105
|
+
oauth2CredentialId: string;
|
|
3106
|
+
};
|
|
2964
3107
|
v1UpdatePolicyIntent: {
|
|
2965
3108
|
/** @description Unique identifier for a given Policy. */
|
|
2966
3109
|
policyId: string;
|
|
@@ -3029,77 +3172,6 @@ export type definitions = {
|
|
|
3029
3172
|
/** @description Unique identifier for a given Private Key Tag. */
|
|
3030
3173
|
privateKeyTagId: string;
|
|
3031
3174
|
};
|
|
3032
|
-
v1UpdateProxyAuthConfigIntent: {
|
|
3033
|
-
/** @description Updated list of allowed origins for CORS. */
|
|
3034
|
-
allowedOrigins?: string[];
|
|
3035
|
-
/** @description Updated list of allowed origins for CORS. */
|
|
3036
|
-
allowedAuthMethods?: string[];
|
|
3037
|
-
/** @description Custom 'from' address for auth-related emails. */
|
|
3038
|
-
sendFromEmailAddress?: string;
|
|
3039
|
-
/** @description Custom reply-to address for auth-related emails. */
|
|
3040
|
-
replyToEmailAddress?: string;
|
|
3041
|
-
/** @description Template ID for email-auth messages. */
|
|
3042
|
-
emailAuthTemplateId?: string;
|
|
3043
|
-
/** @description Template ID for OTP SMS messages. */
|
|
3044
|
-
otpTemplateId?: string;
|
|
3045
|
-
/** @description Overrides for auth-related email content. */
|
|
3046
|
-
emailCustomizationParams?: definitions["v1EmailCustomizationParams"];
|
|
3047
|
-
/** @description Overrides for auth-related SMS content. */
|
|
3048
|
-
smsCustomizationParams?: definitions["v1SmsCustomizationParams"];
|
|
3049
|
-
/** @description Overrides for EWK related settings. */
|
|
3050
|
-
ewkSettings?: definitions["v1EwkSettingsParams"];
|
|
3051
|
-
/**
|
|
3052
|
-
* Format: int32
|
|
3053
|
-
* @description OTP code lifetime in seconds.
|
|
3054
|
-
*/
|
|
3055
|
-
otpExpirationSeconds?: number;
|
|
3056
|
-
/**
|
|
3057
|
-
* Format: int32
|
|
3058
|
-
* @description Verification-token lifetime in seconds.
|
|
3059
|
-
*/
|
|
3060
|
-
verificationTokenExpirationSeconds?: number;
|
|
3061
|
-
/**
|
|
3062
|
-
* Format: int32
|
|
3063
|
-
* @description OTP session lifetime in seconds.
|
|
3064
|
-
*/
|
|
3065
|
-
otpSessionExpirationSeconds?: number;
|
|
3066
|
-
/**
|
|
3067
|
-
* Format: int32
|
|
3068
|
-
* @description Passkey session lifetime in seconds.
|
|
3069
|
-
*/
|
|
3070
|
-
passkeySessionExpirationSeconds?: number;
|
|
3071
|
-
/**
|
|
3072
|
-
* Format: int32
|
|
3073
|
-
* @description Wallet session lifetime in seconds.
|
|
3074
|
-
*/
|
|
3075
|
-
walletSessionExpirationSeconds?: number;
|
|
3076
|
-
/**
|
|
3077
|
-
* Format: int32
|
|
3078
|
-
* @description OAuth session lifetime in seconds.
|
|
3079
|
-
*/
|
|
3080
|
-
oauthSessionExpirationSeconds?: number;
|
|
3081
|
-
/** @description Enable alphanumeric OTP codes. */
|
|
3082
|
-
otpAlphanumeric?: boolean;
|
|
3083
|
-
/**
|
|
3084
|
-
* Format: int32
|
|
3085
|
-
* @description Desired OTP code length (6–9).
|
|
3086
|
-
*/
|
|
3087
|
-
otpLength?: number;
|
|
3088
|
-
/** @description Enable social linking (userEmail <-> gmail) */
|
|
3089
|
-
socialLinking?: boolean;
|
|
3090
|
-
};
|
|
3091
|
-
v1UpdateProxyAuthConfigRequest: {
|
|
3092
|
-
/** @enum {string} */
|
|
3093
|
-
type: "ACTIVITY_TYPE_UPDATE_PROXY_AUTH_CONFIG";
|
|
3094
|
-
/** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
|
|
3095
|
-
timestampMs: string;
|
|
3096
|
-
/** @description Unique identifier for a given Organization. */
|
|
3097
|
-
organizationId: string;
|
|
3098
|
-
parameters: definitions["v1UpdateProxyAuthConfigIntent"];
|
|
3099
|
-
};
|
|
3100
|
-
v1UpdateProxyAuthConfigResult: {
|
|
3101
|
-
[key: string]: unknown;
|
|
3102
|
-
};
|
|
3103
3175
|
v1UpdateRootQuorumIntent: {
|
|
3104
3176
|
/**
|
|
3105
3177
|
* Format: int32
|
|
@@ -3386,6 +3458,8 @@ export type definitions = {
|
|
|
3386
3458
|
updatedAt: definitions["externaldatav1Timestamp"];
|
|
3387
3459
|
/** @description The public component of this wallet account's underlying cryptographic key pair. */
|
|
3388
3460
|
publicKey?: string;
|
|
3461
|
+
/** @description Wallet details for this account. This is only present when include_wallet_details=true. */
|
|
3462
|
+
walletDetails?: definitions["v1Wallet"];
|
|
3389
3463
|
};
|
|
3390
3464
|
v1WalletAccountParams: {
|
|
3391
3465
|
/** @description Cryptographic curve used to generate a wallet Account. */
|
|
@@ -3397,6 +3471,13 @@ export type definitions = {
|
|
|
3397
3471
|
/** @description Address format used to generate a wallet Acccount. */
|
|
3398
3472
|
addressFormat: definitions["v1AddressFormat"];
|
|
3399
3473
|
};
|
|
3474
|
+
v1WalletKitSettingsParams: {
|
|
3475
|
+
/**
|
|
3476
|
+
* Enabled Social Providers
|
|
3477
|
+
* @description List of enabled social login providers (e.g., 'apple', 'google', 'facebook')
|
|
3478
|
+
*/
|
|
3479
|
+
enabledSocialProviders?: string[];
|
|
3480
|
+
};
|
|
3400
3481
|
v1WalletParams: {
|
|
3401
3482
|
/** @description Human-readable name for a Wallet. */
|
|
3402
3483
|
walletName: string;
|
|
@@ -3425,7 +3506,7 @@ export type definitions = {
|
|
|
3425
3506
|
};
|
|
3426
3507
|
};
|
|
3427
3508
|
export type operations = {
|
|
3428
|
-
/** Get details about an
|
|
3509
|
+
/** Get details about an activity. */
|
|
3429
3510
|
PublicApiService_GetActivity: {
|
|
3430
3511
|
parameters: {
|
|
3431
3512
|
body: {
|
|
@@ -3443,7 +3524,7 @@ export type operations = {
|
|
|
3443
3524
|
};
|
|
3444
3525
|
};
|
|
3445
3526
|
};
|
|
3446
|
-
/** Get details about an API key */
|
|
3527
|
+
/** Get details about an API key. */
|
|
3447
3528
|
PublicApiService_GetApiKey: {
|
|
3448
3529
|
parameters: {
|
|
3449
3530
|
body: {
|
|
@@ -3461,7 +3542,7 @@ export type operations = {
|
|
|
3461
3542
|
};
|
|
3462
3543
|
};
|
|
3463
3544
|
};
|
|
3464
|
-
/** Get details about API keys for a user */
|
|
3545
|
+
/** Get details about API keys for a user. */
|
|
3465
3546
|
PublicApiService_GetApiKeys: {
|
|
3466
3547
|
parameters: {
|
|
3467
3548
|
body: {
|
|
@@ -3497,7 +3578,7 @@ export type operations = {
|
|
|
3497
3578
|
};
|
|
3498
3579
|
};
|
|
3499
3580
|
};
|
|
3500
|
-
/** Get details about an authenticator */
|
|
3581
|
+
/** Get details about an authenticator. */
|
|
3501
3582
|
PublicApiService_GetAuthenticator: {
|
|
3502
3583
|
parameters: {
|
|
3503
3584
|
body: {
|
|
@@ -3515,7 +3596,7 @@ export type operations = {
|
|
|
3515
3596
|
};
|
|
3516
3597
|
};
|
|
3517
3598
|
};
|
|
3518
|
-
/** Get details about authenticators for a user */
|
|
3599
|
+
/** Get details about authenticators for a user. */
|
|
3519
3600
|
PublicApiService_GetAuthenticators: {
|
|
3520
3601
|
parameters: {
|
|
3521
3602
|
body: {
|
|
@@ -3533,7 +3614,25 @@ export type operations = {
|
|
|
3533
3614
|
};
|
|
3534
3615
|
};
|
|
3535
3616
|
};
|
|
3536
|
-
/** Get details about
|
|
3617
|
+
/** Get details about an OAuth 2.0 credential. */
|
|
3618
|
+
PublicApiService_GetOauth2Credential: {
|
|
3619
|
+
parameters: {
|
|
3620
|
+
body: {
|
|
3621
|
+
body: definitions["v1GetOauth2CredentialRequest"];
|
|
3622
|
+
};
|
|
3623
|
+
};
|
|
3624
|
+
responses: {
|
|
3625
|
+
/** A successful response. */
|
|
3626
|
+
200: {
|
|
3627
|
+
schema: definitions["v1GetOauth2CredentialResponse"];
|
|
3628
|
+
};
|
|
3629
|
+
/** An unexpected error response. */
|
|
3630
|
+
default: {
|
|
3631
|
+
schema: definitions["rpcStatus"];
|
|
3632
|
+
};
|
|
3633
|
+
};
|
|
3634
|
+
};
|
|
3635
|
+
/** Get details about Oauth providers for a user. */
|
|
3537
3636
|
PublicApiService_GetOauthProviders: {
|
|
3538
3637
|
parameters: {
|
|
3539
3638
|
body: {
|
|
@@ -3551,7 +3650,7 @@ export type operations = {
|
|
|
3551
3650
|
};
|
|
3552
3651
|
};
|
|
3553
3652
|
};
|
|
3554
|
-
/** Get details about an
|
|
3653
|
+
/** Get details about an organization. */
|
|
3555
3654
|
PublicApiService_GetOrganization: {
|
|
3556
3655
|
parameters: {
|
|
3557
3656
|
body: {
|
|
@@ -3569,7 +3668,7 @@ export type operations = {
|
|
|
3569
3668
|
};
|
|
3570
3669
|
};
|
|
3571
3670
|
};
|
|
3572
|
-
/** Get quorum settings and features for an organization */
|
|
3671
|
+
/** Get quorum settings and features for an organization. */
|
|
3573
3672
|
PublicApiService_GetOrganizationConfigs: {
|
|
3574
3673
|
parameters: {
|
|
3575
3674
|
body: {
|
|
@@ -3587,7 +3686,7 @@ export type operations = {
|
|
|
3587
3686
|
};
|
|
3588
3687
|
};
|
|
3589
3688
|
};
|
|
3590
|
-
/** Get details about a
|
|
3689
|
+
/** Get details about a policy. */
|
|
3591
3690
|
PublicApiService_GetPolicy: {
|
|
3592
3691
|
parameters: {
|
|
3593
3692
|
body: {
|
|
@@ -3605,17 +3704,17 @@ export type operations = {
|
|
|
3605
3704
|
};
|
|
3606
3705
|
};
|
|
3607
3706
|
};
|
|
3608
|
-
/** Get
|
|
3609
|
-
|
|
3707
|
+
/** Get the policy evaluations for an activity. */
|
|
3708
|
+
PublicApiService_GetPolicyEvaluations: {
|
|
3610
3709
|
parameters: {
|
|
3611
3710
|
body: {
|
|
3612
|
-
body: definitions["
|
|
3711
|
+
body: definitions["v1GetPolicyEvaluationsRequest"];
|
|
3613
3712
|
};
|
|
3614
3713
|
};
|
|
3615
3714
|
responses: {
|
|
3616
3715
|
/** A successful response. */
|
|
3617
3716
|
200: {
|
|
3618
|
-
schema: definitions["
|
|
3717
|
+
schema: definitions["v1GetPolicyEvaluationsResponse"];
|
|
3619
3718
|
};
|
|
3620
3719
|
/** An unexpected error response. */
|
|
3621
3720
|
default: {
|
|
@@ -3623,17 +3722,17 @@ export type operations = {
|
|
|
3623
3722
|
};
|
|
3624
3723
|
};
|
|
3625
3724
|
};
|
|
3626
|
-
/** Get
|
|
3627
|
-
|
|
3725
|
+
/** Get details about a private key. */
|
|
3726
|
+
PublicApiService_GetPrivateKey: {
|
|
3628
3727
|
parameters: {
|
|
3629
3728
|
body: {
|
|
3630
|
-
body: definitions["
|
|
3729
|
+
body: definitions["v1GetPrivateKeyRequest"];
|
|
3631
3730
|
};
|
|
3632
3731
|
};
|
|
3633
3732
|
responses: {
|
|
3634
3733
|
/** A successful response. */
|
|
3635
3734
|
200: {
|
|
3636
|
-
schema: definitions["
|
|
3735
|
+
schema: definitions["v1GetPrivateKeyResponse"];
|
|
3637
3736
|
};
|
|
3638
3737
|
/** An unexpected error response. */
|
|
3639
3738
|
default: {
|
|
@@ -3641,7 +3740,7 @@ export type operations = {
|
|
|
3641
3740
|
};
|
|
3642
3741
|
};
|
|
3643
3742
|
};
|
|
3644
|
-
/** Get details about a
|
|
3743
|
+
/** Get details about a smart contract interface. */
|
|
3645
3744
|
PublicApiService_GetSmartContractInterface: {
|
|
3646
3745
|
parameters: {
|
|
3647
3746
|
body: {
|
|
@@ -3659,7 +3758,7 @@ export type operations = {
|
|
|
3659
3758
|
};
|
|
3660
3759
|
};
|
|
3661
3760
|
};
|
|
3662
|
-
/** Get details about a
|
|
3761
|
+
/** Get details about a user. */
|
|
3663
3762
|
PublicApiService_GetUser: {
|
|
3664
3763
|
parameters: {
|
|
3665
3764
|
body: {
|
|
@@ -3677,7 +3776,7 @@ export type operations = {
|
|
|
3677
3776
|
};
|
|
3678
3777
|
};
|
|
3679
3778
|
};
|
|
3680
|
-
/** Get details about a
|
|
3779
|
+
/** Get details about a wallet. */
|
|
3681
3780
|
PublicApiService_GetWallet: {
|
|
3682
3781
|
parameters: {
|
|
3683
3782
|
body: {
|
|
@@ -3695,7 +3794,7 @@ export type operations = {
|
|
|
3695
3794
|
};
|
|
3696
3795
|
};
|
|
3697
3796
|
};
|
|
3698
|
-
/** Get a single wallet account */
|
|
3797
|
+
/** Get a single wallet account. */
|
|
3699
3798
|
PublicApiService_GetWalletAccount: {
|
|
3700
3799
|
parameters: {
|
|
3701
3800
|
body: {
|
|
@@ -3713,7 +3812,7 @@ export type operations = {
|
|
|
3713
3812
|
};
|
|
3714
3813
|
};
|
|
3715
3814
|
};
|
|
3716
|
-
/** List all
|
|
3815
|
+
/** List all activities within an organization. */
|
|
3717
3816
|
PublicApiService_GetActivities: {
|
|
3718
3817
|
parameters: {
|
|
3719
3818
|
body: {
|
|
@@ -3731,7 +3830,25 @@ export type operations = {
|
|
|
3731
3830
|
};
|
|
3732
3831
|
};
|
|
3733
3832
|
};
|
|
3734
|
-
/** List all
|
|
3833
|
+
/** List all OAuth 2.0 credentials within an organization. */
|
|
3834
|
+
PublicApiService_ListOauth2Credentials: {
|
|
3835
|
+
parameters: {
|
|
3836
|
+
body: {
|
|
3837
|
+
body: definitions["v1ListOauth2CredentialsRequest"];
|
|
3838
|
+
};
|
|
3839
|
+
};
|
|
3840
|
+
responses: {
|
|
3841
|
+
/** A successful response. */
|
|
3842
|
+
200: {
|
|
3843
|
+
schema: definitions["v1ListOauth2CredentialsResponse"];
|
|
3844
|
+
};
|
|
3845
|
+
/** An unexpected error response. */
|
|
3846
|
+
default: {
|
|
3847
|
+
schema: definitions["rpcStatus"];
|
|
3848
|
+
};
|
|
3849
|
+
};
|
|
3850
|
+
};
|
|
3851
|
+
/** List all policies within an organization. */
|
|
3735
3852
|
PublicApiService_GetPolicies: {
|
|
3736
3853
|
parameters: {
|
|
3737
3854
|
body: {
|
|
@@ -3749,7 +3866,7 @@ export type operations = {
|
|
|
3749
3866
|
};
|
|
3750
3867
|
};
|
|
3751
3868
|
};
|
|
3752
|
-
/** List all
|
|
3869
|
+
/** List all private key tags within an organization. */
|
|
3753
3870
|
PublicApiService_ListPrivateKeyTags: {
|
|
3754
3871
|
parameters: {
|
|
3755
3872
|
body: {
|
|
@@ -3767,7 +3884,7 @@ export type operations = {
|
|
|
3767
3884
|
};
|
|
3768
3885
|
};
|
|
3769
3886
|
};
|
|
3770
|
-
/** List all
|
|
3887
|
+
/** List all private keys within an organization. */
|
|
3771
3888
|
PublicApiService_GetPrivateKeys: {
|
|
3772
3889
|
parameters: {
|
|
3773
3890
|
body: {
|
|
@@ -3785,7 +3902,7 @@ export type operations = {
|
|
|
3785
3902
|
};
|
|
3786
3903
|
};
|
|
3787
3904
|
};
|
|
3788
|
-
/** List all
|
|
3905
|
+
/** List all smart contract interfaces within an organization. */
|
|
3789
3906
|
PublicApiService_GetSmartContractInterfaces: {
|
|
3790
3907
|
parameters: {
|
|
3791
3908
|
body: {
|
|
@@ -3821,7 +3938,7 @@ export type operations = {
|
|
|
3821
3938
|
};
|
|
3822
3939
|
};
|
|
3823
3940
|
};
|
|
3824
|
-
/** List all
|
|
3941
|
+
/** List all user tags within an organization. */
|
|
3825
3942
|
PublicApiService_ListUserTags: {
|
|
3826
3943
|
parameters: {
|
|
3827
3944
|
body: {
|
|
@@ -3839,7 +3956,7 @@ export type operations = {
|
|
|
3839
3956
|
};
|
|
3840
3957
|
};
|
|
3841
3958
|
};
|
|
3842
|
-
/** List all
|
|
3959
|
+
/** List all users within an organization. */
|
|
3843
3960
|
PublicApiService_GetUsers: {
|
|
3844
3961
|
parameters: {
|
|
3845
3962
|
body: {
|
|
@@ -3875,7 +3992,7 @@ export type operations = {
|
|
|
3875
3992
|
};
|
|
3876
3993
|
};
|
|
3877
3994
|
};
|
|
3878
|
-
/** List all
|
|
3995
|
+
/** List all accounts within a wallet. */
|
|
3879
3996
|
PublicApiService_GetWalletAccounts: {
|
|
3880
3997
|
parameters: {
|
|
3881
3998
|
body: {
|
|
@@ -3893,7 +4010,7 @@ export type operations = {
|
|
|
3893
4010
|
};
|
|
3894
4011
|
};
|
|
3895
4012
|
};
|
|
3896
|
-
/** List all
|
|
4013
|
+
/** List all wallets within an organization. */
|
|
3897
4014
|
PublicApiService_GetWallets: {
|
|
3898
4015
|
parameters: {
|
|
3899
4016
|
body: {
|
|
@@ -3911,7 +4028,7 @@ export type operations = {
|
|
|
3911
4028
|
};
|
|
3912
4029
|
};
|
|
3913
4030
|
};
|
|
3914
|
-
/** Get basic information about your current API or WebAuthN user and their organization. Affords
|
|
4031
|
+
/** 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. */
|
|
3915
4032
|
PublicApiService_GetWhoami: {
|
|
3916
4033
|
parameters: {
|
|
3917
4034
|
body: {
|
|
@@ -3929,7 +4046,7 @@ export type operations = {
|
|
|
3929
4046
|
};
|
|
3930
4047
|
};
|
|
3931
4048
|
};
|
|
3932
|
-
/** Approve an
|
|
4049
|
+
/** Approve an activity. */
|
|
3933
4050
|
PublicApiService_ApproveActivity: {
|
|
3934
4051
|
parameters: {
|
|
3935
4052
|
body: {
|
|
@@ -3947,7 +4064,7 @@ export type operations = {
|
|
|
3947
4064
|
};
|
|
3948
4065
|
};
|
|
3949
4066
|
};
|
|
3950
|
-
/** Add
|
|
4067
|
+
/** Add API keys to an existing user. */
|
|
3951
4068
|
PublicApiService_CreateApiKeys: {
|
|
3952
4069
|
parameters: {
|
|
3953
4070
|
body: {
|
|
@@ -3965,7 +4082,7 @@ export type operations = {
|
|
|
3965
4082
|
};
|
|
3966
4083
|
};
|
|
3967
4084
|
};
|
|
3968
|
-
/** Create API-only
|
|
4085
|
+
/** Create API-only users in an existing organization. */
|
|
3969
4086
|
PublicApiService_CreateApiOnlyUsers: {
|
|
3970
4087
|
parameters: {
|
|
3971
4088
|
body: {
|
|
@@ -3983,7 +4100,7 @@ export type operations = {
|
|
|
3983
4100
|
};
|
|
3984
4101
|
};
|
|
3985
4102
|
};
|
|
3986
|
-
/** Create
|
|
4103
|
+
/** Create authenticators to authenticate requests to Turnkey. */
|
|
3987
4104
|
PublicApiService_CreateAuthenticators: {
|
|
3988
4105
|
parameters: {
|
|
3989
4106
|
body: {
|
|
@@ -4001,7 +4118,7 @@ export type operations = {
|
|
|
4001
4118
|
};
|
|
4002
4119
|
};
|
|
4003
4120
|
};
|
|
4004
|
-
/** Create
|
|
4121
|
+
/** Create invitations to join an existing organization. */
|
|
4005
4122
|
PublicApiService_CreateInvitations: {
|
|
4006
4123
|
parameters: {
|
|
4007
4124
|
body: {
|
|
@@ -4019,7 +4136,25 @@ export type operations = {
|
|
|
4019
4136
|
};
|
|
4020
4137
|
};
|
|
4021
4138
|
};
|
|
4022
|
-
/**
|
|
4139
|
+
/** Enable authentication for end users with an OAuth 2.0 provider */
|
|
4140
|
+
PublicApiService_CreateOauth2Credential: {
|
|
4141
|
+
parameters: {
|
|
4142
|
+
body: {
|
|
4143
|
+
body: definitions["v1CreateOauth2CredentialRequest"];
|
|
4144
|
+
};
|
|
4145
|
+
};
|
|
4146
|
+
responses: {
|
|
4147
|
+
/** A successful response. */
|
|
4148
|
+
200: {
|
|
4149
|
+
schema: definitions["v1ActivityResponse"];
|
|
4150
|
+
};
|
|
4151
|
+
/** An unexpected error response. */
|
|
4152
|
+
default: {
|
|
4153
|
+
schema: definitions["rpcStatus"];
|
|
4154
|
+
};
|
|
4155
|
+
};
|
|
4156
|
+
};
|
|
4157
|
+
/** Create Oauth providers for a specified user. */
|
|
4023
4158
|
PublicApiService_CreateOauthProviders: {
|
|
4024
4159
|
parameters: {
|
|
4025
4160
|
body: {
|
|
@@ -4037,7 +4172,7 @@ export type operations = {
|
|
|
4037
4172
|
};
|
|
4038
4173
|
};
|
|
4039
4174
|
};
|
|
4040
|
-
/** Create new
|
|
4175
|
+
/** Create new policies. */
|
|
4041
4176
|
PublicApiService_CreatePolicies: {
|
|
4042
4177
|
parameters: {
|
|
4043
4178
|
body: {
|
|
@@ -4055,7 +4190,7 @@ export type operations = {
|
|
|
4055
4190
|
};
|
|
4056
4191
|
};
|
|
4057
4192
|
};
|
|
4058
|
-
/** Create a new
|
|
4193
|
+
/** Create a new policy. */
|
|
4059
4194
|
PublicApiService_CreatePolicy: {
|
|
4060
4195
|
parameters: {
|
|
4061
4196
|
body: {
|
|
@@ -4091,7 +4226,7 @@ export type operations = {
|
|
|
4091
4226
|
};
|
|
4092
4227
|
};
|
|
4093
4228
|
};
|
|
4094
|
-
/** Create new
|
|
4229
|
+
/** Create new private keys. */
|
|
4095
4230
|
PublicApiService_CreatePrivateKeys: {
|
|
4096
4231
|
parameters: {
|
|
4097
4232
|
body: {
|
|
@@ -4109,7 +4244,7 @@ export type operations = {
|
|
|
4109
4244
|
};
|
|
4110
4245
|
};
|
|
4111
4246
|
};
|
|
4112
|
-
/** Create a read only session for a user (valid for 1 hour) */
|
|
4247
|
+
/** Create a read only session for a user (valid for 1 hour). */
|
|
4113
4248
|
PublicApiService_CreateReadOnlySession: {
|
|
4114
4249
|
parameters: {
|
|
4115
4250
|
body: {
|
|
@@ -4127,7 +4262,7 @@ export type operations = {
|
|
|
4127
4262
|
};
|
|
4128
4263
|
};
|
|
4129
4264
|
};
|
|
4130
|
-
/** Create a read write session for a user */
|
|
4265
|
+
/** Create a read write session for a user. */
|
|
4131
4266
|
PublicApiService_CreateReadWriteSession: {
|
|
4132
4267
|
parameters: {
|
|
4133
4268
|
body: {
|
|
@@ -4145,7 +4280,7 @@ export type operations = {
|
|
|
4145
4280
|
};
|
|
4146
4281
|
};
|
|
4147
4282
|
};
|
|
4148
|
-
/** Create an ABI/IDL in JSON */
|
|
4283
|
+
/** Create an ABI/IDL in JSON. */
|
|
4149
4284
|
PublicApiService_CreateSmartContractInterface: {
|
|
4150
4285
|
parameters: {
|
|
4151
4286
|
body: {
|
|
@@ -4163,7 +4298,7 @@ export type operations = {
|
|
|
4163
4298
|
};
|
|
4164
4299
|
};
|
|
4165
4300
|
};
|
|
4166
|
-
/** Create a new
|
|
4301
|
+
/** Create a new sub-organization. */
|
|
4167
4302
|
PublicApiService_CreateSubOrganization: {
|
|
4168
4303
|
parameters: {
|
|
4169
4304
|
body: {
|
|
@@ -4199,7 +4334,7 @@ export type operations = {
|
|
|
4199
4334
|
};
|
|
4200
4335
|
};
|
|
4201
4336
|
};
|
|
4202
|
-
/** Create
|
|
4337
|
+
/** Create users in an existing organization. */
|
|
4203
4338
|
PublicApiService_CreateUsers: {
|
|
4204
4339
|
parameters: {
|
|
4205
4340
|
body: {
|
|
@@ -4217,7 +4352,7 @@ export type operations = {
|
|
|
4217
4352
|
};
|
|
4218
4353
|
};
|
|
4219
4354
|
};
|
|
4220
|
-
/** Create a
|
|
4355
|
+
/** Create a wallet and derive addresses. */
|
|
4221
4356
|
PublicApiService_CreateWallet: {
|
|
4222
4357
|
parameters: {
|
|
4223
4358
|
body: {
|
|
@@ -4235,7 +4370,7 @@ export type operations = {
|
|
|
4235
4370
|
};
|
|
4236
4371
|
};
|
|
4237
4372
|
};
|
|
4238
|
-
/** Derive additional addresses using an existing wallet */
|
|
4373
|
+
/** Derive additional addresses using an existing wallet. */
|
|
4239
4374
|
PublicApiService_CreateWalletAccounts: {
|
|
4240
4375
|
parameters: {
|
|
4241
4376
|
body: {
|
|
@@ -4253,7 +4388,7 @@ export type operations = {
|
|
|
4253
4388
|
};
|
|
4254
4389
|
};
|
|
4255
4390
|
};
|
|
4256
|
-
/** Remove api keys from a
|
|
4391
|
+
/** Remove api keys from a user. */
|
|
4257
4392
|
PublicApiService_DeleteApiKeys: {
|
|
4258
4393
|
parameters: {
|
|
4259
4394
|
body: {
|
|
@@ -4271,7 +4406,7 @@ export type operations = {
|
|
|
4271
4406
|
};
|
|
4272
4407
|
};
|
|
4273
4408
|
};
|
|
4274
|
-
/** Remove authenticators from a
|
|
4409
|
+
/** Remove authenticators from a user. */
|
|
4275
4410
|
PublicApiService_DeleteAuthenticators: {
|
|
4276
4411
|
parameters: {
|
|
4277
4412
|
body: {
|
|
@@ -4289,7 +4424,7 @@ export type operations = {
|
|
|
4289
4424
|
};
|
|
4290
4425
|
};
|
|
4291
4426
|
};
|
|
4292
|
-
/** Delete an existing
|
|
4427
|
+
/** Delete an existing invitation. */
|
|
4293
4428
|
PublicApiService_DeleteInvitation: {
|
|
4294
4429
|
parameters: {
|
|
4295
4430
|
body: {
|
|
@@ -4307,7 +4442,25 @@ export type operations = {
|
|
|
4307
4442
|
};
|
|
4308
4443
|
};
|
|
4309
4444
|
};
|
|
4310
|
-
/**
|
|
4445
|
+
/** Disable authentication for end users with an OAuth 2.0 provider */
|
|
4446
|
+
PublicApiService_DeleteOauth2Credential: {
|
|
4447
|
+
parameters: {
|
|
4448
|
+
body: {
|
|
4449
|
+
body: definitions["v1DeleteOauth2CredentialRequest"];
|
|
4450
|
+
};
|
|
4451
|
+
};
|
|
4452
|
+
responses: {
|
|
4453
|
+
/** A successful response. */
|
|
4454
|
+
200: {
|
|
4455
|
+
schema: definitions["v1ActivityResponse"];
|
|
4456
|
+
};
|
|
4457
|
+
/** An unexpected error response. */
|
|
4458
|
+
default: {
|
|
4459
|
+
schema: definitions["rpcStatus"];
|
|
4460
|
+
};
|
|
4461
|
+
};
|
|
4462
|
+
};
|
|
4463
|
+
/** Remove Oauth providers for a specified user. */
|
|
4311
4464
|
PublicApiService_DeleteOauthProviders: {
|
|
4312
4465
|
parameters: {
|
|
4313
4466
|
body: {
|
|
@@ -4325,7 +4478,7 @@ export type operations = {
|
|
|
4325
4478
|
};
|
|
4326
4479
|
};
|
|
4327
4480
|
};
|
|
4328
|
-
/** Delete an existing
|
|
4481
|
+
/** Delete an existing policy. */
|
|
4329
4482
|
PublicApiService_DeletePolicy: {
|
|
4330
4483
|
parameters: {
|
|
4331
4484
|
body: {
|
|
@@ -4343,7 +4496,7 @@ export type operations = {
|
|
|
4343
4496
|
};
|
|
4344
4497
|
};
|
|
4345
4498
|
};
|
|
4346
|
-
/** Delete
|
|
4499
|
+
/** Delete private key tags within an organization. */
|
|
4347
4500
|
PublicApiService_DeletePrivateKeyTags: {
|
|
4348
4501
|
parameters: {
|
|
4349
4502
|
body: {
|
|
@@ -4361,7 +4514,7 @@ export type operations = {
|
|
|
4361
4514
|
};
|
|
4362
4515
|
};
|
|
4363
4516
|
};
|
|
4364
|
-
/**
|
|
4517
|
+
/** Delete private keys for an organization. */
|
|
4365
4518
|
PublicApiService_DeletePrivateKeys: {
|
|
4366
4519
|
parameters: {
|
|
4367
4520
|
body: {
|
|
@@ -4379,7 +4532,7 @@ export type operations = {
|
|
|
4379
4532
|
};
|
|
4380
4533
|
};
|
|
4381
4534
|
};
|
|
4382
|
-
/** Delete a
|
|
4535
|
+
/** Delete a smart contract interface. */
|
|
4383
4536
|
PublicApiService_DeleteSmartContractInterface: {
|
|
4384
4537
|
parameters: {
|
|
4385
4538
|
body: {
|
|
@@ -4397,7 +4550,7 @@ export type operations = {
|
|
|
4397
4550
|
};
|
|
4398
4551
|
};
|
|
4399
4552
|
};
|
|
4400
|
-
/**
|
|
4553
|
+
/** Delete a sub-organization. */
|
|
4401
4554
|
PublicApiService_DeleteSubOrganization: {
|
|
4402
4555
|
parameters: {
|
|
4403
4556
|
body: {
|
|
@@ -4415,7 +4568,7 @@ export type operations = {
|
|
|
4415
4568
|
};
|
|
4416
4569
|
};
|
|
4417
4570
|
};
|
|
4418
|
-
/** Delete
|
|
4571
|
+
/** Delete user tags within an organization. */
|
|
4419
4572
|
PublicApiService_DeleteUserTags: {
|
|
4420
4573
|
parameters: {
|
|
4421
4574
|
body: {
|
|
@@ -4433,7 +4586,7 @@ export type operations = {
|
|
|
4433
4586
|
};
|
|
4434
4587
|
};
|
|
4435
4588
|
};
|
|
4436
|
-
/** Delete
|
|
4589
|
+
/** Delete users within an organization. */
|
|
4437
4590
|
PublicApiService_DeleteUsers: {
|
|
4438
4591
|
parameters: {
|
|
4439
4592
|
body: {
|
|
@@ -4451,7 +4604,7 @@ export type operations = {
|
|
|
4451
4604
|
};
|
|
4452
4605
|
};
|
|
4453
4606
|
};
|
|
4454
|
-
/**
|
|
4607
|
+
/** Delete wallets for an organization. */
|
|
4455
4608
|
PublicApiService_DeleteWallets: {
|
|
4456
4609
|
parameters: {
|
|
4457
4610
|
body: {
|
|
@@ -4469,25 +4622,7 @@ export type operations = {
|
|
|
4469
4622
|
};
|
|
4470
4623
|
};
|
|
4471
4624
|
};
|
|
4472
|
-
/**
|
|
4473
|
-
PublicApiService_DisableUserInitiatedAuth: {
|
|
4474
|
-
parameters: {
|
|
4475
|
-
body: {
|
|
4476
|
-
body: definitions["v1DisableUserInitiatedAuthRequest"];
|
|
4477
|
-
};
|
|
4478
|
-
};
|
|
4479
|
-
responses: {
|
|
4480
|
-
/** A successful response. */
|
|
4481
|
-
200: {
|
|
4482
|
-
schema: definitions["v1ActivityResponse"];
|
|
4483
|
-
};
|
|
4484
|
-
/** An unexpected error response. */
|
|
4485
|
-
default: {
|
|
4486
|
-
schema: definitions["rpcStatus"];
|
|
4487
|
-
};
|
|
4488
|
-
};
|
|
4489
|
-
};
|
|
4490
|
-
/** Authenticate a user via Email */
|
|
4625
|
+
/** Authenticate a user via email. */
|
|
4491
4626
|
PublicApiService_EmailAuth: {
|
|
4492
4627
|
parameters: {
|
|
4493
4628
|
body: {
|
|
@@ -4505,25 +4640,7 @@ export type operations = {
|
|
|
4505
4640
|
};
|
|
4506
4641
|
};
|
|
4507
4642
|
};
|
|
4508
|
-
/**
|
|
4509
|
-
PublicApiService_EnableUserInitiatedAuth: {
|
|
4510
|
-
parameters: {
|
|
4511
|
-
body: {
|
|
4512
|
-
body: definitions["v1EnableUserInitiatedAuthRequest"];
|
|
4513
|
-
};
|
|
4514
|
-
};
|
|
4515
|
-
responses: {
|
|
4516
|
-
/** A successful response. */
|
|
4517
|
-
200: {
|
|
4518
|
-
schema: definitions["v1ActivityResponse"];
|
|
4519
|
-
};
|
|
4520
|
-
/** An unexpected error response. */
|
|
4521
|
-
default: {
|
|
4522
|
-
schema: definitions["rpcStatus"];
|
|
4523
|
-
};
|
|
4524
|
-
};
|
|
4525
|
-
};
|
|
4526
|
-
/** Exports a Private Key */
|
|
4643
|
+
/** Export a private key. */
|
|
4527
4644
|
PublicApiService_ExportPrivateKey: {
|
|
4528
4645
|
parameters: {
|
|
4529
4646
|
body: {
|
|
@@ -4541,7 +4658,7 @@ export type operations = {
|
|
|
4541
4658
|
};
|
|
4542
4659
|
};
|
|
4543
4660
|
};
|
|
4544
|
-
/**
|
|
4661
|
+
/** Export a wallet. */
|
|
4545
4662
|
PublicApiService_ExportWallet: {
|
|
4546
4663
|
parameters: {
|
|
4547
4664
|
body: {
|
|
@@ -4559,7 +4676,7 @@ export type operations = {
|
|
|
4559
4676
|
};
|
|
4560
4677
|
};
|
|
4561
4678
|
};
|
|
4562
|
-
/**
|
|
4679
|
+
/** Export a wallet account. */
|
|
4563
4680
|
PublicApiService_ExportWalletAccount: {
|
|
4564
4681
|
parameters: {
|
|
4565
4682
|
body: {
|
|
@@ -4577,7 +4694,7 @@ export type operations = {
|
|
|
4577
4694
|
};
|
|
4578
4695
|
};
|
|
4579
4696
|
};
|
|
4580
|
-
/**
|
|
4697
|
+
/** Import a private key. */
|
|
4581
4698
|
PublicApiService_ImportPrivateKey: {
|
|
4582
4699
|
parameters: {
|
|
4583
4700
|
body: {
|
|
@@ -4595,7 +4712,7 @@ export type operations = {
|
|
|
4595
4712
|
};
|
|
4596
4713
|
};
|
|
4597
4714
|
};
|
|
4598
|
-
/**
|
|
4715
|
+
/** Import a wallet. */
|
|
4599
4716
|
PublicApiService_ImportWallet: {
|
|
4600
4717
|
parameters: {
|
|
4601
4718
|
body: {
|
|
@@ -4613,7 +4730,7 @@ export type operations = {
|
|
|
4613
4730
|
};
|
|
4614
4731
|
};
|
|
4615
4732
|
};
|
|
4616
|
-
/** Initiate a fiat on ramp flow */
|
|
4733
|
+
/** Initiate a fiat on ramp flow. */
|
|
4617
4734
|
PublicApiService_InitFiatOnRamp: {
|
|
4618
4735
|
parameters: {
|
|
4619
4736
|
body: {
|
|
@@ -4631,7 +4748,7 @@ export type operations = {
|
|
|
4631
4748
|
};
|
|
4632
4749
|
};
|
|
4633
4750
|
};
|
|
4634
|
-
/**
|
|
4751
|
+
/** Initialize a new private key import. */
|
|
4635
4752
|
PublicApiService_InitImportPrivateKey: {
|
|
4636
4753
|
parameters: {
|
|
4637
4754
|
body: {
|
|
@@ -4649,7 +4766,7 @@ export type operations = {
|
|
|
4649
4766
|
};
|
|
4650
4767
|
};
|
|
4651
4768
|
};
|
|
4652
|
-
/**
|
|
4769
|
+
/** Initialize a new wallet import. */
|
|
4653
4770
|
PublicApiService_InitImportWallet: {
|
|
4654
4771
|
parameters: {
|
|
4655
4772
|
body: {
|
|
@@ -4667,7 +4784,7 @@ export type operations = {
|
|
|
4667
4784
|
};
|
|
4668
4785
|
};
|
|
4669
4786
|
};
|
|
4670
|
-
/** Initiate a
|
|
4787
|
+
/** Initiate a generic OTP activity. */
|
|
4671
4788
|
PublicApiService_InitOtp: {
|
|
4672
4789
|
parameters: {
|
|
4673
4790
|
body: {
|
|
@@ -4685,7 +4802,7 @@ export type operations = {
|
|
|
4685
4802
|
};
|
|
4686
4803
|
};
|
|
4687
4804
|
};
|
|
4688
|
-
/** Initiate an OTP auth activity */
|
|
4805
|
+
/** Initiate an OTP auth activity. */
|
|
4689
4806
|
PublicApiService_InitOtpAuth: {
|
|
4690
4807
|
parameters: {
|
|
4691
4808
|
body: {
|
|
@@ -4703,7 +4820,7 @@ export type operations = {
|
|
|
4703
4820
|
};
|
|
4704
4821
|
};
|
|
4705
4822
|
};
|
|
4706
|
-
/**
|
|
4823
|
+
/** Initialize a new email recovery. */
|
|
4707
4824
|
PublicApiService_InitUserEmailRecovery: {
|
|
4708
4825
|
parameters: {
|
|
4709
4826
|
body: {
|
|
@@ -4721,7 +4838,7 @@ export type operations = {
|
|
|
4721
4838
|
};
|
|
4722
4839
|
};
|
|
4723
4840
|
};
|
|
4724
|
-
/** Authenticate a user with an
|
|
4841
|
+
/** Authenticate a user with an OIDC token (Oauth). */
|
|
4725
4842
|
PublicApiService_Oauth: {
|
|
4726
4843
|
parameters: {
|
|
4727
4844
|
body: {
|
|
@@ -4739,7 +4856,25 @@ export type operations = {
|
|
|
4739
4856
|
};
|
|
4740
4857
|
};
|
|
4741
4858
|
};
|
|
4742
|
-
/**
|
|
4859
|
+
/** Authenticate a user with an OAuth 2.0 provider and receive an OIDC token to use with the LoginWithOAuth or CreateSubOrganization activities */
|
|
4860
|
+
PublicApiService_Oauth2Authenticate: {
|
|
4861
|
+
parameters: {
|
|
4862
|
+
body: {
|
|
4863
|
+
body: definitions["v1Oauth2AuthenticateRequest"];
|
|
4864
|
+
};
|
|
4865
|
+
};
|
|
4866
|
+
responses: {
|
|
4867
|
+
/** A successful response. */
|
|
4868
|
+
200: {
|
|
4869
|
+
schema: definitions["v1ActivityResponse"];
|
|
4870
|
+
};
|
|
4871
|
+
/** An unexpected error response. */
|
|
4872
|
+
default: {
|
|
4873
|
+
schema: definitions["rpcStatus"];
|
|
4874
|
+
};
|
|
4875
|
+
};
|
|
4876
|
+
};
|
|
4877
|
+
/** Create an Oauth session for a user. */
|
|
4743
4878
|
PublicApiService_OauthLogin: {
|
|
4744
4879
|
parameters: {
|
|
4745
4880
|
body: {
|
|
@@ -4757,7 +4892,7 @@ export type operations = {
|
|
|
4757
4892
|
};
|
|
4758
4893
|
};
|
|
4759
4894
|
};
|
|
4760
|
-
/** Authenticate a user with an OTP code sent via email or SMS */
|
|
4895
|
+
/** Authenticate a user with an OTP code sent via email or SMS. */
|
|
4761
4896
|
PublicApiService_OtpAuth: {
|
|
4762
4897
|
parameters: {
|
|
4763
4898
|
body: {
|
|
@@ -4775,7 +4910,7 @@ export type operations = {
|
|
|
4775
4910
|
};
|
|
4776
4911
|
};
|
|
4777
4912
|
};
|
|
4778
|
-
/** Create an OTP session for a user */
|
|
4913
|
+
/** Create an OTP session for a user. */
|
|
4779
4914
|
PublicApiService_OtpLogin: {
|
|
4780
4915
|
parameters: {
|
|
4781
4916
|
body: {
|
|
@@ -4793,7 +4928,7 @@ export type operations = {
|
|
|
4793
4928
|
};
|
|
4794
4929
|
};
|
|
4795
4930
|
};
|
|
4796
|
-
/**
|
|
4931
|
+
/** Complete the process of recovering a user by adding an authenticator. */
|
|
4797
4932
|
PublicApiService_RecoverUser: {
|
|
4798
4933
|
parameters: {
|
|
4799
4934
|
body: {
|
|
@@ -4811,7 +4946,7 @@ export type operations = {
|
|
|
4811
4946
|
};
|
|
4812
4947
|
};
|
|
4813
4948
|
};
|
|
4814
|
-
/** Reject an
|
|
4949
|
+
/** Reject an activity. */
|
|
4815
4950
|
PublicApiService_RejectActivity: {
|
|
4816
4951
|
parameters: {
|
|
4817
4952
|
body: {
|
|
@@ -4829,7 +4964,7 @@ export type operations = {
|
|
|
4829
4964
|
};
|
|
4830
4965
|
};
|
|
4831
4966
|
};
|
|
4832
|
-
/**
|
|
4967
|
+
/** Remove an organization feature. This activity must be approved by the current root quorum. */
|
|
4833
4968
|
PublicApiService_RemoveOrganizationFeature: {
|
|
4834
4969
|
parameters: {
|
|
4835
4970
|
body: {
|
|
@@ -4847,7 +4982,7 @@ export type operations = {
|
|
|
4847
4982
|
};
|
|
4848
4983
|
};
|
|
4849
4984
|
};
|
|
4850
|
-
/**
|
|
4985
|
+
/** Set an organization feature. This activity must be approved by the current root quorum. */
|
|
4851
4986
|
PublicApiService_SetOrganizationFeature: {
|
|
4852
4987
|
parameters: {
|
|
4853
4988
|
body: {
|
|
@@ -4865,7 +5000,7 @@ export type operations = {
|
|
|
4865
5000
|
};
|
|
4866
5001
|
};
|
|
4867
5002
|
};
|
|
4868
|
-
/** Sign a raw payload */
|
|
5003
|
+
/** Sign a raw payload. */
|
|
4869
5004
|
PublicApiService_SignRawPayload: {
|
|
4870
5005
|
parameters: {
|
|
4871
5006
|
body: {
|
|
@@ -4883,7 +5018,7 @@ export type operations = {
|
|
|
4883
5018
|
};
|
|
4884
5019
|
};
|
|
4885
5020
|
};
|
|
4886
|
-
/** Sign multiple raw payloads with the same signing parameters */
|
|
5021
|
+
/** Sign multiple raw payloads with the same signing parameters. */
|
|
4887
5022
|
PublicApiService_SignRawPayloads: {
|
|
4888
5023
|
parameters: {
|
|
4889
5024
|
body: {
|
|
@@ -4901,7 +5036,7 @@ export type operations = {
|
|
|
4901
5036
|
};
|
|
4902
5037
|
};
|
|
4903
5038
|
};
|
|
4904
|
-
/** Sign a transaction */
|
|
5039
|
+
/** Sign a transaction. */
|
|
4905
5040
|
PublicApiService_SignTransaction: {
|
|
4906
5041
|
parameters: {
|
|
4907
5042
|
body: {
|
|
@@ -4919,7 +5054,7 @@ export type operations = {
|
|
|
4919
5054
|
};
|
|
4920
5055
|
};
|
|
4921
5056
|
};
|
|
4922
|
-
/** Create a session for a user through stamping client side (
|
|
5057
|
+
/** Create a session for a user through stamping client side (API key, wallet client, or passkey client). */
|
|
4923
5058
|
PublicApiService_StampLogin: {
|
|
4924
5059
|
parameters: {
|
|
4925
5060
|
body: {
|
|
@@ -4937,11 +5072,11 @@ export type operations = {
|
|
|
4937
5072
|
};
|
|
4938
5073
|
};
|
|
4939
5074
|
};
|
|
4940
|
-
/** Update an
|
|
4941
|
-
|
|
5075
|
+
/** Update an OAuth 2.0 provider credential */
|
|
5076
|
+
PublicApiService_UpdateOauth2Credential: {
|
|
4942
5077
|
parameters: {
|
|
4943
5078
|
body: {
|
|
4944
|
-
body: definitions["
|
|
5079
|
+
body: definitions["v1UpdateOauth2CredentialRequest"];
|
|
4945
5080
|
};
|
|
4946
5081
|
};
|
|
4947
5082
|
responses: {
|
|
@@ -4955,11 +5090,11 @@ export type operations = {
|
|
|
4955
5090
|
};
|
|
4956
5091
|
};
|
|
4957
5092
|
};
|
|
4958
|
-
/** Update
|
|
4959
|
-
|
|
5093
|
+
/** Update an existing policy. */
|
|
5094
|
+
PublicApiService_UpdatePolicy: {
|
|
4960
5095
|
parameters: {
|
|
4961
5096
|
body: {
|
|
4962
|
-
body: definitions["
|
|
5097
|
+
body: definitions["v1UpdatePolicyRequest"];
|
|
4963
5098
|
};
|
|
4964
5099
|
};
|
|
4965
5100
|
responses: {
|
|
@@ -4973,11 +5108,11 @@ export type operations = {
|
|
|
4973
5108
|
};
|
|
4974
5109
|
};
|
|
4975
5110
|
};
|
|
4976
|
-
/** Update the
|
|
4977
|
-
|
|
5111
|
+
/** Update human-readable name or associated private keys. Note that this activity is atomic: all of the updates will succeed at once, or all of them will fail. */
|
|
5112
|
+
PublicApiService_UpdatePrivateKeyTag: {
|
|
4978
5113
|
parameters: {
|
|
4979
5114
|
body: {
|
|
4980
|
-
body: definitions["
|
|
5115
|
+
body: definitions["v1UpdatePrivateKeyTagRequest"];
|
|
4981
5116
|
};
|
|
4982
5117
|
};
|
|
4983
5118
|
responses: {
|
|
@@ -5009,7 +5144,7 @@ export type operations = {
|
|
|
5009
5144
|
};
|
|
5010
5145
|
};
|
|
5011
5146
|
};
|
|
5012
|
-
/** Update a
|
|
5147
|
+
/** Update a user in an existing organization. */
|
|
5013
5148
|
PublicApiService_UpdateUser: {
|
|
5014
5149
|
parameters: {
|
|
5015
5150
|
body: {
|
|
@@ -5027,7 +5162,7 @@ export type operations = {
|
|
|
5027
5162
|
};
|
|
5028
5163
|
};
|
|
5029
5164
|
};
|
|
5030
|
-
/** Update a
|
|
5165
|
+
/** Update a user's email in an existing organization. */
|
|
5031
5166
|
PublicApiService_UpdateUserEmail: {
|
|
5032
5167
|
parameters: {
|
|
5033
5168
|
body: {
|
|
@@ -5045,7 +5180,7 @@ export type operations = {
|
|
|
5045
5180
|
};
|
|
5046
5181
|
};
|
|
5047
5182
|
};
|
|
5048
|
-
/** Update a
|
|
5183
|
+
/** Update a user's name in an existing organization. */
|
|
5049
5184
|
PublicApiService_UpdateUserName: {
|
|
5050
5185
|
parameters: {
|
|
5051
5186
|
body: {
|
|
@@ -5063,7 +5198,7 @@ export type operations = {
|
|
|
5063
5198
|
};
|
|
5064
5199
|
};
|
|
5065
5200
|
};
|
|
5066
|
-
/** Update a
|
|
5201
|
+
/** Update a user's phone number in an existing organization. */
|
|
5067
5202
|
PublicApiService_UpdateUserPhoneNumber: {
|
|
5068
5203
|
parameters: {
|
|
5069
5204
|
body: {
|
|
@@ -5099,7 +5234,7 @@ export type operations = {
|
|
|
5099
5234
|
};
|
|
5100
5235
|
};
|
|
5101
5236
|
};
|
|
5102
|
-
/** Update a wallet for an organization */
|
|
5237
|
+
/** Update a wallet for an organization. */
|
|
5103
5238
|
PublicApiService_UpdateWallet: {
|
|
5104
5239
|
parameters: {
|
|
5105
5240
|
body: {
|
|
@@ -5117,7 +5252,7 @@ export type operations = {
|
|
|
5117
5252
|
};
|
|
5118
5253
|
};
|
|
5119
5254
|
};
|
|
5120
|
-
/** Verify a
|
|
5255
|
+
/** Verify a generic OTP. */
|
|
5121
5256
|
PublicApiService_VerifyOtp: {
|
|
5122
5257
|
parameters: {
|
|
5123
5258
|
body: {
|
|
@@ -5147,7 +5282,7 @@ export type operations = {
|
|
|
5147
5282
|
};
|
|
5148
5283
|
};
|
|
5149
5284
|
};
|
|
5150
|
-
/** Set a rate local rate limit just on the current endpoint, for purposes of testing with Vivosuite */
|
|
5285
|
+
/** Set a rate local rate limit just on the current endpoint, for purposes of testing with Vivosuite. */
|
|
5151
5286
|
PublicApiService_TestRateLimits: {
|
|
5152
5287
|
parameters: {
|
|
5153
5288
|
body: {
|