@turnkey/http 1.1.1 → 1.3.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 +42 -0
- package/README.md +3 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.d.ts +121 -1
- 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 +204 -1
- 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 +9939 -620
- 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 +195 -3
- 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 +925 -97
- package/dist/__generated__/services/coordinator/public/v1/public_api.types.d.ts +450 -58
- package/dist/__generated__/services/coordinator/public/v1/public_api.types.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -415,7 +415,7 @@
|
|
|
415
415
|
"/public/v1/query/whoami": {
|
|
416
416
|
"post": {
|
|
417
417
|
"summary": "Who am I?",
|
|
418
|
-
"description": "Get basic information about your current API user and
|
|
418
|
+
"description": "Get basic information about your current API or WebAuthN user and their organization. Affords Sub-Organization look ups via Parent Organization for WebAuthN users.",
|
|
419
419
|
"operationId": "PublicApiService_GetWhoami",
|
|
420
420
|
"responses": {
|
|
421
421
|
"200": {
|
|
@@ -796,6 +796,70 @@
|
|
|
796
796
|
"tags": ["Users"]
|
|
797
797
|
}
|
|
798
798
|
},
|
|
799
|
+
"/public/v1/submit/create_wallet": {
|
|
800
|
+
"post": {
|
|
801
|
+
"summary": "Create Wallet",
|
|
802
|
+
"description": "Create a Wallet",
|
|
803
|
+
"operationId": "PublicApiService_CreateWallet",
|
|
804
|
+
"responses": {
|
|
805
|
+
"200": {
|
|
806
|
+
"description": "A successful response.",
|
|
807
|
+
"schema": {
|
|
808
|
+
"$ref": "#/definitions/v1ActivityResponse"
|
|
809
|
+
}
|
|
810
|
+
},
|
|
811
|
+
"default": {
|
|
812
|
+
"description": "An unexpected error response.",
|
|
813
|
+
"schema": {
|
|
814
|
+
"$ref": "#/definitions/rpcStatus"
|
|
815
|
+
}
|
|
816
|
+
}
|
|
817
|
+
},
|
|
818
|
+
"parameters": [
|
|
819
|
+
{
|
|
820
|
+
"name": "body",
|
|
821
|
+
"in": "body",
|
|
822
|
+
"required": true,
|
|
823
|
+
"schema": {
|
|
824
|
+
"$ref": "#/definitions/v1CreateWalletRequest"
|
|
825
|
+
}
|
|
826
|
+
}
|
|
827
|
+
],
|
|
828
|
+
"tags": ["PublicApiService"]
|
|
829
|
+
}
|
|
830
|
+
},
|
|
831
|
+
"/public/v1/submit/create_wallet_accounts": {
|
|
832
|
+
"post": {
|
|
833
|
+
"summary": "Create Wallet accounts",
|
|
834
|
+
"description": "Create Wallet accounts",
|
|
835
|
+
"operationId": "PublicApiService_CreateWalletAccounts",
|
|
836
|
+
"responses": {
|
|
837
|
+
"200": {
|
|
838
|
+
"description": "A successful response.",
|
|
839
|
+
"schema": {
|
|
840
|
+
"$ref": "#/definitions/v1ActivityResponse"
|
|
841
|
+
}
|
|
842
|
+
},
|
|
843
|
+
"default": {
|
|
844
|
+
"description": "An unexpected error response.",
|
|
845
|
+
"schema": {
|
|
846
|
+
"$ref": "#/definitions/rpcStatus"
|
|
847
|
+
}
|
|
848
|
+
}
|
|
849
|
+
},
|
|
850
|
+
"parameters": [
|
|
851
|
+
{
|
|
852
|
+
"name": "body",
|
|
853
|
+
"in": "body",
|
|
854
|
+
"required": true,
|
|
855
|
+
"schema": {
|
|
856
|
+
"$ref": "#/definitions/v1CreateWalletAccountsRequest"
|
|
857
|
+
}
|
|
858
|
+
}
|
|
859
|
+
],
|
|
860
|
+
"tags": ["PublicApiService"]
|
|
861
|
+
}
|
|
862
|
+
},
|
|
799
863
|
"/public/v1/submit/delete_api_keys": {
|
|
800
864
|
"post": {
|
|
801
865
|
"summary": "Delete API Keys",
|
|
@@ -924,6 +988,70 @@
|
|
|
924
988
|
"tags": ["Policies"]
|
|
925
989
|
}
|
|
926
990
|
},
|
|
991
|
+
"/public/v1/submit/export_private_key": {
|
|
992
|
+
"post": {
|
|
993
|
+
"summary": "Export Private Key",
|
|
994
|
+
"description": "Exports a Private Key",
|
|
995
|
+
"operationId": "PublicApiService_ExportPrivateKey",
|
|
996
|
+
"responses": {
|
|
997
|
+
"200": {
|
|
998
|
+
"description": "A successful response.",
|
|
999
|
+
"schema": {
|
|
1000
|
+
"$ref": "#/definitions/v1ActivityResponse"
|
|
1001
|
+
}
|
|
1002
|
+
},
|
|
1003
|
+
"default": {
|
|
1004
|
+
"description": "An unexpected error response.",
|
|
1005
|
+
"schema": {
|
|
1006
|
+
"$ref": "#/definitions/rpcStatus"
|
|
1007
|
+
}
|
|
1008
|
+
}
|
|
1009
|
+
},
|
|
1010
|
+
"parameters": [
|
|
1011
|
+
{
|
|
1012
|
+
"name": "body",
|
|
1013
|
+
"in": "body",
|
|
1014
|
+
"required": true,
|
|
1015
|
+
"schema": {
|
|
1016
|
+
"$ref": "#/definitions/v1ExportPrivateKeyRequest"
|
|
1017
|
+
}
|
|
1018
|
+
}
|
|
1019
|
+
],
|
|
1020
|
+
"tags": ["Private Keys"]
|
|
1021
|
+
}
|
|
1022
|
+
},
|
|
1023
|
+
"/public/v1/submit/init_user_email_recovery": {
|
|
1024
|
+
"post": {
|
|
1025
|
+
"summary": "Init Recovery",
|
|
1026
|
+
"description": "Initializes a new recovery",
|
|
1027
|
+
"operationId": "PublicApiService_InitUserEmailRecovery",
|
|
1028
|
+
"responses": {
|
|
1029
|
+
"200": {
|
|
1030
|
+
"description": "A successful response.",
|
|
1031
|
+
"schema": {
|
|
1032
|
+
"$ref": "#/definitions/v1ActivityResponse"
|
|
1033
|
+
}
|
|
1034
|
+
},
|
|
1035
|
+
"default": {
|
|
1036
|
+
"description": "An unexpected error response.",
|
|
1037
|
+
"schema": {
|
|
1038
|
+
"$ref": "#/definitions/rpcStatus"
|
|
1039
|
+
}
|
|
1040
|
+
}
|
|
1041
|
+
},
|
|
1042
|
+
"parameters": [
|
|
1043
|
+
{
|
|
1044
|
+
"name": "body",
|
|
1045
|
+
"in": "body",
|
|
1046
|
+
"required": true,
|
|
1047
|
+
"schema": {
|
|
1048
|
+
"$ref": "#/definitions/v1InitUserEmailRecoveryRequest"
|
|
1049
|
+
}
|
|
1050
|
+
}
|
|
1051
|
+
],
|
|
1052
|
+
"tags": ["Organizations"]
|
|
1053
|
+
}
|
|
1054
|
+
},
|
|
927
1055
|
"/public/v1/submit/reject_activity": {
|
|
928
1056
|
"post": {
|
|
929
1057
|
"summary": "Reject Activity",
|
|
@@ -956,6 +1084,70 @@
|
|
|
956
1084
|
"tags": ["Consensus"]
|
|
957
1085
|
}
|
|
958
1086
|
},
|
|
1087
|
+
"/public/v1/submit/remove_organization_feature": {
|
|
1088
|
+
"post": {
|
|
1089
|
+
"summary": "Remove Organization Feature",
|
|
1090
|
+
"description": "Removes an organization feature",
|
|
1091
|
+
"operationId": "PublicApiService_RemoveOrganizationFeature",
|
|
1092
|
+
"responses": {
|
|
1093
|
+
"200": {
|
|
1094
|
+
"description": "A successful response.",
|
|
1095
|
+
"schema": {
|
|
1096
|
+
"$ref": "#/definitions/v1ActivityResponse"
|
|
1097
|
+
}
|
|
1098
|
+
},
|
|
1099
|
+
"default": {
|
|
1100
|
+
"description": "An unexpected error response.",
|
|
1101
|
+
"schema": {
|
|
1102
|
+
"$ref": "#/definitions/rpcStatus"
|
|
1103
|
+
}
|
|
1104
|
+
}
|
|
1105
|
+
},
|
|
1106
|
+
"parameters": [
|
|
1107
|
+
{
|
|
1108
|
+
"name": "body",
|
|
1109
|
+
"in": "body",
|
|
1110
|
+
"required": true,
|
|
1111
|
+
"schema": {
|
|
1112
|
+
"$ref": "#/definitions/v1RemoveOrganizationFeatureRequest"
|
|
1113
|
+
}
|
|
1114
|
+
}
|
|
1115
|
+
],
|
|
1116
|
+
"tags": ["Organizations"]
|
|
1117
|
+
}
|
|
1118
|
+
},
|
|
1119
|
+
"/public/v1/submit/set_organization_feature": {
|
|
1120
|
+
"post": {
|
|
1121
|
+
"summary": "Set Organization Feature",
|
|
1122
|
+
"description": "Sets an organization feature",
|
|
1123
|
+
"operationId": "PublicApiService_SetOrganizationFeature",
|
|
1124
|
+
"responses": {
|
|
1125
|
+
"200": {
|
|
1126
|
+
"description": "A successful response.",
|
|
1127
|
+
"schema": {
|
|
1128
|
+
"$ref": "#/definitions/v1ActivityResponse"
|
|
1129
|
+
}
|
|
1130
|
+
},
|
|
1131
|
+
"default": {
|
|
1132
|
+
"description": "An unexpected error response.",
|
|
1133
|
+
"schema": {
|
|
1134
|
+
"$ref": "#/definitions/rpcStatus"
|
|
1135
|
+
}
|
|
1136
|
+
}
|
|
1137
|
+
},
|
|
1138
|
+
"parameters": [
|
|
1139
|
+
{
|
|
1140
|
+
"name": "body",
|
|
1141
|
+
"in": "body",
|
|
1142
|
+
"required": true,
|
|
1143
|
+
"schema": {
|
|
1144
|
+
"$ref": "#/definitions/v1SetOrganizationFeatureRequest"
|
|
1145
|
+
}
|
|
1146
|
+
}
|
|
1147
|
+
],
|
|
1148
|
+
"tags": ["Organizations"]
|
|
1149
|
+
}
|
|
1150
|
+
},
|
|
959
1151
|
"/public/v1/submit/sign_raw_payload": {
|
|
960
1152
|
"post": {
|
|
961
1153
|
"summary": "Sign Raw Payload",
|
|
@@ -988,6 +1180,38 @@
|
|
|
988
1180
|
"tags": ["Private Keys"]
|
|
989
1181
|
}
|
|
990
1182
|
},
|
|
1183
|
+
"/public/v1/submit/sign_raw_payload_v2": {
|
|
1184
|
+
"post": {
|
|
1185
|
+
"summary": "Sign Raw Payload",
|
|
1186
|
+
"description": "Sign a raw payload with a Private Key id or address",
|
|
1187
|
+
"operationId": "PublicApiService_SignRawPayloadV2",
|
|
1188
|
+
"responses": {
|
|
1189
|
+
"200": {
|
|
1190
|
+
"description": "A successful response.",
|
|
1191
|
+
"schema": {
|
|
1192
|
+
"$ref": "#/definitions/v1ActivityResponse"
|
|
1193
|
+
}
|
|
1194
|
+
},
|
|
1195
|
+
"default": {
|
|
1196
|
+
"description": "An unexpected error response.",
|
|
1197
|
+
"schema": {
|
|
1198
|
+
"$ref": "#/definitions/rpcStatus"
|
|
1199
|
+
}
|
|
1200
|
+
}
|
|
1201
|
+
},
|
|
1202
|
+
"parameters": [
|
|
1203
|
+
{
|
|
1204
|
+
"name": "body",
|
|
1205
|
+
"in": "body",
|
|
1206
|
+
"required": true,
|
|
1207
|
+
"schema": {
|
|
1208
|
+
"$ref": "#/definitions/v1SignRawPayloadV2Request"
|
|
1209
|
+
}
|
|
1210
|
+
}
|
|
1211
|
+
],
|
|
1212
|
+
"tags": ["PublicApiService"]
|
|
1213
|
+
}
|
|
1214
|
+
},
|
|
991
1215
|
"/public/v1/submit/sign_transaction": {
|
|
992
1216
|
"post": {
|
|
993
1217
|
"summary": "Sign Transaction",
|
|
@@ -1020,6 +1244,38 @@
|
|
|
1020
1244
|
"tags": ["Private Keys"]
|
|
1021
1245
|
}
|
|
1022
1246
|
},
|
|
1247
|
+
"/public/v1/submit/sign_transaction_v2": {
|
|
1248
|
+
"post": {
|
|
1249
|
+
"summary": "Sign Transaction",
|
|
1250
|
+
"description": "Sign a transaction with a Private Key id or address",
|
|
1251
|
+
"operationId": "PublicApiService_SignTransactionV2",
|
|
1252
|
+
"responses": {
|
|
1253
|
+
"200": {
|
|
1254
|
+
"description": "A successful response.",
|
|
1255
|
+
"schema": {
|
|
1256
|
+
"$ref": "#/definitions/v1ActivityResponse"
|
|
1257
|
+
}
|
|
1258
|
+
},
|
|
1259
|
+
"default": {
|
|
1260
|
+
"description": "An unexpected error response.",
|
|
1261
|
+
"schema": {
|
|
1262
|
+
"$ref": "#/definitions/rpcStatus"
|
|
1263
|
+
}
|
|
1264
|
+
}
|
|
1265
|
+
},
|
|
1266
|
+
"parameters": [
|
|
1267
|
+
{
|
|
1268
|
+
"name": "body",
|
|
1269
|
+
"in": "body",
|
|
1270
|
+
"required": true,
|
|
1271
|
+
"schema": {
|
|
1272
|
+
"$ref": "#/definitions/v1SignTransactionV2Request"
|
|
1273
|
+
}
|
|
1274
|
+
}
|
|
1275
|
+
],
|
|
1276
|
+
"tags": ["PublicApiService"]
|
|
1277
|
+
}
|
|
1278
|
+
},
|
|
1023
1279
|
"/public/v1/submit/update_allowed_origins": {
|
|
1024
1280
|
"post": {
|
|
1025
1281
|
"summary": "Update Allowable Origins",
|
|
@@ -1249,10 +1505,10 @@
|
|
|
1249
1505
|
"$ref": "#/definitions/v1TagType"
|
|
1250
1506
|
},
|
|
1251
1507
|
"createdAt": {
|
|
1252
|
-
"$ref": "#/definitions/
|
|
1508
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
1253
1509
|
},
|
|
1254
1510
|
"updatedAt": {
|
|
1255
|
-
"$ref": "#/definitions/
|
|
1511
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
1256
1512
|
}
|
|
1257
1513
|
},
|
|
1258
1514
|
"required": ["tagId", "tagName", "tagType", "createdAt", "updatedAt"]
|
|
@@ -1290,6 +1546,27 @@
|
|
|
1290
1546
|
"AUTHENTICATOR_TRANSPORT_HYBRID"
|
|
1291
1547
|
]
|
|
1292
1548
|
},
|
|
1549
|
+
"externaldatav1Credential": {
|
|
1550
|
+
"type": "object",
|
|
1551
|
+
"properties": {
|
|
1552
|
+
"publicKey": {
|
|
1553
|
+
"type": "string",
|
|
1554
|
+
"description": "The public component of a cryptographic key pair used to sign messages and transactions."
|
|
1555
|
+
},
|
|
1556
|
+
"type": {
|
|
1557
|
+
"$ref": "#/definitions/externaldatav1CredentialType"
|
|
1558
|
+
}
|
|
1559
|
+
},
|
|
1560
|
+
"required": ["publicKey", "type"]
|
|
1561
|
+
},
|
|
1562
|
+
"externaldatav1CredentialType": {
|
|
1563
|
+
"type": "string",
|
|
1564
|
+
"enum": [
|
|
1565
|
+
"CREDENTIAL_TYPE_WEBAUTHN_AUTHENTICATOR",
|
|
1566
|
+
"CREDENTIAL_TYPE_API_KEY_P256",
|
|
1567
|
+
"CREDENTIAL_TYPE_RECOVER_USER_KEY_P256"
|
|
1568
|
+
]
|
|
1569
|
+
},
|
|
1293
1570
|
"externaldatav1Curve": {
|
|
1294
1571
|
"type": "string",
|
|
1295
1572
|
"enum": ["CURVE_SECP256K1", "CURVE_ED25519"]
|
|
@@ -1314,6 +1591,24 @@
|
|
|
1314
1591
|
"OPERATOR_CONTAINS_ALL"
|
|
1315
1592
|
]
|
|
1316
1593
|
},
|
|
1594
|
+
"externaldatav1Quorum": {
|
|
1595
|
+
"type": "object",
|
|
1596
|
+
"properties": {
|
|
1597
|
+
"threshold": {
|
|
1598
|
+
"type": "integer",
|
|
1599
|
+
"format": "int32",
|
|
1600
|
+
"description": "Count of unique approvals required to meet quorum."
|
|
1601
|
+
},
|
|
1602
|
+
"userIds": {
|
|
1603
|
+
"type": "array",
|
|
1604
|
+
"items": {
|
|
1605
|
+
"type": "string"
|
|
1606
|
+
},
|
|
1607
|
+
"description": "Unique identifiers of quorum set members."
|
|
1608
|
+
}
|
|
1609
|
+
},
|
|
1610
|
+
"required": ["threshold", "userIds"]
|
|
1611
|
+
},
|
|
1317
1612
|
"externaldatav1Selector": {
|
|
1318
1613
|
"type": "object",
|
|
1319
1614
|
"properties": {
|
|
@@ -1335,6 +1630,18 @@
|
|
|
1335
1630
|
},
|
|
1336
1631
|
"required": ["subject", "operator", "targets"]
|
|
1337
1632
|
},
|
|
1633
|
+
"externaldatav1Timestamp": {
|
|
1634
|
+
"type": "object",
|
|
1635
|
+
"properties": {
|
|
1636
|
+
"seconds": {
|
|
1637
|
+
"type": "string"
|
|
1638
|
+
},
|
|
1639
|
+
"nanos": {
|
|
1640
|
+
"type": "string"
|
|
1641
|
+
}
|
|
1642
|
+
},
|
|
1643
|
+
"required": ["seconds", "nanos"]
|
|
1644
|
+
},
|
|
1338
1645
|
"immutableactivityv1AccessType": {
|
|
1339
1646
|
"type": "string",
|
|
1340
1647
|
"enum": ["ACCESS_TYPE_WEB", "ACCESS_TYPE_API", "ACCESS_TYPE_ALL"]
|
|
@@ -1343,29 +1650,26 @@
|
|
|
1343
1650
|
"type": "object",
|
|
1344
1651
|
"properties": {
|
|
1345
1652
|
"format": {
|
|
1346
|
-
"$ref": "#/definitions/
|
|
1653
|
+
"$ref": "#/definitions/immutablecommonv1AddressFormat"
|
|
1347
1654
|
},
|
|
1348
1655
|
"address": {
|
|
1349
1656
|
"type": "string"
|
|
1350
1657
|
}
|
|
1351
1658
|
}
|
|
1352
1659
|
},
|
|
1353
|
-
"immutableactivityv1AddressFormat": {
|
|
1354
|
-
"type": "string",
|
|
1355
|
-
"enum": [
|
|
1356
|
-
"ADDRESS_FORMAT_UNCOMPRESSED",
|
|
1357
|
-
"ADDRESS_FORMAT_COMPRESSED",
|
|
1358
|
-
"ADDRESS_FORMAT_ETHEREUM"
|
|
1359
|
-
]
|
|
1360
|
-
},
|
|
1361
|
-
"immutableactivityv1Curve": {
|
|
1362
|
-
"type": "string",
|
|
1363
|
-
"enum": ["CURVE_SECP256K1", "CURVE_ED25519"]
|
|
1364
|
-
},
|
|
1365
1660
|
"immutableactivityv1Effect": {
|
|
1366
1661
|
"type": "string",
|
|
1367
1662
|
"enum": ["EFFECT_ALLOW", "EFFECT_DENY"]
|
|
1368
1663
|
},
|
|
1664
|
+
"immutableactivityv1HashFunction": {
|
|
1665
|
+
"type": "string",
|
|
1666
|
+
"enum": [
|
|
1667
|
+
"HASH_FUNCTION_NO_OP",
|
|
1668
|
+
"HASH_FUNCTION_SHA256",
|
|
1669
|
+
"HASH_FUNCTION_KECCAK256",
|
|
1670
|
+
"HASH_FUNCTION_NOT_APPLICABLE"
|
|
1671
|
+
]
|
|
1672
|
+
},
|
|
1369
1673
|
"immutableactivityv1Operator": {
|
|
1370
1674
|
"type": "string",
|
|
1371
1675
|
"enum": [
|
|
@@ -1382,6 +1686,10 @@
|
|
|
1382
1686
|
"OPERATOR_CONTAINS_ALL"
|
|
1383
1687
|
]
|
|
1384
1688
|
},
|
|
1689
|
+
"immutableactivityv1PayloadEncoding": {
|
|
1690
|
+
"type": "string",
|
|
1691
|
+
"enum": ["PAYLOAD_ENCODING_HEXADECIMAL", "PAYLOAD_ENCODING_TEXT_UTF8"]
|
|
1692
|
+
},
|
|
1385
1693
|
"immutableactivityv1Selector": {
|
|
1386
1694
|
"type": "object",
|
|
1387
1695
|
"properties": {
|
|
@@ -1396,9 +1704,19 @@
|
|
|
1396
1704
|
}
|
|
1397
1705
|
}
|
|
1398
1706
|
},
|
|
1399
|
-
"
|
|
1707
|
+
"immutablecommonv1AddressFormat": {
|
|
1400
1708
|
"type": "string",
|
|
1401
|
-
"enum": [
|
|
1709
|
+
"enum": [
|
|
1710
|
+
"ADDRESS_FORMAT_UNCOMPRESSED",
|
|
1711
|
+
"ADDRESS_FORMAT_COMPRESSED",
|
|
1712
|
+
"ADDRESS_FORMAT_ETHEREUM",
|
|
1713
|
+
"ADDRESS_FORMAT_SOLANA",
|
|
1714
|
+
"ADDRESS_FORMAT_COSMOS"
|
|
1715
|
+
]
|
|
1716
|
+
},
|
|
1717
|
+
"immutablecommonv1Curve": {
|
|
1718
|
+
"type": "string",
|
|
1719
|
+
"enum": ["CURVE_SECP256K1", "CURVE_ED25519"]
|
|
1402
1720
|
},
|
|
1403
1721
|
"immutablewebauthnv1AuthenticatorTransport": {
|
|
1404
1722
|
"type": "string",
|
|
@@ -1554,10 +1872,10 @@
|
|
|
1554
1872
|
"type": "boolean"
|
|
1555
1873
|
},
|
|
1556
1874
|
"createdAt": {
|
|
1557
|
-
"$ref": "#/definitions/
|
|
1875
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
1558
1876
|
},
|
|
1559
1877
|
"updatedAt": {
|
|
1560
|
-
"$ref": "#/definitions/
|
|
1878
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
1561
1879
|
}
|
|
1562
1880
|
},
|
|
1563
1881
|
"required": [
|
|
@@ -1641,14 +1959,24 @@
|
|
|
1641
1959
|
"ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2",
|
|
1642
1960
|
"ACTIVITY_TYPE_UPDATE_USER",
|
|
1643
1961
|
"ACTIVITY_TYPE_UPDATE_POLICY",
|
|
1644
|
-
"ACTIVITY_TYPE_SET_PAYMENT_METHOD_V2"
|
|
1962
|
+
"ACTIVITY_TYPE_SET_PAYMENT_METHOD_V2",
|
|
1963
|
+
"ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V3",
|
|
1964
|
+
"ACTIVITY_TYPE_CREATE_WALLET",
|
|
1965
|
+
"ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS",
|
|
1966
|
+
"ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY",
|
|
1967
|
+
"ACTIVITY_TYPE_RECOVER_USER",
|
|
1968
|
+
"ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE",
|
|
1969
|
+
"ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE",
|
|
1970
|
+
"ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2",
|
|
1971
|
+
"ACTIVITY_TYPE_SIGN_TRANSACTION_V2",
|
|
1972
|
+
"ACTIVITY_TYPE_EXPORT_PRIVATE_KEY"
|
|
1645
1973
|
]
|
|
1646
1974
|
},
|
|
1647
1975
|
"v1ApiKey": {
|
|
1648
1976
|
"type": "object",
|
|
1649
1977
|
"properties": {
|
|
1650
1978
|
"credential": {
|
|
1651
|
-
"$ref": "#/definitions/
|
|
1979
|
+
"$ref": "#/definitions/externaldatav1Credential",
|
|
1652
1980
|
"description": "A User credential that can be used to authenticate to Turnkey."
|
|
1653
1981
|
},
|
|
1654
1982
|
"apiKeyId": {
|
|
@@ -1660,10 +1988,10 @@
|
|
|
1660
1988
|
"description": "Human-readable name for an API Key."
|
|
1661
1989
|
},
|
|
1662
1990
|
"createdAt": {
|
|
1663
|
-
"$ref": "#/definitions/
|
|
1991
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
1664
1992
|
},
|
|
1665
1993
|
"updatedAt": {
|
|
1666
|
-
"$ref": "#/definitions/
|
|
1994
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
1667
1995
|
}
|
|
1668
1996
|
},
|
|
1669
1997
|
"required": [
|
|
@@ -1804,7 +2132,7 @@
|
|
|
1804
2132
|
"description": "The type of Authenticator device."
|
|
1805
2133
|
},
|
|
1806
2134
|
"credential": {
|
|
1807
|
-
"$ref": "#/definitions/
|
|
2135
|
+
"$ref": "#/definitions/externaldatav1Credential",
|
|
1808
2136
|
"description": "A User credential that can be used to authenticate to Turnkey."
|
|
1809
2137
|
},
|
|
1810
2138
|
"authenticatorId": {
|
|
@@ -1816,10 +2144,10 @@
|
|
|
1816
2144
|
"description": "Human-readable name for an Authenticator."
|
|
1817
2145
|
},
|
|
1818
2146
|
"createdAt": {
|
|
1819
|
-
"$ref": "#/definitions/
|
|
2147
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
1820
2148
|
},
|
|
1821
2149
|
"updatedAt": {
|
|
1822
|
-
"$ref": "#/definitions/
|
|
2150
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
1823
2151
|
}
|
|
1824
2152
|
},
|
|
1825
2153
|
"required": [
|
|
@@ -2443,12 +2771,48 @@
|
|
|
2443
2771
|
},
|
|
2444
2772
|
"required": ["subOrganizationName", "rootUsers", "rootQuorumThreshold"]
|
|
2445
2773
|
},
|
|
2774
|
+
"v1CreateSubOrganizationIntentV3": {
|
|
2775
|
+
"type": "object",
|
|
2776
|
+
"properties": {
|
|
2777
|
+
"subOrganizationName": {
|
|
2778
|
+
"type": "string",
|
|
2779
|
+
"description": "Name for this sub-organization"
|
|
2780
|
+
},
|
|
2781
|
+
"rootUsers": {
|
|
2782
|
+
"type": "array",
|
|
2783
|
+
"items": {
|
|
2784
|
+
"type": "object",
|
|
2785
|
+
"$ref": "#/definitions/v1RootUserParams"
|
|
2786
|
+
},
|
|
2787
|
+
"description": "Root users to create within this sub-organization"
|
|
2788
|
+
},
|
|
2789
|
+
"rootQuorumThreshold": {
|
|
2790
|
+
"type": "integer",
|
|
2791
|
+
"format": "int32",
|
|
2792
|
+
"description": "The threshold of unique approvals to reach root quorum. This value must be less than or equal to the number of root users"
|
|
2793
|
+
},
|
|
2794
|
+
"privateKeys": {
|
|
2795
|
+
"type": "array",
|
|
2796
|
+
"items": {
|
|
2797
|
+
"type": "object",
|
|
2798
|
+
"$ref": "#/definitions/v1PrivateKeyParams"
|
|
2799
|
+
},
|
|
2800
|
+
"description": "A list of Private Keys."
|
|
2801
|
+
}
|
|
2802
|
+
},
|
|
2803
|
+
"required": [
|
|
2804
|
+
"subOrganizationName",
|
|
2805
|
+
"rootUsers",
|
|
2806
|
+
"rootQuorumThreshold",
|
|
2807
|
+
"privateKeys"
|
|
2808
|
+
]
|
|
2809
|
+
},
|
|
2446
2810
|
"v1CreateSubOrganizationRequest": {
|
|
2447
2811
|
"type": "object",
|
|
2448
2812
|
"properties": {
|
|
2449
2813
|
"type": {
|
|
2450
2814
|
"type": "string",
|
|
2451
|
-
"enum": ["
|
|
2815
|
+
"enum": ["ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V3"]
|
|
2452
2816
|
},
|
|
2453
2817
|
"timestampMs": {
|
|
2454
2818
|
"type": "string",
|
|
@@ -2459,7 +2823,7 @@
|
|
|
2459
2823
|
"description": "Unique identifier for a given Organization."
|
|
2460
2824
|
},
|
|
2461
2825
|
"parameters": {
|
|
2462
|
-
"$ref": "#/definitions/
|
|
2826
|
+
"$ref": "#/definitions/v1CreateSubOrganizationIntentV3"
|
|
2463
2827
|
}
|
|
2464
2828
|
},
|
|
2465
2829
|
"required": ["type", "timestampMs", "organizationId", "parameters"]
|
|
@@ -2473,6 +2837,23 @@
|
|
|
2473
2837
|
},
|
|
2474
2838
|
"required": ["subOrganizationId"]
|
|
2475
2839
|
},
|
|
2840
|
+
"v1CreateSubOrganizationResultV3": {
|
|
2841
|
+
"type": "object",
|
|
2842
|
+
"properties": {
|
|
2843
|
+
"subOrganizationId": {
|
|
2844
|
+
"type": "string"
|
|
2845
|
+
},
|
|
2846
|
+
"privateKeys": {
|
|
2847
|
+
"type": "array",
|
|
2848
|
+
"items": {
|
|
2849
|
+
"type": "object",
|
|
2850
|
+
"$ref": "#/definitions/v1PrivateKeyResult"
|
|
2851
|
+
},
|
|
2852
|
+
"description": "A list of Private Key IDs and addresses."
|
|
2853
|
+
}
|
|
2854
|
+
},
|
|
2855
|
+
"required": ["subOrganizationId", "privateKeys"]
|
|
2856
|
+
},
|
|
2476
2857
|
"v1CreateUserTagIntent": {
|
|
2477
2858
|
"type": "object",
|
|
2478
2859
|
"properties": {
|
|
@@ -2590,34 +2971,122 @@
|
|
|
2590
2971
|
},
|
|
2591
2972
|
"required": ["userIds"]
|
|
2592
2973
|
},
|
|
2593
|
-
"
|
|
2974
|
+
"v1CreateWalletAccountsIntent": {
|
|
2594
2975
|
"type": "object",
|
|
2595
2976
|
"properties": {
|
|
2596
|
-
"
|
|
2597
|
-
"type": "
|
|
2977
|
+
"walletId": {
|
|
2978
|
+
"type": "string",
|
|
2979
|
+
"description": "Unique identifier for a given Wallet."
|
|
2980
|
+
},
|
|
2981
|
+
"accounts": {
|
|
2982
|
+
"type": "array",
|
|
2983
|
+
"items": {
|
|
2984
|
+
"type": "object",
|
|
2985
|
+
"$ref": "#/definitions/v1WalletAccountParams"
|
|
2986
|
+
},
|
|
2987
|
+
"description": "A list of wallet Accounts."
|
|
2598
2988
|
}
|
|
2599
2989
|
},
|
|
2600
|
-
"required": ["
|
|
2990
|
+
"required": ["walletId", "accounts"]
|
|
2601
2991
|
},
|
|
2602
|
-
"
|
|
2992
|
+
"v1CreateWalletAccountsRequest": {
|
|
2603
2993
|
"type": "object",
|
|
2604
2994
|
"properties": {
|
|
2605
|
-
"
|
|
2995
|
+
"type": {
|
|
2606
2996
|
"type": "string",
|
|
2607
|
-
"
|
|
2997
|
+
"enum": ["ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS"]
|
|
2998
|
+
},
|
|
2999
|
+
"timestampMs": {
|
|
3000
|
+
"type": "string",
|
|
3001
|
+
"description": "Timestamp (in milliseconds) of the request, used to verify liveness of user requests."
|
|
3002
|
+
},
|
|
3003
|
+
"organizationId": {
|
|
3004
|
+
"type": "string",
|
|
3005
|
+
"description": "Unique identifier for a given Organization."
|
|
3006
|
+
},
|
|
3007
|
+
"parameters": {
|
|
3008
|
+
"$ref": "#/definitions/v1CreateWalletAccountsIntent"
|
|
3009
|
+
}
|
|
3010
|
+
},
|
|
3011
|
+
"required": ["type", "timestampMs", "organizationId", "parameters"]
|
|
3012
|
+
},
|
|
3013
|
+
"v1CreateWalletAccountsResult": {
|
|
3014
|
+
"type": "object",
|
|
3015
|
+
"properties": {
|
|
3016
|
+
"addresses": {
|
|
3017
|
+
"type": "array",
|
|
3018
|
+
"items": {
|
|
3019
|
+
"type": "string"
|
|
3020
|
+
},
|
|
3021
|
+
"description": "A list of derived addresses."
|
|
3022
|
+
}
|
|
3023
|
+
},
|
|
3024
|
+
"required": ["addresses"]
|
|
3025
|
+
},
|
|
3026
|
+
"v1CreateWalletIntent": {
|
|
3027
|
+
"type": "object",
|
|
3028
|
+
"properties": {
|
|
3029
|
+
"walletName": {
|
|
3030
|
+
"type": "string",
|
|
3031
|
+
"description": "Human-readable name for a Wallet."
|
|
2608
3032
|
},
|
|
3033
|
+
"accounts": {
|
|
3034
|
+
"type": "array",
|
|
3035
|
+
"items": {
|
|
3036
|
+
"type": "object",
|
|
3037
|
+
"$ref": "#/definitions/v1WalletAccountParams"
|
|
3038
|
+
},
|
|
3039
|
+
"description": "A list of wallet Accounts."
|
|
3040
|
+
}
|
|
3041
|
+
},
|
|
3042
|
+
"required": ["walletName", "accounts"]
|
|
3043
|
+
},
|
|
3044
|
+
"v1CreateWalletRequest": {
|
|
3045
|
+
"type": "object",
|
|
3046
|
+
"properties": {
|
|
2609
3047
|
"type": {
|
|
2610
|
-
"
|
|
3048
|
+
"type": "string",
|
|
3049
|
+
"enum": ["ACTIVITY_TYPE_CREATE_WALLET"]
|
|
3050
|
+
},
|
|
3051
|
+
"timestampMs": {
|
|
3052
|
+
"type": "string",
|
|
3053
|
+
"description": "Timestamp (in milliseconds) of the request, used to verify liveness of user requests."
|
|
3054
|
+
},
|
|
3055
|
+
"organizationId": {
|
|
3056
|
+
"type": "string",
|
|
3057
|
+
"description": "Unique identifier for a given Organization."
|
|
3058
|
+
},
|
|
3059
|
+
"parameters": {
|
|
3060
|
+
"$ref": "#/definitions/v1CreateWalletIntent"
|
|
2611
3061
|
}
|
|
2612
3062
|
},
|
|
2613
|
-
"required": ["
|
|
3063
|
+
"required": ["type", "timestampMs", "organizationId", "parameters"]
|
|
2614
3064
|
},
|
|
2615
|
-
"
|
|
2616
|
-
"type": "
|
|
2617
|
-
"
|
|
2618
|
-
"
|
|
2619
|
-
|
|
2620
|
-
|
|
3065
|
+
"v1CreateWalletResult": {
|
|
3066
|
+
"type": "object",
|
|
3067
|
+
"properties": {
|
|
3068
|
+
"walletId": {
|
|
3069
|
+
"type": "string",
|
|
3070
|
+
"description": "A list of Wallet IDs."
|
|
3071
|
+
},
|
|
3072
|
+
"addresses": {
|
|
3073
|
+
"type": "array",
|
|
3074
|
+
"items": {
|
|
3075
|
+
"type": "string"
|
|
3076
|
+
},
|
|
3077
|
+
"description": "A list of account addresses."
|
|
3078
|
+
}
|
|
3079
|
+
},
|
|
3080
|
+
"required": ["walletId", "addresses"]
|
|
3081
|
+
},
|
|
3082
|
+
"v1CredPropsAuthenticationExtensionsClientOutputs": {
|
|
3083
|
+
"type": "object",
|
|
3084
|
+
"properties": {
|
|
3085
|
+
"rk": {
|
|
3086
|
+
"type": "boolean"
|
|
3087
|
+
}
|
|
3088
|
+
},
|
|
3089
|
+
"required": ["rk"]
|
|
2621
3090
|
},
|
|
2622
3091
|
"v1DeleteApiKeysIntent": {
|
|
2623
3092
|
"type": "object",
|
|
@@ -2933,27 +3402,91 @@
|
|
|
2933
3402
|
"description": "A list of User IDs."
|
|
2934
3403
|
}
|
|
2935
3404
|
},
|
|
2936
|
-
"required": ["userIds"]
|
|
3405
|
+
"required": ["userIds"]
|
|
3406
|
+
},
|
|
3407
|
+
"v1DisablePrivateKeyIntent": {
|
|
3408
|
+
"type": "object",
|
|
3409
|
+
"properties": {
|
|
3410
|
+
"privateKeyId": {
|
|
3411
|
+
"type": "string",
|
|
3412
|
+
"description": "Unique identifier for a given Private Key."
|
|
3413
|
+
}
|
|
3414
|
+
},
|
|
3415
|
+
"required": ["privateKeyId"]
|
|
3416
|
+
},
|
|
3417
|
+
"v1DisablePrivateKeyResult": {
|
|
3418
|
+
"type": "object",
|
|
3419
|
+
"properties": {
|
|
3420
|
+
"privateKeyId": {
|
|
3421
|
+
"type": "string",
|
|
3422
|
+
"description": "Unique identifier for a given Private Key."
|
|
3423
|
+
}
|
|
3424
|
+
},
|
|
3425
|
+
"required": ["privateKeyId"]
|
|
3426
|
+
},
|
|
3427
|
+
"v1ExportPrivateKeyIntent": {
|
|
3428
|
+
"type": "object",
|
|
3429
|
+
"properties": {
|
|
3430
|
+
"privateKeyId": {
|
|
3431
|
+
"type": "string",
|
|
3432
|
+
"description": "Unique identifier for a given Private Key."
|
|
3433
|
+
},
|
|
3434
|
+
"targetPublicKey": {
|
|
3435
|
+
"type": "string",
|
|
3436
|
+
"description": "Client-side public key generated by the user, to which the export bundle will be encrypted."
|
|
3437
|
+
}
|
|
3438
|
+
},
|
|
3439
|
+
"required": ["privateKeyId", "targetPublicKey"]
|
|
3440
|
+
},
|
|
3441
|
+
"v1ExportPrivateKeyRequest": {
|
|
3442
|
+
"type": "object",
|
|
3443
|
+
"properties": {
|
|
3444
|
+
"type": {
|
|
3445
|
+
"type": "string",
|
|
3446
|
+
"enum": ["ACTIVITY_TYPE_EXPORT_PRIVATE_KEY"]
|
|
3447
|
+
},
|
|
3448
|
+
"timestampMs": {
|
|
3449
|
+
"type": "string",
|
|
3450
|
+
"description": "Timestamp (in milliseconds) of the request, used to verify liveness of user requests."
|
|
3451
|
+
},
|
|
3452
|
+
"organizationId": {
|
|
3453
|
+
"type": "string",
|
|
3454
|
+
"description": "Unique identifier for a given Organization."
|
|
3455
|
+
},
|
|
3456
|
+
"parameters": {
|
|
3457
|
+
"$ref": "#/definitions/v1ExportPrivateKeyIntent"
|
|
3458
|
+
}
|
|
3459
|
+
},
|
|
3460
|
+
"required": ["type", "timestampMs", "organizationId", "parameters"]
|
|
2937
3461
|
},
|
|
2938
|
-
"
|
|
3462
|
+
"v1ExportPrivateKeyResult": {
|
|
2939
3463
|
"type": "object",
|
|
2940
3464
|
"properties": {
|
|
2941
3465
|
"privateKeyId": {
|
|
2942
3466
|
"type": "string",
|
|
2943
3467
|
"description": "Unique identifier for a given Private Key."
|
|
3468
|
+
},
|
|
3469
|
+
"exportBundle": {
|
|
3470
|
+
"type": "string",
|
|
3471
|
+
"description": "Export bundle containing a private key encrypted to the client's target public key."
|
|
2944
3472
|
}
|
|
2945
3473
|
},
|
|
2946
|
-
"required": ["privateKeyId"]
|
|
3474
|
+
"required": ["privateKeyId", "exportBundle"]
|
|
2947
3475
|
},
|
|
2948
|
-
"
|
|
3476
|
+
"v1Feature": {
|
|
2949
3477
|
"type": "object",
|
|
2950
3478
|
"properties": {
|
|
2951
|
-
"
|
|
2952
|
-
"
|
|
2953
|
-
|
|
3479
|
+
"name": {
|
|
3480
|
+
"$ref": "#/definitions/v1FeatureName"
|
|
3481
|
+
},
|
|
3482
|
+
"value": {
|
|
3483
|
+
"type": "string"
|
|
2954
3484
|
}
|
|
2955
|
-
}
|
|
2956
|
-
|
|
3485
|
+
}
|
|
3486
|
+
},
|
|
3487
|
+
"v1FeatureName": {
|
|
3488
|
+
"type": "string",
|
|
3489
|
+
"enum": ["FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY"]
|
|
2957
3490
|
},
|
|
2958
3491
|
"v1GetActivitiesRequest": {
|
|
2959
3492
|
"type": "object",
|
|
@@ -3232,7 +3765,7 @@
|
|
|
3232
3765
|
"properties": {
|
|
3233
3766
|
"organizationId": {
|
|
3234
3767
|
"type": "string",
|
|
3235
|
-
"description": "Unique identifier for a given Organization."
|
|
3768
|
+
"description": "Unique identifier for a given Organization. If the request is being made by a WebAuthN user and their Sub-Organization ID is unknown, this can be the Parent Organization ID; using the Sub-Organization ID when possible is preferred due to performance reasons."
|
|
3236
3769
|
}
|
|
3237
3770
|
},
|
|
3238
3771
|
"required": ["organizationId"]
|
|
@@ -3259,14 +3792,50 @@
|
|
|
3259
3792
|
},
|
|
3260
3793
|
"required": ["organizationId", "organizationName", "userId", "username"]
|
|
3261
3794
|
},
|
|
3262
|
-
"
|
|
3263
|
-
"type": "
|
|
3264
|
-
"
|
|
3265
|
-
"
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3795
|
+
"v1InitUserEmailRecoveryIntent": {
|
|
3796
|
+
"type": "object",
|
|
3797
|
+
"properties": {
|
|
3798
|
+
"email": {
|
|
3799
|
+
"type": "string",
|
|
3800
|
+
"description": "Email of the user starting recovery"
|
|
3801
|
+
},
|
|
3802
|
+
"targetPublicKey": {
|
|
3803
|
+
"type": "string",
|
|
3804
|
+
"description": "Client-side public key generated by the user, to which the recovery bundle will be encrypted."
|
|
3805
|
+
}
|
|
3806
|
+
},
|
|
3807
|
+
"required": ["email", "targetPublicKey"]
|
|
3808
|
+
},
|
|
3809
|
+
"v1InitUserEmailRecoveryRequest": {
|
|
3810
|
+
"type": "object",
|
|
3811
|
+
"properties": {
|
|
3812
|
+
"type": {
|
|
3813
|
+
"type": "string",
|
|
3814
|
+
"enum": ["ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY"]
|
|
3815
|
+
},
|
|
3816
|
+
"timestampMs": {
|
|
3817
|
+
"type": "string",
|
|
3818
|
+
"description": "Timestamp (in milliseconds) of the request, used to verify liveness of user requests."
|
|
3819
|
+
},
|
|
3820
|
+
"organizationId": {
|
|
3821
|
+
"type": "string",
|
|
3822
|
+
"description": "Unique identifier for a given Organization."
|
|
3823
|
+
},
|
|
3824
|
+
"parameters": {
|
|
3825
|
+
"$ref": "#/definitions/v1InitUserEmailRecoveryIntent"
|
|
3826
|
+
}
|
|
3827
|
+
},
|
|
3828
|
+
"required": ["type", "timestampMs", "organizationId", "parameters"]
|
|
3829
|
+
},
|
|
3830
|
+
"v1InitUserEmailRecoveryResult": {
|
|
3831
|
+
"type": "object",
|
|
3832
|
+
"properties": {
|
|
3833
|
+
"userId": {
|
|
3834
|
+
"type": "string",
|
|
3835
|
+
"description": "Unique identifier for the user being recovered."
|
|
3836
|
+
}
|
|
3837
|
+
},
|
|
3838
|
+
"required": ["userId"]
|
|
3270
3839
|
},
|
|
3271
3840
|
"v1Intent": {
|
|
3272
3841
|
"type": "object",
|
|
@@ -3399,6 +3968,36 @@
|
|
|
3399
3968
|
},
|
|
3400
3969
|
"setPaymentMethodIntentV2": {
|
|
3401
3970
|
"$ref": "#/definitions/v1SetPaymentMethodIntentV2"
|
|
3971
|
+
},
|
|
3972
|
+
"createSubOrganizationIntentV3": {
|
|
3973
|
+
"$ref": "#/definitions/v1CreateSubOrganizationIntentV3"
|
|
3974
|
+
},
|
|
3975
|
+
"createWalletIntent": {
|
|
3976
|
+
"$ref": "#/definitions/v1CreateWalletIntent"
|
|
3977
|
+
},
|
|
3978
|
+
"createWalletAccountsIntent": {
|
|
3979
|
+
"$ref": "#/definitions/v1CreateWalletAccountsIntent"
|
|
3980
|
+
},
|
|
3981
|
+
"initUserEmailRecoveryIntent": {
|
|
3982
|
+
"$ref": "#/definitions/v1InitUserEmailRecoveryIntent"
|
|
3983
|
+
},
|
|
3984
|
+
"recoverUserIntent": {
|
|
3985
|
+
"$ref": "#/definitions/v1RecoverUserIntent"
|
|
3986
|
+
},
|
|
3987
|
+
"setOrganizationFeatureIntent": {
|
|
3988
|
+
"$ref": "#/definitions/v1SetOrganizationFeatureIntent"
|
|
3989
|
+
},
|
|
3990
|
+
"removeOrganizationFeatureIntent": {
|
|
3991
|
+
"$ref": "#/definitions/v1RemoveOrganizationFeatureIntent"
|
|
3992
|
+
},
|
|
3993
|
+
"signRawPayloadIntentV2": {
|
|
3994
|
+
"$ref": "#/definitions/v1SignRawPayloadIntentV2"
|
|
3995
|
+
},
|
|
3996
|
+
"signTransactionIntentV2": {
|
|
3997
|
+
"$ref": "#/definitions/v1SignTransactionIntentV2"
|
|
3998
|
+
},
|
|
3999
|
+
"exportPrivateKeyIntent": {
|
|
4000
|
+
"$ref": "#/definitions/v1ExportPrivateKeyIntent"
|
|
3402
4001
|
}
|
|
3403
4002
|
},
|
|
3404
4003
|
"required": ["createOrganizationIntent"]
|
|
@@ -3434,10 +4033,10 @@
|
|
|
3434
4033
|
"description": "The current processing status of a specified Invitation."
|
|
3435
4034
|
},
|
|
3436
4035
|
"createdAt": {
|
|
3437
|
-
"$ref": "#/definitions/
|
|
4036
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
3438
4037
|
},
|
|
3439
4038
|
"updatedAt": {
|
|
3440
|
-
"$ref": "#/definitions/
|
|
4039
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
3441
4040
|
},
|
|
3442
4041
|
"senderUserId": {
|
|
3443
4042
|
"type": "string",
|
|
@@ -3560,13 +4159,20 @@
|
|
|
3560
4159
|
}
|
|
3561
4160
|
},
|
|
3562
4161
|
"rootQuorum": {
|
|
3563
|
-
"$ref": "#/definitions/
|
|
4162
|
+
"$ref": "#/definitions/externaldatav1Quorum"
|
|
3564
4163
|
},
|
|
3565
4164
|
"allowedOrigins": {
|
|
3566
4165
|
"type": "array",
|
|
3567
4166
|
"items": {
|
|
3568
4167
|
"type": "string"
|
|
3569
4168
|
}
|
|
4169
|
+
},
|
|
4170
|
+
"features": {
|
|
4171
|
+
"type": "array",
|
|
4172
|
+
"items": {
|
|
4173
|
+
"type": "object",
|
|
4174
|
+
"$ref": "#/definitions/v1Feature"
|
|
4175
|
+
}
|
|
3570
4176
|
}
|
|
3571
4177
|
}
|
|
3572
4178
|
},
|
|
@@ -3587,9 +4193,9 @@
|
|
|
3587
4193
|
}
|
|
3588
4194
|
}
|
|
3589
4195
|
},
|
|
3590
|
-
"
|
|
4196
|
+
"v1PathFormat": {
|
|
3591
4197
|
"type": "string",
|
|
3592
|
-
"enum": ["
|
|
4198
|
+
"enum": ["PATH_FORMAT_BIP32"]
|
|
3593
4199
|
},
|
|
3594
4200
|
"v1Policy": {
|
|
3595
4201
|
"type": "object",
|
|
@@ -3615,10 +4221,10 @@
|
|
|
3615
4221
|
"description": "A list of simple functions each including a subject, target and boolean. See Policy Engine Language section for additional details."
|
|
3616
4222
|
},
|
|
3617
4223
|
"createdAt": {
|
|
3618
|
-
"$ref": "#/definitions/
|
|
4224
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
3619
4225
|
},
|
|
3620
4226
|
"updatedAt": {
|
|
3621
|
-
"$ref": "#/definitions/
|
|
4227
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
3622
4228
|
},
|
|
3623
4229
|
"notes": {
|
|
3624
4230
|
"type": "string",
|
|
@@ -3680,7 +4286,7 @@
|
|
|
3680
4286
|
"description": "A list of Private Key Tag IDs."
|
|
3681
4287
|
},
|
|
3682
4288
|
"createdAt": {
|
|
3683
|
-
"$ref": "#/definitions/
|
|
4289
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
3684
4290
|
}
|
|
3685
4291
|
},
|
|
3686
4292
|
"required": [
|
|
@@ -3701,7 +4307,7 @@
|
|
|
3701
4307
|
"description": "Human-readable name for a Private Key."
|
|
3702
4308
|
},
|
|
3703
4309
|
"curve": {
|
|
3704
|
-
"$ref": "#/definitions/
|
|
4310
|
+
"$ref": "#/definitions/immutablecommonv1Curve",
|
|
3705
4311
|
"description": "Cryptographic Curve used to generate a given Private Key."
|
|
3706
4312
|
},
|
|
3707
4313
|
"privateKeyTags": {
|
|
@@ -3714,7 +4320,7 @@
|
|
|
3714
4320
|
"addressFormats": {
|
|
3715
4321
|
"type": "array",
|
|
3716
4322
|
"items": {
|
|
3717
|
-
"$ref": "#/definitions/
|
|
4323
|
+
"$ref": "#/definitions/immutablecommonv1AddressFormat"
|
|
3718
4324
|
},
|
|
3719
4325
|
"description": "Cryptocurrency-specific formats for a derived address (e.g., Ethereum)."
|
|
3720
4326
|
}
|
|
@@ -3768,23 +4374,32 @@
|
|
|
3768
4374
|
},
|
|
3769
4375
|
"required": ["id", "type", "rawId", "response", "clientExtensionResults"]
|
|
3770
4376
|
},
|
|
3771
|
-
"
|
|
4377
|
+
"v1RecoverUserIntent": {
|
|
3772
4378
|
"type": "object",
|
|
3773
4379
|
"properties": {
|
|
3774
|
-
"
|
|
3775
|
-
"
|
|
3776
|
-
"
|
|
3777
|
-
"description": "Count of unique approvals required to meet quorum."
|
|
4380
|
+
"authenticator": {
|
|
4381
|
+
"$ref": "#/definitions/v1AuthenticatorParamsV2",
|
|
4382
|
+
"description": "The new authenticator to register."
|
|
3778
4383
|
},
|
|
3779
|
-
"
|
|
4384
|
+
"userId": {
|
|
4385
|
+
"type": "string",
|
|
4386
|
+
"description": "Unique identifier for the user performing recovery."
|
|
4387
|
+
}
|
|
4388
|
+
},
|
|
4389
|
+
"required": ["authenticator", "userId"]
|
|
4390
|
+
},
|
|
4391
|
+
"v1RecoverUserResult": {
|
|
4392
|
+
"type": "object",
|
|
4393
|
+
"properties": {
|
|
4394
|
+
"authenticatorId": {
|
|
3780
4395
|
"type": "array",
|
|
3781
4396
|
"items": {
|
|
3782
4397
|
"type": "string"
|
|
3783
4398
|
},
|
|
3784
|
-
"description": "
|
|
4399
|
+
"description": "ID of the authenticator created."
|
|
3785
4400
|
}
|
|
3786
4401
|
},
|
|
3787
|
-
"required": ["
|
|
4402
|
+
"required": ["authenticatorId"]
|
|
3788
4403
|
},
|
|
3789
4404
|
"v1RejectActivityIntent": {
|
|
3790
4405
|
"type": "object",
|
|
@@ -3817,6 +4432,51 @@
|
|
|
3817
4432
|
},
|
|
3818
4433
|
"required": ["type", "timestampMs", "organizationId", "parameters"]
|
|
3819
4434
|
},
|
|
4435
|
+
"v1RemoveOrganizationFeatureIntent": {
|
|
4436
|
+
"type": "object",
|
|
4437
|
+
"properties": {
|
|
4438
|
+
"name": {
|
|
4439
|
+
"$ref": "#/definitions/v1FeatureName",
|
|
4440
|
+
"description": "Name of the feature to remove"
|
|
4441
|
+
}
|
|
4442
|
+
},
|
|
4443
|
+
"required": ["name"]
|
|
4444
|
+
},
|
|
4445
|
+
"v1RemoveOrganizationFeatureRequest": {
|
|
4446
|
+
"type": "object",
|
|
4447
|
+
"properties": {
|
|
4448
|
+
"type": {
|
|
4449
|
+
"type": "string",
|
|
4450
|
+
"enum": ["ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE"]
|
|
4451
|
+
},
|
|
4452
|
+
"timestampMs": {
|
|
4453
|
+
"type": "string",
|
|
4454
|
+
"description": "Timestamp (in milliseconds) of the request, used to verify liveness of user requests."
|
|
4455
|
+
},
|
|
4456
|
+
"organizationId": {
|
|
4457
|
+
"type": "string",
|
|
4458
|
+
"description": "Unique identifier for a given Organization."
|
|
4459
|
+
},
|
|
4460
|
+
"parameters": {
|
|
4461
|
+
"$ref": "#/definitions/v1RemoveOrganizationFeatureIntent"
|
|
4462
|
+
}
|
|
4463
|
+
},
|
|
4464
|
+
"required": ["type", "timestampMs", "organizationId", "parameters"]
|
|
4465
|
+
},
|
|
4466
|
+
"v1RemoveOrganizationFeatureResult": {
|
|
4467
|
+
"type": "object",
|
|
4468
|
+
"properties": {
|
|
4469
|
+
"features": {
|
|
4470
|
+
"type": "array",
|
|
4471
|
+
"items": {
|
|
4472
|
+
"type": "object",
|
|
4473
|
+
"$ref": "#/definitions/v1Feature"
|
|
4474
|
+
},
|
|
4475
|
+
"description": "Resulting list of organization features."
|
|
4476
|
+
}
|
|
4477
|
+
},
|
|
4478
|
+
"required": ["features"]
|
|
4479
|
+
},
|
|
3820
4480
|
"v1Result": {
|
|
3821
4481
|
"type": "object",
|
|
3822
4482
|
"properties": {
|
|
@@ -3918,6 +4578,30 @@
|
|
|
3918
4578
|
},
|
|
3919
4579
|
"updatePolicyResult": {
|
|
3920
4580
|
"$ref": "#/definitions/v1UpdatePolicyResult"
|
|
4581
|
+
},
|
|
4582
|
+
"createSubOrganizationResultV3": {
|
|
4583
|
+
"$ref": "#/definitions/v1CreateSubOrganizationResultV3"
|
|
4584
|
+
},
|
|
4585
|
+
"createWalletResult": {
|
|
4586
|
+
"$ref": "#/definitions/v1CreateWalletResult"
|
|
4587
|
+
},
|
|
4588
|
+
"createWalletAccountsResult": {
|
|
4589
|
+
"$ref": "#/definitions/v1CreateWalletAccountsResult"
|
|
4590
|
+
},
|
|
4591
|
+
"initUserEmailRecoveryResult": {
|
|
4592
|
+
"$ref": "#/definitions/v1InitUserEmailRecoveryResult"
|
|
4593
|
+
},
|
|
4594
|
+
"recoverUserResult": {
|
|
4595
|
+
"$ref": "#/definitions/v1RecoverUserResult"
|
|
4596
|
+
},
|
|
4597
|
+
"setOrganizationFeatureResult": {
|
|
4598
|
+
"$ref": "#/definitions/v1SetOrganizationFeatureResult"
|
|
4599
|
+
},
|
|
4600
|
+
"removeOrganizationFeatureResult": {
|
|
4601
|
+
"$ref": "#/definitions/v1RemoveOrganizationFeatureResult"
|
|
4602
|
+
},
|
|
4603
|
+
"exportPrivateKeyResult": {
|
|
4604
|
+
"$ref": "#/definitions/v1ExportPrivateKeyResult"
|
|
3921
4605
|
}
|
|
3922
4606
|
}
|
|
3923
4607
|
},
|
|
@@ -3968,6 +4652,55 @@
|
|
|
3968
4652
|
}
|
|
3969
4653
|
}
|
|
3970
4654
|
},
|
|
4655
|
+
"v1SetOrganizationFeatureIntent": {
|
|
4656
|
+
"type": "object",
|
|
4657
|
+
"properties": {
|
|
4658
|
+
"name": {
|
|
4659
|
+
"$ref": "#/definitions/v1FeatureName",
|
|
4660
|
+
"description": "Name of the feature to set"
|
|
4661
|
+
},
|
|
4662
|
+
"value": {
|
|
4663
|
+
"type": "string",
|
|
4664
|
+
"description": "Optional value for the feature. Will override existing values if feature is already set."
|
|
4665
|
+
}
|
|
4666
|
+
},
|
|
4667
|
+
"required": ["name", "value"]
|
|
4668
|
+
},
|
|
4669
|
+
"v1SetOrganizationFeatureRequest": {
|
|
4670
|
+
"type": "object",
|
|
4671
|
+
"properties": {
|
|
4672
|
+
"type": {
|
|
4673
|
+
"type": "string",
|
|
4674
|
+
"enum": ["ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE"]
|
|
4675
|
+
},
|
|
4676
|
+
"timestampMs": {
|
|
4677
|
+
"type": "string",
|
|
4678
|
+
"description": "Timestamp (in milliseconds) of the request, used to verify liveness of user requests."
|
|
4679
|
+
},
|
|
4680
|
+
"organizationId": {
|
|
4681
|
+
"type": "string",
|
|
4682
|
+
"description": "Unique identifier for a given Organization."
|
|
4683
|
+
},
|
|
4684
|
+
"parameters": {
|
|
4685
|
+
"$ref": "#/definitions/v1SetOrganizationFeatureIntent"
|
|
4686
|
+
}
|
|
4687
|
+
},
|
|
4688
|
+
"required": ["type", "timestampMs", "organizationId", "parameters"]
|
|
4689
|
+
},
|
|
4690
|
+
"v1SetOrganizationFeatureResult": {
|
|
4691
|
+
"type": "object",
|
|
4692
|
+
"properties": {
|
|
4693
|
+
"features": {
|
|
4694
|
+
"type": "array",
|
|
4695
|
+
"items": {
|
|
4696
|
+
"type": "object",
|
|
4697
|
+
"$ref": "#/definitions/v1Feature"
|
|
4698
|
+
},
|
|
4699
|
+
"description": "Resulting list of organization features."
|
|
4700
|
+
}
|
|
4701
|
+
},
|
|
4702
|
+
"required": ["features"]
|
|
4703
|
+
},
|
|
3971
4704
|
"v1SetPaymentMethodIntent": {
|
|
3972
4705
|
"type": "object",
|
|
3973
4706
|
"properties": {
|
|
@@ -4053,16 +4786,38 @@
|
|
|
4053
4786
|
"description": "Raw unsigned payload to be signed."
|
|
4054
4787
|
},
|
|
4055
4788
|
"encoding": {
|
|
4056
|
-
"$ref": "#/definitions/
|
|
4789
|
+
"$ref": "#/definitions/immutableactivityv1PayloadEncoding",
|
|
4057
4790
|
"description": "Encoding of the `payload` string. Turnkey uses this information to convert `payload` into bytes with the correct decoder (e.g. hex, utf8)."
|
|
4058
4791
|
},
|
|
4059
4792
|
"hashFunction": {
|
|
4060
|
-
"$ref": "#/definitions/
|
|
4793
|
+
"$ref": "#/definitions/immutableactivityv1HashFunction",
|
|
4061
4794
|
"description": "Hash function to apply to payload bytes before signing. This field must be set to HASH_FUNCTION_NOT_APPLICABLE for EdDSA/ed25519 signature requests; configurable payload hashing is not supported by RFC 8032."
|
|
4062
4795
|
}
|
|
4063
4796
|
},
|
|
4064
4797
|
"required": ["privateKeyId", "payload", "encoding", "hashFunction"]
|
|
4065
4798
|
},
|
|
4799
|
+
"v1SignRawPayloadIntentV2": {
|
|
4800
|
+
"type": "object",
|
|
4801
|
+
"properties": {
|
|
4802
|
+
"signWith": {
|
|
4803
|
+
"type": "string",
|
|
4804
|
+
"description": "The Private Key identifier or address."
|
|
4805
|
+
},
|
|
4806
|
+
"payload": {
|
|
4807
|
+
"type": "string",
|
|
4808
|
+
"description": "Raw unsigned payload to be signed."
|
|
4809
|
+
},
|
|
4810
|
+
"encoding": {
|
|
4811
|
+
"$ref": "#/definitions/immutableactivityv1PayloadEncoding",
|
|
4812
|
+
"description": "Encoding of the `payload` string. Turnkey uses this information to convert `payload` into bytes with the correct decoder (e.g. hex, utf8)."
|
|
4813
|
+
},
|
|
4814
|
+
"hashFunction": {
|
|
4815
|
+
"$ref": "#/definitions/immutableactivityv1HashFunction",
|
|
4816
|
+
"description": "Hash function to apply to payload bytes before signing. This field must be set to HASH_FUNCTION_NOT_APPLICABLE for EdDSA/ed25519 signature requests; configurable payload hashing is not supported by RFC 8032."
|
|
4817
|
+
}
|
|
4818
|
+
},
|
|
4819
|
+
"required": ["signWith", "payload", "encoding", "hashFunction"]
|
|
4820
|
+
},
|
|
4066
4821
|
"v1SignRawPayloadRequest": {
|
|
4067
4822
|
"type": "object",
|
|
4068
4823
|
"properties": {
|
|
@@ -4102,6 +4857,27 @@
|
|
|
4102
4857
|
},
|
|
4103
4858
|
"required": ["r", "s", "v"]
|
|
4104
4859
|
},
|
|
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
|
+
},
|
|
4105
4881
|
"v1SignTransactionIntent": {
|
|
4106
4882
|
"type": "object",
|
|
4107
4883
|
"properties": {
|
|
@@ -4114,11 +4890,28 @@
|
|
|
4114
4890
|
"description": "Raw unsigned transaction to be signed by a particular Private Key."
|
|
4115
4891
|
},
|
|
4116
4892
|
"type": {
|
|
4117
|
-
"$ref": "#/definitions/
|
|
4893
|
+
"$ref": "#/definitions/v1TransactionType"
|
|
4118
4894
|
}
|
|
4119
4895
|
},
|
|
4120
4896
|
"required": ["privateKeyId", "unsignedTransaction", "type"]
|
|
4121
4897
|
},
|
|
4898
|
+
"v1SignTransactionIntentV2": {
|
|
4899
|
+
"type": "object",
|
|
4900
|
+
"properties": {
|
|
4901
|
+
"signWith": {
|
|
4902
|
+
"type": "string",
|
|
4903
|
+
"description": "The Private Key identifier or address."
|
|
4904
|
+
},
|
|
4905
|
+
"unsignedTransaction": {
|
|
4906
|
+
"type": "string",
|
|
4907
|
+
"description": "Raw unsigned transaction to be signed"
|
|
4908
|
+
},
|
|
4909
|
+
"type": {
|
|
4910
|
+
"$ref": "#/definitions/v1TransactionType"
|
|
4911
|
+
}
|
|
4912
|
+
},
|
|
4913
|
+
"required": ["signWith", "unsignedTransaction", "type"]
|
|
4914
|
+
},
|
|
4122
4915
|
"v1SignTransactionRequest": {
|
|
4123
4916
|
"type": "object",
|
|
4124
4917
|
"properties": {
|
|
@@ -4149,6 +4942,27 @@
|
|
|
4149
4942
|
},
|
|
4150
4943
|
"required": ["signedTransaction"]
|
|
4151
4944
|
},
|
|
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
|
+
},
|
|
4152
4966
|
"v1SimpleClientExtensionResults": {
|
|
4153
4967
|
"type": "object",
|
|
4154
4968
|
"properties": {
|
|
@@ -4167,17 +4981,9 @@
|
|
|
4167
4981
|
"type": "string",
|
|
4168
4982
|
"enum": ["TAG_TYPE_USER", "TAG_TYPE_PRIVATE_KEY"]
|
|
4169
4983
|
},
|
|
4170
|
-
"
|
|
4171
|
-
"type": "
|
|
4172
|
-
"
|
|
4173
|
-
"seconds": {
|
|
4174
|
-
"type": "string"
|
|
4175
|
-
},
|
|
4176
|
-
"nanos": {
|
|
4177
|
-
"type": "string"
|
|
4178
|
-
}
|
|
4179
|
-
},
|
|
4180
|
-
"required": ["seconds", "nanos"]
|
|
4984
|
+
"v1TransactionType": {
|
|
4985
|
+
"type": "string",
|
|
4986
|
+
"enum": ["TRANSACTION_TYPE_ETHEREUM"]
|
|
4181
4987
|
},
|
|
4182
4988
|
"v1UpdateAllowedOriginsIntent": {
|
|
4183
4989
|
"type": "object",
|
|
@@ -4536,10 +5342,10 @@
|
|
|
4536
5342
|
"description": "A list of User Tag IDs."
|
|
4537
5343
|
},
|
|
4538
5344
|
"createdAt": {
|
|
4539
|
-
"$ref": "#/definitions/
|
|
5345
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
4540
5346
|
},
|
|
4541
5347
|
"updatedAt": {
|
|
4542
|
-
"$ref": "#/definitions/
|
|
5348
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
4543
5349
|
}
|
|
4544
5350
|
},
|
|
4545
5351
|
"required": [
|
|
@@ -4687,7 +5493,7 @@
|
|
|
4687
5493
|
"description": "Method used to produce a signature."
|
|
4688
5494
|
},
|
|
4689
5495
|
"createdAt": {
|
|
4690
|
-
"$ref": "#/definitions/
|
|
5496
|
+
"$ref": "#/definitions/externaldatav1Timestamp"
|
|
4691
5497
|
}
|
|
4692
5498
|
},
|
|
4693
5499
|
"required": [
|
|
@@ -4703,6 +5509,28 @@
|
|
|
4703
5509
|
"createdAt"
|
|
4704
5510
|
]
|
|
4705
5511
|
},
|
|
5512
|
+
"v1WalletAccountParams": {
|
|
5513
|
+
"type": "object",
|
|
5514
|
+
"properties": {
|
|
5515
|
+
"curve": {
|
|
5516
|
+
"$ref": "#/definitions/immutablecommonv1Curve",
|
|
5517
|
+
"description": "Cryptographic curve used to generate a wallet Account."
|
|
5518
|
+
},
|
|
5519
|
+
"pathFormat": {
|
|
5520
|
+
"$ref": "#/definitions/v1PathFormat",
|
|
5521
|
+
"description": "Path format used to generate a wallet Account."
|
|
5522
|
+
},
|
|
5523
|
+
"path": {
|
|
5524
|
+
"type": "string",
|
|
5525
|
+
"description": "Path used to generate a wallet Account."
|
|
5526
|
+
},
|
|
5527
|
+
"addressFormat": {
|
|
5528
|
+
"$ref": "#/definitions/immutablecommonv1AddressFormat",
|
|
5529
|
+
"description": "Address format used to generate a wallet Acccount."
|
|
5530
|
+
}
|
|
5531
|
+
},
|
|
5532
|
+
"required": ["curve", "pathFormat", "path", "addressFormat"]
|
|
5533
|
+
},
|
|
4706
5534
|
"v1WebAuthnStamp": {
|
|
4707
5535
|
"type": "object",
|
|
4708
5536
|
"properties": {
|