@turnkey/http 2.1.0 → 2.2.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 +30 -0
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.d.ts +279 -495
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.d.ts.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.swagger.json +112 -188
- package/dist/__generated__/services/coordinator/public/v1/public_api.types.d.ts +52 -74
- package/dist/__generated__/services/coordinator/public/v1/public_api.types.d.ts.map +1 -1
- package/dist/esm/__generated__/barrel.js +4 -0
- package/dist/esm/__generated__/barrel.js.map +1 -0
- package/dist/esm/__generated__/services/coordinator/public/v1/public_api.client.js +1212 -0
- package/dist/esm/__generated__/services/coordinator/public/v1/public_api.client.js.map +1 -0
- package/dist/esm/__generated__/services/coordinator/public/v1/public_api.fetcher.js +1052 -0
- package/dist/esm/__generated__/services/coordinator/public/v1/public_api.fetcher.js.map +1 -0
- package/dist/esm/__generated__/services/coordinator/public/v1/public_api.swagger.json +5941 -0
- package/dist/esm/__generated__/services/coordinator/public/v1/public_api.types.js +6 -0
- package/dist/esm/__generated__/services/coordinator/public/v1/public_api.types.js.map +1 -0
- package/dist/esm/async.js +158 -0
- package/dist/esm/async.js.map +1 -0
- package/dist/esm/base.js +157 -0
- package/dist/esm/base.js.map +1 -0
- package/dist/esm/config.js +41 -0
- package/dist/esm/config.js.map +1 -0
- package/dist/esm/encoding.js +15 -0
- package/dist/esm/encoding.js.map +1 -0
- package/dist/esm/index.js +15 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/shared.js +15 -0
- package/dist/esm/shared.js.map +1 -0
- package/dist/esm/universal.js +10 -0
- package/dist/esm/universal.js.map +1 -0
- package/dist/esm/webauthn-json/api.js +24 -0
- package/dist/esm/webauthn-json/api.js.map +1 -0
- package/dist/esm/webauthn-json/base64url.js +32 -0
- package/dist/esm/webauthn-json/base64url.js.map +1 -0
- package/dist/esm/webauthn-json/convert.js +62 -0
- package/dist/esm/webauthn-json/convert.js.map +1 -0
- package/dist/esm/webauthn-json/index.js +13 -0
- package/dist/esm/webauthn-json/index.js.map +1 -0
- package/dist/esm/webauthn-json/json.js +2 -0
- package/dist/esm/webauthn-json/json.js.map +1 -0
- package/dist/esm/webauthn-json/schema-format.js +2 -0
- package/dist/esm/webauthn-json/schema-format.js.map +1 -0
- package/dist/esm/webauthn-json/schema.js +83 -0
- package/dist/esm/webauthn-json/schema.js.map +1 -0
- package/dist/esm/webauthn.js +90 -0
- package/dist/esm/webauthn.js.map +1 -0
- package/dist/webauthn.d.ts +1 -1
- package/dist/webauthn.d.ts.map +1 -1
- package/dist/webauthn.js.map +1 -1
- package/package.json +12 -2
|
@@ -58,6 +58,9 @@ export declare const getActivity: (input: TGetActivityInput) => Promise<{
|
|
|
58
58
|
rootUserId?: string;
|
|
59
59
|
};
|
|
60
60
|
createAuthenticatorsIntent?: {
|
|
61
|
+
/**
|
|
62
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
63
|
+
*/
|
|
61
64
|
authenticators: {
|
|
62
65
|
authenticatorName: string;
|
|
63
66
|
userId: string;
|
|
@@ -560,9 +563,6 @@ export declare const getActivity: (input: TGetActivityInput) => Promise<{
|
|
|
560
563
|
privateKeyIds: string[];
|
|
561
564
|
};
|
|
562
565
|
createInvitationsResult?: {
|
|
563
|
-
/**
|
|
564
|
-
* `POST /public/v1/submit/create_policy`
|
|
565
|
-
*/
|
|
566
566
|
invitationIds: string[];
|
|
567
567
|
};
|
|
568
568
|
acceptInvitationResult?: {
|
|
@@ -578,20 +578,12 @@ export declare const getActivity: (input: TGetActivityInput) => Promise<{
|
|
|
578
578
|
policyId: string;
|
|
579
579
|
};
|
|
580
580
|
disablePrivateKeyResult?: {
|
|
581
|
-
/**
|
|
582
|
-
* `POST /public/v1/submit/export_private_key`
|
|
583
|
-
*/
|
|
584
581
|
privateKeyId: string;
|
|
585
582
|
};
|
|
586
583
|
deleteUsersResult?: {
|
|
587
584
|
userIds: string[];
|
|
588
585
|
};
|
|
589
586
|
deleteAuthenticatorsResult?: {
|
|
590
|
-
/**
|
|
591
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
592
|
-
*
|
|
593
|
-
* See {@link DeleteAuthenticators}
|
|
594
|
-
*/
|
|
595
587
|
authenticatorIds: string[];
|
|
596
588
|
};
|
|
597
589
|
deleteInvitationResult?: {
|
|
@@ -628,6 +620,11 @@ export declare const getActivity: (input: TGetActivityInput) => Promise<{
|
|
|
628
620
|
privateKeyTagIds: string[];
|
|
629
621
|
privateKeyIds: string[];
|
|
630
622
|
};
|
|
623
|
+
/**
|
|
624
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
625
|
+
*
|
|
626
|
+
* See {@link NOOPCodegenAnchor}
|
|
627
|
+
*/
|
|
631
628
|
setPaymentMethodResult?: {
|
|
632
629
|
lastFour: string;
|
|
633
630
|
cardHolderName: string;
|
|
@@ -789,9 +786,6 @@ export declare const getActivity: (input: TGetActivityInput) => Promise<{
|
|
|
789
786
|
nanos: string;
|
|
790
787
|
};
|
|
791
788
|
}[];
|
|
792
|
-
/**
|
|
793
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
794
|
-
*/
|
|
795
789
|
fingerprint: string;
|
|
796
790
|
canApprove: boolean;
|
|
797
791
|
canReject: boolean;
|
|
@@ -992,11 +986,6 @@ export declare const getOrganization: (input: TGetOrganizationInput) => Promise<
|
|
|
992
986
|
policyId: string;
|
|
993
987
|
policyName: string;
|
|
994
988
|
effect: "EFFECT_ALLOW" | "EFFECT_DENY";
|
|
995
|
-
selectors: {
|
|
996
|
-
subject: string;
|
|
997
|
-
operator: "OPERATOR_EQUAL" | "OPERATOR_MORE_THAN" | "OPERATOR_MORE_THAN_OR_EQUAL" | "OPERATOR_LESS_THAN" | "OPERATOR_LESS_THAN_OR_EQUAL" | "OPERATOR_CONTAINS" | "OPERATOR_NOT_EQUAL" | "OPERATOR_IN" | "OPERATOR_NOT_IN" | "OPERATOR_CONTAINS_ONE" | "OPERATOR_CONTAINS_ALL";
|
|
998
|
-
targets: string[];
|
|
999
|
-
}[];
|
|
1000
989
|
createdAt: {
|
|
1001
990
|
seconds: string;
|
|
1002
991
|
nanos: string;
|
|
@@ -1015,7 +1004,7 @@ export declare const getOrganization: (input: TGetOrganizationInput) => Promise<
|
|
|
1015
1004
|
privateKeyName: string;
|
|
1016
1005
|
curve: "CURVE_SECP256K1" | "CURVE_ED25519";
|
|
1017
1006
|
addresses: {
|
|
1018
|
-
format?: "ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM";
|
|
1007
|
+
format?: "ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM" | "ADDRESS_FORMAT_SOLANA" | "ADDRESS_FORMAT_COSMOS";
|
|
1019
1008
|
address?: string;
|
|
1020
1009
|
}[];
|
|
1021
1010
|
privateKeyTags: string[];
|
|
@@ -1070,7 +1059,7 @@ export declare const getOrganization: (input: TGetOrganizationInput) => Promise<
|
|
|
1070
1059
|
privateKeyName: string;
|
|
1071
1060
|
curve: "CURVE_SECP256K1" | "CURVE_ED25519";
|
|
1072
1061
|
addresses: {
|
|
1073
|
-
format?: "ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM";
|
|
1062
|
+
format?: "ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM" | "ADDRESS_FORMAT_SOLANA" | "ADDRESS_FORMAT_COSMOS";
|
|
1074
1063
|
address?: string;
|
|
1075
1064
|
}[];
|
|
1076
1065
|
privateKeyTags: string[];
|
|
@@ -1140,11 +1129,6 @@ export declare const getPolicy: (input: TGetPolicyInput) => Promise<{
|
|
|
1140
1129
|
policyId: string;
|
|
1141
1130
|
policyName: string;
|
|
1142
1131
|
effect: "EFFECT_ALLOW" | "EFFECT_DENY";
|
|
1143
|
-
selectors: {
|
|
1144
|
-
subject: string;
|
|
1145
|
-
operator: "OPERATOR_EQUAL" | "OPERATOR_MORE_THAN" | "OPERATOR_MORE_THAN_OR_EQUAL" | "OPERATOR_LESS_THAN" | "OPERATOR_LESS_THAN_OR_EQUAL" | "OPERATOR_CONTAINS" | "OPERATOR_NOT_EQUAL" | "OPERATOR_IN" | "OPERATOR_NOT_IN" | "OPERATOR_CONTAINS_ONE" | "OPERATOR_CONTAINS_ALL";
|
|
1146
|
-
targets: string[];
|
|
1147
|
-
}[];
|
|
1148
1132
|
createdAt: {
|
|
1149
1133
|
seconds: string;
|
|
1150
1134
|
nanos: string;
|
|
@@ -1186,13 +1170,16 @@ export type TGetPrivateKeyBody = operations["PublicApiService_GetPrivateKey"]["p
|
|
|
1186
1170
|
* `POST /public/v1/query/get_private_key`
|
|
1187
1171
|
*/
|
|
1188
1172
|
export declare const getPrivateKey: (input: TGetPrivateKeyInput) => Promise<{
|
|
1173
|
+
/**
|
|
1174
|
+
* `POST /public/v1/submit/init_user_email_recovery`
|
|
1175
|
+
*/
|
|
1189
1176
|
privateKey: {
|
|
1190
1177
|
privateKeyId: string;
|
|
1191
1178
|
publicKey: string;
|
|
1192
1179
|
privateKeyName: string;
|
|
1193
1180
|
curve: "CURVE_SECP256K1" | "CURVE_ED25519";
|
|
1194
1181
|
addresses: {
|
|
1195
|
-
format?: "ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM";
|
|
1182
|
+
format?: "ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM" | "ADDRESS_FORMAT_SOLANA" | "ADDRESS_FORMAT_COSMOS";
|
|
1196
1183
|
address?: string;
|
|
1197
1184
|
}[];
|
|
1198
1185
|
privateKeyTags: string[];
|
|
@@ -1394,6 +1381,9 @@ export declare const getActivities: (input: TGetActivitiesInput) => Promise<{
|
|
|
1394
1381
|
rootUserId?: string;
|
|
1395
1382
|
};
|
|
1396
1383
|
createAuthenticatorsIntent?: {
|
|
1384
|
+
/**
|
|
1385
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
1386
|
+
*/
|
|
1397
1387
|
authenticators: {
|
|
1398
1388
|
authenticatorName: string;
|
|
1399
1389
|
userId: string;
|
|
@@ -1896,9 +1886,6 @@ export declare const getActivities: (input: TGetActivitiesInput) => Promise<{
|
|
|
1896
1886
|
privateKeyIds: string[];
|
|
1897
1887
|
};
|
|
1898
1888
|
createInvitationsResult?: {
|
|
1899
|
-
/**
|
|
1900
|
-
* `POST /public/v1/submit/create_policy`
|
|
1901
|
-
*/
|
|
1902
1889
|
invitationIds: string[];
|
|
1903
1890
|
};
|
|
1904
1891
|
acceptInvitationResult?: {
|
|
@@ -1914,20 +1901,12 @@ export declare const getActivities: (input: TGetActivitiesInput) => Promise<{
|
|
|
1914
1901
|
policyId: string;
|
|
1915
1902
|
};
|
|
1916
1903
|
disablePrivateKeyResult?: {
|
|
1917
|
-
/**
|
|
1918
|
-
* `POST /public/v1/submit/export_private_key`
|
|
1919
|
-
*/
|
|
1920
1904
|
privateKeyId: string;
|
|
1921
1905
|
};
|
|
1922
1906
|
deleteUsersResult?: {
|
|
1923
1907
|
userIds: string[];
|
|
1924
1908
|
};
|
|
1925
1909
|
deleteAuthenticatorsResult?: {
|
|
1926
|
-
/**
|
|
1927
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
1928
|
-
*
|
|
1929
|
-
* See {@link DeleteAuthenticators}
|
|
1930
|
-
*/
|
|
1931
1910
|
authenticatorIds: string[];
|
|
1932
1911
|
};
|
|
1933
1912
|
deleteInvitationResult?: {
|
|
@@ -1964,6 +1943,11 @@ export declare const getActivities: (input: TGetActivitiesInput) => Promise<{
|
|
|
1964
1943
|
privateKeyTagIds: string[];
|
|
1965
1944
|
privateKeyIds: string[];
|
|
1966
1945
|
};
|
|
1946
|
+
/**
|
|
1947
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
1948
|
+
*
|
|
1949
|
+
* See {@link NOOPCodegenAnchor}
|
|
1950
|
+
*/
|
|
1967
1951
|
setPaymentMethodResult?: {
|
|
1968
1952
|
lastFour: string;
|
|
1969
1953
|
cardHolderName: string;
|
|
@@ -2125,9 +2109,6 @@ export declare const getActivities: (input: TGetActivitiesInput) => Promise<{
|
|
|
2125
2109
|
nanos: string;
|
|
2126
2110
|
};
|
|
2127
2111
|
}[];
|
|
2128
|
-
/**
|
|
2129
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
2130
|
-
*/
|
|
2131
2112
|
fingerprint: string;
|
|
2132
2113
|
canApprove: boolean;
|
|
2133
2114
|
canReject: boolean;
|
|
@@ -2173,11 +2154,6 @@ export declare const getPolicies: (input: TGetPoliciesInput) => Promise<{
|
|
|
2173
2154
|
policyId: string;
|
|
2174
2155
|
policyName: string;
|
|
2175
2156
|
effect: "EFFECT_ALLOW" | "EFFECT_DENY";
|
|
2176
|
-
selectors: {
|
|
2177
|
-
subject: string;
|
|
2178
|
-
operator: "OPERATOR_EQUAL" | "OPERATOR_MORE_THAN" | "OPERATOR_MORE_THAN_OR_EQUAL" | "OPERATOR_LESS_THAN" | "OPERATOR_LESS_THAN_OR_EQUAL" | "OPERATOR_CONTAINS" | "OPERATOR_NOT_EQUAL" | "OPERATOR_IN" | "OPERATOR_NOT_IN" | "OPERATOR_CONTAINS_ONE" | "OPERATOR_CONTAINS_ALL";
|
|
2179
|
-
targets: string[];
|
|
2180
|
-
}[];
|
|
2181
2157
|
createdAt: {
|
|
2182
2158
|
seconds: string;
|
|
2183
2159
|
nanos: string;
|
|
@@ -2225,7 +2201,7 @@ export declare const getPrivateKeys: (input: TGetPrivateKeysInput) => Promise<{
|
|
|
2225
2201
|
privateKeyName: string;
|
|
2226
2202
|
curve: "CURVE_SECP256K1" | "CURVE_ED25519";
|
|
2227
2203
|
addresses: {
|
|
2228
|
-
format?: "ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM";
|
|
2204
|
+
format?: "ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM" | "ADDRESS_FORMAT_SOLANA" | "ADDRESS_FORMAT_COSMOS";
|
|
2229
2205
|
address?: string;
|
|
2230
2206
|
}[];
|
|
2231
2207
|
privateKeyTags: string[];
|
|
@@ -2506,6 +2482,9 @@ export declare const approveActivity: (input: TApproveActivityInput) => Promise<
|
|
|
2506
2482
|
rootUserId?: string;
|
|
2507
2483
|
};
|
|
2508
2484
|
createAuthenticatorsIntent?: {
|
|
2485
|
+
/**
|
|
2486
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
2487
|
+
*/
|
|
2509
2488
|
authenticators: {
|
|
2510
2489
|
authenticatorName: string;
|
|
2511
2490
|
userId: string;
|
|
@@ -3008,9 +2987,6 @@ export declare const approveActivity: (input: TApproveActivityInput) => Promise<
|
|
|
3008
2987
|
privateKeyIds: string[];
|
|
3009
2988
|
};
|
|
3010
2989
|
createInvitationsResult?: {
|
|
3011
|
-
/**
|
|
3012
|
-
* `POST /public/v1/submit/create_policy`
|
|
3013
|
-
*/
|
|
3014
2990
|
invitationIds: string[];
|
|
3015
2991
|
};
|
|
3016
2992
|
acceptInvitationResult?: {
|
|
@@ -3026,20 +3002,12 @@ export declare const approveActivity: (input: TApproveActivityInput) => Promise<
|
|
|
3026
3002
|
policyId: string;
|
|
3027
3003
|
};
|
|
3028
3004
|
disablePrivateKeyResult?: {
|
|
3029
|
-
/**
|
|
3030
|
-
* `POST /public/v1/submit/export_private_key`
|
|
3031
|
-
*/
|
|
3032
3005
|
privateKeyId: string;
|
|
3033
3006
|
};
|
|
3034
3007
|
deleteUsersResult?: {
|
|
3035
3008
|
userIds: string[];
|
|
3036
3009
|
};
|
|
3037
3010
|
deleteAuthenticatorsResult?: {
|
|
3038
|
-
/**
|
|
3039
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
3040
|
-
*
|
|
3041
|
-
* See {@link DeleteAuthenticators}
|
|
3042
|
-
*/
|
|
3043
3011
|
authenticatorIds: string[];
|
|
3044
3012
|
};
|
|
3045
3013
|
deleteInvitationResult?: {
|
|
@@ -3076,6 +3044,11 @@ export declare const approveActivity: (input: TApproveActivityInput) => Promise<
|
|
|
3076
3044
|
privateKeyTagIds: string[];
|
|
3077
3045
|
privateKeyIds: string[];
|
|
3078
3046
|
};
|
|
3047
|
+
/**
|
|
3048
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
3049
|
+
*
|
|
3050
|
+
* See {@link NOOPCodegenAnchor}
|
|
3051
|
+
*/
|
|
3079
3052
|
setPaymentMethodResult?: {
|
|
3080
3053
|
lastFour: string;
|
|
3081
3054
|
cardHolderName: string;
|
|
@@ -3237,9 +3210,6 @@ export declare const approveActivity: (input: TApproveActivityInput) => Promise<
|
|
|
3237
3210
|
nanos: string;
|
|
3238
3211
|
};
|
|
3239
3212
|
}[];
|
|
3240
|
-
/**
|
|
3241
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
3242
|
-
*/
|
|
3243
3213
|
fingerprint: string;
|
|
3244
3214
|
canApprove: boolean;
|
|
3245
3215
|
canReject: boolean;
|
|
@@ -3317,6 +3287,9 @@ export declare const createApiKeys: (input: TCreateApiKeysInput) => Promise<{
|
|
|
3317
3287
|
rootUserId?: string;
|
|
3318
3288
|
};
|
|
3319
3289
|
createAuthenticatorsIntent?: {
|
|
3290
|
+
/**
|
|
3291
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
3292
|
+
*/
|
|
3320
3293
|
authenticators: {
|
|
3321
3294
|
authenticatorName: string;
|
|
3322
3295
|
userId: string;
|
|
@@ -3819,9 +3792,6 @@ export declare const createApiKeys: (input: TCreateApiKeysInput) => Promise<{
|
|
|
3819
3792
|
privateKeyIds: string[];
|
|
3820
3793
|
};
|
|
3821
3794
|
createInvitationsResult?: {
|
|
3822
|
-
/**
|
|
3823
|
-
* `POST /public/v1/submit/create_policy`
|
|
3824
|
-
*/
|
|
3825
3795
|
invitationIds: string[];
|
|
3826
3796
|
};
|
|
3827
3797
|
acceptInvitationResult?: {
|
|
@@ -3837,20 +3807,12 @@ export declare const createApiKeys: (input: TCreateApiKeysInput) => Promise<{
|
|
|
3837
3807
|
policyId: string;
|
|
3838
3808
|
};
|
|
3839
3809
|
disablePrivateKeyResult?: {
|
|
3840
|
-
/**
|
|
3841
|
-
* `POST /public/v1/submit/export_private_key`
|
|
3842
|
-
*/
|
|
3843
3810
|
privateKeyId: string;
|
|
3844
3811
|
};
|
|
3845
3812
|
deleteUsersResult?: {
|
|
3846
3813
|
userIds: string[];
|
|
3847
3814
|
};
|
|
3848
3815
|
deleteAuthenticatorsResult?: {
|
|
3849
|
-
/**
|
|
3850
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
3851
|
-
*
|
|
3852
|
-
* See {@link DeleteAuthenticators}
|
|
3853
|
-
*/
|
|
3854
3816
|
authenticatorIds: string[];
|
|
3855
3817
|
};
|
|
3856
3818
|
deleteInvitationResult?: {
|
|
@@ -3887,6 +3849,11 @@ export declare const createApiKeys: (input: TCreateApiKeysInput) => Promise<{
|
|
|
3887
3849
|
privateKeyTagIds: string[];
|
|
3888
3850
|
privateKeyIds: string[];
|
|
3889
3851
|
};
|
|
3852
|
+
/**
|
|
3853
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
3854
|
+
*
|
|
3855
|
+
* See {@link NOOPCodegenAnchor}
|
|
3856
|
+
*/
|
|
3890
3857
|
setPaymentMethodResult?: {
|
|
3891
3858
|
lastFour: string;
|
|
3892
3859
|
cardHolderName: string;
|
|
@@ -4048,9 +4015,6 @@ export declare const createApiKeys: (input: TCreateApiKeysInput) => Promise<{
|
|
|
4048
4015
|
nanos: string;
|
|
4049
4016
|
};
|
|
4050
4017
|
}[];
|
|
4051
|
-
/**
|
|
4052
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
4053
|
-
*/
|
|
4054
4018
|
fingerprint: string;
|
|
4055
4019
|
canApprove: boolean;
|
|
4056
4020
|
canReject: boolean;
|
|
@@ -4128,6 +4092,9 @@ export declare const createApiOnlyUsers: (input: TCreateApiOnlyUsersInput) => Pr
|
|
|
4128
4092
|
rootUserId?: string;
|
|
4129
4093
|
};
|
|
4130
4094
|
createAuthenticatorsIntent?: {
|
|
4095
|
+
/**
|
|
4096
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
4097
|
+
*/
|
|
4131
4098
|
authenticators: {
|
|
4132
4099
|
authenticatorName: string;
|
|
4133
4100
|
userId: string;
|
|
@@ -4630,9 +4597,6 @@ export declare const createApiOnlyUsers: (input: TCreateApiOnlyUsersInput) => Pr
|
|
|
4630
4597
|
privateKeyIds: string[];
|
|
4631
4598
|
};
|
|
4632
4599
|
createInvitationsResult?: {
|
|
4633
|
-
/**
|
|
4634
|
-
* `POST /public/v1/submit/create_policy`
|
|
4635
|
-
*/
|
|
4636
4600
|
invitationIds: string[];
|
|
4637
4601
|
};
|
|
4638
4602
|
acceptInvitationResult?: {
|
|
@@ -4648,20 +4612,12 @@ export declare const createApiOnlyUsers: (input: TCreateApiOnlyUsersInput) => Pr
|
|
|
4648
4612
|
policyId: string;
|
|
4649
4613
|
};
|
|
4650
4614
|
disablePrivateKeyResult?: {
|
|
4651
|
-
/**
|
|
4652
|
-
* `POST /public/v1/submit/export_private_key`
|
|
4653
|
-
*/
|
|
4654
4615
|
privateKeyId: string;
|
|
4655
4616
|
};
|
|
4656
4617
|
deleteUsersResult?: {
|
|
4657
4618
|
userIds: string[];
|
|
4658
4619
|
};
|
|
4659
4620
|
deleteAuthenticatorsResult?: {
|
|
4660
|
-
/**
|
|
4661
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
4662
|
-
*
|
|
4663
|
-
* See {@link DeleteAuthenticators}
|
|
4664
|
-
*/
|
|
4665
4621
|
authenticatorIds: string[];
|
|
4666
4622
|
};
|
|
4667
4623
|
deleteInvitationResult?: {
|
|
@@ -4698,6 +4654,11 @@ export declare const createApiOnlyUsers: (input: TCreateApiOnlyUsersInput) => Pr
|
|
|
4698
4654
|
privateKeyTagIds: string[];
|
|
4699
4655
|
privateKeyIds: string[];
|
|
4700
4656
|
};
|
|
4657
|
+
/**
|
|
4658
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
4659
|
+
*
|
|
4660
|
+
* See {@link NOOPCodegenAnchor}
|
|
4661
|
+
*/
|
|
4701
4662
|
setPaymentMethodResult?: {
|
|
4702
4663
|
lastFour: string;
|
|
4703
4664
|
cardHolderName: string;
|
|
@@ -4859,9 +4820,6 @@ export declare const createApiOnlyUsers: (input: TCreateApiOnlyUsersInput) => Pr
|
|
|
4859
4820
|
nanos: string;
|
|
4860
4821
|
};
|
|
4861
4822
|
}[];
|
|
4862
|
-
/**
|
|
4863
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
4864
|
-
*/
|
|
4865
4823
|
fingerprint: string;
|
|
4866
4824
|
canApprove: boolean;
|
|
4867
4825
|
canReject: boolean;
|
|
@@ -4939,6 +4897,9 @@ export declare const createAuthenticators: (input: TCreateAuthenticatorsInput) =
|
|
|
4939
4897
|
rootUserId?: string;
|
|
4940
4898
|
};
|
|
4941
4899
|
createAuthenticatorsIntent?: {
|
|
4900
|
+
/**
|
|
4901
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
4902
|
+
*/
|
|
4942
4903
|
authenticators: {
|
|
4943
4904
|
authenticatorName: string;
|
|
4944
4905
|
userId: string;
|
|
@@ -5441,9 +5402,6 @@ export declare const createAuthenticators: (input: TCreateAuthenticatorsInput) =
|
|
|
5441
5402
|
privateKeyIds: string[];
|
|
5442
5403
|
};
|
|
5443
5404
|
createInvitationsResult?: {
|
|
5444
|
-
/**
|
|
5445
|
-
* `POST /public/v1/submit/create_policy`
|
|
5446
|
-
*/
|
|
5447
5405
|
invitationIds: string[];
|
|
5448
5406
|
};
|
|
5449
5407
|
acceptInvitationResult?: {
|
|
@@ -5459,20 +5417,12 @@ export declare const createAuthenticators: (input: TCreateAuthenticatorsInput) =
|
|
|
5459
5417
|
policyId: string;
|
|
5460
5418
|
};
|
|
5461
5419
|
disablePrivateKeyResult?: {
|
|
5462
|
-
/**
|
|
5463
|
-
* `POST /public/v1/submit/export_private_key`
|
|
5464
|
-
*/
|
|
5465
5420
|
privateKeyId: string;
|
|
5466
5421
|
};
|
|
5467
5422
|
deleteUsersResult?: {
|
|
5468
5423
|
userIds: string[];
|
|
5469
5424
|
};
|
|
5470
5425
|
deleteAuthenticatorsResult?: {
|
|
5471
|
-
/**
|
|
5472
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
5473
|
-
*
|
|
5474
|
-
* See {@link DeleteAuthenticators}
|
|
5475
|
-
*/
|
|
5476
5426
|
authenticatorIds: string[];
|
|
5477
5427
|
};
|
|
5478
5428
|
deleteInvitationResult?: {
|
|
@@ -5509,6 +5459,11 @@ export declare const createAuthenticators: (input: TCreateAuthenticatorsInput) =
|
|
|
5509
5459
|
privateKeyTagIds: string[];
|
|
5510
5460
|
privateKeyIds: string[];
|
|
5511
5461
|
};
|
|
5462
|
+
/**
|
|
5463
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
5464
|
+
*
|
|
5465
|
+
* See {@link NOOPCodegenAnchor}
|
|
5466
|
+
*/
|
|
5512
5467
|
setPaymentMethodResult?: {
|
|
5513
5468
|
lastFour: string;
|
|
5514
5469
|
cardHolderName: string;
|
|
@@ -5670,9 +5625,6 @@ export declare const createAuthenticators: (input: TCreateAuthenticatorsInput) =
|
|
|
5670
5625
|
nanos: string;
|
|
5671
5626
|
};
|
|
5672
5627
|
}[];
|
|
5673
|
-
/**
|
|
5674
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
5675
|
-
*/
|
|
5676
5628
|
fingerprint: string;
|
|
5677
5629
|
canApprove: boolean;
|
|
5678
5630
|
canReject: boolean;
|
|
@@ -5750,6 +5702,9 @@ export declare const createInvitations: (input: TCreateInvitationsInput) => Prom
|
|
|
5750
5702
|
rootUserId?: string;
|
|
5751
5703
|
};
|
|
5752
5704
|
createAuthenticatorsIntent?: {
|
|
5705
|
+
/**
|
|
5706
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
5707
|
+
*/
|
|
5753
5708
|
authenticators: {
|
|
5754
5709
|
authenticatorName: string;
|
|
5755
5710
|
userId: string;
|
|
@@ -6252,9 +6207,6 @@ export declare const createInvitations: (input: TCreateInvitationsInput) => Prom
|
|
|
6252
6207
|
privateKeyIds: string[];
|
|
6253
6208
|
};
|
|
6254
6209
|
createInvitationsResult?: {
|
|
6255
|
-
/**
|
|
6256
|
-
* `POST /public/v1/submit/create_policy`
|
|
6257
|
-
*/
|
|
6258
6210
|
invitationIds: string[];
|
|
6259
6211
|
};
|
|
6260
6212
|
acceptInvitationResult?: {
|
|
@@ -6270,20 +6222,12 @@ export declare const createInvitations: (input: TCreateInvitationsInput) => Prom
|
|
|
6270
6222
|
policyId: string;
|
|
6271
6223
|
};
|
|
6272
6224
|
disablePrivateKeyResult?: {
|
|
6273
|
-
/**
|
|
6274
|
-
* `POST /public/v1/submit/export_private_key`
|
|
6275
|
-
*/
|
|
6276
6225
|
privateKeyId: string;
|
|
6277
6226
|
};
|
|
6278
6227
|
deleteUsersResult?: {
|
|
6279
6228
|
userIds: string[];
|
|
6280
6229
|
};
|
|
6281
6230
|
deleteAuthenticatorsResult?: {
|
|
6282
|
-
/**
|
|
6283
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
6284
|
-
*
|
|
6285
|
-
* See {@link DeleteAuthenticators}
|
|
6286
|
-
*/
|
|
6287
6231
|
authenticatorIds: string[];
|
|
6288
6232
|
};
|
|
6289
6233
|
deleteInvitationResult?: {
|
|
@@ -6320,6 +6264,11 @@ export declare const createInvitations: (input: TCreateInvitationsInput) => Prom
|
|
|
6320
6264
|
privateKeyTagIds: string[];
|
|
6321
6265
|
privateKeyIds: string[];
|
|
6322
6266
|
};
|
|
6267
|
+
/**
|
|
6268
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
6269
|
+
*
|
|
6270
|
+
* See {@link NOOPCodegenAnchor}
|
|
6271
|
+
*/
|
|
6323
6272
|
setPaymentMethodResult?: {
|
|
6324
6273
|
lastFour: string;
|
|
6325
6274
|
cardHolderName: string;
|
|
@@ -6481,9 +6430,6 @@ export declare const createInvitations: (input: TCreateInvitationsInput) => Prom
|
|
|
6481
6430
|
nanos: string;
|
|
6482
6431
|
};
|
|
6483
6432
|
}[];
|
|
6484
|
-
/**
|
|
6485
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
6486
|
-
*/
|
|
6487
6433
|
fingerprint: string;
|
|
6488
6434
|
canApprove: boolean;
|
|
6489
6435
|
canReject: boolean;
|
|
@@ -6561,6 +6507,9 @@ export declare const createPolicy: (input: TCreatePolicyInput) => Promise<{
|
|
|
6561
6507
|
rootUserId?: string;
|
|
6562
6508
|
};
|
|
6563
6509
|
createAuthenticatorsIntent?: {
|
|
6510
|
+
/**
|
|
6511
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
6512
|
+
*/
|
|
6564
6513
|
authenticators: {
|
|
6565
6514
|
authenticatorName: string;
|
|
6566
6515
|
userId: string;
|
|
@@ -7063,9 +7012,6 @@ export declare const createPolicy: (input: TCreatePolicyInput) => Promise<{
|
|
|
7063
7012
|
privateKeyIds: string[];
|
|
7064
7013
|
};
|
|
7065
7014
|
createInvitationsResult?: {
|
|
7066
|
-
/**
|
|
7067
|
-
* `POST /public/v1/submit/create_policy`
|
|
7068
|
-
*/
|
|
7069
7015
|
invitationIds: string[];
|
|
7070
7016
|
};
|
|
7071
7017
|
acceptInvitationResult?: {
|
|
@@ -7081,20 +7027,12 @@ export declare const createPolicy: (input: TCreatePolicyInput) => Promise<{
|
|
|
7081
7027
|
policyId: string;
|
|
7082
7028
|
};
|
|
7083
7029
|
disablePrivateKeyResult?: {
|
|
7084
|
-
/**
|
|
7085
|
-
* `POST /public/v1/submit/export_private_key`
|
|
7086
|
-
*/
|
|
7087
7030
|
privateKeyId: string;
|
|
7088
7031
|
};
|
|
7089
7032
|
deleteUsersResult?: {
|
|
7090
7033
|
userIds: string[];
|
|
7091
7034
|
};
|
|
7092
7035
|
deleteAuthenticatorsResult?: {
|
|
7093
|
-
/**
|
|
7094
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
7095
|
-
*
|
|
7096
|
-
* See {@link DeleteAuthenticators}
|
|
7097
|
-
*/
|
|
7098
7036
|
authenticatorIds: string[];
|
|
7099
7037
|
};
|
|
7100
7038
|
deleteInvitationResult?: {
|
|
@@ -7131,6 +7069,11 @@ export declare const createPolicy: (input: TCreatePolicyInput) => Promise<{
|
|
|
7131
7069
|
privateKeyTagIds: string[];
|
|
7132
7070
|
privateKeyIds: string[];
|
|
7133
7071
|
};
|
|
7072
|
+
/**
|
|
7073
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
7074
|
+
*
|
|
7075
|
+
* See {@link NOOPCodegenAnchor}
|
|
7076
|
+
*/
|
|
7134
7077
|
setPaymentMethodResult?: {
|
|
7135
7078
|
lastFour: string;
|
|
7136
7079
|
cardHolderName: string;
|
|
@@ -7292,9 +7235,6 @@ export declare const createPolicy: (input: TCreatePolicyInput) => Promise<{
|
|
|
7292
7235
|
nanos: string;
|
|
7293
7236
|
};
|
|
7294
7237
|
}[];
|
|
7295
|
-
/**
|
|
7296
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
7297
|
-
*/
|
|
7298
7238
|
fingerprint: string;
|
|
7299
7239
|
canApprove: boolean;
|
|
7300
7240
|
canReject: boolean;
|
|
@@ -7372,6 +7312,9 @@ export declare const createPrivateKeyTag: (input: TCreatePrivateKeyTagInput) =>
|
|
|
7372
7312
|
rootUserId?: string;
|
|
7373
7313
|
};
|
|
7374
7314
|
createAuthenticatorsIntent?: {
|
|
7315
|
+
/**
|
|
7316
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
7317
|
+
*/
|
|
7375
7318
|
authenticators: {
|
|
7376
7319
|
authenticatorName: string;
|
|
7377
7320
|
userId: string;
|
|
@@ -7874,9 +7817,6 @@ export declare const createPrivateKeyTag: (input: TCreatePrivateKeyTagInput) =>
|
|
|
7874
7817
|
privateKeyIds: string[];
|
|
7875
7818
|
};
|
|
7876
7819
|
createInvitationsResult?: {
|
|
7877
|
-
/**
|
|
7878
|
-
* `POST /public/v1/submit/create_policy`
|
|
7879
|
-
*/
|
|
7880
7820
|
invitationIds: string[];
|
|
7881
7821
|
};
|
|
7882
7822
|
acceptInvitationResult?: {
|
|
@@ -7892,20 +7832,12 @@ export declare const createPrivateKeyTag: (input: TCreatePrivateKeyTagInput) =>
|
|
|
7892
7832
|
policyId: string;
|
|
7893
7833
|
};
|
|
7894
7834
|
disablePrivateKeyResult?: {
|
|
7895
|
-
/**
|
|
7896
|
-
* `POST /public/v1/submit/export_private_key`
|
|
7897
|
-
*/
|
|
7898
7835
|
privateKeyId: string;
|
|
7899
7836
|
};
|
|
7900
7837
|
deleteUsersResult?: {
|
|
7901
7838
|
userIds: string[];
|
|
7902
7839
|
};
|
|
7903
7840
|
deleteAuthenticatorsResult?: {
|
|
7904
|
-
/**
|
|
7905
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
7906
|
-
*
|
|
7907
|
-
* See {@link DeleteAuthenticators}
|
|
7908
|
-
*/
|
|
7909
7841
|
authenticatorIds: string[];
|
|
7910
7842
|
};
|
|
7911
7843
|
deleteInvitationResult?: {
|
|
@@ -7942,6 +7874,11 @@ export declare const createPrivateKeyTag: (input: TCreatePrivateKeyTagInput) =>
|
|
|
7942
7874
|
privateKeyTagIds: string[];
|
|
7943
7875
|
privateKeyIds: string[];
|
|
7944
7876
|
};
|
|
7877
|
+
/**
|
|
7878
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
7879
|
+
*
|
|
7880
|
+
* See {@link NOOPCodegenAnchor}
|
|
7881
|
+
*/
|
|
7945
7882
|
setPaymentMethodResult?: {
|
|
7946
7883
|
lastFour: string;
|
|
7947
7884
|
cardHolderName: string;
|
|
@@ -8103,9 +8040,6 @@ export declare const createPrivateKeyTag: (input: TCreatePrivateKeyTagInput) =>
|
|
|
8103
8040
|
nanos: string;
|
|
8104
8041
|
};
|
|
8105
8042
|
}[];
|
|
8106
|
-
/**
|
|
8107
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
8108
|
-
*/
|
|
8109
8043
|
fingerprint: string;
|
|
8110
8044
|
canApprove: boolean;
|
|
8111
8045
|
canReject: boolean;
|
|
@@ -8183,6 +8117,9 @@ export declare const createPrivateKeys: (input: TCreatePrivateKeysInput) => Prom
|
|
|
8183
8117
|
rootUserId?: string;
|
|
8184
8118
|
};
|
|
8185
8119
|
createAuthenticatorsIntent?: {
|
|
8120
|
+
/**
|
|
8121
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
8122
|
+
*/
|
|
8186
8123
|
authenticators: {
|
|
8187
8124
|
authenticatorName: string;
|
|
8188
8125
|
userId: string;
|
|
@@ -8685,9 +8622,6 @@ export declare const createPrivateKeys: (input: TCreatePrivateKeysInput) => Prom
|
|
|
8685
8622
|
privateKeyIds: string[];
|
|
8686
8623
|
};
|
|
8687
8624
|
createInvitationsResult?: {
|
|
8688
|
-
/**
|
|
8689
|
-
* `POST /public/v1/submit/create_policy`
|
|
8690
|
-
*/
|
|
8691
8625
|
invitationIds: string[];
|
|
8692
8626
|
};
|
|
8693
8627
|
acceptInvitationResult?: {
|
|
@@ -8703,20 +8637,12 @@ export declare const createPrivateKeys: (input: TCreatePrivateKeysInput) => Prom
|
|
|
8703
8637
|
policyId: string;
|
|
8704
8638
|
};
|
|
8705
8639
|
disablePrivateKeyResult?: {
|
|
8706
|
-
/**
|
|
8707
|
-
* `POST /public/v1/submit/export_private_key`
|
|
8708
|
-
*/
|
|
8709
8640
|
privateKeyId: string;
|
|
8710
8641
|
};
|
|
8711
8642
|
deleteUsersResult?: {
|
|
8712
8643
|
userIds: string[];
|
|
8713
8644
|
};
|
|
8714
8645
|
deleteAuthenticatorsResult?: {
|
|
8715
|
-
/**
|
|
8716
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
8717
|
-
*
|
|
8718
|
-
* See {@link DeleteAuthenticators}
|
|
8719
|
-
*/
|
|
8720
8646
|
authenticatorIds: string[];
|
|
8721
8647
|
};
|
|
8722
8648
|
deleteInvitationResult?: {
|
|
@@ -8753,6 +8679,11 @@ export declare const createPrivateKeys: (input: TCreatePrivateKeysInput) => Prom
|
|
|
8753
8679
|
privateKeyTagIds: string[];
|
|
8754
8680
|
privateKeyIds: string[];
|
|
8755
8681
|
};
|
|
8682
|
+
/**
|
|
8683
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
8684
|
+
*
|
|
8685
|
+
* See {@link NOOPCodegenAnchor}
|
|
8686
|
+
*/
|
|
8756
8687
|
setPaymentMethodResult?: {
|
|
8757
8688
|
lastFour: string;
|
|
8758
8689
|
cardHolderName: string;
|
|
@@ -8914,9 +8845,6 @@ export declare const createPrivateKeys: (input: TCreatePrivateKeysInput) => Prom
|
|
|
8914
8845
|
nanos: string;
|
|
8915
8846
|
};
|
|
8916
8847
|
}[];
|
|
8917
|
-
/**
|
|
8918
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
8919
|
-
*/
|
|
8920
8848
|
fingerprint: string;
|
|
8921
8849
|
canApprove: boolean;
|
|
8922
8850
|
canReject: boolean;
|
|
@@ -8994,6 +8922,9 @@ export declare const createSubOrganization: (input: TCreateSubOrganizationInput)
|
|
|
8994
8922
|
rootUserId?: string;
|
|
8995
8923
|
};
|
|
8996
8924
|
createAuthenticatorsIntent?: {
|
|
8925
|
+
/**
|
|
8926
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
8927
|
+
*/
|
|
8997
8928
|
authenticators: {
|
|
8998
8929
|
authenticatorName: string;
|
|
8999
8930
|
userId: string;
|
|
@@ -9496,9 +9427,6 @@ export declare const createSubOrganization: (input: TCreateSubOrganizationInput)
|
|
|
9496
9427
|
privateKeyIds: string[];
|
|
9497
9428
|
};
|
|
9498
9429
|
createInvitationsResult?: {
|
|
9499
|
-
/**
|
|
9500
|
-
* `POST /public/v1/submit/create_policy`
|
|
9501
|
-
*/
|
|
9502
9430
|
invitationIds: string[];
|
|
9503
9431
|
};
|
|
9504
9432
|
acceptInvitationResult?: {
|
|
@@ -9514,20 +9442,12 @@ export declare const createSubOrganization: (input: TCreateSubOrganizationInput)
|
|
|
9514
9442
|
policyId: string;
|
|
9515
9443
|
};
|
|
9516
9444
|
disablePrivateKeyResult?: {
|
|
9517
|
-
/**
|
|
9518
|
-
* `POST /public/v1/submit/export_private_key`
|
|
9519
|
-
*/
|
|
9520
9445
|
privateKeyId: string;
|
|
9521
9446
|
};
|
|
9522
9447
|
deleteUsersResult?: {
|
|
9523
9448
|
userIds: string[];
|
|
9524
9449
|
};
|
|
9525
9450
|
deleteAuthenticatorsResult?: {
|
|
9526
|
-
/**
|
|
9527
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
9528
|
-
*
|
|
9529
|
-
* See {@link DeleteAuthenticators}
|
|
9530
|
-
*/
|
|
9531
9451
|
authenticatorIds: string[];
|
|
9532
9452
|
};
|
|
9533
9453
|
deleteInvitationResult?: {
|
|
@@ -9564,6 +9484,11 @@ export declare const createSubOrganization: (input: TCreateSubOrganizationInput)
|
|
|
9564
9484
|
privateKeyTagIds: string[];
|
|
9565
9485
|
privateKeyIds: string[];
|
|
9566
9486
|
};
|
|
9487
|
+
/**
|
|
9488
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
9489
|
+
*
|
|
9490
|
+
* See {@link NOOPCodegenAnchor}
|
|
9491
|
+
*/
|
|
9567
9492
|
setPaymentMethodResult?: {
|
|
9568
9493
|
lastFour: string;
|
|
9569
9494
|
cardHolderName: string;
|
|
@@ -9725,9 +9650,6 @@ export declare const createSubOrganization: (input: TCreateSubOrganizationInput)
|
|
|
9725
9650
|
nanos: string;
|
|
9726
9651
|
};
|
|
9727
9652
|
}[];
|
|
9728
|
-
/**
|
|
9729
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
9730
|
-
*/
|
|
9731
9653
|
fingerprint: string;
|
|
9732
9654
|
canApprove: boolean;
|
|
9733
9655
|
canReject: boolean;
|
|
@@ -9805,6 +9727,9 @@ export declare const createUserTag: (input: TCreateUserTagInput) => Promise<{
|
|
|
9805
9727
|
rootUserId?: string;
|
|
9806
9728
|
};
|
|
9807
9729
|
createAuthenticatorsIntent?: {
|
|
9730
|
+
/**
|
|
9731
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
9732
|
+
*/
|
|
9808
9733
|
authenticators: {
|
|
9809
9734
|
authenticatorName: string;
|
|
9810
9735
|
userId: string;
|
|
@@ -10307,9 +10232,6 @@ export declare const createUserTag: (input: TCreateUserTagInput) => Promise<{
|
|
|
10307
10232
|
privateKeyIds: string[];
|
|
10308
10233
|
};
|
|
10309
10234
|
createInvitationsResult?: {
|
|
10310
|
-
/**
|
|
10311
|
-
* `POST /public/v1/submit/create_policy`
|
|
10312
|
-
*/
|
|
10313
10235
|
invitationIds: string[];
|
|
10314
10236
|
};
|
|
10315
10237
|
acceptInvitationResult?: {
|
|
@@ -10325,20 +10247,12 @@ export declare const createUserTag: (input: TCreateUserTagInput) => Promise<{
|
|
|
10325
10247
|
policyId: string;
|
|
10326
10248
|
};
|
|
10327
10249
|
disablePrivateKeyResult?: {
|
|
10328
|
-
/**
|
|
10329
|
-
* `POST /public/v1/submit/export_private_key`
|
|
10330
|
-
*/
|
|
10331
10250
|
privateKeyId: string;
|
|
10332
10251
|
};
|
|
10333
10252
|
deleteUsersResult?: {
|
|
10334
10253
|
userIds: string[];
|
|
10335
10254
|
};
|
|
10336
10255
|
deleteAuthenticatorsResult?: {
|
|
10337
|
-
/**
|
|
10338
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
10339
|
-
*
|
|
10340
|
-
* See {@link DeleteAuthenticators}
|
|
10341
|
-
*/
|
|
10342
10256
|
authenticatorIds: string[];
|
|
10343
10257
|
};
|
|
10344
10258
|
deleteInvitationResult?: {
|
|
@@ -10375,6 +10289,11 @@ export declare const createUserTag: (input: TCreateUserTagInput) => Promise<{
|
|
|
10375
10289
|
privateKeyTagIds: string[];
|
|
10376
10290
|
privateKeyIds: string[];
|
|
10377
10291
|
};
|
|
10292
|
+
/**
|
|
10293
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
10294
|
+
*
|
|
10295
|
+
* See {@link NOOPCodegenAnchor}
|
|
10296
|
+
*/
|
|
10378
10297
|
setPaymentMethodResult?: {
|
|
10379
10298
|
lastFour: string;
|
|
10380
10299
|
cardHolderName: string;
|
|
@@ -10536,9 +10455,6 @@ export declare const createUserTag: (input: TCreateUserTagInput) => Promise<{
|
|
|
10536
10455
|
nanos: string;
|
|
10537
10456
|
};
|
|
10538
10457
|
}[];
|
|
10539
|
-
/**
|
|
10540
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
10541
|
-
*/
|
|
10542
10458
|
fingerprint: string;
|
|
10543
10459
|
canApprove: boolean;
|
|
10544
10460
|
canReject: boolean;
|
|
@@ -10616,6 +10532,9 @@ export declare const createUsers: (input: TCreateUsersInput) => Promise<{
|
|
|
10616
10532
|
rootUserId?: string;
|
|
10617
10533
|
};
|
|
10618
10534
|
createAuthenticatorsIntent?: {
|
|
10535
|
+
/**
|
|
10536
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
10537
|
+
*/
|
|
10619
10538
|
authenticators: {
|
|
10620
10539
|
authenticatorName: string;
|
|
10621
10540
|
userId: string;
|
|
@@ -11118,9 +11037,6 @@ export declare const createUsers: (input: TCreateUsersInput) => Promise<{
|
|
|
11118
11037
|
privateKeyIds: string[];
|
|
11119
11038
|
};
|
|
11120
11039
|
createInvitationsResult?: {
|
|
11121
|
-
/**
|
|
11122
|
-
* `POST /public/v1/submit/create_policy`
|
|
11123
|
-
*/
|
|
11124
11040
|
invitationIds: string[];
|
|
11125
11041
|
};
|
|
11126
11042
|
acceptInvitationResult?: {
|
|
@@ -11136,20 +11052,12 @@ export declare const createUsers: (input: TCreateUsersInput) => Promise<{
|
|
|
11136
11052
|
policyId: string;
|
|
11137
11053
|
};
|
|
11138
11054
|
disablePrivateKeyResult?: {
|
|
11139
|
-
/**
|
|
11140
|
-
* `POST /public/v1/submit/export_private_key`
|
|
11141
|
-
*/
|
|
11142
11055
|
privateKeyId: string;
|
|
11143
11056
|
};
|
|
11144
11057
|
deleteUsersResult?: {
|
|
11145
11058
|
userIds: string[];
|
|
11146
11059
|
};
|
|
11147
11060
|
deleteAuthenticatorsResult?: {
|
|
11148
|
-
/**
|
|
11149
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
11150
|
-
*
|
|
11151
|
-
* See {@link DeleteAuthenticators}
|
|
11152
|
-
*/
|
|
11153
11061
|
authenticatorIds: string[];
|
|
11154
11062
|
};
|
|
11155
11063
|
deleteInvitationResult?: {
|
|
@@ -11186,6 +11094,11 @@ export declare const createUsers: (input: TCreateUsersInput) => Promise<{
|
|
|
11186
11094
|
privateKeyTagIds: string[];
|
|
11187
11095
|
privateKeyIds: string[];
|
|
11188
11096
|
};
|
|
11097
|
+
/**
|
|
11098
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
11099
|
+
*
|
|
11100
|
+
* See {@link NOOPCodegenAnchor}
|
|
11101
|
+
*/
|
|
11189
11102
|
setPaymentMethodResult?: {
|
|
11190
11103
|
lastFour: string;
|
|
11191
11104
|
cardHolderName: string;
|
|
@@ -11347,9 +11260,6 @@ export declare const createUsers: (input: TCreateUsersInput) => Promise<{
|
|
|
11347
11260
|
nanos: string;
|
|
11348
11261
|
};
|
|
11349
11262
|
}[];
|
|
11350
|
-
/**
|
|
11351
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
11352
|
-
*/
|
|
11353
11263
|
fingerprint: string;
|
|
11354
11264
|
canApprove: boolean;
|
|
11355
11265
|
canReject: boolean;
|
|
@@ -11427,6 +11337,9 @@ export declare const createWallet: (input: TCreateWalletInput) => Promise<{
|
|
|
11427
11337
|
rootUserId?: string;
|
|
11428
11338
|
};
|
|
11429
11339
|
createAuthenticatorsIntent?: {
|
|
11340
|
+
/**
|
|
11341
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
11342
|
+
*/
|
|
11430
11343
|
authenticators: {
|
|
11431
11344
|
authenticatorName: string;
|
|
11432
11345
|
userId: string;
|
|
@@ -11929,9 +11842,6 @@ export declare const createWallet: (input: TCreateWalletInput) => Promise<{
|
|
|
11929
11842
|
privateKeyIds: string[];
|
|
11930
11843
|
};
|
|
11931
11844
|
createInvitationsResult?: {
|
|
11932
|
-
/**
|
|
11933
|
-
* `POST /public/v1/submit/create_policy`
|
|
11934
|
-
*/
|
|
11935
11845
|
invitationIds: string[];
|
|
11936
11846
|
};
|
|
11937
11847
|
acceptInvitationResult?: {
|
|
@@ -11947,20 +11857,12 @@ export declare const createWallet: (input: TCreateWalletInput) => Promise<{
|
|
|
11947
11857
|
policyId: string;
|
|
11948
11858
|
};
|
|
11949
11859
|
disablePrivateKeyResult?: {
|
|
11950
|
-
/**
|
|
11951
|
-
* `POST /public/v1/submit/export_private_key`
|
|
11952
|
-
*/
|
|
11953
11860
|
privateKeyId: string;
|
|
11954
11861
|
};
|
|
11955
11862
|
deleteUsersResult?: {
|
|
11956
11863
|
userIds: string[];
|
|
11957
11864
|
};
|
|
11958
11865
|
deleteAuthenticatorsResult?: {
|
|
11959
|
-
/**
|
|
11960
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
11961
|
-
*
|
|
11962
|
-
* See {@link DeleteAuthenticators}
|
|
11963
|
-
*/
|
|
11964
11866
|
authenticatorIds: string[];
|
|
11965
11867
|
};
|
|
11966
11868
|
deleteInvitationResult?: {
|
|
@@ -11997,6 +11899,11 @@ export declare const createWallet: (input: TCreateWalletInput) => Promise<{
|
|
|
11997
11899
|
privateKeyTagIds: string[];
|
|
11998
11900
|
privateKeyIds: string[];
|
|
11999
11901
|
};
|
|
11902
|
+
/**
|
|
11903
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
11904
|
+
*
|
|
11905
|
+
* See {@link NOOPCodegenAnchor}
|
|
11906
|
+
*/
|
|
12000
11907
|
setPaymentMethodResult?: {
|
|
12001
11908
|
lastFour: string;
|
|
12002
11909
|
cardHolderName: string;
|
|
@@ -12158,9 +12065,6 @@ export declare const createWallet: (input: TCreateWalletInput) => Promise<{
|
|
|
12158
12065
|
nanos: string;
|
|
12159
12066
|
};
|
|
12160
12067
|
}[];
|
|
12161
|
-
/**
|
|
12162
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
12163
|
-
*/
|
|
12164
12068
|
fingerprint: string;
|
|
12165
12069
|
canApprove: boolean;
|
|
12166
12070
|
canReject: boolean;
|
|
@@ -12238,6 +12142,9 @@ export declare const createWalletAccounts: (input: TCreateWalletAccountsInput) =
|
|
|
12238
12142
|
rootUserId?: string;
|
|
12239
12143
|
};
|
|
12240
12144
|
createAuthenticatorsIntent?: {
|
|
12145
|
+
/**
|
|
12146
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
12147
|
+
*/
|
|
12241
12148
|
authenticators: {
|
|
12242
12149
|
authenticatorName: string;
|
|
12243
12150
|
userId: string;
|
|
@@ -12740,9 +12647,6 @@ export declare const createWalletAccounts: (input: TCreateWalletAccountsInput) =
|
|
|
12740
12647
|
privateKeyIds: string[];
|
|
12741
12648
|
};
|
|
12742
12649
|
createInvitationsResult?: {
|
|
12743
|
-
/**
|
|
12744
|
-
* `POST /public/v1/submit/create_policy`
|
|
12745
|
-
*/
|
|
12746
12650
|
invitationIds: string[];
|
|
12747
12651
|
};
|
|
12748
12652
|
acceptInvitationResult?: {
|
|
@@ -12758,20 +12662,12 @@ export declare const createWalletAccounts: (input: TCreateWalletAccountsInput) =
|
|
|
12758
12662
|
policyId: string;
|
|
12759
12663
|
};
|
|
12760
12664
|
disablePrivateKeyResult?: {
|
|
12761
|
-
/**
|
|
12762
|
-
* `POST /public/v1/submit/export_private_key`
|
|
12763
|
-
*/
|
|
12764
12665
|
privateKeyId: string;
|
|
12765
12666
|
};
|
|
12766
12667
|
deleteUsersResult?: {
|
|
12767
12668
|
userIds: string[];
|
|
12768
12669
|
};
|
|
12769
12670
|
deleteAuthenticatorsResult?: {
|
|
12770
|
-
/**
|
|
12771
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
12772
|
-
*
|
|
12773
|
-
* See {@link DeleteAuthenticators}
|
|
12774
|
-
*/
|
|
12775
12671
|
authenticatorIds: string[];
|
|
12776
12672
|
};
|
|
12777
12673
|
deleteInvitationResult?: {
|
|
@@ -12808,6 +12704,11 @@ export declare const createWalletAccounts: (input: TCreateWalletAccountsInput) =
|
|
|
12808
12704
|
privateKeyTagIds: string[];
|
|
12809
12705
|
privateKeyIds: string[];
|
|
12810
12706
|
};
|
|
12707
|
+
/**
|
|
12708
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
12709
|
+
*
|
|
12710
|
+
* See {@link NOOPCodegenAnchor}
|
|
12711
|
+
*/
|
|
12811
12712
|
setPaymentMethodResult?: {
|
|
12812
12713
|
lastFour: string;
|
|
12813
12714
|
cardHolderName: string;
|
|
@@ -12969,9 +12870,6 @@ export declare const createWalletAccounts: (input: TCreateWalletAccountsInput) =
|
|
|
12969
12870
|
nanos: string;
|
|
12970
12871
|
};
|
|
12971
12872
|
}[];
|
|
12972
|
-
/**
|
|
12973
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
12974
|
-
*/
|
|
12975
12873
|
fingerprint: string;
|
|
12976
12874
|
canApprove: boolean;
|
|
12977
12875
|
canReject: boolean;
|
|
@@ -13049,6 +12947,9 @@ export declare const deleteApiKeys: (input: TDeleteApiKeysInput) => Promise<{
|
|
|
13049
12947
|
rootUserId?: string;
|
|
13050
12948
|
};
|
|
13051
12949
|
createAuthenticatorsIntent?: {
|
|
12950
|
+
/**
|
|
12951
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
12952
|
+
*/
|
|
13052
12953
|
authenticators: {
|
|
13053
12954
|
authenticatorName: string;
|
|
13054
12955
|
userId: string;
|
|
@@ -13551,9 +13452,6 @@ export declare const deleteApiKeys: (input: TDeleteApiKeysInput) => Promise<{
|
|
|
13551
13452
|
privateKeyIds: string[];
|
|
13552
13453
|
};
|
|
13553
13454
|
createInvitationsResult?: {
|
|
13554
|
-
/**
|
|
13555
|
-
* `POST /public/v1/submit/create_policy`
|
|
13556
|
-
*/
|
|
13557
13455
|
invitationIds: string[];
|
|
13558
13456
|
};
|
|
13559
13457
|
acceptInvitationResult?: {
|
|
@@ -13569,20 +13467,12 @@ export declare const deleteApiKeys: (input: TDeleteApiKeysInput) => Promise<{
|
|
|
13569
13467
|
policyId: string;
|
|
13570
13468
|
};
|
|
13571
13469
|
disablePrivateKeyResult?: {
|
|
13572
|
-
/**
|
|
13573
|
-
* `POST /public/v1/submit/export_private_key`
|
|
13574
|
-
*/
|
|
13575
13470
|
privateKeyId: string;
|
|
13576
13471
|
};
|
|
13577
13472
|
deleteUsersResult?: {
|
|
13578
13473
|
userIds: string[];
|
|
13579
13474
|
};
|
|
13580
13475
|
deleteAuthenticatorsResult?: {
|
|
13581
|
-
/**
|
|
13582
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
13583
|
-
*
|
|
13584
|
-
* See {@link DeleteAuthenticators}
|
|
13585
|
-
*/
|
|
13586
13476
|
authenticatorIds: string[];
|
|
13587
13477
|
};
|
|
13588
13478
|
deleteInvitationResult?: {
|
|
@@ -13619,6 +13509,11 @@ export declare const deleteApiKeys: (input: TDeleteApiKeysInput) => Promise<{
|
|
|
13619
13509
|
privateKeyTagIds: string[];
|
|
13620
13510
|
privateKeyIds: string[];
|
|
13621
13511
|
};
|
|
13512
|
+
/**
|
|
13513
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
13514
|
+
*
|
|
13515
|
+
* See {@link NOOPCodegenAnchor}
|
|
13516
|
+
*/
|
|
13622
13517
|
setPaymentMethodResult?: {
|
|
13623
13518
|
lastFour: string;
|
|
13624
13519
|
cardHolderName: string;
|
|
@@ -13780,9 +13675,6 @@ export declare const deleteApiKeys: (input: TDeleteApiKeysInput) => Promise<{
|
|
|
13780
13675
|
nanos: string;
|
|
13781
13676
|
};
|
|
13782
13677
|
}[];
|
|
13783
|
-
/**
|
|
13784
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
13785
|
-
*/
|
|
13786
13678
|
fingerprint: string;
|
|
13787
13679
|
canApprove: boolean;
|
|
13788
13680
|
canReject: boolean;
|
|
@@ -13860,6 +13752,9 @@ export declare const deleteAuthenticators: (input: TDeleteAuthenticatorsInput) =
|
|
|
13860
13752
|
rootUserId?: string;
|
|
13861
13753
|
};
|
|
13862
13754
|
createAuthenticatorsIntent?: {
|
|
13755
|
+
/**
|
|
13756
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
13757
|
+
*/
|
|
13863
13758
|
authenticators: {
|
|
13864
13759
|
authenticatorName: string;
|
|
13865
13760
|
userId: string;
|
|
@@ -14362,9 +14257,6 @@ export declare const deleteAuthenticators: (input: TDeleteAuthenticatorsInput) =
|
|
|
14362
14257
|
privateKeyIds: string[];
|
|
14363
14258
|
};
|
|
14364
14259
|
createInvitationsResult?: {
|
|
14365
|
-
/**
|
|
14366
|
-
* `POST /public/v1/submit/create_policy`
|
|
14367
|
-
*/
|
|
14368
14260
|
invitationIds: string[];
|
|
14369
14261
|
};
|
|
14370
14262
|
acceptInvitationResult?: {
|
|
@@ -14380,20 +14272,12 @@ export declare const deleteAuthenticators: (input: TDeleteAuthenticatorsInput) =
|
|
|
14380
14272
|
policyId: string;
|
|
14381
14273
|
};
|
|
14382
14274
|
disablePrivateKeyResult?: {
|
|
14383
|
-
/**
|
|
14384
|
-
* `POST /public/v1/submit/export_private_key`
|
|
14385
|
-
*/
|
|
14386
14275
|
privateKeyId: string;
|
|
14387
14276
|
};
|
|
14388
14277
|
deleteUsersResult?: {
|
|
14389
14278
|
userIds: string[];
|
|
14390
14279
|
};
|
|
14391
14280
|
deleteAuthenticatorsResult?: {
|
|
14392
|
-
/**
|
|
14393
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
14394
|
-
*
|
|
14395
|
-
* See {@link DeleteAuthenticators}
|
|
14396
|
-
*/
|
|
14397
14281
|
authenticatorIds: string[];
|
|
14398
14282
|
};
|
|
14399
14283
|
deleteInvitationResult?: {
|
|
@@ -14430,6 +14314,11 @@ export declare const deleteAuthenticators: (input: TDeleteAuthenticatorsInput) =
|
|
|
14430
14314
|
privateKeyTagIds: string[];
|
|
14431
14315
|
privateKeyIds: string[];
|
|
14432
14316
|
};
|
|
14317
|
+
/**
|
|
14318
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
14319
|
+
*
|
|
14320
|
+
* See {@link NOOPCodegenAnchor}
|
|
14321
|
+
*/
|
|
14433
14322
|
setPaymentMethodResult?: {
|
|
14434
14323
|
lastFour: string;
|
|
14435
14324
|
cardHolderName: string;
|
|
@@ -14591,9 +14480,6 @@ export declare const deleteAuthenticators: (input: TDeleteAuthenticatorsInput) =
|
|
|
14591
14480
|
nanos: string;
|
|
14592
14481
|
};
|
|
14593
14482
|
}[];
|
|
14594
|
-
/**
|
|
14595
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
14596
|
-
*/
|
|
14597
14483
|
fingerprint: string;
|
|
14598
14484
|
canApprove: boolean;
|
|
14599
14485
|
canReject: boolean;
|
|
@@ -14671,6 +14557,9 @@ export declare const deleteInvitation: (input: TDeleteInvitationInput) => Promis
|
|
|
14671
14557
|
rootUserId?: string;
|
|
14672
14558
|
};
|
|
14673
14559
|
createAuthenticatorsIntent?: {
|
|
14560
|
+
/**
|
|
14561
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
14562
|
+
*/
|
|
14674
14563
|
authenticators: {
|
|
14675
14564
|
authenticatorName: string;
|
|
14676
14565
|
userId: string;
|
|
@@ -15173,9 +15062,6 @@ export declare const deleteInvitation: (input: TDeleteInvitationInput) => Promis
|
|
|
15173
15062
|
privateKeyIds: string[];
|
|
15174
15063
|
};
|
|
15175
15064
|
createInvitationsResult?: {
|
|
15176
|
-
/**
|
|
15177
|
-
* `POST /public/v1/submit/create_policy`
|
|
15178
|
-
*/
|
|
15179
15065
|
invitationIds: string[];
|
|
15180
15066
|
};
|
|
15181
15067
|
acceptInvitationResult?: {
|
|
@@ -15191,20 +15077,12 @@ export declare const deleteInvitation: (input: TDeleteInvitationInput) => Promis
|
|
|
15191
15077
|
policyId: string;
|
|
15192
15078
|
};
|
|
15193
15079
|
disablePrivateKeyResult?: {
|
|
15194
|
-
/**
|
|
15195
|
-
* `POST /public/v1/submit/export_private_key`
|
|
15196
|
-
*/
|
|
15197
15080
|
privateKeyId: string;
|
|
15198
15081
|
};
|
|
15199
15082
|
deleteUsersResult?: {
|
|
15200
15083
|
userIds: string[];
|
|
15201
15084
|
};
|
|
15202
15085
|
deleteAuthenticatorsResult?: {
|
|
15203
|
-
/**
|
|
15204
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
15205
|
-
*
|
|
15206
|
-
* See {@link DeleteAuthenticators}
|
|
15207
|
-
*/
|
|
15208
15086
|
authenticatorIds: string[];
|
|
15209
15087
|
};
|
|
15210
15088
|
deleteInvitationResult?: {
|
|
@@ -15241,6 +15119,11 @@ export declare const deleteInvitation: (input: TDeleteInvitationInput) => Promis
|
|
|
15241
15119
|
privateKeyTagIds: string[];
|
|
15242
15120
|
privateKeyIds: string[];
|
|
15243
15121
|
};
|
|
15122
|
+
/**
|
|
15123
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
15124
|
+
*
|
|
15125
|
+
* See {@link NOOPCodegenAnchor}
|
|
15126
|
+
*/
|
|
15244
15127
|
setPaymentMethodResult?: {
|
|
15245
15128
|
lastFour: string;
|
|
15246
15129
|
cardHolderName: string;
|
|
@@ -15402,9 +15285,6 @@ export declare const deleteInvitation: (input: TDeleteInvitationInput) => Promis
|
|
|
15402
15285
|
nanos: string;
|
|
15403
15286
|
};
|
|
15404
15287
|
}[];
|
|
15405
|
-
/**
|
|
15406
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
15407
|
-
*/
|
|
15408
15288
|
fingerprint: string;
|
|
15409
15289
|
canApprove: boolean;
|
|
15410
15290
|
canReject: boolean;
|
|
@@ -15482,6 +15362,9 @@ export declare const deletePolicy: (input: TDeletePolicyInput) => Promise<{
|
|
|
15482
15362
|
rootUserId?: string;
|
|
15483
15363
|
};
|
|
15484
15364
|
createAuthenticatorsIntent?: {
|
|
15365
|
+
/**
|
|
15366
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
15367
|
+
*/
|
|
15485
15368
|
authenticators: {
|
|
15486
15369
|
authenticatorName: string;
|
|
15487
15370
|
userId: string;
|
|
@@ -15984,9 +15867,6 @@ export declare const deletePolicy: (input: TDeletePolicyInput) => Promise<{
|
|
|
15984
15867
|
privateKeyIds: string[];
|
|
15985
15868
|
};
|
|
15986
15869
|
createInvitationsResult?: {
|
|
15987
|
-
/**
|
|
15988
|
-
* `POST /public/v1/submit/create_policy`
|
|
15989
|
-
*/
|
|
15990
15870
|
invitationIds: string[];
|
|
15991
15871
|
};
|
|
15992
15872
|
acceptInvitationResult?: {
|
|
@@ -16002,20 +15882,12 @@ export declare const deletePolicy: (input: TDeletePolicyInput) => Promise<{
|
|
|
16002
15882
|
policyId: string;
|
|
16003
15883
|
};
|
|
16004
15884
|
disablePrivateKeyResult?: {
|
|
16005
|
-
/**
|
|
16006
|
-
* `POST /public/v1/submit/export_private_key`
|
|
16007
|
-
*/
|
|
16008
15885
|
privateKeyId: string;
|
|
16009
15886
|
};
|
|
16010
15887
|
deleteUsersResult?: {
|
|
16011
15888
|
userIds: string[];
|
|
16012
15889
|
};
|
|
16013
15890
|
deleteAuthenticatorsResult?: {
|
|
16014
|
-
/**
|
|
16015
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
16016
|
-
*
|
|
16017
|
-
* See {@link DeleteAuthenticators}
|
|
16018
|
-
*/
|
|
16019
15891
|
authenticatorIds: string[];
|
|
16020
15892
|
};
|
|
16021
15893
|
deleteInvitationResult?: {
|
|
@@ -16052,6 +15924,11 @@ export declare const deletePolicy: (input: TDeletePolicyInput) => Promise<{
|
|
|
16052
15924
|
privateKeyTagIds: string[];
|
|
16053
15925
|
privateKeyIds: string[];
|
|
16054
15926
|
};
|
|
15927
|
+
/**
|
|
15928
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
15929
|
+
*
|
|
15930
|
+
* See {@link NOOPCodegenAnchor}
|
|
15931
|
+
*/
|
|
16055
15932
|
setPaymentMethodResult?: {
|
|
16056
15933
|
lastFour: string;
|
|
16057
15934
|
cardHolderName: string;
|
|
@@ -16213,9 +16090,6 @@ export declare const deletePolicy: (input: TDeletePolicyInput) => Promise<{
|
|
|
16213
16090
|
nanos: string;
|
|
16214
16091
|
};
|
|
16215
16092
|
}[];
|
|
16216
|
-
/**
|
|
16217
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
16218
|
-
*/
|
|
16219
16093
|
fingerprint: string;
|
|
16220
16094
|
canApprove: boolean;
|
|
16221
16095
|
canReject: boolean;
|
|
@@ -16293,6 +16167,9 @@ export declare const exportPrivateKey: (input: TExportPrivateKeyInput) => Promis
|
|
|
16293
16167
|
rootUserId?: string;
|
|
16294
16168
|
};
|
|
16295
16169
|
createAuthenticatorsIntent?: {
|
|
16170
|
+
/**
|
|
16171
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
16172
|
+
*/
|
|
16296
16173
|
authenticators: {
|
|
16297
16174
|
authenticatorName: string;
|
|
16298
16175
|
userId: string;
|
|
@@ -16795,9 +16672,6 @@ export declare const exportPrivateKey: (input: TExportPrivateKeyInput) => Promis
|
|
|
16795
16672
|
privateKeyIds: string[];
|
|
16796
16673
|
};
|
|
16797
16674
|
createInvitationsResult?: {
|
|
16798
|
-
/**
|
|
16799
|
-
* `POST /public/v1/submit/create_policy`
|
|
16800
|
-
*/
|
|
16801
16675
|
invitationIds: string[];
|
|
16802
16676
|
};
|
|
16803
16677
|
acceptInvitationResult?: {
|
|
@@ -16813,20 +16687,12 @@ export declare const exportPrivateKey: (input: TExportPrivateKeyInput) => Promis
|
|
|
16813
16687
|
policyId: string;
|
|
16814
16688
|
};
|
|
16815
16689
|
disablePrivateKeyResult?: {
|
|
16816
|
-
/**
|
|
16817
|
-
* `POST /public/v1/submit/export_private_key`
|
|
16818
|
-
*/
|
|
16819
16690
|
privateKeyId: string;
|
|
16820
16691
|
};
|
|
16821
16692
|
deleteUsersResult?: {
|
|
16822
16693
|
userIds: string[];
|
|
16823
16694
|
};
|
|
16824
16695
|
deleteAuthenticatorsResult?: {
|
|
16825
|
-
/**
|
|
16826
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
16827
|
-
*
|
|
16828
|
-
* See {@link DeleteAuthenticators}
|
|
16829
|
-
*/
|
|
16830
16696
|
authenticatorIds: string[];
|
|
16831
16697
|
};
|
|
16832
16698
|
deleteInvitationResult?: {
|
|
@@ -16863,6 +16729,11 @@ export declare const exportPrivateKey: (input: TExportPrivateKeyInput) => Promis
|
|
|
16863
16729
|
privateKeyTagIds: string[];
|
|
16864
16730
|
privateKeyIds: string[];
|
|
16865
16731
|
};
|
|
16732
|
+
/**
|
|
16733
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
16734
|
+
*
|
|
16735
|
+
* See {@link NOOPCodegenAnchor}
|
|
16736
|
+
*/
|
|
16866
16737
|
setPaymentMethodResult?: {
|
|
16867
16738
|
lastFour: string;
|
|
16868
16739
|
cardHolderName: string;
|
|
@@ -17024,9 +16895,6 @@ export declare const exportPrivateKey: (input: TExportPrivateKeyInput) => Promis
|
|
|
17024
16895
|
nanos: string;
|
|
17025
16896
|
};
|
|
17026
16897
|
}[];
|
|
17027
|
-
/**
|
|
17028
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
17029
|
-
*/
|
|
17030
16898
|
fingerprint: string;
|
|
17031
16899
|
canApprove: boolean;
|
|
17032
16900
|
canReject: boolean;
|
|
@@ -17104,6 +16972,9 @@ export declare const exportWallet: (input: TExportWalletInput) => Promise<{
|
|
|
17104
16972
|
rootUserId?: string;
|
|
17105
16973
|
};
|
|
17106
16974
|
createAuthenticatorsIntent?: {
|
|
16975
|
+
/**
|
|
16976
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
16977
|
+
*/
|
|
17107
16978
|
authenticators: {
|
|
17108
16979
|
authenticatorName: string;
|
|
17109
16980
|
userId: string;
|
|
@@ -17606,9 +17477,6 @@ export declare const exportWallet: (input: TExportWalletInput) => Promise<{
|
|
|
17606
17477
|
privateKeyIds: string[];
|
|
17607
17478
|
};
|
|
17608
17479
|
createInvitationsResult?: {
|
|
17609
|
-
/**
|
|
17610
|
-
* `POST /public/v1/submit/create_policy`
|
|
17611
|
-
*/
|
|
17612
17480
|
invitationIds: string[];
|
|
17613
17481
|
};
|
|
17614
17482
|
acceptInvitationResult?: {
|
|
@@ -17624,20 +17492,12 @@ export declare const exportWallet: (input: TExportWalletInput) => Promise<{
|
|
|
17624
17492
|
policyId: string;
|
|
17625
17493
|
};
|
|
17626
17494
|
disablePrivateKeyResult?: {
|
|
17627
|
-
/**
|
|
17628
|
-
* `POST /public/v1/submit/export_private_key`
|
|
17629
|
-
*/
|
|
17630
17495
|
privateKeyId: string;
|
|
17631
17496
|
};
|
|
17632
17497
|
deleteUsersResult?: {
|
|
17633
17498
|
userIds: string[];
|
|
17634
17499
|
};
|
|
17635
17500
|
deleteAuthenticatorsResult?: {
|
|
17636
|
-
/**
|
|
17637
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
17638
|
-
*
|
|
17639
|
-
* See {@link DeleteAuthenticators}
|
|
17640
|
-
*/
|
|
17641
17501
|
authenticatorIds: string[];
|
|
17642
17502
|
};
|
|
17643
17503
|
deleteInvitationResult?: {
|
|
@@ -17674,6 +17534,11 @@ export declare const exportWallet: (input: TExportWalletInput) => Promise<{
|
|
|
17674
17534
|
privateKeyTagIds: string[];
|
|
17675
17535
|
privateKeyIds: string[];
|
|
17676
17536
|
};
|
|
17537
|
+
/**
|
|
17538
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
17539
|
+
*
|
|
17540
|
+
* See {@link NOOPCodegenAnchor}
|
|
17541
|
+
*/
|
|
17677
17542
|
setPaymentMethodResult?: {
|
|
17678
17543
|
lastFour: string;
|
|
17679
17544
|
cardHolderName: string;
|
|
@@ -17835,9 +17700,6 @@ export declare const exportWallet: (input: TExportWalletInput) => Promise<{
|
|
|
17835
17700
|
nanos: string;
|
|
17836
17701
|
};
|
|
17837
17702
|
}[];
|
|
17838
|
-
/**
|
|
17839
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
17840
|
-
*/
|
|
17841
17703
|
fingerprint: string;
|
|
17842
17704
|
canApprove: boolean;
|
|
17843
17705
|
canReject: boolean;
|
|
@@ -17915,6 +17777,9 @@ export declare const initUserEmailRecovery: (input: TInitUserEmailRecoveryInput)
|
|
|
17915
17777
|
rootUserId?: string;
|
|
17916
17778
|
};
|
|
17917
17779
|
createAuthenticatorsIntent?: {
|
|
17780
|
+
/**
|
|
17781
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
17782
|
+
*/
|
|
17918
17783
|
authenticators: {
|
|
17919
17784
|
authenticatorName: string;
|
|
17920
17785
|
userId: string;
|
|
@@ -18417,9 +18282,6 @@ export declare const initUserEmailRecovery: (input: TInitUserEmailRecoveryInput)
|
|
|
18417
18282
|
privateKeyIds: string[];
|
|
18418
18283
|
};
|
|
18419
18284
|
createInvitationsResult?: {
|
|
18420
|
-
/**
|
|
18421
|
-
* `POST /public/v1/submit/create_policy`
|
|
18422
|
-
*/
|
|
18423
18285
|
invitationIds: string[];
|
|
18424
18286
|
};
|
|
18425
18287
|
acceptInvitationResult?: {
|
|
@@ -18435,20 +18297,12 @@ export declare const initUserEmailRecovery: (input: TInitUserEmailRecoveryInput)
|
|
|
18435
18297
|
policyId: string;
|
|
18436
18298
|
};
|
|
18437
18299
|
disablePrivateKeyResult?: {
|
|
18438
|
-
/**
|
|
18439
|
-
* `POST /public/v1/submit/export_private_key`
|
|
18440
|
-
*/
|
|
18441
18300
|
privateKeyId: string;
|
|
18442
18301
|
};
|
|
18443
18302
|
deleteUsersResult?: {
|
|
18444
18303
|
userIds: string[];
|
|
18445
18304
|
};
|
|
18446
18305
|
deleteAuthenticatorsResult?: {
|
|
18447
|
-
/**
|
|
18448
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
18449
|
-
*
|
|
18450
|
-
* See {@link DeleteAuthenticators}
|
|
18451
|
-
*/
|
|
18452
18306
|
authenticatorIds: string[];
|
|
18453
18307
|
};
|
|
18454
18308
|
deleteInvitationResult?: {
|
|
@@ -18485,6 +18339,11 @@ export declare const initUserEmailRecovery: (input: TInitUserEmailRecoveryInput)
|
|
|
18485
18339
|
privateKeyTagIds: string[];
|
|
18486
18340
|
privateKeyIds: string[];
|
|
18487
18341
|
};
|
|
18342
|
+
/**
|
|
18343
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
18344
|
+
*
|
|
18345
|
+
* See {@link NOOPCodegenAnchor}
|
|
18346
|
+
*/
|
|
18488
18347
|
setPaymentMethodResult?: {
|
|
18489
18348
|
lastFour: string;
|
|
18490
18349
|
cardHolderName: string;
|
|
@@ -18646,9 +18505,6 @@ export declare const initUserEmailRecovery: (input: TInitUserEmailRecoveryInput)
|
|
|
18646
18505
|
nanos: string;
|
|
18647
18506
|
};
|
|
18648
18507
|
}[];
|
|
18649
|
-
/**
|
|
18650
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
18651
|
-
*/
|
|
18652
18508
|
fingerprint: string;
|
|
18653
18509
|
canApprove: boolean;
|
|
18654
18510
|
canReject: boolean;
|
|
@@ -18726,6 +18582,9 @@ export declare const recoverUser: (input: TRecoverUserInput) => Promise<{
|
|
|
18726
18582
|
rootUserId?: string;
|
|
18727
18583
|
};
|
|
18728
18584
|
createAuthenticatorsIntent?: {
|
|
18585
|
+
/**
|
|
18586
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
18587
|
+
*/
|
|
18729
18588
|
authenticators: {
|
|
18730
18589
|
authenticatorName: string;
|
|
18731
18590
|
userId: string;
|
|
@@ -19228,9 +19087,6 @@ export declare const recoverUser: (input: TRecoverUserInput) => Promise<{
|
|
|
19228
19087
|
privateKeyIds: string[];
|
|
19229
19088
|
};
|
|
19230
19089
|
createInvitationsResult?: {
|
|
19231
|
-
/**
|
|
19232
|
-
* `POST /public/v1/submit/create_policy`
|
|
19233
|
-
*/
|
|
19234
19090
|
invitationIds: string[];
|
|
19235
19091
|
};
|
|
19236
19092
|
acceptInvitationResult?: {
|
|
@@ -19246,20 +19102,12 @@ export declare const recoverUser: (input: TRecoverUserInput) => Promise<{
|
|
|
19246
19102
|
policyId: string;
|
|
19247
19103
|
};
|
|
19248
19104
|
disablePrivateKeyResult?: {
|
|
19249
|
-
/**
|
|
19250
|
-
* `POST /public/v1/submit/export_private_key`
|
|
19251
|
-
*/
|
|
19252
19105
|
privateKeyId: string;
|
|
19253
19106
|
};
|
|
19254
19107
|
deleteUsersResult?: {
|
|
19255
19108
|
userIds: string[];
|
|
19256
19109
|
};
|
|
19257
19110
|
deleteAuthenticatorsResult?: {
|
|
19258
|
-
/**
|
|
19259
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
19260
|
-
*
|
|
19261
|
-
* See {@link DeleteAuthenticators}
|
|
19262
|
-
*/
|
|
19263
19111
|
authenticatorIds: string[];
|
|
19264
19112
|
};
|
|
19265
19113
|
deleteInvitationResult?: {
|
|
@@ -19296,6 +19144,11 @@ export declare const recoverUser: (input: TRecoverUserInput) => Promise<{
|
|
|
19296
19144
|
privateKeyTagIds: string[];
|
|
19297
19145
|
privateKeyIds: string[];
|
|
19298
19146
|
};
|
|
19147
|
+
/**
|
|
19148
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
19149
|
+
*
|
|
19150
|
+
* See {@link NOOPCodegenAnchor}
|
|
19151
|
+
*/
|
|
19299
19152
|
setPaymentMethodResult?: {
|
|
19300
19153
|
lastFour: string;
|
|
19301
19154
|
cardHolderName: string;
|
|
@@ -19457,9 +19310,6 @@ export declare const recoverUser: (input: TRecoverUserInput) => Promise<{
|
|
|
19457
19310
|
nanos: string;
|
|
19458
19311
|
};
|
|
19459
19312
|
}[];
|
|
19460
|
-
/**
|
|
19461
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
19462
|
-
*/
|
|
19463
19313
|
fingerprint: string;
|
|
19464
19314
|
canApprove: boolean;
|
|
19465
19315
|
canReject: boolean;
|
|
@@ -19537,6 +19387,9 @@ export declare const rejectActivity: (input: TRejectActivityInput) => Promise<{
|
|
|
19537
19387
|
rootUserId?: string;
|
|
19538
19388
|
};
|
|
19539
19389
|
createAuthenticatorsIntent?: {
|
|
19390
|
+
/**
|
|
19391
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
19392
|
+
*/
|
|
19540
19393
|
authenticators: {
|
|
19541
19394
|
authenticatorName: string;
|
|
19542
19395
|
userId: string;
|
|
@@ -20039,9 +19892,6 @@ export declare const rejectActivity: (input: TRejectActivityInput) => Promise<{
|
|
|
20039
19892
|
privateKeyIds: string[];
|
|
20040
19893
|
};
|
|
20041
19894
|
createInvitationsResult?: {
|
|
20042
|
-
/**
|
|
20043
|
-
* `POST /public/v1/submit/create_policy`
|
|
20044
|
-
*/
|
|
20045
19895
|
invitationIds: string[];
|
|
20046
19896
|
};
|
|
20047
19897
|
acceptInvitationResult?: {
|
|
@@ -20057,20 +19907,12 @@ export declare const rejectActivity: (input: TRejectActivityInput) => Promise<{
|
|
|
20057
19907
|
policyId: string;
|
|
20058
19908
|
};
|
|
20059
19909
|
disablePrivateKeyResult?: {
|
|
20060
|
-
/**
|
|
20061
|
-
* `POST /public/v1/submit/export_private_key`
|
|
20062
|
-
*/
|
|
20063
19910
|
privateKeyId: string;
|
|
20064
19911
|
};
|
|
20065
19912
|
deleteUsersResult?: {
|
|
20066
19913
|
userIds: string[];
|
|
20067
19914
|
};
|
|
20068
19915
|
deleteAuthenticatorsResult?: {
|
|
20069
|
-
/**
|
|
20070
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
20071
|
-
*
|
|
20072
|
-
* See {@link DeleteAuthenticators}
|
|
20073
|
-
*/
|
|
20074
19916
|
authenticatorIds: string[];
|
|
20075
19917
|
};
|
|
20076
19918
|
deleteInvitationResult?: {
|
|
@@ -20107,6 +19949,11 @@ export declare const rejectActivity: (input: TRejectActivityInput) => Promise<{
|
|
|
20107
19949
|
privateKeyTagIds: string[];
|
|
20108
19950
|
privateKeyIds: string[];
|
|
20109
19951
|
};
|
|
19952
|
+
/**
|
|
19953
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
19954
|
+
*
|
|
19955
|
+
* See {@link NOOPCodegenAnchor}
|
|
19956
|
+
*/
|
|
20110
19957
|
setPaymentMethodResult?: {
|
|
20111
19958
|
lastFour: string;
|
|
20112
19959
|
cardHolderName: string;
|
|
@@ -20268,9 +20115,6 @@ export declare const rejectActivity: (input: TRejectActivityInput) => Promise<{
|
|
|
20268
20115
|
nanos: string;
|
|
20269
20116
|
};
|
|
20270
20117
|
}[];
|
|
20271
|
-
/**
|
|
20272
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
20273
|
-
*/
|
|
20274
20118
|
fingerprint: string;
|
|
20275
20119
|
canApprove: boolean;
|
|
20276
20120
|
canReject: boolean;
|
|
@@ -20348,6 +20192,9 @@ export declare const removeOrganizationFeature: (input: TRemoveOrganizationFeatu
|
|
|
20348
20192
|
rootUserId?: string;
|
|
20349
20193
|
};
|
|
20350
20194
|
createAuthenticatorsIntent?: {
|
|
20195
|
+
/**
|
|
20196
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
20197
|
+
*/
|
|
20351
20198
|
authenticators: {
|
|
20352
20199
|
authenticatorName: string;
|
|
20353
20200
|
userId: string;
|
|
@@ -20850,9 +20697,6 @@ export declare const removeOrganizationFeature: (input: TRemoveOrganizationFeatu
|
|
|
20850
20697
|
privateKeyIds: string[];
|
|
20851
20698
|
};
|
|
20852
20699
|
createInvitationsResult?: {
|
|
20853
|
-
/**
|
|
20854
|
-
* `POST /public/v1/submit/create_policy`
|
|
20855
|
-
*/
|
|
20856
20700
|
invitationIds: string[];
|
|
20857
20701
|
};
|
|
20858
20702
|
acceptInvitationResult?: {
|
|
@@ -20868,20 +20712,12 @@ export declare const removeOrganizationFeature: (input: TRemoveOrganizationFeatu
|
|
|
20868
20712
|
policyId: string;
|
|
20869
20713
|
};
|
|
20870
20714
|
disablePrivateKeyResult?: {
|
|
20871
|
-
/**
|
|
20872
|
-
* `POST /public/v1/submit/export_private_key`
|
|
20873
|
-
*/
|
|
20874
20715
|
privateKeyId: string;
|
|
20875
20716
|
};
|
|
20876
20717
|
deleteUsersResult?: {
|
|
20877
20718
|
userIds: string[];
|
|
20878
20719
|
};
|
|
20879
20720
|
deleteAuthenticatorsResult?: {
|
|
20880
|
-
/**
|
|
20881
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
20882
|
-
*
|
|
20883
|
-
* See {@link DeleteAuthenticators}
|
|
20884
|
-
*/
|
|
20885
20721
|
authenticatorIds: string[];
|
|
20886
20722
|
};
|
|
20887
20723
|
deleteInvitationResult?: {
|
|
@@ -20918,6 +20754,11 @@ export declare const removeOrganizationFeature: (input: TRemoveOrganizationFeatu
|
|
|
20918
20754
|
privateKeyTagIds: string[];
|
|
20919
20755
|
privateKeyIds: string[];
|
|
20920
20756
|
};
|
|
20757
|
+
/**
|
|
20758
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
20759
|
+
*
|
|
20760
|
+
* See {@link NOOPCodegenAnchor}
|
|
20761
|
+
*/
|
|
20921
20762
|
setPaymentMethodResult?: {
|
|
20922
20763
|
lastFour: string;
|
|
20923
20764
|
cardHolderName: string;
|
|
@@ -21079,9 +20920,6 @@ export declare const removeOrganizationFeature: (input: TRemoveOrganizationFeatu
|
|
|
21079
20920
|
nanos: string;
|
|
21080
20921
|
};
|
|
21081
20922
|
}[];
|
|
21082
|
-
/**
|
|
21083
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
21084
|
-
*/
|
|
21085
20923
|
fingerprint: string;
|
|
21086
20924
|
canApprove: boolean;
|
|
21087
20925
|
canReject: boolean;
|
|
@@ -21159,6 +20997,9 @@ export declare const setOrganizationFeature: (input: TSetOrganizationFeatureInpu
|
|
|
21159
20997
|
rootUserId?: string;
|
|
21160
20998
|
};
|
|
21161
20999
|
createAuthenticatorsIntent?: {
|
|
21000
|
+
/**
|
|
21001
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
21002
|
+
*/
|
|
21162
21003
|
authenticators: {
|
|
21163
21004
|
authenticatorName: string;
|
|
21164
21005
|
userId: string;
|
|
@@ -21661,9 +21502,6 @@ export declare const setOrganizationFeature: (input: TSetOrganizationFeatureInpu
|
|
|
21661
21502
|
privateKeyIds: string[];
|
|
21662
21503
|
};
|
|
21663
21504
|
createInvitationsResult?: {
|
|
21664
|
-
/**
|
|
21665
|
-
* `POST /public/v1/submit/create_policy`
|
|
21666
|
-
*/
|
|
21667
21505
|
invitationIds: string[];
|
|
21668
21506
|
};
|
|
21669
21507
|
acceptInvitationResult?: {
|
|
@@ -21679,20 +21517,12 @@ export declare const setOrganizationFeature: (input: TSetOrganizationFeatureInpu
|
|
|
21679
21517
|
policyId: string;
|
|
21680
21518
|
};
|
|
21681
21519
|
disablePrivateKeyResult?: {
|
|
21682
|
-
/**
|
|
21683
|
-
* `POST /public/v1/submit/export_private_key`
|
|
21684
|
-
*/
|
|
21685
21520
|
privateKeyId: string;
|
|
21686
21521
|
};
|
|
21687
21522
|
deleteUsersResult?: {
|
|
21688
21523
|
userIds: string[];
|
|
21689
21524
|
};
|
|
21690
21525
|
deleteAuthenticatorsResult?: {
|
|
21691
|
-
/**
|
|
21692
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
21693
|
-
*
|
|
21694
|
-
* See {@link DeleteAuthenticators}
|
|
21695
|
-
*/
|
|
21696
21526
|
authenticatorIds: string[];
|
|
21697
21527
|
};
|
|
21698
21528
|
deleteInvitationResult?: {
|
|
@@ -21729,6 +21559,11 @@ export declare const setOrganizationFeature: (input: TSetOrganizationFeatureInpu
|
|
|
21729
21559
|
privateKeyTagIds: string[];
|
|
21730
21560
|
privateKeyIds: string[];
|
|
21731
21561
|
};
|
|
21562
|
+
/**
|
|
21563
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
21564
|
+
*
|
|
21565
|
+
* See {@link NOOPCodegenAnchor}
|
|
21566
|
+
*/
|
|
21732
21567
|
setPaymentMethodResult?: {
|
|
21733
21568
|
lastFour: string;
|
|
21734
21569
|
cardHolderName: string;
|
|
@@ -21890,9 +21725,6 @@ export declare const setOrganizationFeature: (input: TSetOrganizationFeatureInpu
|
|
|
21890
21725
|
nanos: string;
|
|
21891
21726
|
};
|
|
21892
21727
|
}[];
|
|
21893
|
-
/**
|
|
21894
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
21895
|
-
*/
|
|
21896
21728
|
fingerprint: string;
|
|
21897
21729
|
canApprove: boolean;
|
|
21898
21730
|
canReject: boolean;
|
|
@@ -21970,6 +21802,9 @@ export declare const signRawPayload: (input: TSignRawPayloadInput) => Promise<{
|
|
|
21970
21802
|
rootUserId?: string;
|
|
21971
21803
|
};
|
|
21972
21804
|
createAuthenticatorsIntent?: {
|
|
21805
|
+
/**
|
|
21806
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
21807
|
+
*/
|
|
21973
21808
|
authenticators: {
|
|
21974
21809
|
authenticatorName: string;
|
|
21975
21810
|
userId: string;
|
|
@@ -22472,9 +22307,6 @@ export declare const signRawPayload: (input: TSignRawPayloadInput) => Promise<{
|
|
|
22472
22307
|
privateKeyIds: string[];
|
|
22473
22308
|
};
|
|
22474
22309
|
createInvitationsResult?: {
|
|
22475
|
-
/**
|
|
22476
|
-
* `POST /public/v1/submit/create_policy`
|
|
22477
|
-
*/
|
|
22478
22310
|
invitationIds: string[];
|
|
22479
22311
|
};
|
|
22480
22312
|
acceptInvitationResult?: {
|
|
@@ -22490,20 +22322,12 @@ export declare const signRawPayload: (input: TSignRawPayloadInput) => Promise<{
|
|
|
22490
22322
|
policyId: string;
|
|
22491
22323
|
};
|
|
22492
22324
|
disablePrivateKeyResult?: {
|
|
22493
|
-
/**
|
|
22494
|
-
* `POST /public/v1/submit/export_private_key`
|
|
22495
|
-
*/
|
|
22496
22325
|
privateKeyId: string;
|
|
22497
22326
|
};
|
|
22498
22327
|
deleteUsersResult?: {
|
|
22499
22328
|
userIds: string[];
|
|
22500
22329
|
};
|
|
22501
22330
|
deleteAuthenticatorsResult?: {
|
|
22502
|
-
/**
|
|
22503
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
22504
|
-
*
|
|
22505
|
-
* See {@link DeleteAuthenticators}
|
|
22506
|
-
*/
|
|
22507
22331
|
authenticatorIds: string[];
|
|
22508
22332
|
};
|
|
22509
22333
|
deleteInvitationResult?: {
|
|
@@ -22540,6 +22364,11 @@ export declare const signRawPayload: (input: TSignRawPayloadInput) => Promise<{
|
|
|
22540
22364
|
privateKeyTagIds: string[];
|
|
22541
22365
|
privateKeyIds: string[];
|
|
22542
22366
|
};
|
|
22367
|
+
/**
|
|
22368
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
22369
|
+
*
|
|
22370
|
+
* See {@link NOOPCodegenAnchor}
|
|
22371
|
+
*/
|
|
22543
22372
|
setPaymentMethodResult?: {
|
|
22544
22373
|
lastFour: string;
|
|
22545
22374
|
cardHolderName: string;
|
|
@@ -22701,9 +22530,6 @@ export declare const signRawPayload: (input: TSignRawPayloadInput) => Promise<{
|
|
|
22701
22530
|
nanos: string;
|
|
22702
22531
|
};
|
|
22703
22532
|
}[];
|
|
22704
|
-
/**
|
|
22705
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
22706
|
-
*/
|
|
22707
22533
|
fingerprint: string;
|
|
22708
22534
|
canApprove: boolean;
|
|
22709
22535
|
canReject: boolean;
|
|
@@ -22781,6 +22607,9 @@ export declare const signTransaction: (input: TSignTransactionInput) => Promise<
|
|
|
22781
22607
|
rootUserId?: string;
|
|
22782
22608
|
};
|
|
22783
22609
|
createAuthenticatorsIntent?: {
|
|
22610
|
+
/**
|
|
22611
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
22612
|
+
*/
|
|
22784
22613
|
authenticators: {
|
|
22785
22614
|
authenticatorName: string;
|
|
22786
22615
|
userId: string;
|
|
@@ -23283,9 +23112,6 @@ export declare const signTransaction: (input: TSignTransactionInput) => Promise<
|
|
|
23283
23112
|
privateKeyIds: string[];
|
|
23284
23113
|
};
|
|
23285
23114
|
createInvitationsResult?: {
|
|
23286
|
-
/**
|
|
23287
|
-
* `POST /public/v1/submit/create_policy`
|
|
23288
|
-
*/
|
|
23289
23115
|
invitationIds: string[];
|
|
23290
23116
|
};
|
|
23291
23117
|
acceptInvitationResult?: {
|
|
@@ -23301,20 +23127,12 @@ export declare const signTransaction: (input: TSignTransactionInput) => Promise<
|
|
|
23301
23127
|
policyId: string;
|
|
23302
23128
|
};
|
|
23303
23129
|
disablePrivateKeyResult?: {
|
|
23304
|
-
/**
|
|
23305
|
-
* `POST /public/v1/submit/export_private_key`
|
|
23306
|
-
*/
|
|
23307
23130
|
privateKeyId: string;
|
|
23308
23131
|
};
|
|
23309
23132
|
deleteUsersResult?: {
|
|
23310
23133
|
userIds: string[];
|
|
23311
23134
|
};
|
|
23312
23135
|
deleteAuthenticatorsResult?: {
|
|
23313
|
-
/**
|
|
23314
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
23315
|
-
*
|
|
23316
|
-
* See {@link DeleteAuthenticators}
|
|
23317
|
-
*/
|
|
23318
23136
|
authenticatorIds: string[];
|
|
23319
23137
|
};
|
|
23320
23138
|
deleteInvitationResult?: {
|
|
@@ -23351,6 +23169,11 @@ export declare const signTransaction: (input: TSignTransactionInput) => Promise<
|
|
|
23351
23169
|
privateKeyTagIds: string[];
|
|
23352
23170
|
privateKeyIds: string[];
|
|
23353
23171
|
};
|
|
23172
|
+
/**
|
|
23173
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
23174
|
+
*
|
|
23175
|
+
* See {@link NOOPCodegenAnchor}
|
|
23176
|
+
*/
|
|
23354
23177
|
setPaymentMethodResult?: {
|
|
23355
23178
|
lastFour: string;
|
|
23356
23179
|
cardHolderName: string;
|
|
@@ -23512,9 +23335,6 @@ export declare const signTransaction: (input: TSignTransactionInput) => Promise<
|
|
|
23512
23335
|
nanos: string;
|
|
23513
23336
|
};
|
|
23514
23337
|
}[];
|
|
23515
|
-
/**
|
|
23516
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
23517
|
-
*/
|
|
23518
23338
|
fingerprint: string;
|
|
23519
23339
|
canApprove: boolean;
|
|
23520
23340
|
canReject: boolean;
|
|
@@ -23592,6 +23412,9 @@ export declare const updateAllowedOrigins: (input: TUpdateAllowedOriginsInput) =
|
|
|
23592
23412
|
rootUserId?: string;
|
|
23593
23413
|
};
|
|
23594
23414
|
createAuthenticatorsIntent?: {
|
|
23415
|
+
/**
|
|
23416
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
23417
|
+
*/
|
|
23595
23418
|
authenticators: {
|
|
23596
23419
|
authenticatorName: string;
|
|
23597
23420
|
userId: string;
|
|
@@ -24094,9 +23917,6 @@ export declare const updateAllowedOrigins: (input: TUpdateAllowedOriginsInput) =
|
|
|
24094
23917
|
privateKeyIds: string[];
|
|
24095
23918
|
};
|
|
24096
23919
|
createInvitationsResult?: {
|
|
24097
|
-
/**
|
|
24098
|
-
* `POST /public/v1/submit/create_policy`
|
|
24099
|
-
*/
|
|
24100
23920
|
invitationIds: string[];
|
|
24101
23921
|
};
|
|
24102
23922
|
acceptInvitationResult?: {
|
|
@@ -24112,20 +23932,12 @@ export declare const updateAllowedOrigins: (input: TUpdateAllowedOriginsInput) =
|
|
|
24112
23932
|
policyId: string;
|
|
24113
23933
|
};
|
|
24114
23934
|
disablePrivateKeyResult?: {
|
|
24115
|
-
/**
|
|
24116
|
-
* `POST /public/v1/submit/export_private_key`
|
|
24117
|
-
*/
|
|
24118
23935
|
privateKeyId: string;
|
|
24119
23936
|
};
|
|
24120
23937
|
deleteUsersResult?: {
|
|
24121
23938
|
userIds: string[];
|
|
24122
23939
|
};
|
|
24123
23940
|
deleteAuthenticatorsResult?: {
|
|
24124
|
-
/**
|
|
24125
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
24126
|
-
*
|
|
24127
|
-
* See {@link DeleteAuthenticators}
|
|
24128
|
-
*/
|
|
24129
23941
|
authenticatorIds: string[];
|
|
24130
23942
|
};
|
|
24131
23943
|
deleteInvitationResult?: {
|
|
@@ -24162,6 +23974,11 @@ export declare const updateAllowedOrigins: (input: TUpdateAllowedOriginsInput) =
|
|
|
24162
23974
|
privateKeyTagIds: string[];
|
|
24163
23975
|
privateKeyIds: string[];
|
|
24164
23976
|
};
|
|
23977
|
+
/**
|
|
23978
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
23979
|
+
*
|
|
23980
|
+
* See {@link NOOPCodegenAnchor}
|
|
23981
|
+
*/
|
|
24165
23982
|
setPaymentMethodResult?: {
|
|
24166
23983
|
lastFour: string;
|
|
24167
23984
|
cardHolderName: string;
|
|
@@ -24323,9 +24140,6 @@ export declare const updateAllowedOrigins: (input: TUpdateAllowedOriginsInput) =
|
|
|
24323
24140
|
nanos: string;
|
|
24324
24141
|
};
|
|
24325
24142
|
}[];
|
|
24326
|
-
/**
|
|
24327
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
24328
|
-
*/
|
|
24329
24143
|
fingerprint: string;
|
|
24330
24144
|
canApprove: boolean;
|
|
24331
24145
|
canReject: boolean;
|
|
@@ -24403,6 +24217,9 @@ export declare const updatePolicy: (input: TUpdatePolicyInput) => Promise<{
|
|
|
24403
24217
|
rootUserId?: string;
|
|
24404
24218
|
};
|
|
24405
24219
|
createAuthenticatorsIntent?: {
|
|
24220
|
+
/**
|
|
24221
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
24222
|
+
*/
|
|
24406
24223
|
authenticators: {
|
|
24407
24224
|
authenticatorName: string;
|
|
24408
24225
|
userId: string;
|
|
@@ -24905,9 +24722,6 @@ export declare const updatePolicy: (input: TUpdatePolicyInput) => Promise<{
|
|
|
24905
24722
|
privateKeyIds: string[];
|
|
24906
24723
|
};
|
|
24907
24724
|
createInvitationsResult?: {
|
|
24908
|
-
/**
|
|
24909
|
-
* `POST /public/v1/submit/create_policy`
|
|
24910
|
-
*/
|
|
24911
24725
|
invitationIds: string[];
|
|
24912
24726
|
};
|
|
24913
24727
|
acceptInvitationResult?: {
|
|
@@ -24923,20 +24737,12 @@ export declare const updatePolicy: (input: TUpdatePolicyInput) => Promise<{
|
|
|
24923
24737
|
policyId: string;
|
|
24924
24738
|
};
|
|
24925
24739
|
disablePrivateKeyResult?: {
|
|
24926
|
-
/**
|
|
24927
|
-
* `POST /public/v1/submit/export_private_key`
|
|
24928
|
-
*/
|
|
24929
24740
|
privateKeyId: string;
|
|
24930
24741
|
};
|
|
24931
24742
|
deleteUsersResult?: {
|
|
24932
24743
|
userIds: string[];
|
|
24933
24744
|
};
|
|
24934
24745
|
deleteAuthenticatorsResult?: {
|
|
24935
|
-
/**
|
|
24936
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
24937
|
-
*
|
|
24938
|
-
* See {@link DeleteAuthenticators}
|
|
24939
|
-
*/
|
|
24940
24746
|
authenticatorIds: string[];
|
|
24941
24747
|
};
|
|
24942
24748
|
deleteInvitationResult?: {
|
|
@@ -24973,6 +24779,11 @@ export declare const updatePolicy: (input: TUpdatePolicyInput) => Promise<{
|
|
|
24973
24779
|
privateKeyTagIds: string[];
|
|
24974
24780
|
privateKeyIds: string[];
|
|
24975
24781
|
};
|
|
24782
|
+
/**
|
|
24783
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
24784
|
+
*
|
|
24785
|
+
* See {@link NOOPCodegenAnchor}
|
|
24786
|
+
*/
|
|
24976
24787
|
setPaymentMethodResult?: {
|
|
24977
24788
|
lastFour: string;
|
|
24978
24789
|
cardHolderName: string;
|
|
@@ -25134,9 +24945,6 @@ export declare const updatePolicy: (input: TUpdatePolicyInput) => Promise<{
|
|
|
25134
24945
|
nanos: string;
|
|
25135
24946
|
};
|
|
25136
24947
|
}[];
|
|
25137
|
-
/**
|
|
25138
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
25139
|
-
*/
|
|
25140
24948
|
fingerprint: string;
|
|
25141
24949
|
canApprove: boolean;
|
|
25142
24950
|
canReject: boolean;
|
|
@@ -25214,6 +25022,9 @@ export declare const updatePrivateKeyTag: (input: TUpdatePrivateKeyTagInput) =>
|
|
|
25214
25022
|
rootUserId?: string;
|
|
25215
25023
|
};
|
|
25216
25024
|
createAuthenticatorsIntent?: {
|
|
25025
|
+
/**
|
|
25026
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
25027
|
+
*/
|
|
25217
25028
|
authenticators: {
|
|
25218
25029
|
authenticatorName: string;
|
|
25219
25030
|
userId: string;
|
|
@@ -25716,9 +25527,6 @@ export declare const updatePrivateKeyTag: (input: TUpdatePrivateKeyTagInput) =>
|
|
|
25716
25527
|
privateKeyIds: string[];
|
|
25717
25528
|
};
|
|
25718
25529
|
createInvitationsResult?: {
|
|
25719
|
-
/**
|
|
25720
|
-
* `POST /public/v1/submit/create_policy`
|
|
25721
|
-
*/
|
|
25722
25530
|
invitationIds: string[];
|
|
25723
25531
|
};
|
|
25724
25532
|
acceptInvitationResult?: {
|
|
@@ -25734,20 +25542,12 @@ export declare const updatePrivateKeyTag: (input: TUpdatePrivateKeyTagInput) =>
|
|
|
25734
25542
|
policyId: string;
|
|
25735
25543
|
};
|
|
25736
25544
|
disablePrivateKeyResult?: {
|
|
25737
|
-
/**
|
|
25738
|
-
* `POST /public/v1/submit/export_private_key`
|
|
25739
|
-
*/
|
|
25740
25545
|
privateKeyId: string;
|
|
25741
25546
|
};
|
|
25742
25547
|
deleteUsersResult?: {
|
|
25743
25548
|
userIds: string[];
|
|
25744
25549
|
};
|
|
25745
25550
|
deleteAuthenticatorsResult?: {
|
|
25746
|
-
/**
|
|
25747
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
25748
|
-
*
|
|
25749
|
-
* See {@link DeleteAuthenticators}
|
|
25750
|
-
*/
|
|
25751
25551
|
authenticatorIds: string[];
|
|
25752
25552
|
};
|
|
25753
25553
|
deleteInvitationResult?: {
|
|
@@ -25784,6 +25584,11 @@ export declare const updatePrivateKeyTag: (input: TUpdatePrivateKeyTagInput) =>
|
|
|
25784
25584
|
privateKeyTagIds: string[];
|
|
25785
25585
|
privateKeyIds: string[];
|
|
25786
25586
|
};
|
|
25587
|
+
/**
|
|
25588
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
25589
|
+
*
|
|
25590
|
+
* See {@link NOOPCodegenAnchor}
|
|
25591
|
+
*/
|
|
25787
25592
|
setPaymentMethodResult?: {
|
|
25788
25593
|
lastFour: string;
|
|
25789
25594
|
cardHolderName: string;
|
|
@@ -25945,9 +25750,6 @@ export declare const updatePrivateKeyTag: (input: TUpdatePrivateKeyTagInput) =>
|
|
|
25945
25750
|
nanos: string;
|
|
25946
25751
|
};
|
|
25947
25752
|
}[];
|
|
25948
|
-
/**
|
|
25949
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
25950
|
-
*/
|
|
25951
25753
|
fingerprint: string;
|
|
25952
25754
|
canApprove: boolean;
|
|
25953
25755
|
canReject: boolean;
|
|
@@ -26025,6 +25827,9 @@ export declare const updateRootQuorum: (input: TUpdateRootQuorumInput) => Promis
|
|
|
26025
25827
|
rootUserId?: string;
|
|
26026
25828
|
};
|
|
26027
25829
|
createAuthenticatorsIntent?: {
|
|
25830
|
+
/**
|
|
25831
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
25832
|
+
*/
|
|
26028
25833
|
authenticators: {
|
|
26029
25834
|
authenticatorName: string;
|
|
26030
25835
|
userId: string;
|
|
@@ -26527,9 +26332,6 @@ export declare const updateRootQuorum: (input: TUpdateRootQuorumInput) => Promis
|
|
|
26527
26332
|
privateKeyIds: string[];
|
|
26528
26333
|
};
|
|
26529
26334
|
createInvitationsResult?: {
|
|
26530
|
-
/**
|
|
26531
|
-
* `POST /public/v1/submit/create_policy`
|
|
26532
|
-
*/
|
|
26533
26335
|
invitationIds: string[];
|
|
26534
26336
|
};
|
|
26535
26337
|
acceptInvitationResult?: {
|
|
@@ -26545,20 +26347,12 @@ export declare const updateRootQuorum: (input: TUpdateRootQuorumInput) => Promis
|
|
|
26545
26347
|
policyId: string;
|
|
26546
26348
|
};
|
|
26547
26349
|
disablePrivateKeyResult?: {
|
|
26548
|
-
/**
|
|
26549
|
-
* `POST /public/v1/submit/export_private_key`
|
|
26550
|
-
*/
|
|
26551
26350
|
privateKeyId: string;
|
|
26552
26351
|
};
|
|
26553
26352
|
deleteUsersResult?: {
|
|
26554
26353
|
userIds: string[];
|
|
26555
26354
|
};
|
|
26556
26355
|
deleteAuthenticatorsResult?: {
|
|
26557
|
-
/**
|
|
26558
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
26559
|
-
*
|
|
26560
|
-
* See {@link DeleteAuthenticators}
|
|
26561
|
-
*/
|
|
26562
26356
|
authenticatorIds: string[];
|
|
26563
26357
|
};
|
|
26564
26358
|
deleteInvitationResult?: {
|
|
@@ -26595,6 +26389,11 @@ export declare const updateRootQuorum: (input: TUpdateRootQuorumInput) => Promis
|
|
|
26595
26389
|
privateKeyTagIds: string[];
|
|
26596
26390
|
privateKeyIds: string[];
|
|
26597
26391
|
};
|
|
26392
|
+
/**
|
|
26393
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
26394
|
+
*
|
|
26395
|
+
* See {@link NOOPCodegenAnchor}
|
|
26396
|
+
*/
|
|
26598
26397
|
setPaymentMethodResult?: {
|
|
26599
26398
|
lastFour: string;
|
|
26600
26399
|
cardHolderName: string;
|
|
@@ -26756,9 +26555,6 @@ export declare const updateRootQuorum: (input: TUpdateRootQuorumInput) => Promis
|
|
|
26756
26555
|
nanos: string;
|
|
26757
26556
|
};
|
|
26758
26557
|
}[];
|
|
26759
|
-
/**
|
|
26760
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
26761
|
-
*/
|
|
26762
26558
|
fingerprint: string;
|
|
26763
26559
|
canApprove: boolean;
|
|
26764
26560
|
canReject: boolean;
|
|
@@ -26836,6 +26632,9 @@ export declare const updateUser: (input: TUpdateUserInput) => Promise<{
|
|
|
26836
26632
|
rootUserId?: string;
|
|
26837
26633
|
};
|
|
26838
26634
|
createAuthenticatorsIntent?: {
|
|
26635
|
+
/**
|
|
26636
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
26637
|
+
*/
|
|
26839
26638
|
authenticators: {
|
|
26840
26639
|
authenticatorName: string;
|
|
26841
26640
|
userId: string;
|
|
@@ -27338,9 +27137,6 @@ export declare const updateUser: (input: TUpdateUserInput) => Promise<{
|
|
|
27338
27137
|
privateKeyIds: string[];
|
|
27339
27138
|
};
|
|
27340
27139
|
createInvitationsResult?: {
|
|
27341
|
-
/**
|
|
27342
|
-
* `POST /public/v1/submit/create_policy`
|
|
27343
|
-
*/
|
|
27344
27140
|
invitationIds: string[];
|
|
27345
27141
|
};
|
|
27346
27142
|
acceptInvitationResult?: {
|
|
@@ -27356,20 +27152,12 @@ export declare const updateUser: (input: TUpdateUserInput) => Promise<{
|
|
|
27356
27152
|
policyId: string;
|
|
27357
27153
|
};
|
|
27358
27154
|
disablePrivateKeyResult?: {
|
|
27359
|
-
/**
|
|
27360
|
-
* `POST /public/v1/submit/export_private_key`
|
|
27361
|
-
*/
|
|
27362
27155
|
privateKeyId: string;
|
|
27363
27156
|
};
|
|
27364
27157
|
deleteUsersResult?: {
|
|
27365
27158
|
userIds: string[];
|
|
27366
27159
|
};
|
|
27367
27160
|
deleteAuthenticatorsResult?: {
|
|
27368
|
-
/**
|
|
27369
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
27370
|
-
*
|
|
27371
|
-
* See {@link DeleteAuthenticators}
|
|
27372
|
-
*/
|
|
27373
27161
|
authenticatorIds: string[];
|
|
27374
27162
|
};
|
|
27375
27163
|
deleteInvitationResult?: {
|
|
@@ -27406,6 +27194,11 @@ export declare const updateUser: (input: TUpdateUserInput) => Promise<{
|
|
|
27406
27194
|
privateKeyTagIds: string[];
|
|
27407
27195
|
privateKeyIds: string[];
|
|
27408
27196
|
};
|
|
27197
|
+
/**
|
|
27198
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
27199
|
+
*
|
|
27200
|
+
* See {@link NOOPCodegenAnchor}
|
|
27201
|
+
*/
|
|
27409
27202
|
setPaymentMethodResult?: {
|
|
27410
27203
|
lastFour: string;
|
|
27411
27204
|
cardHolderName: string;
|
|
@@ -27567,9 +27360,6 @@ export declare const updateUser: (input: TUpdateUserInput) => Promise<{
|
|
|
27567
27360
|
nanos: string;
|
|
27568
27361
|
};
|
|
27569
27362
|
}[];
|
|
27570
|
-
/**
|
|
27571
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
27572
|
-
*/
|
|
27573
27363
|
fingerprint: string;
|
|
27574
27364
|
canApprove: boolean;
|
|
27575
27365
|
canReject: boolean;
|
|
@@ -27647,6 +27437,9 @@ export declare const updateUserTag: (input: TUpdateUserTagInput) => Promise<{
|
|
|
27647
27437
|
rootUserId?: string;
|
|
27648
27438
|
};
|
|
27649
27439
|
createAuthenticatorsIntent?: {
|
|
27440
|
+
/**
|
|
27441
|
+
* `POST /public/v1/submit/create_api_only_users`
|
|
27442
|
+
*/
|
|
27650
27443
|
authenticators: {
|
|
27651
27444
|
authenticatorName: string;
|
|
27652
27445
|
userId: string;
|
|
@@ -28149,9 +27942,6 @@ export declare const updateUserTag: (input: TUpdateUserTagInput) => Promise<{
|
|
|
28149
27942
|
privateKeyIds: string[];
|
|
28150
27943
|
};
|
|
28151
27944
|
createInvitationsResult?: {
|
|
28152
|
-
/**
|
|
28153
|
-
* `POST /public/v1/submit/create_policy`
|
|
28154
|
-
*/
|
|
28155
27945
|
invitationIds: string[];
|
|
28156
27946
|
};
|
|
28157
27947
|
acceptInvitationResult?: {
|
|
@@ -28167,20 +27957,12 @@ export declare const updateUserTag: (input: TUpdateUserTagInput) => Promise<{
|
|
|
28167
27957
|
policyId: string;
|
|
28168
27958
|
};
|
|
28169
27959
|
disablePrivateKeyResult?: {
|
|
28170
|
-
/**
|
|
28171
|
-
* `POST /public/v1/submit/export_private_key`
|
|
28172
|
-
*/
|
|
28173
27960
|
privateKeyId: string;
|
|
28174
27961
|
};
|
|
28175
27962
|
deleteUsersResult?: {
|
|
28176
27963
|
userIds: string[];
|
|
28177
27964
|
};
|
|
28178
27965
|
deleteAuthenticatorsResult?: {
|
|
28179
|
-
/**
|
|
28180
|
-
* Request a WebAuthn assertion and return a signed `DeleteAuthenticators` request, ready to be POSTed to Turnkey.
|
|
28181
|
-
*
|
|
28182
|
-
* See {@link DeleteAuthenticators}
|
|
28183
|
-
*/
|
|
28184
27966
|
authenticatorIds: string[];
|
|
28185
27967
|
};
|
|
28186
27968
|
deleteInvitationResult?: {
|
|
@@ -28217,6 +27999,11 @@ export declare const updateUserTag: (input: TUpdateUserTagInput) => Promise<{
|
|
|
28217
27999
|
privateKeyTagIds: string[];
|
|
28218
28000
|
privateKeyIds: string[];
|
|
28219
28001
|
};
|
|
28002
|
+
/**
|
|
28003
|
+
* Request a WebAuthn assertion and return a signed `NOOPCodegenAnchor` request, ready to be POSTed to Turnkey.
|
|
28004
|
+
*
|
|
28005
|
+
* See {@link NOOPCodegenAnchor}
|
|
28006
|
+
*/
|
|
28220
28007
|
setPaymentMethodResult?: {
|
|
28221
28008
|
lastFour: string;
|
|
28222
28009
|
cardHolderName: string;
|
|
@@ -28378,9 +28165,6 @@ export declare const updateUserTag: (input: TUpdateUserTagInput) => Promise<{
|
|
|
28378
28165
|
nanos: string;
|
|
28379
28166
|
};
|
|
28380
28167
|
}[];
|
|
28381
|
-
/**
|
|
28382
|
-
* `POST /public/v1/query/list_wallet_accounts`
|
|
28383
|
-
*/
|
|
28384
28168
|
fingerprint: string;
|
|
28385
28169
|
canApprove: boolean;
|
|
28386
28170
|
canReject: boolean;
|