@turnkey/http 2.6.2 → 2.7.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.
@@ -148,9 +148,7 @@ export declare const getActivity: (input: TGetActivityInput) => Promise<{
148
148
  receiverUserEmail: string;
149
149
  receiverUserTags: string[];
150
150
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
151
- senderUserId: string; /**
152
- * `POST /public/v1/submit/sign_raw_payload`
153
- */
151
+ senderUserId: string;
154
152
  }[];
155
153
  };
156
154
  acceptInvitationIntent?: {
@@ -563,7 +561,9 @@ export declare const getActivity: (input: TGetActivityInput) => Promise<{
563
561
  };
564
562
  disableEmailRecovery?: boolean;
565
563
  disableEmailAuth?: boolean;
566
- };
564
+ }; /**
565
+ * `POST /public/v1/submit/set_organization_feature`
566
+ */
567
567
  emailAuthIntent?: {
568
568
  email: string;
569
569
  targetPublicKey: string;
@@ -663,9 +663,6 @@ export declare const getActivity: (input: TGetActivityInput) => Promise<{
663
663
  activateBillingTierResult?: {
664
664
  productId: string;
665
665
  };
666
- /**
667
- * `POST /tkhq/api/v1/noop-codegen-anchor`
668
- */
669
666
  deletePaymentMethodResult?: {
670
667
  paymentMethodId: string;
671
668
  };
@@ -1068,13 +1065,6 @@ export type TGetOrganizationBody = operations["PublicApiService_GetOrganization"
1068
1065
  */
1069
1066
  export declare const getOrganization: (input: TGetOrganizationInput) => Promise<{
1070
1067
  organizationData: {
1071
- /**
1072
- * Sign Transaction
1073
- *
1074
- * Sign a transaction
1075
- *
1076
- * `POST /public/v1/submit/sign_transaction`
1077
- */
1078
1068
  organizationId?: string;
1079
1069
  name?: string;
1080
1070
  users?: {
@@ -1149,6 +1139,9 @@ export declare const getOrganization: (input: TGetOrganizationInput) => Promise<
1149
1139
  privateKeyId: string;
1150
1140
  publicKey: string;
1151
1141
  privateKeyName: string;
1142
+ /**
1143
+ * `POST /public/v1/submit/update_private_key_tag`
1144
+ */
1152
1145
  curve: "CURVE_SECP256K1" | "CURVE_ED25519";
1153
1146
  addresses: {
1154
1147
  format?: "ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM" | "ADDRESS_FORMAT_SOLANA" | "ADDRESS_FORMAT_COSMOS";
@@ -1295,6 +1288,9 @@ export declare const getPrivateKey: (input: TGetPrivateKeyInput) => Promise<{
1295
1288
  privateKeyId: string;
1296
1289
  publicKey: string;
1297
1290
  privateKeyName: string;
1291
+ /**
1292
+ * `POST /public/v1/submit/update_private_key_tag`
1293
+ */
1298
1294
  curve: "CURVE_SECP256K1" | "CURVE_ED25519";
1299
1295
  addresses: {
1300
1296
  format?: "ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM" | "ADDRESS_FORMAT_SOLANA" | "ADDRESS_FORMAT_COSMOS";
@@ -1589,9 +1585,7 @@ export declare const getActivities: (input: TGetActivitiesInput) => Promise<{
1589
1585
  receiverUserEmail: string;
1590
1586
  receiverUserTags: string[];
1591
1587
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
1592
- senderUserId: string; /**
1593
- * `POST /public/v1/submit/sign_raw_payload`
1594
- */
1588
+ senderUserId: string;
1595
1589
  }[];
1596
1590
  };
1597
1591
  acceptInvitationIntent?: {
@@ -2004,7 +1998,9 @@ export declare const getActivities: (input: TGetActivitiesInput) => Promise<{
2004
1998
  };
2005
1999
  disableEmailRecovery?: boolean;
2006
2000
  disableEmailAuth?: boolean;
2007
- };
2001
+ }; /**
2002
+ * `POST /public/v1/submit/set_organization_feature`
2003
+ */
2008
2004
  emailAuthIntent?: {
2009
2005
  email: string;
2010
2006
  targetPublicKey: string;
@@ -2104,9 +2100,6 @@ export declare const getActivities: (input: TGetActivitiesInput) => Promise<{
2104
2100
  activateBillingTierResult?: {
2105
2101
  productId: string;
2106
2102
  };
2107
- /**
2108
- * `POST /tkhq/api/v1/noop-codegen-anchor`
2109
- */
2110
2103
  deletePaymentMethodResult?: {
2111
2104
  paymentMethodId: string;
2112
2105
  };
@@ -2407,6 +2400,9 @@ export declare const getPrivateKeys: (input: TGetPrivateKeysInput) => Promise<{
2407
2400
  privateKeyId: string;
2408
2401
  publicKey: string;
2409
2402
  privateKeyName: string;
2403
+ /**
2404
+ * `POST /public/v1/submit/update_private_key_tag`
2405
+ */
2410
2406
  curve: "CURVE_SECP256K1" | "CURVE_ED25519";
2411
2407
  addresses: {
2412
2408
  format?: "ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM" | "ADDRESS_FORMAT_SOLANA" | "ADDRESS_FORMAT_COSMOS";
@@ -2666,6 +2662,9 @@ export type TGetWhoamiBody = operations["PublicApiService_GetWhoami"]["parameter
2666
2662
  export declare const getWhoami: (input: TGetWhoamiInput) => Promise<{
2667
2663
  organizationId: string;
2668
2664
  organizationName: string;
2665
+ /**
2666
+ * `POST /public/v1/submit/init_user_email_recovery`
2667
+ */
2669
2668
  userId: string;
2670
2669
  username: string;
2671
2670
  }>;
@@ -2823,9 +2822,7 @@ export declare const approveActivity: (input: TApproveActivityInput) => Promise<
2823
2822
  receiverUserEmail: string;
2824
2823
  receiverUserTags: string[];
2825
2824
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
2826
- senderUserId: string; /**
2827
- * `POST /public/v1/submit/sign_raw_payload`
2828
- */
2825
+ senderUserId: string;
2829
2826
  }[];
2830
2827
  };
2831
2828
  acceptInvitationIntent?: {
@@ -3238,7 +3235,9 @@ export declare const approveActivity: (input: TApproveActivityInput) => Promise<
3238
3235
  };
3239
3236
  disableEmailRecovery?: boolean;
3240
3237
  disableEmailAuth?: boolean;
3241
- };
3238
+ }; /**
3239
+ * `POST /public/v1/submit/set_organization_feature`
3240
+ */
3242
3241
  emailAuthIntent?: {
3243
3242
  email: string;
3244
3243
  targetPublicKey: string;
@@ -3338,9 +3337,6 @@ export declare const approveActivity: (input: TApproveActivityInput) => Promise<
3338
3337
  activateBillingTierResult?: {
3339
3338
  productId: string;
3340
3339
  };
3341
- /**
3342
- * `POST /tkhq/api/v1/noop-codegen-anchor`
3343
- */
3344
3340
  deletePaymentMethodResult?: {
3345
3341
  paymentMethodId: string;
3346
3342
  };
@@ -3676,9 +3672,7 @@ export declare const createApiKeys: (input: TCreateApiKeysInput) => Promise<{
3676
3672
  receiverUserEmail: string;
3677
3673
  receiverUserTags: string[];
3678
3674
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
3679
- senderUserId: string; /**
3680
- * `POST /public/v1/submit/sign_raw_payload`
3681
- */
3675
+ senderUserId: string;
3682
3676
  }[];
3683
3677
  };
3684
3678
  acceptInvitationIntent?: {
@@ -4091,7 +4085,9 @@ export declare const createApiKeys: (input: TCreateApiKeysInput) => Promise<{
4091
4085
  };
4092
4086
  disableEmailRecovery?: boolean;
4093
4087
  disableEmailAuth?: boolean;
4094
- };
4088
+ }; /**
4089
+ * `POST /public/v1/submit/set_organization_feature`
4090
+ */
4095
4091
  emailAuthIntent?: {
4096
4092
  email: string;
4097
4093
  targetPublicKey: string;
@@ -4191,9 +4187,6 @@ export declare const createApiKeys: (input: TCreateApiKeysInput) => Promise<{
4191
4187
  activateBillingTierResult?: {
4192
4188
  productId: string;
4193
4189
  };
4194
- /**
4195
- * `POST /tkhq/api/v1/noop-codegen-anchor`
4196
- */
4197
4190
  deletePaymentMethodResult?: {
4198
4191
  paymentMethodId: string;
4199
4192
  };
@@ -4529,9 +4522,7 @@ export declare const createApiOnlyUsers: (input: TCreateApiOnlyUsersInput) => Pr
4529
4522
  receiverUserEmail: string;
4530
4523
  receiverUserTags: string[];
4531
4524
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
4532
- senderUserId: string; /**
4533
- * `POST /public/v1/submit/sign_raw_payload`
4534
- */
4525
+ senderUserId: string;
4535
4526
  }[];
4536
4527
  };
4537
4528
  acceptInvitationIntent?: {
@@ -4944,7 +4935,9 @@ export declare const createApiOnlyUsers: (input: TCreateApiOnlyUsersInput) => Pr
4944
4935
  };
4945
4936
  disableEmailRecovery?: boolean;
4946
4937
  disableEmailAuth?: boolean;
4947
- };
4938
+ }; /**
4939
+ * `POST /public/v1/submit/set_organization_feature`
4940
+ */
4948
4941
  emailAuthIntent?: {
4949
4942
  email: string;
4950
4943
  targetPublicKey: string;
@@ -5044,9 +5037,6 @@ export declare const createApiOnlyUsers: (input: TCreateApiOnlyUsersInput) => Pr
5044
5037
  activateBillingTierResult?: {
5045
5038
  productId: string;
5046
5039
  };
5047
- /**
5048
- * `POST /tkhq/api/v1/noop-codegen-anchor`
5049
- */
5050
5040
  deletePaymentMethodResult?: {
5051
5041
  paymentMethodId: string;
5052
5042
  };
@@ -5382,9 +5372,7 @@ export declare const createAuthenticators: (input: TCreateAuthenticatorsInput) =
5382
5372
  receiverUserEmail: string;
5383
5373
  receiverUserTags: string[];
5384
5374
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
5385
- senderUserId: string; /**
5386
- * `POST /public/v1/submit/sign_raw_payload`
5387
- */
5375
+ senderUserId: string;
5388
5376
  }[];
5389
5377
  };
5390
5378
  acceptInvitationIntent?: {
@@ -5797,7 +5785,9 @@ export declare const createAuthenticators: (input: TCreateAuthenticatorsInput) =
5797
5785
  };
5798
5786
  disableEmailRecovery?: boolean;
5799
5787
  disableEmailAuth?: boolean;
5800
- };
5788
+ }; /**
5789
+ * `POST /public/v1/submit/set_organization_feature`
5790
+ */
5801
5791
  emailAuthIntent?: {
5802
5792
  email: string;
5803
5793
  targetPublicKey: string;
@@ -5897,9 +5887,6 @@ export declare const createAuthenticators: (input: TCreateAuthenticatorsInput) =
5897
5887
  activateBillingTierResult?: {
5898
5888
  productId: string;
5899
5889
  };
5900
- /**
5901
- * `POST /tkhq/api/v1/noop-codegen-anchor`
5902
- */
5903
5890
  deletePaymentMethodResult?: {
5904
5891
  paymentMethodId: string;
5905
5892
  };
@@ -6235,9 +6222,7 @@ export declare const createInvitations: (input: TCreateInvitationsInput) => Prom
6235
6222
  receiverUserEmail: string;
6236
6223
  receiverUserTags: string[];
6237
6224
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
6238
- senderUserId: string; /**
6239
- * `POST /public/v1/submit/sign_raw_payload`
6240
- */
6225
+ senderUserId: string;
6241
6226
  }[];
6242
6227
  };
6243
6228
  acceptInvitationIntent?: {
@@ -6650,7 +6635,9 @@ export declare const createInvitations: (input: TCreateInvitationsInput) => Prom
6650
6635
  };
6651
6636
  disableEmailRecovery?: boolean;
6652
6637
  disableEmailAuth?: boolean;
6653
- };
6638
+ }; /**
6639
+ * `POST /public/v1/submit/set_organization_feature`
6640
+ */
6654
6641
  emailAuthIntent?: {
6655
6642
  email: string;
6656
6643
  targetPublicKey: string;
@@ -6750,9 +6737,6 @@ export declare const createInvitations: (input: TCreateInvitationsInput) => Prom
6750
6737
  activateBillingTierResult?: {
6751
6738
  productId: string;
6752
6739
  };
6753
- /**
6754
- * `POST /tkhq/api/v1/noop-codegen-anchor`
6755
- */
6756
6740
  deletePaymentMethodResult?: {
6757
6741
  paymentMethodId: string;
6758
6742
  };
@@ -7088,9 +7072,7 @@ export declare const createPolicy: (input: TCreatePolicyInput) => Promise<{
7088
7072
  receiverUserEmail: string;
7089
7073
  receiverUserTags: string[];
7090
7074
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
7091
- senderUserId: string; /**
7092
- * `POST /public/v1/submit/sign_raw_payload`
7093
- */
7075
+ senderUserId: string;
7094
7076
  }[];
7095
7077
  };
