@turnkey/sdk-browser 0.0.1

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.
Files changed (64) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/LICENSE +201 -0
  3. package/README.md +38 -0
  4. package/dist/__generated__/sdk-client-base.d.ts +73 -0
  5. package/dist/__generated__/sdk-client-base.d.ts.map +1 -0
  6. package/dist/__generated__/sdk-client-base.js +600 -0
  7. package/dist/__generated__/sdk-client-base.js.map +1 -0
  8. package/dist/__generated__/sdk-client-base.mjs +598 -0
  9. package/dist/__generated__/sdk-client-base.mjs.map +1 -0
  10. package/dist/__generated__/sdk_api_types.d.ts +319 -0
  11. package/dist/__generated__/sdk_api_types.d.ts.map +1 -0
  12. package/dist/__generated__/version.d.ts +2 -0
  13. package/dist/__generated__/version.d.ts.map +1 -0
  14. package/dist/__generated__/version.js +6 -0
  15. package/dist/__generated__/version.js.map +1 -0
  16. package/dist/__generated__/version.mjs +4 -0
  17. package/dist/__generated__/version.mjs.map +1 -0
  18. package/dist/__inputs__/public_api.types.d.ts +3303 -0
  19. package/dist/__inputs__/public_api.types.d.ts.map +1 -0
  20. package/dist/__types__/base.d.ts +71 -0
  21. package/dist/__types__/base.d.ts.map +1 -0
  22. package/dist/__types__/base.js +23 -0
  23. package/dist/__types__/base.js.map +1 -0
  24. package/dist/__types__/base.mjs +21 -0
  25. package/dist/__types__/base.mjs.map +1 -0
  26. package/dist/constants.d.ts +4 -0
  27. package/dist/constants.d.ts.map +1 -0
  28. package/dist/constants.js +18 -0
  29. package/dist/constants.js.map +1 -0
  30. package/dist/constants.mjs +15 -0
  31. package/dist/constants.mjs.map +1 -0
  32. package/dist/index.d.ts +15 -0
  33. package/dist/index.d.ts.map +1 -0
  34. package/dist/index.js +60 -0
  35. package/dist/index.js.map +1 -0
  36. package/dist/index.mjs +7 -0
  37. package/dist/index.mjs.map +1 -0
  38. package/dist/models.d.ts +20 -0
  39. package/dist/models.d.ts.map +1 -0
  40. package/dist/sdk-client.d.ts +42 -0
  41. package/dist/sdk-client.d.ts.map +1 -0
  42. package/dist/sdk-client.js +263 -0
  43. package/dist/sdk-client.js.map +1 -0
  44. package/dist/sdk-client.mjs +260 -0
  45. package/dist/sdk-client.mjs.map +1 -0
  46. package/dist/storage.d.ts +16 -0
  47. package/dist/storage.d.ts.map +1 -0
  48. package/dist/storage.js +47 -0
  49. package/dist/storage.js.map +1 -0
  50. package/dist/storage.mjs +43 -0
  51. package/dist/storage.mjs.map +1 -0
  52. package/dist/turnkey-helpers.d.ts +10 -0
  53. package/dist/turnkey-helpers.d.ts.map +1 -0
  54. package/dist/turnkey-helpers.js +17 -0
  55. package/dist/turnkey-helpers.js.map +1 -0
  56. package/dist/turnkey-helpers.mjs +14 -0
  57. package/dist/turnkey-helpers.mjs.map +1 -0
  58. package/dist/utils.d.ts +4 -0
  59. package/dist/utils.d.ts.map +1 -0
  60. package/dist/utils.js +21 -0
  61. package/dist/utils.js.map +1 -0
  62. package/dist/utils.mjs +18 -0
  63. package/dist/utils.mjs.map +1 -0
  64. package/package.json +61 -0
