@turnkey/http 3.5.1 → 3.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.d.ts +99 -84
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.d.ts.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.js +109 -84
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.js.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.mjs +109 -84
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.mjs.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.d.ts +1417 -7689
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.d.ts.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.js +189 -165
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.js.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.mjs +188 -166
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.mjs.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.types.d.ts +312 -260
- package/dist/__generated__/services/coordinator/public/v1/public_api.types.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/version.mjs +1 -1
- package/package.json +4 -4
|
@@ -9,6 +9,7 @@ import type { TGetOauthProvidersBody, TGetOauthProvidersResponse } from "./publi
|
|
|
9
9
|
import type { TGetOrganizationBody, TGetOrganizationResponse } from "./public_api.fetcher";
|
|
10
10
|
import type { TGetOrganizationConfigsBody, TGetOrganizationConfigsResponse } from "./public_api.fetcher";
|
|
11
11
|
import type { TGetPolicyBody, TGetPolicyResponse } from "./public_api.fetcher";
|
|
12
|
+
import type { TGetPolicyEvaluationsBody, TGetPolicyEvaluationsResponse } from "./public_api.fetcher";
|
|
12
13
|
import type { TGetPrivateKeyBody, TGetPrivateKeyResponse } from "./public_api.fetcher";
|
|
13
14
|
import type { TGetSmartContractInterfaceBody, TGetSmartContractInterfaceResponse } from "./public_api.fetcher";
|
|
14
15
|
import type { TGetUserBody, TGetUserResponse } from "./public_api.fetcher";
|
|
@@ -98,7 +99,7 @@ export declare class TurnkeyClient {
|
|
|
98
99
|
constructor(config: THttpConfig, stamper: TStamper);
|
|
99
100
|
request<TBodyType, TResponseType>(url: string, body: TBodyType): Promise<TResponseType>;
|
|
100
101
|
/**
|
|
101
|
-
* Get details about an
|
|
102
|
+
* Get details about an activity.
|
|
102
103
|
*
|
|
103
104
|
* Sign the provided `TGetActivityBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/get_activity).
|
|
104
105
|
*
|
|
@@ -112,7 +113,7 @@ export declare class TurnkeyClient {
|
|
|
112
113
|
*/
|
|
113
114
|
stampGetActivity: (input: TGetActivityBody) => Promise<TSignedRequest>;
|
|
114
115
|
/**
|
|
115
|
-
* Get details about an API key
|
|
116
|
+
* Get details about an API key.
|
|
116
117
|
*
|
|
117
118
|
* Sign the provided `TGetApiKeyBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/get_api_key).
|
|
118
119
|
*
|
|
@@ -126,7 +127,7 @@ export declare class TurnkeyClient {
|
|
|
126
127
|
*/
|
|
127
128
|
stampGetApiKey: (input: TGetApiKeyBody) => Promise<TSignedRequest>;
|
|
128
129
|
/**
|
|
129
|
-
* Get details about API keys for a user
|
|
130
|
+
* Get details about API keys for a user.
|
|
130
131
|
*
|
|
131
132
|
* Sign the provided `TGetApiKeysBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/get_api_keys).
|
|
132
133
|
*
|
|
@@ -154,7 +155,7 @@ export declare class TurnkeyClient {
|
|
|
154
155
|
*/
|
|
155
156
|
stampGetAttestationDocument: (input: TGetAttestationDocumentBody) => Promise<TSignedRequest>;
|
|
156
157
|
/**
|
|
157
|
-
* Get details about an authenticator
|
|
158
|
+
* Get details about an authenticator.
|
|
158
159
|
*
|
|
159
160
|
* Sign the provided `TGetAuthenticatorBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/get_authenticator).
|
|
160
161
|
*
|
|
@@ -168,7 +169,7 @@ export declare class TurnkeyClient {
|
|
|
168
169
|
*/
|
|
169
170
|
stampGetAuthenticator: (input: TGetAuthenticatorBody) => Promise<TSignedRequest>;
|
|
170
171
|
/**
|
|
171
|
-
* Get details about authenticators for a user
|
|
172
|
+
* Get details about authenticators for a user.
|
|
172
173
|
*
|
|
173
174
|
* Sign the provided `TGetAuthenticatorsBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/get_authenticators).
|
|
174
175
|
*
|
|
@@ -182,7 +183,7 @@ export declare class TurnkeyClient {
|
|
|
182
183
|
*/
|
|
183
184
|
stampGetAuthenticators: (input: TGetAuthenticatorsBody) => Promise<TSignedRequest>;
|
|
184
185
|
/**
|
|
185
|
-
* Get details about Oauth providers for a user
|
|
186
|
+
* Get details about Oauth providers for a user.
|
|
186
187
|
*
|
|
187
188
|
* Sign the provided `TGetOauthProvidersBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/get_oauth_providers).
|
|
188
189
|
*
|
|
@@ -196,7 +197,7 @@ export declare class TurnkeyClient {
|
|
|
196
197
|
*/
|
|
197
198
|
stampGetOauthProviders: (input: TGetOauthProvidersBody) => Promise<TSignedRequest>;
|
|
198
199
|
/**
|
|
199
|
-
* Get details about an
|
|
200
|
+
* Get details about an organization.
|
|
200
201
|
*
|
|
201
202
|
* Sign the provided `TGetOrganizationBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/get_organization).
|
|
202
203
|
*
|
|
@@ -210,7 +211,7 @@ export declare class TurnkeyClient {
|
|
|
210
211
|
*/
|
|
211
212
|
stampGetOrganization: (input: TGetOrganizationBody) => Promise<TSignedRequest>;
|
|
212
213
|
/**
|
|
213
|
-
* Get quorum settings and features for an organization
|
|
214
|
+
* Get quorum settings and features for an organization.
|
|
214
215
|
*
|
|
215
216
|
* Sign the provided `TGetOrganizationConfigsBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/get_organization_configs).
|
|
216
217
|
*
|
|
@@ -224,7 +225,7 @@ export declare class TurnkeyClient {
|
|
|
224
225
|
*/
|
|
225
226
|
stampGetOrganizationConfigs: (input: TGetOrganizationConfigsBody) => Promise<TSignedRequest>;
|
|
226
227
|
/**
|
|
227
|
-
* Get details about a
|
|
228
|
+
* Get details about a policy.
|
|
228
229
|
*
|
|
229
230
|
* Sign the provided `TGetPolicyBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/get_policy).
|
|
230
231
|
*
|
|
@@ -238,7 +239,21 @@ export declare class TurnkeyClient {
|
|
|
238
239
|
*/
|
|
239
240
|
stampGetPolicy: (input: TGetPolicyBody) => Promise<TSignedRequest>;
|
|
240
241
|
/**
|
|
241
|
-
* Get
|
|
242
|
+
* Get the policy evaluations for an activity.
|
|
243
|
+
*
|
|
244
|
+
* Sign the provided `TGetPolicyEvaluationsBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/get_policy_evaluations).
|
|
245
|
+
*
|
|
246
|
+
* See also {@link stampGetPolicyEvaluations}.
|
|
247
|
+
*/
|
|
248
|
+
getPolicyEvaluations: (input: TGetPolicyEvaluationsBody) => Promise<TGetPolicyEvaluationsResponse>;
|
|
249
|
+
/**
|
|
250
|
+
* Produce a `SignedRequest` from `TGetPolicyEvaluationsBody` by using the client's `stamp` function.
|
|
251
|
+
*
|
|
252
|
+
* See also {@link GetPolicyEvaluations}.
|
|
253
|
+
*/
|
|
254
|
+
stampGetPolicyEvaluations: (input: TGetPolicyEvaluationsBody) => Promise<TSignedRequest>;
|
|
255
|
+
/**
|
|
256
|
+
* Get details about a private key.
|
|
242
257
|
*
|
|
243
258
|
* Sign the provided `TGetPrivateKeyBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/get_private_key).
|
|
244
259
|
*
|
|
@@ -252,7 +267,7 @@ export declare class TurnkeyClient {
|
|
|
252
267
|
*/
|
|
253
268
|
stampGetPrivateKey: (input: TGetPrivateKeyBody) => Promise<TSignedRequest>;
|
|
254
269
|
/**
|
|
255
|
-
* Get details about a
|
|
270
|
+
* Get details about a smart contract interface.
|
|
256
271
|
*
|
|
257
272
|
* Sign the provided `TGetSmartContractInterfaceBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/get_smart_contract_interface).
|
|
258
273
|
*
|
|
@@ -266,7 +281,7 @@ export declare class TurnkeyClient {
|
|
|
266
281
|
*/
|
|
267
282
|
stampGetSmartContractInterface: (input: TGetSmartContractInterfaceBody) => Promise<TSignedRequest>;
|
|
268
283
|
/**
|
|
269
|
-
* Get details about a
|
|
284
|
+
* Get details about a user.
|
|
270
285
|
*
|
|
271
286
|
* Sign the provided `TGetUserBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/get_user).
|
|
272
287
|
*
|
|
@@ -280,7 +295,7 @@ export declare class TurnkeyClient {
|
|
|
280
295
|
*/
|
|
281
296
|
stampGetUser: (input: TGetUserBody) => Promise<TSignedRequest>;
|
|
282
297
|
/**
|
|
283
|
-
* Get details about a
|
|
298
|
+
* Get details about a wallet.
|
|
284
299
|
*
|
|
285
300
|
* Sign the provided `TGetWalletBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/get_wallet).
|
|
286
301
|
*
|
|
@@ -294,7 +309,7 @@ export declare class TurnkeyClient {
|
|
|
294
309
|
*/
|
|
295
310
|
stampGetWallet: (input: TGetWalletBody) => Promise<TSignedRequest>;
|
|
296
311
|
/**
|
|
297
|
-
* Get a single wallet account
|
|
312
|
+
* Get a single wallet account.
|
|
298
313
|
*
|
|
299
314
|
* Sign the provided `TGetWalletAccountBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/get_wallet_account).
|
|
300
315
|
*
|
|
@@ -308,7 +323,7 @@ export declare class TurnkeyClient {
|
|
|
308
323
|
*/
|
|
309
324
|
stampGetWalletAccount: (input: TGetWalletAccountBody) => Promise<TSignedRequest>;
|
|
310
325
|
/**
|
|
311
|
-
* List all
|
|
326
|
+
* List all activities within an organization.
|
|
312
327
|
*
|
|
313
328
|
* Sign the provided `TGetActivitiesBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/list_activities).
|
|
314
329
|
*
|
|
@@ -322,7 +337,7 @@ export declare class TurnkeyClient {
|
|
|
322
337
|
*/
|
|
323
338
|
stampGetActivities: (input: TGetActivitiesBody) => Promise<TSignedRequest>;
|
|
324
339
|
/**
|
|
325
|
-
* List all
|
|
340
|
+
* List all policies within an organization.
|
|
326
341
|
*
|
|
327
342
|
* Sign the provided `TGetPoliciesBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/list_policies).
|
|
328
343
|
*
|
|
@@ -336,7 +351,7 @@ export declare class TurnkeyClient {
|
|
|
336
351
|
*/
|
|
337
352
|
stampGetPolicies: (input: TGetPoliciesBody) => Promise<TSignedRequest>;
|
|
338
353
|
/**
|
|
339
|
-
* List all
|
|
354
|
+
* List all private key tags within an organization.
|
|
340
355
|
*
|
|
341
356
|
* Sign the provided `TListPrivateKeyTagsBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/list_private_key_tags).
|
|
342
357
|
*
|
|
@@ -350,7 +365,7 @@ export declare class TurnkeyClient {
|
|
|
350
365
|
*/
|
|
351
366
|
stampListPrivateKeyTags: (input: TListPrivateKeyTagsBody) => Promise<TSignedRequest>;
|
|
352
367
|
/**
|
|
353
|
-
* List all
|
|
368
|
+
* List all private keys within an organization.
|
|
354
369
|
*
|
|
355
370
|
* Sign the provided `TGetPrivateKeysBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/list_private_keys).
|
|
356
371
|
*
|
|
@@ -364,7 +379,7 @@ export declare class TurnkeyClient {
|
|
|
364
379
|
*/
|
|
365
380
|
stampGetPrivateKeys: (input: TGetPrivateKeysBody) => Promise<TSignedRequest>;
|
|
366
381
|
/**
|
|
367
|
-
* List all
|
|
382
|
+
* List all smart contract interfaces within an organization.
|
|
368
383
|
*
|
|
369
384
|
* Sign the provided `TGetSmartContractInterfacesBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/list_smart_contract_interfaces).
|
|
370
385
|
*
|
|
@@ -392,7 +407,7 @@ export declare class TurnkeyClient {
|
|
|
392
407
|
*/
|
|
393
408
|
stampGetSubOrgIds: (input: TGetSubOrgIdsBody) => Promise<TSignedRequest>;
|
|
394
409
|
/**
|
|
395
|
-
* List all
|
|
410
|
+
* List all user tags within an organization.
|
|
396
411
|
*
|
|
397
412
|
* Sign the provided `TListUserTagsBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/list_user_tags).
|
|
398
413
|
*
|
|
@@ -406,7 +421,7 @@ export declare class TurnkeyClient {
|
|
|
406
421
|
*/
|
|
407
422
|
stampListUserTags: (input: TListUserTagsBody) => Promise<TSignedRequest>;
|
|
408
423
|
/**
|
|
409
|
-
* List all
|
|
424
|
+
* List all users within an organization.
|
|
410
425
|
*
|
|
411
426
|
* Sign the provided `TGetUsersBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/list_users).
|
|
412
427
|
*
|
|
@@ -434,7 +449,7 @@ export declare class TurnkeyClient {
|
|
|
434
449
|
*/
|
|
435
450
|
stampGetVerifiedSubOrgIds: (input: TGetVerifiedSubOrgIdsBody) => Promise<TSignedRequest>;
|
|
436
451
|
/**
|
|
437
|
-
* List all
|
|
452
|
+
* List all accounts within a wallet.
|
|
438
453
|
*
|
|
439
454
|
* Sign the provided `TGetWalletAccountsBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/list_wallet_accounts).
|
|
440
455
|
*
|
|
@@ -448,7 +463,7 @@ export declare class TurnkeyClient {
|
|
|
448
463
|
*/
|
|
449
464
|
stampGetWalletAccounts: (input: TGetWalletAccountsBody) => Promise<TSignedRequest>;
|
|
450
465
|
/**
|
|
451
|
-
* List all
|
|
466
|
+
* List all wallets within an organization.
|
|
452
467
|
*
|
|
453
468
|
* Sign the provided `TGetWalletsBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/list_wallets).
|
|
454
469
|
*
|
|
@@ -462,7 +477,7 @@ export declare class TurnkeyClient {
|
|
|
462
477
|
*/
|
|
463
478
|
stampGetWallets: (input: TGetWalletsBody) => Promise<TSignedRequest>;
|
|
464
479
|
/**
|
|
465
|
-
* Get basic information about your current API or WebAuthN user and their organization. Affords
|
|
480
|
+
* 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.
|
|
466
481
|
*
|
|
467
482
|
* Sign the provided `TGetWhoamiBody` with the client's `stamp` function, and submit the request (POST /public/v1/query/whoami).
|
|
468
483
|
*
|
|
@@ -476,7 +491,7 @@ export declare class TurnkeyClient {
|
|
|
476
491
|
*/
|
|
477
492
|
stampGetWhoami: (input: TGetWhoamiBody) => Promise<TSignedRequest>;
|
|
478
493
|
/**
|
|
479
|
-
* Approve an
|
|
494
|
+
* Approve an activity.
|
|
480
495
|
*
|
|
481
496
|
* Sign the provided `TApproveActivityBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/approve_activity).
|
|
482
497
|
*
|
|
@@ -490,7 +505,7 @@ export declare class TurnkeyClient {
|
|
|
490
505
|
*/
|
|
491
506
|
stampApproveActivity: (input: TApproveActivityBody) => Promise<TSignedRequest>;
|
|
492
507
|
/**
|
|
493
|
-
* Add
|
|
508
|
+
* Add API keys to an existing user.
|
|
494
509
|
*
|
|
495
510
|
* Sign the provided `TCreateApiKeysBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/create_api_keys).
|
|
496
511
|
*
|
|
@@ -504,7 +519,7 @@ export declare class TurnkeyClient {
|
|
|
504
519
|
*/
|
|
505
520
|
stampCreateApiKeys: (input: TCreateApiKeysBody) => Promise<TSignedRequest>;
|
|
506
521
|
/**
|
|
507
|
-
* Create API-only
|
|
522
|
+
* Create API-only users in an existing organization.
|
|
508
523
|
*
|
|
509
524
|
* Sign the provided `TCreateApiOnlyUsersBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/create_api_only_users).
|
|
510
525
|
*
|
|
@@ -518,7 +533,7 @@ export declare class TurnkeyClient {
|
|
|
518
533
|
*/
|
|
519
534
|
stampCreateApiOnlyUsers: (input: TCreateApiOnlyUsersBody) => Promise<TSignedRequest>;
|
|
520
535
|
/**
|
|
521
|
-
* Create
|
|
536
|
+
* Create authenticators to authenticate requests to Turnkey.
|
|
522
537
|
*
|
|
523
538
|
* Sign the provided `TCreateAuthenticatorsBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/create_authenticators).
|
|
524
539
|
*
|
|
@@ -532,7 +547,7 @@ export declare class TurnkeyClient {
|
|
|
532
547
|
*/
|
|
533
548
|
stampCreateAuthenticators: (input: TCreateAuthenticatorsBody) => Promise<TSignedRequest>;
|
|
534
549
|
/**
|
|
535
|
-
* Create
|
|
550
|
+
* Create invitations to join an existing organization.
|
|
536
551
|
*
|
|
537
552
|
* Sign the provided `TCreateInvitationsBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/create_invitations).
|
|
538
553
|
*
|
|
@@ -546,7 +561,7 @@ export declare class TurnkeyClient {
|
|
|
546
561
|
*/
|
|
547
562
|
stampCreateInvitations: (input: TCreateInvitationsBody) => Promise<TSignedRequest>;
|
|
548
563
|
/**
|
|
549
|
-
*
|
|
564
|
+
* Create Oauth providers for a specified user.
|
|
550
565
|
*
|
|
551
566
|
* Sign the provided `TCreateOauthProvidersBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/create_oauth_providers).
|
|
552
567
|
*
|
|
@@ -560,7 +575,7 @@ export declare class TurnkeyClient {
|
|
|
560
575
|
*/
|
|
561
576
|
stampCreateOauthProviders: (input: TCreateOauthProvidersBody) => Promise<TSignedRequest>;
|
|
562
577
|
/**
|
|
563
|
-
* Create new
|
|
578
|
+
* Create new policies.
|
|
564
579
|
*
|
|
565
580
|
* Sign the provided `TCreatePoliciesBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/create_policies).
|
|
566
581
|
*
|
|
@@ -574,7 +589,7 @@ export declare class TurnkeyClient {
|
|
|
574
589
|
*/
|
|
575
590
|
stampCreatePolicies: (input: TCreatePoliciesBody) => Promise<TSignedRequest>;
|
|
576
591
|
/**
|
|
577
|
-
* Create a new
|
|
592
|
+
* Create a new policy.
|
|
578
593
|
*
|
|
579
594
|
* Sign the provided `TCreatePolicyBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/create_policy).
|
|
580
595
|
*
|
|
@@ -602,7 +617,7 @@ export declare class TurnkeyClient {
|
|
|
602
617
|
*/
|
|
603
618
|
stampCreatePrivateKeyTag: (input: TCreatePrivateKeyTagBody) => Promise<TSignedRequest>;
|
|
604
619
|
/**
|
|
605
|
-
* Create new
|
|
620
|
+
* Create new private keys.
|
|
606
621
|
*
|
|
607
622
|
* Sign the provided `TCreatePrivateKeysBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/create_private_keys).
|
|
608
623
|
*
|
|
@@ -616,7 +631,7 @@ export declare class TurnkeyClient {
|
|
|
616
631
|
*/
|
|
617
632
|
stampCreatePrivateKeys: (input: TCreatePrivateKeysBody) => Promise<TSignedRequest>;
|
|
618
633
|
/**
|
|
619
|
-
* Create a read only session for a user (valid for 1 hour)
|
|
634
|
+
* Create a read only session for a user (valid for 1 hour).
|
|
620
635
|
*
|
|
621
636
|
* Sign the provided `TCreateReadOnlySessionBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/create_read_only_session).
|
|
622
637
|
*
|
|
@@ -630,7 +645,7 @@ export declare class TurnkeyClient {
|
|
|
630
645
|
*/
|
|
631
646
|
stampCreateReadOnlySession: (input: TCreateReadOnlySessionBody) => Promise<TSignedRequest>;
|
|
632
647
|
/**
|
|
633
|
-
* Create a read write session for a user
|
|
648
|
+
* Create a read write session for a user.
|
|
634
649
|
*
|
|
635
650
|
* Sign the provided `TCreateReadWriteSessionBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/create_read_write_session).
|
|
636
651
|
*
|
|
@@ -644,7 +659,7 @@ export declare class TurnkeyClient {
|
|
|
644
659
|
*/
|
|
645
660
|
stampCreateReadWriteSession: (input: TCreateReadWriteSessionBody) => Promise<TSignedRequest>;
|
|
646
661
|
/**
|
|
647
|
-
* Create an ABI/IDL in JSON
|
|
662
|
+
* Create an ABI/IDL in JSON.
|
|
648
663
|
*
|
|
649
664
|
* Sign the provided `TCreateSmartContractInterfaceBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/create_smart_contract_interface).
|
|
650
665
|
*
|
|
@@ -658,7 +673,7 @@ export declare class TurnkeyClient {
|
|
|
658
673
|
*/
|
|
659
674
|
stampCreateSmartContractInterface: (input: TCreateSmartContractInterfaceBody) => Promise<TSignedRequest>;
|
|
660
675
|
/**
|
|
661
|
-
* Create a new
|
|
676
|
+
* Create a new sub-organization.
|
|
662
677
|
*
|
|
663
678
|
* Sign the provided `TCreateSubOrganizationBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/create_sub_organization).
|
|
664
679
|
*
|
|
@@ -686,7 +701,7 @@ export declare class TurnkeyClient {
|
|
|
686
701
|
*/
|
|
687
702
|
stampCreateUserTag: (input: TCreateUserTagBody) => Promise<TSignedRequest>;
|
|
688
703
|
/**
|
|
689
|
-
* Create
|
|
704
|
+
* Create users in an existing organization.
|
|
690
705
|
*
|
|
691
706
|
* Sign the provided `TCreateUsersBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/create_users).
|
|
692
707
|
*
|
|
@@ -700,7 +715,7 @@ export declare class TurnkeyClient {
|
|
|
700
715
|
*/
|
|
701
716
|
stampCreateUsers: (input: TCreateUsersBody) => Promise<TSignedRequest>;
|
|
702
717
|
/**
|
|
703
|
-
* Create a
|
|
718
|
+
* Create a wallet and derive addresses.
|
|
704
719
|
*
|
|
705
720
|
* Sign the provided `TCreateWalletBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/create_wallet).
|
|
706
721
|
*
|
|
@@ -714,7 +729,7 @@ export declare class TurnkeyClient {
|
|
|
714
729
|
*/
|
|
715
730
|
stampCreateWallet: (input: TCreateWalletBody) => Promise<TSignedRequest>;
|
|
716
731
|
/**
|
|
717
|
-
* Derive additional addresses using an existing wallet
|
|
732
|
+
* Derive additional addresses using an existing wallet.
|
|
718
733
|
*
|
|
719
734
|
* Sign the provided `TCreateWalletAccountsBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/create_wallet_accounts).
|
|
720
735
|
*
|
|
@@ -728,7 +743,7 @@ export declare class TurnkeyClient {
|
|
|
728
743
|
*/
|
|
729
744
|
stampCreateWalletAccounts: (input: TCreateWalletAccountsBody) => Promise<TSignedRequest>;
|
|
730
745
|
/**
|
|
731
|
-
* Remove api keys from a
|
|
746
|
+
* Remove api keys from a user.
|
|
732
747
|
*
|
|
733
748
|
* Sign the provided `TDeleteApiKeysBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/delete_api_keys).
|
|
734
749
|
*
|
|
@@ -742,7 +757,7 @@ export declare class TurnkeyClient {
|
|
|
742
757
|
*/
|
|
743
758
|
stampDeleteApiKeys: (input: TDeleteApiKeysBody) => Promise<TSignedRequest>;
|
|
744
759
|
/**
|
|
745
|
-
* Remove authenticators from a
|
|
760
|
+
* Remove authenticators from a user.
|
|
746
761
|
*
|
|
747
762
|
* Sign the provided `TDeleteAuthenticatorsBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/delete_authenticators).
|
|
748
763
|
*
|
|
@@ -756,7 +771,7 @@ export declare class TurnkeyClient {
|
|
|
756
771
|
*/
|
|
757
772
|
stampDeleteAuthenticators: (input: TDeleteAuthenticatorsBody) => Promise<TSignedRequest>;
|
|
758
773
|
/**
|
|
759
|
-
* Delete an existing
|
|
774
|
+
* Delete an existing invitation.
|
|
760
775
|
*
|
|
761
776
|
* Sign the provided `TDeleteInvitationBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/delete_invitation).
|
|
762
777
|
*
|
|
@@ -770,7 +785,7 @@ export declare class TurnkeyClient {
|
|
|
770
785
|
*/
|
|
771
786
|
stampDeleteInvitation: (input: TDeleteInvitationBody) => Promise<TSignedRequest>;
|
|
772
787
|
/**
|
|
773
|
-
*
|
|
788
|
+
* Remove Oauth providers for a specified user.
|
|
774
789
|
*
|
|
775
790
|
* Sign the provided `TDeleteOauthProvidersBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/delete_oauth_providers).
|
|
776
791
|
*
|
|
@@ -784,7 +799,7 @@ export declare class TurnkeyClient {
|
|
|
784
799
|
*/
|
|
785
800
|
stampDeleteOauthProviders: (input: TDeleteOauthProvidersBody) => Promise<TSignedRequest>;
|
|
786
801
|
/**
|
|
787
|
-
* Delete an existing
|
|
802
|
+
* Delete an existing policy.
|
|
788
803
|
*
|
|
789
804
|
* Sign the provided `TDeletePolicyBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/delete_policy).
|
|
790
805
|
*
|
|
@@ -798,7 +813,7 @@ export declare class TurnkeyClient {
|
|
|
798
813
|
*/
|
|
799
814
|
stampDeletePolicy: (input: TDeletePolicyBody) => Promise<TSignedRequest>;
|
|
800
815
|
/**
|
|
801
|
-
* Delete
|
|
816
|
+
* Delete private key tags within an organization.
|
|
802
817
|
*
|
|
803
818
|
* Sign the provided `TDeletePrivateKeyTagsBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/delete_private_key_tags).
|
|
804
819
|
*
|
|
@@ -812,7 +827,7 @@ export declare class TurnkeyClient {
|
|
|
812
827
|
*/
|
|
813
828
|
stampDeletePrivateKeyTags: (input: TDeletePrivateKeyTagsBody) => Promise<TSignedRequest>;
|
|
814
829
|
/**
|
|
815
|
-
*
|
|
830
|
+
* Delete private keys for an organization.
|
|
816
831
|
*
|
|
817
832
|
* Sign the provided `TDeletePrivateKeysBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/delete_private_keys).
|
|
818
833
|
*
|
|
@@ -826,7 +841,7 @@ export declare class TurnkeyClient {
|
|
|
826
841
|
*/
|
|
827
842
|
stampDeletePrivateKeys: (input: TDeletePrivateKeysBody) => Promise<TSignedRequest>;
|
|
828
843
|
/**
|
|
829
|
-
* Delete a
|
|
844
|
+
* Delete a smart contract interface.
|
|
830
845
|
*
|
|
831
846
|
* Sign the provided `TDeleteSmartContractInterfaceBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/delete_smart_contract_interface).
|
|
832
847
|
*
|
|
@@ -840,7 +855,7 @@ export declare class TurnkeyClient {
|
|
|
840
855
|
*/
|
|
841
856
|
stampDeleteSmartContractInterface: (input: TDeleteSmartContractInterfaceBody) => Promise<TSignedRequest>;
|
|
842
857
|
/**
|
|
843
|
-
*
|
|
858
|
+
* Delete a sub-organization.
|
|
844
859
|
*
|
|
845
860
|
* Sign the provided `TDeleteSubOrganizationBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/delete_sub_organization).
|
|
846
861
|
*
|
|
@@ -854,7 +869,7 @@ export declare class TurnkeyClient {
|
|
|
854
869
|
*/
|
|
855
870
|
stampDeleteSubOrganization: (input: TDeleteSubOrganizationBody) => Promise<TSignedRequest>;
|
|
856
871
|
/**
|
|
857
|
-
* Delete
|
|
872
|
+
* Delete user tags within an organization.
|
|
858
873
|
*
|
|
859
874
|
* Sign the provided `TDeleteUserTagsBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/delete_user_tags).
|
|
860
875
|
*
|
|
@@ -868,7 +883,7 @@ export declare class TurnkeyClient {
|
|
|
868
883
|
*/
|
|
869
884
|
stampDeleteUserTags: (input: TDeleteUserTagsBody) => Promise<TSignedRequest>;
|
|
870
885
|
/**
|
|
871
|
-
* Delete
|
|
886
|
+
* Delete users within an organization.
|
|
872
887
|
*
|
|
873
888
|
* Sign the provided `TDeleteUsersBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/delete_users).
|
|
874
889
|
*
|
|
@@ -882,7 +897,7 @@ export declare class TurnkeyClient {
|
|
|
882
897
|
*/
|
|
883
898
|
stampDeleteUsers: (input: TDeleteUsersBody) => Promise<TSignedRequest>;
|
|
884
899
|
/**
|
|
885
|
-
*
|
|
900
|
+
* Delete wallets for an organization.
|
|
886
901
|
*
|
|
887
902
|
* Sign the provided `TDeleteWalletsBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/delete_wallets).
|
|
888
903
|
*
|
|
@@ -896,7 +911,7 @@ export declare class TurnkeyClient {
|
|
|
896
911
|
*/
|
|
897
912
|
stampDeleteWallets: (input: TDeleteWalletsBody) => Promise<TSignedRequest>;
|
|
898
913
|
/**
|
|
899
|
-
* Authenticate a user via
|
|
914
|
+
* Authenticate a user via email.
|
|
900
915
|
*
|
|
901
916
|
* Sign the provided `TEmailAuthBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/email_auth).
|
|
902
917
|
*
|
|
@@ -910,7 +925,7 @@ export declare class TurnkeyClient {
|
|
|
910
925
|
*/
|
|
911
926
|
stampEmailAuth: (input: TEmailAuthBody) => Promise<TSignedRequest>;
|
|
912
927
|
/**
|
|
913
|
-
*
|
|
928
|
+
* Export a private key.
|
|
914
929
|
*
|
|
915
930
|
* Sign the provided `TExportPrivateKeyBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/export_private_key).
|
|
916
931
|
*
|
|
@@ -924,7 +939,7 @@ export declare class TurnkeyClient {
|
|
|
924
939
|
*/
|
|
925
940
|
stampExportPrivateKey: (input: TExportPrivateKeyBody) => Promise<TSignedRequest>;
|
|
926
941
|
/**
|
|
927
|
-
*
|
|
942
|
+
* Export a wallet.
|
|
928
943
|
*
|
|
929
944
|
* Sign the provided `TExportWalletBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/export_wallet).
|
|
930
945
|
*
|
|
@@ -938,7 +953,7 @@ export declare class TurnkeyClient {
|
|
|
938
953
|
*/
|
|
939
954
|
stampExportWallet: (input: TExportWalletBody) => Promise<TSignedRequest>;
|
|
940
955
|
/**
|
|
941
|
-
*
|
|
956
|
+
* Export a wallet account.
|
|
942
957
|
*
|
|
943
958
|
* Sign the provided `TExportWalletAccountBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/export_wallet_account).
|
|
944
959
|
*
|
|
@@ -952,7 +967,7 @@ export declare class TurnkeyClient {
|
|
|
952
967
|
*/
|
|
953
968
|
stampExportWalletAccount: (input: TExportWalletAccountBody) => Promise<TSignedRequest>;
|
|
954
969
|
/**
|
|
955
|
-
*
|
|
970
|
+
* Import a private key.
|
|
956
971
|
*
|
|
957
972
|
* Sign the provided `TImportPrivateKeyBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/import_private_key).
|
|
958
973
|
*
|
|
@@ -966,7 +981,7 @@ export declare class TurnkeyClient {
|
|
|
966
981
|
*/
|
|
967
982
|
stampImportPrivateKey: (input: TImportPrivateKeyBody) => Promise<TSignedRequest>;
|
|
968
983
|
/**
|
|
969
|
-
*
|
|
984
|
+
* Import a wallet.
|
|
970
985
|
*
|
|
971
986
|
* Sign the provided `TImportWalletBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/import_wallet).
|
|
972
987
|
*
|
|
@@ -980,7 +995,7 @@ export declare class TurnkeyClient {
|
|
|
980
995
|
*/
|
|
981
996
|
stampImportWallet: (input: TImportWalletBody) => Promise<TSignedRequest>;
|
|
982
997
|
/**
|
|
983
|
-
* Initiate a fiat on ramp flow
|
|
998
|
+
* Initiate a fiat on ramp flow.
|
|
984
999
|
*
|
|
985
1000
|
* Sign the provided `TInitFiatOnRampBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/init_fiat_on_ramp).
|
|
986
1001
|
*
|
|
@@ -994,7 +1009,7 @@ export declare class TurnkeyClient {
|
|
|
994
1009
|
*/
|
|
995
1010
|
stampInitFiatOnRamp: (input: TInitFiatOnRampBody) => Promise<TSignedRequest>;
|
|
996
1011
|
/**
|
|
997
|
-
*
|
|
1012
|
+
* Initialize a new private key import.
|
|
998
1013
|
*
|
|
999
1014
|
* Sign the provided `TInitImportPrivateKeyBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/init_import_private_key).
|
|
1000
1015
|
*
|
|
@@ -1008,7 +1023,7 @@ export declare class TurnkeyClient {
|
|
|
1008
1023
|
*/
|
|
1009
1024
|
stampInitImportPrivateKey: (input: TInitImportPrivateKeyBody) => Promise<TSignedRequest>;
|
|
1010
1025
|
/**
|
|
1011
|
-
*
|
|
1026
|
+
* Initialize a new wallet import.
|
|
1012
1027
|
*
|
|
1013
1028
|
* Sign the provided `TInitImportWalletBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/init_import_wallet).
|
|
1014
1029
|
*
|
|
@@ -1022,7 +1037,7 @@ export declare class TurnkeyClient {
|
|
|
1022
1037
|
*/
|
|
1023
1038
|
stampInitImportWallet: (input: TInitImportWalletBody) => Promise<TSignedRequest>;
|
|
1024
1039
|
/**
|
|
1025
|
-
* Initiate a
|
|
1040
|
+
* Initiate a generic OTP activity.
|
|
1026
1041
|
*
|
|
1027
1042
|
* Sign the provided `TInitOtpBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/init_otp).
|
|
1028
1043
|
*
|
|
@@ -1036,7 +1051,7 @@ export declare class TurnkeyClient {
|
|
|
1036
1051
|
*/
|
|
1037
1052
|
stampInitOtp: (input: TInitOtpBody) => Promise<TSignedRequest>;
|
|
1038
1053
|
/**
|
|
1039
|
-
* Initiate an OTP auth activity
|
|
1054
|
+
* Initiate an OTP auth activity.
|
|
1040
1055
|
*
|
|
1041
1056
|
* Sign the provided `TInitOtpAuthBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/init_otp_auth).
|
|
1042
1057
|
*
|
|
@@ -1050,7 +1065,7 @@ export declare class TurnkeyClient {
|
|
|
1050
1065
|
*/
|
|
1051
1066
|
stampInitOtpAuth: (input: TInitOtpAuthBody) => Promise<TSignedRequest>;
|
|
1052
1067
|
/**
|
|
1053
|
-
*
|
|
1068
|
+
* Initialize a new email recovery.
|
|
1054
1069
|
*
|
|
1055
1070
|
* Sign the provided `TInitUserEmailRecoveryBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/init_user_email_recovery).
|
|
1056
1071
|
*
|
|
@@ -1064,7 +1079,7 @@ export declare class TurnkeyClient {
|
|
|
1064
1079
|
*/
|
|
1065
1080
|
stampInitUserEmailRecovery: (input: TInitUserEmailRecoveryBody) => Promise<TSignedRequest>;
|
|
1066
1081
|
/**
|
|
1067
|
-
* Authenticate a user with an
|
|
1082
|
+
* Authenticate a user with an OIDC token (Oauth).
|
|
1068
1083
|
*
|
|
1069
1084
|
* Sign the provided `TOauthBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/oauth).
|
|
1070
1085
|
*
|
|
@@ -1078,7 +1093,7 @@ export declare class TurnkeyClient {
|
|
|
1078
1093
|
*/
|
|
1079
1094
|
stampOauth: (input: TOauthBody) => Promise<TSignedRequest>;
|
|
1080
1095
|
/**
|
|
1081
|
-
* Create an Oauth session for a user
|
|
1096
|
+
* Create an Oauth session for a user.
|
|
1082
1097
|
*
|
|
1083
1098
|
* Sign the provided `TOauthLoginBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/oauth_login).
|
|
1084
1099
|
*
|
|
@@ -1092,7 +1107,7 @@ export declare class TurnkeyClient {
|
|
|
1092
1107
|
*/
|
|
1093
1108
|
stampOauthLogin: (input: TOauthLoginBody) => Promise<TSignedRequest>;
|
|
1094
1109
|
/**
|
|
1095
|
-
* Authenticate a user with an OTP code sent via email or SMS
|
|
1110
|
+
* Authenticate a user with an OTP code sent via email or SMS.
|
|
1096
1111
|
*
|
|
1097
1112
|
* Sign the provided `TOtpAuthBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/otp_auth).
|
|
1098
1113
|
*
|
|
@@ -1106,7 +1121,7 @@ export declare class TurnkeyClient {
|
|
|
1106
1121
|
*/
|
|
1107
1122
|
stampOtpAuth: (input: TOtpAuthBody) => Promise<TSignedRequest>;
|
|
1108
1123
|
/**
|
|
1109
|
-
* Create an OTP session for a user
|
|
1124
|
+
* Create an OTP session for a user.
|
|
1110
1125
|
*
|
|
1111
1126
|
* Sign the provided `TOtpLoginBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/otp_login).
|
|
1112
1127
|
*
|
|
@@ -1120,7 +1135,7 @@ export declare class TurnkeyClient {
|
|
|
1120
1135
|
*/
|
|
1121
1136
|
stampOtpLogin: (input: TOtpLoginBody) => Promise<TSignedRequest>;
|
|
1122
1137
|
/**
|
|
1123
|
-
*
|
|
1138
|
+
* Complete the process of recovering a user by adding an authenticator.
|
|
1124
1139
|
*
|
|
1125
1140
|
* Sign the provided `TRecoverUserBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/recover_user).
|
|
1126
1141
|
*
|
|
@@ -1134,7 +1149,7 @@ export declare class TurnkeyClient {
|
|
|
1134
1149
|
*/
|
|
1135
1150
|
stampRecoverUser: (input: TRecoverUserBody) => Promise<TSignedRequest>;
|
|
1136
1151
|
/**
|
|
1137
|
-
* Reject an
|
|
1152
|
+
* Reject an activity.
|
|
1138
1153
|
*
|
|
1139
1154
|
* Sign the provided `TRejectActivityBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/reject_activity).
|
|
1140
1155
|
*
|
|
@@ -1148,7 +1163,7 @@ export declare class TurnkeyClient {
|
|
|
1148
1163
|
*/
|
|
1149
1164
|
stampRejectActivity: (input: TRejectActivityBody) => Promise<TSignedRequest>;
|
|
1150
1165
|
/**
|
|
1151
|
-
*
|
|
1166
|
+
* Remove an organization feature. This activity must be approved by the current root quorum.
|
|
1152
1167
|
*
|
|
1153
1168
|
* Sign the provided `TRemoveOrganizationFeatureBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/remove_organization_feature).
|
|
1154
1169
|
*
|
|
@@ -1162,7 +1177,7 @@ export declare class TurnkeyClient {
|
|
|
1162
1177
|
*/
|
|
1163
1178
|
stampRemoveOrganizationFeature: (input: TRemoveOrganizationFeatureBody) => Promise<TSignedRequest>;
|
|
1164
1179
|
/**
|
|
1165
|
-
*
|
|
1180
|
+
* Set an organization feature. This activity must be approved by the current root quorum.
|
|
1166
1181
|
*
|
|
1167
1182
|
* Sign the provided `TSetOrganizationFeatureBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/set_organization_feature).
|
|
1168
1183
|
*
|
|
@@ -1176,7 +1191,7 @@ export declare class TurnkeyClient {
|
|
|
1176
1191
|
*/
|
|
1177
1192
|
stampSetOrganizationFeature: (input: TSetOrganizationFeatureBody) => Promise<TSignedRequest>;
|
|
1178
1193
|
/**
|
|
1179
|
-
* Sign a raw payload
|
|
1194
|
+
* Sign a raw payload.
|
|
1180
1195
|
*
|
|
1181
1196
|
* Sign the provided `TSignRawPayloadBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/sign_raw_payload).
|
|
1182
1197
|
*
|
|
@@ -1190,7 +1205,7 @@ export declare class TurnkeyClient {
|
|
|
1190
1205
|
*/
|
|
1191
1206
|
stampSignRawPayload: (input: TSignRawPayloadBody) => Promise<TSignedRequest>;
|
|
1192
1207
|
/**
|
|
1193
|
-
* Sign multiple raw payloads with the same signing parameters
|
|
1208
|
+
* Sign multiple raw payloads with the same signing parameters.
|
|
1194
1209
|
*
|
|
1195
1210
|
* Sign the provided `TSignRawPayloadsBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/sign_raw_payloads).
|
|
1196
1211
|
*
|
|
@@ -1204,7 +1219,7 @@ export declare class TurnkeyClient {
|
|
|
1204
1219
|
*/
|
|
1205
1220
|
stampSignRawPayloads: (input: TSignRawPayloadsBody) => Promise<TSignedRequest>;
|
|
1206
1221
|
/**
|
|
1207
|
-
* Sign a transaction
|
|
1222
|
+
* Sign a transaction.
|
|
1208
1223
|
*
|
|
1209
1224
|
* Sign the provided `TSignTransactionBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/sign_transaction).
|
|
1210
1225
|
*
|
|
@@ -1218,7 +1233,7 @@ export declare class TurnkeyClient {
|
|
|
1218
1233
|
*/
|
|
1219
1234
|
stampSignTransaction: (input: TSignTransactionBody) => Promise<TSignedRequest>;
|
|
1220
1235
|
/**
|
|
1221
|
-
* Create a session for a user through stamping client side (
|
|
1236
|
+
* Create a session for a user through stamping client side (API key, wallet client, or passkey client).
|
|
1222
1237
|
*
|
|
1223
1238
|
* Sign the provided `TStampLoginBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/stamp_login).
|
|
1224
1239
|
*
|
|
@@ -1232,7 +1247,7 @@ export declare class TurnkeyClient {
|
|
|
1232
1247
|
*/
|
|
1233
1248
|
stampStampLogin: (input: TStampLoginBody) => Promise<TSignedRequest>;
|
|
1234
1249
|
/**
|
|
1235
|
-
* Update an existing
|
|
1250
|
+
* Update an existing policy.
|
|
1236
1251
|
*
|
|
1237
1252
|
* Sign the provided `TUpdatePolicyBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/update_policy).
|
|
1238
1253
|
*
|
|
@@ -1274,7 +1289,7 @@ export declare class TurnkeyClient {
|
|
|
1274
1289
|
*/
|
|
1275
1290
|
stampUpdateRootQuorum: (input: TUpdateRootQuorumBody) => Promise<TSignedRequest>;
|
|
1276
1291
|
/**
|
|
1277
|
-
* Update a
|
|
1292
|
+
* Update a user in an existing organization.
|
|
1278
1293
|
*
|
|
1279
1294
|
* Sign the provided `TUpdateUserBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/update_user).
|
|
1280
1295
|
*
|
|
@@ -1288,7 +1303,7 @@ export declare class TurnkeyClient {
|
|
|
1288
1303
|
*/
|
|
1289
1304
|
stampUpdateUser: (input: TUpdateUserBody) => Promise<TSignedRequest>;
|
|
1290
1305
|
/**
|
|
1291
|
-
* Update a
|
|
1306
|
+
* Update a user's email in an existing organization.
|
|
1292
1307
|
*
|
|
1293
1308
|
* Sign the provided `TUpdateUserEmailBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/update_user_email).
|
|
1294
1309
|
*
|
|
@@ -1302,7 +1317,7 @@ export declare class TurnkeyClient {
|
|
|
1302
1317
|
*/
|
|
1303
1318
|
stampUpdateUserEmail: (input: TUpdateUserEmailBody) => Promise<TSignedRequest>;
|
|
1304
1319
|
/**
|
|
1305
|
-
* Update a
|
|
1320
|
+
* Update a user's name in an existing organization.
|
|
1306
1321
|
*
|
|
1307
1322
|
* Sign the provided `TUpdateUserNameBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/update_user_name).
|
|
1308
1323
|
*
|
|
@@ -1316,7 +1331,7 @@ export declare class TurnkeyClient {
|
|
|
1316
1331
|
*/
|
|
1317
1332
|
stampUpdateUserName: (input: TUpdateUserNameBody) => Promise<TSignedRequest>;
|
|
1318
1333
|
/**
|
|
1319
|
-
* Update a
|
|
1334
|
+
* Update a user's phone number in an existing organization.
|
|
1320
1335
|
*
|
|
1321
1336
|
* Sign the provided `TUpdateUserPhoneNumberBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/update_user_phone_number).
|
|
1322
1337
|
*
|
|
@@ -1344,7 +1359,7 @@ export declare class TurnkeyClient {
|
|
|
1344
1359
|
*/
|
|
1345
1360
|
stampUpdateUserTag: (input: TUpdateUserTagBody) => Promise<TSignedRequest>;
|
|
1346
1361
|
/**
|
|
1347
|
-
* Update a wallet for an organization
|
|
1362
|
+
* Update a wallet for an organization.
|
|
1348
1363
|
*
|
|
1349
1364
|
* Sign the provided `TUpdateWalletBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/update_wallet).
|
|
1350
1365
|
*
|
|
@@ -1358,7 +1373,7 @@ export declare class TurnkeyClient {
|
|
|
1358
1373
|
*/
|
|
1359
1374
|
stampUpdateWallet: (input: TUpdateWalletBody) => Promise<TSignedRequest>;
|
|
1360
1375
|
/**
|
|
1361
|
-
* Verify a
|
|
1376
|
+
* Verify a generic OTP.
|
|
1362
1377
|
*
|
|
1363
1378
|
* Sign the provided `TVerifyOtpBody` with the client's `stamp` function, and submit the request (POST /public/v1/submit/verify_otp).
|
|
1364
1379
|
*
|
|
@@ -1372,7 +1387,7 @@ export declare class TurnkeyClient {
|
|
|
1372
1387
|
*/
|
|
1373
1388
|
stampVerifyOtp: (input: TVerifyOtpBody) => Promise<TSignedRequest>;
|
|
1374
1389
|
/**
|
|
1375
|
-
* Set a rate local rate limit just on the current endpoint, for purposes of testing with Vivosuite
|
|
1390
|
+
* Set a rate local rate limit just on the current endpoint, for purposes of testing with Vivosuite.
|
|
1376
1391
|
*
|
|
1377
1392
|
* Sign the provided `TTestRateLimitsBody` with the client's `stamp` function, and submit the request (POST /tkhq/api/v1/test_rate_limits).
|
|
1378
1393
|
*
|