7096
7078
  acceptInvitationIntent?: {
@@ -7503,7 +7485,9 @@ export declare const createPolicy: (input: TCreatePolicyInput) => Promise<{
7503
7485
  };
7504
7486
  disableEmailRecovery?: boolean;
7505
7487
  disableEmailAuth?: boolean;
7506
- };
7488
+ }; /**
7489
+ * `POST /public/v1/submit/set_organization_feature`
7490
+ */
7507
7491
  emailAuthIntent?: {
7508
7492
  email: string;
7509
7493
  targetPublicKey: string;
@@ -7603,9 +7587,6 @@ export declare const createPolicy: (input: TCreatePolicyInput) => Promise<{
7603
7587
  activateBillingTierResult?: {
7604
7588
  productId: string;
7605
7589
  };
7606
- /**
7607
- * `POST /tkhq/api/v1/noop-codegen-anchor`
7608
- */
7609
7590
  deletePaymentMethodResult?: {
7610
7591
  paymentMethodId: string;
7611
7592
  };
@@ -7941,9 +7922,7 @@ export declare const createPrivateKeyTag: (input: TCreatePrivateKeyTagInput) =>
7941
7922
  receiverUserEmail: string;
7942
7923
  receiverUserTags: string[];
7943
7924
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
7944
- senderUserId: string; /**
7945
- * `POST /public/v1/submit/sign_raw_payload`
7946
- */
7925
+ senderUserId: string;
7947
7926
  }[];
7948
7927
  };
