squarefi-bff-api-module 1.35.3 → 1.36.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -818,6 +818,23 @@ export interface paths {
818
818
  patch?: never;
819
819
  trace?: never;
820
820
  };
821
+ "/kyc/integration-sumsub-levels": {
822
+ parameters: {
823
+ query?: never;
824
+ header?: never;
825
+ path?: never;
826
+ cookie?: never;
827
+ };
828
+ /** Get KYC integration Sumsub levels */
829
+ get: operations["IntegrationSumsubLevelController_findAll"];
830
+ put?: never;
831
+ post?: never;
832
+ delete?: never;
833
+ options?: never;
834
+ head?: never;
835
+ patch?: never;
836
+ trace?: never;
837
+ };
821
838
  "/counterparties/{wallet_id}": {
822
839
  parameters: {
823
840
  query?: never;
@@ -1128,75 +1145,6 @@ export interface paths {
1128
1145
  patch?: never;
1129
1146
  trace?: never;
1130
1147
  };
1131
- "/wallets/{wallet_id}/invites": {
1132
- parameters: {
1133
- query?: never;
1134
- header?: never;
1135
- path?: never;
1136
- cookie?: never;
1137
- };
1138
- /** Get wallet invites list */
1139
- get: operations["WalletsInvitesController_all"];
1140
- put?: never;
1141
- /** Create wallet invite */
1142
- post: operations["WalletsInvitesController_create"];
1143
- delete?: never;
1144
- options?: never;
1145
- head?: never;
1146
- patch?: never;
1147
- trace?: never;
1148
- };
1149
- "/wallets/{wallet_id}/invites/{id}": {
1150
- parameters: {
1151
- query?: never;
1152
- header?: never;
1153
- path?: never;
1154
- cookie?: never;
1155
- };
1156
- /** View wallet invite */
1157
- get: operations["WalletsInvitesController_view"];
1158
- put?: never;
1159
- post?: never;
1160
- /** Cancel wallet invite */
1161
- delete: operations["WalletsInvitesController_cancel"];
1162
- options?: never;
1163
- head?: never;
1164
- patch?: never;
1165
- trace?: never;
1166
- };
1167
- "/wallets/accept-invite": {
1168
- parameters: {
1169
- query?: never;
1170
- header?: never;
1171
- path?: never;
1172
- cookie?: never;
1173
- };
1174
- get?: never;
1175
- put?: never;
1176
- /** Accept wallet invite by code */
1177
- post: operations["WalletsInvitesAcceptController_accept"];
1178
- delete?: never;
1179
- options?: never;
1180
- head?: never;
1181
- patch?: never;
1182
- trace?: never;
1183
- };
1184
- "/webhooks/mailer": {
1185
- parameters: {
1186
- query?: never;
1187
- header?: never;
1188
- path?: never;
1189
- cookie?: never;
1190
- };
1191
- get?: never;
1192
- put?: never;
1193
- post: operations["MailerController_handleQStashWebhook"];
1194
- delete?: never;
1195
- options?: never;
1196
- head?: never;
1197
- patch?: never;
1198
- trace?: never;
1199
- };
1200
1148
  }
1201
1149
  export type webhooks = Record<string, never>;
1202
1150
  export interface components {
@@ -1496,6 +1444,8 @@ export interface components {
1496
1444
  logo_url: string | null;
1497
1445
  name: string | null;
1498
1446
  created_at: string;
1447
+ /** @description Is main wallet for user */
1448
+ is_main: boolean;
1499
1449
  /** @enum {string} */
1500
1450
  role: "owner" | "admin" | "user";
1501
1451
  readonly kyc_info?: components["schemas"]["WalletKycInfoDto"];
@@ -1525,6 +1475,8 @@ export interface components {
1525
1475
  logo_url: string | null;
1526
1476
  name: string | null;
1527
1477
  created_at: string;
1478
+ /** @description Is main wallet for user */
1479
+ is_main: boolean;
1528
1480
  /** @enum {string} */
1529
1481
  role: "owner" | "admin" | "user";
1530
1482
  readonly kyc_info?: components["schemas"]["WalletKycInfoDto"];
@@ -1779,6 +1731,16 @@ export interface components {
1779
1731
  supplementary_url: string | null;
1780
1732
  tax_identification_number: string | null;
1781
1733
  selfie_url?: string | null;
1734
+ /**
1735
+ * @default individual
1736
+ * @enum {string|null}
1737
+ */
1738
+ type: "individual" | "business" | null;
1739
+ tax_residence_country: string | null;
1740
+ corporate_name: string | null;
1741
+ corporate_registration_number: string | null;
1742
+ corporate_type: string | null;
1743
+ corporate_country: string | null;
1782
1744
  id?: string;
1783
1745
  address?: components["schemas"]["KycAddressDto"] | null;
1784
1746
  };
@@ -1792,7 +1754,8 @@ export interface components {
1792
1754
  additional_id_type?: string | null;
1793
1755
  articles_of_association_url?: string | null;
1794
1756
  business_description?: string | null;
1795
- business_industry?: string | null;
1757
+ business_industry?: string[] | null;
1758
+ business_industry_other?: string | null;
1796
1759
  business_name?: string | null;
1797
1760
  business_name_local?: string | null;
1798
1761
  business_registration_doc_url?: string | null;
@@ -1894,6 +1857,25 @@ export interface components {
1894
1857
  regulated_status?: "REGULATED" | "REGISTERED" | "LICENSED" | "NONE" | "NOT_REQUIRED" | null;
1895
1858
  total_assets?: string | null;
1896
1859
  vendors_and_counterparties?: ("SELF" | "MERCHANTS_SUPPLIERS" | "CUSTOMERS" | "EMPLOYEES" | "CONTRACTORS" | "FRIENDS" | "FAMILY")[] | null;
1860
+ stablecoin_primary_purpose?: string[] | null;
1861
+ stablecoin_primary_purpose_other?: string | null;
1862
+ pep_declaration?: boolean | null;
1863
+ expected_monthly_transactions_count?: number | null;
1864
+ outgoing_payment_purposes?: string[] | null;
1865
+ incoming_payment_purposes?: string[] | null;
1866
+ supplier_names?: string | null;
1867
+ customer_names?: string | null;
1868
+ business_activity_type?: string | null;
1869
+ primary_account_currency?: string | null;
1870
+ regulatory_authority_name?: string | null;
1871
+ regulatory_authority_country?: string | null;
1872
+ regulatory_license_number?: string | null;
1873
+ regulatory_license_urls?: string[] | null;
1874
+ state_registry_doc_url?: string | null;
1875
+ good_standing_cert_url?: string | null;
1876
+ business_proof_of_address_url?: string | null;
1877
+ /** @enum {string|null} */
1878
+ business_proof_of_address_type?: "UTILITY_BILL" | "BANK_STATEMENT" | "RENTAL_AGREEMENT" | "TAX_DOCUMENT" | null;
1897
1879
  address?: components["schemas"]["KycAddressDto"] | null;
1898
1880
  physical_address?: components["schemas"]["KycAddressDto"] | null;
1899
1881
  beneficial_owners?: components["schemas"]["KycBeneficialOwnerDto"][] | null;
@@ -1908,7 +1890,8 @@ export interface components {
1908
1890
  additional_id_type?: string | null;
1909
1891
  articles_of_association_url?: string | null;
1910
1892
  business_description?: string | null;
1911
- business_industry?: string | null;
1893
+ business_industry?: string[] | null;
1894
+ business_industry_other?: string | null;
1912
1895
  business_name?: string | null;
1913
1896
  business_name_local?: string | null;
1914
1897
  business_registration_doc_url?: string | null;
@@ -2005,6 +1988,25 @@ export interface components {
2005
1988
  regulated_status?: "REGULATED" | "REGISTERED" | "LICENSED" | "NONE" | "NOT_REQUIRED" | null;
2006
1989
  total_assets?: string | null;
2007
1990
  vendors_and_counterparties?: ("SELF" | "MERCHANTS_SUPPLIERS" | "CUSTOMERS" | "EMPLOYEES" | "CONTRACTORS" | "FRIENDS" | "FAMILY")[] | null;
1991
+ stablecoin_primary_purpose?: string[] | null;
1992
+ stablecoin_primary_purpose_other?: string | null;
1993
+ pep_declaration?: boolean | null;
1994
+ expected_monthly_transactions_count?: number | null;
1995
+ outgoing_payment_purposes?: string[] | null;
1996
+ incoming_payment_purposes?: string[] | null;
1997
+ supplier_names?: string | null;
1998
+ customer_names?: string | null;
1999
+ business_activity_type?: string | null;
2000
+ primary_account_currency?: string | null;
2001
+ regulatory_authority_name?: string | null;
2002
+ regulatory_authority_country?: string | null;
2003
+ regulatory_license_number?: string | null;
2004
+ regulatory_license_urls?: string[] | null;
2005
+ state_registry_doc_url?: string | null;
2006
+ good_standing_cert_url?: string | null;
2007
+ business_proof_of_address_url?: string | null;
2008
+ /** @enum {string|null} */
2009
+ business_proof_of_address_type?: "UTILITY_BILL" | "BANK_STATEMENT" | "RENTAL_AGREEMENT" | "TAX_DOCUMENT" | null;
2008
2010
  address?: components["schemas"]["KycAddressDto"] | null;
2009
2011
  physical_address?: components["schemas"]["KycAddressDto"] | null;
2010
2012
  beneficial_owners?: components["schemas"]["KycBeneficialOwnerDto"][] | null;
@@ -2092,6 +2094,15 @@ export interface components {
2092
2094
  /** @description Has more data flag */
2093
2095
  readonly has_more: boolean;
2094
2096
  };
2097
+ IntegrationSumsubLevelEntityDto: Record<string, never>;
2098
+ FindAllIntegrationSumsubLevelsResponseDto: {
2099
+ /** @example 20 */
2100
+ total: number;
2101
+ /** @description Data */
2102
+ data: components["schemas"]["IntegrationSumsubLevelEntityDto"][];
2103
+ /** @description Has more data flag */
2104
+ readonly has_more: boolean;
2105
+ };
2095
2106
  CounterpartiesFilter: {
2096
2107
  email?: string | null;
2097
2108
  /** @description Phone number */
@@ -2267,10 +2278,6 @@ export interface components {
2267
2278
  readonly yandex_metric_id?: string;
2268
2279
  readonly google_analytics_id?: string;
2269
2280
  };
2270
- SupportedLocalesEntity: {
2271
- default: string;
2272
- supported: string[];
2273
- };
2274
2281
  StatementBrandingEntity: {
2275
2282
  readonly company_name?: string | null;
2276
2283
  readonly logo_url?: string | null;
@@ -2290,7 +2297,6 @@ export interface components {
2290
2297
  enable_crypto_withdrawal: boolean;
2291
2298
  enable_referral_program: boolean;
2292
2299
  readonly metrics_data?: components["schemas"]["MetricsDataEntity"] | null;
2293
- readonly supported_locales?: components["schemas"]["SupportedLocalesEntity"] | null;
2294
2300
  readonly statement_branding?: components["schemas"]["StatementBrandingEntity"] | null;
2295
2301
  base_currency: string;
2296
2302
  };
@@ -2367,37 +2373,6 @@ export interface components {
2367
2373
  /** @enum {string} */
2368
2374
  role: "user";
2369
2375
  };
2370
- CreateWalletInviteRequestDto: {
2371
- email: string;
2372
- /**
2373
- * @example user
2374
- * @enum {string}
2375
- */
2376
- role: "user";
2377
- };
2378
- WalletInviteDto: {
2379
- id: string;
2380
- email: string;
2381
- role: string;
2382
- code: string;
2383
- expires_at: string;
2384
- used_at: string | null;
2385
- created_at: string;
2386
- };
2387
- WalletInvitesFilterDto: {
2388
- /** @enum {string} */
2389
- role?: "owner" | "admin" | "user";
2390
- /** @description Search by email */
2391
- search?: string;
2392
- };
2393
- AcceptWalletInviteRequestDto: {
2394
- /** @example ABC123XYZ */
2395
- code: string;
2396
- };
2397
- AcceptWalletInviteResponseDto: {
2398
- wallet_id: string;
2399
- };
2400
- QStashWebhookDto: Record<string, never>;
2401
2376
  };
2402
2377
  responses: never;
2403
2378
  parameters: never;
@@ -3413,7 +3388,7 @@ export interface operations {
3413
3388
  };
3414
3389
  content?: never;
3415
3390
  };
3416
- /** @description You don't have access to current wallet. Allowed roles: owner, admin, user */
3391
+ /** @description You don`t have access to current wallet */
3417
3392
  403: {
3418
3393
  headers: {
3419
3394
  [name: string]: unknown;
@@ -3448,7 +3423,7 @@ export interface operations {
3448
3423
  };
3449
3424
  content?: never;
3450
3425
  };
3451
- /** @description You don't have access to current wallet. Allowed roles: owner */
3426
+ /** @description You don`t have access to current wallet */
3452
3427
  403: {
3453
3428
  headers: {
3454
3429
  [name: string]: unknown;
@@ -3484,7 +3459,7 @@ export interface operations {
3484
3459
  };
3485
3460
  content?: never;
3486
3461
  };
3487
- /** @description You don't have access to current wallet. Allowed roles: owner, admin, user */
3462
+ /** @description You don`t have access to current wallet */
3488
3463
  403: {
3489
3464
  headers: {
3490
3465
  [name: string]: unknown;
@@ -3524,7 +3499,7 @@ export interface operations {
3524
3499
  };
3525
3500
  content?: never;
3526
3501
  };
3527
- /** @description You don't have access to current wallet. Allowed roles: owner, admin */
3502
+ /** @description You don`t have access to current wallet */
3528
3503
  403: {
3529
3504
  headers: {
3530
3505
  [name: string]: unknown;
@@ -3569,7 +3544,7 @@ export interface operations {
3569
3544
  };
3570
3545
  content?: never;
3571
3546
  };
3572
- /** @description You don't have access to current wallet. Allowed roles: owner, admin, user */
3547
+ /** @description You don`t have access to current wallet */
3573
3548
  403: {
3574
3549
  headers: {
3575
3550
  [name: string]: unknown;
@@ -3605,7 +3580,7 @@ export interface operations {
3605
3580
  };
3606
3581
  content?: never;
3607
3582
  };
3608
- /** @description You don't have access to current wallet. Allowed roles: owner, admin, user */
3583
+ /** @description You don`t have access to current wallet */
3609
3584
  403: {
3610
3585
  headers: {
3611
3586
  [name: string]: unknown;
@@ -3634,7 +3609,7 @@ export interface operations {
3634
3609
  };
3635
3610
  content?: never;
3636
3611
  };
3637
- /** @description You don't have access to current wallet. Allowed roles: owner, admin, user */
3612
+ /** @description You don`t have access to current wallet */
3638
3613
  403: {
3639
3614
  headers: {
3640
3615
  [name: string]: unknown;
@@ -3801,7 +3776,7 @@ export interface operations {
3801
3776
  };
3802
3777
  content?: never;
3803
3778
  };
3804
- /** @description You don't have access to current wallet. Allowed roles: owner */
3779
+ /** @description You don`t have access to current wallet */
3805
3780
  403: {
3806
3781
  headers: {
3807
3782
  [name: string]: unknown;
@@ -3837,7 +3812,7 @@ export interface operations {
3837
3812
  };
3838
3813
  content?: never;
3839
3814
  };
3840
- /** @description You don't have access to current wallet. Allowed roles: owner */
3815
+ /** @description You don`t have access to current wallet */
3841
3816
  403: {
3842
3817
  headers: {
3843
3818
  [name: string]: unknown;
@@ -3900,7 +3875,7 @@ export interface operations {
3900
3875
  };
3901
3876
  content?: never;
3902
3877
  };
3903
- /** @description You don't have access to current wallet. Allowed roles: owner, admin, user */
3878
+ /** @description You don`t have access to current wallet */
3904
3879
  403: {
3905
3880
  headers: {
3906
3881
  [name: string]: unknown;
@@ -3945,7 +3920,7 @@ export interface operations {
3945
3920
  };
3946
3921
  content?: never;
3947
3922
  };
3948
- /** @description You don't have access to current wallet. Allowed roles: owner */
3923
+ /** @description You don`t have access to current wallet */
3949
3924
  403: {
3950
3925
  headers: {
3951
3926
  [name: string]: unknown;
@@ -3986,7 +3961,7 @@ export interface operations {
3986
3961
  };
3987
3962
  content?: never;
3988
3963
  };
3989
- /** @description You don't have access to current wallet. Allowed roles: owner, admin, user */
3964
+ /** @description You don`t have access to current wallet */
3990
3965
  403: {
3991
3966
  headers: {
3992
3967
  [name: string]: unknown;
@@ -4028,7 +4003,7 @@ export interface operations {
4028
4003
  };
4029
4004
  content?: never;
4030
4005
  };
4031
- /** @description You don't have access to current wallet. Allowed roles: owner, admin, user */
4006
+ /** @description You don`t have access to current wallet */
4032
4007
  403: {
4033
4008
  headers: {
4034
4009
  [name: string]: unknown;
@@ -4078,7 +4053,7 @@ export interface operations {
4078
4053
  };
4079
4054
  content?: never;
4080
4055
  };
4081
- /** @description You don't have access to current wallet. Allowed roles: owner, admin */
4056
+ /** @description You don`t have access to current wallet */
4082
4057
  403: {
4083
4058
  headers: {
4084
4059
  [name: string]: unknown;
@@ -4121,7 +4096,7 @@ export interface operations {
4121
4096
  };
4122
4097
  content?: never;
4123
4098
  };
4124
- /** @description You don't have access to current wallet. Allowed roles: owner, admin */
4099
+ /** @description You don`t have access to current wallet */
4125
4100
  403: {
4126
4101
  headers: {
4127
4102
  [name: string]: unknown;
@@ -4189,7 +4164,7 @@ export interface operations {
4189
4164
  };
4190
4165
  content?: never;
4191
4166
  };
4192
- /** @description You don't have access to current wallet. Allowed roles: owner */
4167
+ /** @description You don`t have access to current wallet */
4193
4168
  403: {
4194
4169
  headers: {
4195
4170
  [name: string]: unknown;
@@ -4225,7 +4200,7 @@ export interface operations {
4225
4200
  };
4226
4201
  content?: never;
4227
4202
  };
4228
- /** @description You don't have access to current wallet. Allowed roles: owner */
4203
+ /** @description You don`t have access to current wallet */
4229
4204
  403: {
4230
4205
  headers: {
4231
4206
  [name: string]: unknown;
@@ -4273,6 +4248,38 @@ export interface operations {
4273
4248
  };
4274
4249
  };
4275
4250
  };
4251
+ IntegrationSumsubLevelController_findAll: {
4252
+ parameters: {
4253
+ query?: never;
4254
+ header?: never;
4255
+ path?: never;
4256
+ cookie?: never;
4257
+ };
4258
+ requestBody?: never;
4259
+ responses: {
4260
+ 200: {
4261
+ headers: {
4262
+ [name: string]: unknown;
4263
+ };
4264
+ content: {
4265
+ "application/json": components["schemas"]["FindAllIntegrationSumsubLevelsResponseDto"];
4266
+ };
4267
+ };
4268
+ /** @description Unauthorized */
4269
+ 401: {
4270
+ headers: {
4271
+ [name: string]: unknown;
4272
+ };
4273
+ content?: never;
4274
+ };
4275
+ 404: {
4276
+ headers: {
4277
+ [name: string]: unknown;
4278
+ };
4279
+ content?: never;
4280
+ };
4281
+ };
4282
+ };
4276
4283
  CounterpartyAccountsController_findAll: {
4277
4284
  parameters: {
4278
4285
  query?: {
@@ -4307,7 +4314,7 @@ export interface operations {
4307
4314
  };
4308
4315
  content?: never;
4309
4316
  };
4310
- /** @description You don't have access to current wallet. Allowed roles: owner, admin, user */
4317
+ /** @description You don`t have access to current wallet */
4311
4318
  403: {
4312
4319
  headers: {
4313
4320
  [name: string]: unknown;
@@ -4352,7 +4359,7 @@ export interface operations {
4352
4359
  };
4353
4360
  content?: never;
4354
4361
  };
4355
- /** @description You don't have access to current wallet. Allowed roles: owner, admin */
4362
+ /** @description You don`t have access to current wallet */
4356
4363
  403: {
4357
4364
  headers: {
4358
4365
  [name: string]: unknown;
@@ -5012,7 +5019,7 @@ export interface operations {
5012
5019
  };
5013
5020
  content?: never;
5014
5021
  };
5015
- /** @description You don't have access to current wallet. Allowed roles: owner, admin */
5022
+ /** @description You don`t have access to current wallet */
5016
5023
  403: {
5017
5024
  headers: {
5018
5025
  [name: string]: unknown;
@@ -5048,7 +5055,7 @@ export interface operations {
5048
5055
  };
5049
5056
  content?: never;
5050
5057
  };
5051
- /** @description You don't have access to current wallet. Allowed roles: owner, admin */
5058
+ /** @description You don`t have access to current wallet */
5052
5059
  403: {
5053
5060
  headers: {
5054
5061
  [name: string]: unknown;
@@ -5083,7 +5090,7 @@ export interface operations {
5083
5090
  };
5084
5091
  content?: never;
5085
5092
  };
5086
- /** @description You don't have access to current wallet. Allowed roles: owner, admin */
5093
+ /** @description You don`t have access to current wallet */
5087
5094
  403: {
5088
5095
  headers: {
5089
5096
  [name: string]: unknown;
@@ -5123,7 +5130,7 @@ export interface operations {
5123
5130
  };
5124
5131
  content?: never;
5125
5132
  };
5126
- /** @description You don't have access to current wallet. Allowed roles: owner, admin */
5133
+ /** @description You don`t have access to current wallet */
5127
5134
  403: {
5128
5135
  headers: {
5129
5136
  [name: string]: unknown;
@@ -5159,7 +5166,7 @@ export interface operations {
5159
5166
  };
5160
5167
  content?: never;
5161
5168
  };
5162
- /** @description You don't have access to current wallet. Allowed roles: owner, admin */
5169
+ /** @description You don`t have access to current wallet */
5163
5170
  403: {
5164
5171
  headers: {
5165
5172
  [name: string]: unknown;
@@ -5195,52 +5202,7 @@ export interface operations {
5195
5202
  };
5196
5203
  content?: never;
5197
5204
  };
5198
- /** @description You don't have access to current wallet. Allowed roles: owner, admin */
5199
- 403: {
5200
- headers: {
5201
- [name: string]: unknown;
5202
- };
5203
- content?: never;
5204
- };
5205
- };
5206
- };
5207
- WalletsInvitesController_all: {
5208
- parameters: {
5209
- query?: {
5210
- /** @description Number of records to skip */
5211
- offset?: number;
5212
- /** @description Number of records to return */
5213
- limit?: number;
5214
- sort_order?: "ASC" | "DESC";
5215
- sort_by?: "created_at" | null;
5216
- filter?: components["schemas"]["WalletInvitesFilterDto"];
5217
- };
5218
- header?: never;
5219
- path: {
5220
- wallet_id: string;
5221
- };
5222
- cookie?: never;
5223
- };
5224
- requestBody?: never;
5225
- responses: {
5226
- 200: {
5227
- headers: {
5228
- [name: string]: unknown;
5229
- };
5230
- content: {
5231
- "application/json": components["schemas"]["PaginationResponseDto"] & {
5232
- data?: unknown;
5233
- };
5234
- };
5235
- };
5236
- /** @description Unauthorized */
5237
- 401: {
5238
- headers: {
5239
- [name: string]: unknown;
5240
- };
5241
- content?: never;
5242
- };
5243
- /** @description You don't have access to current wallet. Allowed roles: owner */
5205
+ /** @description You don`t have access to current wallet */
5244
5206
  403: {
5245
5207
  headers: {
5246
5208
  [name: string]: unknown;
@@ -5249,168 +5211,4 @@ export interface operations {
5249
5211
  };
5250
5212
  };
5251
5213
  };
5252
- WalletsInvitesController_create: {
5253
- parameters: {
5254
- query?: never;
5255
- header?: never;
5256
- path: {
5257
- wallet_id: string;
5258
- };
5259
- cookie?: never;
5260
- };
5261
- requestBody: {
5262
- content: {
5263
- "application/json": components["schemas"]["CreateWalletInviteRequestDto"];
5264
- };
5265
- };
5266
- responses: {
5267
- 200: {
5268
- headers: {
5269
- [name: string]: unknown;
5270
- };
5271
- content: {
5272
- "application/json": components["schemas"]["WalletInviteDto"];
5273
- };
5274
- };
5275
- /** @description Unauthorized */
5276
- 401: {
5277
- headers: {
5278
- [name: string]: unknown;
5279
- };
5280
- content?: never;
5281
- };
5282
- /** @description You don't have access to current wallet. Allowed roles: owner */
5283
- 403: {
5284
- headers: {
5285
- [name: string]: unknown;
5286
- };
5287
- content?: never;
5288
- };
5289
- };
5290
- };
5291
- WalletsInvitesController_view: {
5292
- parameters: {
5293
- query?: never;
5294
- header?: never;
5295
- path: {
5296
- wallet_id: string;
5297
- id: string;
5298
- };
5299
- cookie?: never;
5300
- };
5301
- requestBody?: never;
5302
- responses: {
5303
- 200: {
5304
- headers: {
5305
- [name: string]: unknown;
5306
- };
5307
- content: {
5308
- "application/json": components["schemas"]["WalletInviteDto"];
5309
- };
5310
- };
5311
- /** @description Unauthorized */
5312
- 401: {
5313
- headers: {
5314
- [name: string]: unknown;
5315
- };
5316
- content?: never;
5317
- };
5318
- /** @description You don't have access to current wallet. Allowed roles: owner */
5319
- 403: {
5320
- headers: {
5321
- [name: string]: unknown;
5322
- };
5323
- content?: never;
5324
- };
5325
- };
5326
- };
5327
- WalletsInvitesController_cancel: {
5328
- parameters: {
5329
- query?: never;
5330
- header?: never;
5331
- path: {
5332
- wallet_id: string;
5333
- id: string;
5334
- };
5335
- cookie?: never;
5336
- };
5337
- requestBody?: never;
5338
- responses: {
5339
- /** @description Invite cancelled */
5340
- 200: {
5341
- headers: {
5342
- [name: string]: unknown;
5343
- };
5344
- content?: never;
5345
- };
5346
- /** @description Unauthorized */
5347
- 401: {
5348
- headers: {
5349
- [name: string]: unknown;
5350
- };
5351
- content?: never;
5352
- };
5353
- /** @description You don't have access to current wallet. Allowed roles: owner */
5354
- 403: {
5355
- headers: {
5356
- [name: string]: unknown;
5357
- };
5358
- content?: never;
5359
- };
5360
- };
5361
- };
5362
- WalletsInvitesAcceptController_accept: {
5363
- parameters: {
5364
- query?: never;
5365
- header?: never;
5366
- path?: never;
5367
- cookie?: never;
5368
- };
5369
- requestBody: {
5370
- content: {
5371
- "application/json": components["schemas"]["AcceptWalletInviteRequestDto"];
5372
- };
5373
- };
5374
- responses: {
5375
- /** @description Invite accepted */
5376
- 200: {
5377
- headers: {
5378
- [name: string]: unknown;
5379
- };
5380
- content: {
5381
- "application/json": components["schemas"]["AcceptWalletInviteResponseDto"];
5382
- };
5383
- };
5384
- /** @description Unauthorized */
5385
- 401: {
5386
- headers: {
5387
- [name: string]: unknown;
5388
- };
5389
- content?: never;
5390
- };
5391
- };
5392
- };
5393
- MailerController_handleQStashWebhook: {
5394
- parameters: {
5395
- query?: never;
5396
- header: {
5397
- "upstash-signature": string;
5398
- };
5399
- path?: never;
5400
- cookie?: never;
5401
- };
5402
- requestBody: {
5403
- content: {
5404
- "application/json": components["schemas"]["QStashWebhookDto"];
5405
- };
5406
- };
5407
- responses: {
5408
- 201: {
5409
- headers: {
5410
- [name: string]: unknown;
5411
- };
5412
- content?: never;
5413
- };
5414
- };
5415
- };
5416
5214
  }