@turnkey/http 1.3.0 → 2.1.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 +20 -0
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.d.ts +82 -37
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.d.ts.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.js +134 -59
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.js.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.d.ts +2523 -621
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.d.ts.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.js +134 -62
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.js.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.swagger.json +530 -113
- package/dist/__generated__/services/coordinator/public/v1/public_api.types.d.ts +245 -69
- package/dist/__generated__/services/coordinator/public/v1/public_api.types.d.ts.map +1 -1
- package/dist/webauthn.d.ts.map +1 -1
- package/dist/webauthn.js +14 -0
- package/dist/webauthn.js.map +1 -1
- package/package.json +1 -1
|
@@ -22,9 +22,17 @@
|
|
|
22
22
|
"name": "Policies",
|
|
23
23
|
"description": "Policies allow for deep customization of the security of your Organization. They can be used to grant permissions or restrict usage of Users and Private Keys. The Policy Engine analyzes all of your Policies on each request to determine whether an Activity is allowed.\n\nSee [Policy Overview](../managing-policies/overview) for more information"
|
|
24
24
|
},
|
|
25
|
+
{
|
|
26
|
+
"name": "Wallets",
|
|
27
|
+
"description": "Wallets contain collections of deterministically generated cryptographic public / private key pairs that share a common seed. Turnkey securely holds the common seed, but only you can access it. In most cases, Wallets should be preferred over Private Keys since they can be represented by a mnemonic phrase, used across a variety of cryptographic curves, and can derive many addresses.\n\nDerived addresses can be used to create digital signatures using the corresponding underlying private key. See [Signers](./api#tag/Signers) for more information"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "Signers",
|
|
31
|
+
"description": "Signers allow you to create digitial signatures. Signatures are used to validate the authenticity and integrity of a digital message. Turnkey makes it easy to produce signatures by allowing you to sign with an address. If Turnkey doesn't yet support an address format you need, you can generate and sign with the public key instead by using the address format `ADDRESS_FORMAT_COMPRESSED`."
|
|
32
|
+
},
|
|
25
33
|
{
|
|
26
34
|
"name": "Private Keys",
|
|
27
|
-
"description": "Private Keys are cryptographic public / private key pairs that can be used for cryptocurrency needs or more generalized encryption.
|
|
35
|
+
"description": "Private Keys are cryptographic public / private key pairs that can be used for cryptocurrency needs or more generalized encryption. Turnkey securely holds all private key materials for you, but only you can access them.\n\nThe Private Key ID or any derived address can be used to create digital signatures. See [Signers](./api#tag/Signers) for more information"
|
|
28
36
|
},
|
|
29
37
|
{
|
|
30
38
|
"name": "Private Key Tags",
|
|
@@ -284,6 +292,38 @@
|
|
|
284
292
|
"tags": ["Users"]
|
|
285
293
|
}
|
|
286
294
|
},
|
|
295
|
+
"/public/v1/query/get_wallet": {
|
|
296
|
+
"post": {
|
|
297
|
+
"summary": "Get Wallet",
|
|
298
|
+
"description": "Get details about a Wallet",
|
|
299
|
+
"operationId": "PublicApiService_GetWallet",
|
|
300
|
+
"responses": {
|
|
301
|
+
"200": {
|
|
302
|
+
"description": "A successful response.",
|
|
303
|
+
"schema": {
|
|
304
|
+
"$ref": "#/definitions/v1GetWalletResponse"
|
|
305
|
+
}
|
|
306
|
+
},
|
|
307
|
+
"default": {
|
|
308
|
+
"description": "An unexpected error response.",
|
|
309
|
+
"schema": {
|
|
310
|
+
"$ref": "#/definitions/rpcStatus"
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"parameters": [
|
|
315
|
+
{
|
|
316
|
+
"name": "body",
|
|
317
|
+
"in": "body",
|
|
318
|
+
"required": true,
|
|
319
|
+
"schema": {
|
|
320
|
+
"$ref": "#/definitions/v1GetWalletRequest"
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
],
|
|
324
|
+
"tags": ["Wallets"]
|
|
325
|
+
}
|
|
326
|
+
},
|
|
287
327
|
"/public/v1/query/list_activities": {
|
|
288
328
|
"post": {
|
|
289
329
|
"summary": "List Activities",
|
|
@@ -412,6 +452,70 @@
|
|
|
412
452
|
"tags": ["Users"]
|
|
413
453
|
}
|
|
414
454
|
},
|
|
455
|
+
"/public/v1/query/list_wallet_accounts": {
|
|
456
|
+
"post": {
|
|
457
|
+
"summary": "List Wallets Accounts",
|
|
458
|
+
"description": "List all Accounts wirhin a Wallet",
|
|
459
|
+
"operationId": "PublicApiService_GetWalletAccounts",
|
|
460
|
+
"responses": {
|
|
461
|
+
"200": {
|
|
462
|
+
"description": "A successful response.",
|
|
463
|
+
"schema": {
|
|
464
|
+
"$ref": "#/definitions/v1GetWalletAccountsResponse"
|
|
465
|
+
}
|
|
466
|
+
},
|
|
467
|
+
"default": {
|
|
468
|
+
"description": "An unexpected error response.",
|
|
469
|
+
"schema": {
|
|
470
|
+
"$ref": "#/definitions/rpcStatus"
|
|
471
|
+
}
|
|
472
|
+
}
|
|
473
|
+
},
|
|
474
|
+
"parameters": [
|
|
475
|
+
{
|
|
476
|
+
"name": "body",
|
|
477
|
+
"in": "body",
|
|
478
|
+
"required": true,
|
|
479
|
+
"schema": {
|
|
480
|
+
"$ref": "#/definitions/v1GetWalletAccountsRequest"
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
],
|
|
484
|
+
"tags": ["Wallets"]
|
|
485
|
+
}
|
|
486
|
+
},
|
|
487
|
+
"/public/v1/query/list_wallets": {
|
|
488
|
+
"post": {
|
|
489
|
+
"summary": "List Wallets",
|
|
490
|
+
"description": "List all Wallets within an Organization",
|
|
491
|
+
"operationId": "PublicApiService_GetWallets",
|
|
492
|
+
"responses": {
|
|
493
|
+
"200": {
|
|
494
|
+
"description": "A successful response.",
|
|
495
|
+
"schema": {
|
|
496
|
+
"$ref": "#/definitions/v1GetWalletsResponse"
|
|
497
|
+
}
|
|
498
|
+
},
|
|
499
|
+
"default": {
|
|
500
|
+
"description": "An unexpected error response.",
|
|
501
|
+
"schema": {
|
|
502
|
+
"$ref": "#/definitions/rpcStatus"
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
},
|
|
506
|
+
"parameters": [
|
|
507
|
+
{
|
|
508
|
+
"name": "body",
|
|
509
|
+
"in": "body",
|
|
510
|
+
"required": true,
|
|
511
|
+
"schema": {
|
|
512
|
+
"$ref": "#/definitions/v1GetWalletsRequest"
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
],
|
|
516
|
+
"tags": ["Wallets"]
|
|
517
|
+
}
|
|
518
|
+
},
|
|
415
519
|
"/public/v1/query/whoami": {
|
|
416
520
|
"post": {
|
|
417
521
|
"summary": "Who am I?",
|
|
@@ -441,7 +545,7 @@
|
|
|
441
545
|
}
|
|
442
546
|
}
|
|
443
547
|
],
|
|
444
|
-
"tags": ["
|
|
548
|
+
"tags": ["Sessions"]
|
|
445
549
|
}
|
|
446
550
|
},
|
|
447
551
|
"/public/v1/submit/approve_activity": {
|
|
@@ -799,7 +903,7 @@
|
|
|
799
903
|
"/public/v1/submit/create_wallet": {
|
|
800
904
|
"post": {
|
|
801
905
|
"summary": "Create Wallet",
|
|
802
|
-
"description": "Create a Wallet",
|
|
906
|
+
"description": "Create a Wallet and derive addresses",
|
|
803
907
|
"operationId": "PublicApiService_CreateWallet",
|
|
804
908
|
"responses": {
|
|
805
909
|
"200": {
|
|
@@ -825,13 +929,13 @@
|
|
|
825
929
|
}
|
|
826
930
|
}
|
|
827
931
|
],
|
|
828
|
-
"tags": ["
|
|
932
|
+
"tags": ["Wallets"]
|
|
829
933
|
}
|
|
830
934
|
},
|
|
831
935
|
"/public/v1/submit/create_wallet_accounts": {
|
|
832
936
|
"post": {
|
|
833
|
-
"summary": "Create Wallet
|
|
834
|
-
"description": "
|
|
937
|
+
"summary": "Create Wallet Accounts",
|
|
938
|
+
"description": "Derive additional addresses using an existing wallet",
|
|
835
939
|
"operationId": "PublicApiService_CreateWalletAccounts",
|
|
836
940
|
"responses": {
|
|
837
941
|
"200": {
|
|
@@ -857,7 +961,7 @@
|
|
|
857
961
|
}
|
|
858
962
|
}
|
|
859
963
|
],
|
|
860
|
-
"tags": ["
|
|
964
|
+
"tags": ["Wallets"]
|
|
861
965
|
}
|
|
862
966
|
},
|
|
863
967
|
"/public/v1/submit/delete_api_keys": {
|
|
@@ -924,7 +1028,7 @@
|
|
|
924
1028
|
"tags": ["Authenticators"]
|
|
925
1029
|
}
|
|
926
1030
|
},
|
|
927
|
-
"/public/v1/submit/
|
|
1031
|
+
"/public/v1/submit/delete_invitation": {
|
|
928
1032
|
"post": {
|
|
929
1033
|
"summary": "Delete Invitation",
|
|
930
1034
|
"description": "Delete an existing Invitation",
|
|
@@ -1020,11 +1124,11 @@
|
|
|
1020
1124
|
"tags": ["Private Keys"]
|
|
1021
1125
|
}
|
|
1022
1126
|
},
|
|
1023
|
-
"/public/v1/submit/
|
|
1127
|
+
"/public/v1/submit/export_wallet": {
|
|
1024
1128
|
"post": {
|
|
1025
|
-
"summary": "
|
|
1026
|
-
"description": "
|
|
1027
|
-
"operationId": "
|
|
1129
|
+
"summary": "Export Wallet",
|
|
1130
|
+
"description": "Exports a Wallet",
|
|
1131
|
+
"operationId": "PublicApiService_ExportWallet",
|
|
1028
1132
|
"responses": {
|
|
1029
1133
|
"200": {
|
|
1030
1134
|
"description": "A successful response.",
|
|
@@ -1045,18 +1149,18 @@
|
|
|
1045
1149
|
"in": "body",
|
|
1046
1150
|
"required": true,
|
|
1047
1151
|
"schema": {
|
|
1048
|
-
"$ref": "#/definitions/
|
|
1152
|
+
"$ref": "#/definitions/v1ExportWalletRequest"
|
|
1049
1153
|
}
|
|
1050
1154
|
}
|
|
1051
1155
|
],
|
|
1052
|
-
"tags": ["
|
|
1156
|
+
"tags": ["Wallets"]
|
|
1053
1157
|
}
|
|
1054
1158
|
},
|
|
1055
|
-
"/public/v1/submit/
|
|
1159
|
+
"/public/v1/submit/init_user_email_recovery": {
|
|
1056
1160
|
"post": {
|
|
1057
|
-
"summary": "
|
|
1058
|
-
"description": "
|
|
1059
|
-
"operationId": "
|
|
1161
|
+
"summary": "Init Email Recovery",
|
|
1162
|
+
"description": "Initializes a new email recovery",
|
|
1163
|
+
"operationId": "PublicApiService_InitUserEmailRecovery",
|
|
1060
1164
|
"responses": {
|
|
1061
1165
|
"200": {
|
|
1062
1166
|
"description": "A successful response.",
|
|
@@ -1077,18 +1181,18 @@
|
|
|
1077
1181
|
"in": "body",
|
|
1078
1182
|
"required": true,
|
|
1079
1183
|
"schema": {
|
|
1080
|
-
"$ref": "#/definitions/
|
|
1184
|
+
"$ref": "#/definitions/v1InitUserEmailRecoveryRequest"
|
|
1081
1185
|
}
|
|
1082
1186
|
}
|
|
1083
1187
|
],
|
|
1084
|
-
"tags": ["
|
|
1188
|
+
"tags": ["User Recovery"]
|
|
1085
1189
|
}
|
|
1086
1190
|
},
|
|
1087
|
-
"/public/v1/submit/
|
|
1191
|
+
"/public/v1/submit/recover_user": {
|
|
1088
1192
|
"post": {
|
|
1089
|
-
"summary": "
|
|
1090
|
-
"description": "
|
|
1091
|
-
"operationId": "
|
|
1193
|
+
"summary": "Recover a user",
|
|
1194
|
+
"description": "Completes the process of recovering a user by adding an authenticator",
|
|
1195
|
+
"operationId": "PublicApiService_RecoverUser",
|
|
1092
1196
|
"responses": {
|
|
1093
1197
|
"200": {
|
|
1094
1198
|
"description": "A successful response.",
|
|
@@ -1109,18 +1213,18 @@
|
|
|
1109
1213
|
"in": "body",
|
|
1110
1214
|
"required": true,
|
|
1111
1215
|
"schema": {
|
|
1112
|
-
"$ref": "#/definitions/
|
|
1216
|
+
"$ref": "#/definitions/v1RecoverUserRequest"
|
|
1113
1217
|
}
|
|
1114
1218
|
}
|
|
1115
1219
|
],
|
|
1116
|
-
"tags": ["
|
|
1220
|
+
"tags": ["User Recovery"]
|
|
1117
1221
|
}
|
|
1118
1222
|
},
|
|
1119
|
-
"/public/v1/submit/
|
|
1223
|
+
"/public/v1/submit/reject_activity": {
|
|
1120
1224
|
"post": {
|
|
1121
|
-
"summary": "
|
|
1122
|
-
"description": "
|
|
1123
|
-
"operationId": "
|
|
1225
|
+
"summary": "Reject Activity",
|
|
1226
|
+
"description": "Reject an Activity",
|
|
1227
|
+
"operationId": "PublicApiService_RejectActivity",
|
|
1124
1228
|
"responses": {
|
|
1125
1229
|
"200": {
|
|
1126
1230
|
"description": "A successful response.",
|
|
@@ -1141,18 +1245,18 @@
|
|
|
1141
1245
|
"in": "body",
|
|
1142
1246
|
"required": true,
|
|
1143
1247
|
"schema": {
|
|
1144
|
-
"$ref": "#/definitions/
|
|
1248
|
+
"$ref": "#/definitions/v1RejectActivityRequest"
|
|
1145
1249
|
}
|
|
1146
1250
|
}
|
|
1147
1251
|
],
|
|
1148
|
-
"tags": ["
|
|
1252
|
+
"tags": ["Consensus"]
|
|
1149
1253
|
}
|
|
1150
1254
|
},
|
|
1151
|
-
"/public/v1/submit/
|
|
1255
|
+
"/public/v1/submit/remove_organization_feature": {
|
|
1152
1256
|
"post": {
|
|
1153
|
-
"summary": "
|
|
1154
|
-
"description": "
|
|
1155
|
-
"operationId": "
|
|
1257
|
+
"summary": "Remove Organization Feature",
|
|
1258
|
+
"description": "Removes an organization feature",
|
|
1259
|
+
"operationId": "PublicApiService_RemoveOrganizationFeature",
|
|
1156
1260
|
"responses": {
|
|
1157
1261
|
"200": {
|
|
1158
1262
|
"description": "A successful response.",
|
|
@@ -1173,18 +1277,18 @@
|
|
|
1173
1277
|
"in": "body",
|
|
1174
1278
|
"required": true,
|
|
1175
1279
|
"schema": {
|
|
1176
|
-
"$ref": "#/definitions/
|
|
1280
|
+
"$ref": "#/definitions/v1RemoveOrganizationFeatureRequest"
|
|
1177
1281
|
}
|
|
1178
1282
|
}
|
|
1179
1283
|
],
|
|
1180
|
-
"tags": ["
|
|
1284
|
+
"tags": ["Features"]
|
|
1181
1285
|
}
|
|
1182
1286
|
},
|
|
1183
|
-
"/public/v1/submit/
|
|
1287
|
+
"/public/v1/submit/set_organization_feature": {
|
|
1184
1288
|
"post": {
|
|
1185
|
-
"summary": "
|
|
1186
|
-
"description": "
|
|
1187
|
-
"operationId": "
|
|
1289
|
+
"summary": "Set Organization Feature",
|
|
1290
|
+
"description": "Sets an organization feature",
|
|
1291
|
+
"operationId": "PublicApiService_SetOrganizationFeature",
|
|
1188
1292
|
"responses": {
|
|
1189
1293
|
"200": {
|
|
1190
1294
|
"description": "A successful response.",
|
|
@@ -1205,18 +1309,18 @@
|
|
|
1205
1309
|
"in": "body",
|
|
1206
1310
|
"required": true,
|
|
1207
1311
|
"schema": {
|
|
1208
|
-
"$ref": "#/definitions/
|
|
1312
|
+
"$ref": "#/definitions/v1SetOrganizationFeatureRequest"
|
|
1209
1313
|
}
|
|
1210
1314
|
}
|
|
1211
1315
|
],
|
|
1212
|
-
"tags": ["
|
|
1316
|
+
"tags": ["Features"]
|
|
1213
1317
|
}
|
|
1214
1318
|
},
|
|
1215
|
-
"/public/v1/submit/
|
|
1319
|
+
"/public/v1/submit/sign_raw_payload": {
|
|
1216
1320
|
"post": {
|
|
1217
|
-
"summary": "Sign
|
|
1218
|
-
"description": "Sign a
|
|
1219
|
-
"operationId": "
|
|
1321
|
+
"summary": "Sign Raw Payload",
|
|
1322
|
+
"description": "Sign a raw payload",
|
|
1323
|
+
"operationId": "PublicApiService_SignRawPayload",
|
|
1220
1324
|
"responses": {
|
|
1221
1325
|
"200": {
|
|
1222
1326
|
"description": "A successful response.",
|
|
@@ -1237,18 +1341,18 @@
|
|
|
1237
1341
|
"in": "body",
|
|
1238
1342
|
"required": true,
|
|
1239
1343
|
"schema": {
|
|
1240
|
-
"$ref": "#/definitions/
|
|
1344
|
+
"$ref": "#/definitions/v1SignRawPayloadRequest"
|
|
1241
1345
|
}
|
|
1242
1346
|
}
|
|
1243
1347
|
],
|
|
1244
|
-
"tags": ["
|
|
1348
|
+
"tags": ["Signers"]
|
|
1245
1349
|
}
|
|
1246
1350
|
},
|
|
1247
|
-
"/public/v1/submit/
|
|
1351
|
+
"/public/v1/submit/sign_transaction": {
|
|
1248
1352
|
"post": {
|
|
1249
1353
|
"summary": "Sign Transaction",
|
|
1250
|
-
"description": "Sign a transaction
|
|
1251
|
-
"operationId": "
|
|
1354
|
+
"description": "Sign a transaction",
|
|
1355
|
+
"operationId": "PublicApiService_SignTransaction",
|
|
1252
1356
|
"responses": {
|
|
1253
1357
|
"200": {
|
|
1254
1358
|
"description": "A successful response.",
|
|
@@ -1269,17 +1373,17 @@
|
|
|
1269
1373
|
"in": "body",
|
|
1270
1374
|
"required": true,
|
|
1271
1375
|
"schema": {
|
|
1272
|
-
"$ref": "#/definitions/
|
|
1376
|
+
"$ref": "#/definitions/v1SignTransactionRequest"
|
|
1273
1377
|
}
|
|
1274
1378
|
}
|
|
1275
1379
|
],
|
|
1276
|
-
"tags": ["
|
|
1380
|
+
"tags": ["Signers"]
|
|
1277
1381
|
}
|
|
1278
1382
|
},
|
|
1279
1383
|
"/public/v1/submit/update_allowed_origins": {
|
|
1280
1384
|
"post": {
|
|
1281
|
-
"summary": "Update
|
|
1282
|
-
"description": "Update the
|
|
1385
|
+
"summary": "Update Allowed Origins",
|
|
1386
|
+
"description": "Update the origins WebAuthN credentials are allowed to sign requests from. Setting this on a Parent-Organization applies to all Sub-Organizations.",
|
|
1283
1387
|
"operationId": "PublicApiService_UpdateAllowedOrigins",
|
|
1284
1388
|
"responses": {
|
|
1285
1389
|
"200": {
|
|
@@ -1305,7 +1409,7 @@
|
|
|
1305
1409
|
}
|
|
1306
1410
|
}
|
|
1307
1411
|
],
|
|
1308
|
-
"tags": ["
|
|
1412
|
+
"tags": ["Features"]
|
|
1309
1413
|
}
|
|
1310
1414
|
},
|
|
1311
1415
|
"/public/v1/submit/update_policy": {
|
|
@@ -1969,7 +2073,9 @@
|
|
|
1969
2073
|
"ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE",
|
|
1970
2074
|
"ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2",
|
|
1971
2075
|
"ACTIVITY_TYPE_SIGN_TRANSACTION_V2",
|
|
1972
|
-
"ACTIVITY_TYPE_EXPORT_PRIVATE_KEY"
|
|
2076
|
+
"ACTIVITY_TYPE_EXPORT_PRIVATE_KEY",
|
|
2077
|
+
"ACTIVITY_TYPE_EXPORT_WALLET",
|
|
2078
|
+
"ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V4"
|
|
1973
2079
|
]
|
|
1974
2080
|
},
|
|
1975
2081
|
"v1ApiKey": {
|
|
@@ -2807,12 +2913,43 @@
|
|
|
2807
2913
|
"privateKeys"
|
|
2808
2914
|
]
|
|
2809
2915
|
},
|
|
2916
|
+
"v1CreateSubOrganizationIntentV4": {
|
|
2917
|
+
"type": "object",
|
|
2918
|
+
"properties": {
|
|
2919
|
+
"subOrganizationName": {
|
|
2920
|
+
"type": "string",
|
|
2921
|
+
"description": "Name for this sub-organization"
|
|
2922
|
+
},
|
|
2923
|
+
"rootUsers": {
|
|
2924
|
+
"type": "array",
|
|
2925
|
+
"items": {
|
|
2926
|
+
"type": "object",
|
|
2927
|
+
"$ref": "#/definitions/v1RootUserParams"
|
|
2928
|
+
},
|
|
2929
|
+
"description": "Root users to create within this sub-organization"
|
|
2930
|
+
},
|
|
2931
|
+
"rootQuorumThreshold": {
|
|
2932
|
+
"type": "integer",
|
|
2933
|
+
"format": "int32",
|
|
2934
|
+
"description": "The threshold of unique approvals to reach root quorum. This value must be less than or equal to the number of root users"
|
|
2935
|
+
},
|
|
2936
|
+
"wallet": {
|
|
2937
|
+
"$ref": "#/definitions/v1WalletParams",
|
|
2938
|
+
"description": "The wallet to create for the sub-organization"
|
|
2939
|
+
},
|
|
2940
|
+
"disableEmailRecovery": {
|
|
2941
|
+
"type": "boolean",
|
|
2942
|
+
"description": "Disable email recovery for the sub-organization"
|
|
2943
|
+
}
|
|
2944
|
+
},
|
|
2945
|
+
"required": ["subOrganizationName", "rootUsers", "rootQuorumThreshold"]
|
|
2946
|
+
},
|
|
2810
2947
|
"v1CreateSubOrganizationRequest": {
|
|
2811
2948
|
"type": "object",
|
|
2812
2949
|
"properties": {
|
|
2813
2950
|
"type": {
|
|
2814
2951
|
"type": "string",
|
|
2815
|
-
"enum": ["
|
|
2952
|
+
"enum": ["ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V4"]
|
|
2816
2953
|
},
|
|
2817
2954
|
"timestampMs": {
|
|
2818
2955
|
"type": "string",
|
|
@@ -2823,7 +2960,7 @@
|
|
|
2823
2960
|
"description": "Unique identifier for a given Organization."
|
|
2824
2961
|
},
|
|
2825
2962
|
"parameters": {
|
|
2826
|
-
"$ref": "#/definitions/
|
|
2963
|
+
"$ref": "#/definitions/v1CreateSubOrganizationIntentV4"
|
|
2827
2964
|
}
|
|
2828
2965
|
},
|
|
2829
2966
|
"required": ["type", "timestampMs", "organizationId", "parameters"]
|
|
@@ -2854,6 +2991,18 @@
|
|
|
2854
2991
|
},
|
|
2855
2992
|
"required": ["subOrganizationId", "privateKeys"]
|
|
2856
2993
|
},
|
|
2994
|
+
"v1CreateSubOrganizationResultV4": {
|
|
2995
|
+
"type": "object",
|
|
2996
|
+
"properties": {
|
|
2997
|
+
"subOrganizationId": {
|
|
2998
|
+
"type": "string"
|
|
2999
|
+
},
|
|
3000
|
+
"wallet": {
|
|
3001
|
+
"$ref": "#/definitions/v1WalletResult"
|
|
3002
|
+
}
|
|
3003
|
+
},
|
|
3004
|
+
"required": ["subOrganizationId"]
|
|
3005
|
+
},
|
|
2857
3006
|
"v1CreateUserTagIntent": {
|
|
2858
3007
|
"type": "object",
|
|
2859
3008
|
"properties": {
|
|
@@ -3473,6 +3622,59 @@
|
|
|
3473
3622
|
},
|
|
3474
3623
|
"required": ["privateKeyId", "exportBundle"]
|
|
3475
3624
|
},
|
|
3625
|
+
"v1ExportWalletIntent": {
|
|
3626
|
+
"type": "object",
|
|
3627
|
+
"properties": {
|
|
3628
|
+
"walletId": {
|
|
3629
|
+
"type": "string",
|
|
3630
|
+
"description": "Unique identifier for a given Wallet."
|
|
3631
|
+
},
|
|
3632
|
+
"targetPublicKey": {
|
|
3633
|
+
"type": "string",
|
|
3634
|
+
"description": "Client-side public key generated by the user, to which the export bundle will be encrypted."
|
|
3635
|
+
},
|
|
3636
|
+
"language": {
|
|
3637
|
+
"$ref": "#/definitions/v1MnemonicLanguage",
|
|
3638
|
+
"description": "The language of the mnemonic to export. Defaults to English."
|
|
3639
|
+
}
|
|
3640
|
+
},
|
|
3641
|
+
"required": ["walletId", "targetPublicKey"]
|
|
3642
|
+
},
|
|
3643
|
+
"v1ExportWalletRequest": {
|
|
3644
|
+
"type": "object",
|
|
3645
|
+
"properties": {
|
|
3646
|
+
"type": {
|
|
3647
|
+
"type": "string",
|
|
3648
|
+
"enum": ["ACTIVITY_TYPE_EXPORT_WALLET"]
|
|
3649
|
+
},
|
|
3650
|
+
"timestampMs": {
|
|
3651
|
+
"type": "string",
|
|
3652
|
+
"description": "Timestamp (in milliseconds) of the request, used to verify liveness of user requests."
|
|
3653
|
+
},
|
|
3654
|
+
"organizationId": {
|
|
3655
|
+
"type": "string",
|
|
3656
|
+
"description": "Unique identifier for a given Organization."
|
|
3657
|
+
},
|
|
3658
|
+
"parameters": {
|
|
3659
|
+
"$ref": "#/definitions/v1ExportWalletIntent"
|
|
3660
|
+
}
|
|
3661
|
+
},
|
|
3662
|
+
"required": ["type", "timestampMs", "organizationId", "parameters"]
|
|
3663
|
+
},
|
|
3664
|
+
"v1ExportWalletResult": {
|
|
3665
|
+
"type": "object",
|
|
3666
|
+
"properties": {
|
|
3667
|
+
"walletId": {
|
|
3668
|
+
"type": "string",
|
|
3669
|
+
"description": "Unique identifier for a given Wallet."
|
|
3670
|
+
},
|
|
3671
|
+
"exportBundle": {
|
|
3672
|
+
"type": "string",
|
|
3673
|
+
"description": "Export bundle containing a wallet mnemonic + optional newline passphrase encrypted by the client's target public key."
|
|
3674
|
+
}
|
|
3675
|
+
},
|
|
3676
|
+
"required": ["walletId", "exportBundle"]
|
|
3677
|
+
},
|
|
3476
3678
|
"v1Feature": {
|
|
3477
3679
|
"type": "object",
|
|
3478
3680
|
"properties": {
|
|
@@ -3760,6 +3962,82 @@
|
|
|
3760
3962
|
},
|
|
3761
3963
|
"required": ["users"]
|
|
3762
3964
|
},
|
|
3965
|
+
"v1GetWalletAccountsRequest": {
|
|
3966
|
+
"type": "object",
|
|
3967
|
+
"properties": {
|
|
3968
|
+
"organizationId": {
|
|
3969
|
+
"type": "string",
|
|
3970
|
+
"description": "Unique identifier for a given Organization."
|
|
3971
|
+
},
|
|
3972
|
+
"walletId": {
|
|
3973
|
+
"type": "string",
|
|
3974
|
+
"description": "Unique identifier for a given Wallet."
|
|
3975
|
+
}
|
|
3976
|
+
},
|
|
3977
|
+
"required": ["organizationId", "walletId"]
|
|
3978
|
+
},
|
|
3979
|
+
"v1GetWalletAccountsResponse": {
|
|
3980
|
+
"type": "object",
|
|
3981
|
+
"properties": {
|
|
3982
|
+
"accounts": {
|
|
3983
|
+
"type": "array",
|
|
3984
|
+
"items": {
|
|
3985
|
+
"type": "object",
|
|
3986
|
+
"$ref": "#/definitions/v1WalletAccount"
|
|
3987
|
+
},
|
|
3988
|
+
"description": "A list of Accounts generated from a Wallet that share a common seed"
|
|
3989
|
+
}
|
|
3990
|
+
},
|
|
3991
|
+
"required": ["accounts"]
|
|
3992
|
+
},
|
|
3993
|
+
"v1GetWalletRequest": {
|
|
3994
|
+
"type": "object",
|
|
3995
|
+
"properties": {
|
|
3996
|
+
"organizationId": {
|
|
3997
|
+
"type": "string",
|
|
3998
|
+
"description": "Unique identifier for a given Organization."
|
|
3999
|
+
},
|
|
4000
|
+
"walletId": {
|
|
4001
|
+
"type": "string",
|
|
4002
|
+
"description": "Unique identifier for a given Wallet."
|
|
4003
|
+
}
|
|
4004
|
+
},
|
|
4005
|
+
"required": ["organizationId", "walletId"]
|
|
4006
|
+
},
|
|
4007
|
+
"v1GetWalletResponse": {
|
|
4008
|
+
"type": "object",
|
|
4009
|
+
"properties": {
|
|
4010
|
+
"wallet": {
|
|
4011
|
+
"$ref": "#/definitions/v1Wallet",
|
|
4012
|
+
"description": "A collection of deterministically generated cryptographic public / private key pairs that share a common seed"
|
|
4013
|
+
}
|
|
4014
|
+
},
|
|
4015
|
+
"required": ["wallet"]
|
|
4016
|
+
},
|
|
4017
|
+
"v1GetWalletsRequest": {
|
|
4018
|
+
"type": "object",
|
|
4019
|
+
"properties": {
|
|
4020
|
+
"organizationId": {
|
|
4021
|
+
"type": "string",
|
|
4022
|
+
"description": "Unique identifier for a given Organization."
|
|
4023
|
+
}
|
|
4024
|
+
},
|
|
4025
|
+
"required": ["organizationId"]
|
|
4026
|
+
},
|
|
4027
|
+
"v1GetWalletsResponse": {
|
|
4028
|
+
"type": "object",
|
|
4029
|
+
"properties": {
|
|
4030
|
+
"wallets": {
|
|
4031
|
+
"type": "array",
|
|
4032
|
+
"items": {
|
|
4033
|
+
"type": "object",
|
|
4034
|
+
"$ref": "#/definitions/v1Wallet"
|
|
4035
|
+
},
|
|
4036
|
+
"description": "A list of Wallets."
|
|
4037
|
+
}
|
|
4038
|
+
},
|
|
4039
|
+
"required": ["wallets"]
|
|
4040
|
+
},
|
|
3763
4041
|
"v1GetWhoamiRequest": {
|
|
3764
4042
|
"type": "object",
|
|
3765
4043
|
"properties": {
|
|
@@ -3998,6 +4276,12 @@
|
|
|
3998
4276
|
},
|
|
3999
4277
|
"exportPrivateKeyIntent": {
|
|
4000
4278
|
"$ref": "#/definitions/v1ExportPrivateKeyIntent"
|
|
4279
|
+
},
|
|
4280
|
+
"exportWalletIntent": {
|
|
4281
|
+
"$ref": "#/definitions/v1ExportWalletIntent"
|
|
4282
|
+
},
|
|
4283
|
+
"createSubOrganizationIntentV4": {
|
|
4284
|
+
"$ref": "#/definitions/v1CreateSubOrganizationIntentV4"
|
|
4001
4285
|
}
|
|
4002
4286
|
},
|
|
4003
4287
|
"required": ["createOrganizationIntent"]
|
|
@@ -4098,6 +4382,20 @@
|
|
|
4098
4382
|
"INVITATION_STATUS_REVOKED"
|
|
4099
4383
|
]
|
|
4100
4384
|
},
|
|
4385
|
+
"v1MnemonicLanguage": {
|
|
4386
|
+
"type": "string",
|
|
4387
|
+
"enum": [
|
|
4388
|
+
"MNEMONIC_LANGUAGE_ENGLISH",
|
|
4389
|
+
"MNEMONIC_LANGUAGE_SIMPLIFIED_CHINESE",
|
|
4390
|
+
"MNEMONIC_LANGUAGE_TRADITIONAL_CHINESE",
|
|
4391
|
+
"MNEMONIC_LANGUAGE_CZECH",
|
|
4392
|
+
"MNEMONIC_LANGUAGE_FRENCH",
|
|
4393
|
+
"MNEMONIC_LANGUAGE_ITALIAN",
|
|
4394
|
+
"MNEMONIC_LANGUAGE_JAPANESE",
|
|
4395
|
+
"MNEMONIC_LANGUAGE_KOREAN",
|
|
4396
|
+
"MNEMONIC_LANGUAGE_SPANISH"
|
|
4397
|
+
]
|
|
4398
|
+
},
|
|
4101
4399
|
"v1NOOPCodegenAnchorResponse": {
|
|
4102
4400
|
"type": "object",
|
|
4103
4401
|
"properties": {
|
|
@@ -4173,6 +4471,13 @@
|
|
|
4173
4471
|
"type": "object",
|
|
4174
4472
|
"$ref": "#/definitions/v1Feature"
|
|
4175
4473
|
}
|
|
4474
|
+
},
|
|
4475
|
+
"wallets": {
|
|
4476
|
+
"type": "array",
|
|
4477
|
+
"items": {
|
|
4478
|
+
"type": "object",
|
|
4479
|
+
"$ref": "#/definitions/v1Wallet"
|
|
4480
|
+
}
|
|
4176
4481
|
}
|
|
4177
4482
|
}
|
|
4178
4483
|
},
|
|
@@ -4287,6 +4592,13 @@
|
|
|
4287
4592
|
},
|
|
4288
4593
|
"createdAt": {
|
|
4289
4594
|
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
4595
|
+
},
|
|
4596
|
+
"updatedAt": {
|
|
4597
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
4598
|
+
},
|
|
4599
|
+
"exported": {
|
|
4600
|
+
"type": "boolean",
|
|
4601
|
+
"description": "True when a given Private Key is exported, false otherwise."
|
|
4290
4602
|
}
|
|
4291
4603
|
},
|
|
4292
4604
|
"required": [
|
|
@@ -4296,7 +4608,9 @@
|
|
|
4296
4608
|
"curve",
|
|
4297
4609
|
"addresses",
|
|
4298
4610
|
"privateKeyTags",
|
|
4299
|
-
"createdAt"
|
|
4611
|
+
"createdAt",
|
|
4612
|
+
"updatedAt",
|
|
4613
|
+
"exported"
|
|
4300
4614
|
]
|
|
4301
4615
|
},
|
|
4302
4616
|
"v1PrivateKeyParams": {
|
|
@@ -4388,6 +4702,27 @@
|
|
|
4388
4702
|
},
|
|
4389
4703
|
"required": ["authenticator", "userId"]
|
|
4390
4704
|
},
|
|
4705
|
+
"v1RecoverUserRequest": {
|
|
4706
|
+
"type": "object",
|
|
4707
|
+
"properties": {
|
|
4708
|
+
"type": {
|
|
4709
|
+
"type": "string",
|
|
4710
|
+
"enum": ["ACTIVITY_TYPE_RECOVER_USER"]
|
|
4711
|
+
},
|
|
4712
|
+
"timestampMs": {
|
|
4713
|
+
"type": "string",
|
|
4714
|
+
"description": "Timestamp (in milliseconds) of the request, used to verify liveness of user requests."
|
|
4715
|
+
},
|
|
4716
|
+
"organizationId": {
|
|
4717
|
+
"type": "string",
|
|
4718
|
+
"description": "Unique identifier for a given Organization."
|
|
4719
|
+
},
|
|
4720
|
+
"parameters": {
|
|
4721
|
+
"$ref": "#/definitions/v1RecoverUserIntent"
|
|
4722
|
+
}
|
|
4723
|
+
},
|
|
4724
|
+
"required": ["type", "timestampMs", "organizationId", "parameters"]
|
|
4725
|
+
},
|
|
4391
4726
|
"v1RecoverUserResult": {
|
|
4392
4727
|
"type": "object",
|
|
4393
4728
|
"properties": {
|
|
@@ -4602,6 +4937,12 @@
|
|
|
4602
4937
|
},
|
|
4603
4938
|
"exportPrivateKeyResult": {
|
|
4604
4939
|
"$ref": "#/definitions/v1ExportPrivateKeyResult"
|
|
4940
|
+
},
|
|
4941
|
+
"exportWalletResult": {
|
|
4942
|
+
"$ref": "#/definitions/v1ExportWalletResult"
|
|
4943
|
+
},
|
|
4944
|
+
"createSubOrganizationResultV4": {
|
|
4945
|
+
"$ref": "#/definitions/v1CreateSubOrganizationResultV4"
|
|
4605
4946
|
}
|
|
4606
4947
|
}
|
|
4607
4948
|
},
|
|
@@ -4801,7 +5142,7 @@
|
|
|
4801
5142
|
"properties": {
|
|
4802
5143
|
"signWith": {
|
|
4803
5144
|
"type": "string",
|
|
4804
|
-
"description": "
|
|
5145
|
+
"description": "A Wallet account address, Private Key address, or Private Key identifier."
|
|
4805
5146
|
},
|
|
4806
5147
|
"payload": {
|
|
4807
5148
|
"type": "string",
|
|
@@ -4823,7 +5164,7 @@
|
|
|
4823
5164
|
"properties": {
|
|
4824
5165
|
"type": {
|
|
4825
5166
|
"type": "string",
|
|
4826
|
-
"enum": ["
|
|
5167
|
+
"enum": ["ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2"]
|
|
4827
5168
|
},
|
|
4828
5169
|
"timestampMs": {
|
|
4829
5170
|
"type": "string",
|
|
@@ -4834,7 +5175,7 @@
|
|
|
4834
5175
|
"description": "Unique identifier for a given Organization."
|
|
4835
5176
|
},
|
|
4836
5177
|
"parameters": {
|
|
4837
|
-
"$ref": "#/definitions/
|
|
5178
|
+
"$ref": "#/definitions/v1SignRawPayloadIntentV2"
|
|
4838
5179
|
}
|
|
4839
5180
|
},
|
|
4840
5181
|
"required": ["type", "timestampMs", "organizationId", "parameters"]
|
|
@@ -4857,27 +5198,6 @@
|
|
|
4857
5198
|
},
|
|
4858
5199
|
"required": ["r", "s", "v"]
|
|
4859
5200
|
},
|
|
4860
|
-
"v1SignRawPayloadV2Request": {
|
|
4861
|
-
"type": "object",
|
|
4862
|
-
"properties": {
|
|
4863
|
-
"type": {
|
|
4864
|
-
"type": "string",
|
|
4865
|
-
"enum": ["ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2"]
|
|
4866
|
-
},
|
|
4867
|
-
"timestampMs": {
|
|
4868
|
-
"type": "string",
|
|
4869
|
-
"description": "Timestamp (in milliseconds) of the request, used to verify liveness of user requests."
|
|
4870
|
-
},
|
|
4871
|
-
"organizationId": {
|
|
4872
|
-
"type": "string",
|
|
4873
|
-
"description": "Unique identifier for a given Organization."
|
|
4874
|
-
},
|
|
4875
|
-
"parameters": {
|
|
4876
|
-
"$ref": "#/definitions/v1SignRawPayloadIntentV2"
|
|
4877
|
-
}
|
|
4878
|
-
},
|
|
4879
|
-
"required": ["type", "timestampMs", "organizationId", "parameters"]
|
|
4880
|
-
},
|
|
4881
5201
|
"v1SignTransactionIntent": {
|
|
4882
5202
|
"type": "object",
|
|
4883
5203
|
"properties": {
|
|
@@ -4900,7 +5220,7 @@
|
|
|
4900
5220
|
"properties": {
|
|
4901
5221
|
"signWith": {
|
|
4902
5222
|
"type": "string",
|
|
4903
|
-
"description": "
|
|
5223
|
+
"description": "A Wallet account address, Private Key address, or Private Key identifier."
|
|
4904
5224
|
},
|
|
4905
5225
|
"unsignedTransaction": {
|
|
4906
5226
|
"type": "string",
|
|
@@ -4917,7 +5237,7 @@
|
|
|
4917
5237
|
"properties": {
|
|
4918
5238
|
"type": {
|
|
4919
5239
|
"type": "string",
|
|
4920
|
-
"enum": ["
|
|
5240
|
+
"enum": ["ACTIVITY_TYPE_SIGN_TRANSACTION_V2"]
|
|
4921
5241
|
},
|
|
4922
5242
|
"timestampMs": {
|
|
4923
5243
|
"type": "string",
|
|
@@ -4928,7 +5248,7 @@
|
|
|
4928
5248
|
"description": "Unique identifier for a given Organization."
|
|
4929
5249
|
},
|
|
4930
5250
|
"parameters": {
|
|
4931
|
-
"$ref": "#/definitions/
|
|
5251
|
+
"$ref": "#/definitions/v1SignTransactionIntentV2"
|
|
4932
5252
|
}
|
|
4933
5253
|
},
|
|
4934
5254
|
"required": ["type", "timestampMs", "organizationId", "parameters"]
|
|
@@ -4942,27 +5262,6 @@
|
|
|
4942
5262
|
},
|
|
4943
5263
|
"required": ["signedTransaction"]
|
|
4944
5264
|
},
|
|
4945
|
-
"v1SignTransactionV2Request": {
|
|
4946
|
-
"type": "object",
|
|
4947
|
-
"properties": {
|
|
4948
|
-
"type": {
|
|
4949
|
-
"type": "string",
|
|
4950
|
-
"enum": ["ACTIVITY_TYPE_SIGN_TRANSACTION_V2"]
|
|
4951
|
-
},
|
|
4952
|
-
"timestampMs": {
|
|
4953
|
-
"type": "string",
|
|
4954
|
-
"description": "Timestamp (in milliseconds) of the request, used to verify liveness of user requests."
|
|
4955
|
-
},
|
|
4956
|
-
"organizationId": {
|
|
4957
|
-
"type": "string",
|
|
4958
|
-
"description": "Unique identifier for a given Organization."
|
|
4959
|
-
},
|
|
4960
|
-
"parameters": {
|
|
4961
|
-
"$ref": "#/definitions/v1SignTransactionIntentV2"
|
|
4962
|
-
}
|
|
4963
|
-
},
|
|
4964
|
-
"required": ["type", "timestampMs", "organizationId", "parameters"]
|
|
4965
|
-
},
|
|
4966
5265
|
"v1SimpleClientExtensionResults": {
|
|
4967
5266
|
"type": "object",
|
|
4968
5267
|
"properties": {
|
|
@@ -5509,6 +5808,86 @@
|
|
|
5509
5808
|
"createdAt"
|
|
5510
5809
|
]
|
|
5511
5810
|
},
|
|
5811
|
+
"v1Wallet": {
|
|
5812
|
+
"type": "object",
|
|
5813
|
+
"properties": {
|
|
5814
|
+
"walletId": {
|
|
5815
|
+
"type": "string",
|
|
5816
|
+
"description": "Unique identifier for a given Wallet."
|
|
5817
|
+
},
|
|
5818
|
+
"walletName": {
|
|
5819
|
+
"type": "string",
|
|
5820
|
+
"description": "Human-readable name for a Wallet."
|
|
5821
|
+
},
|
|
5822
|
+
"createdAt": {
|
|
5823
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
5824
|
+
},
|
|
5825
|
+
"updatedAt": {
|
|
5826
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
5827
|
+
},
|
|
5828
|
+
"exported": {
|
|
5829
|
+
"type": "boolean",
|
|
5830
|
+
"description": "True when a given Wallet is exported, false otherwise."
|
|
5831
|
+
}
|
|
5832
|
+
},
|
|
5833
|
+
"required": [
|
|
5834
|
+
"walletId",
|
|
5835
|
+
"walletName",
|
|
5836
|
+
"createdAt",
|
|
5837
|
+
"updatedAt",
|
|
5838
|
+
"exported"
|
|
5839
|
+
]
|
|
5840
|
+
},
|
|
5841
|
+
"v1WalletAccount": {
|
|
5842
|
+
"type": "object",
|
|
5843
|
+
"properties": {
|
|
5844
|
+
"organizationId": {
|
|
5845
|
+
"type": "string",
|
|
5846
|
+
"description": "The Organization the Account belongs to."
|
|
5847
|
+
},
|
|
5848
|
+
"walletId": {
|
|
5849
|
+
"type": "string",
|
|
5850
|
+
"description": "The Wallet the Account was derived from."
|
|
5851
|
+
},
|
|
5852
|
+
"curve": {
|
|
5853
|
+
"$ref": "#/definitions/immutablecommonv1Curve",
|
|
5854
|
+
"description": "Cryptographic curve used to generate the Account."
|
|
5855
|
+
},
|
|
5856
|
+
"pathFormat": {
|
|
5857
|
+
"$ref": "#/definitions/v1PathFormat",
|
|
5858
|
+
"description": "Path format used to generate the Account."
|
|
5859
|
+
},
|
|
5860
|
+
"path": {
|
|
5861
|
+
"type": "string",
|
|
5862
|
+
"description": "Path used to generate the Account."
|
|
5863
|
+
},
|
|
5864
|
+
"addressFormat": {
|
|
5865
|
+
"$ref": "#/definitions/immutablecommonv1AddressFormat",
|
|
5866
|
+
"description": "Address format used to generate the Acccount."
|
|
5867
|
+
},
|
|
5868
|
+
"address": {
|
|
5869
|
+
"type": "string",
|
|
5870
|
+
"description": "Address generated using the Wallet seed and Account parameters."
|
|
5871
|
+
},
|
|
5872
|
+
"createdAt": {
|
|
5873
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
5874
|
+
},
|
|
5875
|
+
"updatedAt": {
|
|
5876
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
5877
|
+
}
|
|
5878
|
+
},
|
|
5879
|
+
"required": [
|
|
5880
|
+
"organizationId",
|
|
5881
|
+
"walletId",
|
|
5882
|
+
"curve",
|
|
5883
|
+
"pathFormat",
|
|
5884
|
+
"path",
|
|
5885
|
+
"addressFormat",
|
|
5886
|
+
"address",
|
|
5887
|
+
"createdAt",
|
|
5888
|
+
"updatedAt"
|
|
5889
|
+
]
|
|
5890
|
+
},
|
|
5512
5891
|
"v1WalletAccountParams": {
|
|
5513
5892
|
"type": "object",
|
|
5514
5893
|
"properties": {
|
|
@@ -5531,6 +5910,40 @@
|
|
|
5531
5910
|
},
|
|
5532
5911
|
"required": ["curve", "pathFormat", "path", "addressFormat"]
|
|
5533
5912
|
},
|
|
5913
|
+
"v1WalletParams": {
|
|
5914
|
+
"type": "object",
|
|
5915
|
+
"properties": {
|
|
5916
|
+
"walletName": {
|
|
5917
|
+
"type": "string",
|
|
5918
|
+
"description": "Human-readable name for a Wallet."
|
|
5919
|
+
},
|
|
5920
|
+
"accounts": {
|
|
5921
|
+
"type": "array",
|
|
5922
|
+
"items": {
|
|
5923
|
+
"type": "object",
|
|
5924
|
+
"$ref": "#/definitions/v1WalletAccountParams"
|
|
5925
|
+
},
|
|
5926
|
+
"description": "A list of wallet Accounts."
|
|
5927
|
+
}
|
|
5928
|
+
},
|
|
5929
|
+
"required": ["walletName", "accounts"]
|
|
5930
|
+
},
|
|
5931
|
+
"v1WalletResult": {
|
|
5932
|
+
"type": "object",
|
|
5933
|
+
"properties": {
|
|
5934
|
+
"walletId": {
|
|
5935
|
+
"type": "string"
|
|
5936
|
+
},
|
|
5937
|
+
"addresses": {
|
|
5938
|
+
"type": "array",
|
|
5939
|
+
"items": {
|
|
5940
|
+
"type": "string"
|
|
5941
|
+
},
|
|
5942
|
+
"description": "A list of account addresses."
|
|
5943
|
+
}
|
|
5944
|
+
},
|
|
5945
|
+
"required": ["walletId", "addresses"]
|
|
5946
|
+
},
|
|
5534
5947
|
"v1WebAuthnStamp": {
|
|
5535
5948
|
"type": "object",
|
|
5536
5949
|
"properties": {
|
|
@@ -5582,15 +5995,19 @@
|
|
|
5582
5995
|
"x-tagGroups": [
|
|
5583
5996
|
{
|
|
5584
5997
|
"name": "ORGANIZATIONS",
|
|
5585
|
-
"tags": ["Organizations", "Invitations", "Policies"]
|
|
5998
|
+
"tags": ["Organizations", "Invitations", "Policies", "Features"]
|
|
5586
5999
|
},
|
|
5587
6000
|
{
|
|
5588
6001
|
"name": "PRIVATE KEYS",
|
|
5589
|
-
"tags": ["Private Keys", "Private Key Tags"]
|
|
6002
|
+
"tags": ["Wallets", "Signers", "Private Keys", "Private Key Tags"]
|
|
5590
6003
|
},
|
|
5591
6004
|
{
|
|
5592
6005
|
"name": "USERS",
|
|
5593
|
-
"tags": ["Users", "User Tags", "
|
|
6006
|
+
"tags": ["Users", "User Tags", "User Recovery"]
|
|
6007
|
+
},
|
|
6008
|
+
{
|
|
6009
|
+
"name": "CREDENTIALS",
|
|
6010
|
+
"tags": ["Authenticators", "API Keys", "Sessions"]
|
|
5594
6011
|
},
|
|
5595
6012
|
{
|
|
5596
6013
|
"name": "ACTIVITIES",
|