7949
7928
  acceptInvitationIntent?: {
@@ -8356,7 +8335,9 @@ export declare const createPrivateKeyTag: (input: TCreatePrivateKeyTagInput) =>
8356
8335
  };
8357
8336
  disableEmailRecovery?: boolean;
8358
8337
  disableEmailAuth?: boolean;
8359
- };
8338
+ }; /**
8339
+ * `POST /public/v1/submit/set_organization_feature`
8340
+ */
8360
8341
  emailAuthIntent?: {
8361
8342
  email: string;
8362
8343
  targetPublicKey: string;
@@ -8456,9 +8437,6 @@ export declare const createPrivateKeyTag: (input: TCreatePrivateKeyTagInput) =>
8456
8437
  activateBillingTierResult?: {
8457
8438
  productId: string;
8458
8439
  };
8459
- /**
8460
- * `POST /tkhq/api/v1/noop-codegen-anchor`
8461
- */
8462
8440
  deletePaymentMethodResult?: {
8463
8441
  paymentMethodId: string;
8464
8442
  };
@@ -8794,9 +8772,7 @@ export declare const createPrivateKeys: (input: TCreatePrivateKeysInput) => Prom
8794
8772
  receiverUserEmail: string;
8795
8773
  receiverUserTags: string[];
8796
8774
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
8797
- senderUserId: string; /**
8798
- * `POST /public/v1/submit/sign_raw_payload`
8799
- */
8775
+ senderUserId: string;
8800
8776
  }[];
8801
8777
  };
8802
8778
  acceptInvitationIntent?: {
@@ -9209,7 +9185,9 @@ export declare const createPrivateKeys: (input: TCreatePrivateKeysInput) => Prom
9209
9185
  };
9210
9186
  disableEmailRecovery?: boolean;
9211
9187
  disableEmailAuth?: boolean;
9212
- };
9188
+ }; /**
9189
+ * `POST /public/v1/submit/set_organization_feature`
9190
+ */
9213
9191
  emailAuthIntent?: {
9214
9192
  email: string;
9215
9193
  targetPublicKey: string;
@@ -9309,9 +9287,6 @@ export declare const createPrivateKeys: (input: TCreatePrivateKeysInput) => Prom
9309
9287
  activateBillingTierResult?: {
9310
9288
  productId: string;
9311
9289
  };
9312
- /**
9313
- * `POST /tkhq/api/v1/noop-codegen-anchor`
9314
- */
9315
9290
  deletePaymentMethodResult?: {
9316
9291
  paymentMethodId: string;
9317
9292
  };
@@ -9647,9 +9622,7 @@ export declare const createSubOrganization: (input: TCreateSubOrganizationInput)
9647
9622
  receiverUserEmail: string;
9648
9623
  receiverUserTags: string[];
9649
9624
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
9650
- senderUserId: string; /**
9651
- * `POST /public/v1/submit/sign_raw_payload`
9652
- */
9625
+ senderUserId: string;
9653
9626
  }[];
9654
9627
  };
9655
9628
  acceptInvitationIntent?: {
@@ -10062,7 +10035,9 @@ export declare const createSubOrganization: (input: TCreateSubOrganizationInput)
10062
10035
  };
10063
10036
  disableEmailRecovery?: boolean;
10064
10037
  disableEmailAuth?: boolean;
10065
- };
10038
+ }; /**
10039
+ * `POST /public/v1/submit/set_organization_feature`
10040
+ */
10066
10041
  emailAuthIntent?: {
10067
10042
  email: string;
10068
10043
  targetPublicKey: string;
@@ -10162,9 +10137,6 @@ export declare const createSubOrganization: (input: TCreateSubOrganizationInput)
10162
10137
  activateBillingTierResult?: {
10163
10138
  productId: string;
10164
10139
  };
10165
- /**
10166
- * `POST /tkhq/api/v1/noop-codegen-anchor`
10167
- */
10168
10140
  deletePaymentMethodResult?: {
10169
10141
  paymentMethodId: string;
10170
10142
  };
@@ -10500,9 +10472,7 @@ export declare const createUserTag: (input: TCreateUserTagInput) => Promise<{
10500
10472
  receiverUserEmail: string;
10501
10473
  receiverUserTags: string[];
10502
10474
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
10503
- senderUserId: string; /**
10504
- * `POST /public/v1/submit/sign_raw_payload`
10505
- */
10475
+ senderUserId: string;
10506
10476
  }[];
10507
10477
  };