@@ -0,0 +1,319 @@
1
+ import type { operations } from "../__inputs__/public_api.types";
2
+ import type { queryOverrideParams, commandOverrideParams, ActivityMetadata } from "../__types__/base";
3
+ export type TGetActivityResponse = operations["PublicApiService_GetActivity"]["responses"]["200"]["schema"];
4
+ export type TGetActivityInput = {
5
+ body: TGetActivityBody;
6
+ };
7
+ export type TGetActivityBody = Omit<operations["PublicApiService_GetActivity"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
8
+ export type TGetApiKeyResponse = operations["PublicApiService_GetApiKey"]["responses"]["200"]["schema"];
9
+ export type TGetApiKeyInput = {
10
+ body: TGetApiKeyBody;
11
+ };
12
+ export type TGetApiKeyBody = Omit<operations["PublicApiService_GetApiKey"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
13
+ export type TGetApiKeysResponse = operations["PublicApiService_GetApiKeys"]["responses"]["200"]["schema"];
14
+ export type TGetApiKeysInput = {
15
+ body: TGetApiKeysBody;
16
+ };
17
+ export type TGetApiKeysBody = Omit<operations["PublicApiService_GetApiKeys"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
18
+ export type TGetAuthenticatorResponse = operations["PublicApiService_GetAuthenticator"]["responses"]["200"]["schema"];
19
+ export type TGetAuthenticatorInput = {
20
+ body: TGetAuthenticatorBody;
21
+ };
22
+ export type TGetAuthenticatorBody = Omit<operations["PublicApiService_GetAuthenticator"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
23
+ export type TGetAuthenticatorsResponse = operations["PublicApiService_GetAuthenticators"]["responses"]["200"]["schema"];
24
+ export type TGetAuthenticatorsInput = {
25
+ body: TGetAuthenticatorsBody;
26
+ };
27
+ export type TGetAuthenticatorsBody = Omit<operations["PublicApiService_GetAuthenticators"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
28
+ export type TGetOrganizationResponse = operations["PublicApiService_GetOrganization"]["responses"]["200"]["schema"];
29
+ export type TGetOrganizationInput = {
30
+ body: TGetOrganizationBody;
31
+ };
32
+ export type TGetOrganizationBody = Omit<operations["PublicApiService_GetOrganization"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
33
+ export type TGetPolicyResponse = operations["PublicApiService_GetPolicy"]["responses"]["200"]["schema"];
34
+ export type TGetPolicyInput = {
35
+ body: TGetPolicyBody;
36
+ };
37
+ export type TGetPolicyBody = Omit<operations["PublicApiService_GetPolicy"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
38
+ export type TGetPrivateKeyResponse = operations["PublicApiService_GetPrivateKey"]["responses"]["200"]["schema"];
39
+ export type TGetPrivateKeyInput = {
40
+ body: TGetPrivateKeyBody;
41
+ };
42
+ export type TGetPrivateKeyBody = Omit<operations["PublicApiService_GetPrivateKey"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
43
+ export type TGetUserResponse = operations["PublicApiService_GetUser"]["responses"]["200"]["schema"];
44
+ export type TGetUserInput = {
45
+ body: TGetUserBody;
46
+ };
47
+ export type TGetUserBody = Omit<operations["PublicApiService_GetUser"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
48
+ export type TGetWalletResponse = operations["PublicApiService_GetWallet"]["responses"]["200"]["schema"];
49
+ export type TGetWalletInput = {
50
+ body: TGetWalletBody;
51
+ };
52
+ export type TGetWalletBody = Omit<operations["PublicApiService_GetWallet"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
53
+ export type TGetActivitiesResponse = operations["PublicApiService_GetActivities"]["responses"]["200"]["schema"];
54
+ export type TGetActivitiesInput = {
55
+ body: TGetActivitiesBody;
56
+ };
57
+ export type TGetActivitiesBody = Omit<operations["PublicApiService_GetActivities"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
58
+ export type TGetPoliciesResponse = operations["PublicApiService_GetPolicies"]["responses"]["200"]["schema"];
59
+ export type TGetPoliciesInput = {
60
+ body: TGetPoliciesBody;
61
+ };
62
+ export type TGetPoliciesBody = Omit<operations["PublicApiService_GetPolicies"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
63
+ export type TListPrivateKeyTagsResponse = operations["PublicApiService_ListPrivateKeyTags"]["responses"]["200"]["schema"];
64
+ export type TListPrivateKeyTagsInput = {
65
+ body: TListPrivateKeyTagsBody;
66
+ };
67
+ export type TListPrivateKeyTagsBody = Omit<operations["PublicApiService_ListPrivateKeyTags"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
68
+ export type TGetPrivateKeysResponse = operations["PublicApiService_GetPrivateKeys"]["responses"]["200"]["schema"];
69
+ export type TGetPrivateKeysInput = {
70
+ body: TGetPrivateKeysBody;
71
+ };
72
+ export type TGetPrivateKeysBody = Omit<operations["PublicApiService_GetPrivateKeys"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
73
+ export type TGetSubOrgIdsResponse = operations["PublicApiService_GetSubOrgIds"]["responses"]["200"]["schema"];
74
+ export type TGetSubOrgIdsInput = {
75
+ body: TGetSubOrgIdsBody;
76
+ };
77
+ export type TGetSubOrgIdsBody = Omit<operations["PublicApiService_GetSubOrgIds"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
78
+ export type TListUserTagsResponse = operations["PublicApiService_ListUserTags"]["responses"]["200"]["schema"];
79
+ export type TListUserTagsInput = {
80
+ body: TListUserTagsBody;
81
+ };
82
+ export type TListUserTagsBody = Omit<operations["PublicApiService_ListUserTags"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
83
+ export type TGetUsersResponse = operations["PublicApiService_GetUsers"]["responses"]["200"]["schema"];
84
+ export type TGetUsersInput = {
85
+ body: TGetUsersBody;
86
+ };
87
+ export type TGetUsersBody = Omit<operations["PublicApiService_GetUsers"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
88
+ export type TGetWalletAccountsResponse = operations["PublicApiService_GetWalletAccounts"]["responses"]["200"]["schema"];
89
+ export type TGetWalletAccountsInput = {
90
+ body: TGetWalletAccountsBody;
91
+ };
92
+ export type TGetWalletAccountsBody = Omit<operations["PublicApiService_GetWalletAccounts"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
93
+ export type TGetWalletsResponse = operations["PublicApiService_GetWallets"]["responses"]["200"]["schema"];
94
+ export type TGetWalletsInput = {
95
+ body: TGetWalletsBody;
96
+ };
97
+ export type TGetWalletsBody = Omit<operations["PublicApiService_GetWallets"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
98
+ export type TGetWhoamiResponse = operations["PublicApiService_GetWhoami"]["responses"]["200"]["schema"];
99
+ export type TGetWhoamiInput = {
100
+ body: TGetWhoamiBody;
101
+ };
102
+ export type TGetWhoamiBody = Omit<operations["PublicApiService_GetWhoami"]["parameters"]["body"]["body"], "organizationId"> & queryOverrideParams;
103
+ export type TApproveActivityResponse = operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"]["activity"]["result"] & ActivityMetadata;
104
+ export type TApproveActivityInput = {
105
+ body: TApproveActivityBody;
106
+ };
107
+ export type TApproveActivityBody = operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
108
+ export type TCreateApiKeysResponse = operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createApiKeysResult"] & ActivityMetadata;
109
+ export type TCreateApiKeysInput = {
110
+ body: TCreateApiKeysBody;
111
+ };
112
+ export type TCreateApiKeysBody = operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
113
+ export type TCreateApiOnlyUsersResponse = operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createApiOnlyUsersResult"] & ActivityMetadata;
114
+ export type TCreateApiOnlyUsersInput = {
115
+ body: TCreateApiOnlyUsersBody;
116
+ };
117
+ export type TCreateApiOnlyUsersBody = operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
118
+ export type TCreateAuthenticatorsResponse = operations["PublicApiService_CreateAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["createAuthenticatorsResult"] & ActivityMetadata;
119
+ export type TCreateAuthenticatorsInput = {
120
+ body: TCreateAuthenticatorsBody;
121
+ };
122
+ export type TCreateAuthenticatorsBody = operations["PublicApiService_CreateAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
123
+ export type TCreateInvitationsResponse = operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"]["activity"]["result"]["createInvitationsResult"] & ActivityMetadata;
124
+ export type TCreateInvitationsInput = {
125
+ body: TCreateInvitationsBody;
126
+ };
127
+ export type TCreateInvitationsBody = operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
128
+ export type TCreatePoliciesResponse = operations["PublicApiService_CreatePolicies"]["responses"]["200"]["schema"]["activity"]["result"]["createPoliciesResult"] & ActivityMetadata;
129
+ export type TCreatePoliciesInput = {
130
+ body: TCreatePoliciesBody;
131
+ };
132
+ export type TCreatePoliciesBody = operations["PublicApiService_CreatePolicies"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
133
+ export type TCreatePolicyResponse = operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["createPolicyResult"] & ActivityMetadata;
134
+ export type TCreatePolicyInput = {
135
+ body: TCreatePolicyBody;
136
+ };
137
+ export type TCreatePolicyBody = operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
138
+ export type TCreatePrivateKeyTagResponse = operations["PublicApiService_CreatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeyTagResult"] & ActivityMetadata;
139
+ export type TCreatePrivateKeyTagInput = {
140
+ body: TCreatePrivateKeyTagBody;
141
+ };
142
+ export type TCreatePrivateKeyTagBody = operations["PublicApiService_CreatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
143
+ export type TCreatePrivateKeysResponse = operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"]["activity"]["result"]["createPrivateKeysResultV2"] & ActivityMetadata;
144
+ export type TCreatePrivateKeysInput = {
145
+ body: TCreatePrivateKeysBody;
146
+ };
147
+ export type TCreatePrivateKeysBody = operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
148
+ export type TCreateReadOnlySessionResponse = operations["PublicApiService_CreateReadOnlySession"]["responses"]["200"]["schema"]["activity"]["result"]["createReadOnlySessionResult"] & ActivityMetadata;
149
+ export type TCreateReadOnlySessionInput = {
150
+ body: TCreateReadOnlySessionBody;
151
+ };
152
+ export type TCreateReadOnlySessionBody = operations["PublicApiService_CreateReadOnlySession"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
153
+ export type TCreateSubOrganizationResponse = operations["PublicApiService_CreateSubOrganization"]["responses"]["200"]["schema"]["activity"]["result"]["createSubOrganizationResultV4"] & ActivityMetadata;
154
+ export type TCreateSubOrganizationInput = {
155
+ body: TCreateSubOrganizationBody;
156
+ };
157
+ export type TCreateSubOrganizationBody = operations["PublicApiService_CreateSubOrganization"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
158
+ export type TCreateUserTagResponse = operations["PublicApiService_CreateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["createUserTagResult"] & ActivityMetadata;
159
+ export type TCreateUserTagInput = {
160
+ body: TCreateUserTagBody;
161
+ };
162
+ export type TCreateUserTagBody = operations["PublicApiService_CreateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
163
+ export type TCreateUsersResponse = operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"]["activity"]["result"]["createUsersResult"] & ActivityMetadata;
164
+ export type TCreateUsersInput = {
165
+ body: TCreateUsersBody;
166
+ };
167
+ export type TCreateUsersBody = operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
168
+ export type TCreateWalletResponse = operations["PublicApiService_CreateWallet"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletResult"] & ActivityMetadata;
169
+ export type TCreateWalletInput = {
170
+ body: TCreateWalletBody;
171
+ };
172
+ export type TCreateWalletBody = operations["PublicApiService_CreateWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
173
+ export type TCreateWalletAccountsResponse = operations["PublicApiService_CreateWalletAccounts"]["responses"]["200"]["schema"]["activity"]["result"]["createWalletAccountsResult"] & ActivityMetadata;
174
+ export type TCreateWalletAccountsInput = {
175
+ body: TCreateWalletAccountsBody;
176
+ };
177
+ export type TCreateWalletAccountsBody = operations["PublicApiService_CreateWalletAccounts"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
178
+ export type TDeleteApiKeysResponse = operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"]["activity"]["result"]["deleteApiKeysResult"] & ActivityMetadata;
179
+ export type TDeleteApiKeysInput = {
180
+ body: TDeleteApiKeysBody;
181
+ };
182
+ export type TDeleteApiKeysBody = operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
183
+ export type TDeleteAuthenticatorsResponse = operations["PublicApiService_DeleteAuthenticators"]["responses"]["200"]["schema"]["activity"]["result"]["deleteAuthenticatorsResult"] & ActivityMetadata;
184
+ export type TDeleteAuthenticatorsInput = {
185
+ body: TDeleteAuthenticatorsBody;
186
+ };
187
+ export type TDeleteAuthenticatorsBody = operations["PublicApiService_DeleteAuthenticators"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
188
+ export type TDeleteInvitationResponse = operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"]["activity"]["result"]["deleteInvitationResult"] & ActivityMetadata;
189
+ export type TDeleteInvitationInput = {
190
+ body: TDeleteInvitationBody;
191
+ };
192
+ export type TDeleteInvitationBody = operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
193
+ export type TDeletePolicyResponse = operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["deletePolicyResult"] & ActivityMetadata;
194
+ export type TDeletePolicyInput = {
195
+ body: TDeletePolicyBody;
196
+ };
197
+ export type TDeletePolicyBody = operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
198
+ export type TDeletePrivateKeyTagsResponse = operations["PublicApiService_DeletePrivateKeyTags"]["responses"]["200"]["schema"]["activity"]["result"]["deletePrivateKeyTagsResult"] & ActivityMetadata;
199
+ export type TDeletePrivateKeyTagsInput = {
200
+ body: TDeletePrivateKeyTagsBody;
201
+ };
202
+ export type TDeletePrivateKeyTagsBody = operations["PublicApiService_DeletePrivateKeyTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
203
+ export type TDeleteUserTagsResponse = operations["PublicApiService_DeleteUserTags"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUserTagsResult"] & ActivityMetadata;
204
+ export type TDeleteUserTagsInput = {
205
+ body: TDeleteUserTagsBody;
206
+ };
207
+ export type TDeleteUserTagsBody = operations["PublicApiService_DeleteUserTags"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
208
+ export type TDeleteUsersResponse = operations["PublicApiService_DeleteUsers"]["responses"]["200"]["schema"]["activity"]["result"]["deleteUsersResult"] & ActivityMetadata;
209
+ export type TDeleteUsersInput = {
210
+ body: TDeleteUsersBody;
211
+ };
212
+ export type TDeleteUsersBody = operations["PublicApiService_DeleteUsers"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
213
+ export type TEmailAuthResponse = operations["PublicApiService_EmailAuth"]["responses"]["200"]["schema"]["activity"]["result"]["emailAuthResult"] & ActivityMetadata;
214
+ export type TEmailAuthInput = {
215
+ body: TEmailAuthBody;
216
+ };
217
+ export type TEmailAuthBody = operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
218
+ export type TExportPrivateKeyResponse = operations["PublicApiService_ExportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["exportPrivateKeyResult"] & ActivityMetadata;
219
+ export type TExportPrivateKeyInput = {
220
+ body: TExportPrivateKeyBody;
221
+ };
222
+ export type TExportPrivateKeyBody = operations["PublicApiService_ExportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
223
+ export type TExportWalletResponse = operations["PublicApiService_ExportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletResult"] & ActivityMetadata;
224
+ export type TExportWalletInput = {
225
+ body: TExportWalletBody;
226
+ };
227
+ export type TExportWalletBody = operations["PublicApiService_ExportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
228
+ export type TExportWalletAccountResponse = operations["PublicApiService_ExportWalletAccount"]["responses"]["200"]["schema"]["activity"]["result"]["exportWalletAccountResult"] & ActivityMetadata;
229
+ export type TExportWalletAccountInput = {
230
+ body: TExportWalletAccountBody;
231
+ };
232
+ export type TExportWalletAccountBody = operations["PublicApiService_ExportWalletAccount"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
233
+ export type TImportPrivateKeyResponse = operations["PublicApiService_ImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["importPrivateKeyResult"] & ActivityMetadata;
234
+ export type TImportPrivateKeyInput = {
235
+ body: TImportPrivateKeyBody;
236
+ };
237
+ export type TImportPrivateKeyBody = operations["PublicApiService_ImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
238
+ export type TImportWalletResponse = operations["PublicApiService_ImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["importWalletResult"] & ActivityMetadata;
239
+ export type TImportWalletInput = {
240
+ body: TImportWalletBody;
241
+ };
242
+ export type TImportWalletBody = operations["PublicApiService_ImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
243
+ export type TInitImportPrivateKeyResponse = operations["PublicApiService_InitImportPrivateKey"]["responses"]["200"]["schema"]["activity"]["result"]["initImportPrivateKeyResult"] & ActivityMetadata;
244
+ export type TInitImportPrivateKeyInput = {
245
+ body: TInitImportPrivateKeyBody;
246
+ };
247
+ export type TInitImportPrivateKeyBody = operations["PublicApiService_InitImportPrivateKey"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
248
+ export type TInitImportWalletResponse = operations["PublicApiService_InitImportWallet"]["responses"]["200"]["schema"]["activity"]["result"]["initImportWalletResult"] & ActivityMetadata;
249
+ export type TInitImportWalletInput = {
250
+ body: TInitImportWalletBody;
251
+ };
252
+ export type TInitImportWalletBody = operations["PublicApiService_InitImportWallet"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
253
+ export type TInitUserEmailRecoveryResponse = operations["PublicApiService_InitUserEmailRecovery"]["responses"]["200"]["schema"]["activity"]["result"]["initUserEmailRecoveryResult"] & ActivityMetadata;
254
+ export type TInitUserEmailRecoveryInput = {
255
+ body: TInitUserEmailRecoveryBody;
256
+ };
257
+ export type TInitUserEmailRecoveryBody = operations["PublicApiService_InitUserEmailRecovery"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
258
+ export type TRecoverUserResponse = operations["PublicApiService_RecoverUser"]["responses"]["200"]["schema"]["activity"]["result"]["recoverUserResult"] & ActivityMetadata;
259
+ export type TRecoverUserInput = {
260
+ body: TRecoverUserBody;
261
+ };
262
+ export type TRecoverUserBody = operations["PublicApiService_RecoverUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
263
+ export type TRejectActivityResponse = operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"]["activity"]["result"] & ActivityMetadata;
264
+ export type TRejectActivityInput = {
265
+ body: TRejectActivityBody;
266
+ };
267
+ export type TRejectActivityBody = operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
268
+ export type TRemoveOrganizationFeatureResponse = operations["PublicApiService_RemoveOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["removeOrganizationFeatureResult"] & ActivityMetadata;
269
+ export type TRemoveOrganizationFeatureInput = {
270
+ body: TRemoveOrganizationFeatureBody;
271
+ };
272
+ export type TRemoveOrganizationFeatureBody = operations["PublicApiService_RemoveOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
273
+ export type TSetOrganizationFeatureResponse = operations["PublicApiService_SetOrganizationFeature"]["responses"]["200"]["schema"]["activity"]["result"]["setOrganizationFeatureResult"] & ActivityMetadata;
274
+ export type TSetOrganizationFeatureInput = {
275
+ body: TSetOrganizationFeatureBody;
276
+ };
277
+ export type TSetOrganizationFeatureBody = operations["PublicApiService_SetOrganizationFeature"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
278
+ export type TSignRawPayloadResponse = operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadResult"] & ActivityMetadata;
279
+ export type TSignRawPayloadInput = {
280
+ body: TSignRawPayloadBody;
281
+ };
282
+ export type TSignRawPayloadBody = operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
283
+ export type TSignRawPayloadsResponse = operations["PublicApiService_SignRawPayloads"]["responses"]["200"]["schema"]["activity"]["result"]["signRawPayloadsResult"] & ActivityMetadata;
284
+ export type TSignRawPayloadsInput = {
285
+ body: TSignRawPayloadsBody;
286
+ };
287
+ export type TSignRawPayloadsBody = operations["PublicApiService_SignRawPayloads"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
288
+ export type TSignTransactionResponse = operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"]["activity"]["result"]["signTransactionResult"] & ActivityMetadata;
289
+ export type TSignTransactionInput = {
290
+ body: TSignTransactionBody;
291
+ };
292
+ export type TSignTransactionBody = operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
293
+ export type TUpdatePolicyResponse = operations["PublicApiService_UpdatePolicy"]["responses"]["200"]["schema"]["activity"]["result"]["updatePolicyResult"] & ActivityMetadata;
294
+ export type TUpdatePolicyInput = {
295
+ body: TUpdatePolicyBody;
296
+ };
297
+ export type TUpdatePolicyBody = operations["PublicApiService_UpdatePolicy"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
298
+ export type TUpdatePrivateKeyTagResponse = operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"]["activity"]["result"]["updatePrivateKeyTagResult"] & ActivityMetadata;
299
+ export type TUpdatePrivateKeyTagInput = {
300
+ body: TUpdatePrivateKeyTagBody;
301
+ };
302
+ export type TUpdatePrivateKeyTagBody = operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
303
+ export type TUpdateRootQuorumResponse = operations["PublicApiService_UpdateRootQuorum"]["responses"]["200"]["schema"]["activity"]["result"]["updateRootQuorumResult"] & ActivityMetadata;
304
+ export type TUpdateRootQuorumInput = {
305
+ body: TUpdateRootQuorumBody;
306
+ };
307
+ export type TUpdateRootQuorumBody = operations["PublicApiService_UpdateRootQuorum"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
308
+ export type TUpdateUserResponse = operations["PublicApiService_UpdateUser"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserResult"] & ActivityMetadata;
309
+ export type TUpdateUserInput = {
310
+ body: TUpdateUserBody;
311
+ };
312
+ export type TUpdateUserBody = operations["PublicApiService_UpdateUser"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
313
+ export type TUpdateUserTagResponse = operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"]["activity"]["result"]["updateUserTagResult"] & ActivityMetadata;
314
+ export type TUpdateUserTagInput = {
315
+ body: TUpdateUserTagBody;
316
+ };
317
+ export type TUpdateUserTagBody = operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"]["parameters"] & commandOverrideParams;
318
+ export type TNOOPCodegenAnchorResponse = operations["PublicApiService_NOOPCodegenAnchor"]["responses"]["200"]["schema"];
319
+ //# sourceMappingURL=sdk_api_types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sdk_api_types.d.ts","sourceRoot":"","sources":["../../src/__generated__/sdk_api_types.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export declare const VERSION = "@turnkey/sdk-browser@0.0.1";
2
+ //# sourceMappingURL=version.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../src/__generated__/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,+BAA+B,CAAC"}
@@ -0,0 +1,6 @@
1
+ 'use strict';
2
+
3
+ const VERSION = "@turnkey/sdk-browser@0.0.1";
4
+
5
+ exports.VERSION = VERSION;
6
+ //# sourceMappingURL=version.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.js","sources":["../../src/__generated__/version.ts"],"sourcesContent":[null],"names":[],"mappings":";;AAAO,MAAM,OAAO,GAAG;;;;"}
@@ -0,0 +1,4 @@
1
+ const VERSION = "@turnkey/sdk-browser@0.0.1";
2
+
3
+ export { VERSION };
4
+ //# sourceMappingURL=version.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.mjs","sources":["../../src/__generated__/version.ts"],"sourcesContent":[null],"names":[],"mappings":"AAAO,MAAM,OAAO,GAAG;;;;"}