@turnkey/http 0.16.0 → 0.17.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.
@@ -25,7 +25,7 @@ export declare const postGetActivity: (input: TPostGetActivityInput) => Promise<
25
25
  id: string;
26
26
  organizationId: string;
27
27
  status: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
28
- type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM";
28
+ type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG";
29
29
  intent: {
30
30
  createOrganizationIntent: {
31
31
  organizationName: string;
@@ -122,7 +122,7 @@ export declare const postGetActivity: (input: TPostGetActivityInput) => Promise<
122
122
  createPrivateKeysIntent?: {
123
123
  privateKeys: {
124
124
  privateKeyName: string;
125
- curve: "CURVE_SECP256K1";
125
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
126
126
  privateKeyTags: string[];
127
127
  addressFormats: ("ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM")[];
128
128
  }[];
@@ -131,7 +131,7 @@ export declare const postGetActivity: (input: TPostGetActivityInput) => Promise<
131
131
  privateKeyId: string;
132
132
  payload: string;
133
133
  encoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8";
134
- hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256";
134
+ hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256" | "HASH_FUNCTION_NOT_APPLICABLE";
135
135
  };
136
136
  createInvitationsIntent?: {
137
137
  invitations: {
@@ -281,6 +281,18 @@ export declare const postGetActivity: (input: TPostGetActivityInput) => Promise<
281
281
  threshold: number;
282
282
  userIds: string[];
283
283
  };
284
+ updateUserTagIntent?: {
285
+ userTagId: string;
286
+ newUserTagName?: string;
287
+ addUserIds: string[];
288
+ removeUserIds: string[];
289
+ };
290
+ updatePrivateKeyTagIntent?: {
291
+ privateKeyTagId: string;
292
+ newPrivateKeyTagName?: string;
293
+ addPrivateKeyIds: string[];
294
+ removePrivateKeyIds: string[];
295
+ };
284
296
  };
285
297
  result: {
286
298
  createOrganizationResult?: {
@@ -370,6 +382,12 @@ export declare const postGetActivity: (input: TPostGetActivityInput) => Promise<
370
382
  updateRootQuorumResult?: {
371
383
  [key: string]: unknown;
372
384
  };
385
+ updateUserTagResult?: {
386
+ userTagId: string;
387
+ };
388
+ updatePrivateKeyTagResult?: {
389
+ privateKeyTagId: string;
390
+ };
373
391
  };
374
392
  votes: {
375
393
  id: string;
@@ -554,7 +572,7 @@ export declare const postGetOrganization: (input: TPostGetOrganizationInput) =>
554
572
  privateKeyId: string;
555
573
  publicKey: string;
556
574
  privateKeyName: string;
557
- curve: "CURVE_SECP256K1";
575
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
558
576
  addresses: {
559
577
  format?: "ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM";
560
578
  address?: string;
@@ -585,6 +603,9 @@ export declare const postGetOrganization: (input: TPostGetOrganizationInput) =>
585
603
  tags?: {
586
604
  tagId: string;
587
605
  tagName: string;
606
+ /**
607
+ * `POST /public/v1/query/list_activities`
608
+ */
588
609
  tagType: "TAG_TYPE_USER" | "TAG_TYPE_PRIVATE_KEY";
589
610
  createdAt: {
590
611
  seconds: string;
@@ -593,7 +614,13 @@ export declare const postGetOrganization: (input: TPostGetOrganizationInput) =>
593
614
  updatedAt: {
594
615
  seconds: string;
595
616
  nanos: string;
596
- };
617
+ }; /**
618
+ * List Activities
619
+ *
620
+ * List all Activities within an Organization
621
+ *
622
+ * `POST /public/v1/query/list_activities`
623
+ */
597
624
  }[];
598
625
  deletedUsers?: {
599
626
  userId: string;
@@ -673,7 +700,7 @@ export declare const postGetOrganization: (input: TPostGetOrganizationInput) =>
673
700
  privateKeyId: string;
674
701
  publicKey: string;
675
702
  privateKeyName: string;
676
- curve: "CURVE_SECP256K1";
703
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
677
704
  addresses: {
678
705
  format?: "ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM";
679
706
  address?: string;
@@ -742,6 +769,9 @@ export declare const postGetOrganization: (input: TPostGetOrganizationInput) =>
742
769
  deletedTags?: {
743
770
  tagId: string;
744
771
  tagName: string;
772
+ /**
773
+ * `POST /public/v1/query/list_activities`
774
+ */
745
775
  tagType: "TAG_TYPE_USER" | "TAG_TYPE_PRIVATE_KEY";
746
776
  createdAt: {
747
777
  seconds: string;
@@ -750,7 +780,13 @@ export declare const postGetOrganization: (input: TPostGetOrganizationInput) =>
750
780
  updatedAt: {
751
781
  seconds: string;
752
782
  nanos: string;
753
- };
783
+ }; /**
784
+ * List Activities
785
+ *
786
+ * List all Activities within an Organization
787
+ *
788
+ * `POST /public/v1/query/list_activities`
789
+ */
754
790
  }[];
755
791
  };
756
792
  }>;
@@ -824,7 +860,7 @@ export declare const postGetPrivateKey: (input: TPostGetPrivateKeyInput) => Prom
824
860
  privateKeyId: string;
825
861
  publicKey: string;
826
862
  privateKeyName: string;
827
- curve: "CURVE_SECP256K1";
863
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
828
864
  addresses: {
829
865
  format?: "ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM";
830
866
  address?: string;
@@ -938,7 +974,7 @@ export declare const postGetActivities: (input: TPostGetActivitiesInput) => Prom
938
974
  id: string;
939
975
  organizationId: string;
940
976
  status: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
941
- type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM";
977
+ type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG";
942
978
  intent: {
943
979
  createOrganizationIntent: {
944
980
  organizationName: string;
@@ -1035,7 +1071,7 @@ export declare const postGetActivities: (input: TPostGetActivitiesInput) => Prom
1035
1071
  createPrivateKeysIntent?: {
1036
1072
  privateKeys: {
1037
1073
  privateKeyName: string;
1038
- curve: "CURVE_SECP256K1";
1074
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
1039
1075
  privateKeyTags: string[];
1040
1076
  addressFormats: ("ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM")[];
1041
1077
  }[];
@@ -1044,7 +1080,7 @@ export declare const postGetActivities: (input: TPostGetActivitiesInput) => Prom
1044
1080
  privateKeyId: string;
1045
1081
  payload: string;
1046
1082
  encoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8";
1047
- hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256";
1083
+ hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256" | "HASH_FUNCTION_NOT_APPLICABLE";
1048
1084
  };
1049
1085
  createInvitationsIntent?: {
1050
1086
  invitations: {
@@ -1194,6 +1230,18 @@ export declare const postGetActivities: (input: TPostGetActivitiesInput) => Prom
1194
1230
  threshold: number;
1195
1231
  userIds: string[];
1196
1232
  };
1233
+ updateUserTagIntent?: {
1234
+ userTagId: string;
1235
+ newUserTagName?: string;
1236
+ addUserIds: string[];
1237
+ removeUserIds: string[];
1238
+ };
1239
+ updatePrivateKeyTagIntent?: {
1240
+ privateKeyTagId: string;
1241
+ newPrivateKeyTagName?: string;
1242
+ addPrivateKeyIds: string[];
1243
+ removePrivateKeyIds: string[];
1244
+ };
1197
1245
  };
1198
1246
  result: {
1199
1247
  createOrganizationResult?: {
@@ -1283,6 +1331,12 @@ export declare const postGetActivities: (input: TPostGetActivitiesInput) => Prom
1283
1331
  updateRootQuorumResult?: {
1284
1332
  [key: string]: unknown;
1285
1333
  };
1334
+ updateUserTagResult?: {
1335
+ userTagId: string;
1336
+ };
1337
+ updatePrivateKeyTagResult?: {
1338
+ privateKeyTagId: string;
1339
+ };
1286
1340
  };
1287
1341
  votes: {
1288
1342
  id: string;
@@ -1434,7 +1488,7 @@ export declare const postGetPrivateKeys: (input: TPostGetPrivateKeysInput) => Pr
1434
1488
  privateKeyId: string;
1435
1489
  publicKey: string;
1436
1490
  privateKeyName: string;
1437
- curve: "CURVE_SECP256K1";
1491
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
1438
1492
  addresses: {
1439
1493
  format?: "ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM";
1440
1494
  address?: string;
@@ -1550,32 +1604,32 @@ export declare const postGetWhoami: (input: TPostGetWhoamiInput) => Promise<{
1550
1604
  username: string;
1551
1605
  }>;
1552
1606
  /**
1553
- * `POST /public/v1/submit/create_api_keys`
1607
+ * `POST /public/v1/submit/approve_activity`
1554
1608
  */
1555
- type TPostCreateApiKeysBody = operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"];
1609
+ type TPostApproveActivityBody = operations["PublicApiService_ApproveActivity"]["parameters"]["body"]["body"];
1556
1610
  /**
1557
- * `POST /public/v1/submit/create_api_keys`
1611
+ * `POST /public/v1/submit/approve_activity`
1558
1612
  */
1559
- export type TPostCreateApiKeysResponse = operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"];
1613
+ export type TPostApproveActivityResponse = operations["PublicApiService_ApproveActivity"]["responses"]["200"]["schema"];
1560
1614
  /**
1561
- * `POST /public/v1/submit/create_api_keys`
1615
+ * `POST /public/v1/submit/approve_activity`
1562
1616
  */
1563
- export type TPostCreateApiKeysInput = {
1564
- body: TPostCreateApiKeysBody;
1617
+ export type TPostApproveActivityInput = {
1618
+ body: TPostApproveActivityBody;
1565
1619
  };
1566
1620
  /**
1567
- * Create API Keys
1621
+ * Approve Activity
1568
1622
  *
1569
- * Add api keys to an existing User
1623
+ * Approve an Activity
1570
1624
  *
1571
- * `POST /public/v1/submit/create_api_keys`
1625
+ * `POST /public/v1/submit/approve_activity`
1572
1626
  */
1573
- export declare const postCreateApiKeys: (input: TPostCreateApiKeysInput) => Promise<{
1627
+ export declare const postApproveActivity: (input: TPostApproveActivityInput) => Promise<{
1574
1628
  activity: {
1575
1629
  id: string;
1576
1630
  organizationId: string;
1577
1631
  status: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
1578
- type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM";
1632
+ type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG";
1579
1633
  intent: {
1580
1634
  createOrganizationIntent: {
1581
1635
  organizationName: string;
@@ -1672,7 +1726,7 @@ export declare const postCreateApiKeys: (input: TPostCreateApiKeysInput) => Prom
1672
1726
  createPrivateKeysIntent?: {
1673
1727
  privateKeys: {
1674
1728
  privateKeyName: string;
1675
- curve: "CURVE_SECP256K1";
1729
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
1676
1730
  privateKeyTags: string[];
1677
1731
  addressFormats: ("ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM")[];
1678
1732
  }[];
@@ -1681,7 +1735,7 @@ export declare const postCreateApiKeys: (input: TPostCreateApiKeysInput) => Prom
1681
1735
  privateKeyId: string;
1682
1736
  payload: string;
1683
1737
  encoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8";
1684
- hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256";
1738
+ hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256" | "HASH_FUNCTION_NOT_APPLICABLE";
1685
1739
  };
1686
1740
  createInvitationsIntent?: {
1687
1741
  invitations: {
@@ -1831,6 +1885,18 @@ export declare const postCreateApiKeys: (input: TPostCreateApiKeysInput) => Prom
1831
1885
  threshold: number;
1832
1886
  userIds: string[];
1833
1887
  };
1888
+ updateUserTagIntent?: {
1889
+ userTagId: string;
1890
+ newUserTagName?: string;
1891
+ addUserIds: string[];
1892
+ removeUserIds: string[];
1893
+ };
1894
+ updatePrivateKeyTagIntent?: {
1895
+ privateKeyTagId: string;
1896
+ newPrivateKeyTagName?: string;
1897
+ addPrivateKeyIds: string[];
1898
+ removePrivateKeyIds: string[];
1899
+ };
1834
1900
  };
1835
1901
  result: {
1836
1902
  createOrganizationResult?: {
@@ -1920,6 +1986,12 @@ export declare const postCreateApiKeys: (input: TPostCreateApiKeysInput) => Prom
1920
1986
  updateRootQuorumResult?: {
1921
1987
  [key: string]: unknown;
1922
1988
  };
1989
+ updateUserTagResult?: {
1990
+ userTagId: string;
1991
+ };
1992
+ updatePrivateKeyTagResult?: {
1993
+ privateKeyTagId: string;
1994
+ };
1923
1995
  };
1924
1996
  votes: {
1925
1997
  id: string;
@@ -2002,32 +2074,32 @@ export declare const postCreateApiKeys: (input: TPostCreateApiKeysInput) => Prom
2002
2074
  };
2003
2075
  }>;
2004
2076
  /**
2005
- * `POST /public/v1/submit/create_api_only_users`
2077
+ * `POST /public/v1/submit/create_api_keys`
2006
2078
  */
2007
- type TPostCreateApiOnlyUsersBody = operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"];
2079
+ type TPostCreateApiKeysBody = operations["PublicApiService_CreateApiKeys"]["parameters"]["body"]["body"];
2008
2080
  /**
2009
- * `POST /public/v1/submit/create_api_only_users`
2081
+ * `POST /public/v1/submit/create_api_keys`
2010
2082
  */
2011
- export type TPostCreateApiOnlyUsersResponse = operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"];
2083
+ export type TPostCreateApiKeysResponse = operations["PublicApiService_CreateApiKeys"]["responses"]["200"]["schema"];
2012
2084
  /**
2013
- * `POST /public/v1/submit/create_api_only_users`
2085
+ * `POST /public/v1/submit/create_api_keys`
2014
2086
  */
2015
- export type TPostCreateApiOnlyUsersInput = {
2016
- body: TPostCreateApiOnlyUsersBody;
2087
+ export type TPostCreateApiKeysInput = {
2088
+ body: TPostCreateApiKeysBody;
2017
2089
  };
2018
2090
  /**
2019
- * Create API-only Users
2091
+ * Create API Keys
2020
2092
  *
2021
- * Create API-only Users in an existing Organization
2093
+ * Add api keys to an existing User
2022
2094
  *
2023
- * `POST /public/v1/submit/create_api_only_users`
2095
+ * `POST /public/v1/submit/create_api_keys`
2024
2096
  */
2025
- export declare const postCreateApiOnlyUsers: (input: TPostCreateApiOnlyUsersInput) => Promise<{
2097
+ export declare const postCreateApiKeys: (input: TPostCreateApiKeysInput) => Promise<{
2026
2098
  activity: {
2027
2099
  id: string;
2028
2100
  organizationId: string;
2029
2101
  status: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
2030
- type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM";
2102
+ type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG";
2031
2103
  intent: {
2032
2104
  createOrganizationIntent: {
2033
2105
  organizationName: string;
@@ -2124,7 +2196,7 @@ export declare const postCreateApiOnlyUsers: (input: TPostCreateApiOnlyUsersInpu
2124
2196
  createPrivateKeysIntent?: {
2125
2197
  privateKeys: {
2126
2198
  privateKeyName: string;
2127
- curve: "CURVE_SECP256K1";
2199
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
2128
2200
  privateKeyTags: string[];
2129
2201
  addressFormats: ("ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM")[];
2130
2202
  }[];
@@ -2133,7 +2205,7 @@ export declare const postCreateApiOnlyUsers: (input: TPostCreateApiOnlyUsersInpu
2133
2205
  privateKeyId: string;
2134
2206
  payload: string;
2135
2207
  encoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8";
2136
- hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256";
2208
+ hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256" | "HASH_FUNCTION_NOT_APPLICABLE";
2137
2209
  };
2138
2210
  createInvitationsIntent?: {
2139
2211
  invitations: {
@@ -2283,6 +2355,18 @@ export declare const postCreateApiOnlyUsers: (input: TPostCreateApiOnlyUsersInpu
2283
2355
  threshold: number;
2284
2356
  userIds: string[];
2285
2357
  };
2358
+ updateUserTagIntent?: {
2359
+ userTagId: string;
2360
+ newUserTagName?: string;
2361
+ addUserIds: string[];
2362
+ removeUserIds: string[];
2363
+ };
2364
+ updatePrivateKeyTagIntent?: {
2365
+ privateKeyTagId: string;
2366
+ newPrivateKeyTagName?: string;
2367
+ addPrivateKeyIds: string[];
2368
+ removePrivateKeyIds: string[];
2369
+ };
2286
2370
  };
2287
2371
  result: {
2288
2372
  createOrganizationResult?: {
@@ -2372,6 +2456,12 @@ export declare const postCreateApiOnlyUsers: (input: TPostCreateApiOnlyUsersInpu
2372
2456
  updateRootQuorumResult?: {
2373
2457
  [key: string]: unknown;
2374
2458
  };
2459
+ updateUserTagResult?: {
2460
+ userTagId: string;
2461
+ };
2462
+ updatePrivateKeyTagResult?: {
2463
+ privateKeyTagId: string;
2464
+ };
2375
2465
  };
2376
2466
  votes: {
2377
2467
  id: string;
@@ -2454,32 +2544,32 @@ export declare const postCreateApiOnlyUsers: (input: TPostCreateApiOnlyUsersInpu
2454
2544
  };
2455
2545
  }>;
2456
2546
  /**
2457
- * `POST /public/v1/submit/create_invitations`
2547
+ * `POST /public/v1/submit/create_api_only_users`
2458
2548
  */
2459
- type TPostCreateInvitationsBody = operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"];
2549
+ type TPostCreateApiOnlyUsersBody = operations["PublicApiService_CreateApiOnlyUsers"]["parameters"]["body"]["body"];
2460
2550
  /**
2461
- * `POST /public/v1/submit/create_invitations`
2551
+ * `POST /public/v1/submit/create_api_only_users`
2462
2552
  */
2463
- export type TPostCreateInvitationsResponse = operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"];
2553
+ export type TPostCreateApiOnlyUsersResponse = operations["PublicApiService_CreateApiOnlyUsers"]["responses"]["200"]["schema"];
2464
2554
  /**
2465
- * `POST /public/v1/submit/create_invitations`
2555
+ * `POST /public/v1/submit/create_api_only_users`
2466
2556
  */
2467
- export type TPostCreateInvitationsInput = {
2468
- body: TPostCreateInvitationsBody;
2557
+ export type TPostCreateApiOnlyUsersInput = {
2558
+ body: TPostCreateApiOnlyUsersBody;
2469
2559
  };
2470
2560
  /**
2471
- * Create Invitations
2561
+ * Create API-only Users
2472
2562
  *
2473
- * Create Invitations to join an existing Organization
2563
+ * Create API-only Users in an existing Organization
2474
2564
  *
2475
- * `POST /public/v1/submit/create_invitations`
2565
+ * `POST /public/v1/submit/create_api_only_users`
2476
2566
  */
2477
- export declare const postCreateInvitations: (input: TPostCreateInvitationsInput) => Promise<{
2567
+ export declare const postCreateApiOnlyUsers: (input: TPostCreateApiOnlyUsersInput) => Promise<{
2478
2568
  activity: {
2479
2569
  id: string;
2480
2570
  organizationId: string;
2481
2571
  status: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
2482
- type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM";
2572
+ type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG";
2483
2573
  intent: {
2484
2574
  createOrganizationIntent: {
2485
2575
  organizationName: string;
@@ -2576,7 +2666,7 @@ export declare const postCreateInvitations: (input: TPostCreateInvitationsInput)
2576
2666
  createPrivateKeysIntent?: {
2577
2667
  privateKeys: {
2578
2668
  privateKeyName: string;
2579
- curve: "CURVE_SECP256K1";
2669
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
2580
2670
  privateKeyTags: string[];
2581
2671
  addressFormats: ("ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM")[];
2582
2672
  }[];
@@ -2585,7 +2675,7 @@ export declare const postCreateInvitations: (input: TPostCreateInvitationsInput)
2585
2675
  privateKeyId: string;
2586
2676
  payload: string;
2587
2677
  encoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8";
2588
- hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256";
2678
+ hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256" | "HASH_FUNCTION_NOT_APPLICABLE";
2589
2679
  };
2590
2680
  createInvitationsIntent?: {
2591
2681
  invitations: {
@@ -2735,6 +2825,18 @@ export declare const postCreateInvitations: (input: TPostCreateInvitationsInput)
2735
2825
  threshold: number;
2736
2826
  userIds: string[];
2737
2827
  };
2828
+ updateUserTagIntent?: {
2829
+ userTagId: string;
2830
+ newUserTagName?: string;
2831
+ addUserIds: string[];
2832
+ removeUserIds: string[];
2833
+ };
2834
+ updatePrivateKeyTagIntent?: {
2835
+ privateKeyTagId: string;
2836
+ newPrivateKeyTagName?: string;
2837
+ addPrivateKeyIds: string[];
2838
+ removePrivateKeyIds: string[];
2839
+ };
2738
2840
  };
2739
2841
  result: {
2740
2842
  createOrganizationResult?: {
@@ -2824,6 +2926,12 @@ export declare const postCreateInvitations: (input: TPostCreateInvitationsInput)
2824
2926
  updateRootQuorumResult?: {
2825
2927
  [key: string]: unknown;
2826
2928
  };
2929
+ updateUserTagResult?: {
2930
+ userTagId: string;
2931
+ };
2932
+ updatePrivateKeyTagResult?: {
2933
+ privateKeyTagId: string;
2934
+ };
2827
2935
  };
2828
2936
  votes: {
2829
2937
  id: string;
@@ -2906,32 +3014,32 @@ export declare const postCreateInvitations: (input: TPostCreateInvitationsInput)
2906
3014
  };
2907
3015
  }>;
2908
3016
  /**
2909
- * `POST /public/v1/submit/create_policy`
3017
+ * `POST /public/v1/submit/create_invitations`
2910
3018
  */
2911
- type TPostCreatePolicyBody = operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"];
3019
+ type TPostCreateInvitationsBody = operations["PublicApiService_CreateInvitations"]["parameters"]["body"]["body"];
2912
3020
  /**
2913
- * `POST /public/v1/submit/create_policy`
3021
+ * `POST /public/v1/submit/create_invitations`
2914
3022
  */
2915
- export type TPostCreatePolicyResponse = operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"];
3023
+ export type TPostCreateInvitationsResponse = operations["PublicApiService_CreateInvitations"]["responses"]["200"]["schema"];
2916
3024
  /**
2917
- * `POST /public/v1/submit/create_policy`
3025
+ * `POST /public/v1/submit/create_invitations`
2918
3026
  */
2919
- export type TPostCreatePolicyInput = {
2920
- body: TPostCreatePolicyBody;
3027
+ export type TPostCreateInvitationsInput = {
3028
+ body: TPostCreateInvitationsBody;
2921
3029
  };
2922
3030
  /**
2923
- * Create Policy
3031
+ * Create Invitations
2924
3032
  *
2925
- * Create a new Policy
3033
+ * Create Invitations to join an existing Organization
2926
3034
  *
2927
- * `POST /public/v1/submit/create_policy`
3035
+ * `POST /public/v1/submit/create_invitations`
2928
3036
  */
2929
- export declare const postCreatePolicy: (input: TPostCreatePolicyInput) => Promise<{
3037
+ export declare const postCreateInvitations: (input: TPostCreateInvitationsInput) => Promise<{
2930
3038
  activity: {
2931
3039
  id: string;
2932
3040
  organizationId: string;
2933
3041
  status: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
2934
- type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM";
3042
+ type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG";
2935
3043
  intent: {
2936
3044
  createOrganizationIntent: {
2937
3045
  organizationName: string;
@@ -3028,7 +3136,7 @@ export declare const postCreatePolicy: (input: TPostCreatePolicyInput) => Promis
3028
3136
  createPrivateKeysIntent?: {
3029
3137
  privateKeys: {
3030
3138
  privateKeyName: string;
3031
- curve: "CURVE_SECP256K1";
3139
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
3032
3140
  privateKeyTags: string[];
3033
3141
  addressFormats: ("ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM")[];
3034
3142
  }[];
@@ -3037,7 +3145,7 @@ export declare const postCreatePolicy: (input: TPostCreatePolicyInput) => Promis
3037
3145
  privateKeyId: string;
3038
3146
  payload: string;
3039
3147
  encoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8";
3040
- hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256";
3148
+ hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256" | "HASH_FUNCTION_NOT_APPLICABLE";
3041
3149
  };
3042
3150
  createInvitationsIntent?: {
3043
3151
  invitations: {
@@ -3187,6 +3295,18 @@ export declare const postCreatePolicy: (input: TPostCreatePolicyInput) => Promis
3187
3295
  threshold: number;
3188
3296
  userIds: string[];
3189
3297
  };
3298
+ updateUserTagIntent?: {
3299
+ userTagId: string;
3300
+ newUserTagName?: string;
3301
+ addUserIds: string[];
3302
+ removeUserIds: string[];
3303
+ };
3304
+ updatePrivateKeyTagIntent?: {
3305
+ privateKeyTagId: string;
3306
+ newPrivateKeyTagName?: string;
3307
+ addPrivateKeyIds: string[];
3308
+ removePrivateKeyIds: string[];
3309
+ };
3190
3310
  };
3191
3311
  result: {
3192
3312
  createOrganizationResult?: {
@@ -3276,6 +3396,12 @@ export declare const postCreatePolicy: (input: TPostCreatePolicyInput) => Promis
3276
3396
  updateRootQuorumResult?: {
3277
3397
  [key: string]: unknown;
3278
3398
  };
3399
+ updateUserTagResult?: {
3400
+ userTagId: string;
3401
+ };
3402
+ updatePrivateKeyTagResult?: {
3403
+ privateKeyTagId: string;
3404
+ };
3279
3405
  };
3280
3406
  votes: {
3281
3407
  id: string;
@@ -3358,32 +3484,32 @@ export declare const postCreatePolicy: (input: TPostCreatePolicyInput) => Promis
3358
3484
  };
3359
3485
  }>;
3360
3486
  /**
3361
- * `POST /public/v1/submit/create_private_keys`
3487
+ * `POST /public/v1/submit/create_policy`
3362
3488
  */
3363
- type TPostCreatePrivateKeysBody = operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"];
3489
+ type TPostCreatePolicyBody = operations["PublicApiService_CreatePolicy"]["parameters"]["body"]["body"];
3364
3490
  /**
3365
- * `POST /public/v1/submit/create_private_keys`
3491
+ * `POST /public/v1/submit/create_policy`
3366
3492
  */
3367
- export type TPostCreatePrivateKeysResponse = operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"];
3493
+ export type TPostCreatePolicyResponse = operations["PublicApiService_CreatePolicy"]["responses"]["200"]["schema"];
3368
3494
  /**
3369
- * `POST /public/v1/submit/create_private_keys`
3495
+ * `POST /public/v1/submit/create_policy`
3370
3496
  */
3371
- export type TPostCreatePrivateKeysInput = {
3372
- body: TPostCreatePrivateKeysBody;
3497
+ export type TPostCreatePolicyInput = {
3498
+ body: TPostCreatePolicyBody;
3373
3499
  };
3374
3500
  /**
3375
- * Create Private Keys
3501
+ * Create Policy
3376
3502
  *
3377
- * Create new Private Keys
3503
+ * Create a new Policy
3378
3504
  *
3379
- * `POST /public/v1/submit/create_private_keys`
3505
+ * `POST /public/v1/submit/create_policy`
3380
3506
  */
3381
- export declare const postCreatePrivateKeys: (input: TPostCreatePrivateKeysInput) => Promise<{
3507
+ export declare const postCreatePolicy: (input: TPostCreatePolicyInput) => Promise<{
3382
3508
  activity: {
3383
3509
  id: string;
3384
3510
  organizationId: string;
3385
3511
  status: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
3386
- type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM";
3512
+ type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG";
3387
3513
  intent: {
3388
3514
  createOrganizationIntent: {
3389
3515
  organizationName: string;
@@ -3480,7 +3606,7 @@ export declare const postCreatePrivateKeys: (input: TPostCreatePrivateKeysInput)
3480
3606
  createPrivateKeysIntent?: {
3481
3607
  privateKeys: {
3482
3608
  privateKeyName: string;
3483
- curve: "CURVE_SECP256K1";
3609
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
3484
3610
  privateKeyTags: string[];
3485
3611
  addressFormats: ("ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM")[];
3486
3612
  }[];
@@ -3489,7 +3615,7 @@ export declare const postCreatePrivateKeys: (input: TPostCreatePrivateKeysInput)
3489
3615
  privateKeyId: string;
3490
3616
  payload: string;
3491
3617
  encoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8";
3492
- hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256";
3618
+ hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256" | "HASH_FUNCTION_NOT_APPLICABLE";
3493
3619
  };
3494
3620
  createInvitationsIntent?: {
3495
3621
  invitations: {
@@ -3639,6 +3765,18 @@ export declare const postCreatePrivateKeys: (input: TPostCreatePrivateKeysInput)
3639
3765
  threshold: number;
3640
3766
  userIds: string[];
3641
3767
  };
3768
+ updateUserTagIntent?: {
3769
+ userTagId: string;
3770
+ newUserTagName?: string;
3771
+ addUserIds: string[];
3772
+ removeUserIds: string[];
3773
+ };
3774
+ updatePrivateKeyTagIntent?: {
3775
+ privateKeyTagId: string;
3776
+ newPrivateKeyTagName?: string;
3777
+ addPrivateKeyIds: string[];
3778
+ removePrivateKeyIds: string[];
3779
+ };
3642
3780
  };
3643
3781
  result: {
3644
3782
  createOrganizationResult?: {
@@ -3728,6 +3866,12 @@ export declare const postCreatePrivateKeys: (input: TPostCreatePrivateKeysInput)
3728
3866
  updateRootQuorumResult?: {
3729
3867
  [key: string]: unknown;
3730
3868
  };
3869
+ updateUserTagResult?: {
3870
+ userTagId: string;
3871
+ };
3872
+ updatePrivateKeyTagResult?: {
3873
+ privateKeyTagId: string;
3874
+ };
3731
3875
  };
3732
3876
  votes: {
3733
3877
  id: string;
@@ -3810,40 +3954,32 @@ export declare const postCreatePrivateKeys: (input: TPostCreatePrivateKeysInput)
3810
3954
  };
3811
3955
  }>;
3812
3956
  /**
3813
- * `POST /public/v1/submit/create_users`
3814
- *
3815
- * @deprecated
3957
+ * `POST /public/v1/submit/create_private_keys`
3816
3958
  */
3817
- type TPostCreateUsersBody = operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"];
3959
+ type TPostCreatePrivateKeysBody = operations["PublicApiService_CreatePrivateKeys"]["parameters"]["body"]["body"];
3818
3960
  /**
3819
- * `POST /public/v1/submit/create_users`
3820
- *
3821
- * @deprecated
3961
+ * `POST /public/v1/submit/create_private_keys`
3822
3962
  */
3823
- export type TPostCreateUsersResponse = operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"];
3963
+ export type TPostCreatePrivateKeysResponse = operations["PublicApiService_CreatePrivateKeys"]["responses"]["200"]["schema"];
3824
3964
  /**
3825
- * `POST /public/v1/submit/create_users`
3826
- *
3827
- * @deprecated
3965
+ * `POST /public/v1/submit/create_private_keys`
3828
3966
  */
3829
- export type TPostCreateUsersInput = {
3830
- body: TPostCreateUsersBody;
3967
+ export type TPostCreatePrivateKeysInput = {
3968
+ body: TPostCreatePrivateKeysBody;
3831
3969
  };
3832
3970
  /**
3833
- * Create Users
3834
- *
3835
- * Create Users in an existing Organization
3971
+ * Create Private Keys
3836
3972
  *
3837
- * `POST /public/v1/submit/create_users`
3973
+ * Create new Private Keys
3838
3974
  *
3839
- * @deprecated
3975
+ * `POST /public/v1/submit/create_private_keys`
3840
3976
  */
3841
- export declare const postCreateUsers: (input: TPostCreateUsersInput) => Promise<{
3977
+ export declare const postCreatePrivateKeys: (input: TPostCreatePrivateKeysInput) => Promise<{
3842
3978
  activity: {
3843
3979
  id: string;
3844
3980
  organizationId: string;
3845
3981
  status: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
3846
- type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM";
3982
+ type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG";
3847
3983
  intent: {
3848
3984
  createOrganizationIntent: {
3849
3985
  organizationName: string;
@@ -3940,7 +4076,7 @@ export declare const postCreateUsers: (input: TPostCreateUsersInput) => Promise<
3940
4076
  createPrivateKeysIntent?: {
3941
4077
  privateKeys: {
3942
4078
  privateKeyName: string;
3943
- curve: "CURVE_SECP256K1";
4079
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
3944
4080
  privateKeyTags: string[];
3945
4081
  addressFormats: ("ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM")[];
3946
4082
  }[];
@@ -3949,7 +4085,7 @@ export declare const postCreateUsers: (input: TPostCreateUsersInput) => Promise<
3949
4085
  privateKeyId: string;
3950
4086
  payload: string;
3951
4087
  encoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8";
3952
- hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256";
4088
+ hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256" | "HASH_FUNCTION_NOT_APPLICABLE";
3953
4089
  };
3954
4090
  createInvitationsIntent?: {
3955
4091
  invitations: {
@@ -4099,6 +4235,18 @@ export declare const postCreateUsers: (input: TPostCreateUsersInput) => Promise<
4099
4235
  threshold: number;
4100
4236
  userIds: string[];
4101
4237
  };
4238
+ updateUserTagIntent?: {
4239
+ userTagId: string;
4240
+ newUserTagName?: string;
4241
+ addUserIds: string[];
4242
+ removeUserIds: string[];
4243
+ };
4244
+ updatePrivateKeyTagIntent?: {
4245
+ privateKeyTagId: string;
4246
+ newPrivateKeyTagName?: string;
4247
+ addPrivateKeyIds: string[];
4248
+ removePrivateKeyIds: string[];
4249
+ };
4102
4250
  };
4103
4251
  result: {
4104
4252
  createOrganizationResult?: {
@@ -4188,6 +4336,12 @@ export declare const postCreateUsers: (input: TPostCreateUsersInput) => Promise<
4188
4336
  updateRootQuorumResult?: {
4189
4337
  [key: string]: unknown;
4190
4338
  };
4339
+ updateUserTagResult?: {
4340
+ userTagId: string;
4341
+ };
4342
+ updatePrivateKeyTagResult?: {
4343
+ privateKeyTagId: string;
4344
+ };
4191
4345
  };
4192
4346
  votes: {
4193
4347
  id: string;
@@ -4270,32 +4424,40 @@ export declare const postCreateUsers: (input: TPostCreateUsersInput) => Promise<
4270
4424
  };
4271
4425
  }>;
4272
4426
  /**
4273
- * `POST /public/v1/submit/delete_api_keys`
4427
+ * `POST /public/v1/submit/create_users`
4428
+ *
4429
+ * @deprecated
4274
4430
  */
4275
- type TPostDeleteApiKeysBody = operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"];
4431
+ type TPostCreateUsersBody = operations["PublicApiService_CreateUsers"]["parameters"]["body"]["body"];
4276
4432
  /**
4277
- * `POST /public/v1/submit/delete_api_keys`
4433
+ * `POST /public/v1/submit/create_users`
4434
+ *
4435
+ * @deprecated
4278
4436
  */
4279
- export type TPostDeleteApiKeysResponse = operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"];
4437
+ export type TPostCreateUsersResponse = operations["PublicApiService_CreateUsers"]["responses"]["200"]["schema"];
4280
4438
  /**
4281
- * `POST /public/v1/submit/delete_api_keys`
4439
+ * `POST /public/v1/submit/create_users`
4440
+ *
4441
+ * @deprecated
4282
4442
  */
4283
- export type TPostDeleteApiKeysInput = {
4284
- body: TPostDeleteApiKeysBody;
4443
+ export type TPostCreateUsersInput = {
4444
+ body: TPostCreateUsersBody;
4285
4445
  };
4286
4446
  /**
4287
- * Delete API Keys
4447
+ * Create Users
4288
4448
  *
4289
- * Remove api keys from a User
4449
+ * Create Users in an existing Organization
4290
4450
  *
4291
- * `POST /public/v1/submit/delete_api_keys`
4451
+ * `POST /public/v1/submit/create_users`
4452
+ *
4453
+ * @deprecated
4292
4454
  */
4293
- export declare const postDeleteApiKeys: (input: TPostDeleteApiKeysInput) => Promise<{
4455
+ export declare const postCreateUsers: (input: TPostCreateUsersInput) => Promise<{
4294
4456
  activity: {
4295
4457
  id: string;
4296
4458
  organizationId: string;
4297
4459
  status: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
4298
- type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM";
4460
+ type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG";
4299
4461
  intent: {
4300
4462
  createOrganizationIntent: {
4301
4463
  organizationName: string;
@@ -4392,7 +4554,7 @@ export declare const postDeleteApiKeys: (input: TPostDeleteApiKeysInput) => Prom
4392
4554
  createPrivateKeysIntent?: {
4393
4555
  privateKeys: {
4394
4556
  privateKeyName: string;
4395
- curve: "CURVE_SECP256K1";
4557
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
4396
4558
  privateKeyTags: string[];
4397
4559
  addressFormats: ("ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM")[];
4398
4560
  }[];
@@ -4401,7 +4563,7 @@ export declare const postDeleteApiKeys: (input: TPostDeleteApiKeysInput) => Prom
4401
4563
  privateKeyId: string;
4402
4564
  payload: string;
4403
4565
  encoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8";
4404
- hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256";
4566
+ hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256" | "HASH_FUNCTION_NOT_APPLICABLE";
4405
4567
  };
4406
4568
  createInvitationsIntent?: {
4407
4569
  invitations: {
@@ -4551,6 +4713,18 @@ export declare const postDeleteApiKeys: (input: TPostDeleteApiKeysInput) => Prom
4551
4713
  threshold: number;
4552
4714
  userIds: string[];
4553
4715
  };
4716
+ updateUserTagIntent?: {
4717
+ userTagId: string;
4718
+ newUserTagName?: string;
4719
+ addUserIds: string[];
4720
+ removeUserIds: string[];
4721
+ };
4722
+ updatePrivateKeyTagIntent?: {
4723
+ privateKeyTagId: string;
4724
+ newPrivateKeyTagName?: string;
4725
+ addPrivateKeyIds: string[];
4726
+ removePrivateKeyIds: string[];
4727
+ };
4554
4728
  };
4555
4729
  result: {
4556
4730
  createOrganizationResult?: {
@@ -4640,6 +4814,12 @@ export declare const postDeleteApiKeys: (input: TPostDeleteApiKeysInput) => Prom
4640
4814
  updateRootQuorumResult?: {
4641
4815
  [key: string]: unknown;
4642
4816
  };
4817
+ updateUserTagResult?: {
4818
+ userTagId: string;
4819
+ };
4820
+ updatePrivateKeyTagResult?: {
4821
+ privateKeyTagId: string;
4822
+ };
4643
4823
  };
4644
4824
  votes: {
4645
4825
  id: string;
@@ -4722,32 +4902,32 @@ export declare const postDeleteApiKeys: (input: TPostDeleteApiKeysInput) => Prom
4722
4902
  };
4723
4903
  }>;
4724
4904
  /**
4725
- * `POST /public/v1/submit/delete_invitations`
4905
+ * `POST /public/v1/submit/delete_api_keys`
4726
4906
  */
4727
- type TPostDeleteInvitationBody = operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"];
4907
+ type TPostDeleteApiKeysBody = operations["PublicApiService_DeleteApiKeys"]["parameters"]["body"]["body"];
4728
4908
  /**
4729
- * `POST /public/v1/submit/delete_invitations`
4909
+ * `POST /public/v1/submit/delete_api_keys`
4730
4910
  */
4731
- export type TPostDeleteInvitationResponse = operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"];
4911
+ export type TPostDeleteApiKeysResponse = operations["PublicApiService_DeleteApiKeys"]["responses"]["200"]["schema"];
4732
4912
  /**
4733
- * `POST /public/v1/submit/delete_invitations`
4913
+ * `POST /public/v1/submit/delete_api_keys`
4734
4914
  */
4735
- export type TPostDeleteInvitationInput = {
4736
- body: TPostDeleteInvitationBody;
4915
+ export type TPostDeleteApiKeysInput = {
4916
+ body: TPostDeleteApiKeysBody;
4737
4917
  };
4738
4918
  /**
4739
- * Delete Invitation
4919
+ * Delete API Keys
4740
4920
  *
4741
- * Delete an existing Invitation
4921
+ * Remove api keys from a User
4742
4922
  *
4743
- * `POST /public/v1/submit/delete_invitations`
4923
+ * `POST /public/v1/submit/delete_api_keys`
4744
4924
  */
4745
- export declare const postDeleteInvitation: (input: TPostDeleteInvitationInput) => Promise<{
4925
+ export declare const postDeleteApiKeys: (input: TPostDeleteApiKeysInput) => Promise<{
4746
4926
  activity: {
4747
4927
  id: string;
4748
4928
  organizationId: string;
4749
4929
  status: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
4750
- type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM";
4930
+ type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG";
4751
4931
  intent: {
4752
4932
  createOrganizationIntent: {
4753
4933
  organizationName: string;
@@ -4844,7 +5024,7 @@ export declare const postDeleteInvitation: (input: TPostDeleteInvitationInput) =
4844
5024
  createPrivateKeysIntent?: {
4845
5025
  privateKeys: {
4846
5026
  privateKeyName: string;
4847
- curve: "CURVE_SECP256K1";
5027
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
4848
5028
  privateKeyTags: string[];
4849
5029
  addressFormats: ("ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM")[];
4850
5030
  }[];
@@ -4853,7 +5033,7 @@ export declare const postDeleteInvitation: (input: TPostDeleteInvitationInput) =
4853
5033
  privateKeyId: string;
4854
5034
  payload: string;
4855
5035
  encoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8";
4856
- hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256";
5036
+ hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256" | "HASH_FUNCTION_NOT_APPLICABLE";
4857
5037
  };
4858
5038
  createInvitationsIntent?: {
4859
5039
  invitations: {
@@ -5003,7 +5183,1899 @@ export declare const postDeleteInvitation: (input: TPostDeleteInvitationInput) =
5003
5183
  threshold: number;
5004
5184
  userIds: string[];
5005
5185
  };
5006
- };
5186
+ updateUserTagIntent?: {
5187
+ userTagId: string;
5188
+ newUserTagName?: string;
5189
+ addUserIds: string[];
5190
+ removeUserIds: string[];
5191
+ };
5192
+ updatePrivateKeyTagIntent?: {
5193
+ privateKeyTagId: string;
5194
+ newPrivateKeyTagName?: string;
5195
+ addPrivateKeyIds: string[];
5196
+ removePrivateKeyIds: string[];
5197
+ };
5198
+ };
5199
+ result: {
5200
+ createOrganizationResult?: {
5201
+ organizationId: string;
5202
+ };
5203
+ createAuthenticatorsResult?: {
5204
+ authenticatorIds: string[];
5205
+ };
5206
+ createUsersResult?: {
5207
+ userIds: string[];
5208
+ };
5209
+ createPrivateKeysResult?: {
5210
+ privateKeyIds: string[];
5211
+ };
5212
+ createInvitationsResult?: {
5213
+ invitationIds: string[];
5214
+ };
5215
+ acceptInvitationResult?: {
5216
+ invitationId: string;
5217
+ userId: string;
5218
+ };
5219
+ signRawPayloadResult?: {
5220
+ r: string;
5221
+ s: string;
5222
+ v: string;
5223
+ };
5224
+ createPolicyResult?: {
5225
+ policyId: string;
5226
+ };
5227
+ disablePrivateKeyResult?: {
5228
+ privateKeyId: string;
5229
+ };
5230
+ deleteUsersResult?: {
5231
+ userIds: string[];
5232
+ };
5233
+ deleteAuthenticatorsResult?: {
5234
+ authenticatorIds: string[];
5235
+ };
5236
+ deleteInvitationResult?: {
5237
+ invitationId: string;
5238
+ };
5239
+ deleteOrganizationResult?: {
5240
+ organizationId: string;
5241
+ };
5242
+ deletePolicyResult?: {
5243
+ policyId: string;
5244
+ };
5245
+ createUserTagResult?: {
5246
+ userTagId: string;
5247
+ userIds: string[];
5248
+ };
5249
+ deleteUserTagsResult?: {
5250
+ userTagIds: string[];
5251
+ userIds: string[];
5252
+ };
5253
+ signTransactionResult?: {
5254
+ signedTransaction: string;
5255
+ };
5256
+ deleteApiKeysResult?: {
5257
+ apiKeyIds: string[];
5258
+ };
5259
+ createApiKeysResult?: {
5260
+ apiKeyIds: string[];
5261
+ };
5262
+ createPrivateKeyTagResult?: {
5263
+ privateKeyTagId: string;
5264
+ privateKeyIds: string[];
5265
+ };
5266
+ deletePrivateKeyTagsResult?: {
5267
+ privateKeyTagIds: string[];
5268
+ privateKeyIds: string[];
5269
+ };
5270
+ setPaymentMethodResult?: {
5271
+ lastFour: string;
5272
+ cardHolderName: string;
5273
+ cardHolderEmail: string;
5274
+ };
5275
+ activateBillingTierResult?: {
5276
+ productId: string;
5277
+ };
5278
+ deletePaymentMethodResult?: {
5279
+ paymentMethodId: string;
5280
+ };
5281
+ createApiOnlyUsersResult?: {
5282
+ userIds: string[];
5283
+ };
5284
+ updateRootQuorumResult?: {
5285
+ [key: string]: unknown;
5286
+ };
5287
+ updateUserTagResult?: {
5288
+ userTagId: string;
5289
+ };
5290
+ updatePrivateKeyTagResult?: {
5291
+ privateKeyTagId: string;
5292
+ };
5293
+ };
5294
+ votes: {
5295
+ id: string;
5296
+ userId: string;
5297
+ user: {
5298
+ userId: string;
5299
+ userName: string;
5300
+ userEmail?: string;
5301
+ accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
5302
+ authenticators: {
5303
+ transports: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
5304
+ attestationType: string;
5305
+ aaguid: string;
5306
+ userId: string;
5307
+ credentialId: string;
5308
+ model: string;
5309
+ credential: {
5310
+ publicKey: string;
5311
+ type: "CREDENTIAL_TYPE_WEBAUTHN_AUTHENTICATOR" | "CREDENTIAL_TYPE_API_KEY_P256";
5312
+ };
5313
+ authenticatorId: string;
5314
+ authenticatorName: string;
5315
+ createdAt: {
5316
+ seconds: string;
5317
+ nanos: string;
5318
+ };
5319
+ updatedAt: {
5320
+ seconds: string;
5321
+ nanos: string;
5322
+ };
5323
+ }[];
5324
+ apiKeys: {
5325
+ credential: {
5326
+ publicKey: string;
5327
+ type: "CREDENTIAL_TYPE_WEBAUTHN_AUTHENTICATOR" | "CREDENTIAL_TYPE_API_KEY_P256";
5328
+ };
5329
+ apiKeyId: string;
5330
+ apiKeyName: string;
5331
+ createdAt: {
5332
+ seconds: string;
5333
+ nanos: string;
5334
+ };
5335
+ updatedAt: {
5336
+ seconds: string;
5337
+ nanos: string;
5338
+ };
5339
+ }[];
5340
+ userTags: string[];
5341
+ createdAt: {
5342
+ seconds: string;
5343
+ nanos: string;
5344
+ };
5345
+ updatedAt: {
5346
+ seconds: string;
5347
+ nanos: string;
5348
+ };
5349
+ };
5350
+ activityId: string;
5351
+ selection: "VOTE_SELECTION_APPROVED" | "VOTE_SELECTION_REJECTED";
5352
+ message: string;
5353
+ publicKey: string;
5354
+ signature: string;
5355
+ scheme: string;
5356
+ createdAt: {
5357
+ seconds: string;
5358
+ nanos: string;
5359
+ };
5360
+ }[];
5361
+ fingerprint: string;
5362
+ canApprove: boolean;
5363
+ canReject: boolean;
5364
+ createdAt: {
5365
+ seconds: string;
5366
+ nanos: string;
5367
+ };
5368
+ updatedAt: {
5369
+ seconds: string;
5370
+ nanos: string;
5371
+ };
5372
+ };
5373
+ }>;
5374
+ /**
5375
+ * `POST /public/v1/submit/delete_invitations`
5376
+ */
5377
+ type TPostDeleteInvitationBody = operations["PublicApiService_DeleteInvitation"]["parameters"]["body"]["body"];
5378
+ /**
5379
+ * `POST /public/v1/submit/delete_invitations`
5380
+ */
5381
+ export type TPostDeleteInvitationResponse = operations["PublicApiService_DeleteInvitation"]["responses"]["200"]["schema"];
5382
+ /**
5383
+ * `POST /public/v1/submit/delete_invitations`
5384
+ */
5385
+ export type TPostDeleteInvitationInput = {
5386
+ body: TPostDeleteInvitationBody;
5387
+ };
5388
+ /**
5389
+ * Delete Invitation
5390
+ *
5391
+ * Delete an existing Invitation
5392
+ *
5393
+ * `POST /public/v1/submit/delete_invitations`
5394
+ */
5395
+ export declare const postDeleteInvitation: (input: TPostDeleteInvitationInput) => Promise<{
5396
+ activity: {
5397
+ id: string;
5398
+ organizationId: string;
5399
+ status: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
5400
+ type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG";
5401
+ intent: {
5402
+ createOrganizationIntent: {
5403
+ organizationName: string;
5404
+ rootEmail: string;
5405
+ rootAuthenticator: {
5406
+ authenticatorName: string;
5407
+ userId: string;
5408
+ attestation: {
5409
+ id: string;
5410
+ type: "public-key";
5411
+ rawId: string;
5412
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
5413
+ response: {
5414
+ clientDataJson: string;
5415
+ attestationObject: string;
5416
+ transports?: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
5417
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
5418
+ };
5419
+ clientExtensionResults: {
5420
+ appid?: boolean;
5421
+ appidExclude?: boolean;
5422
+ credProps?: {
5423
+ rk: boolean;
5424
+ };
5425
+ };
5426
+ };
5427
+ challenge: string;
5428
+ };
5429
+ rootUserId?: string;
5430
+ };
5431
+ createAuthenticatorsIntent?: {
5432
+ authenticators: {
5433
+ authenticatorName: string;
5434
+ userId: string;
5435
+ attestation: {
5436
+ id: string;
5437
+ type: "public-key";
5438
+ rawId: string;
5439
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
5440
+ response: {
5441
+ clientDataJson: string;
5442
+ attestationObject: string;
5443
+ transports?: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
5444
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
5445
+ };
5446
+ clientExtensionResults: {
5447
+ appid?: boolean;
5448
+ appidExclude?: boolean;
5449
+ credProps?: {
5450
+ rk: boolean;
5451
+ };
5452
+ };
5453
+ };
5454
+ challenge: string;
5455
+ }[];
5456
+ userId: string;
5457
+ };
5458
+ createUsersIntent?: {
5459
+ users: {
5460
+ userName: string;
5461
+ userEmail?: string;
5462
+ accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
5463
+ apiKeys: {
5464
+ apiKeyName: string;
5465
+ publicKey: string;
5466
+ }[];
5467
+ authenticators: {
5468
+ authenticatorName: string;
5469
+ userId: string;
5470
+ attestation: {
5471
+ id: string;
5472
+ type: "public-key";
5473
+ rawId: string;
5474
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
5475
+ response: {
5476
+ clientDataJson: string;
5477
+ attestationObject: string;
5478
+ transports?: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
5479
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
5480
+ };
5481
+ clientExtensionResults: {
5482
+ appid?: boolean;
5483
+ appidExclude?: boolean;
5484
+ credProps?: {
5485
+ rk: boolean;
5486
+ };
5487
+ };
5488
+ };
5489
+ challenge: string;
5490
+ }[];
5491
+ userTags: string[];
5492
+ }[];
5493
+ };
5494
+ createPrivateKeysIntent?: {
5495
+ privateKeys: {
5496
+ privateKeyName: string;
5497
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
5498
+ privateKeyTags: string[];
5499
+ addressFormats: ("ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM")[];
5500
+ }[];
5501
+ };
5502
+ signRawPayloadIntent?: {
5503
+ privateKeyId: string;
5504
+ payload: string;
5505
+ encoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8";
5506
+ hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256" | "HASH_FUNCTION_NOT_APPLICABLE";
5507
+ };
5508
+ createInvitationsIntent?: {
5509
+ invitations: {
5510
+ receiverUserName: string;
5511
+ receiverUserEmail: string;
5512
+ receiverUserTags: string[];
5513
+ accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
5514
+ senderUserId: string;
5515
+ }[];
5516
+ };
5517
+ acceptInvitationIntent?: {
5518
+ invitationId: string;
5519
+ userId: string;
5520
+ authenticator: {
5521
+ authenticatorName: string;
5522
+ userId: string;
5523
+ attestation: {
5524
+ id: string;
5525
+ type: "public-key";
5526
+ rawId: string;
5527
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
5528
+ response: {
5529
+ clientDataJson: string;
5530
+ attestationObject: string;
5531
+ transports?: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
5532
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
5533
+ };
5534
+ clientExtensionResults: {
5535
+ appid?: boolean;
5536
+ appidExclude?: boolean;
5537
+ credProps?: {
5538
+ rk: boolean;
5539
+ };
5540
+ };
5541
+ };
5542
+ challenge: string;
5543
+ };
5544
+ };
5545
+ createPolicyIntent?: {
5546
+ policyName: string;
5547
+ selectors: {
5548
+ subject?: string;
5549
+ operator?: "OPERATOR_EQUAL" | "OPERATOR_MORE_THAN" | "OPERATOR_MORE_THAN_OR_EQUAL" | "OPERATOR_LESS_THAN" | "OPERATOR_LESS_THAN_OR_EQUAL" | "OPERATOR_CONTAINS" | "OPERATOR_NOT_EQUAL" | "OPERATOR_IN" | "OPERATOR_NOT_IN" | "OPERATOR_CONTAINS_ONE" | "OPERATOR_CONTAINS_ALL";
5550
+ target?: string;
5551
+ }[];
5552
+ effect: "EFFECT_ALLOW" | "EFFECT_DENY";
5553
+ notes?: string;
5554
+ };
5555
+ disablePrivateKeyIntent?: {
5556
+ privateKeyId: string;
5557
+ };
5558
+ deleteUsersIntent?: {
5559
+ userIds: string[];
5560
+ };
5561
+ deleteAuthenticatorsIntent?: {
5562
+ userId: string;
5563
+ authenticatorIds: string[];
5564
+ };
5565
+ deleteInvitationIntent?: {
5566
+ invitationId: string;
5567
+ };
5568
+ deleteOrganizationIntent?: {
5569
+ organizationId: string;
5570
+ };
5571
+ deletePolicyIntent?: {
5572
+ policyId: string;
5573
+ };
5574
+ createUserTagIntent?: {
5575
+ userTagName: string;
5576
+ userIds: string[];
5577
+ };
5578
+ deleteUserTagsIntent?: {
5579
+ userTagIds: string[];
5580
+ };
5581
+ signTransactionIntent?: {
5582
+ privateKeyId: string;
5583
+ unsignedTransaction: string;
5584
+ type: "TRANSACTION_TYPE_ETHEREUM";
5585
+ };
5586
+ createApiKeysIntent?: {
5587
+ apiKeys: {
5588
+ apiKeyName: string;
5589
+ publicKey: string;
5590
+ }[];
5591
+ userId: string;
5592
+ };
5593
+ deleteApiKeysIntent?: {
5594
+ userId: string;
5595
+ apiKeyIds: string[];
5596
+ };
5597
+ approveActivityIntent?: {
5598
+ fingerprint: string;
5599
+ };
5600
+ rejectActivityIntent?: {
5601
+ fingerprint: string;
5602
+ };
5603
+ createPrivateKeyTagIntent?: {
5604
+ privateKeyTagName: string;
5605
+ privateKeyIds: string[];
5606
+ };
5607
+ deletePrivateKeyTagsIntent?: {
5608
+ privateKeyTagIds: string[];
5609
+ };
5610
+ createPolicyIntentV2?: {
5611
+ policyName: string;
5612
+ selectors: {
5613
+ subject?: string;
5614
+ operator?: "OPERATOR_EQUAL" | "OPERATOR_MORE_THAN" | "OPERATOR_MORE_THAN_OR_EQUAL" | "OPERATOR_LESS_THAN" | "OPERATOR_LESS_THAN_OR_EQUAL" | "OPERATOR_CONTAINS" | "OPERATOR_NOT_EQUAL" | "OPERATOR_IN" | "OPERATOR_NOT_IN" | "OPERATOR_CONTAINS_ONE" | "OPERATOR_CONTAINS_ALL";
5615
+ targets?: string[];
5616
+ }[];
5617
+ effect: "EFFECT_ALLOW" | "EFFECT_DENY";
5618
+ notes?: string;
5619
+ };
5620
+ setPaymentMethodIntent?: {
5621
+ number: string;
5622
+ cvv: string;
5623
+ expiryMonth: string;
5624
+ expiryYear: string;
5625
+ cardHolderEmail: string;
5626
+ cardHolderName: string;
5627
+ };
5628
+ activateBillingTierIntent?: {
5629
+ productId: string;
5630
+ };
5631
+ deletePaymentMethodIntent?: {
5632
+ paymentMethodId: string;
5633
+ };
5634
+ createPolicyIntentV3?: {
5635
+ policyName: string;
5636
+ effect: "EFFECT_ALLOW" | "EFFECT_DENY";
5637
+ condition?: string;
5638
+ consensus?: string;
5639
+ notes?: string;
5640
+ };
5641
+ createApiOnlyUsersIntent?: {
5642
+ apiOnlyUsers: {
5643
+ userName: string;
5644
+ userEmail?: string;
5645
+ userTags: string[];
5646
+ apiKeys: {
5647
+ apiKeyName: string;
5648
+ publicKey: string;
5649
+ }[];
5650
+ }[];
5651
+ };
5652
+ updateRootQuorumIntent?: {
5653
+ threshold: number;
5654
+ userIds: string[];
5655
+ };
5656
+ updateUserTagIntent?: {
5657
+ userTagId: string;
5658
+ newUserTagName?: string;
5659
+ addUserIds: string[];
5660
+ removeUserIds: string[];
5661
+ };
5662
+ updatePrivateKeyTagIntent?: {
5663
+ privateKeyTagId: string;
5664
+ newPrivateKeyTagName?: string;
5665
+ addPrivateKeyIds: string[];
5666
+ removePrivateKeyIds: string[];
5667
+ };
5668
+ };
5669
+ result: {
5670
+ createOrganizationResult?: {
5671
+ organizationId: string;
5672
+ };
5673
+ createAuthenticatorsResult?: {
5674
+ authenticatorIds: string[];
5675
+ };
5676
+ createUsersResult?: {
5677
+ userIds: string[];
5678
+ };
5679
+ createPrivateKeysResult?: {
5680
+ privateKeyIds: string[];
5681
+ };
5682
+ createInvitationsResult?: {
5683
+ invitationIds: string[];
5684
+ };
5685
+ acceptInvitationResult?: {
5686
+ invitationId: string;
5687
+ userId: string;
5688
+ };
5689
+ signRawPayloadResult?: {
5690
+ r: string;
5691
+ s: string;
5692
+ v: string;
5693
+ };
5694
+ createPolicyResult?: {
5695
+ policyId: string;
5696
+ };
5697
+ disablePrivateKeyResult?: {
5698
+ privateKeyId: string;
5699
+ };
5700
+ deleteUsersResult?: {
5701
+ userIds: string[];
5702
+ };
5703
+ deleteAuthenticatorsResult?: {
5704
+ authenticatorIds: string[];
5705
+ };
5706
+ deleteInvitationResult?: {
5707
+ invitationId: string;
5708
+ };
5709
+ deleteOrganizationResult?: {
5710
+ organizationId: string;
5711
+ };
5712
+ deletePolicyResult?: {
5713
+ policyId: string;
5714
+ };
5715
+ createUserTagResult?: {
5716
+ userTagId: string;
5717
+ userIds: string[];
5718
+ };
5719
+ deleteUserTagsResult?: {
5720
+ userTagIds: string[];
5721
+ userIds: string[];
5722
+ };
5723
+ signTransactionResult?: {
5724
+ signedTransaction: string;
5725
+ };
5726
+ deleteApiKeysResult?: {
5727
+ apiKeyIds: string[];
5728
+ };
5729
+ createApiKeysResult?: {
5730
+ apiKeyIds: string[];
5731
+ };
5732
+ createPrivateKeyTagResult?: {
5733
+ privateKeyTagId: string;
5734
+ privateKeyIds: string[];
5735
+ };
5736
+ deletePrivateKeyTagsResult?: {
5737
+ privateKeyTagIds: string[];
5738
+ privateKeyIds: string[];
5739
+ };
5740
+ setPaymentMethodResult?: {
5741
+ lastFour: string;
5742
+ cardHolderName: string;
5743
+ cardHolderEmail: string;
5744
+ };
5745
+ activateBillingTierResult?: {
5746
+ productId: string;
5747
+ };
5748
+ deletePaymentMethodResult?: {
5749
+ paymentMethodId: string;
5750
+ };
5751
+ createApiOnlyUsersResult?: {
5752
+ userIds: string[];
5753
+ };
5754
+ updateRootQuorumResult?: {
5755
+ [key: string]: unknown;
5756
+ };
5757
+ updateUserTagResult?: {
5758
+ userTagId: string;
5759
+ };
5760
+ updatePrivateKeyTagResult?: {
5761
+ privateKeyTagId: string;
5762
+ };
5763
+ };
5764
+ votes: {
5765
+ id: string;
5766
+ userId: string;
5767
+ user: {
5768
+ userId: string;
5769
+ userName: string;
5770
+ userEmail?: string;
5771
+ accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
5772
+ authenticators: {
5773
+ transports: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
5774
+ attestationType: string;
5775
+ aaguid: string;
5776
+ userId: string;
5777
+ credentialId: string;
5778
+ model: string;
5779
+ credential: {
5780
+ publicKey: string;
5781
+ type: "CREDENTIAL_TYPE_WEBAUTHN_AUTHENTICATOR" | "CREDENTIAL_TYPE_API_KEY_P256";
5782
+ };
5783
+ authenticatorId: string;
5784
+ authenticatorName: string;
5785
+ createdAt: {
5786
+ seconds: string;
5787
+ nanos: string;
5788
+ };
5789
+ updatedAt: {
5790
+ seconds: string;
5791
+ nanos: string;
5792
+ };
5793
+ }[];
5794
+ apiKeys: {
5795
+ credential: {
5796
+ publicKey: string;
5797
+ type: "CREDENTIAL_TYPE_WEBAUTHN_AUTHENTICATOR" | "CREDENTIAL_TYPE_API_KEY_P256";
5798
+ };
5799
+ apiKeyId: string;
5800
+ apiKeyName: string;
5801
+ createdAt: {
5802
+ seconds: string;
5803
+ nanos: string;
5804
+ };
5805
+ updatedAt: {
5806
+ seconds: string;
5807
+ nanos: string;
5808
+ };
5809
+ }[];
5810
+ userTags: string[];
5811
+ createdAt: {
5812
+ seconds: string;
5813
+ nanos: string;
5814
+ };
5815
+ updatedAt: {
5816
+ seconds: string;
5817
+ nanos: string;
5818
+ };
5819
+ };
5820
+ activityId: string;
5821
+ selection: "VOTE_SELECTION_APPROVED" | "VOTE_SELECTION_REJECTED";
5822
+ message: string;
5823
+ publicKey: string;
5824
+ signature: string;
5825
+ scheme: string;
5826
+ createdAt: {
5827
+ seconds: string;
5828
+ nanos: string;
5829
+ };
5830
+ }[];
5831
+ fingerprint: string;
5832
+ canApprove: boolean;
5833
+ canReject: boolean;
5834
+ createdAt: {
5835
+ seconds: string;
5836
+ nanos: string;
5837
+ };
5838
+ updatedAt: {
5839
+ seconds: string;
5840
+ nanos: string;
5841
+ };
5842
+ };
5843
+ }>;
5844
+ /**
5845
+ * `POST /public/v1/submit/delete_policy`
5846
+ */
5847
+ type TPostDeletePolicyBody = operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"];
5848
+ /**
5849
+ * `POST /public/v1/submit/delete_policy`
5850
+ */
5851
+ export type TPostDeletePolicyResponse = operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"];
5852
+ /**
5853
+ * `POST /public/v1/submit/delete_policy`
5854
+ */
5855
+ export type TPostDeletePolicyInput = {
5856
+ body: TPostDeletePolicyBody;
5857
+ };
5858
+ /**
5859
+ * Delete Policy
5860
+ *
5861
+ * Delete an existing Policy
5862
+ *
5863
+ * `POST /public/v1/submit/delete_policy`
5864
+ */
5865
+ export declare const postDeletePolicy: (input: TPostDeletePolicyInput) => Promise<{
5866
+ activity: {
5867
+ id: string;
5868
+ organizationId: string;
5869
+ status: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
5870
+ type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG";
5871
+ intent: {
5872
+ createOrganizationIntent: {
5873
+ organizationName: string;
5874
+ rootEmail: string;
5875
+ rootAuthenticator: {
5876
+ authenticatorName: string;
5877
+ userId: string;
5878
+ attestation: {
5879
+ id: string;
5880
+ type: "public-key";
5881
+ rawId: string;
5882
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
5883
+ response: {
5884
+ clientDataJson: string;
5885
+ attestationObject: string;
5886
+ transports?: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
5887
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
5888
+ };
5889
+ clientExtensionResults: {
5890
+ appid?: boolean;
5891
+ appidExclude?: boolean;
5892
+ credProps?: {
5893
+ rk: boolean;
5894
+ };
5895
+ };
5896
+ };
5897
+ challenge: string;
5898
+ };
5899
+ rootUserId?: string;
5900
+ };
5901
+ createAuthenticatorsIntent?: {
5902
+ authenticators: {
5903
+ authenticatorName: string;
5904
+ userId: string;
5905
+ attestation: {
5906
+ id: string;
5907
+ type: "public-key";
5908
+ rawId: string;
5909
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
5910
+ response: {
5911
+ clientDataJson: string;
5912
+ attestationObject: string;
5913
+ transports?: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
5914
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
5915
+ };
5916
+ clientExtensionResults: {
5917
+ appid?: boolean;
5918
+ appidExclude?: boolean;
5919
+ credProps?: {
5920
+ rk: boolean;
5921
+ };
5922
+ };
5923
+ };
5924
+ challenge: string;
5925
+ }[];
5926
+ userId: string;
5927
+ };
5928
+ createUsersIntent?: {
5929
+ users: {
5930
+ userName: string;
5931
+ userEmail?: string;
5932
+ accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
5933
+ apiKeys: {
5934
+ apiKeyName: string;
5935
+ publicKey: string;
5936
+ }[];
5937
+ authenticators: {
5938
+ authenticatorName: string;
5939
+ userId: string;
5940
+ attestation: {
5941
+ id: string;
5942
+ type: "public-key";
5943
+ rawId: string;
5944
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
5945
+ response: {
5946
+ clientDataJson: string;
5947
+ attestationObject: string;
5948
+ transports?: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
5949
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
5950
+ };
5951
+ clientExtensionResults: {
5952
+ appid?: boolean;
5953
+ appidExclude?: boolean;
5954
+ credProps?: {
5955
+ rk: boolean;
5956
+ };
5957
+ };
5958
+ };
5959
+ challenge: string;
5960
+ }[];
5961
+ userTags: string[];
5962
+ }[];
5963
+ };
5964
+ createPrivateKeysIntent?: {
5965
+ privateKeys: {
5966
+ privateKeyName: string;
5967
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
5968
+ privateKeyTags: string[];
5969
+ addressFormats: ("ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM")[];
5970
+ }[];
5971
+ };
5972
+ signRawPayloadIntent?: {
5973
+ privateKeyId: string;
5974
+ payload: string;
5975
+ encoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8";
5976
+ hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256" | "HASH_FUNCTION_NOT_APPLICABLE";
5977
+ };
5978
+ createInvitationsIntent?: {
5979
+ invitations: {
5980
+ receiverUserName: string;
5981
+ receiverUserEmail: string;
5982
+ receiverUserTags: string[];
5983
+ accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
5984
+ senderUserId: string;
5985
+ }[];
5986
+ };
5987
+ acceptInvitationIntent?: {
5988
+ invitationId: string;
5989
+ userId: string;
5990
+ authenticator: {
5991
+ authenticatorName: string;
5992
+ userId: string;
5993
+ attestation: {
5994
+ id: string;
5995
+ type: "public-key";
5996
+ rawId: string;
5997
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
5998
+ response: {
5999
+ clientDataJson: string;
6000
+ attestationObject: string;
6001
+ transports?: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
6002
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
6003
+ };
6004
+ clientExtensionResults: {
6005
+ appid?: boolean;
6006
+ appidExclude?: boolean;
6007
+ credProps?: {
6008
+ rk: boolean;
6009
+ };
6010
+ };
6011
+ };
6012
+ challenge: string;
6013
+ };
6014
+ };
6015
+ createPolicyIntent?: {
6016
+ policyName: string;
6017
+ selectors: {
6018
+ subject?: string;
6019
+ operator?: "OPERATOR_EQUAL" | "OPERATOR_MORE_THAN" | "OPERATOR_MORE_THAN_OR_EQUAL" | "OPERATOR_LESS_THAN" | "OPERATOR_LESS_THAN_OR_EQUAL" | "OPERATOR_CONTAINS" | "OPERATOR_NOT_EQUAL" | "OPERATOR_IN" | "OPERATOR_NOT_IN" | "OPERATOR_CONTAINS_ONE" | "OPERATOR_CONTAINS_ALL";
6020
+ target?: string;
6021
+ }[];
6022
+ effect: "EFFECT_ALLOW" | "EFFECT_DENY";
6023
+ notes?: string;
6024
+ };
6025
+ disablePrivateKeyIntent?: {
6026
+ privateKeyId: string;
6027
+ };
6028
+ deleteUsersIntent?: {
6029
+ userIds: string[];
6030
+ };
6031
+ deleteAuthenticatorsIntent?: {
6032
+ userId: string;
6033
+ authenticatorIds: string[];
6034
+ };
6035
+ deleteInvitationIntent?: {
6036
+ invitationId: string;
6037
+ };
6038
+ deleteOrganizationIntent?: {
6039
+ organizationId: string;
6040
+ };
6041
+ deletePolicyIntent?: {
6042
+ policyId: string;
6043
+ };
6044
+ createUserTagIntent?: {
6045
+ userTagName: string;
6046
+ userIds: string[];
6047
+ };
6048
+ deleteUserTagsIntent?: {
6049
+ userTagIds: string[];
6050
+ };
6051
+ signTransactionIntent?: {
6052
+ privateKeyId: string;
6053
+ unsignedTransaction: string;
6054
+ type: "TRANSACTION_TYPE_ETHEREUM";
6055
+ };
6056
+ createApiKeysIntent?: {
6057
+ apiKeys: {
6058
+ apiKeyName: string;
6059
+ publicKey: string;
6060
+ }[];
6061
+ userId: string;
6062
+ };
6063
+ deleteApiKeysIntent?: {
6064
+ userId: string;
6065
+ apiKeyIds: string[];
6066
+ };
6067
+ approveActivityIntent?: {
6068
+ fingerprint: string;
6069
+ };
6070
+ rejectActivityIntent?: {
6071
+ fingerprint: string;
6072
+ };
6073
+ createPrivateKeyTagIntent?: {
6074
+ privateKeyTagName: string;
6075
+ privateKeyIds: string[];
6076
+ };
6077
+ deletePrivateKeyTagsIntent?: {
6078
+ privateKeyTagIds: string[];
6079
+ };
6080
+ createPolicyIntentV2?: {
6081
+ policyName: string;
6082
+ selectors: {
6083
+ subject?: string;
6084
+ operator?: "OPERATOR_EQUAL" | "OPERATOR_MORE_THAN" | "OPERATOR_MORE_THAN_OR_EQUAL" | "OPERATOR_LESS_THAN" | "OPERATOR_LESS_THAN_OR_EQUAL" | "OPERATOR_CONTAINS" | "OPERATOR_NOT_EQUAL" | "OPERATOR_IN" | "OPERATOR_NOT_IN" | "OPERATOR_CONTAINS_ONE" | "OPERATOR_CONTAINS_ALL";
6085
+ targets?: string[];
6086
+ }[];
6087
+ effect: "EFFECT_ALLOW" | "EFFECT_DENY";
6088
+ notes?: string;
6089
+ };
6090
+ setPaymentMethodIntent?: {
6091
+ number: string;
6092
+ cvv: string;
6093
+ expiryMonth: string;
6094
+ expiryYear: string;
6095
+ cardHolderEmail: string;
6096
+ cardHolderName: string;
6097
+ };
6098
+ activateBillingTierIntent?: {
6099
+ productId: string;
6100
+ };
6101
+ deletePaymentMethodIntent?: {
6102
+ paymentMethodId: string;
6103
+ };
6104
+ createPolicyIntentV3?: {
6105
+ policyName: string;
6106
+ effect: "EFFECT_ALLOW" | "EFFECT_DENY";
6107
+ condition?: string;
6108
+ consensus?: string;
6109
+ notes?: string;
6110
+ };
6111
+ createApiOnlyUsersIntent?: {
6112
+ apiOnlyUsers: {
6113
+ userName: string;
6114
+ userEmail?: string;
6115
+ userTags: string[];
6116
+ apiKeys: {
6117
+ apiKeyName: string;
6118
+ publicKey: string;
6119
+ }[];
6120
+ }[];
6121
+ };
6122
+ updateRootQuorumIntent?: {
6123
+ threshold: number;
6124
+ userIds: string[];
6125
+ };
6126
+ updateUserTagIntent?: {
6127
+ userTagId: string;
6128
+ newUserTagName?: string;
6129
+ addUserIds: string[];
6130
+ removeUserIds: string[];
6131
+ };
6132
+ updatePrivateKeyTagIntent?: {
6133
+ privateKeyTagId: string;
6134
+ newPrivateKeyTagName?: string;
6135
+ addPrivateKeyIds: string[];
6136
+ removePrivateKeyIds: string[];
6137
+ };
6138
+ };
6139
+ result: {
6140
+ createOrganizationResult?: {
6141
+ organizationId: string;
6142
+ };
6143
+ createAuthenticatorsResult?: {
6144
+ authenticatorIds: string[];
6145
+ };
6146
+ createUsersResult?: {
6147
+ userIds: string[];
6148
+ };
6149
+ createPrivateKeysResult?: {
6150
+ privateKeyIds: string[];
6151
+ };
6152
+ createInvitationsResult?: {
6153
+ invitationIds: string[];
6154
+ };
6155
+ acceptInvitationResult?: {
6156
+ invitationId: string;
6157
+ userId: string;
6158
+ };
6159
+ signRawPayloadResult?: {
6160
+ r: string;
6161
+ s: string;
6162
+ v: string;
6163
+ };
6164
+ createPolicyResult?: {
6165
+ policyId: string;
6166
+ };
6167
+ disablePrivateKeyResult?: {
6168
+ privateKeyId: string;
6169
+ };
6170
+ deleteUsersResult?: {
6171
+ userIds: string[];
6172
+ };
6173
+ deleteAuthenticatorsResult?: {
6174
+ authenticatorIds: string[];
6175
+ };
6176
+ deleteInvitationResult?: {
6177
+ invitationId: string;
6178
+ };
6179
+ deleteOrganizationResult?: {
6180
+ organizationId: string;
6181
+ };
6182
+ deletePolicyResult?: {
6183
+ policyId: string;
6184
+ };
6185
+ createUserTagResult?: {
6186
+ userTagId: string;
6187
+ userIds: string[];
6188
+ };
6189
+ deleteUserTagsResult?: {
6190
+ userTagIds: string[];
6191
+ userIds: string[];
6192
+ };
6193
+ signTransactionResult?: {
6194
+ signedTransaction: string;
6195
+ };
6196
+ deleteApiKeysResult?: {
6197
+ apiKeyIds: string[];
6198
+ };
6199
+ createApiKeysResult?: {
6200
+ apiKeyIds: string[];
6201
+ };
6202
+ createPrivateKeyTagResult?: {
6203
+ privateKeyTagId: string;
6204
+ privateKeyIds: string[];
6205
+ };
6206
+ deletePrivateKeyTagsResult?: {
6207
+ privateKeyTagIds: string[];
6208
+ privateKeyIds: string[];
6209
+ };
6210
+ setPaymentMethodResult?: {
6211
+ lastFour: string;
6212
+ cardHolderName: string;
6213
+ cardHolderEmail: string;
6214
+ };
6215
+ activateBillingTierResult?: {
6216
+ productId: string;
6217
+ };
6218
+ deletePaymentMethodResult?: {
6219
+ paymentMethodId: string;
6220
+ };
6221
+ createApiOnlyUsersResult?: {
6222
+ userIds: string[];
6223
+ };
6224
+ updateRootQuorumResult?: {
6225
+ [key: string]: unknown;
6226
+ };
6227
+ updateUserTagResult?: {
6228
+ userTagId: string;
6229
+ };
6230
+ updatePrivateKeyTagResult?: {
6231
+ privateKeyTagId: string;
6232
+ };
6233
+ };
6234
+ votes: {
6235
+ id: string;
6236
+ userId: string;
6237
+ user: {
6238
+ userId: string;
6239
+ userName: string;
6240
+ userEmail?: string;
6241
+ accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
6242
+ authenticators: {
6243
+ transports: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
6244
+ attestationType: string;
6245
+ aaguid: string;
6246
+ userId: string;
6247
+ credentialId: string;
6248
+ model: string;
6249
+ credential: {
6250
+ publicKey: string;
6251
+ type: "CREDENTIAL_TYPE_WEBAUTHN_AUTHENTICATOR" | "CREDENTIAL_TYPE_API_KEY_P256";
6252
+ };
6253
+ authenticatorId: string;
6254
+ authenticatorName: string;
6255
+ createdAt: {
6256
+ seconds: string;
6257
+ nanos: string;
6258
+ };
6259
+ updatedAt: {
6260
+ seconds: string;
6261
+ nanos: string;
6262
+ };
6263
+ }[];
6264
+ apiKeys: {
6265
+ credential: {
6266
+ publicKey: string;
6267
+ type: "CREDENTIAL_TYPE_WEBAUTHN_AUTHENTICATOR" | "CREDENTIAL_TYPE_API_KEY_P256";
6268
+ };
6269
+ apiKeyId: string;
6270
+ apiKeyName: string;
6271
+ createdAt: {
6272
+ seconds: string;
6273
+ nanos: string;
6274
+ };
6275
+ updatedAt: {
6276
+ seconds: string;
6277
+ nanos: string;
6278
+ };
6279
+ }[];
6280
+ userTags: string[];
6281
+ createdAt: {
6282
+ seconds: string;
6283
+ nanos: string;
6284
+ };
6285
+ updatedAt: {
6286
+ seconds: string;
6287
+ nanos: string;
6288
+ };
6289
+ };
6290
+ activityId: string;
6291
+ selection: "VOTE_SELECTION_APPROVED" | "VOTE_SELECTION_REJECTED";
6292
+ message: string;
6293
+ publicKey: string;
6294
+ signature: string;
6295
+ scheme: string;
6296
+ createdAt: {
6297
+ seconds: string;
6298
+ nanos: string;
6299
+ };
6300
+ }[];
6301
+ fingerprint: string;
6302
+ canApprove: boolean;
6303
+ canReject: boolean;
6304
+ createdAt: {
6305
+ seconds: string;
6306
+ nanos: string;
6307
+ };
6308
+ updatedAt: {
6309
+ seconds: string;
6310
+ nanos: string;
6311
+ };
6312
+ };
6313
+ }>;
6314
+ /**
6315
+ * `POST /public/v1/submit/reject_activity`
6316
+ */
6317
+ type TPostRejectActivityBody = operations["PublicApiService_RejectActivity"]["parameters"]["body"]["body"];
6318
+ /**
6319
+ * `POST /public/v1/submit/reject_activity`
6320
+ */
6321
+ export type TPostRejectActivityResponse = operations["PublicApiService_RejectActivity"]["responses"]["200"]["schema"];
6322
+ /**
6323
+ * `POST /public/v1/submit/reject_activity`
6324
+ */
6325
+ export type TPostRejectActivityInput = {
6326
+ body: TPostRejectActivityBody;
6327
+ };
6328
+ /**
6329
+ * Reject Activity
6330
+ *
6331
+ * Reject an Activity
6332
+ *
6333
+ * `POST /public/v1/submit/reject_activity`
6334
+ */
6335
+ export declare const postRejectActivity: (input: TPostRejectActivityInput) => Promise<{
6336
+ activity: {
6337
+ id: string;
6338
+ organizationId: string;
6339
+ status: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
6340
+ type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG";
6341
+ intent: {
6342
+ createOrganizationIntent: {
6343
+ organizationName: string;
6344
+ rootEmail: string;
6345
+ rootAuthenticator: {
6346
+ authenticatorName: string;
6347
+ userId: string;
6348
+ attestation: {
6349
+ id: string;
6350
+ type: "public-key";
6351
+ rawId: string;
6352
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
6353
+ response: {
6354
+ clientDataJson: string;
6355
+ attestationObject: string;
6356
+ transports?: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
6357
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
6358
+ };
6359
+ clientExtensionResults: {
6360
+ appid?: boolean;
6361
+ appidExclude?: boolean;
6362
+ credProps?: {
6363
+ rk: boolean;
6364
+ };
6365
+ };
6366
+ };
6367
+ challenge: string;
6368
+ };
6369
+ rootUserId?: string;
6370
+ };
6371
+ createAuthenticatorsIntent?: {
6372
+ authenticators: {
6373
+ authenticatorName: string;
6374
+ userId: string;
6375
+ attestation: {
6376
+ id: string;
6377
+ type: "public-key";
6378
+ rawId: string;
6379
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
6380
+ response: {
6381
+ clientDataJson: string;
6382
+ attestationObject: string;
6383
+ transports?: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
6384
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
6385
+ };
6386
+ clientExtensionResults: {
6387
+ appid?: boolean;
6388
+ appidExclude?: boolean;
6389
+ credProps?: {
6390
+ rk: boolean;
6391
+ };
6392
+ };
6393
+ };
6394
+ challenge: string;
6395
+ }[];
6396
+ userId: string;
6397
+ };
6398
+ createUsersIntent?: {
6399
+ users: {
6400
+ userName: string;
6401
+ userEmail?: string;
6402
+ accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
6403
+ apiKeys: {
6404
+ apiKeyName: string;
6405
+ publicKey: string;
6406
+ }[];
6407
+ authenticators: {
6408
+ authenticatorName: string;
6409
+ userId: string;
6410
+ attestation: {
6411
+ id: string;
6412
+ type: "public-key";
6413
+ rawId: string;
6414
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
6415
+ response: {
6416
+ clientDataJson: string;
6417
+ attestationObject: string;
6418
+ transports?: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
6419
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
6420
+ };
6421
+ clientExtensionResults: {
6422
+ appid?: boolean;
6423
+ appidExclude?: boolean;
6424
+ credProps?: {
6425
+ rk: boolean;
6426
+ };
6427
+ };
6428
+ };
6429
+ challenge: string;
6430
+ }[];
6431
+ userTags: string[];
6432
+ }[];
6433
+ };
6434
+ createPrivateKeysIntent?: {
6435
+ privateKeys: {
6436
+ privateKeyName: string;
6437
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
6438
+ privateKeyTags: string[];
6439
+ addressFormats: ("ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM")[];
6440
+ }[];
6441
+ };
6442
+ signRawPayloadIntent?: {
6443
+ privateKeyId: string;
6444
+ payload: string;
6445
+ encoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8";
6446
+ hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256" | "HASH_FUNCTION_NOT_APPLICABLE";
6447
+ };
6448
+ createInvitationsIntent?: {
6449
+ invitations: {
6450
+ receiverUserName: string;
6451
+ receiverUserEmail: string;
6452
+ receiverUserTags: string[];
6453
+ accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
6454
+ senderUserId: string;
6455
+ }[];
6456
+ };
6457
+ acceptInvitationIntent?: {
6458
+ invitationId: string;
6459
+ userId: string;
6460
+ authenticator: {
6461
+ authenticatorName: string;
6462
+ userId: string;
6463
+ attestation: {
6464
+ id: string;
6465
+ type: "public-key";
6466
+ rawId: string;
6467
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
6468
+ response: {
6469
+ clientDataJson: string;
6470
+ attestationObject: string;
6471
+ transports?: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
6472
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
6473
+ };
6474
+ clientExtensionResults: {
6475
+ appid?: boolean;
6476
+ appidExclude?: boolean;
6477
+ credProps?: {
6478
+ rk: boolean;
6479
+ };
6480
+ };
6481
+ };
6482
+ challenge: string;
6483
+ };
6484
+ };
6485
+ createPolicyIntent?: {
6486
+ policyName: string;
6487
+ selectors: {
6488
+ subject?: string;
6489
+ operator?: "OPERATOR_EQUAL" | "OPERATOR_MORE_THAN" | "OPERATOR_MORE_THAN_OR_EQUAL" | "OPERATOR_LESS_THAN" | "OPERATOR_LESS_THAN_OR_EQUAL" | "OPERATOR_CONTAINS" | "OPERATOR_NOT_EQUAL" | "OPERATOR_IN" | "OPERATOR_NOT_IN" | "OPERATOR_CONTAINS_ONE" | "OPERATOR_CONTAINS_ALL";
6490
+ target?: string;
6491
+ }[];
6492
+ effect: "EFFECT_ALLOW" | "EFFECT_DENY";
6493
+ notes?: string;
6494
+ };
6495
+ disablePrivateKeyIntent?: {
6496
+ privateKeyId: string;
6497
+ };
6498
+ deleteUsersIntent?: {
6499
+ userIds: string[];
6500
+ };
6501
+ deleteAuthenticatorsIntent?: {
6502
+ userId: string;
6503
+ authenticatorIds: string[];
6504
+ };
6505
+ deleteInvitationIntent?: {
6506
+ invitationId: string;
6507
+ };
6508
+ deleteOrganizationIntent?: {
6509
+ organizationId: string;
6510
+ };
6511
+ deletePolicyIntent?: {
6512
+ policyId: string;
6513
+ };
6514
+ createUserTagIntent?: {
6515
+ userTagName: string;
6516
+ userIds: string[];
6517
+ };
6518
+ deleteUserTagsIntent?: {
6519
+ userTagIds: string[];
6520
+ };
6521
+ signTransactionIntent?: {
6522
+ privateKeyId: string;
6523
+ unsignedTransaction: string;
6524
+ type: "TRANSACTION_TYPE_ETHEREUM";
6525
+ };
6526
+ createApiKeysIntent?: {
6527
+ apiKeys: {
6528
+ apiKeyName: string;
6529
+ publicKey: string;
6530
+ }[];
6531
+ userId: string;
6532
+ };
6533
+ deleteApiKeysIntent?: {
6534
+ userId: string;
6535
+ apiKeyIds: string[];
6536
+ };
6537
+ approveActivityIntent?: {
6538
+ fingerprint: string;
6539
+ };
6540
+ rejectActivityIntent?: {
6541
+ fingerprint: string;
6542
+ };
6543
+ createPrivateKeyTagIntent?: {
6544
+ privateKeyTagName: string;
6545
+ privateKeyIds: string[];
6546
+ };
6547
+ deletePrivateKeyTagsIntent?: {
6548
+ privateKeyTagIds: string[];
6549
+ };
6550
+ createPolicyIntentV2?: {
6551
+ policyName: string;
6552
+ selectors: {
6553
+ subject?: string;
6554
+ operator?: "OPERATOR_EQUAL" | "OPERATOR_MORE_THAN" | "OPERATOR_MORE_THAN_OR_EQUAL" | "OPERATOR_LESS_THAN" | "OPERATOR_LESS_THAN_OR_EQUAL" | "OPERATOR_CONTAINS" | "OPERATOR_NOT_EQUAL" | "OPERATOR_IN" | "OPERATOR_NOT_IN" | "OPERATOR_CONTAINS_ONE" | "OPERATOR_CONTAINS_ALL";
6555
+ targets?: string[];
6556
+ }[];
6557
+ effect: "EFFECT_ALLOW" | "EFFECT_DENY";
6558
+ notes?: string;
6559
+ };
6560
+ setPaymentMethodIntent?: {
6561
+ number: string;
6562
+ cvv: string;
6563
+ expiryMonth: string;
6564
+ expiryYear: string;
6565
+ cardHolderEmail: string;
6566
+ cardHolderName: string;
6567
+ };
6568
+ activateBillingTierIntent?: {
6569
+ productId: string;
6570
+ };
6571
+ deletePaymentMethodIntent?: {
6572
+ paymentMethodId: string;
6573
+ };
6574
+ createPolicyIntentV3?: {
6575
+ policyName: string;
6576
+ effect: "EFFECT_ALLOW" | "EFFECT_DENY";
6577
+ condition?: string;
6578
+ consensus?: string;
6579
+ notes?: string;
6580
+ };
6581
+ createApiOnlyUsersIntent?: {
6582
+ apiOnlyUsers: {
6583
+ userName: string;
6584
+ userEmail?: string;
6585
+ userTags: string[];
6586
+ apiKeys: {
6587
+ apiKeyName: string;
6588
+ publicKey: string;
6589
+ }[];
6590
+ }[];
6591
+ };
6592
+ updateRootQuorumIntent?: {
6593
+ threshold: number;
6594
+ userIds: string[];
6595
+ };
6596
+ updateUserTagIntent?: {
6597
+ userTagId: string;
6598
+ newUserTagName?: string;
6599
+ addUserIds: string[];
6600
+ removeUserIds: string[];
6601
+ };
6602
+ updatePrivateKeyTagIntent?: {
6603
+ privateKeyTagId: string;
6604
+ newPrivateKeyTagName?: string;
6605
+ addPrivateKeyIds: string[];
6606
+ removePrivateKeyIds: string[];
6607
+ };
6608
+ };
6609
+ result: {
6610
+ createOrganizationResult?: {
6611
+ organizationId: string;
6612
+ };
6613
+ createAuthenticatorsResult?: {
6614
+ authenticatorIds: string[];
6615
+ };
6616
+ createUsersResult?: {
6617
+ userIds: string[];
6618
+ };
6619
+ createPrivateKeysResult?: {
6620
+ privateKeyIds: string[];
6621
+ };
6622
+ createInvitationsResult?: {
6623
+ invitationIds: string[];
6624
+ };
6625
+ acceptInvitationResult?: {
6626
+ invitationId: string;
6627
+ userId: string;
6628
+ };
6629
+ signRawPayloadResult?: {
6630
+ r: string;
6631
+ s: string;
6632
+ v: string;
6633
+ };
6634
+ createPolicyResult?: {
6635
+ policyId: string;
6636
+ };
6637
+ disablePrivateKeyResult?: {
6638
+ privateKeyId: string;
6639
+ };
6640
+ deleteUsersResult?: {
6641
+ userIds: string[];
6642
+ };
6643
+ deleteAuthenticatorsResult?: {
6644
+ authenticatorIds: string[];
6645
+ };
6646
+ deleteInvitationResult?: {
6647
+ invitationId: string;
6648
+ };
6649
+ deleteOrganizationResult?: {
6650
+ organizationId: string;
6651
+ };
6652
+ deletePolicyResult?: {
6653
+ policyId: string;
6654
+ };
6655
+ createUserTagResult?: {
6656
+ userTagId: string;
6657
+ userIds: string[];
6658
+ };
6659
+ deleteUserTagsResult?: {
6660
+ userTagIds: string[];
6661
+ userIds: string[];
6662
+ };
6663
+ signTransactionResult?: {
6664
+ signedTransaction: string;
6665
+ };
6666
+ deleteApiKeysResult?: {
6667
+ apiKeyIds: string[];
6668
+ };
6669
+ createApiKeysResult?: {
6670
+ apiKeyIds: string[];
6671
+ };
6672
+ createPrivateKeyTagResult?: {
6673
+ privateKeyTagId: string;
6674
+ privateKeyIds: string[];
6675
+ };
6676
+ deletePrivateKeyTagsResult?: {
6677
+ privateKeyTagIds: string[];
6678
+ privateKeyIds: string[];
6679
+ };
6680
+ setPaymentMethodResult?: {
6681
+ lastFour: string;
6682
+ cardHolderName: string;
6683
+ cardHolderEmail: string;
6684
+ };
6685
+ activateBillingTierResult?: {
6686
+ productId: string;
6687
+ };
6688
+ deletePaymentMethodResult?: {
6689
+ paymentMethodId: string;
6690
+ };
6691
+ createApiOnlyUsersResult?: {
6692
+ userIds: string[];
6693
+ };
6694
+ updateRootQuorumResult?: {
6695
+ [key: string]: unknown;
6696
+ };
6697
+ updateUserTagResult?: {
6698
+ userTagId: string;
6699
+ };
6700
+ updatePrivateKeyTagResult?: {
6701
+ privateKeyTagId: string;
6702
+ };
6703
+ };
6704
+ votes: {
6705
+ id: string;
6706
+ userId: string;
6707
+ user: {
6708
+ userId: string;
6709
+ userName: string;
6710
+ userEmail?: string;
6711
+ accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
6712
+ authenticators: {
6713
+ transports: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
6714
+ attestationType: string;
6715
+ aaguid: string;
6716
+ userId: string;
6717
+ credentialId: string;
6718
+ model: string;
6719
+ credential: {
6720
+ publicKey: string;
6721
+ type: "CREDENTIAL_TYPE_WEBAUTHN_AUTHENTICATOR" | "CREDENTIAL_TYPE_API_KEY_P256";
6722
+ };
6723
+ authenticatorId: string;
6724
+ authenticatorName: string;
6725
+ createdAt: {
6726
+ seconds: string;
6727
+ nanos: string;
6728
+ };
6729
+ updatedAt: {
6730
+ seconds: string;
6731
+ nanos: string;
6732
+ };
6733
+ }[];
6734
+ apiKeys: {
6735
+ credential: {
6736
+ publicKey: string;
6737
+ type: "CREDENTIAL_TYPE_WEBAUTHN_AUTHENTICATOR" | "CREDENTIAL_TYPE_API_KEY_P256";
6738
+ };
6739
+ apiKeyId: string;
6740
+ apiKeyName: string;
6741
+ createdAt: {
6742
+ seconds: string;
6743
+ nanos: string;
6744
+ };
6745
+ updatedAt: {
6746
+ seconds: string;
6747
+ nanos: string;
6748
+ };
6749
+ }[];
6750
+ userTags: string[];
6751
+ createdAt: {
6752
+ seconds: string;
6753
+ nanos: string;
6754
+ };
6755
+ updatedAt: {
6756
+ seconds: string;
6757
+ nanos: string;
6758
+ };
6759
+ };
6760
+ activityId: string;
6761
+ selection: "VOTE_SELECTION_APPROVED" | "VOTE_SELECTION_REJECTED";
6762
+ message: string;
6763
+ publicKey: string;
6764
+ signature: string;
6765
+ scheme: string;
6766
+ createdAt: {
6767
+ seconds: string;
6768
+ nanos: string;
6769
+ };
6770
+ }[];
6771
+ fingerprint: string;
6772
+ canApprove: boolean;
6773
+ canReject: boolean;
6774
+ createdAt: {
6775
+ seconds: string;
6776
+ nanos: string;
6777
+ };
6778
+ updatedAt: {
6779
+ seconds: string;
6780
+ nanos: string;
6781
+ };
6782
+ };
6783
+ }>;
6784
+ /**
6785
+ * `POST /public/v1/submit/sign_raw_payload`
6786
+ */
6787
+ type TPostSignRawPayloadBody = operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"];
6788
+ /**
6789
+ * `POST /public/v1/submit/sign_raw_payload`
6790
+ */
6791
+ export type TPostSignRawPayloadResponse = operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"];
6792
+ /**
6793
+ * `POST /public/v1/submit/sign_raw_payload`
6794
+ */
6795
+ export type TPostSignRawPayloadInput = {
6796
+ body: TPostSignRawPayloadBody;
6797
+ };
6798
+ /**
6799
+ * Sign Raw Payload
6800
+ *
6801
+ * Sign a raw payload with a Private Key
6802
+ *
6803
+ * `POST /public/v1/submit/sign_raw_payload`
6804
+ */
6805
+ export declare const postSignRawPayload: (input: TPostSignRawPayloadInput) => Promise<{
6806
+ activity: {
6807
+ id: string;
6808
+ organizationId: string;
6809
+ status: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
6810
+ type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG";
6811
+ intent: {
6812
+ createOrganizationIntent: {
6813
+ organizationName: string;
6814
+ rootEmail: string;
6815
+ rootAuthenticator: {
6816
+ authenticatorName: string;
6817
+ userId: string;
6818
+ attestation: {
6819
+ id: string;
6820
+ type: "public-key";
6821
+ rawId: string;
6822
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
6823
+ response: {
6824
+ clientDataJson: string;
6825
+ attestationObject: string;
6826
+ transports?: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
6827
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
6828
+ };
6829
+ clientExtensionResults: {
6830
+ appid?: boolean;
6831
+ appidExclude?: boolean;
6832
+ credProps?: {
6833
+ rk: boolean;
6834
+ };
6835
+ };
6836
+ };
6837
+ challenge: string;
6838
+ };
6839
+ rootUserId?: string;
6840
+ };
6841
+ createAuthenticatorsIntent?: {
6842
+ authenticators: {
6843
+ authenticatorName: string;
6844
+ userId: string;
6845
+ attestation: {
6846
+ id: string;
6847
+ type: "public-key";
6848
+ rawId: string;
6849
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
6850
+ response: {
6851
+ clientDataJson: string;
6852
+ attestationObject: string;
6853
+ transports?: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
6854
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
6855
+ };
6856
+ clientExtensionResults: {
6857
+ appid?: boolean;
6858
+ appidExclude?: boolean;
6859
+ credProps?: {
6860
+ rk: boolean;
6861
+ };
6862
+ };
6863
+ };
6864
+ challenge: string;
6865
+ }[];
6866
+ userId: string;
6867
+ };
6868
+ createUsersIntent?: {
6869
+ users: {
6870
+ userName: string;
6871
+ userEmail?: string;
6872
+ accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
6873
+ apiKeys: {
6874
+ apiKeyName: string;
6875
+ publicKey: string;
6876
+ }[];
6877
+ authenticators: {
6878
+ authenticatorName: string;
6879
+ userId: string;
6880
+ attestation: {
6881
+ id: string;
6882
+ type: "public-key";
6883
+ rawId: string;
6884
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
6885
+ response: {
6886
+ clientDataJson: string;
6887
+ attestationObject: string;
6888
+ transports?: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
6889
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
6890
+ };
6891
+ clientExtensionResults: {
6892
+ appid?: boolean;
6893
+ appidExclude?: boolean;
6894
+ credProps?: {
6895
+ rk: boolean;
6896
+ };
6897
+ };
6898
+ };
6899
+ challenge: string;
6900
+ }[];
6901
+ userTags: string[];
6902
+ }[];
6903
+ };
6904
+ createPrivateKeysIntent?: {
6905
+ privateKeys: {
6906
+ privateKeyName: string;
6907
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
6908
+ privateKeyTags: string[];
6909
+ addressFormats: ("ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM")[];
6910
+ }[];
6911
+ };
6912
+ signRawPayloadIntent?: {
6913
+ privateKeyId: string;
6914
+ payload: string;
6915
+ encoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8";
6916
+ hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256" | "HASH_FUNCTION_NOT_APPLICABLE";
6917
+ };
6918
+ createInvitationsIntent?: {
6919
+ invitations: {
6920
+ receiverUserName: string;
6921
+ receiverUserEmail: string;
6922
+ receiverUserTags: string[];
6923
+ accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
6924
+ senderUserId: string;
6925
+ }[];
6926
+ };
6927
+ acceptInvitationIntent?: {
6928
+ invitationId: string;
6929
+ userId: string;
6930
+ authenticator: {
6931
+ authenticatorName: string;
6932
+ userId: string;
6933
+ attestation: {
6934
+ id: string;
6935
+ type: "public-key";
6936
+ rawId: string;
6937
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
6938
+ response: {
6939
+ clientDataJson: string;
6940
+ attestationObject: string;
6941
+ transports?: ("AUTHENTICATOR_TRANSPORT_BLE" | "AUTHENTICATOR_TRANSPORT_INTERNAL" | "AUTHENTICATOR_TRANSPORT_NFC" | "AUTHENTICATOR_TRANSPORT_USB" | "AUTHENTICATOR_TRANSPORT_HYBRID")[];
6942
+ authenticatorAttachment?: "cross-platform" | "platform" | null;
6943
+ };
6944
+ clientExtensionResults: {
6945
+ appid?: boolean;
6946
+ appidExclude?: boolean;
6947
+ credProps?: {
6948
+ rk: boolean;
6949
+ };
6950
+ };
6951
+ };
6952
+ challenge: string;
6953
+ };
6954
+ };
6955
+ createPolicyIntent?: {
6956
+ policyName: string;
6957
+ selectors: {
6958
+ subject?: string;
6959
+ operator?: "OPERATOR_EQUAL" | "OPERATOR_MORE_THAN" | "OPERATOR_MORE_THAN_OR_EQUAL" | "OPERATOR_LESS_THAN" | "OPERATOR_LESS_THAN_OR_EQUAL" | "OPERATOR_CONTAINS" | "OPERATOR_NOT_EQUAL" | "OPERATOR_IN" | "OPERATOR_NOT_IN" | "OPERATOR_CONTAINS_ONE" | "OPERATOR_CONTAINS_ALL";
6960
+ target?: string;
6961
+ }[];
6962
+ effect: "EFFECT_ALLOW" | "EFFECT_DENY";
6963
+ notes?: string;
6964
+ };
6965
+ disablePrivateKeyIntent?: {
6966
+ privateKeyId: string;
6967
+ };
6968
+ deleteUsersIntent?: {
6969
+ userIds: string[];
6970
+ };
6971
+ deleteAuthenticatorsIntent?: {
6972
+ userId: string;
6973
+ authenticatorIds: string[];
6974
+ };
6975
+ deleteInvitationIntent?: {
6976
+ invitationId: string;
6977
+ };
6978
+ deleteOrganizationIntent?: {
6979
+ organizationId: string;
6980
+ };
6981
+ deletePolicyIntent?: {
6982
+ policyId: string;
6983
+ };
6984
+ createUserTagIntent?: {
6985
+ userTagName: string;
6986
+ userIds: string[];
6987
+ };
6988
+ deleteUserTagsIntent?: {
6989
+ userTagIds: string[];
6990
+ };
6991
+ signTransactionIntent?: {
6992
+ privateKeyId: string;
6993
+ unsignedTransaction: string;
6994
+ type: "TRANSACTION_TYPE_ETHEREUM";
6995
+ };
6996
+ createApiKeysIntent?: {
6997
+ apiKeys: {
6998
+ apiKeyName: string;
6999
+ publicKey: string;
7000
+ }[];
7001
+ userId: string;
7002
+ };
7003
+ deleteApiKeysIntent?: {
7004
+ userId: string;
7005
+ apiKeyIds: string[];
7006
+ };
7007
+ approveActivityIntent?: {
7008
+ fingerprint: string;
7009
+ };
7010
+ rejectActivityIntent?: {
7011
+ fingerprint: string;
7012
+ };
7013
+ createPrivateKeyTagIntent?: {
7014
+ privateKeyTagName: string;
7015
+ privateKeyIds: string[];
7016
+ };
7017
+ deletePrivateKeyTagsIntent?: {
7018
+ privateKeyTagIds: string[];
7019
+ };
7020
+ createPolicyIntentV2?: {
7021
+ policyName: string;
7022
+ selectors: {
7023
+ subject?: string;
7024
+ operator?: "OPERATOR_EQUAL" | "OPERATOR_MORE_THAN" | "OPERATOR_MORE_THAN_OR_EQUAL" | "OPERATOR_LESS_THAN" | "OPERATOR_LESS_THAN_OR_EQUAL" | "OPERATOR_CONTAINS" | "OPERATOR_NOT_EQUAL" | "OPERATOR_IN" | "OPERATOR_NOT_IN" | "OPERATOR_CONTAINS_ONE" | "OPERATOR_CONTAINS_ALL";
7025
+ targets?: string[];
7026
+ }[];
7027
+ effect: "EFFECT_ALLOW" | "EFFECT_DENY";
7028
+ notes?: string;
7029
+ };
7030
+ setPaymentMethodIntent?: {
7031
+ number: string;
7032
+ cvv: string;
7033
+ expiryMonth: string;
7034
+ expiryYear: string;
7035
+ cardHolderEmail: string;
7036
+ cardHolderName: string;
7037
+ };
7038
+ activateBillingTierIntent?: {
7039
+ productId: string;
7040
+ };
7041
+ deletePaymentMethodIntent?: {
7042
+ paymentMethodId: string;
7043
+ };
7044
+ createPolicyIntentV3?: {
7045
+ policyName: string;
7046
+ effect: "EFFECT_ALLOW" | "EFFECT_DENY";
7047
+ condition?: string;
7048
+ consensus?: string;
7049
+ notes?: string;
7050
+ };
7051
+ createApiOnlyUsersIntent?: {
7052
+ apiOnlyUsers: {
7053
+ userName: string;
7054
+ userEmail?: string;
7055
+ userTags: string[];
7056
+ apiKeys: {
7057
+ apiKeyName: string;
7058
+ publicKey: string;
7059
+ }[];
7060
+ }[];
7061
+ };
7062
+ updateRootQuorumIntent?: {
7063
+ threshold: number;
7064
+ userIds: string[];
7065
+ };
7066
+ updateUserTagIntent?: {
7067
+ userTagId: string;
7068
+ newUserTagName?: string;
7069
+ addUserIds: string[];
7070
+ removeUserIds: string[];
7071
+ };
7072
+ updatePrivateKeyTagIntent?: {
7073
+ privateKeyTagId: string;
7074
+ newPrivateKeyTagName?: string;
7075
+ addPrivateKeyIds: string[];
7076
+ removePrivateKeyIds: string[];
7077
+ };
7078
+ };
5007
7079
  result: {
5008
7080
  createOrganizationResult?: {
5009
7081
  organizationId: string;
@@ -5092,6 +7164,12 @@ export declare const postDeleteInvitation: (input: TPostDeleteInvitationInput) =
5092
7164
  updateRootQuorumResult?: {
5093
7165
  [key: string]: unknown;
5094
7166
  };
7167
+ updateUserTagResult?: {
7168
+ userTagId: string;
7169
+ };
7170
+ updatePrivateKeyTagResult?: {
7171
+ privateKeyTagId: string;
7172
+ };
5095
7173
  };
5096
7174
  votes: {
5097
7175
  id: string;
@@ -5174,32 +7252,32 @@ export declare const postDeleteInvitation: (input: TPostDeleteInvitationInput) =
5174
7252
  };
5175
7253
  }>;
5176
7254
  /**
5177
- * `POST /public/v1/submit/delete_policy`
7255
+ * `POST /public/v1/submit/sign_transaction`
5178
7256
  */
5179
- type TPostDeletePolicyBody = operations["PublicApiService_DeletePolicy"]["parameters"]["body"]["body"];
7257
+ type TPostSignTransactionBody = operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"];
5180
7258
  /**
5181
- * `POST /public/v1/submit/delete_policy`
7259
+ * `POST /public/v1/submit/sign_transaction`
5182
7260
  */
5183
- export type TPostDeletePolicyResponse = operations["PublicApiService_DeletePolicy"]["responses"]["200"]["schema"];
7261
+ export type TPostSignTransactionResponse = operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"];
5184
7262
  /**
5185
- * `POST /public/v1/submit/delete_policy`
7263
+ * `POST /public/v1/submit/sign_transaction`
5186
7264
  */
5187
- export type TPostDeletePolicyInput = {
5188
- body: TPostDeletePolicyBody;
7265
+ export type TPostSignTransactionInput = {
7266
+ body: TPostSignTransactionBody;
5189
7267
  };
5190
7268
  /**
5191
- * Delete Policy
7269
+ * Sign Transaction
5192
7270
  *
5193
- * Delete an existing Policy
7271
+ * Sign a transaction with a Private Key
5194
7272
  *
5195
- * `POST /public/v1/submit/delete_policy`
7273
+ * `POST /public/v1/submit/sign_transaction`
5196
7274
  */
5197
- export declare const postDeletePolicy: (input: TPostDeletePolicyInput) => Promise<{
7275
+ export declare const postSignTransaction: (input: TPostSignTransactionInput) => Promise<{
5198
7276
  activity: {
5199
7277
  id: string;
5200
7278
  organizationId: string;
5201
7279
  status: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
5202
- type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM";
7280
+ type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG";
5203
7281
  intent: {
5204
7282
  createOrganizationIntent: {
5205
7283
  organizationName: string;
@@ -5296,7 +7374,7 @@ export declare const postDeletePolicy: (input: TPostDeletePolicyInput) => Promis
5296
7374
  createPrivateKeysIntent?: {
5297
7375
  privateKeys: {
5298
7376
  privateKeyName: string;
5299
- curve: "CURVE_SECP256K1";
7377
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
5300
7378
  privateKeyTags: string[];
5301
7379
  addressFormats: ("ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM")[];
5302
7380
  }[];
@@ -5305,7 +7383,7 @@ export declare const postDeletePolicy: (input: TPostDeletePolicyInput) => Promis
5305
7383
  privateKeyId: string;
5306
7384
  payload: string;
5307
7385
  encoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8";
5308
- hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256";
7386
+ hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256" | "HASH_FUNCTION_NOT_APPLICABLE";
5309
7387
  };
5310
7388
  createInvitationsIntent?: {
5311
7389
  invitations: {
@@ -5455,6 +7533,18 @@ export declare const postDeletePolicy: (input: TPostDeletePolicyInput) => Promis
5455
7533
  threshold: number;
5456
7534
  userIds: string[];
5457
7535
  };
7536
+ updateUserTagIntent?: {
7537
+ userTagId: string;
7538
+ newUserTagName?: string;
7539
+ addUserIds: string[];
7540
+ removeUserIds: string[];
7541
+ };
7542
+ updatePrivateKeyTagIntent?: {
7543
+ privateKeyTagId: string;
7544
+ newPrivateKeyTagName?: string;
7545
+ addPrivateKeyIds: string[];
7546
+ removePrivateKeyIds: string[];
7547
+ };
5458
7548
  };
5459
7549
  result: {
5460
7550
  createOrganizationResult?: {
@@ -5544,6 +7634,12 @@ export declare const postDeletePolicy: (input: TPostDeletePolicyInput) => Promis
5544
7634
  updateRootQuorumResult?: {
5545
7635
  [key: string]: unknown;
5546
7636
  };
7637
+ updateUserTagResult?: {
7638
+ userTagId: string;
7639
+ };
7640
+ updatePrivateKeyTagResult?: {
7641
+ privateKeyTagId: string;
7642
+ };
5547
7643
  };
5548
7644
  votes: {
5549
7645
  id: string;
@@ -5626,32 +7722,32 @@ export declare const postDeletePolicy: (input: TPostDeletePolicyInput) => Promis
5626
7722
  };
5627
7723
  }>;
5628
7724
  /**
5629
- * `POST /public/v1/submit/sign_raw_payload`
7725
+ * `POST /public/v1/submit/update_private_key_tag`
5630
7726
  */
5631
- type TPostSignRawPayloadBody = operations["PublicApiService_SignRawPayload"]["parameters"]["body"]["body"];
7727
+ type TPostUpdatePrivateKeyTagBody = operations["PublicApiService_UpdatePrivateKeyTag"]["parameters"]["body"]["body"];
5632
7728
  /**
5633
- * `POST /public/v1/submit/sign_raw_payload`
7729
+ * `POST /public/v1/submit/update_private_key_tag`
5634
7730
  */
5635
- export type TPostSignRawPayloadResponse = operations["PublicApiService_SignRawPayload"]["responses"]["200"]["schema"];
7731
+ export type TPostUpdatePrivateKeyTagResponse = operations["PublicApiService_UpdatePrivateKeyTag"]["responses"]["200"]["schema"];
5636
7732
  /**
5637
- * `POST /public/v1/submit/sign_raw_payload`
7733
+ * `POST /public/v1/submit/update_private_key_tag`
5638
7734
  */
5639
- export type TPostSignRawPayloadInput = {
5640
- body: TPostSignRawPayloadBody;
7735
+ export type TPostUpdatePrivateKeyTagInput = {
7736
+ body: TPostUpdatePrivateKeyTagBody;
5641
7737
  };
5642
7738
  /**
5643
- * Sign Raw Payload
7739
+ * Update Private Key Tag
5644
7740
  *
5645
- * Sign a raw payload with a Private Key
7741
+ * Update human-readable name or associated private keys. Note that this activity is atomic: all of the updates will succeed at once, or all of them will fail.
5646
7742
  *
5647
- * `POST /public/v1/submit/sign_raw_payload`
7743
+ * `POST /public/v1/submit/update_private_key_tag`
5648
7744
  */
5649
- export declare const postSignRawPayload: (input: TPostSignRawPayloadInput) => Promise<{
7745
+ export declare const postUpdatePrivateKeyTag: (input: TPostUpdatePrivateKeyTagInput) => Promise<{
5650
7746
  activity: {
5651
7747
  id: string;
5652
7748
  organizationId: string;
5653
7749
  status: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
5654
- type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM";
7750
+ type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG";
5655
7751
  intent: {
5656
7752
  createOrganizationIntent: {
5657
7753
  organizationName: string;
@@ -5748,7 +7844,7 @@ export declare const postSignRawPayload: (input: TPostSignRawPayloadInput) => Pr
5748
7844
  createPrivateKeysIntent?: {
5749
7845
  privateKeys: {
5750
7846
  privateKeyName: string;
5751
- curve: "CURVE_SECP256K1";
7847
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
5752
7848
  privateKeyTags: string[];
5753
7849
  addressFormats: ("ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM")[];
5754
7850
  }[];
@@ -5757,7 +7853,7 @@ export declare const postSignRawPayload: (input: TPostSignRawPayloadInput) => Pr
5757
7853
  privateKeyId: string;
5758
7854
  payload: string;
5759
7855
  encoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8";
5760
- hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256";
7856
+ hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256" | "HASH_FUNCTION_NOT_APPLICABLE";
5761
7857
  };
5762
7858
  createInvitationsIntent?: {
5763
7859
  invitations: {
@@ -5907,6 +8003,18 @@ export declare const postSignRawPayload: (input: TPostSignRawPayloadInput) => Pr
5907
8003
  threshold: number;
5908
8004
  userIds: string[];
5909
8005
  };
8006
+ updateUserTagIntent?: {
8007
+ userTagId: string;
8008
+ newUserTagName?: string;
8009
+ addUserIds: string[];
8010
+ removeUserIds: string[];
8011
+ };
8012
+ updatePrivateKeyTagIntent?: {
8013
+ privateKeyTagId: string;
8014
+ newPrivateKeyTagName?: string;
8015
+ addPrivateKeyIds: string[];
8016
+ removePrivateKeyIds: string[];
8017
+ };
5910
8018
  };
5911
8019
  result: {
5912
8020
  createOrganizationResult?: {
@@ -5996,6 +8104,12 @@ export declare const postSignRawPayload: (input: TPostSignRawPayloadInput) => Pr
5996
8104
  updateRootQuorumResult?: {
5997
8105
  [key: string]: unknown;
5998
8106
  };
8107
+ updateUserTagResult?: {
8108
+ userTagId: string;
8109
+ };
8110
+ updatePrivateKeyTagResult?: {
8111
+ privateKeyTagId: string;
8112
+ };
5999
8113
  };
6000
8114
  votes: {
6001
8115
  id: string;
@@ -6078,32 +8192,32 @@ export declare const postSignRawPayload: (input: TPostSignRawPayloadInput) => Pr
6078
8192
  };
6079
8193
  }>;
6080
8194
  /**
6081
- * `POST /public/v1/submit/sign_transaction`
8195
+ * `POST /public/v1/submit/update_user_tag`
6082
8196
  */
6083
- type TPostSignTransactionBody = operations["PublicApiService_SignTransaction"]["parameters"]["body"]["body"];
8197
+ type TPostUpdateUserTagBody = operations["PublicApiService_UpdateUserTag"]["parameters"]["body"]["body"];
6084
8198
  /**
6085
- * `POST /public/v1/submit/sign_transaction`
8199
+ * `POST /public/v1/submit/update_user_tag`
6086
8200
  */
6087
- export type TPostSignTransactionResponse = operations["PublicApiService_SignTransaction"]["responses"]["200"]["schema"];
8201
+ export type TPostUpdateUserTagResponse = operations["PublicApiService_UpdateUserTag"]["responses"]["200"]["schema"];
6088
8202
  /**
6089
- * `POST /public/v1/submit/sign_transaction`
8203
+ * `POST /public/v1/submit/update_user_tag`
6090
8204
  */
6091
- export type TPostSignTransactionInput = {
6092
- body: TPostSignTransactionBody;
8205
+ export type TPostUpdateUserTagInput = {
8206
+ body: TPostUpdateUserTagBody;
6093
8207
  };
6094
8208
  /**
6095
- * Sign Transaction
8209
+ * Update User Tag
6096
8210
  *
6097
- * Sign a transaction with a Private Key
8211
+ * Update human-readable name or associated users. Note that this activity is atomic: all of the updates will succeed at once, or all of them will fail.
6098
8212
  *
6099
- * `POST /public/v1/submit/sign_transaction`
8213
+ * `POST /public/v1/submit/update_user_tag`
6100
8214
  */
6101
- export declare const postSignTransaction: (input: TPostSignTransactionInput) => Promise<{
8215
+ export declare const postUpdateUserTag: (input: TPostUpdateUserTagInput) => Promise<{
6102
8216
  activity: {
6103
8217
  id: string;
6104
8218
  organizationId: string;
6105
8219
  status: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
6106
- type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM";
8220
+ type: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG";
6107
8221
  intent: {
6108
8222
  createOrganizationIntent: {
6109
8223
  organizationName: string;
@@ -6200,7 +8314,7 @@ export declare const postSignTransaction: (input: TPostSignTransactionInput) =>
6200
8314
  createPrivateKeysIntent?: {
6201
8315
  privateKeys: {
6202
8316
  privateKeyName: string;
6203
- curve: "CURVE_SECP256K1";
8317
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
6204
8318
  privateKeyTags: string[];
6205
8319
  addressFormats: ("ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM")[];
6206
8320
  }[];
@@ -6209,7 +8323,7 @@ export declare const postSignTransaction: (input: TPostSignTransactionInput) =>
6209
8323
  privateKeyId: string;
6210
8324
  payload: string;
6211
8325
  encoding: "PAYLOAD_ENCODING_HEXADECIMAL" | "PAYLOAD_ENCODING_TEXT_UTF8";
6212
- hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256";
8326
+ hashFunction: "HASH_FUNCTION_NO_OP" | "HASH_FUNCTION_SHA256" | "HASH_FUNCTION_KECCAK256" | "HASH_FUNCTION_NOT_APPLICABLE";
6213
8327
  };
6214
8328
  createInvitationsIntent?: {
6215
8329
  invitations: {
@@ -6359,6 +8473,18 @@ export declare const postSignTransaction: (input: TPostSignTransactionInput) =>
6359
8473
  threshold: number;
6360
8474
  userIds: string[];
6361
8475
  };
8476
+ updateUserTagIntent?: {
8477
+ userTagId: string;
8478
+ newUserTagName?: string;
8479
+ addUserIds: string[];
8480
+ removeUserIds: string[];
8481
+ };
8482
+ updatePrivateKeyTagIntent?: {
8483
+ privateKeyTagId: string;
8484
+ newPrivateKeyTagName?: string;
8485
+ addPrivateKeyIds: string[];
8486
+ removePrivateKeyIds: string[];
8487
+ };
6362
8488
  };
6363
8489
  result: {
6364
8490
  createOrganizationResult?: {
@@ -6448,6 +8574,12 @@ export declare const postSignTransaction: (input: TPostSignTransactionInput) =>
6448
8574
  updateRootQuorumResult?: {
6449
8575
  [key: string]: unknown;
6450
8576
  };
8577
+ updateUserTagResult?: {
8578
+ userTagId: string;
8579
+ };
8580
+ updatePrivateKeyTagResult?: {
8581
+ privateKeyTagId: string;
8582
+ };
6451
8583
  };
6452
8584
  votes: {
6453
8585
  id: string;
@@ -6563,7 +8695,7 @@ export declare const postGetPrivateKeyBackwardsCompat: (input: TPostGetPrivateKe
6563
8695
  privateKeyId: string;
6564
8696
  publicKey: string;
6565
8697
  privateKeyName: string;
6566
- curve: "CURVE_SECP256K1";
8698
+ curve: "CURVE_SECP256K1" | "CURVE_ED25519";
6567
8699
  addresses: {
6568
8700
  format?: "ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM";
6569
8701
  address?: string;