10508
10478
  acceptInvitationIntent?: {
@@ -10915,7 +10885,9 @@ export declare const createUserTag: (input: TCreateUserTagInput) => Promise<{
10915
10885
  };
10916
10886
  disableEmailRecovery?: boolean;
10917
10887
  disableEmailAuth?: boolean;
10918
- };
10888
+ }; /**
10889
+ * `POST /public/v1/submit/set_organization_feature`
10890
+ */
10919
10891
  emailAuthIntent?: {
10920
10892
  email: string;
10921
10893
  targetPublicKey: string;
@@ -11015,9 +10987,6 @@ export declare const createUserTag: (input: TCreateUserTagInput) => Promise<{
11015
10987
  activateBillingTierResult?: {
11016
10988
  productId: string;
11017
10989
  };
11018
- /**
11019
- * `POST /tkhq/api/v1/noop-codegen-anchor`
11020
- */
11021
10990
  deletePaymentMethodResult?: {
11022
10991
  paymentMethodId: string;
11023
10992
  };
@@ -11353,9 +11322,7 @@ export declare const createUsers: (input: TCreateUsersInput) => Promise<{
11353
11322
  receiverUserEmail: string;
11354
11323
  receiverUserTags: string[];
11355
11324
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
11356
- senderUserId: string; /**
11357
- * `POST /public/v1/submit/sign_raw_payload`
11358
- */
11325
+ senderUserId: string;
11359
11326
  }[];
11360
11327
  };
11361
11328
  acceptInvitationIntent?: {
@@ -11768,7 +11735,9 @@ export declare const createUsers: (input: TCreateUsersInput) => Promise<{
11768
11735
  };
11769
11736
  disableEmailRecovery?: boolean;
11770
11737
  disableEmailAuth?: boolean;
11771
- };
11738
+ }; /**
11739
+ * `POST /public/v1/submit/set_organization_feature`
11740
+ */
11772
11741
  emailAuthIntent?: {
11773
11742
  email: string;
11774
11743
  targetPublicKey: string;
@@ -11868,9 +11837,6 @@ export declare const createUsers: (input: TCreateUsersInput) => Promise<{
11868
11837
  activateBillingTierResult?: {
11869
11838
  productId: string;
11870
11839
  };
11871
- /**
11872
- * `POST /tkhq/api/v1/noop-codegen-anchor`
11873
- */
11874
11840
  deletePaymentMethodResult?: {
11875
11841
  paymentMethodId: string;
11876
11842
  };
@@ -12206,9 +12172,7 @@ export declare const createWallet: (input: TCreateWalletInput) => Promise<{
12206
12172
  receiverUserEmail: string;
12207
12173
  receiverUserTags: string[];
12208
12174
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
12209
- senderUserId: string; /**
12210
- * `POST /public/v1/submit/sign_raw_payload`
12211
- */
12175
+ senderUserId: string;
12212
12176
  }[];
12213
12177
  };
12214
12178
  acceptInvitationIntent?: {
@@ -12621,7 +12585,9 @@ export declare const createWallet: (input: TCreateWalletInput) => Promise<{
12621
12585
  };
12622
12586
  disableEmailRecovery?: boolean;
12623
12587
  disableEmailAuth?: boolean;
12624
- };
12588
+ }; /**
12589
+ * `POST /public/v1/submit/set_organization_feature`
12590
+ */
12625
12591
  emailAuthIntent?: {
12626
12592
  email: string;
12627
12593
  targetPublicKey: string;
@@ -12721,9 +12687,6 @@ export declare const createWallet: (input: TCreateWalletInput) => Promise<{
12721
12687
  activateBillingTierResult?: {
12722
12688
  productId: string;
12723
12689
  };
12724
- /**
12725
- * `POST /tkhq/api/v1/noop-codegen-anchor`
12726
- */
12727
12690
  deletePaymentMethodResult?: {
12728
12691
  paymentMethodId: string;
12729
12692
  };
@@ -13059,9 +13022,7 @@ export declare const createWalletAccounts: (input: TCreateWalletAccountsInput) =
13059
13022
  receiverUserEmail: string;
13060
13023
  receiverUserTags: string[];
13061
13024
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
13062
- senderUserId: string; /**
13063
- * `POST /public/v1/submit/sign_raw_payload`
13064
- */
13025
+ senderUserId: string;
13065
13026
  }[];
13066
13027
  };
13067
13028
  acceptInvitationIntent?: {
@@ -13474,7 +13435,9 @@ export declare const createWalletAccounts: (input: TCreateWalletAccountsInput) =
13474
13435
  };
13475
13436
  disableEmailRecovery?: boolean;
13476
13437
  disableEmailAuth?: boolean;
13477
- };
13438
+ }; /**
13439
+ * `POST /public/v1/submit/set_organization_feature`
13440
+ */
13478
13441
  emailAuthIntent?: {
13479
13442
  email: string;
13480
13443
  targetPublicKey: string;
@@ -13574,9 +13537,6 @@ export declare const createWalletAccounts: (input: TCreateWalletAccountsInput) =
13574
13537
  activateBillingTierResult?: {
13575
13538
  productId: string;
13576
13539
  };
13577
- /**
13578
- * `POST /tkhq/api/v1/noop-codegen-anchor`
13579
- */
13580
13540
  deletePaymentMethodResult?: {
13581
13541
  paymentMethodId: string;
13582
13542
  };
@@ -13912,9 +13872,7 @@ export declare const deleteApiKeys: (input: TDeleteApiKeysInput) => Promise<{
13912
13872
  receiverUserEmail: string;
13913
13873
  receiverUserTags: string[];
13914
13874
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
13915
- senderUserId: string; /**
13916
- * `POST /public/v1/submit/sign_raw_payload`
13917
- */
13875
+ senderUserId: string;
13918
13876
  }[];
13919
13877
  };
13920
13878
  acceptInvitationIntent?: {
@@ -14327,7 +14285,9 @@ export declare const deleteApiKeys: (input: TDeleteApiKeysInput) => Promise<{
14327
14285
  };
14328
14286
  disableEmailRecovery?: boolean;
14329
14287
  disableEmailAuth?: boolean;
14330
- };
14288
+ }; /**
14289
+ * `POST /public/v1/submit/set_organization_feature`
14290
+ */
14331
14291
  emailAuthIntent?: {
14332
14292
  email: string;
14333
14293
  targetPublicKey: string;
@@ -14427,9 +14387,6 @@ export declare const deleteApiKeys: (input: TDeleteApiKeysInput) => Promise<{
14427
14387
  activateBillingTierResult?: {
14428
14388
  productId: string;
14429
14389
  };
14430
- /**
14431
- * `POST /tkhq/api/v1/noop-codegen-anchor`
14432
- */
14433
14390
  deletePaymentMethodResult?: {
14434
14391
  paymentMethodId: string;
14435
14392
  };
@@ -14765,9 +14722,7 @@ export declare const deleteAuthenticators: (input: TDeleteAuthenticatorsInput) =
14765
14722
  receiverUserEmail: string;
14766
14723
  receiverUserTags: string[];
14767
14724
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
14768
- senderUserId: string; /**
14769
- * `POST /public/v1/submit/sign_raw_payload`
14770
- */
14725
+ senderUserId: string;
14771
14726
  }[];
14772
14727
  };
14773
14728
  acceptInvitationIntent?: {
@@ -15180,7 +15135,9 @@ export declare const deleteAuthenticators: (input: TDeleteAuthenticatorsInput) =
15180
15135
  };
15181
15136
  disableEmailRecovery?: boolean;
15182
15137
  disableEmailAuth?: boolean;
15183
- };
15138
+ }; /**
15139
+ * `POST /public/v1/submit/set_organization_feature`
15140
+ */
15184
15141
  emailAuthIntent?: {
15185
15142
  email: string;
15186
15143
  targetPublicKey: string;
@@ -15280,9 +15237,6 @@ export declare const deleteAuthenticators: (input: TDeleteAuthenticatorsInput) =
15280
15237
  activateBillingTierResult?: {
15281
15238
  productId: string;
15282
15239
  };
15283
- /**
15284
- * `POST /tkhq/api/v1/noop-codegen-anchor`
15285
- */
15286
15240
  deletePaymentMethodResult?: {
15287
15241
  paymentMethodId: string;
15288
15242
  };
@@ -15618,9 +15572,7 @@ export declare const deleteInvitation: (input: TDeleteInvitationInput) => Promis
15618
15572
  receiverUserEmail: string;
15619
15573
  receiverUserTags: string[];
15620
15574
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
15621
- senderUserId: string; /**
15622
- * `POST /public/v1/submit/sign_raw_payload`
15623
- */
15575
+ senderUserId: string;
15624
15576
  }[];
15625
15577
  };
15626
15578
  acceptInvitationIntent?: {
@@ -16033,7 +15985,9 @@ export declare const deleteInvitation: (input: TDeleteInvitationInput) => Promis
16033
15985
  };
16034
15986
  disableEmailRecovery?: boolean;
16035
15987
  disableEmailAuth?: boolean;
16036
- };
15988
+ }; /**
15989
+ * `POST /public/v1/submit/set_organization_feature`
15990
+ */
16037
15991
  emailAuthIntent?: {
16038
15992
  email: string;
16039
15993
  targetPublicKey: string;
@@ -16133,9 +16087,6 @@ export declare const deleteInvitation: (input: TDeleteInvitationInput) => Promis
16133
16087
  activateBillingTierResult?: {
16134
16088
  productId: string;
16135
16089
  };
16136
- /**
16137
- * `POST /tkhq/api/v1/noop-codegen-anchor`
16138
- */
16139
16090
  deletePaymentMethodResult?: {
16140
16091
  paymentMethodId: string;
16141
16092
  };
@@ -16471,9 +16422,7 @@ export declare const deletePolicy: (input: TDeletePolicyInput) => Promise<{
16471
16422
  receiverUserEmail: string;
16472
16423
  receiverUserTags: string[];
16473
16424
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
16474
- senderUserId: string; /**
16475
- * `POST /public/v1/submit/sign_raw_payload`
16476
- */
16425
+ senderUserId: string;
16477
16426
  }[];
16478
16427
  };
16479
16428
  acceptInvitationIntent?: {
@@ -16886,7 +16835,9 @@ export declare const deletePolicy: (input: TDeletePolicyInput) => Promise<{
16886
16835
  };
16887
16836
  disableEmailRecovery?: boolean;
16888
16837
  disableEmailAuth?: boolean;
16889
- };
16838
+ }; /**
16839
+ * `POST /public/v1/submit/set_organization_feature`
16840
+ */
16890
16841
  emailAuthIntent?: {
16891
16842
  email: string;
16892
16843
  targetPublicKey: string;
@@ -16986,9 +16937,6 @@ export declare const deletePolicy: (input: TDeletePolicyInput) => Promise<{
16986
16937
  activateBillingTierResult?: {
16987
16938
  productId: string;
16988
16939
  };
16989
- /**
16990
- * `POST /tkhq/api/v1/noop-codegen-anchor`
16991
- */
16992
16940
  deletePaymentMethodResult?: {
16993
16941
  paymentMethodId: string;
16994
16942
  };
@@ -17191,7 +17139,7 @@ export type TEmailAuthInput = {
17191
17139
  */
17192
17140
  export type TEmailAuthBody = operations["PublicApiService_EmailAuth"]["parameters"]["body"]["body"];
17193
17141
  /**
17194
- * Email Auth
17142
+ * Perform Email Auth
17195
17143
  *
17196
17144
  * Authenticate a user via Email
17197
17145
  *
@@ -17324,9 +17272,7 @@ export declare const emailAuth: (input: TEmailAuthInput) => Promise<{
17324
17272
  receiverUserEmail: string;
17325
17273
  receiverUserTags: string[];
17326
17274
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
17327
- senderUserId: string; /**
17328
- * `POST /public/v1/submit/sign_raw_payload`
17329
- */
17275
+ senderUserId: string;
17330
17276
  }[];
17331
17277
  };
17332
17278
  acceptInvitationIntent?: {
@@ -17739,7 +17685,9 @@ export declare const emailAuth: (input: TEmailAuthInput) => Promise<{
17739
17685
  };
17740
17686
  disableEmailRecovery?: boolean;
17741
17687
  disableEmailAuth?: boolean;
17742
- };
17688
+ }; /**
17689
+ * `POST /public/v1/submit/set_organization_feature`
17690
+ */
17743
17691
  emailAuthIntent?: {
17744
17692
  email: string;
17745
17693
  targetPublicKey: string;
@@ -17839,9 +17787,6 @@ export declare const emailAuth: (input: TEmailAuthInput) => Promise<{
17839
17787
  activateBillingTierResult?: {
17840
17788
  productId: string;
17841
17789
  };
17842
- /**
17843
- * `POST /tkhq/api/v1/noop-codegen-anchor`
17844
- */
17845
17790
  deletePaymentMethodResult?: {
17846
17791
  paymentMethodId: string;
17847
17792
  };
@@ -18177,9 +18122,7 @@ export declare const exportPrivateKey: (input: TExportPrivateKeyInput) => Promis
18177
18122
  receiverUserEmail: string;
18178
18123
  receiverUserTags: string[];
18179
18124
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
18180
- senderUserId: string; /**
18181
- * `POST /public/v1/submit/sign_raw_payload`
18182
- */
18125
+ senderUserId: string;
18183
18126
  }[];
18184
18127
  };
18185
18128
  acceptInvitationIntent?: {
@@ -18592,7 +18535,9 @@ export declare const exportPrivateKey: (input: TExportPrivateKeyInput) => Promis
18592
18535
  };
18593
18536
  disableEmailRecovery?: boolean;
18594
18537
  disableEmailAuth?: boolean;
18595
- };
18538
+ }; /**
18539
+ * `POST /public/v1/submit/set_organization_feature`
18540
+ */
18596
18541
  emailAuthIntent?: {
18597
18542
  email: string;
18598
18543
  targetPublicKey: string;
@@ -18692,9 +18637,6 @@ export declare const exportPrivateKey: (input: TExportPrivateKeyInput) => Promis
18692
18637
  activateBillingTierResult?: {
18693
18638
  productId: string;
18694
18639
  };
18695
- /**
18696
- * `POST /tkhq/api/v1/noop-codegen-anchor`
18697
- */
18698
18640
  deletePaymentMethodResult?: {
18699
18641
  paymentMethodId: string;
18700
18642
  };
@@ -19030,9 +18972,7 @@ export declare const exportWallet: (input: TExportWalletInput) => Promise<{
19030
18972
  receiverUserEmail: string;
19031
18973
  receiverUserTags: string[];
19032
18974
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
19033
- senderUserId: string; /**
19034
- * `POST /public/v1/submit/sign_raw_payload`
19035
- */
18975
+ senderUserId: string;
19036
18976
  }[];
19037
18977
  };
19038
18978
  acceptInvitationIntent?: {
@@ -19445,7 +19385,9 @@ export declare const exportWallet: (input: TExportWalletInput) => Promise<{
19445
19385
  };
19446
19386
  disableEmailRecovery?: boolean;
19447
19387
  disableEmailAuth?: boolean;
19448
- };
19388
+ }; /**
19389
+ * `POST /public/v1/submit/set_organization_feature`
19390
+ */
19449
19391
  emailAuthIntent?: {
19450
19392
  email: string;
19451
19393
  targetPublicKey: string;
@@ -19545,9 +19487,6 @@ export declare const exportWallet: (input: TExportWalletInput) => Promise<{
19545
19487
  activateBillingTierResult?: {
19546
19488
  productId: string;
19547
19489
  };
19548
- /**
19549
- * `POST /tkhq/api/v1/noop-codegen-anchor`
19550
- */
19551
19490
  deletePaymentMethodResult?: {
19552
19491
  paymentMethodId: string;
19553
19492
  };
@@ -19883,9 +19822,7 @@ export declare const exportWalletAccount: (input: TExportWalletAccountInput) =>
19883
19822
  receiverUserEmail: string;
19884
19823
  receiverUserTags: string[];
19885
19824
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
19886
- senderUserId: string; /**
19887
- * `POST /public/v1/submit/sign_raw_payload`
19888
- */
19825
+ senderUserId: string;
19889
19826
  }[];
19890
19827
  };
19891
19828
  acceptInvitationIntent?: {
@@ -20298,7 +20235,9 @@ export declare const exportWalletAccount: (input: TExportWalletAccountInput) =>
20298
20235
  };
20299
20236
  disableEmailRecovery?: boolean;
20300
20237
  disableEmailAuth?: boolean;
20301
- };
20238
+ }; /**
20239
+ * `POST /public/v1/submit/set_organization_feature`
20240
+ */
20302
20241
  emailAuthIntent?: {
20303
20242
  email: string;
20304
20243
  targetPublicKey: string;
@@ -20398,9 +20337,6 @@ export declare const exportWalletAccount: (input: TExportWalletAccountInput) =>
20398
20337
  activateBillingTierResult?: {
20399
20338
  productId: string;
20400
20339
  };
20401
- /**
20402
- * `POST /tkhq/api/v1/noop-codegen-anchor`
20403
- */
20404
20340
  deletePaymentMethodResult?: {
20405
20341
  paymentMethodId: string;
20406
20342
  };
@@ -20736,9 +20672,7 @@ export declare const initUserEmailRecovery: (input: TInitUserEmailRecoveryInput)
20736
20672
  receiverUserEmail: string;
20737
20673
  receiverUserTags: string[];
20738
20674
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
20739
- senderUserId: string; /**
20740
- * `POST /public/v1/submit/sign_raw_payload`
20741
- */
20675
+ senderUserId: string;
20742
20676
  }[];
20743
20677
  };
20744
20678
  acceptInvitationIntent?: {
@@ -21151,7 +21085,9 @@ export declare const initUserEmailRecovery: (input: TInitUserEmailRecoveryInput)
21151
21085
  };
21152
21086
  disableEmailRecovery?: boolean;
21153
21087
  disableEmailAuth?: boolean;
21154
- };
21088
+ }; /**
21089
+ * `POST /public/v1/submit/set_organization_feature`
21090
+ */
21155
21091
  emailAuthIntent?: {
21156
21092
  email: string;
21157
21093
  targetPublicKey: string;
@@ -21251,9 +21187,6 @@ export declare const initUserEmailRecovery: (input: TInitUserEmailRecoveryInput)
21251
21187
  activateBillingTierResult?: {
21252
21188
  productId: string;
21253
21189
  };
21254
- /**
21255
- * `POST /tkhq/api/v1/noop-codegen-anchor`
21256
- */
21257
21190
  deletePaymentMethodResult?: {
21258
21191
  paymentMethodId: string;
21259
21192
  };
@@ -21589,9 +21522,7 @@ export declare const recoverUser: (input: TRecoverUserInput) => Promise<{
21589
21522
  receiverUserEmail: string;
21590
21523
  receiverUserTags: string[];
21591
21524
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
21592
- senderUserId: string; /**
21593
- * `POST /public/v1/submit/sign_raw_payload`
21594
- */
21525
+ senderUserId: string;
21595
21526
  }[];
21596
21527
  };
21597
21528
  acceptInvitationIntent?: {
@@ -22004,7 +21935,9 @@ export declare const recoverUser: (input: TRecoverUserInput) => Promise<{
22004
21935
  };
22005
21936
  disableEmailRecovery?: boolean;
22006
21937
  disableEmailAuth?: boolean;
22007
- };
21938
+ }; /**
21939
+ * `POST /public/v1/submit/set_organization_feature`
21940
+ */
22008
21941
  emailAuthIntent?: {
22009
21942
  email: string;
22010
21943
  targetPublicKey: string;
@@ -22104,9 +22037,6 @@ export declare const recoverUser: (input: TRecoverUserInput) => Promise<{
22104
22037
  activateBillingTierResult?: {
22105
22038
  productId: string;
22106
22039
  };
22107
- /**
22108
- * `POST /tkhq/api/v1/noop-codegen-anchor`
22109
- */
22110
22040
  deletePaymentMethodResult?: {
22111
22041
  paymentMethodId: string;
22112
22042
  };
@@ -22442,9 +22372,7 @@ export declare const rejectActivity: (input: TRejectActivityInput) => Promise<{
22442
22372
  receiverUserEmail: string;
22443
22373
  receiverUserTags: string[];
22444
22374
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
22445
- senderUserId: string; /**
22446
- * `POST /public/v1/submit/sign_raw_payload`
22447
- */
22375
+ senderUserId: string;
22448
22376
  }[];
22449
22377
  };
22450
22378
  acceptInvitationIntent?: {
@@ -22857,7 +22785,9 @@ export declare const rejectActivity: (input: TRejectActivityInput) => Promise<{
22857
22785
  };
22858
22786
  disableEmailRecovery?: boolean;
22859
22787
  disableEmailAuth?: boolean;
22860
- };
22788
+ }; /**
22789
+ * `POST /public/v1/submit/set_organization_feature`
22790
+ */
22861
22791
  emailAuthIntent?: {
22862
22792
  email: string;
22863
22793
  targetPublicKey: string;
@@ -22957,9 +22887,6 @@ export declare const rejectActivity: (input: TRejectActivityInput) => Promise<{
22957
22887
  activateBillingTierResult?: {
22958
22888
  productId: string;
22959
22889
  };
22960
- /**
22961
- * `POST /tkhq/api/v1/noop-codegen-anchor`
22962
- */
22963
22890
  deletePaymentMethodResult?: {
22964
22891
  paymentMethodId: string;
22965
22892
  };
@@ -23295,9 +23222,7 @@ export declare const removeOrganizationFeature: (input: TRemoveOrganizationFeatu
23295
23222
  receiverUserEmail: string;
23296
23223
  receiverUserTags: string[];
23297
23224
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
23298
- senderUserId: string; /**
23299
- * `POST /public/v1/submit/sign_raw_payload`
23300
- */
23225
+ senderUserId: string;
23301
23226
  }[];
23302
23227
  };
23303
23228
  acceptInvitationIntent?: {
@@ -23710,7 +23635,9 @@ export declare const removeOrganizationFeature: (input: TRemoveOrganizationFeatu
23710
23635
  };
23711
23636
  disableEmailRecovery?: boolean;
23712
23637
  disableEmailAuth?: boolean;
23713
- };
23638
+ }; /**
23639
+ * `POST /public/v1/submit/set_organization_feature`
23640
+ */
23714
23641
  emailAuthIntent?: {
23715
23642
  email: string;
23716
23643
  targetPublicKey: string;
@@ -23810,9 +23737,6 @@ export declare const removeOrganizationFeature: (input: TRemoveOrganizationFeatu
23810
23737
  activateBillingTierResult?: {
23811
23738
  productId: string;
23812
23739
  };
23813
- /**
23814
- * `POST /tkhq/api/v1/noop-codegen-anchor`
23815
- */
23816
23740
  deletePaymentMethodResult?: {
23817
23741
  paymentMethodId: string;
23818
23742
  };
@@ -24148,9 +24072,7 @@ export declare const setOrganizationFeature: (input: TSetOrganizationFeatureInpu
24148
24072
  receiverUserEmail: string;
24149
24073
  receiverUserTags: string[];
24150
24074
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
24151
- senderUserId: string; /**
24152
- * `POST /public/v1/submit/sign_raw_payload`
24153
- */
24075
+ senderUserId: string;
24154
24076
  }[];
24155
24077
  };
24156
24078
  acceptInvitationIntent?: {
@@ -24563,7 +24485,9 @@ export declare const setOrganizationFeature: (input: TSetOrganizationFeatureInpu
24563
24485
  };
24564
24486
  disableEmailRecovery?: boolean;
24565
24487
  disableEmailAuth?: boolean;
24566
- };
24488
+ }; /**
24489
+ * `POST /public/v1/submit/set_organization_feature`
24490
+ */
24567
24491
  emailAuthIntent?: {
24568
24492
  email: string;
24569
24493
  targetPublicKey: string;
@@ -24663,9 +24587,6 @@ export declare const setOrganizationFeature: (input: TSetOrganizationFeatureInpu
24663
24587
  activateBillingTierResult?: {
24664
24588
  productId: string;
24665
24589
  };
24666
- /**
24667
- * `POST /tkhq/api/v1/noop-codegen-anchor`
24668
- */
24669
24590
  deletePaymentMethodResult?: {
24670
24591
  paymentMethodId: string;
24671
24592
  };
@@ -25001,9 +24922,7 @@ export declare const signRawPayload: (input: TSignRawPayloadInput) => Promise<{
25001
24922
  receiverUserEmail: string;
25002
24923
  receiverUserTags: string[];
25003
24924
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
25004
- senderUserId: string; /**
25005
- * `POST /public/v1/submit/sign_raw_payload`
25006
- */
24925
+ senderUserId: string;
25007
24926
  }[];
25008
24927
  };
25009
24928
  acceptInvitationIntent?: {
@@ -25416,7 +25335,9 @@ export declare const signRawPayload: (input: TSignRawPayloadInput) => Promise<{
25416
25335
  };
25417
25336
  disableEmailRecovery?: boolean;
25418
25337
  disableEmailAuth?: boolean;
25419
- };
25338
+ }; /**
25339
+ * `POST /public/v1/submit/set_organization_feature`
25340
+ */
25420
25341
  emailAuthIntent?: {
25421
25342
  email: string;
25422
25343
  targetPublicKey: string;
@@ -25516,9 +25437,6 @@ export declare const signRawPayload: (input: TSignRawPayloadInput) => Promise<{
25516
25437
  activateBillingTierResult?: {
25517
25438
  productId: string;
25518
25439
  };
25519
- /**
25520
- * `POST /tkhq/api/v1/noop-codegen-anchor`
25521
- */
25522
25440
  deletePaymentMethodResult?: {
25523
25441
  paymentMethodId: string;
25524
25442
  };
@@ -25854,9 +25772,7 @@ export declare const signTransaction: (input: TSignTransactionInput) => Promise<
25854
25772
  receiverUserEmail: string;
25855
25773
  receiverUserTags: string[];
25856
25774
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
25857
- senderUserId: string; /**
25858
- * `POST /public/v1/submit/sign_raw_payload`
25859
- */
25775
+ senderUserId: string;
25860
25776
  }[];
25861
25777
  };
25862
25778
  acceptInvitationIntent?: {
@@ -26269,7 +26185,9 @@ export declare const signTransaction: (input: TSignTransactionInput) => Promise<
26269
26185
  };
26270
26186
  disableEmailRecovery?: boolean;
26271
26187
  disableEmailAuth?: boolean;
26272
- };
26188
+ }; /**
26189
+ * `POST /public/v1/submit/set_organization_feature`
26190
+ */
26273
26191
  emailAuthIntent?: {
26274
26192
  email: string;
26275
26193
  targetPublicKey: string;
@@ -26369,9 +26287,6 @@ export declare const signTransaction: (input: TSignTransactionInput) => Promise<
26369
26287
  activateBillingTierResult?: {
26370
26288
  productId: string;
26371
26289
  };
26372
- /**
26373
- * `POST /tkhq/api/v1/noop-codegen-anchor`
26374
- */
26375
26290
  deletePaymentMethodResult?: {
26376
26291
  paymentMethodId: string;
26377
26292
  };
@@ -26707,9 +26622,7 @@ export declare const updatePolicy: (input: TUpdatePolicyInput) => Promise<{
26707
26622
  receiverUserEmail: string;
26708
26623
  receiverUserTags: string[];
26709
26624
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
26710
- senderUserId: string; /**
26711
- * `POST /public/v1/submit/sign_raw_payload`
26712
- */
26625
+ senderUserId: string;
26713
26626
  }[];
26714
26627
  };
26715
26628
  acceptInvitationIntent?: {
@@ -27122,7 +27035,9 @@ export declare const updatePolicy: (input: TUpdatePolicyInput) => Promise<{
27122
27035
  };
27123
27036
  disableEmailRecovery?: boolean;
27124
27037
  disableEmailAuth?: boolean;
27125
- };
27038
+ }; /**
27039
+ * `POST /public/v1/submit/set_organization_feature`
27040
+ */
27126
27041
  emailAuthIntent?: {
27127
27042
  email: string;
27128
27043
  targetPublicKey: string;
@@ -27222,9 +27137,6 @@ export declare const updatePolicy: (input: TUpdatePolicyInput) => Promise<{
27222
27137
  activateBillingTierResult?: {
27223
27138
  productId: string;
27224
27139
  };
27225
- /**
27226
- * `POST /tkhq/api/v1/noop-codegen-anchor`
27227
- */
27228
27140
  deletePaymentMethodResult?: {
27229
27141
  paymentMethodId: string;
27230
27142
  };
@@ -27560,9 +27472,7 @@ export declare const updatePrivateKeyTag: (input: TUpdatePrivateKeyTagInput) =>
27560
27472
  receiverUserEmail: string;
27561
27473
  receiverUserTags: string[];
27562
27474
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
27563
- senderUserId: string; /**
27564
- * `POST /public/v1/submit/sign_raw_payload`
27565
- */
27475
+ senderUserId: string;
27566
27476
  }[];
27567
27477
  };
27568
27478
  acceptInvitationIntent?: {
@@ -27975,7 +27885,9 @@ export declare const updatePrivateKeyTag: (input: TUpdatePrivateKeyTagInput) =>
27975
27885
  };
27976
27886
  disableEmailRecovery?: boolean;
27977
27887
  disableEmailAuth?: boolean;
27978
- };
27888
+ }; /**
27889
+ * `POST /public/v1/submit/set_organization_feature`
27890
+ */
27979
27891
  emailAuthIntent?: {
27980
27892
  email: string;
27981
27893
  targetPublicKey: string;
@@ -28075,9 +27987,6 @@ export declare const updatePrivateKeyTag: (input: TUpdatePrivateKeyTagInput) =>
28075
27987
  activateBillingTierResult?: {
28076
27988
  productId: string;
28077
27989
  };
28078
- /**
28079
- * `POST /tkhq/api/v1/noop-codegen-anchor`
28080
- */
28081
27990
  deletePaymentMethodResult?: {
28082
27991
  paymentMethodId: string;
28083
27992
  };
@@ -28413,9 +28322,7 @@ export declare const updateRootQuorum: (input: TUpdateRootQuorumInput) => Promis
28413
28322
  receiverUserEmail: string;
28414
28323
  receiverUserTags: string[];
28415
28324
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
28416
- senderUserId: string; /**
28417
- * `POST /public/v1/submit/sign_raw_payload`
28418
- */
28325
+ senderUserId: string;
28419
28326
  }[];
28420
28327
  };
28421
28328
  acceptInvitationIntent?: {
@@ -28828,7 +28735,9 @@ export declare const updateRootQuorum: (input: TUpdateRootQuorumInput) => Promis
28828
28735
  };
28829
28736
  disableEmailRecovery?: boolean;
28830
28737
  disableEmailAuth?: boolean;
28831
- };
28738
+ }; /**
28739
+ * `POST /public/v1/submit/set_organization_feature`
28740
+ */
28832
28741
  emailAuthIntent?: {
28833
28742
  email: string;
28834
28743
  targetPublicKey: string;
@@ -28928,9 +28837,6 @@ export declare const updateRootQuorum: (input: TUpdateRootQuorumInput) => Promis
28928
28837
  activateBillingTierResult?: {
28929
28838
  productId: string;
28930
28839
  };
28931
- /**
28932
- * `POST /tkhq/api/v1/noop-codegen-anchor`
28933
- */
28934
28840
  deletePaymentMethodResult?: {
28935
28841
  paymentMethodId: string;
28936
28842
  };
@@ -29266,9 +29172,7 @@ export declare const updateUser: (input: TUpdateUserInput) => Promise<{
29266
29172
  receiverUserEmail: string;
29267
29173
  receiverUserTags: string[];
29268
29174
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
29269
- senderUserId: string; /**
29270
- * `POST /public/v1/submit/sign_raw_payload`
29271
- */
29175
+ senderUserId: string;
29272
29176
  }[];
29273
29177
  };
29274
29178
  acceptInvitationIntent?: {
@@ -29681,7 +29585,9 @@ export declare const updateUser: (input: TUpdateUserInput) => Promise<{
29681
29585
  };
29682
29586
  disableEmailRecovery?: boolean;
29683
29587
  disableEmailAuth?: boolean;
29684
- };
29588
+ }; /**
29589
+ * `POST /public/v1/submit/set_organization_feature`
29590
+ */
29685
29591
  emailAuthIntent?: {
29686
29592
  email: string;
29687
29593
  targetPublicKey: string;
@@ -29781,9 +29687,6 @@ export declare const updateUser: (input: TUpdateUserInput) => Promise<{
29781
29687
  activateBillingTierResult?: {
29782
29688
  productId: string;
29783
29689
  };
29784
- /**
29785
- * `POST /tkhq/api/v1/noop-codegen-anchor`
29786
- */
29787
29690
  deletePaymentMethodResult?: {
29788
29691
  paymentMethodId: string;
29789
29692
  };
@@ -30119,9 +30022,7 @@ export declare const updateUserTag: (input: TUpdateUserTagInput) => Promise<{
30119
30022
  receiverUserEmail: string;
30120
30023
  receiverUserTags: string[];
30121
30024
  accessType: "ACCESS_TYPE_WEB" | "ACCESS_TYPE_API" | "ACCESS_TYPE_ALL";
30122
- senderUserId: string; /**
30123
- * `POST /public/v1/submit/sign_raw_payload`
30124
- */
30025
+ senderUserId: string;
30125
30026
  }[];
30126
30027
  };
30127
30028
  acceptInvitationIntent?: {
@@ -30534,7 +30435,9 @@ export declare const updateUserTag: (input: TUpdateUserTagInput) => Promise<{
30534
30435
  };
30535
30436
  disableEmailRecovery?: boolean;
30536
30437
  disableEmailAuth?: boolean;
30537
- };
30438
+ }; /**
30439
+ * `POST /public/v1/submit/set_organization_feature`
30440
+ */
30538
30441
  emailAuthIntent?: {
30539
30442
  email: string;
30540
30443
  targetPublicKey: string;
@@ -30634,9 +30537,6 @@ export declare const updateUserTag: (input: TUpdateUserTagInput) => Promise<{
30634
30537
  activateBillingTierResult?: {
30635
30538
  productId: string;
30636
30539
  };
30637
- /**
30638
- * `POST /tkhq/api/v1/noop-codegen-anchor`
30639
- */
30640
30540
  deletePaymentMethodResult?: {
30641
30541
  paymentMethodId: string;
30642
30542
  };