@djangocfg/api 1.1.0 → 1.2.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.
package/dist/index.d.cts CHANGED
@@ -504,6 +504,25 @@ declare enum TicketRequestStatus {
504
504
  RESOLVED = "resolved",
505
505
  CLOSED = "closed"
506
506
  }
507
+ /**
508
+ * Type of transaction
509
+ * * `deposit` - Deposit
510
+ * * `withdrawal` - Withdrawal
511
+ * * `payment` - Payment
512
+ * * `refund` - Refund
513
+ * * `fee` - Fee
514
+ * * `bonus` - Bonus
515
+ * * `adjustment` - Adjustment
516
+ */
517
+ declare enum TransactionTransactionType {
518
+ DEPOSIT = "deposit",
519
+ WITHDRAWAL = "withdrawal",
520
+ PAYMENT = "payment",
521
+ REFUND = "refund",
522
+ FEE = "fee",
523
+ BONUS = "bonus",
524
+ ADJUSTMENT = "adjustment"
525
+ }
507
526
  /**
508
527
  * Action to perform on workers
509
528
  * * `start` - start
@@ -585,12 +604,14 @@ type enums_TicketRequestStatus = TicketRequestStatus;
585
604
  declare const enums_TicketRequestStatus: typeof TicketRequestStatus;
586
605
  type enums_TicketStatus = TicketStatus;
587
606
  declare const enums_TicketStatus: typeof TicketStatus;
607
+ type enums_TransactionTransactionType = TransactionTransactionType;
608
+ declare const enums_TransactionTransactionType: typeof TransactionTransactionType;
588
609
  type enums_WorkerActionAction = WorkerActionAction;
589
610
  declare const enums_WorkerActionAction: typeof WorkerActionAction;
590
611
  type enums_WorkerActionRequestAction = WorkerActionRequestAction;
591
612
  declare const enums_WorkerActionRequestAction: typeof WorkerActionRequestAction;
592
613
  declare namespace enums {
593
- export { enums_ArchiveItemChunkChunkType as ArchiveItemChunkChunkType, enums_ArchiveItemChunkDetailChunkType as ArchiveItemChunkDetailChunkType, enums_ArchiveItemChunkRequestChunkType as ArchiveItemChunkRequestChunkType, enums_ArchiveItemContentType as ArchiveItemContentType, enums_ArchiveItemDetailContentType as ArchiveItemDetailContentType, enums_ArchiveSearchRequestRequestChunkTypesItems as ArchiveSearchRequestRequestChunkTypesItems, enums_ArchiveSearchRequestRequestContentTypesItems as ArchiveSearchRequestRequestContentTypesItems, enums_ChatMessageRole as ChatMessageRole, enums_DocumentArchiveArchiveType as DocumentArchiveArchiveType, enums_DocumentArchiveDetailArchiveType as DocumentArchiveDetailArchiveType, enums_DocumentArchiveDetailProcessingStatus as DocumentArchiveDetailProcessingStatus, enums_DocumentArchiveListArchiveType as DocumentArchiveListArchiveType, enums_DocumentArchiveListProcessingStatus as DocumentArchiveListProcessingStatus, enums_DocumentArchiveProcessingStatus as DocumentArchiveProcessingStatus, enums_EmailLogStatus as EmailLogStatus, enums_LeadSubmissionContactType as LeadSubmissionContactType, enums_LeadSubmissionRequestContactType as LeadSubmissionRequestContactType, enums_NewsletterCampaignStatus as NewsletterCampaignStatus, enums_OTPRequestRequestChannel as OTPRequestRequestChannel, enums_OTPVerifyRequestChannel as OTPVerifyRequestChannel, enums_PatchedArchiveItemChunkRequestChunkType as PatchedArchiveItemChunkRequestChunkType, enums_PatchedLeadSubmissionRequestContactType as PatchedLeadSubmissionRequestContactType, enums_PatchedTicketRequestStatus as PatchedTicketRequestStatus, enums_PaymentDetailStatus as PaymentDetailStatus, enums_PaymentListStatus as PaymentListStatus, enums_QueueActionAction as QueueActionAction, enums_QueueActionRequestAction as QueueActionRequestAction, enums_TicketRequestStatus as TicketRequestStatus, enums_TicketStatus as TicketStatus, enums_WorkerActionAction as WorkerActionAction, enums_WorkerActionRequestAction as WorkerActionRequestAction };
614
+ export { enums_ArchiveItemChunkChunkType as ArchiveItemChunkChunkType, enums_ArchiveItemChunkDetailChunkType as ArchiveItemChunkDetailChunkType, enums_ArchiveItemChunkRequestChunkType as ArchiveItemChunkRequestChunkType, enums_ArchiveItemContentType as ArchiveItemContentType, enums_ArchiveItemDetailContentType as ArchiveItemDetailContentType, enums_ArchiveSearchRequestRequestChunkTypesItems as ArchiveSearchRequestRequestChunkTypesItems, enums_ArchiveSearchRequestRequestContentTypesItems as ArchiveSearchRequestRequestContentTypesItems, enums_ChatMessageRole as ChatMessageRole, enums_DocumentArchiveArchiveType as DocumentArchiveArchiveType, enums_DocumentArchiveDetailArchiveType as DocumentArchiveDetailArchiveType, enums_DocumentArchiveDetailProcessingStatus as DocumentArchiveDetailProcessingStatus, enums_DocumentArchiveListArchiveType as DocumentArchiveListArchiveType, enums_DocumentArchiveListProcessingStatus as DocumentArchiveListProcessingStatus, enums_DocumentArchiveProcessingStatus as DocumentArchiveProcessingStatus, enums_EmailLogStatus as EmailLogStatus, enums_LeadSubmissionContactType as LeadSubmissionContactType, enums_LeadSubmissionRequestContactType as LeadSubmissionRequestContactType, enums_NewsletterCampaignStatus as NewsletterCampaignStatus, enums_OTPRequestRequestChannel as OTPRequestRequestChannel, enums_OTPVerifyRequestChannel as OTPVerifyRequestChannel, enums_PatchedArchiveItemChunkRequestChunkType as PatchedArchiveItemChunkRequestChunkType, enums_PatchedLeadSubmissionRequestContactType as PatchedLeadSubmissionRequestContactType, enums_PatchedTicketRequestStatus as PatchedTicketRequestStatus, enums_PaymentDetailStatus as PaymentDetailStatus, enums_PaymentListStatus as PaymentListStatus, enums_QueueActionAction as QueueActionAction, enums_QueueActionRequestAction as QueueActionRequestAction, enums_TicketRequestStatus as TicketRequestStatus, enums_TicketStatus as TicketStatus, enums_TransactionTransactionType as TransactionTransactionType, enums_WorkerActionAction as WorkerActionAction, enums_WorkerActionRequestAction as WorkerActionRequestAction };
594
615
  }
595
616
 
596
617
  /**
@@ -3024,6 +3045,22 @@ declare class CfgNewsletter {
3024
3045
  unsubscribePartialUpdate(data?: PatchedUnsubscribeRequest$1): Promise<Unsubscribe$1>;
3025
3046
  }
3026
3047
 
3048
+ /**
3049
+ * User balance serializer.
3050
+ *
3051
+ * Response model (includes read-only fields).
3052
+ */
3053
+ interface Balance$1 {
3054
+ /** Current balance in USD */
3055
+ balance_usd: string;
3056
+ balance_display: string;
3057
+ /** Total amount deposited (lifetime) */
3058
+ total_deposited: string;
3059
+ /** Total amount withdrawn (lifetime) */
3060
+ total_withdrawn: string;
3061
+ /** When the last transaction occurred */
3062
+ last_transaction_at: string | null;
3063
+ }
3027
3064
  /**
3028
3065
  *
3029
3066
  * Response model (includes read-only fields).
@@ -3084,12 +3121,14 @@ interface PaymentDetail$1 {
3084
3121
  status_display: string;
3085
3122
  /** Cryptocurrency payment address */
3086
3123
  pay_address: string | null;
3087
- qr_code_url: string;
3124
+ /** Get QR code URL. */
3125
+ qr_code_url: string | null;
3088
3126
  /** Payment page URL (if provided by provider) */
3089
3127
  payment_url: string | null;
3090
3128
  /** Blockchain transaction hash */
3091
3129
  transaction_hash: string | null;
3092
- explorer_link: string;
3130
+ /** Get blockchain explorer link. */
3131
+ explorer_link: string | null;
3093
3132
  /** Number of blockchain confirmations */
3094
3133
  confirmations_count: number;
3095
3134
  /** When this payment expires (typically 30 minutes) */
@@ -3137,7 +3176,7 @@ interface PaymentList$1 {
3137
3176
  }
3138
3177
 
3139
3178
  declare namespace models$2 {
3140
- export type { PaginatedPaymentListList$1 as PaginatedPaymentListList, PaymentDetail$1 as PaymentDetail, PaymentList$1 as PaymentList };
3179
+ export type { Balance$1 as Balance, PaginatedPaymentListList$1 as PaginatedPaymentListList, PaymentDetail$1 as PaymentDetail, PaymentList$1 as PaymentList };
3141
3180
  }
3142
3181
 
3143
3182
  /**
@@ -3147,14 +3186,17 @@ declare class CfgPayments {
3147
3186
  private client;
3148
3187
  constructor(client: any);
3149
3188
  /**
3150
- * Get current user balance.
3189
+ * Get user balance
3190
+ *
3191
+ * Get current user balance and transaction statistics
3151
3192
  */
3152
- balanceRetrieve(): Promise<any>;
3193
+ balanceRetrieve(): Promise<Balance$1>;
3153
3194
  /**
3154
- * GET /api/v1/payments/currencies/ Returns list of available currencies
3155
- * with token+network info.
3195
+ * Get available currencies
3196
+ *
3197
+ * Returns list of available currencies with token+network info
3156
3198
  */
3157
- currenciesRetrieve(): Promise<any>;
3199
+ currenciesList(): Promise<any>;
3158
3200
  paymentsList(page?: number, page_size?: number): Promise<PaginatedPaymentListList$1>;
3159
3201
  paymentsList(params?: {
3160
3202
  page?: number;
@@ -3185,10 +3227,12 @@ declare class CfgPayments {
3185
3227
  * "Optional description" }
3186
3228
  */
3187
3229
  paymentsCreateCreate(): Promise<PaymentList$1>;
3188
- /**
3189
- * Get user transactions with pagination.
3190
- */
3191
- transactionsRetrieve(): Promise<any>;
3230
+ transactionsList(limit?: number, offset?: number, type?: string): Promise<any>;
3231
+ transactionsList(params?: {
3232
+ limit?: number;
3233
+ offset?: number;
3234
+ type?: string;
3235
+ }): Promise<any>;
3192
3236
  }
3193
3237
 
3194
3238
  /**
@@ -3836,7 +3880,7 @@ declare function shouldRetry(error: any): boolean;
3836
3880
  declare function withRetry<T>(fn: () => Promise<T>, config?: RetryConfig): Promise<T>;
3837
3881
 
3838
3882
  /**
3839
- * Async API client for Django CFG Sample API.
3883
+ * Async API client for Django CFG API.
3840
3884
  *
3841
3885
  * Usage:
3842
3886
  * ```typescript
@@ -3879,7 +3923,9 @@ declare class APIClient {
3879
3923
  retryConfig?: RetryConfig;
3880
3924
  });
3881
3925
  /**
3882
- * Get CSRF token from cookies.
3926
+ * Get CSRF token from cookies (for SessionAuthentication).
3927
+ *
3928
+ * Returns null if cookie doesn't exist (JWT-only auth).
3883
3929
  */
3884
3930
  getCsrfToken(): string | null;
3885
3931
  /**
@@ -4494,6 +4540,45 @@ declare const OPENAPI_SCHEMA: {
4494
4540
  required: string[];
4495
4541
  type: string;
4496
4542
  };
4543
+ Balance: {
4544
+ description: string;
4545
+ properties: {
4546
+ balance_display: {
4547
+ readOnly: boolean;
4548
+ type: string;
4549
+ };
4550
+ balance_usd: {
4551
+ description: string;
4552
+ format: string;
4553
+ pattern: string;
4554
+ readOnly: boolean;
4555
+ type: string;
4556
+ };
4557
+ last_transaction_at: {
4558
+ description: string;
4559
+ format: string;
4560
+ nullable: boolean;
4561
+ readOnly: boolean;
4562
+ type: string;
4563
+ };
4564
+ total_deposited: {
4565
+ description: string;
4566
+ format: string;
4567
+ pattern: string;
4568
+ readOnly: boolean;
4569
+ type: string;
4570
+ };
4571
+ total_withdrawn: {
4572
+ description: string;
4573
+ format: string;
4574
+ pattern: string;
4575
+ readOnly: boolean;
4576
+ type: string;
4577
+ };
4578
+ };
4579
+ required: string[];
4580
+ type: string;
4581
+ };
4497
4582
  BulkEmailRequest: {
4498
4583
  description: string;
4499
4584
  properties: {
@@ -4924,6 +5009,65 @@ declare const OPENAPI_SCHEMA: {
4924
5009
  required: string[];
4925
5010
  type: string;
4926
5011
  };
5012
+ Currency: {
5013
+ description: string;
5014
+ properties: {
5015
+ code: {
5016
+ description: string;
5017
+ readOnly: boolean;
5018
+ type: string;
5019
+ };
5020
+ decimal_places: {
5021
+ description: string;
5022
+ readOnly: boolean;
5023
+ type: string;
5024
+ };
5025
+ display_name: {
5026
+ readOnly: boolean;
5027
+ type: string;
5028
+ };
5029
+ is_active: {
5030
+ description: string;
5031
+ readOnly: boolean;
5032
+ type: string;
5033
+ };
5034
+ min_amount_usd: {
5035
+ description: string;
5036
+ format: string;
5037
+ pattern: string;
5038
+ readOnly: boolean;
5039
+ type: string;
5040
+ };
5041
+ name: {
5042
+ description: string;
5043
+ readOnly: boolean;
5044
+ type: string;
5045
+ };
5046
+ network: {
5047
+ description: string;
5048
+ nullable: boolean;
5049
+ readOnly: boolean;
5050
+ type: string;
5051
+ };
5052
+ sort_order: {
5053
+ description: string;
5054
+ readOnly: boolean;
5055
+ type: string;
5056
+ };
5057
+ symbol: {
5058
+ description: string;
5059
+ readOnly: boolean;
5060
+ type: string;
5061
+ };
5062
+ token: {
5063
+ description: string;
5064
+ readOnly: boolean;
5065
+ type: string;
5066
+ };
5067
+ };
5068
+ required: string[];
5069
+ type: string;
5070
+ };
4927
5071
  Document: {
4928
5072
  description: string;
4929
5073
  properties: {
@@ -7666,6 +7810,8 @@ declare const OPENAPI_SCHEMA: {
7666
7810
  type: string;
7667
7811
  };
7668
7812
  explorer_link: {
7813
+ description: string;
7814
+ nullable: boolean;
7669
7815
  readOnly: boolean;
7670
7816
  type: string;
7671
7817
  };
@@ -7714,6 +7860,8 @@ declare const OPENAPI_SCHEMA: {
7714
7860
  type: string;
7715
7861
  };
7716
7862
  qr_code_url: {
7863
+ description: string;
7864
+ nullable: boolean;
7717
7865
  readOnly: boolean;
7718
7866
  type: string;
7719
7867
  };
@@ -8225,6 +8373,65 @@ declare const OPENAPI_SCHEMA: {
8225
8373
  required: string[];
8226
8374
  type: string;
8227
8375
  };
8376
+ Transaction: {
8377
+ description: string;
8378
+ properties: {
8379
+ amount_display: {
8380
+ readOnly: boolean;
8381
+ type: string;
8382
+ };
8383
+ amount_usd: {
8384
+ description: string;
8385
+ format: string;
8386
+ pattern: string;
8387
+ readOnly: boolean;
8388
+ type: string;
8389
+ };
8390
+ balance_after: {
8391
+ description: string;
8392
+ format: string;
8393
+ pattern: string;
8394
+ readOnly: boolean;
8395
+ type: string;
8396
+ };
8397
+ created_at: {
8398
+ description: string;
8399
+ format: string;
8400
+ readOnly: boolean;
8401
+ type: string;
8402
+ };
8403
+ description: {
8404
+ description: string;
8405
+ readOnly: boolean;
8406
+ type: string;
8407
+ };
8408
+ id: {
8409
+ description: string;
8410
+ format: string;
8411
+ readOnly: boolean;
8412
+ type: string;
8413
+ };
8414
+ payment_id: {
8415
+ description: string;
8416
+ nullable: boolean;
8417
+ readOnly: boolean;
8418
+ type: string;
8419
+ };
8420
+ transaction_type: {
8421
+ description: string;
8422
+ enum: string[];
8423
+ readOnly: boolean;
8424
+ type: string;
8425
+ "x-spec-enum-id": string;
8426
+ };
8427
+ type_display: {
8428
+ readOnly: boolean;
8429
+ type: string;
8430
+ };
8431
+ };
8432
+ required: string[];
8433
+ type: string;
8434
+ };
8228
8435
  Unsubscribe: {
8229
8436
  description: string;
8230
8437
  properties: {
@@ -8578,13 +8785,8 @@ declare const OPENAPI_SCHEMA: {
8578
8785
  };
8579
8786
  security: ({
8580
8787
  jwtAuth: any[];
8581
- cookieAuth?: undefined;
8582
- } | {
8583
- cookieAuth: any[];
8584
- jwtAuth?: undefined;
8585
8788
  } | {
8586
8789
  jwtAuth?: undefined;
8587
- cookieAuth?: undefined;
8588
8790
  })[];
8589
8791
  tags: string[];
8590
8792
  "x-async-capable": boolean;
@@ -8648,13 +8850,8 @@ declare const OPENAPI_SCHEMA: {
8648
8850
  };
8649
8851
  security: ({
8650
8852
  jwtAuth: any[];
8651
- cookieAuth?: undefined;
8652
- } | {
8653
- cookieAuth: any[];
8654
- jwtAuth?: undefined;
8655
8853
  } | {
8656
8854
  jwtAuth?: undefined;
8657
- cookieAuth?: undefined;
8658
8855
  })[];
8659
8856
  tags: string[];
8660
8857
  "x-async-capable": boolean;
@@ -8686,13 +8883,9 @@ declare const OPENAPI_SCHEMA: {
8686
8883
  description: string;
8687
8884
  };
8688
8885
  };
8689
- security: ({
8886
+ security: {
8690
8887
  jwtAuth: any[];
8691
- cookieAuth?: undefined;
8692
- } | {
8693
- cookieAuth: any[];
8694
- jwtAuth?: undefined;
8695
- })[];
8888
+ }[];
8696
8889
  summary: string;
8697
8890
  tags: string[];
8698
8891
  "x-async-capable": boolean;
@@ -8751,13 +8944,9 @@ declare const OPENAPI_SCHEMA: {
8751
8944
  description: string;
8752
8945
  };
8753
8946
  };
8754
- security: ({
8947
+ security: {
8755
8948
  jwtAuth: any[];
8756
- cookieAuth?: undefined;
8757
- } | {
8758
- cookieAuth: any[];
8759
- jwtAuth?: undefined;
8760
- })[];
8949
+ }[];
8761
8950
  summary: string;
8762
8951
  tags: string[];
8763
8952
  "x-async-capable": boolean;
@@ -8830,13 +9019,9 @@ declare const OPENAPI_SCHEMA: {
8830
9019
  description: string;
8831
9020
  };
8832
9021
  };
8833
- security: ({
9022
+ security: {
8834
9023
  jwtAuth: any[];
8835
- cookieAuth?: undefined;
8836
- } | {
8837
- cookieAuth: any[];
8838
- jwtAuth?: undefined;
8839
- })[];
9024
+ }[];
8840
9025
  summary: string;
8841
9026
  tags: string[];
8842
9027
  "x-async-capable": boolean;
@@ -8907,13 +9092,9 @@ declare const OPENAPI_SCHEMA: {
8907
9092
  description: string;
8908
9093
  };
8909
9094
  };
8910
- security: ({
9095
+ security: {
8911
9096
  jwtAuth: any[];
8912
- cookieAuth?: undefined;
8913
- } | {
8914
- cookieAuth: any[];
8915
- jwtAuth?: undefined;
8916
- })[];
9097
+ }[];
8917
9098
  summary: string;
8918
9099
  tags: string[];
8919
9100
  "x-async-capable": boolean;
@@ -8986,13 +9167,9 @@ declare const OPENAPI_SCHEMA: {
8986
9167
  description: string;
8987
9168
  };
8988
9169
  };
8989
- security: ({
9170
+ security: {
8990
9171
  jwtAuth: any[];
8991
- cookieAuth?: undefined;
8992
- } | {
8993
- cookieAuth: any[];
8994
- jwtAuth?: undefined;
8995
- })[];
9172
+ }[];
8996
9173
  summary: string;
8997
9174
  tags: string[];
8998
9175
  "x-async-capable": boolean;
@@ -9063,13 +9240,9 @@ declare const OPENAPI_SCHEMA: {
9063
9240
  description: string;
9064
9241
  };
9065
9242
  };
9066
- security: ({
9243
+ security: {
9067
9244
  jwtAuth: any[];
9068
- cookieAuth?: undefined;
9069
- } | {
9070
- cookieAuth: any[];
9071
- jwtAuth?: undefined;
9072
- })[];
9245
+ }[];
9073
9246
  summary: string;
9074
9247
  tags: string[];
9075
9248
  "x-async-capable": boolean;
@@ -9133,13 +9306,8 @@ declare const OPENAPI_SCHEMA: {
9133
9306
  };
9134
9307
  security: ({
9135
9308
  jwtAuth: any[];
9136
- cookieAuth?: undefined;
9137
- } | {
9138
- cookieAuth: any[];
9139
- jwtAuth?: undefined;
9140
9309
  } | {
9141
9310
  jwtAuth?: undefined;
9142
- cookieAuth?: undefined;
9143
9311
  })[];
9144
9312
  tags: string[];
9145
9313
  "x-async-capable": boolean;
@@ -9163,13 +9331,8 @@ declare const OPENAPI_SCHEMA: {
9163
9331
  };
9164
9332
  security: ({
9165
9333
  jwtAuth: any[];
9166
- cookieAuth?: undefined;
9167
- } | {
9168
- cookieAuth: any[];
9169
- jwtAuth?: undefined;
9170
9334
  } | {
9171
9335
  jwtAuth?: undefined;
9172
- cookieAuth?: undefined;
9173
9336
  })[];
9174
9337
  tags: string[];
9175
9338
  "x-async-capable": boolean;
@@ -9193,13 +9356,8 @@ declare const OPENAPI_SCHEMA: {
9193
9356
  };
9194
9357
  security: ({
9195
9358
  jwtAuth: any[];
9196
- cookieAuth?: undefined;
9197
- } | {
9198
- cookieAuth: any[];
9199
- jwtAuth?: undefined;
9200
9359
  } | {
9201
9360
  jwtAuth?: undefined;
9202
- cookieAuth?: undefined;
9203
9361
  })[];
9204
9362
  tags: string[];
9205
9363
  "x-async-capable": boolean;
@@ -9230,13 +9388,9 @@ declare const OPENAPI_SCHEMA: {
9230
9388
  description: string;
9231
9389
  };
9232
9390
  };
9233
- security: ({
9391
+ security: {
9234
9392
  jwtAuth: any[];
9235
- cookieAuth?: undefined;
9236
- } | {
9237
- cookieAuth: any[];
9238
- jwtAuth?: undefined;
9239
- })[];
9393
+ }[];
9240
9394
  tags: string[];
9241
9395
  "x-async-capable": boolean;
9242
9396
  };
@@ -9275,13 +9429,9 @@ declare const OPENAPI_SCHEMA: {
9275
9429
  description: string;
9276
9430
  };
9277
9431
  };
9278
- security: ({
9432
+ security: {
9279
9433
  jwtAuth: any[];
9280
- cookieAuth?: undefined;
9281
- } | {
9282
- cookieAuth: any[];
9283
- jwtAuth?: undefined;
9284
- })[];
9434
+ }[];
9285
9435
  tags: string[];
9286
9436
  "x-async-capable": boolean;
9287
9437
  };
@@ -9342,13 +9492,9 @@ declare const OPENAPI_SCHEMA: {
9342
9492
  description: string;
9343
9493
  };
9344
9494
  };
9345
- security: ({
9495
+ security: {
9346
9496
  jwtAuth: any[];
9347
- cookieAuth?: undefined;
9348
- } | {
9349
- cookieAuth: any[];
9350
- jwtAuth?: undefined;
9351
- })[];
9497
+ }[];
9352
9498
  summary: string;
9353
9499
  tags: string[];
9354
9500
  "x-async-capable": boolean;
@@ -9373,13 +9519,9 @@ declare const OPENAPI_SCHEMA: {
9373
9519
  description: string;
9374
9520
  };
9375
9521
  };
9376
- security: ({
9522
+ security: {
9377
9523
  jwtAuth: any[];
9378
- cookieAuth?: undefined;
9379
- } | {
9380
- cookieAuth: any[];
9381
- jwtAuth?: undefined;
9382
- })[];
9524
+ }[];
9383
9525
  tags: string[];
9384
9526
  "x-async-capable": boolean;
9385
9527
  };
@@ -9408,13 +9550,9 @@ declare const OPENAPI_SCHEMA: {
9408
9550
  description: string;
9409
9551
  };
9410
9552
  };
9411
- security: ({
9553
+ security: {
9412
9554
  jwtAuth: any[];
9413
- cookieAuth?: undefined;
9414
- } | {
9415
- cookieAuth: any[];
9416
- jwtAuth?: undefined;
9417
- })[];
9555
+ }[];
9418
9556
  tags: string[];
9419
9557
  "x-async-capable": boolean;
9420
9558
  };
@@ -9462,13 +9600,9 @@ declare const OPENAPI_SCHEMA: {
9462
9600
  description: string;
9463
9601
  };
9464
9602
  };
9465
- security: ({
9603
+ security: {
9466
9604
  jwtAuth: any[];
9467
- cookieAuth?: undefined;
9468
- } | {
9469
- cookieAuth: any[];
9470
- jwtAuth?: undefined;
9471
- })[];
9605
+ }[];
9472
9606
  tags: string[];
9473
9607
  "x-async-capable": boolean;
9474
9608
  };
@@ -9517,13 +9651,9 @@ declare const OPENAPI_SCHEMA: {
9517
9651
  description: string;
9518
9652
  };
9519
9653
  };
9520
- security: ({
9654
+ security: {
9521
9655
  jwtAuth: any[];
9522
- cookieAuth?: undefined;
9523
- } | {
9524
- cookieAuth: any[];
9525
- jwtAuth?: undefined;
9526
- })[];
9656
+ }[];
9527
9657
  tags: string[];
9528
9658
  "x-async-capable": boolean;
9529
9659
  };
@@ -9554,13 +9684,9 @@ declare const OPENAPI_SCHEMA: {
9554
9684
  description: string;
9555
9685
  };
9556
9686
  };
9557
- security: ({
9687
+ security: {
9558
9688
  jwtAuth: any[];
9559
- cookieAuth?: undefined;
9560
- } | {
9561
- cookieAuth: any[];
9562
- jwtAuth?: undefined;
9563
- })[];
9689
+ }[];
9564
9690
  summary: string;
9565
9691
  tags: string[];
9566
9692
  "x-async-capable": boolean;
@@ -9599,13 +9725,9 @@ declare const OPENAPI_SCHEMA: {
9599
9725
  description: string;
9600
9726
  };
9601
9727
  };
9602
- security: ({
9728
+ security: {
9603
9729
  jwtAuth: any[];
9604
- cookieAuth?: undefined;
9605
- } | {
9606
- cookieAuth: any[];
9607
- jwtAuth?: undefined;
9608
- })[];
9730
+ }[];
9609
9731
  summary: string;
9610
9732
  tags: string[];
9611
9733
  "x-async-capable": boolean;
@@ -9665,49 +9787,18 @@ declare const OPENAPI_SCHEMA: {
9665
9787
  description: string;
9666
9788
  };
9667
9789
  "400": {
9668
- content: {
9669
- "application/json": {
9670
- schema: {
9671
- additionalProperties: {};
9672
- description: string;
9673
- type: string;
9674
- };
9675
- };
9676
- };
9677
9790
  description: string;
9678
9791
  };
9679
9792
  "413": {
9680
- content: {
9681
- "application/json": {
9682
- schema: {
9683
- additionalProperties: {};
9684
- description: string;
9685
- type: string;
9686
- };
9687
- };
9688
- };
9689
9793
  description: string;
9690
9794
  };
9691
9795
  "429": {
9692
- content: {
9693
- "application/json": {
9694
- schema: {
9695
- additionalProperties: {};
9696
- description: string;
9697
- type: string;
9698
- };
9699
- };
9700
- };
9701
9796
  description: string;
9702
9797
  };
9703
9798
  };
9704
- security: ({
9799
+ security: {
9705
9800
  jwtAuth: any[];
9706
- cookieAuth?: undefined;
9707
- } | {
9708
- cookieAuth: any[];
9709
- jwtAuth?: undefined;
9710
- })[];
9801
+ }[];
9711
9802
  summary: string;
9712
9803
  tags: string[];
9713
9804
  "x-async-capable": boolean;
@@ -9729,13 +9820,9 @@ declare const OPENAPI_SCHEMA: {
9729
9820
  description: string;
9730
9821
  };
9731
9822
  };
9732
- security: ({
9823
+ security: {
9733
9824
  jwtAuth: any[];
9734
- cookieAuth?: undefined;
9735
- } | {
9736
- cookieAuth: any[];
9737
- jwtAuth?: undefined;
9738
- })[];
9825
+ }[];
9739
9826
  summary: string;
9740
9827
  tags: string[];
9741
9828
  "x-async-capable": boolean;
@@ -9757,37 +9844,15 @@ declare const OPENAPI_SCHEMA: {
9757
9844
  }[];
9758
9845
  responses: {
9759
9846
  "204": {
9760
- content: {
9761
- "application/json": {
9762
- schema: {
9763
- additionalProperties: {};
9764
- description: string;
9765
- type: string;
9766
- };
9767
- };
9768
- };
9769
9847
  description: string;
9770
9848
  };
9771
9849
  "404": {
9772
- content: {
9773
- "application/json": {
9774
- schema: {
9775
- additionalProperties: {};
9776
- description: string;
9777
- type: string;
9778
- };
9779
- };
9780
- };
9781
9850
  description: string;
9782
9851
  };
9783
9852
  };
9784
- security: ({
9853
+ security: {
9785
9854
  jwtAuth: any[];
9786
- cookieAuth?: undefined;
9787
- } | {
9788
- cookieAuth: any[];
9789
- jwtAuth?: undefined;
9790
- })[];
9855
+ }[];
9791
9856
  summary: string;
9792
9857
  tags: string[];
9793
9858
  "x-async-capable": boolean;
@@ -9817,25 +9882,12 @@ declare const OPENAPI_SCHEMA: {
9817
9882
  description: string;
9818
9883
  };
9819
9884
  "404": {
9820
- content: {
9821
- "application/json": {
9822
- schema: {
9823
- additionalProperties: {};
9824
- description: string;
9825
- type: string;
9826
- };
9827
- };
9828
- };
9829
9885
  description: string;
9830
9886
  };
9831
9887
  };
9832
- security: ({
9888
+ security: {
9833
9889
  jwtAuth: any[];
9834
- cookieAuth?: undefined;
9835
- } | {
9836
- cookieAuth: any[];
9837
- jwtAuth?: undefined;
9838
- })[];
9890
+ }[];
9839
9891
  summary: string;
9840
9892
  tags: string[];
9841
9893
  "x-async-capable": boolean;
@@ -9884,13 +9936,9 @@ declare const OPENAPI_SCHEMA: {
9884
9936
  description: string;
9885
9937
  };
9886
9938
  };
9887
- security: ({
9939
+ security: {
9888
9940
  jwtAuth: any[];
9889
- cookieAuth?: undefined;
9890
- } | {
9891
- cookieAuth: any[];
9892
- jwtAuth?: undefined;
9893
- })[];
9941
+ }[];
9894
9942
  tags: string[];
9895
9943
  "x-async-capable": boolean;
9896
9944
  };
@@ -9939,13 +9987,9 @@ declare const OPENAPI_SCHEMA: {
9939
9987
  description: string;
9940
9988
  };
9941
9989
  };
9942
- security: ({
9990
+ security: {
9943
9991
  jwtAuth: any[];
9944
- cookieAuth?: undefined;
9945
- } | {
9946
- cookieAuth: any[];
9947
- jwtAuth?: undefined;
9948
- })[];
9992
+ }[];
9949
9993
  tags: string[];
9950
9994
  "x-async-capable": boolean;
9951
9995
  };
@@ -9996,13 +10040,9 @@ declare const OPENAPI_SCHEMA: {
9996
10040
  description: string;
9997
10041
  };
9998
10042
  };
9999
- security: ({
10043
+ security: {
10000
10044
  jwtAuth: any[];
10001
- cookieAuth?: undefined;
10002
- } | {
10003
- cookieAuth: any[];
10004
- jwtAuth?: undefined;
10005
- })[];
10045
+ }[];
10006
10046
  summary: string;
10007
10047
  tags: string[];
10008
10048
  "x-async-capable": boolean;
@@ -10034,13 +10074,9 @@ declare const OPENAPI_SCHEMA: {
10034
10074
  description: string;
10035
10075
  };
10036
10076
  };
10037
- security: ({
10077
+ security: {
10038
10078
  jwtAuth: any[];
10039
- cookieAuth?: undefined;
10040
- } | {
10041
- cookieAuth: any[];
10042
- jwtAuth?: undefined;
10043
- })[];
10079
+ }[];
10044
10080
  summary: string;
10045
10081
  tags: string[];
10046
10082
  "x-async-capable": boolean;
@@ -10071,13 +10107,9 @@ declare const OPENAPI_SCHEMA: {
10071
10107
  description: string;
10072
10108
  };
10073
10109
  };
10074
- security: ({
10110
+ security: {
10075
10111
  jwtAuth: any[];
10076
- cookieAuth?: undefined;
10077
- } | {
10078
- cookieAuth: any[];
10079
- jwtAuth?: undefined;
10080
- })[];
10112
+ }[];
10081
10113
  summary: string;
10082
10114
  tags: string[];
10083
10115
  "x-async-capable": boolean;
@@ -10116,13 +10148,9 @@ declare const OPENAPI_SCHEMA: {
10116
10148
  description: string;
10117
10149
  };
10118
10150
  };
10119
- security: ({
10151
+ security: {
10120
10152
  jwtAuth: any[];
10121
- cookieAuth?: undefined;
10122
- } | {
10123
- cookieAuth: any[];
10124
- jwtAuth?: undefined;
10125
- })[];
10153
+ }[];
10126
10154
  summary: string;
10127
10155
  tags: string[];
10128
10156
  "x-async-capable": boolean;
@@ -10147,13 +10175,9 @@ declare const OPENAPI_SCHEMA: {
10147
10175
  description: string;
10148
10176
  };
10149
10177
  };
10150
- security: ({
10178
+ security: {
10151
10179
  jwtAuth: any[];
10152
- cookieAuth?: undefined;
10153
- } | {
10154
- cookieAuth: any[];
10155
- jwtAuth?: undefined;
10156
- })[];
10180
+ }[];
10157
10181
  tags: string[];
10158
10182
  "x-async-capable": boolean;
10159
10183
  };
@@ -10182,13 +10206,9 @@ declare const OPENAPI_SCHEMA: {
10182
10206
  description: string;
10183
10207
  };
10184
10208
  };
10185
- security: ({
10209
+ security: {
10186
10210
  jwtAuth: any[];
10187
- cookieAuth?: undefined;
10188
- } | {
10189
- cookieAuth: any[];
10190
- jwtAuth?: undefined;
10191
- })[];
10211
+ }[];
10192
10212
  tags: string[];
10193
10213
  "x-async-capable": boolean;
10194
10214
  };
@@ -10236,13 +10256,9 @@ declare const OPENAPI_SCHEMA: {
10236
10256
  description: string;
10237
10257
  };
10238
10258
  };
10239
- security: ({
10259
+ security: {
10240
10260
  jwtAuth: any[];
10241
- cookieAuth?: undefined;
10242
- } | {
10243
- cookieAuth: any[];
10244
- jwtAuth?: undefined;
10245
- })[];
10261
+ }[];
10246
10262
  tags: string[];
10247
10263
  "x-async-capable": boolean;
10248
10264
  };
@@ -10290,13 +10306,9 @@ declare const OPENAPI_SCHEMA: {
10290
10306
  description: string;
10291
10307
  };
10292
10308
  };
10293
- security: ({
10309
+ security: {
10294
10310
  jwtAuth: any[];
10295
- cookieAuth?: undefined;
10296
- } | {
10297
- cookieAuth: any[];
10298
- jwtAuth?: undefined;
10299
- })[];
10311
+ }[];
10300
10312
  tags: string[];
10301
10313
  "x-async-capable": boolean;
10302
10314
  };
@@ -10346,13 +10358,9 @@ declare const OPENAPI_SCHEMA: {
10346
10358
  description: string;
10347
10359
  };
10348
10360
  };
10349
- security: ({
10361
+ security: {
10350
10362
  jwtAuth: any[];
10351
- cookieAuth?: undefined;
10352
- } | {
10353
- cookieAuth: any[];
10354
- jwtAuth?: undefined;
10355
- })[];
10363
+ }[];
10356
10364
  summary: string;
10357
10365
  tags: string[];
10358
10366
  "x-async-capable": boolean;
@@ -10403,13 +10411,9 @@ declare const OPENAPI_SCHEMA: {
10403
10411
  description: string;
10404
10412
  };
10405
10413
  };
10406
- security: ({
10414
+ security: {
10407
10415
  jwtAuth: any[];
10408
- cookieAuth?: undefined;
10409
- } | {
10410
- cookieAuth: any[];
10411
- jwtAuth?: undefined;
10412
- })[];
10416
+ }[];
10413
10417
  summary: string;
10414
10418
  tags: string[];
10415
10419
  "x-async-capable": boolean;
@@ -10442,13 +10446,8 @@ declare const OPENAPI_SCHEMA: {
10442
10446
  };
10443
10447
  security: ({
10444
10448
  jwtAuth: any[];
10445
- cookieAuth?: undefined;
10446
- } | {
10447
- cookieAuth: any[];
10448
- jwtAuth?: undefined;
10449
10449
  } | {
10450
10450
  jwtAuth?: undefined;
10451
- cookieAuth?: undefined;
10452
10451
  })[];
10453
10452
  summary: string;
10454
10453
  tags: string[];
@@ -10481,27 +10480,13 @@ declare const OPENAPI_SCHEMA: {
10481
10480
  description: string;
10482
10481
  };
10483
10482
  "404": {
10484
- content: {
10485
- "application/json": {
10486
- schema: {
10487
- additionalProperties: {};
10488
- description: string;
10489
- type: string;
10490
- };
10491
- };
10492
- };
10493
10483
  description: string;
10494
10484
  };
10495
10485
  };
10496
10486
  security: ({
10497
10487
  jwtAuth: any[];
10498
- cookieAuth?: undefined;
10499
- } | {
10500
- cookieAuth: any[];
10501
- jwtAuth?: undefined;
10502
10488
  } | {
10503
10489
  jwtAuth?: undefined;
10504
- cookieAuth?: undefined;
10505
10490
  })[];
10506
10491
  summary: string;
10507
10492
  tags: string[];
@@ -10543,13 +10528,8 @@ declare const OPENAPI_SCHEMA: {
10543
10528
  };
10544
10529
  security: ({
10545
10530
  jwtAuth: any[];
10546
- cookieAuth?: undefined;
10547
10531
  } | {
10548
- cookieAuth: any[];
10549
10532
  jwtAuth?: undefined;
10550
- } | {
10551
- jwtAuth?: undefined;
10552
- cookieAuth?: undefined;
10553
10533
  })[];
10554
10534
  summary: string;
10555
10535
  tags: string[];
@@ -10582,27 +10562,13 @@ declare const OPENAPI_SCHEMA: {
10582
10562
  description: string;
10583
10563
  };
10584
10564
  "404": {
10585
- content: {
10586
- "application/json": {
10587
- schema: {
10588
- additionalProperties: {};
10589
- description: string;
10590
- type: string;
10591
- };
10592
- };
10593
- };
10594
10565
  description: string;
10595
10566
  };
10596
10567
  };
10597
10568
  security: ({
10598
10569
  jwtAuth: any[];
10599
- cookieAuth?: undefined;
10600
- } | {
10601
- cookieAuth: any[];
10602
- jwtAuth?: undefined;
10603
10570
  } | {
10604
10571
  jwtAuth?: undefined;
10605
- cookieAuth?: undefined;
10606
10572
  })[];
10607
10573
  summary: string;
10608
10574
  tags: string[];
@@ -10634,13 +10600,9 @@ declare const OPENAPI_SCHEMA: {
10634
10600
  description: string;
10635
10601
  };
10636
10602
  };
10637
- security: ({
10603
+ security: {
10638
10604
  jwtAuth: any[];
10639
- cookieAuth?: undefined;
10640
- } | {
10641
- cookieAuth: any[];
10642
- jwtAuth?: undefined;
10643
- })[];
10605
+ }[];
10644
10606
  tags: string[];
10645
10607
  "x-async-capable": boolean;
10646
10608
  };
@@ -10692,49 +10654,18 @@ declare const OPENAPI_SCHEMA: {
10692
10654
  description: string;
10693
10655
  };
10694
10656
  "400": {
10695
- content: {
10696
- "application/json": {
10697
- schema: {
10698
- additionalProperties: {};
10699
- description: string;
10700
- type: string;
10701
- };
10702
- };
10703
- };
10704
10657
  description: string;
10705
10658
  };
10706
10659
  "413": {
10707
- content: {
10708
- "application/json": {
10709
- schema: {
10710
- additionalProperties: {};
10711
- description: string;
10712
- type: string;
10713
- };
10714
- };
10715
- };
10716
10660
  description: string;
10717
10661
  };
10718
10662
  "429": {
10719
- content: {
10720
- "application/json": {
10721
- schema: {
10722
- additionalProperties: {};
10723
- description: string;
10724
- type: string;
10725
- };
10726
- };
10727
- };
10728
10663
  description: string;
10729
10664
  };
10730
10665
  };
10731
- security: ({
10666
+ security: {
10732
10667
  jwtAuth: any[];
10733
- cookieAuth?: undefined;
10734
- } | {
10735
- cookieAuth: any[];
10736
- jwtAuth?: undefined;
10737
- })[];
10668
+ }[];
10738
10669
  summary: string;
10739
10670
  tags: string[];
10740
10671
  "x-async-capable": boolean;
@@ -10771,13 +10702,9 @@ declare const OPENAPI_SCHEMA: {
10771
10702
  description: string;
10772
10703
  };
10773
10704
  };
10774
- security: ({
10705
+ security: {
10775
10706
  jwtAuth: any[];
10776
- cookieAuth?: undefined;
10777
- } | {
10778
- cookieAuth: any[];
10779
- jwtAuth?: undefined;
10780
- })[];
10707
+ }[];
10781
10708
  summary: string;
10782
10709
  tags: string[];
10783
10710
  "x-async-capable": boolean;
@@ -10799,13 +10726,9 @@ declare const OPENAPI_SCHEMA: {
10799
10726
  description: string;
10800
10727
  };
10801
10728
  };
10802
- security: ({
10729
+ security: {
10803
10730
  jwtAuth: any[];
10804
- cookieAuth?: undefined;
10805
- } | {
10806
- cookieAuth: any[];
10807
- jwtAuth?: undefined;
10808
- })[];
10731
+ }[];
10809
10732
  summary: string;
10810
10733
  tags: string[];
10811
10734
  "x-async-capable": boolean;
@@ -10827,13 +10750,9 @@ declare const OPENAPI_SCHEMA: {
10827
10750
  description: string;
10828
10751
  };
10829
10752
  };
10830
- security: ({
10753
+ security: {
10831
10754
  jwtAuth: any[];
10832
- cookieAuth?: undefined;
10833
- } | {
10834
- cookieAuth: any[];
10835
- jwtAuth?: undefined;
10836
- })[];
10755
+ }[];
10837
10756
  summary: string;
10838
10757
  tags: string[];
10839
10758
  "x-async-capable": boolean;
@@ -10858,13 +10777,9 @@ declare const OPENAPI_SCHEMA: {
10858
10777
  description: string;
10859
10778
  };
10860
10779
  };
10861
- security: ({
10780
+ security: {
10862
10781
  jwtAuth: any[];
10863
- cookieAuth?: undefined;
10864
- } | {
10865
- cookieAuth: any[];
10866
- jwtAuth?: undefined;
10867
- })[];
10782
+ }[];
10868
10783
  tags: string[];
10869
10784
  "x-async-capable": boolean;
10870
10785
  };
@@ -10893,13 +10808,9 @@ declare const OPENAPI_SCHEMA: {
10893
10808
  description: string;
10894
10809
  };
10895
10810
  };
10896
- security: ({
10897
- jwtAuth: any[];
10898
- cookieAuth?: undefined;
10899
- } | {
10900
- cookieAuth: any[];
10901
- jwtAuth?: undefined;
10902
- })[];
10811
+ security: {
10812
+ jwtAuth: any[];
10813
+ }[];
10903
10814
  tags: string[];
10904
10815
  "x-async-capable": boolean;
10905
10816
  };
@@ -10942,13 +10853,9 @@ declare const OPENAPI_SCHEMA: {
10942
10853
  description: string;
10943
10854
  };
10944
10855
  };
10945
- security: ({
10856
+ security: {
10946
10857
  jwtAuth: any[];
10947
- cookieAuth?: undefined;
10948
- } | {
10949
- cookieAuth: any[];
10950
- jwtAuth?: undefined;
10951
- })[];
10858
+ }[];
10952
10859
  tags: string[];
10953
10860
  "x-async-capable": boolean;
10954
10861
  };
@@ -10992,13 +10899,9 @@ declare const OPENAPI_SCHEMA: {
10992
10899
  description: string;
10993
10900
  };
10994
10901
  };
10995
- security: ({
10902
+ security: {
10996
10903
  jwtAuth: any[];
10997
- cookieAuth?: undefined;
10998
- } | {
10999
- cookieAuth: any[];
11000
- jwtAuth?: undefined;
11001
- })[];
10904
+ }[];
11002
10905
  tags: string[];
11003
10906
  "x-async-capable": boolean;
11004
10907
  };
@@ -11029,13 +10932,9 @@ declare const OPENAPI_SCHEMA: {
11029
10932
  description: string;
11030
10933
  };
11031
10934
  };
11032
- security: ({
10935
+ security: {
11033
10936
  jwtAuth: any[];
11034
- cookieAuth?: undefined;
11035
- } | {
11036
- cookieAuth: any[];
11037
- jwtAuth?: undefined;
11038
- })[];
10937
+ }[];
11039
10938
  summary: string;
11040
10939
  tags: string[];
11041
10940
  "x-async-capable": boolean;
@@ -11076,13 +10975,9 @@ declare const OPENAPI_SCHEMA: {
11076
10975
  description: string;
11077
10976
  };
11078
10977
  };
11079
- security: ({
10978
+ security: {
11080
10979
  jwtAuth: any[];
11081
- cookieAuth?: undefined;
11082
- } | {
11083
- cookieAuth: any[];
11084
- jwtAuth?: undefined;
11085
- })[];
10980
+ }[];
11086
10981
  summary: string;
11087
10982
  tags: string[];
11088
10983
  "x-async-capable": boolean;
@@ -11138,13 +11033,9 @@ declare const OPENAPI_SCHEMA: {
11138
11033
  description: string;
11139
11034
  };
11140
11035
  };
11141
- security: ({
11036
+ security: {
11142
11037
  jwtAuth: any[];
11143
- cookieAuth?: undefined;
11144
- } | {
11145
- cookieAuth: any[];
11146
- jwtAuth?: undefined;
11147
- })[];
11038
+ }[];
11148
11039
  summary: string;
11149
11040
  tags: string[];
11150
11041
  "x-async-capable": boolean;
@@ -11175,13 +11066,9 @@ declare const OPENAPI_SCHEMA: {
11175
11066
  description: string;
11176
11067
  };
11177
11068
  };
11178
- security: ({
11069
+ security: {
11179
11070
  jwtAuth: any[];
11180
- cookieAuth?: undefined;
11181
- } | {
11182
- cookieAuth: any[];
11183
- jwtAuth?: undefined;
11184
- })[];
11071
+ }[];
11185
11072
  tags: string[];
11186
11073
  "x-async-capable": boolean;
11187
11074
  };
@@ -11220,13 +11107,9 @@ declare const OPENAPI_SCHEMA: {
11220
11107
  description: string;
11221
11108
  };
11222
11109
  };
11223
- security: ({
11110
+ security: {
11224
11111
  jwtAuth: any[];
11225
- cookieAuth?: undefined;
11226
- } | {
11227
- cookieAuth: any[];
11228
- jwtAuth?: undefined;
11229
- })[];
11112
+ }[];
11230
11113
  tags: string[];
11231
11114
  "x-async-capable": boolean;
11232
11115
  };
@@ -11250,13 +11133,9 @@ declare const OPENAPI_SCHEMA: {
11250
11133
  description: string;
11251
11134
  };
11252
11135
  };
11253
- security: ({
11136
+ security: {
11254
11137
  jwtAuth: any[];
11255
- cookieAuth?: undefined;
11256
- } | {
11257
- cookieAuth: any[];
11258
- jwtAuth?: undefined;
11259
- })[];
11138
+ }[];
11260
11139
  tags: string[];
11261
11140
  "x-async-capable": boolean;
11262
11141
  };
@@ -11285,13 +11164,9 @@ declare const OPENAPI_SCHEMA: {
11285
11164
  description: string;
11286
11165
  };
11287
11166
  };
11288
- security: ({
11167
+ security: {
11289
11168
  jwtAuth: any[];
11290
- cookieAuth?: undefined;
11291
- } | {
11292
- cookieAuth: any[];
11293
- jwtAuth?: undefined;
11294
- })[];
11169
+ }[];
11295
11170
  tags: string[];
11296
11171
  "x-async-capable": boolean;
11297
11172
  };
@@ -11339,13 +11214,9 @@ declare const OPENAPI_SCHEMA: {
11339
11214
  description: string;
11340
11215
  };
11341
11216
  };
11342
- security: ({
11217
+ security: {
11343
11218
  jwtAuth: any[];
11344
- cookieAuth?: undefined;
11345
- } | {
11346
- cookieAuth: any[];
11347
- jwtAuth?: undefined;
11348
- })[];
11219
+ }[];
11349
11220
  tags: string[];
11350
11221
  "x-async-capable": boolean;
11351
11222
  };
@@ -11394,13 +11265,9 @@ declare const OPENAPI_SCHEMA: {
11394
11265
  description: string;
11395
11266
  };
11396
11267
  };
11397
- security: ({
11268
+ security: {
11398
11269
  jwtAuth: any[];
11399
- cookieAuth?: undefined;
11400
- } | {
11401
- cookieAuth: any[];
11402
- jwtAuth?: undefined;
11403
- })[];
11270
+ }[];
11404
11271
  tags: string[];
11405
11272
  "x-async-capable": boolean;
11406
11273
  };
@@ -11431,13 +11298,9 @@ declare const OPENAPI_SCHEMA: {
11431
11298
  description: string;
11432
11299
  };
11433
11300
  };
11434
- security: ({
11301
+ security: {
11435
11302
  jwtAuth: any[];
11436
- cookieAuth?: undefined;
11437
- } | {
11438
- cookieAuth: any[];
11439
- jwtAuth?: undefined;
11440
- })[];
11303
+ }[];
11441
11304
  summary: string;
11442
11305
  tags: string[];
11443
11306
  "x-async-capable": boolean;
@@ -11489,13 +11352,9 @@ declare const OPENAPI_SCHEMA: {
11489
11352
  description: string;
11490
11353
  };
11491
11354
  };
11492
- security: ({
11355
+ security: {
11493
11356
  jwtAuth: any[];
11494
- cookieAuth?: undefined;
11495
- } | {
11496
- cookieAuth: any[];
11497
- jwtAuth?: undefined;
11498
- })[];
11357
+ }[];
11499
11358
  summary: string;
11500
11359
  tags: string[];
11501
11360
  "x-async-capable": boolean;
@@ -11526,13 +11385,9 @@ declare const OPENAPI_SCHEMA: {
11526
11385
  description: string;
11527
11386
  };
11528
11387
  };
11529
- security: ({
11388
+ security: {
11530
11389
  jwtAuth: any[];
11531
- cookieAuth?: undefined;
11532
- } | {
11533
- cookieAuth: any[];
11534
- jwtAuth?: undefined;
11535
- })[];
11390
+ }[];
11536
11391
  tags: string[];
11537
11392
  "x-async-capable": boolean;
11538
11393
  };
@@ -11571,13 +11426,9 @@ declare const OPENAPI_SCHEMA: {
11571
11426
  description: string;
11572
11427
  };
11573
11428
  };
11574
- security: ({
11429
+ security: {
11575
11430
  jwtAuth: any[];
11576
- cookieAuth?: undefined;
11577
- } | {
11578
- cookieAuth: any[];
11579
- jwtAuth?: undefined;
11580
- })[];
11431
+ }[];
11581
11432
  tags: string[];
11582
11433
  "x-async-capable": boolean;
11583
11434
  };
@@ -11601,13 +11452,9 @@ declare const OPENAPI_SCHEMA: {
11601
11452
  description: string;
11602
11453
  };
11603
11454
  };
11604
- security: ({
11455
+ security: {
11605
11456
  jwtAuth: any[];
11606
- cookieAuth?: undefined;
11607
- } | {
11608
- cookieAuth: any[];
11609
- jwtAuth?: undefined;
11610
- })[];
11457
+ }[];
11611
11458
  tags: string[];
11612
11459
  "x-async-capable": boolean;
11613
11460
  };
@@ -11636,13 +11483,9 @@ declare const OPENAPI_SCHEMA: {
11636
11483
  description: string;
11637
11484
  };
11638
11485
  };
11639
- security: ({
11486
+ security: {
11640
11487
  jwtAuth: any[];
11641
- cookieAuth?: undefined;
11642
- } | {
11643
- cookieAuth: any[];
11644
- jwtAuth?: undefined;
11645
- })[];
11488
+ }[];
11646
11489
  tags: string[];
11647
11490
  "x-async-capable": boolean;
11648
11491
  };
@@ -11690,13 +11533,9 @@ declare const OPENAPI_SCHEMA: {
11690
11533
  description: string;
11691
11534
  };
11692
11535
  };
11693
- security: ({
11536
+ security: {
11694
11537
  jwtAuth: any[];
11695
- cookieAuth?: undefined;
11696
- } | {
11697
- cookieAuth: any[];
11698
- jwtAuth?: undefined;
11699
- })[];
11538
+ }[];
11700
11539
  tags: string[];
11701
11540
  "x-async-capable": boolean;
11702
11541
  };
@@ -11745,13 +11584,9 @@ declare const OPENAPI_SCHEMA: {
11745
11584
  description: string;
11746
11585
  };
11747
11586
  };
11748
- security: ({
11587
+ security: {
11749
11588
  jwtAuth: any[];
11750
- cookieAuth?: undefined;
11751
- } | {
11752
- cookieAuth: any[];
11753
- jwtAuth?: undefined;
11754
- })[];
11589
+ }[];
11755
11590
  tags: string[];
11756
11591
  "x-async-capable": boolean;
11757
11592
  };
@@ -11791,13 +11626,9 @@ declare const OPENAPI_SCHEMA: {
11791
11626
  description: string;
11792
11627
  };
11793
11628
  };
11794
- security: ({
11629
+ security: {
11795
11630
  jwtAuth: any[];
11796
- cookieAuth?: undefined;
11797
- } | {
11798
- cookieAuth: any[];
11799
- jwtAuth?: undefined;
11800
- })[];
11631
+ }[];
11801
11632
  summary: string;
11802
11633
  tags: string[];
11803
11634
  "x-async-capable": boolean;
@@ -11829,13 +11660,9 @@ declare const OPENAPI_SCHEMA: {
11829
11660
  description: string;
11830
11661
  };
11831
11662
  };
11832
- security: ({
11663
+ security: {
11833
11664
  jwtAuth: any[];
11834
- cookieAuth?: undefined;
11835
- } | {
11836
- cookieAuth: any[];
11837
- jwtAuth?: undefined;
11838
- })[];
11665
+ }[];
11839
11666
  summary: string;
11840
11667
  tags: string[];
11841
11668
  "x-async-capable": boolean;
@@ -11868,13 +11695,8 @@ declare const OPENAPI_SCHEMA: {
11868
11695
  };
11869
11696
  security: ({
11870
11697
  jwtAuth: any[];
11871
- cookieAuth?: undefined;
11872
- } | {
11873
- cookieAuth: any[];
11874
- jwtAuth?: undefined;
11875
11698
  } | {
11876
11699
  jwtAuth?: undefined;
11877
- cookieAuth?: undefined;
11878
11700
  })[];
11879
11701
  tags: string[];
11880
11702
  "x-async-capable": boolean;
@@ -11916,13 +11738,8 @@ declare const OPENAPI_SCHEMA: {
11916
11738
  };
11917
11739
  security: ({
11918
11740
  jwtAuth: any[];
11919
- cookieAuth?: undefined;
11920
- } | {
11921
- cookieAuth: any[];
11922
- jwtAuth?: undefined;
11923
11741
  } | {
11924
11742
  jwtAuth?: undefined;
11925
- cookieAuth?: undefined;
11926
11743
  })[];
11927
11744
  tags: string[];
11928
11745
  "x-async-capable": boolean;
@@ -11992,13 +11809,8 @@ declare const OPENAPI_SCHEMA: {
11992
11809
  };
11993
11810
  security: ({
11994
11811
  jwtAuth: any[];
11995
- cookieAuth?: undefined;
11996
- } | {
11997
- cookieAuth: any[];
11998
- jwtAuth?: undefined;
11999
11812
  } | {
12000
11813
  jwtAuth?: undefined;
12001
- cookieAuth?: undefined;
12002
11814
  })[];
12003
11815
  summary: string;
12004
11816
  tags: string[];
@@ -12025,13 +11837,8 @@ declare const OPENAPI_SCHEMA: {
12025
11837
  };
12026
11838
  security: ({
12027
11839
  jwtAuth: any[];
12028
- cookieAuth?: undefined;
12029
- } | {
12030
- cookieAuth: any[];
12031
- jwtAuth?: undefined;
12032
11840
  } | {
12033
11841
  jwtAuth?: undefined;
12034
- cookieAuth?: undefined;
12035
11842
  })[];
12036
11843
  tags: string[];
12037
11844
  "x-async-capable": boolean;
@@ -12062,13 +11869,8 @@ declare const OPENAPI_SCHEMA: {
12062
11869
  };
12063
11870
  security: ({
12064
11871
  jwtAuth: any[];
12065
- cookieAuth?: undefined;
12066
- } | {
12067
- cookieAuth: any[];
12068
- jwtAuth?: undefined;
12069
11872
  } | {
12070
11873
  jwtAuth?: undefined;
12071
- cookieAuth?: undefined;
12072
11874
  })[];
12073
11875
  tags: string[];
12074
11876
  "x-async-capable": boolean;
@@ -12118,13 +11920,8 @@ declare const OPENAPI_SCHEMA: {
12118
11920
  };
12119
11921
  security: ({
12120
11922
  jwtAuth: any[];
12121
- cookieAuth?: undefined;
12122
- } | {
12123
- cookieAuth: any[];
12124
- jwtAuth?: undefined;
12125
11923
  } | {
12126
11924
  jwtAuth?: undefined;
12127
- cookieAuth?: undefined;
12128
11925
  })[];
12129
11926
  tags: string[];
12130
11927
  "x-async-capable": boolean;
@@ -12175,13 +11972,8 @@ declare const OPENAPI_SCHEMA: {
12175
11972
  };
12176
11973
  security: ({
12177
11974
  jwtAuth: any[];
12178
- cookieAuth?: undefined;
12179
- } | {
12180
- cookieAuth: any[];
12181
- jwtAuth?: undefined;
12182
11975
  } | {
12183
11976
  jwtAuth?: undefined;
12184
- cookieAuth?: undefined;
12185
11977
  })[];
12186
11978
  tags: string[];
12187
11979
  "x-async-capable": boolean;
@@ -12233,13 +12025,9 @@ declare const OPENAPI_SCHEMA: {
12233
12025
  description: string;
12234
12026
  };
12235
12027
  };
12236
- security: ({
12028
+ security: {
12237
12029
  jwtAuth: any[];
12238
- cookieAuth?: undefined;
12239
- } | {
12240
- cookieAuth: any[];
12241
- jwtAuth?: undefined;
12242
- })[];
12030
+ }[];
12243
12031
  summary: string;
12244
12032
  tags: string[];
12245
12033
  "x-async-capable": boolean;
@@ -12270,13 +12058,9 @@ declare const OPENAPI_SCHEMA: {
12270
12058
  description: string;
12271
12059
  };
12272
12060
  };
12273
- security: ({
12061
+ security: {
12274
12062
  jwtAuth: any[];
12275
- cookieAuth?: undefined;
12276
- } | {
12277
- cookieAuth: any[];
12278
- jwtAuth?: undefined;
12279
- })[];
12063
+ }[];
12280
12064
  summary: string;
12281
12065
  tags: string[];
12282
12066
  "x-async-capable": boolean;
@@ -12316,13 +12100,9 @@ declare const OPENAPI_SCHEMA: {
12316
12100
  description: string;
12317
12101
  };
12318
12102
  };
12319
- security: ({
12103
+ security: {
12320
12104
  jwtAuth: any[];
12321
- cookieAuth?: undefined;
12322
- } | {
12323
- cookieAuth: any[];
12324
- jwtAuth?: undefined;
12325
- })[];
12105
+ }[];
12326
12106
  summary: string;
12327
12107
  tags: string[];
12328
12108
  "x-async-capable": boolean;
@@ -12384,13 +12164,9 @@ declare const OPENAPI_SCHEMA: {
12384
12164
  description: string;
12385
12165
  };
12386
12166
  };
12387
- security: ({
12167
+ security: {
12388
12168
  jwtAuth: any[];
12389
- cookieAuth?: undefined;
12390
- } | {
12391
- cookieAuth: any[];
12392
- jwtAuth?: undefined;
12393
- })[];
12169
+ }[];
12394
12170
  summary: string;
12395
12171
  tags: string[];
12396
12172
  "x-async-capable": boolean;
@@ -12413,13 +12189,9 @@ declare const OPENAPI_SCHEMA: {
12413
12189
  description: string;
12414
12190
  };
12415
12191
  };
12416
- security: ({
12192
+ security: {
12417
12193
  jwtAuth: any[];
12418
- cookieAuth?: undefined;
12419
- } | {
12420
- cookieAuth: any[];
12421
- jwtAuth?: undefined;
12422
- })[];
12194
+ }[];
12423
12195
  summary: string;
12424
12196
  tags: string[];
12425
12197
  "x-async-capable": boolean;
@@ -12447,13 +12219,9 @@ declare const OPENAPI_SCHEMA: {
12447
12219
  description: string;
12448
12220
  };
12449
12221
  };
12450
- security: ({
12222
+ security: {
12451
12223
  jwtAuth: any[];
12452
- cookieAuth?: undefined;
12453
- } | {
12454
- cookieAuth: any[];
12455
- jwtAuth?: undefined;
12456
- })[];
12224
+ }[];
12457
12225
  summary: string;
12458
12226
  tags: string[];
12459
12227
  "x-async-capable": boolean;
@@ -12500,13 +12268,9 @@ declare const OPENAPI_SCHEMA: {
12500
12268
  description: string;
12501
12269
  };
12502
12270
  };
12503
- security: ({
12271
+ security: {
12504
12272
  jwtAuth: any[];
12505
- cookieAuth?: undefined;
12506
- } | {
12507
- cookieAuth: any[];
12508
- jwtAuth?: undefined;
12509
- })[];
12273
+ }[];
12510
12274
  tags: string[];
12511
12275
  "x-async-capable": boolean;
12512
12276
  };
@@ -12553,13 +12317,9 @@ declare const OPENAPI_SCHEMA: {
12553
12317
  description: string;
12554
12318
  };
12555
12319
  };
12556
- security: ({
12320
+ security: {
12557
12321
  jwtAuth: any[];
12558
- cookieAuth?: undefined;
12559
- } | {
12560
- cookieAuth: any[];
12561
- jwtAuth?: undefined;
12562
- })[];
12322
+ }[];
12563
12323
  summary: string;
12564
12324
  tags: string[];
12565
12325
  "x-async-capable": boolean;
@@ -12590,13 +12350,9 @@ declare const OPENAPI_SCHEMA: {
12590
12350
  description: string;
12591
12351
  };
12592
12352
  };
12593
- security: ({
12353
+ security: {
12594
12354
  jwtAuth: any[];
12595
- cookieAuth?: undefined;
12596
- } | {
12597
- cookieAuth: any[];
12598
- jwtAuth?: undefined;
12599
- })[];
12355
+ }[];
12600
12356
  summary: string;
12601
12357
  tags: string[];
12602
12358
  "x-async-capable": boolean;
@@ -12629,13 +12385,8 @@ declare const OPENAPI_SCHEMA: {
12629
12385
  };
12630
12386
  security: ({
12631
12387
  jwtAuth: any[];
12632
- cookieAuth?: undefined;
12633
- } | {
12634
- cookieAuth: any[];
12635
- jwtAuth?: undefined;
12636
12388
  } | {
12637
12389
  jwtAuth?: undefined;
12638
- cookieAuth?: undefined;
12639
12390
  })[];
12640
12391
  summary: string;
12641
12392
  tags: string[];
@@ -12668,13 +12419,8 @@ declare const OPENAPI_SCHEMA: {
12668
12419
  };
12669
12420
  security: ({
12670
12421
  jwtAuth: any[];
12671
- cookieAuth?: undefined;
12672
- } | {
12673
- cookieAuth: any[];
12674
- jwtAuth?: undefined;
12675
12422
  } | {
12676
12423
  jwtAuth?: undefined;
12677
- cookieAuth?: undefined;
12678
12424
  })[];
12679
12425
  summary: string;
12680
12426
  tags: string[];
@@ -12739,13 +12485,8 @@ declare const OPENAPI_SCHEMA: {
12739
12485
  };
12740
12486
  security: ({
12741
12487
  jwtAuth: any[];
12742
- cookieAuth?: undefined;
12743
- } | {
12744
- cookieAuth: any[];
12745
- jwtAuth?: undefined;
12746
12488
  } | {
12747
12489
  jwtAuth?: undefined;
12748
- cookieAuth?: undefined;
12749
12490
  })[];
12750
12491
  summary: string;
12751
12492
  tags: string[];
@@ -12777,13 +12518,9 @@ declare const OPENAPI_SCHEMA: {
12777
12518
  description: string;
12778
12519
  };
12779
12520
  };
12780
- security: ({
12521
+ security: {
12781
12522
  jwtAuth: any[];
12782
- cookieAuth?: undefined;
12783
- } | {
12784
- cookieAuth: any[];
12785
- jwtAuth?: undefined;
12786
- })[];
12523
+ }[];
12787
12524
  summary: string;
12788
12525
  tags: string[];
12789
12526
  "x-async-capable": boolean;
@@ -12837,13 +12574,8 @@ declare const OPENAPI_SCHEMA: {
12837
12574
  };
12838
12575
  security: ({
12839
12576
  jwtAuth: any[];
12840
- cookieAuth?: undefined;
12841
- } | {
12842
- cookieAuth: any[];
12843
- jwtAuth?: undefined;
12844
12577
  } | {
12845
12578
  jwtAuth?: undefined;
12846
- cookieAuth?: undefined;
12847
12579
  })[];
12848
12580
  summary: string;
12849
12581
  tags: string[];
@@ -12887,13 +12619,8 @@ declare const OPENAPI_SCHEMA: {
12887
12619
  };
12888
12620
  security: ({
12889
12621
  jwtAuth: any[];
12890
- cookieAuth?: undefined;
12891
- } | {
12892
- cookieAuth: any[];
12893
- jwtAuth?: undefined;
12894
12622
  } | {
12895
12623
  jwtAuth?: undefined;
12896
- cookieAuth?: undefined;
12897
12624
  })[];
12898
12625
  tags: string[];
12899
12626
  "x-async-capable": boolean;
@@ -12945,13 +12672,8 @@ declare const OPENAPI_SCHEMA: {
12945
12672
  };
12946
12673
  security: ({
12947
12674
  jwtAuth: any[];
12948
- cookieAuth?: undefined;
12949
- } | {
12950
- cookieAuth: any[];
12951
- jwtAuth?: undefined;
12952
12675
  } | {
12953
12676
  jwtAuth?: undefined;
12954
- cookieAuth?: undefined;
12955
12677
  })[];
12956
12678
  summary: string;
12957
12679
  tags: string[];
@@ -12994,13 +12716,8 @@ declare const OPENAPI_SCHEMA: {
12994
12716
  };
12995
12717
  security: ({
12996
12718
  jwtAuth: any[];
12997
- cookieAuth?: undefined;
12998
- } | {
12999
- cookieAuth: any[];
13000
- jwtAuth?: undefined;
13001
12719
  } | {
13002
12720
  jwtAuth?: undefined;
13003
- cookieAuth?: undefined;
13004
12721
  })[];
13005
12722
  tags: string[];
13006
12723
  "x-async-capable": boolean;
@@ -13012,16 +12729,20 @@ declare const OPENAPI_SCHEMA: {
13012
12729
  operationId: string;
13013
12730
  responses: {
13014
12731
  "200": {
12732
+ content: {
12733
+ "application/json": {
12734
+ schema: {
12735
+ $ref: string;
12736
+ };
12737
+ };
12738
+ };
13015
12739
  description: string;
13016
12740
  };
13017
12741
  };
13018
- security: ({
12742
+ security: {
13019
12743
  jwtAuth: any[];
13020
- cookieAuth?: undefined;
13021
- } | {
13022
- cookieAuth: any[];
13023
- jwtAuth?: undefined;
13024
- })[];
12744
+ }[];
12745
+ summary: string;
13025
12746
  tags: string[];
13026
12747
  "x-async-capable": boolean;
13027
12748
  };
@@ -13032,16 +12753,23 @@ declare const OPENAPI_SCHEMA: {
13032
12753
  operationId: string;
13033
12754
  responses: {
13034
12755
  "200": {
12756
+ content: {
12757
+ "application/json": {
12758
+ schema: {
12759
+ items: {
12760
+ $ref: string;
12761
+ };
12762
+ type: string;
12763
+ };
12764
+ };
12765
+ };
13035
12766
  description: string;
13036
12767
  };
13037
12768
  };
13038
- security: ({
12769
+ security: {
13039
12770
  jwtAuth: any[];
13040
- cookieAuth?: undefined;
13041
- } | {
13042
- cookieAuth: any[];
13043
- jwtAuth?: undefined;
13044
- })[];
12771
+ }[];
12772
+ summary: string;
13045
12773
  tags: string[];
13046
12774
  "x-async-capable": boolean;
13047
12775
  };
@@ -13071,13 +12799,9 @@ declare const OPENAPI_SCHEMA: {
13071
12799
  description: string;
13072
12800
  };
13073
12801
  };
13074
- security: ({
12802
+ security: {
13075
12803
  jwtAuth: any[];
13076
- cookieAuth?: undefined;
13077
- } | {
13078
- cookieAuth: any[];
13079
- jwtAuth?: undefined;
13080
- })[];
12804
+ }[];
13081
12805
  tags: string[];
13082
12806
  "x-async-capable": boolean;
13083
12807
  };
@@ -13098,13 +12822,9 @@ declare const OPENAPI_SCHEMA: {
13098
12822
  description: string;
13099
12823
  };
13100
12824
  };
13101
- security: ({
12825
+ security: {
13102
12826
  jwtAuth: any[];
13103
- cookieAuth?: undefined;
13104
- } | {
13105
- cookieAuth: any[];
13106
- jwtAuth?: undefined;
13107
- })[];
12827
+ }[];
13108
12828
  tags: string[];
13109
12829
  "x-async-capable": boolean;
13110
12830
  };
@@ -13133,13 +12853,9 @@ declare const OPENAPI_SCHEMA: {
13133
12853
  description: string;
13134
12854
  };
13135
12855
  };
13136
- security: ({
12856
+ security: {
13137
12857
  jwtAuth: any[];
13138
- cookieAuth?: undefined;
13139
- } | {
13140
- cookieAuth: any[];
13141
- jwtAuth?: undefined;
13142
- })[];
12858
+ }[];
13143
12859
  tags: string[];
13144
12860
  "x-async-capable": boolean;
13145
12861
  };
@@ -13168,13 +12884,9 @@ declare const OPENAPI_SCHEMA: {
13168
12884
  description: string;
13169
12885
  };
13170
12886
  };
13171
- security: ({
12887
+ security: {
13172
12888
  jwtAuth: any[];
13173
- cookieAuth?: undefined;
13174
- } | {
13175
- cookieAuth: any[];
13176
- jwtAuth?: undefined;
13177
- })[];
12889
+ }[];
13178
12890
  tags: string[];
13179
12891
  "x-async-capable": boolean;
13180
12892
  };
@@ -13203,13 +12915,9 @@ declare const OPENAPI_SCHEMA: {
13203
12915
  description: string;
13204
12916
  };
13205
12917
  };
13206
- security: ({
12918
+ security: {
13207
12919
  jwtAuth: any[];
13208
- cookieAuth?: undefined;
13209
- } | {
13210
- cookieAuth: any[];
13211
- jwtAuth?: undefined;
13212
- })[];
12920
+ }[];
13213
12921
  tags: string[];
13214
12922
  "x-async-capable": boolean;
13215
12923
  };
@@ -13218,18 +12926,33 @@ declare const OPENAPI_SCHEMA: {
13218
12926
  get: {
13219
12927
  description: string;
13220
12928
  operationId: string;
12929
+ parameters: {
12930
+ description: string;
12931
+ in: string;
12932
+ name: string;
12933
+ schema: {
12934
+ type: string;
12935
+ };
12936
+ }[];
13221
12937
  responses: {
13222
12938
  "200": {
12939
+ content: {
12940
+ "application/json": {
12941
+ schema: {
12942
+ items: {
12943
+ $ref: string;
12944
+ };
12945
+ type: string;
12946
+ };
12947
+ };
12948
+ };
13223
12949
  description: string;
13224
12950
  };
13225
12951
  };
13226
- security: ({
12952
+ security: {
13227
12953
  jwtAuth: any[];
13228
- cookieAuth?: undefined;
13229
- } | {
13230
- cookieAuth: any[];
13231
- jwtAuth?: undefined;
13232
- })[];
12954
+ }[];
12955
+ summary: string;
13233
12956
  tags: string[];
13234
12957
  "x-async-capable": boolean;
13235
12958
  };
@@ -13259,13 +12982,9 @@ declare const OPENAPI_SCHEMA: {
13259
12982
  description: string;
13260
12983
  };
13261
12984
  };
13262
- security: ({
12985
+ security: {
13263
12986
  jwtAuth: any[];
13264
- cookieAuth?: undefined;
13265
- } | {
13266
- cookieAuth: any[];
13267
- jwtAuth?: undefined;
13268
- })[];
12987
+ }[];
13269
12988
  tags: string[];
13270
12989
  "x-async-capable": boolean;
13271
12990
  };
@@ -13304,13 +13023,9 @@ declare const OPENAPI_SCHEMA: {
13304
13023
  description: string;
13305
13024
  };
13306
13025
  };
13307
- security: ({
13026
+ security: {
13308
13027
  jwtAuth: any[];
13309
- cookieAuth?: undefined;
13310
- } | {
13311
- cookieAuth: any[];
13312
- jwtAuth?: undefined;
13313
- })[];
13028
+ }[];
13314
13029
  tags: string[];
13315
13030
  "x-async-capable": boolean;
13316
13031
  };
@@ -13350,13 +13065,9 @@ declare const OPENAPI_SCHEMA: {
13350
13065
  description: string;
13351
13066
  };
13352
13067
  };
13353
- security: ({
13068
+ security: {
13354
13069
  jwtAuth: any[];
13355
- cookieAuth?: undefined;
13356
- } | {
13357
- cookieAuth: any[];
13358
- jwtAuth?: undefined;
13359
- })[];
13070
+ }[];
13360
13071
  tags: string[];
13361
13072
  "x-async-capable": boolean;
13362
13073
  };
@@ -13405,13 +13116,9 @@ declare const OPENAPI_SCHEMA: {
13405
13116
  description: string;
13406
13117
  };
13407
13118
  };
13408
- security: ({
13119
+ security: {
13409
13120
  jwtAuth: any[];
13410
- cookieAuth?: undefined;
13411
- } | {
13412
- cookieAuth: any[];
13413
- jwtAuth?: undefined;
13414
- })[];
13121
+ }[];
13415
13122
  tags: string[];
13416
13123
  "x-async-capable": boolean;
13417
13124
  };
@@ -13435,13 +13142,9 @@ declare const OPENAPI_SCHEMA: {
13435
13142
  description: string;
13436
13143
  };
13437
13144
  };
13438
- security: ({
13145
+ security: {
13439
13146
  jwtAuth: any[];
13440
- cookieAuth?: undefined;
13441
- } | {
13442
- cookieAuth: any[];
13443
- jwtAuth?: undefined;
13444
- })[];
13147
+ }[];
13445
13148
  tags: string[];
13446
13149
  "x-async-capable": boolean;
13447
13150
  };
@@ -13470,13 +13173,9 @@ declare const OPENAPI_SCHEMA: {
13470
13173
  description: string;
13471
13174
  };
13472
13175
  };
13473
- security: ({
13176
+ security: {
13474
13177
  jwtAuth: any[];
13475
- cookieAuth?: undefined;
13476
- } | {
13477
- cookieAuth: any[];
13478
- jwtAuth?: undefined;
13479
- })[];
13178
+ }[];
13480
13179
  tags: string[];
13481
13180
  "x-async-capable": boolean;
13482
13181
  };
@@ -13524,13 +13223,9 @@ declare const OPENAPI_SCHEMA: {
13524
13223
  description: string;
13525
13224
  };
13526
13225
  };
13527
- security: ({
13226
+ security: {
13528
13227
  jwtAuth: any[];
13529
- cookieAuth?: undefined;
13530
- } | {
13531
- cookieAuth: any[];
13532
- jwtAuth?: undefined;
13533
- })[];
13228
+ }[];
13534
13229
  tags: string[];
13535
13230
  "x-async-capable": boolean;
13536
13231
  };
@@ -13579,13 +13274,9 @@ declare const OPENAPI_SCHEMA: {
13579
13274
  description: string;
13580
13275
  };
13581
13276
  };
13582
- security: ({
13277
+ security: {
13583
13278
  jwtAuth: any[];
13584
- cookieAuth?: undefined;
13585
- } | {
13586
- cookieAuth: any[];
13587
- jwtAuth?: undefined;
13588
- })[];
13279
+ }[];
13589
13280
  tags: string[];
13590
13281
  "x-async-capable": boolean;
13591
13282
  };
@@ -13609,13 +13300,9 @@ declare const OPENAPI_SCHEMA: {
13609
13300
  description: string;
13610
13301
  };
13611
13302
  };
13612
- security: ({
13303
+ security: {
13613
13304
  jwtAuth: any[];
13614
- cookieAuth?: undefined;
13615
- } | {
13616
- cookieAuth: any[];
13617
- jwtAuth?: undefined;
13618
- })[];
13305
+ }[];
13619
13306
  tags: string[];
13620
13307
  "x-async-capable": boolean;
13621
13308
  };
@@ -13644,13 +13331,9 @@ declare const OPENAPI_SCHEMA: {
13644
13331
  description: string;
13645
13332
  };
13646
13333
  };
13647
- security: ({
13334
+ security: {
13648
13335
  jwtAuth: any[];
13649
- cookieAuth?: undefined;
13650
- } | {
13651
- cookieAuth: any[];
13652
- jwtAuth?: undefined;
13653
- })[];
13336
+ }[];
13654
13337
  tags: string[];
13655
13338
  "x-async-capable": boolean;
13656
13339
  };
@@ -13698,13 +13381,9 @@ declare const OPENAPI_SCHEMA: {
13698
13381
  description: string;
13699
13382
  };
13700
13383
  };
13701
- security: ({
13384
+ security: {
13702
13385
  jwtAuth: any[];
13703
- cookieAuth?: undefined;
13704
- } | {
13705
- cookieAuth: any[];
13706
- jwtAuth?: undefined;
13707
- })[];
13386
+ }[];
13708
13387
  tags: string[];
13709
13388
  "x-async-capable": boolean;
13710
13389
  };
@@ -13753,13 +13432,9 @@ declare const OPENAPI_SCHEMA: {
13753
13432
  description: string;
13754
13433
  };
13755
13434
  };
13756
- security: ({
13435
+ security: {
13757
13436
  jwtAuth: any[];
13758
- cookieAuth?: undefined;
13759
- } | {
13760
- cookieAuth: any[];
13761
- jwtAuth?: undefined;
13762
- })[];
13437
+ }[];
13763
13438
  tags: string[];
13764
13439
  "x-async-capable": boolean;
13765
13440
  };
@@ -14513,6 +14188,28 @@ declare const ArchiveStatisticsSchema: z.ZodObject<{
14513
14188
  */
14514
14189
  type ArchiveStatistics = z.infer<typeof ArchiveStatisticsSchema>;
14515
14190
 
14191
+ /**
14192
+ * Zod schema for Balance
14193
+ *
14194
+ * This schema provides runtime validation and type inference.
14195
+ * * User balance serializer.
14196
+ * */
14197
+
14198
+ /**
14199
+ * User balance serializer.
14200
+ */
14201
+ declare const BalanceSchema: z.ZodObject<{
14202
+ balance_usd: z.ZodString;
14203
+ balance_display: z.ZodString;
14204
+ total_deposited: z.ZodString;
14205
+ total_withdrawn: z.ZodString;
14206
+ last_transaction_at: z.ZodNullable<z.ZodISODateTime>;
14207
+ }, z.core.$strip>;
14208
+ /**
14209
+ * Infer TypeScript type from Zod schema
14210
+ */
14211
+ type Balance = z.infer<typeof BalanceSchema>;
14212
+
14516
14213
  /**
14517
14214
  * Zod schema for BulkEmailRequest
14518
14215
  *
@@ -14816,6 +14513,33 @@ declare const ChunkRevectorizationRequestRequestSchema: z.ZodObject<{
14816
14513
  */
14817
14514
  type ChunkRevectorizationRequestRequest = z.infer<typeof ChunkRevectorizationRequestRequestSchema>;
14818
14515
 
14516
+ /**
14517
+ * Zod schema for Currency
14518
+ *
14519
+ * This schema provides runtime validation and type inference.
14520
+ * * Currency list serializer.
14521
+ * */
14522
+
14523
+ /**
14524
+ * Currency list serializer.
14525
+ */
14526
+ declare const CurrencySchema: z.ZodObject<{
14527
+ code: z.ZodString;
14528
+ name: z.ZodString;
14529
+ token: z.ZodString;
14530
+ network: z.ZodNullable<z.ZodString>;
14531
+ display_name: z.ZodString;
14532
+ symbol: z.ZodString;
14533
+ decimal_places: z.ZodInt;
14534
+ is_active: z.ZodBoolean;
14535
+ min_amount_usd: z.ZodString;
14536
+ sort_order: z.ZodInt;
14537
+ }, z.core.$strip>;
14538
+ /**
14539
+ * Infer TypeScript type from Zod schema
14540
+ */
14541
+ type Currency = z.infer<typeof CurrencySchema>;
14542
+
14819
14543
  /**
14820
14544
  * Zod schema for Document
14821
14545
  *
@@ -16488,10 +16212,10 @@ declare const PaymentDetailSchema: z.ZodObject<{
16488
16212
  status: z.ZodEnum<typeof PaymentDetailStatus>;
16489
16213
  status_display: z.ZodString;
16490
16214
  pay_address: z.ZodNullable<z.ZodString>;
16491
- qr_code_url: z.ZodString;
16215
+ qr_code_url: z.ZodNullable<z.ZodString>;
16492
16216
  payment_url: z.ZodNullable<z.ZodURL>;
16493
16217
  transaction_hash: z.ZodNullable<z.ZodString>;
16494
- explorer_link: z.ZodString;
16218
+ explorer_link: z.ZodNullable<z.ZodString>;
16495
16219
  confirmations_count: z.ZodInt;
16496
16220
  expires_at: z.ZodNullable<z.ZodISODateTime>;
16497
16221
  completed_at: z.ZodNullable<z.ZodISODateTime>;
@@ -16907,6 +16631,32 @@ declare const TokenRefreshRequestSchema: z.ZodObject<{
16907
16631
  */
16908
16632
  type TokenRefreshRequest = z.infer<typeof TokenRefreshRequestSchema>;
16909
16633
 
16634
+ /**
16635
+ * Zod schema for Transaction
16636
+ *
16637
+ * This schema provides runtime validation and type inference.
16638
+ * * Transaction serializer.
16639
+ * */
16640
+
16641
+ /**
16642
+ * Transaction serializer.
16643
+ */
16644
+ declare const TransactionSchema: z.ZodObject<{
16645
+ id: z.ZodUUID;
16646
+ transaction_type: z.ZodEnum<typeof TransactionTransactionType>;
16647
+ type_display: z.ZodString;
16648
+ amount_usd: z.ZodString;
16649
+ amount_display: z.ZodString;
16650
+ balance_after: z.ZodString;
16651
+ payment_id: z.ZodNullable<z.ZodString>;
16652
+ description: z.ZodString;
16653
+ created_at: z.ZodISODateTime;
16654
+ }, z.core.$strip>;
16655
+ /**
16656
+ * Infer TypeScript type from Zod schema
16657
+ */
16658
+ type Transaction = z.infer<typeof TransactionSchema>;
16659
+
16910
16660
  /**
16911
16661
  * Zod schema for Unsubscribe
16912
16662
  *
@@ -17128,6 +16878,8 @@ type index$2_ArchiveSearchResult = ArchiveSearchResult;
17128
16878
  declare const index$2_ArchiveSearchResultSchema: typeof ArchiveSearchResultSchema;
17129
16879
  type index$2_ArchiveStatistics = ArchiveStatistics;
17130
16880
  declare const index$2_ArchiveStatisticsSchema: typeof ArchiveStatisticsSchema;
16881
+ type index$2_Balance = Balance;
16882
+ declare const index$2_BalanceSchema: typeof BalanceSchema;
17131
16883
  type index$2_BulkEmailRequest = BulkEmailRequest;
17132
16884
  declare const index$2_BulkEmailRequestSchema: typeof BulkEmailRequestSchema;
17133
16885
  type index$2_BulkEmailResponse = BulkEmailResponse;
@@ -17154,6 +16906,8 @@ declare const index$2_ChatSourceRequestSchema: typeof ChatSourceRequestSchema;
17154
16906
  declare const index$2_ChatSourceSchema: typeof ChatSourceSchema;
17155
16907
  type index$2_ChunkRevectorizationRequestRequest = ChunkRevectorizationRequestRequest;
17156
16908
  declare const index$2_ChunkRevectorizationRequestRequestSchema: typeof ChunkRevectorizationRequestRequestSchema;
16909
+ type index$2_Currency = Currency;
16910
+ declare const index$2_CurrencySchema: typeof CurrencySchema;
17157
16911
  type index$2_Document = Document;
17158
16912
  type index$2_DocumentArchive = DocumentArchive;
17159
16913
  type index$2_DocumentArchiveDetail = DocumentArchiveDetail;
@@ -17320,6 +17074,8 @@ type index$2_TokenRefresh = TokenRefresh;
17320
17074
  type index$2_TokenRefreshRequest = TokenRefreshRequest;
17321
17075
  declare const index$2_TokenRefreshRequestSchema: typeof TokenRefreshRequestSchema;
17322
17076
  declare const index$2_TokenRefreshSchema: typeof TokenRefreshSchema;
17077
+ type index$2_Transaction = Transaction;
17078
+ declare const index$2_TransactionSchema: typeof TransactionSchema;
17323
17079
  type index$2_Unsubscribe = Unsubscribe;
17324
17080
  type index$2_UnsubscribeRequest = UnsubscribeRequest;
17325
17081
  declare const index$2_UnsubscribeRequestSchema: typeof UnsubscribeRequestSchema;
@@ -17337,7 +17093,7 @@ type index$2_WorkerActionRequest = WorkerActionRequest;
17337
17093
  declare const index$2_WorkerActionRequestSchema: typeof WorkerActionRequestSchema;
17338
17094
  declare const index$2_WorkerActionSchema: typeof WorkerActionSchema;
17339
17095
  declare namespace index$2 {
17340
- export { type index$2_APIResponse as APIResponse, type index$2_APIResponseRequest as APIResponseRequest, index$2_APIResponseRequestSchema as APIResponseRequestSchema, index$2_APIResponseSchema as APIResponseSchema, type index$2_ArchiveItem as ArchiveItem, type index$2_ArchiveItemChunk as ArchiveItemChunk, type index$2_ArchiveItemChunkDetail as ArchiveItemChunkDetail, index$2_ArchiveItemChunkDetailSchema as ArchiveItemChunkDetailSchema, type index$2_ArchiveItemChunkRequest as ArchiveItemChunkRequest, index$2_ArchiveItemChunkRequestSchema as ArchiveItemChunkRequestSchema, index$2_ArchiveItemChunkSchema as ArchiveItemChunkSchema, type index$2_ArchiveItemDetail as ArchiveItemDetail, index$2_ArchiveItemDetailSchema as ArchiveItemDetailSchema, type index$2_ArchiveItemRequest as ArchiveItemRequest, index$2_ArchiveItemRequestSchema as ArchiveItemRequestSchema, index$2_ArchiveItemSchema as ArchiveItemSchema, type index$2_ArchiveProcessingResult as ArchiveProcessingResult, index$2_ArchiveProcessingResultSchema as ArchiveProcessingResultSchema, type index$2_ArchiveSearchRequestRequest as ArchiveSearchRequestRequest, index$2_ArchiveSearchRequestRequestSchema as ArchiveSearchRequestRequestSchema, type index$2_ArchiveSearchResult as ArchiveSearchResult, index$2_ArchiveSearchResultSchema as ArchiveSearchResultSchema, type index$2_ArchiveStatistics as ArchiveStatistics, index$2_ArchiveStatisticsSchema as ArchiveStatisticsSchema, type index$2_BulkEmailRequest as BulkEmailRequest, index$2_BulkEmailRequestSchema as BulkEmailRequestSchema, type index$2_BulkEmailResponse as BulkEmailResponse, index$2_BulkEmailResponseSchema as BulkEmailResponseSchema, type index$2_ChatHistory as ChatHistory, index$2_ChatHistorySchema as ChatHistorySchema, type index$2_ChatMessage as ChatMessage, index$2_ChatMessageSchema as ChatMessageSchema, type index$2_ChatQueryRequest as ChatQueryRequest, index$2_ChatQueryRequestSchema as ChatQueryRequestSchema, type index$2_ChatResponse as ChatResponse, type index$2_ChatResponseRequest as ChatResponseRequest, index$2_ChatResponseRequestSchema as ChatResponseRequestSchema, index$2_ChatResponseSchema as ChatResponseSchema, type index$2_ChatSession as ChatSession, type index$2_ChatSessionCreateRequest as ChatSessionCreateRequest, index$2_ChatSessionCreateRequestSchema as ChatSessionCreateRequestSchema, type index$2_ChatSessionRequest as ChatSessionRequest, index$2_ChatSessionRequestSchema as ChatSessionRequestSchema, index$2_ChatSessionSchema as ChatSessionSchema, type index$2_ChatSource as ChatSource, type index$2_ChatSourceRequest as ChatSourceRequest, index$2_ChatSourceRequestSchema as ChatSourceRequestSchema, index$2_ChatSourceSchema as ChatSourceSchema, type index$2_ChunkRevectorizationRequestRequest as ChunkRevectorizationRequestRequest, index$2_ChunkRevectorizationRequestRequestSchema as ChunkRevectorizationRequestRequestSchema, type index$2_Document as Document, type index$2_DocumentArchive as DocumentArchive, type index$2_DocumentArchiveDetail as DocumentArchiveDetail, index$2_DocumentArchiveDetailSchema as DocumentArchiveDetailSchema, type index$2_DocumentArchiveList as DocumentArchiveList, index$2_DocumentArchiveListSchema as DocumentArchiveListSchema, type index$2_DocumentArchiveRequest as DocumentArchiveRequest, index$2_DocumentArchiveRequestSchema as DocumentArchiveRequestSchema, index$2_DocumentArchiveSchema as DocumentArchiveSchema, type index$2_DocumentCategory as DocumentCategory, type index$2_DocumentCategoryRequest as DocumentCategoryRequest, index$2_DocumentCategoryRequestSchema as DocumentCategoryRequestSchema, index$2_DocumentCategorySchema as DocumentCategorySchema, type index$2_DocumentCreateRequest as DocumentCreateRequest, index$2_DocumentCreateRequestSchema as DocumentCreateRequestSchema, type index$2_DocumentProcessingStatus as DocumentProcessingStatus, index$2_DocumentProcessingStatusSchema as DocumentProcessingStatusSchema, type index$2_DocumentRequest as DocumentRequest, index$2_DocumentRequestSchema as DocumentRequestSchema, index$2_DocumentSchema as DocumentSchema, type index$2_DocumentStats as DocumentStats, index$2_DocumentStatsSchema as DocumentStatsSchema, type index$2_EmailLog as EmailLog, index$2_EmailLogSchema as EmailLogSchema, type index$2_Endpoint as Endpoint, index$2_EndpointSchema as EndpointSchema, type index$2_EndpointsStatus as EndpointsStatus, index$2_EndpointsStatusSchema as EndpointsStatusSchema, type index$2_ErrorResponse as ErrorResponse, index$2_ErrorResponseSchema as ErrorResponseSchema, type index$2_HealthCheck as HealthCheck, index$2_HealthCheckSchema as HealthCheckSchema, type index$2_LeadSubmission as LeadSubmission, type index$2_LeadSubmissionError as LeadSubmissionError, index$2_LeadSubmissionErrorSchema as LeadSubmissionErrorSchema, type index$2_LeadSubmissionRequest as LeadSubmissionRequest, index$2_LeadSubmissionRequestSchema as LeadSubmissionRequestSchema, type index$2_LeadSubmissionResponse as LeadSubmissionResponse, index$2_LeadSubmissionResponseSchema as LeadSubmissionResponseSchema, index$2_LeadSubmissionSchema as LeadSubmissionSchema, type index$2_Message as Message, type index$2_MessageCreate as MessageCreate, type index$2_MessageCreateRequest as MessageCreateRequest, index$2_MessageCreateRequestSchema as MessageCreateRequestSchema, index$2_MessageCreateSchema as MessageCreateSchema, type index$2_MessageRequest as MessageRequest, index$2_MessageRequestSchema as MessageRequestSchema, index$2_MessageSchema as MessageSchema, type index$2_Newsletter as Newsletter, type index$2_NewsletterCampaign as NewsletterCampaign, type index$2_NewsletterCampaignRequest as NewsletterCampaignRequest, index$2_NewsletterCampaignRequestSchema as NewsletterCampaignRequestSchema, index$2_NewsletterCampaignSchema as NewsletterCampaignSchema, index$2_NewsletterSchema as NewsletterSchema, type index$2_NewsletterSubscription as NewsletterSubscription, index$2_NewsletterSubscriptionSchema as NewsletterSubscriptionSchema, type index$2_OTPErrorResponse as OTPErrorResponse, index$2_OTPErrorResponseSchema as OTPErrorResponseSchema, type index$2_OTPRequestRequest as OTPRequestRequest, index$2_OTPRequestRequestSchema as OTPRequestRequestSchema, type index$2_OTPRequestResponse as OTPRequestResponse, index$2_OTPRequestResponseSchema as OTPRequestResponseSchema, type index$2_OTPVerifyRequest as OTPVerifyRequest, index$2_OTPVerifyRequestSchema as OTPVerifyRequestSchema, type index$2_OTPVerifyResponse as OTPVerifyResponse, index$2_OTPVerifyResponseSchema as OTPVerifyResponseSchema, type index$2_PaginatedArchiveItemChunkList as PaginatedArchiveItemChunkList, index$2_PaginatedArchiveItemChunkListSchema as PaginatedArchiveItemChunkListSchema, type index$2_PaginatedArchiveItemList as PaginatedArchiveItemList, index$2_PaginatedArchiveItemListSchema as PaginatedArchiveItemListSchema, type index$2_PaginatedArchiveSearchResultList as PaginatedArchiveSearchResultList, index$2_PaginatedArchiveSearchResultListSchema as PaginatedArchiveSearchResultListSchema, type index$2_PaginatedChatResponseList as PaginatedChatResponseList, index$2_PaginatedChatResponseListSchema as PaginatedChatResponseListSchema, type index$2_PaginatedChatSessionList as PaginatedChatSessionList, index$2_PaginatedChatSessionListSchema as PaginatedChatSessionListSchema, type index$2_PaginatedDocumentArchiveListList as PaginatedDocumentArchiveListList, index$2_PaginatedDocumentArchiveListListSchema as PaginatedDocumentArchiveListListSchema, type index$2_PaginatedDocumentList as PaginatedDocumentList, index$2_PaginatedDocumentListSchema as PaginatedDocumentListSchema, type index$2_PaginatedEmailLogList as PaginatedEmailLogList, index$2_PaginatedEmailLogListSchema as PaginatedEmailLogListSchema, type index$2_PaginatedLeadSubmissionList as PaginatedLeadSubmissionList, index$2_PaginatedLeadSubmissionListSchema as PaginatedLeadSubmissionListSchema, type index$2_PaginatedMessageList as PaginatedMessageList, index$2_PaginatedMessageListSchema as PaginatedMessageListSchema, type index$2_PaginatedNewsletterCampaignList as PaginatedNewsletterCampaignList, index$2_PaginatedNewsletterCampaignListSchema as PaginatedNewsletterCampaignListSchema, type index$2_PaginatedNewsletterList as PaginatedNewsletterList, index$2_PaginatedNewsletterListSchema as PaginatedNewsletterListSchema, type index$2_PaginatedNewsletterSubscriptionList as PaginatedNewsletterSubscriptionList, index$2_PaginatedNewsletterSubscriptionListSchema as PaginatedNewsletterSubscriptionListSchema, type index$2_PaginatedPaymentListList as PaginatedPaymentListList, index$2_PaginatedPaymentListListSchema as PaginatedPaymentListListSchema, type index$2_PaginatedPublicCategoryList as PaginatedPublicCategoryList, index$2_PaginatedPublicCategoryListSchema as PaginatedPublicCategoryListSchema, type index$2_PaginatedPublicDocumentListList as PaginatedPublicDocumentListList, index$2_PaginatedPublicDocumentListListSchema as PaginatedPublicDocumentListListSchema, type index$2_PaginatedTicketList as PaginatedTicketList, index$2_PaginatedTicketListSchema as PaginatedTicketListSchema, type index$2_PatchedArchiveItemChunkRequest as PatchedArchiveItemChunkRequest, index$2_PatchedArchiveItemChunkRequestSchema as PatchedArchiveItemChunkRequestSchema, type index$2_PatchedArchiveItemRequest as PatchedArchiveItemRequest, index$2_PatchedArchiveItemRequestSchema as PatchedArchiveItemRequestSchema, type index$2_PatchedChatResponseRequest as PatchedChatResponseRequest, index$2_PatchedChatResponseRequestSchema as PatchedChatResponseRequestSchema, type index$2_PatchedChatSessionRequest as PatchedChatSessionRequest, index$2_PatchedChatSessionRequestSchema as PatchedChatSessionRequestSchema, type index$2_PatchedDocumentArchiveRequest as PatchedDocumentArchiveRequest, index$2_PatchedDocumentArchiveRequestSchema as PatchedDocumentArchiveRequestSchema, type index$2_PatchedDocumentRequest as PatchedDocumentRequest, index$2_PatchedDocumentRequestSchema as PatchedDocumentRequestSchema, type index$2_PatchedLeadSubmissionRequest as PatchedLeadSubmissionRequest, index$2_PatchedLeadSubmissionRequestSchema as PatchedLeadSubmissionRequestSchema, type index$2_PatchedMessageRequest as PatchedMessageRequest, index$2_PatchedMessageRequestSchema as PatchedMessageRequestSchema, type index$2_PatchedNewsletterCampaignRequest as PatchedNewsletterCampaignRequest, index$2_PatchedNewsletterCampaignRequestSchema as PatchedNewsletterCampaignRequestSchema, type index$2_PatchedTicketRequest as PatchedTicketRequest, index$2_PatchedTicketRequestSchema as PatchedTicketRequestSchema, type index$2_PatchedUnsubscribeRequest as PatchedUnsubscribeRequest, index$2_PatchedUnsubscribeRequestSchema as PatchedUnsubscribeRequestSchema, type index$2_PatchedUserProfileUpdateRequest as PatchedUserProfileUpdateRequest, index$2_PatchedUserProfileUpdateRequestSchema as PatchedUserProfileUpdateRequestSchema, type index$2_PaymentDetail as PaymentDetail, index$2_PaymentDetailSchema as PaymentDetailSchema, type index$2_PaymentList as PaymentList, index$2_PaymentListSchema as PaymentListSchema, type index$2_PublicCategory as PublicCategory, index$2_PublicCategorySchema as PublicCategorySchema, type index$2_PublicDocument as PublicDocument, type index$2_PublicDocumentList as PublicDocumentList, index$2_PublicDocumentListSchema as PublicDocumentListSchema, index$2_PublicDocumentSchema as PublicDocumentSchema, type index$2_QueueAction as QueueAction, type index$2_QueueActionRequest as QueueActionRequest, index$2_QueueActionRequestSchema as QueueActionRequestSchema, index$2_QueueActionSchema as QueueActionSchema, type index$2_QueueStatus as QueueStatus, index$2_QueueStatusSchema as QueueStatusSchema, type index$2_QuickHealth as QuickHealth, index$2_QuickHealthSchema as QuickHealthSchema, type index$2_SendCampaignRequest as SendCampaignRequest, index$2_SendCampaignRequestSchema as SendCampaignRequestSchema, type index$2_SendCampaignResponse as SendCampaignResponse, index$2_SendCampaignResponseSchema as SendCampaignResponseSchema, type index$2_Sender as Sender, index$2_SenderSchema as SenderSchema, type index$2_SubscribeRequest as SubscribeRequest, index$2_SubscribeRequestSchema as SubscribeRequestSchema, type index$2_SubscribeResponse as SubscribeResponse, index$2_SubscribeResponseSchema as SubscribeResponseSchema, type index$2_SuccessResponse as SuccessResponse, index$2_SuccessResponseSchema as SuccessResponseSchema, type index$2_TaskStatistics as TaskStatistics, index$2_TaskStatisticsSchema as TaskStatisticsSchema, type index$2_TestEmailRequest as TestEmailRequest, index$2_TestEmailRequestSchema as TestEmailRequestSchema, type index$2_Ticket as Ticket, type index$2_TicketRequest as TicketRequest, index$2_TicketRequestSchema as TicketRequestSchema, index$2_TicketSchema as TicketSchema, type index$2_TokenRefresh as TokenRefresh, type index$2_TokenRefreshRequest as TokenRefreshRequest, index$2_TokenRefreshRequestSchema as TokenRefreshRequestSchema, index$2_TokenRefreshSchema as TokenRefreshSchema, type index$2_Unsubscribe as Unsubscribe, type index$2_UnsubscribeRequest as UnsubscribeRequest, index$2_UnsubscribeRequestSchema as UnsubscribeRequestSchema, index$2_UnsubscribeSchema as UnsubscribeSchema, type index$2_User as User, type index$2_UserProfileUpdateRequest as UserProfileUpdateRequest, index$2_UserProfileUpdateRequestSchema as UserProfileUpdateRequestSchema, index$2_UserSchema as UserSchema, type index$2_VectorizationResult as VectorizationResult, index$2_VectorizationResultSchema as VectorizationResultSchema, type index$2_VectorizationStatistics as VectorizationStatistics, index$2_VectorizationStatisticsSchema as VectorizationStatisticsSchema, type index$2_WorkerAction as WorkerAction, type index$2_WorkerActionRequest as WorkerActionRequest, index$2_WorkerActionRequestSchema as WorkerActionRequestSchema, index$2_WorkerActionSchema as WorkerActionSchema };
17096
+ export { type index$2_APIResponse as APIResponse, type index$2_APIResponseRequest as APIResponseRequest, index$2_APIResponseRequestSchema as APIResponseRequestSchema, index$2_APIResponseSchema as APIResponseSchema, type index$2_ArchiveItem as ArchiveItem, type index$2_ArchiveItemChunk as ArchiveItemChunk, type index$2_ArchiveItemChunkDetail as ArchiveItemChunkDetail, index$2_ArchiveItemChunkDetailSchema as ArchiveItemChunkDetailSchema, type index$2_ArchiveItemChunkRequest as ArchiveItemChunkRequest, index$2_ArchiveItemChunkRequestSchema as ArchiveItemChunkRequestSchema, index$2_ArchiveItemChunkSchema as ArchiveItemChunkSchema, type index$2_ArchiveItemDetail as ArchiveItemDetail, index$2_ArchiveItemDetailSchema as ArchiveItemDetailSchema, type index$2_ArchiveItemRequest as ArchiveItemRequest, index$2_ArchiveItemRequestSchema as ArchiveItemRequestSchema, index$2_ArchiveItemSchema as ArchiveItemSchema, type index$2_ArchiveProcessingResult as ArchiveProcessingResult, index$2_ArchiveProcessingResultSchema as ArchiveProcessingResultSchema, type index$2_ArchiveSearchRequestRequest as ArchiveSearchRequestRequest, index$2_ArchiveSearchRequestRequestSchema as ArchiveSearchRequestRequestSchema, type index$2_ArchiveSearchResult as ArchiveSearchResult, index$2_ArchiveSearchResultSchema as ArchiveSearchResultSchema, type index$2_ArchiveStatistics as ArchiveStatistics, index$2_ArchiveStatisticsSchema as ArchiveStatisticsSchema, type index$2_Balance as Balance, index$2_BalanceSchema as BalanceSchema, type index$2_BulkEmailRequest as BulkEmailRequest, index$2_BulkEmailRequestSchema as BulkEmailRequestSchema, type index$2_BulkEmailResponse as BulkEmailResponse, index$2_BulkEmailResponseSchema as BulkEmailResponseSchema, type index$2_ChatHistory as ChatHistory, index$2_ChatHistorySchema as ChatHistorySchema, type index$2_ChatMessage as ChatMessage, index$2_ChatMessageSchema as ChatMessageSchema, type index$2_ChatQueryRequest as ChatQueryRequest, index$2_ChatQueryRequestSchema as ChatQueryRequestSchema, type index$2_ChatResponse as ChatResponse, type index$2_ChatResponseRequest as ChatResponseRequest, index$2_ChatResponseRequestSchema as ChatResponseRequestSchema, index$2_ChatResponseSchema as ChatResponseSchema, type index$2_ChatSession as ChatSession, type index$2_ChatSessionCreateRequest as ChatSessionCreateRequest, index$2_ChatSessionCreateRequestSchema as ChatSessionCreateRequestSchema, type index$2_ChatSessionRequest as ChatSessionRequest, index$2_ChatSessionRequestSchema as ChatSessionRequestSchema, index$2_ChatSessionSchema as ChatSessionSchema, type index$2_ChatSource as ChatSource, type index$2_ChatSourceRequest as ChatSourceRequest, index$2_ChatSourceRequestSchema as ChatSourceRequestSchema, index$2_ChatSourceSchema as ChatSourceSchema, type index$2_ChunkRevectorizationRequestRequest as ChunkRevectorizationRequestRequest, index$2_ChunkRevectorizationRequestRequestSchema as ChunkRevectorizationRequestRequestSchema, type index$2_Currency as Currency, index$2_CurrencySchema as CurrencySchema, type index$2_Document as Document, type index$2_DocumentArchive as DocumentArchive, type index$2_DocumentArchiveDetail as DocumentArchiveDetail, index$2_DocumentArchiveDetailSchema as DocumentArchiveDetailSchema, type index$2_DocumentArchiveList as DocumentArchiveList, index$2_DocumentArchiveListSchema as DocumentArchiveListSchema, type index$2_DocumentArchiveRequest as DocumentArchiveRequest, index$2_DocumentArchiveRequestSchema as DocumentArchiveRequestSchema, index$2_DocumentArchiveSchema as DocumentArchiveSchema, type index$2_DocumentCategory as DocumentCategory, type index$2_DocumentCategoryRequest as DocumentCategoryRequest, index$2_DocumentCategoryRequestSchema as DocumentCategoryRequestSchema, index$2_DocumentCategorySchema as DocumentCategorySchema, type index$2_DocumentCreateRequest as DocumentCreateRequest, index$2_DocumentCreateRequestSchema as DocumentCreateRequestSchema, type index$2_DocumentProcessingStatus as DocumentProcessingStatus, index$2_DocumentProcessingStatusSchema as DocumentProcessingStatusSchema, type index$2_DocumentRequest as DocumentRequest, index$2_DocumentRequestSchema as DocumentRequestSchema, index$2_DocumentSchema as DocumentSchema, type index$2_DocumentStats as DocumentStats, index$2_DocumentStatsSchema as DocumentStatsSchema, type index$2_EmailLog as EmailLog, index$2_EmailLogSchema as EmailLogSchema, type index$2_Endpoint as Endpoint, index$2_EndpointSchema as EndpointSchema, type index$2_EndpointsStatus as EndpointsStatus, index$2_EndpointsStatusSchema as EndpointsStatusSchema, type index$2_ErrorResponse as ErrorResponse, index$2_ErrorResponseSchema as ErrorResponseSchema, type index$2_HealthCheck as HealthCheck, index$2_HealthCheckSchema as HealthCheckSchema, type index$2_LeadSubmission as LeadSubmission, type index$2_LeadSubmissionError as LeadSubmissionError, index$2_LeadSubmissionErrorSchema as LeadSubmissionErrorSchema, type index$2_LeadSubmissionRequest as LeadSubmissionRequest, index$2_LeadSubmissionRequestSchema as LeadSubmissionRequestSchema, type index$2_LeadSubmissionResponse as LeadSubmissionResponse, index$2_LeadSubmissionResponseSchema as LeadSubmissionResponseSchema, index$2_LeadSubmissionSchema as LeadSubmissionSchema, type index$2_Message as Message, type index$2_MessageCreate as MessageCreate, type index$2_MessageCreateRequest as MessageCreateRequest, index$2_MessageCreateRequestSchema as MessageCreateRequestSchema, index$2_MessageCreateSchema as MessageCreateSchema, type index$2_MessageRequest as MessageRequest, index$2_MessageRequestSchema as MessageRequestSchema, index$2_MessageSchema as MessageSchema, type index$2_Newsletter as Newsletter, type index$2_NewsletterCampaign as NewsletterCampaign, type index$2_NewsletterCampaignRequest as NewsletterCampaignRequest, index$2_NewsletterCampaignRequestSchema as NewsletterCampaignRequestSchema, index$2_NewsletterCampaignSchema as NewsletterCampaignSchema, index$2_NewsletterSchema as NewsletterSchema, type index$2_NewsletterSubscription as NewsletterSubscription, index$2_NewsletterSubscriptionSchema as NewsletterSubscriptionSchema, type index$2_OTPErrorResponse as OTPErrorResponse, index$2_OTPErrorResponseSchema as OTPErrorResponseSchema, type index$2_OTPRequestRequest as OTPRequestRequest, index$2_OTPRequestRequestSchema as OTPRequestRequestSchema, type index$2_OTPRequestResponse as OTPRequestResponse, index$2_OTPRequestResponseSchema as OTPRequestResponseSchema, type index$2_OTPVerifyRequest as OTPVerifyRequest, index$2_OTPVerifyRequestSchema as OTPVerifyRequestSchema, type index$2_OTPVerifyResponse as OTPVerifyResponse, index$2_OTPVerifyResponseSchema as OTPVerifyResponseSchema, type index$2_PaginatedArchiveItemChunkList as PaginatedArchiveItemChunkList, index$2_PaginatedArchiveItemChunkListSchema as PaginatedArchiveItemChunkListSchema, type index$2_PaginatedArchiveItemList as PaginatedArchiveItemList, index$2_PaginatedArchiveItemListSchema as PaginatedArchiveItemListSchema, type index$2_PaginatedArchiveSearchResultList as PaginatedArchiveSearchResultList, index$2_PaginatedArchiveSearchResultListSchema as PaginatedArchiveSearchResultListSchema, type index$2_PaginatedChatResponseList as PaginatedChatResponseList, index$2_PaginatedChatResponseListSchema as PaginatedChatResponseListSchema, type index$2_PaginatedChatSessionList as PaginatedChatSessionList, index$2_PaginatedChatSessionListSchema as PaginatedChatSessionListSchema, type index$2_PaginatedDocumentArchiveListList as PaginatedDocumentArchiveListList, index$2_PaginatedDocumentArchiveListListSchema as PaginatedDocumentArchiveListListSchema, type index$2_PaginatedDocumentList as PaginatedDocumentList, index$2_PaginatedDocumentListSchema as PaginatedDocumentListSchema, type index$2_PaginatedEmailLogList as PaginatedEmailLogList, index$2_PaginatedEmailLogListSchema as PaginatedEmailLogListSchema, type index$2_PaginatedLeadSubmissionList as PaginatedLeadSubmissionList, index$2_PaginatedLeadSubmissionListSchema as PaginatedLeadSubmissionListSchema, type index$2_PaginatedMessageList as PaginatedMessageList, index$2_PaginatedMessageListSchema as PaginatedMessageListSchema, type index$2_PaginatedNewsletterCampaignList as PaginatedNewsletterCampaignList, index$2_PaginatedNewsletterCampaignListSchema as PaginatedNewsletterCampaignListSchema, type index$2_PaginatedNewsletterList as PaginatedNewsletterList, index$2_PaginatedNewsletterListSchema as PaginatedNewsletterListSchema, type index$2_PaginatedNewsletterSubscriptionList as PaginatedNewsletterSubscriptionList, index$2_PaginatedNewsletterSubscriptionListSchema as PaginatedNewsletterSubscriptionListSchema, type index$2_PaginatedPaymentListList as PaginatedPaymentListList, index$2_PaginatedPaymentListListSchema as PaginatedPaymentListListSchema, type index$2_PaginatedPublicCategoryList as PaginatedPublicCategoryList, index$2_PaginatedPublicCategoryListSchema as PaginatedPublicCategoryListSchema, type index$2_PaginatedPublicDocumentListList as PaginatedPublicDocumentListList, index$2_PaginatedPublicDocumentListListSchema as PaginatedPublicDocumentListListSchema, type index$2_PaginatedTicketList as PaginatedTicketList, index$2_PaginatedTicketListSchema as PaginatedTicketListSchema, type index$2_PatchedArchiveItemChunkRequest as PatchedArchiveItemChunkRequest, index$2_PatchedArchiveItemChunkRequestSchema as PatchedArchiveItemChunkRequestSchema, type index$2_PatchedArchiveItemRequest as PatchedArchiveItemRequest, index$2_PatchedArchiveItemRequestSchema as PatchedArchiveItemRequestSchema, type index$2_PatchedChatResponseRequest as PatchedChatResponseRequest, index$2_PatchedChatResponseRequestSchema as PatchedChatResponseRequestSchema, type index$2_PatchedChatSessionRequest as PatchedChatSessionRequest, index$2_PatchedChatSessionRequestSchema as PatchedChatSessionRequestSchema, type index$2_PatchedDocumentArchiveRequest as PatchedDocumentArchiveRequest, index$2_PatchedDocumentArchiveRequestSchema as PatchedDocumentArchiveRequestSchema, type index$2_PatchedDocumentRequest as PatchedDocumentRequest, index$2_PatchedDocumentRequestSchema as PatchedDocumentRequestSchema, type index$2_PatchedLeadSubmissionRequest as PatchedLeadSubmissionRequest, index$2_PatchedLeadSubmissionRequestSchema as PatchedLeadSubmissionRequestSchema, type index$2_PatchedMessageRequest as PatchedMessageRequest, index$2_PatchedMessageRequestSchema as PatchedMessageRequestSchema, type index$2_PatchedNewsletterCampaignRequest as PatchedNewsletterCampaignRequest, index$2_PatchedNewsletterCampaignRequestSchema as PatchedNewsletterCampaignRequestSchema, type index$2_PatchedTicketRequest as PatchedTicketRequest, index$2_PatchedTicketRequestSchema as PatchedTicketRequestSchema, type index$2_PatchedUnsubscribeRequest as PatchedUnsubscribeRequest, index$2_PatchedUnsubscribeRequestSchema as PatchedUnsubscribeRequestSchema, type index$2_PatchedUserProfileUpdateRequest as PatchedUserProfileUpdateRequest, index$2_PatchedUserProfileUpdateRequestSchema as PatchedUserProfileUpdateRequestSchema, type index$2_PaymentDetail as PaymentDetail, index$2_PaymentDetailSchema as PaymentDetailSchema, type index$2_PaymentList as PaymentList, index$2_PaymentListSchema as PaymentListSchema, type index$2_PublicCategory as PublicCategory, index$2_PublicCategorySchema as PublicCategorySchema, type index$2_PublicDocument as PublicDocument, type index$2_PublicDocumentList as PublicDocumentList, index$2_PublicDocumentListSchema as PublicDocumentListSchema, index$2_PublicDocumentSchema as PublicDocumentSchema, type index$2_QueueAction as QueueAction, type index$2_QueueActionRequest as QueueActionRequest, index$2_QueueActionRequestSchema as QueueActionRequestSchema, index$2_QueueActionSchema as QueueActionSchema, type index$2_QueueStatus as QueueStatus, index$2_QueueStatusSchema as QueueStatusSchema, type index$2_QuickHealth as QuickHealth, index$2_QuickHealthSchema as QuickHealthSchema, type index$2_SendCampaignRequest as SendCampaignRequest, index$2_SendCampaignRequestSchema as SendCampaignRequestSchema, type index$2_SendCampaignResponse as SendCampaignResponse, index$2_SendCampaignResponseSchema as SendCampaignResponseSchema, type index$2_Sender as Sender, index$2_SenderSchema as SenderSchema, type index$2_SubscribeRequest as SubscribeRequest, index$2_SubscribeRequestSchema as SubscribeRequestSchema, type index$2_SubscribeResponse as SubscribeResponse, index$2_SubscribeResponseSchema as SubscribeResponseSchema, type index$2_SuccessResponse as SuccessResponse, index$2_SuccessResponseSchema as SuccessResponseSchema, type index$2_TaskStatistics as TaskStatistics, index$2_TaskStatisticsSchema as TaskStatisticsSchema, type index$2_TestEmailRequest as TestEmailRequest, index$2_TestEmailRequestSchema as TestEmailRequestSchema, type index$2_Ticket as Ticket, type index$2_TicketRequest as TicketRequest, index$2_TicketRequestSchema as TicketRequestSchema, index$2_TicketSchema as TicketSchema, type index$2_TokenRefresh as TokenRefresh, type index$2_TokenRefreshRequest as TokenRefreshRequest, index$2_TokenRefreshRequestSchema as TokenRefreshRequestSchema, index$2_TokenRefreshSchema as TokenRefreshSchema, type index$2_Transaction as Transaction, index$2_TransactionSchema as TransactionSchema, type index$2_Unsubscribe as Unsubscribe, type index$2_UnsubscribeRequest as UnsubscribeRequest, index$2_UnsubscribeRequestSchema as UnsubscribeRequestSchema, index$2_UnsubscribeSchema as UnsubscribeSchema, type index$2_User as User, type index$2_UserProfileUpdateRequest as UserProfileUpdateRequest, index$2_UserProfileUpdateRequestSchema as UserProfileUpdateRequestSchema, index$2_UserSchema as UserSchema, type index$2_VectorizationResult as VectorizationResult, index$2_VectorizationResultSchema as VectorizationResultSchema, type index$2_VectorizationStatistics as VectorizationStatistics, index$2_VectorizationStatisticsSchema as VectorizationStatisticsSchema, type index$2_WorkerAction as WorkerAction, type index$2_WorkerActionRequest as WorkerActionRequest, index$2_WorkerActionRequestSchema as WorkerActionRequestSchema, index$2_WorkerActionSchema as WorkerActionSchema };
17341
17097
  }
17342
17098
 
17343
17099
  /**
@@ -18570,19 +18326,19 @@ declare function createNewsletterTestCreate(data: TestEmailRequest, client?: any
18570
18326
  */
18571
18327
 
18572
18328
  /**
18573
- * API operation
18329
+ * Get user balance
18574
18330
  *
18575
18331
  * @method GET
18576
18332
  * @path /cfg/payments/balance/
18577
18333
  */
18578
- declare function getPaymentsBalanceRetrieve(client?: any): Promise<any>;
18334
+ declare function getPaymentsBalanceRetrieve(client?: any): Promise<Balance>;
18579
18335
  /**
18580
- * API operation
18336
+ * Get available currencies
18581
18337
  *
18582
18338
  * @method GET
18583
18339
  * @path /cfg/payments/currencies/
18584
18340
  */
18585
- declare function getPaymentsCurrenciesRetrieve(client?: any): Promise<any>;
18341
+ declare function getPaymentsCurrenciesList(client?: any): Promise<any>;
18586
18342
  /**
18587
18343
  * API operation
18588
18344
  *
@@ -18622,12 +18378,16 @@ declare function getPaymentsPaymentsStatusRetrieve(id: string, client?: any): Pr
18622
18378
  */
18623
18379
  declare function createPaymentsPaymentsCreateCreate(client?: any): Promise<PaymentList>;
18624
18380
  /**
18625
- * API operation
18381
+ * Get user transactions
18626
18382
  *
18627
18383
  * @method GET
18628
18384
  * @path /cfg/payments/transactions/
18629
18385
  */
18630
- declare function getPaymentsTransactionsRetrieve(client?: any): Promise<any>;
18386
+ declare function getPaymentsTransactionsList(params?: {
18387
+ limit?: number;
18388
+ offset?: number;
18389
+ type?: string;
18390
+ }, client?: any): Promise<any>;
18631
18391
 
18632
18392
  /**
18633
18393
  * Typed fetchers for Support
@@ -18966,11 +18726,11 @@ declare const index$1_getNewsletterNewslettersList: typeof getNewsletterNewslett
18966
18726
  declare const index$1_getNewsletterNewslettersRetrieve: typeof getNewsletterNewslettersRetrieve;
18967
18727
  declare const index$1_getNewsletterSubscriptionsList: typeof getNewsletterSubscriptionsList;
18968
18728
  declare const index$1_getPaymentsBalanceRetrieve: typeof getPaymentsBalanceRetrieve;
18969
- declare const index$1_getPaymentsCurrenciesRetrieve: typeof getPaymentsCurrenciesRetrieve;
18729
+ declare const index$1_getPaymentsCurrenciesList: typeof getPaymentsCurrenciesList;
18970
18730
  declare const index$1_getPaymentsPaymentsList: typeof getPaymentsPaymentsList;
18971
18731
  declare const index$1_getPaymentsPaymentsRetrieve: typeof getPaymentsPaymentsRetrieve;
18972
18732
  declare const index$1_getPaymentsPaymentsStatusRetrieve: typeof getPaymentsPaymentsStatusRetrieve;
18973
- declare const index$1_getPaymentsTransactionsRetrieve: typeof getPaymentsTransactionsRetrieve;
18733
+ declare const index$1_getPaymentsTransactionsList: typeof getPaymentsTransactionsList;
18974
18734
  declare const index$1_getSupportTicketsList: typeof getSupportTicketsList;
18975
18735
  declare const index$1_getSupportTicketsMessagesList: typeof getSupportTicketsMessagesList;
18976
18736
  declare const index$1_getSupportTicketsMessagesRetrieve: typeof getSupportTicketsMessagesRetrieve;
@@ -19006,7 +18766,7 @@ declare const index$1_updateNewsletterUnsubscribeUpdate: typeof updateNewsletter
19006
18766
  declare const index$1_updateSupportTicketsMessagesUpdate: typeof updateSupportTicketsMessagesUpdate;
19007
18767
  declare const index$1_updateSupportTicketsUpdate: typeof updateSupportTicketsUpdate;
19008
18768
  declare namespace index$1 {
19009
- export { index$1_createAccountsOtpRequestCreate as createAccountsOtpRequestCreate, index$1_createAccountsOtpVerifyCreate as createAccountsOtpVerifyCreate, index$1_createAccountsProfileAvatarCreate as createAccountsProfileAvatarCreate, index$1_createAccountsTokenRefreshCreate as createAccountsTokenRefreshCreate, index$1_createKnowbaseAdminChatCreate as createKnowbaseAdminChatCreate, index$1_createKnowbaseAdminChatQueryCreate as createKnowbaseAdminChatQueryCreate, index$1_createKnowbaseAdminDocumentsCreate as createKnowbaseAdminDocumentsCreate, index$1_createKnowbaseAdminDocumentsReprocessCreate as createKnowbaseAdminDocumentsReprocessCreate, index$1_createKnowbaseAdminSessionsActivateCreate as createKnowbaseAdminSessionsActivateCreate, index$1_createKnowbaseAdminSessionsArchiveCreate as createKnowbaseAdminSessionsArchiveCreate, index$1_createKnowbaseAdminSessionsCreate as createKnowbaseAdminSessionsCreate, index$1_createKnowbaseSystemArchivesCreate as createKnowbaseSystemArchivesCreate, index$1_createKnowbaseSystemArchivesRevectorizeCreate as createKnowbaseSystemArchivesRevectorizeCreate, index$1_createKnowbaseSystemArchivesSearchCreate as createKnowbaseSystemArchivesSearchCreate, index$1_createKnowbaseSystemChunksCreate as createKnowbaseSystemChunksCreate, index$1_createKnowbaseSystemChunksVectorizeCreate as createKnowbaseSystemChunksVectorizeCreate, index$1_createKnowbaseSystemItemsCreate as createKnowbaseSystemItemsCreate, index$1_createLeadsCreate as createLeadsCreate, index$1_createLeadsSubmitCreate as createLeadsSubmitCreate, index$1_createNewsletterBulkCreate as createNewsletterBulkCreate, index$1_createNewsletterCampaignsCreate as createNewsletterCampaignsCreate, index$1_createNewsletterCampaignsSendCreate as createNewsletterCampaignsSendCreate, index$1_createNewsletterSubscribeCreate as createNewsletterSubscribeCreate, index$1_createNewsletterTestCreate as createNewsletterTestCreate, index$1_createNewsletterUnsubscribeCreate as createNewsletterUnsubscribeCreate, index$1_createPaymentsPaymentsConfirmCreate as createPaymentsPaymentsConfirmCreate, index$1_createPaymentsPaymentsCreateCreate as createPaymentsPaymentsCreateCreate, index$1_createSupportTicketsCreate as createSupportTicketsCreate, index$1_createSupportTicketsMessagesCreate as createSupportTicketsMessagesCreate, index$1_createTasksApiClearCreate as createTasksApiClearCreate, index$1_createTasksApiClearQueuesCreate as createTasksApiClearQueuesCreate, index$1_createTasksApiPurgeFailedCreate as createTasksApiPurgeFailedCreate, index$1_createTasksApiQueuesManageCreate as createTasksApiQueuesManageCreate, index$1_createTasksApiSimulateCreate as createTasksApiSimulateCreate, index$1_createTasksApiWorkersManageCreate as createTasksApiWorkersManageCreate, index$1_deleteKnowbaseAdminChatDestroy as deleteKnowbaseAdminChatDestroy, index$1_deleteKnowbaseAdminDocumentsDestroy as deleteKnowbaseAdminDocumentsDestroy, index$1_deleteKnowbaseAdminSessionsDestroy as deleteKnowbaseAdminSessionsDestroy, index$1_deleteKnowbaseSystemArchivesDestroy as deleteKnowbaseSystemArchivesDestroy, index$1_deleteKnowbaseSystemChunksDestroy as deleteKnowbaseSystemChunksDestroy, index$1_deleteKnowbaseSystemItemsDestroy as deleteKnowbaseSystemItemsDestroy, index$1_deleteLeadsDestroy as deleteLeadsDestroy, index$1_deleteNewsletterCampaignsDestroy as deleteNewsletterCampaignsDestroy, index$1_deleteSupportTicketsDestroy as deleteSupportTicketsDestroy, index$1_deleteSupportTicketsMessagesDestroy as deleteSupportTicketsMessagesDestroy, index$1_getAccountsProfileRetrieve as getAccountsProfileRetrieve, index$1_getEndpointsDrfRetrieve as getEndpointsDrfRetrieve, index$1_getHealthDrfQuickRetrieve as getHealthDrfQuickRetrieve, index$1_getHealthDrfRetrieve as getHealthDrfRetrieve, index$1_getKnowbaseAdminChatHistoryRetrieve as getKnowbaseAdminChatHistoryRetrieve, index$1_getKnowbaseAdminChatList as getKnowbaseAdminChatList, index$1_getKnowbaseAdminChatRetrieve as getKnowbaseAdminChatRetrieve, index$1_getKnowbaseAdminDocumentsList as getKnowbaseAdminDocumentsList, index$1_getKnowbaseAdminDocumentsRetrieve as getKnowbaseAdminDocumentsRetrieve, index$1_getKnowbaseAdminDocumentsStatsRetrieve as getKnowbaseAdminDocumentsStatsRetrieve, index$1_getKnowbaseAdminDocumentsStatusRetrieve as getKnowbaseAdminDocumentsStatusRetrieve, index$1_getKnowbaseAdminSessionsList as getKnowbaseAdminSessionsList, index$1_getKnowbaseAdminSessionsRetrieve as getKnowbaseAdminSessionsRetrieve, index$1_getKnowbaseCategoriesList as getKnowbaseCategoriesList, index$1_getKnowbaseCategoriesRetrieve as getKnowbaseCategoriesRetrieve, index$1_getKnowbaseDocumentsList as getKnowbaseDocumentsList, index$1_getKnowbaseDocumentsRetrieve as getKnowbaseDocumentsRetrieve, index$1_getKnowbaseSystemArchivesFileTreeRetrieve as getKnowbaseSystemArchivesFileTreeRetrieve, index$1_getKnowbaseSystemArchivesItemsList as getKnowbaseSystemArchivesItemsList, index$1_getKnowbaseSystemArchivesList as getKnowbaseSystemArchivesList, index$1_getKnowbaseSystemArchivesRetrieve as getKnowbaseSystemArchivesRetrieve, index$1_getKnowbaseSystemArchivesStatisticsRetrieve as getKnowbaseSystemArchivesStatisticsRetrieve, index$1_getKnowbaseSystemArchivesVectorizationStatsRetrieve as getKnowbaseSystemArchivesVectorizationStatsRetrieve, index$1_getKnowbaseSystemChunksContextRetrieve as getKnowbaseSystemChunksContextRetrieve, index$1_getKnowbaseSystemChunksList as getKnowbaseSystemChunksList, index$1_getKnowbaseSystemChunksRetrieve as getKnowbaseSystemChunksRetrieve, index$1_getKnowbaseSystemItemsChunksList as getKnowbaseSystemItemsChunksList, index$1_getKnowbaseSystemItemsContentRetrieve as getKnowbaseSystemItemsContentRetrieve, index$1_getKnowbaseSystemItemsList as getKnowbaseSystemItemsList, index$1_getKnowbaseSystemItemsRetrieve as getKnowbaseSystemItemsRetrieve, index$1_getLeadsList as getLeadsList, index$1_getLeadsRetrieve as getLeadsRetrieve, index$1_getNewsletterCampaignsList as getNewsletterCampaignsList, index$1_getNewsletterCampaignsRetrieve as getNewsletterCampaignsRetrieve, index$1_getNewsletterLogsList as getNewsletterLogsList, index$1_getNewsletterNewslettersList as getNewsletterNewslettersList, index$1_getNewsletterNewslettersRetrieve as getNewsletterNewslettersRetrieve, index$1_getNewsletterSubscriptionsList as getNewsletterSubscriptionsList, index$1_getPaymentsBalanceRetrieve as getPaymentsBalanceRetrieve, index$1_getPaymentsCurrenciesRetrieve as getPaymentsCurrenciesRetrieve, index$1_getPaymentsPaymentsList as getPaymentsPaymentsList, index$1_getPaymentsPaymentsRetrieve as getPaymentsPaymentsRetrieve, index$1_getPaymentsPaymentsStatusRetrieve as getPaymentsPaymentsStatusRetrieve, index$1_getPaymentsTransactionsRetrieve as getPaymentsTransactionsRetrieve, index$1_getSupportTicketsList as getSupportTicketsList, index$1_getSupportTicketsMessagesList as getSupportTicketsMessagesList, index$1_getSupportTicketsMessagesRetrieve as getSupportTicketsMessagesRetrieve, index$1_getSupportTicketsRetrieve as getSupportTicketsRetrieve, index$1_getTasksApiQueuesStatusRetrieve as getTasksApiQueuesStatusRetrieve, index$1_getTasksApiTasksListRetrieve as getTasksApiTasksListRetrieve, index$1_getTasksApiTasksStatsRetrieve as getTasksApiTasksStatsRetrieve, index$1_getTasksApiWorkersListRetrieve as getTasksApiWorkersListRetrieve, index$1_partialUpdateAccountsProfilePartialPartialUpdate as partialUpdateAccountsProfilePartialPartialUpdate, index$1_partialUpdateAccountsProfilePartialUpdate as partialUpdateAccountsProfilePartialUpdate, index$1_partialUpdateAccountsProfileUpdatePartialUpdate as partialUpdateAccountsProfileUpdatePartialUpdate, index$1_partialUpdateKnowbaseAdminChatPartialUpdate as partialUpdateKnowbaseAdminChatPartialUpdate, index$1_partialUpdateKnowbaseAdminDocumentsPartialUpdate as partialUpdateKnowbaseAdminDocumentsPartialUpdate, index$1_partialUpdateKnowbaseAdminSessionsPartialUpdate as partialUpdateKnowbaseAdminSessionsPartialUpdate, index$1_partialUpdateKnowbaseSystemArchivesPartialUpdate as partialUpdateKnowbaseSystemArchivesPartialUpdate, index$1_partialUpdateKnowbaseSystemChunksPartialUpdate as partialUpdateKnowbaseSystemChunksPartialUpdate, index$1_partialUpdateKnowbaseSystemItemsPartialUpdate as partialUpdateKnowbaseSystemItemsPartialUpdate, index$1_partialUpdateLeadsPartialUpdate as partialUpdateLeadsPartialUpdate, index$1_partialUpdateNewsletterCampaignsPartialUpdate as partialUpdateNewsletterCampaignsPartialUpdate, index$1_partialUpdateNewsletterUnsubscribePartialUpdate as partialUpdateNewsletterUnsubscribePartialUpdate, index$1_partialUpdateSupportTicketsMessagesPartialUpdate as partialUpdateSupportTicketsMessagesPartialUpdate, index$1_partialUpdateSupportTicketsPartialUpdate as partialUpdateSupportTicketsPartialUpdate, index$1_updateAccountsProfileUpdateUpdate as updateAccountsProfileUpdateUpdate, index$1_updateKnowbaseAdminChatUpdate as updateKnowbaseAdminChatUpdate, index$1_updateKnowbaseAdminDocumentsUpdate as updateKnowbaseAdminDocumentsUpdate, index$1_updateKnowbaseAdminSessionsUpdate as updateKnowbaseAdminSessionsUpdate, index$1_updateKnowbaseSystemArchivesUpdate as updateKnowbaseSystemArchivesUpdate, index$1_updateKnowbaseSystemChunksUpdate as updateKnowbaseSystemChunksUpdate, index$1_updateKnowbaseSystemItemsUpdate as updateKnowbaseSystemItemsUpdate, index$1_updateLeadsUpdate as updateLeadsUpdate, index$1_updateNewsletterCampaignsUpdate as updateNewsletterCampaignsUpdate, index$1_updateNewsletterUnsubscribeUpdate as updateNewsletterUnsubscribeUpdate, index$1_updateSupportTicketsMessagesUpdate as updateSupportTicketsMessagesUpdate, index$1_updateSupportTicketsUpdate as updateSupportTicketsUpdate };
18769
+ export { index$1_createAccountsOtpRequestCreate as createAccountsOtpRequestCreate, index$1_createAccountsOtpVerifyCreate as createAccountsOtpVerifyCreate, index$1_createAccountsProfileAvatarCreate as createAccountsProfileAvatarCreate, index$1_createAccountsTokenRefreshCreate as createAccountsTokenRefreshCreate, index$1_createKnowbaseAdminChatCreate as createKnowbaseAdminChatCreate, index$1_createKnowbaseAdminChatQueryCreate as createKnowbaseAdminChatQueryCreate, index$1_createKnowbaseAdminDocumentsCreate as createKnowbaseAdminDocumentsCreate, index$1_createKnowbaseAdminDocumentsReprocessCreate as createKnowbaseAdminDocumentsReprocessCreate, index$1_createKnowbaseAdminSessionsActivateCreate as createKnowbaseAdminSessionsActivateCreate, index$1_createKnowbaseAdminSessionsArchiveCreate as createKnowbaseAdminSessionsArchiveCreate, index$1_createKnowbaseAdminSessionsCreate as createKnowbaseAdminSessionsCreate, index$1_createKnowbaseSystemArchivesCreate as createKnowbaseSystemArchivesCreate, index$1_createKnowbaseSystemArchivesRevectorizeCreate as createKnowbaseSystemArchivesRevectorizeCreate, index$1_createKnowbaseSystemArchivesSearchCreate as createKnowbaseSystemArchivesSearchCreate, index$1_createKnowbaseSystemChunksCreate as createKnowbaseSystemChunksCreate, index$1_createKnowbaseSystemChunksVectorizeCreate as createKnowbaseSystemChunksVectorizeCreate, index$1_createKnowbaseSystemItemsCreate as createKnowbaseSystemItemsCreate, index$1_createLeadsCreate as createLeadsCreate, index$1_createLeadsSubmitCreate as createLeadsSubmitCreate, index$1_createNewsletterBulkCreate as createNewsletterBulkCreate, index$1_createNewsletterCampaignsCreate as createNewsletterCampaignsCreate, index$1_createNewsletterCampaignsSendCreate as createNewsletterCampaignsSendCreate, index$1_createNewsletterSubscribeCreate as createNewsletterSubscribeCreate, index$1_createNewsletterTestCreate as createNewsletterTestCreate, index$1_createNewsletterUnsubscribeCreate as createNewsletterUnsubscribeCreate, index$1_createPaymentsPaymentsConfirmCreate as createPaymentsPaymentsConfirmCreate, index$1_createPaymentsPaymentsCreateCreate as createPaymentsPaymentsCreateCreate, index$1_createSupportTicketsCreate as createSupportTicketsCreate, index$1_createSupportTicketsMessagesCreate as createSupportTicketsMessagesCreate, index$1_createTasksApiClearCreate as createTasksApiClearCreate, index$1_createTasksApiClearQueuesCreate as createTasksApiClearQueuesCreate, index$1_createTasksApiPurgeFailedCreate as createTasksApiPurgeFailedCreate, index$1_createTasksApiQueuesManageCreate as createTasksApiQueuesManageCreate, index$1_createTasksApiSimulateCreate as createTasksApiSimulateCreate, index$1_createTasksApiWorkersManageCreate as createTasksApiWorkersManageCreate, index$1_deleteKnowbaseAdminChatDestroy as deleteKnowbaseAdminChatDestroy, index$1_deleteKnowbaseAdminDocumentsDestroy as deleteKnowbaseAdminDocumentsDestroy, index$1_deleteKnowbaseAdminSessionsDestroy as deleteKnowbaseAdminSessionsDestroy, index$1_deleteKnowbaseSystemArchivesDestroy as deleteKnowbaseSystemArchivesDestroy, index$1_deleteKnowbaseSystemChunksDestroy as deleteKnowbaseSystemChunksDestroy, index$1_deleteKnowbaseSystemItemsDestroy as deleteKnowbaseSystemItemsDestroy, index$1_deleteLeadsDestroy as deleteLeadsDestroy, index$1_deleteNewsletterCampaignsDestroy as deleteNewsletterCampaignsDestroy, index$1_deleteSupportTicketsDestroy as deleteSupportTicketsDestroy, index$1_deleteSupportTicketsMessagesDestroy as deleteSupportTicketsMessagesDestroy, index$1_getAccountsProfileRetrieve as getAccountsProfileRetrieve, index$1_getEndpointsDrfRetrieve as getEndpointsDrfRetrieve, index$1_getHealthDrfQuickRetrieve as getHealthDrfQuickRetrieve, index$1_getHealthDrfRetrieve as getHealthDrfRetrieve, index$1_getKnowbaseAdminChatHistoryRetrieve as getKnowbaseAdminChatHistoryRetrieve, index$1_getKnowbaseAdminChatList as getKnowbaseAdminChatList, index$1_getKnowbaseAdminChatRetrieve as getKnowbaseAdminChatRetrieve, index$1_getKnowbaseAdminDocumentsList as getKnowbaseAdminDocumentsList, index$1_getKnowbaseAdminDocumentsRetrieve as getKnowbaseAdminDocumentsRetrieve, index$1_getKnowbaseAdminDocumentsStatsRetrieve as getKnowbaseAdminDocumentsStatsRetrieve, index$1_getKnowbaseAdminDocumentsStatusRetrieve as getKnowbaseAdminDocumentsStatusRetrieve, index$1_getKnowbaseAdminSessionsList as getKnowbaseAdminSessionsList, index$1_getKnowbaseAdminSessionsRetrieve as getKnowbaseAdminSessionsRetrieve, index$1_getKnowbaseCategoriesList as getKnowbaseCategoriesList, index$1_getKnowbaseCategoriesRetrieve as getKnowbaseCategoriesRetrieve, index$1_getKnowbaseDocumentsList as getKnowbaseDocumentsList, index$1_getKnowbaseDocumentsRetrieve as getKnowbaseDocumentsRetrieve, index$1_getKnowbaseSystemArchivesFileTreeRetrieve as getKnowbaseSystemArchivesFileTreeRetrieve, index$1_getKnowbaseSystemArchivesItemsList as getKnowbaseSystemArchivesItemsList, index$1_getKnowbaseSystemArchivesList as getKnowbaseSystemArchivesList, index$1_getKnowbaseSystemArchivesRetrieve as getKnowbaseSystemArchivesRetrieve, index$1_getKnowbaseSystemArchivesStatisticsRetrieve as getKnowbaseSystemArchivesStatisticsRetrieve, index$1_getKnowbaseSystemArchivesVectorizationStatsRetrieve as getKnowbaseSystemArchivesVectorizationStatsRetrieve, index$1_getKnowbaseSystemChunksContextRetrieve as getKnowbaseSystemChunksContextRetrieve, index$1_getKnowbaseSystemChunksList as getKnowbaseSystemChunksList, index$1_getKnowbaseSystemChunksRetrieve as getKnowbaseSystemChunksRetrieve, index$1_getKnowbaseSystemItemsChunksList as getKnowbaseSystemItemsChunksList, index$1_getKnowbaseSystemItemsContentRetrieve as getKnowbaseSystemItemsContentRetrieve, index$1_getKnowbaseSystemItemsList as getKnowbaseSystemItemsList, index$1_getKnowbaseSystemItemsRetrieve as getKnowbaseSystemItemsRetrieve, index$1_getLeadsList as getLeadsList, index$1_getLeadsRetrieve as getLeadsRetrieve, index$1_getNewsletterCampaignsList as getNewsletterCampaignsList, index$1_getNewsletterCampaignsRetrieve as getNewsletterCampaignsRetrieve, index$1_getNewsletterLogsList as getNewsletterLogsList, index$1_getNewsletterNewslettersList as getNewsletterNewslettersList, index$1_getNewsletterNewslettersRetrieve as getNewsletterNewslettersRetrieve, index$1_getNewsletterSubscriptionsList as getNewsletterSubscriptionsList, index$1_getPaymentsBalanceRetrieve as getPaymentsBalanceRetrieve, index$1_getPaymentsCurrenciesList as getPaymentsCurrenciesList, index$1_getPaymentsPaymentsList as getPaymentsPaymentsList, index$1_getPaymentsPaymentsRetrieve as getPaymentsPaymentsRetrieve, index$1_getPaymentsPaymentsStatusRetrieve as getPaymentsPaymentsStatusRetrieve, index$1_getPaymentsTransactionsList as getPaymentsTransactionsList, index$1_getSupportTicketsList as getSupportTicketsList, index$1_getSupportTicketsMessagesList as getSupportTicketsMessagesList, index$1_getSupportTicketsMessagesRetrieve as getSupportTicketsMessagesRetrieve, index$1_getSupportTicketsRetrieve as getSupportTicketsRetrieve, index$1_getTasksApiQueuesStatusRetrieve as getTasksApiQueuesStatusRetrieve, index$1_getTasksApiTasksListRetrieve as getTasksApiTasksListRetrieve, index$1_getTasksApiTasksStatsRetrieve as getTasksApiTasksStatsRetrieve, index$1_getTasksApiWorkersListRetrieve as getTasksApiWorkersListRetrieve, index$1_partialUpdateAccountsProfilePartialPartialUpdate as partialUpdateAccountsProfilePartialPartialUpdate, index$1_partialUpdateAccountsProfilePartialUpdate as partialUpdateAccountsProfilePartialUpdate, index$1_partialUpdateAccountsProfileUpdatePartialUpdate as partialUpdateAccountsProfileUpdatePartialUpdate, index$1_partialUpdateKnowbaseAdminChatPartialUpdate as partialUpdateKnowbaseAdminChatPartialUpdate, index$1_partialUpdateKnowbaseAdminDocumentsPartialUpdate as partialUpdateKnowbaseAdminDocumentsPartialUpdate, index$1_partialUpdateKnowbaseAdminSessionsPartialUpdate as partialUpdateKnowbaseAdminSessionsPartialUpdate, index$1_partialUpdateKnowbaseSystemArchivesPartialUpdate as partialUpdateKnowbaseSystemArchivesPartialUpdate, index$1_partialUpdateKnowbaseSystemChunksPartialUpdate as partialUpdateKnowbaseSystemChunksPartialUpdate, index$1_partialUpdateKnowbaseSystemItemsPartialUpdate as partialUpdateKnowbaseSystemItemsPartialUpdate, index$1_partialUpdateLeadsPartialUpdate as partialUpdateLeadsPartialUpdate, index$1_partialUpdateNewsletterCampaignsPartialUpdate as partialUpdateNewsletterCampaignsPartialUpdate, index$1_partialUpdateNewsletterUnsubscribePartialUpdate as partialUpdateNewsletterUnsubscribePartialUpdate, index$1_partialUpdateSupportTicketsMessagesPartialUpdate as partialUpdateSupportTicketsMessagesPartialUpdate, index$1_partialUpdateSupportTicketsPartialUpdate as partialUpdateSupportTicketsPartialUpdate, index$1_updateAccountsProfileUpdateUpdate as updateAccountsProfileUpdateUpdate, index$1_updateKnowbaseAdminChatUpdate as updateKnowbaseAdminChatUpdate, index$1_updateKnowbaseAdminDocumentsUpdate as updateKnowbaseAdminDocumentsUpdate, index$1_updateKnowbaseAdminSessionsUpdate as updateKnowbaseAdminSessionsUpdate, index$1_updateKnowbaseSystemArchivesUpdate as updateKnowbaseSystemArchivesUpdate, index$1_updateKnowbaseSystemChunksUpdate as updateKnowbaseSystemChunksUpdate, index$1_updateKnowbaseSystemItemsUpdate as updateKnowbaseSystemItemsUpdate, index$1_updateLeadsUpdate as updateLeadsUpdate, index$1_updateNewsletterCampaignsUpdate as updateNewsletterCampaignsUpdate, index$1_updateNewsletterUnsubscribeUpdate as updateNewsletterUnsubscribeUpdate, index$1_updateSupportTicketsMessagesUpdate as updateSupportTicketsMessagesUpdate, index$1_updateSupportTicketsUpdate as updateSupportTicketsUpdate };
19010
18770
  }
19011
18771
 
19012
18772
  /**
@@ -19980,19 +19740,19 @@ declare function usePartialUpdateNewsletterUnsubscribePartialUpdate(): (data?: P
19980
19740
  */
19981
19741
 
19982
19742
  /**
19983
- * API operation
19743
+ * Get user balance
19984
19744
  *
19985
19745
  * @method GET
19986
19746
  * @path /cfg/payments/balance/
19987
19747
  */
19988
- declare function usePaymentsBalanceRetrieve(client?: API): ReturnType<typeof useSWR<any>>;
19748
+ declare function usePaymentsBalanceRetrieve(client?: API): ReturnType<typeof useSWR<Balance>>;
19989
19749
  /**
19990
- * API operation
19750
+ * Get available currencies
19991
19751
  *
19992
19752
  * @method GET
19993
19753
  * @path /cfg/payments/currencies/
19994
19754
  */
19995
- declare function usePaymentsCurrenciesRetrieve(client?: API): ReturnType<typeof useSWR<any>>;
19755
+ declare function usePaymentsCurrenciesList(client?: API): ReturnType<typeof useSWR<any>>;
19996
19756
  /**
19997
19757
  * API operation
19998
19758
  *
@@ -20032,12 +19792,16 @@ declare function usePaymentsPaymentsStatusRetrieve(id: string, client?: API): Re
20032
19792
  */
20033
19793
  declare function useCreatePaymentsPaymentsCreateCreate(): (client?: API) => Promise<PaymentList>;
20034
19794
  /**
20035
- * API operation
19795
+ * Get user transactions
20036
19796
  *
20037
19797
  * @method GET
20038
19798
  * @path /cfg/payments/transactions/
20039
19799
  */
20040
- declare function usePaymentsTransactionsRetrieve(client?: API): ReturnType<typeof useSWR<any>>;
19800
+ declare function usePaymentsTransactionsList(params?: {
19801
+ limit?: number;
19802
+ offset?: number;
19803
+ type?: string;
19804
+ }, client?: API): ReturnType<typeof useSWR<any>>;
20041
19805
 
20042
19806
  /**
20043
19807
  * SWR Hooks for Support
@@ -20358,11 +20122,11 @@ declare const index_usePartialUpdateNewsletterUnsubscribePartialUpdate: typeof u
20358
20122
  declare const index_usePartialUpdateSupportTicketsMessagesPartialUpdate: typeof usePartialUpdateSupportTicketsMessagesPartialUpdate;
20359
20123
  declare const index_usePartialUpdateSupportTicketsPartialUpdate: typeof usePartialUpdateSupportTicketsPartialUpdate;
20360
20124
  declare const index_usePaymentsBalanceRetrieve: typeof usePaymentsBalanceRetrieve;
20361
- declare const index_usePaymentsCurrenciesRetrieve: typeof usePaymentsCurrenciesRetrieve;
20125
+ declare const index_usePaymentsCurrenciesList: typeof usePaymentsCurrenciesList;
20362
20126
  declare const index_usePaymentsPaymentsList: typeof usePaymentsPaymentsList;
20363
20127
  declare const index_usePaymentsPaymentsRetrieve: typeof usePaymentsPaymentsRetrieve;
20364
20128
  declare const index_usePaymentsPaymentsStatusRetrieve: typeof usePaymentsPaymentsStatusRetrieve;
20365
- declare const index_usePaymentsTransactionsRetrieve: typeof usePaymentsTransactionsRetrieve;
20129
+ declare const index_usePaymentsTransactionsList: typeof usePaymentsTransactionsList;
20366
20130
  declare const index_useSupportTicketsList: typeof useSupportTicketsList;
20367
20131
  declare const index_useSupportTicketsMessagesList: typeof useSupportTicketsMessagesList;
20368
20132
  declare const index_useSupportTicketsMessagesRetrieve: typeof useSupportTicketsMessagesRetrieve;
@@ -20384,7 +20148,7 @@ declare const index_useUpdateNewsletterUnsubscribeUpdate: typeof useUpdateNewsle
20384
20148
  declare const index_useUpdateSupportTicketsMessagesUpdate: typeof useUpdateSupportTicketsMessagesUpdate;
20385
20149
  declare const index_useUpdateSupportTicketsUpdate: typeof useUpdateSupportTicketsUpdate;
20386
20150
  declare namespace index {
20387
- export { index_useAccountsProfileRetrieve as useAccountsProfileRetrieve, index_useCreateAccountsOtpRequestCreate as useCreateAccountsOtpRequestCreate, index_useCreateAccountsOtpVerifyCreate as useCreateAccountsOtpVerifyCreate, index_useCreateAccountsProfileAvatarCreate as useCreateAccountsProfileAvatarCreate, index_useCreateAccountsTokenRefreshCreate as useCreateAccountsTokenRefreshCreate, index_useCreateKnowbaseAdminChatCreate as useCreateKnowbaseAdminChatCreate, index_useCreateKnowbaseAdminChatQueryCreate as useCreateKnowbaseAdminChatQueryCreate, index_useCreateKnowbaseAdminDocumentsCreate as useCreateKnowbaseAdminDocumentsCreate, index_useCreateKnowbaseAdminDocumentsReprocessCreate as useCreateKnowbaseAdminDocumentsReprocessCreate, index_useCreateKnowbaseAdminSessionsActivateCreate as useCreateKnowbaseAdminSessionsActivateCreate, index_useCreateKnowbaseAdminSessionsArchiveCreate as useCreateKnowbaseAdminSessionsArchiveCreate, index_useCreateKnowbaseAdminSessionsCreate as useCreateKnowbaseAdminSessionsCreate, index_useCreateKnowbaseSystemArchivesCreate as useCreateKnowbaseSystemArchivesCreate, index_useCreateKnowbaseSystemArchivesRevectorizeCreate as useCreateKnowbaseSystemArchivesRevectorizeCreate, index_useCreateKnowbaseSystemArchivesSearchCreate as useCreateKnowbaseSystemArchivesSearchCreate, index_useCreateKnowbaseSystemChunksCreate as useCreateKnowbaseSystemChunksCreate, index_useCreateKnowbaseSystemChunksVectorizeCreate as useCreateKnowbaseSystemChunksVectorizeCreate, index_useCreateKnowbaseSystemItemsCreate as useCreateKnowbaseSystemItemsCreate, index_useCreateLeadsCreate as useCreateLeadsCreate, index_useCreateLeadsSubmitCreate as useCreateLeadsSubmitCreate, index_useCreateNewsletterBulkCreate as useCreateNewsletterBulkCreate, index_useCreateNewsletterCampaignsCreate as useCreateNewsletterCampaignsCreate, index_useCreateNewsletterCampaignsSendCreate as useCreateNewsletterCampaignsSendCreate, index_useCreateNewsletterSubscribeCreate as useCreateNewsletterSubscribeCreate, index_useCreateNewsletterTestCreate as useCreateNewsletterTestCreate, index_useCreateNewsletterUnsubscribeCreate as useCreateNewsletterUnsubscribeCreate, index_useCreatePaymentsPaymentsConfirmCreate as useCreatePaymentsPaymentsConfirmCreate, index_useCreatePaymentsPaymentsCreateCreate as useCreatePaymentsPaymentsCreateCreate, index_useCreateSupportTicketsCreate as useCreateSupportTicketsCreate, index_useCreateSupportTicketsMessagesCreate as useCreateSupportTicketsMessagesCreate, index_useCreateTasksApiClearCreate as useCreateTasksApiClearCreate, index_useCreateTasksApiClearQueuesCreate as useCreateTasksApiClearQueuesCreate, index_useCreateTasksApiPurgeFailedCreate as useCreateTasksApiPurgeFailedCreate, index_useCreateTasksApiQueuesManageCreate as useCreateTasksApiQueuesManageCreate, index_useCreateTasksApiSimulateCreate as useCreateTasksApiSimulateCreate, index_useCreateTasksApiWorkersManageCreate as useCreateTasksApiWorkersManageCreate, index_useDeleteKnowbaseAdminChatDestroy as useDeleteKnowbaseAdminChatDestroy, index_useDeleteKnowbaseAdminDocumentsDestroy as useDeleteKnowbaseAdminDocumentsDestroy, index_useDeleteKnowbaseAdminSessionsDestroy as useDeleteKnowbaseAdminSessionsDestroy, index_useDeleteKnowbaseSystemArchivesDestroy as useDeleteKnowbaseSystemArchivesDestroy, index_useDeleteKnowbaseSystemChunksDestroy as useDeleteKnowbaseSystemChunksDestroy, index_useDeleteKnowbaseSystemItemsDestroy as useDeleteKnowbaseSystemItemsDestroy, index_useDeleteLeadsDestroy as useDeleteLeadsDestroy, index_useDeleteNewsletterCampaignsDestroy as useDeleteNewsletterCampaignsDestroy, index_useDeleteSupportTicketsDestroy as useDeleteSupportTicketsDestroy, index_useDeleteSupportTicketsMessagesDestroy as useDeleteSupportTicketsMessagesDestroy, index_useEndpointsDrfRetrieve as useEndpointsDrfRetrieve, index_useHealthDrfQuickRetrieve as useHealthDrfQuickRetrieve, index_useHealthDrfRetrieve as useHealthDrfRetrieve, index_useKnowbaseAdminChatHistoryRetrieve as useKnowbaseAdminChatHistoryRetrieve, index_useKnowbaseAdminChatList as useKnowbaseAdminChatList, index_useKnowbaseAdminChatRetrieve as useKnowbaseAdminChatRetrieve, index_useKnowbaseAdminDocumentsList as useKnowbaseAdminDocumentsList, index_useKnowbaseAdminDocumentsRetrieve as useKnowbaseAdminDocumentsRetrieve, index_useKnowbaseAdminDocumentsStatsRetrieve as useKnowbaseAdminDocumentsStatsRetrieve, index_useKnowbaseAdminDocumentsStatusRetrieve as useKnowbaseAdminDocumentsStatusRetrieve, index_useKnowbaseAdminSessionsList as useKnowbaseAdminSessionsList, index_useKnowbaseAdminSessionsRetrieve as useKnowbaseAdminSessionsRetrieve, index_useKnowbaseCategoriesList as useKnowbaseCategoriesList, index_useKnowbaseCategoriesRetrieve as useKnowbaseCategoriesRetrieve, index_useKnowbaseDocumentsList as useKnowbaseDocumentsList, index_useKnowbaseDocumentsRetrieve as useKnowbaseDocumentsRetrieve, index_useKnowbaseSystemArchivesFileTreeRetrieve as useKnowbaseSystemArchivesFileTreeRetrieve, index_useKnowbaseSystemArchivesItemsList as useKnowbaseSystemArchivesItemsList, index_useKnowbaseSystemArchivesList as useKnowbaseSystemArchivesList, index_useKnowbaseSystemArchivesRetrieve as useKnowbaseSystemArchivesRetrieve, index_useKnowbaseSystemArchivesStatisticsRetrieve as useKnowbaseSystemArchivesStatisticsRetrieve, index_useKnowbaseSystemArchivesVectorizationStatsRetrieve as useKnowbaseSystemArchivesVectorizationStatsRetrieve, index_useKnowbaseSystemChunksContextRetrieve as useKnowbaseSystemChunksContextRetrieve, index_useKnowbaseSystemChunksList as useKnowbaseSystemChunksList, index_useKnowbaseSystemChunksRetrieve as useKnowbaseSystemChunksRetrieve, index_useKnowbaseSystemItemsChunksList as useKnowbaseSystemItemsChunksList, index_useKnowbaseSystemItemsContentRetrieve as useKnowbaseSystemItemsContentRetrieve, index_useKnowbaseSystemItemsList as useKnowbaseSystemItemsList, index_useKnowbaseSystemItemsRetrieve as useKnowbaseSystemItemsRetrieve, index_useLeadsList as useLeadsList, index_useLeadsRetrieve as useLeadsRetrieve, index_useNewsletterCampaignsList as useNewsletterCampaignsList, index_useNewsletterCampaignsRetrieve as useNewsletterCampaignsRetrieve, index_useNewsletterLogsList as useNewsletterLogsList, index_useNewsletterNewslettersList as useNewsletterNewslettersList, index_useNewsletterNewslettersRetrieve as useNewsletterNewslettersRetrieve, index_useNewsletterSubscriptionsList as useNewsletterSubscriptionsList, index_usePartialUpdateAccountsProfilePartialPartialUpdate as usePartialUpdateAccountsProfilePartialPartialUpdate, index_usePartialUpdateAccountsProfilePartialUpdate as usePartialUpdateAccountsProfilePartialUpdate, index_usePartialUpdateAccountsProfileUpdatePartialUpdate as usePartialUpdateAccountsProfileUpdatePartialUpdate, index_usePartialUpdateKnowbaseAdminChatPartialUpdate as usePartialUpdateKnowbaseAdminChatPartialUpdate, index_usePartialUpdateKnowbaseAdminDocumentsPartialUpdate as usePartialUpdateKnowbaseAdminDocumentsPartialUpdate, index_usePartialUpdateKnowbaseAdminSessionsPartialUpdate as usePartialUpdateKnowbaseAdminSessionsPartialUpdate, index_usePartialUpdateKnowbaseSystemArchivesPartialUpdate as usePartialUpdateKnowbaseSystemArchivesPartialUpdate, index_usePartialUpdateKnowbaseSystemChunksPartialUpdate as usePartialUpdateKnowbaseSystemChunksPartialUpdate, index_usePartialUpdateKnowbaseSystemItemsPartialUpdate as usePartialUpdateKnowbaseSystemItemsPartialUpdate, index_usePartialUpdateLeadsPartialUpdate as usePartialUpdateLeadsPartialUpdate, index_usePartialUpdateNewsletterCampaignsPartialUpdate as usePartialUpdateNewsletterCampaignsPartialUpdate, index_usePartialUpdateNewsletterUnsubscribePartialUpdate as usePartialUpdateNewsletterUnsubscribePartialUpdate, index_usePartialUpdateSupportTicketsMessagesPartialUpdate as usePartialUpdateSupportTicketsMessagesPartialUpdate, index_usePartialUpdateSupportTicketsPartialUpdate as usePartialUpdateSupportTicketsPartialUpdate, index_usePaymentsBalanceRetrieve as usePaymentsBalanceRetrieve, index_usePaymentsCurrenciesRetrieve as usePaymentsCurrenciesRetrieve, index_usePaymentsPaymentsList as usePaymentsPaymentsList, index_usePaymentsPaymentsRetrieve as usePaymentsPaymentsRetrieve, index_usePaymentsPaymentsStatusRetrieve as usePaymentsPaymentsStatusRetrieve, index_usePaymentsTransactionsRetrieve as usePaymentsTransactionsRetrieve, index_useSupportTicketsList as useSupportTicketsList, index_useSupportTicketsMessagesList as useSupportTicketsMessagesList, index_useSupportTicketsMessagesRetrieve as useSupportTicketsMessagesRetrieve, index_useSupportTicketsRetrieve as useSupportTicketsRetrieve, index_useTasksApiQueuesStatusRetrieve as useTasksApiQueuesStatusRetrieve, index_useTasksApiTasksListRetrieve as useTasksApiTasksListRetrieve, index_useTasksApiTasksStatsRetrieve as useTasksApiTasksStatsRetrieve, index_useTasksApiWorkersListRetrieve as useTasksApiWorkersListRetrieve, index_useUpdateAccountsProfileUpdateUpdate as useUpdateAccountsProfileUpdateUpdate, index_useUpdateKnowbaseAdminChatUpdate as useUpdateKnowbaseAdminChatUpdate, index_useUpdateKnowbaseAdminDocumentsUpdate as useUpdateKnowbaseAdminDocumentsUpdate, index_useUpdateKnowbaseAdminSessionsUpdate as useUpdateKnowbaseAdminSessionsUpdate, index_useUpdateKnowbaseSystemArchivesUpdate as useUpdateKnowbaseSystemArchivesUpdate, index_useUpdateKnowbaseSystemChunksUpdate as useUpdateKnowbaseSystemChunksUpdate, index_useUpdateKnowbaseSystemItemsUpdate as useUpdateKnowbaseSystemItemsUpdate, index_useUpdateLeadsUpdate as useUpdateLeadsUpdate, index_useUpdateNewsletterCampaignsUpdate as useUpdateNewsletterCampaignsUpdate, index_useUpdateNewsletterUnsubscribeUpdate as useUpdateNewsletterUnsubscribeUpdate, index_useUpdateSupportTicketsMessagesUpdate as useUpdateSupportTicketsMessagesUpdate, index_useUpdateSupportTicketsUpdate as useUpdateSupportTicketsUpdate };
20151
+ export { index_useAccountsProfileRetrieve as useAccountsProfileRetrieve, index_useCreateAccountsOtpRequestCreate as useCreateAccountsOtpRequestCreate, index_useCreateAccountsOtpVerifyCreate as useCreateAccountsOtpVerifyCreate, index_useCreateAccountsProfileAvatarCreate as useCreateAccountsProfileAvatarCreate, index_useCreateAccountsTokenRefreshCreate as useCreateAccountsTokenRefreshCreate, index_useCreateKnowbaseAdminChatCreate as useCreateKnowbaseAdminChatCreate, index_useCreateKnowbaseAdminChatQueryCreate as useCreateKnowbaseAdminChatQueryCreate, index_useCreateKnowbaseAdminDocumentsCreate as useCreateKnowbaseAdminDocumentsCreate, index_useCreateKnowbaseAdminDocumentsReprocessCreate as useCreateKnowbaseAdminDocumentsReprocessCreate, index_useCreateKnowbaseAdminSessionsActivateCreate as useCreateKnowbaseAdminSessionsActivateCreate, index_useCreateKnowbaseAdminSessionsArchiveCreate as useCreateKnowbaseAdminSessionsArchiveCreate, index_useCreateKnowbaseAdminSessionsCreate as useCreateKnowbaseAdminSessionsCreate, index_useCreateKnowbaseSystemArchivesCreate as useCreateKnowbaseSystemArchivesCreate, index_useCreateKnowbaseSystemArchivesRevectorizeCreate as useCreateKnowbaseSystemArchivesRevectorizeCreate, index_useCreateKnowbaseSystemArchivesSearchCreate as useCreateKnowbaseSystemArchivesSearchCreate, index_useCreateKnowbaseSystemChunksCreate as useCreateKnowbaseSystemChunksCreate, index_useCreateKnowbaseSystemChunksVectorizeCreate as useCreateKnowbaseSystemChunksVectorizeCreate, index_useCreateKnowbaseSystemItemsCreate as useCreateKnowbaseSystemItemsCreate, index_useCreateLeadsCreate as useCreateLeadsCreate, index_useCreateLeadsSubmitCreate as useCreateLeadsSubmitCreate, index_useCreateNewsletterBulkCreate as useCreateNewsletterBulkCreate, index_useCreateNewsletterCampaignsCreate as useCreateNewsletterCampaignsCreate, index_useCreateNewsletterCampaignsSendCreate as useCreateNewsletterCampaignsSendCreate, index_useCreateNewsletterSubscribeCreate as useCreateNewsletterSubscribeCreate, index_useCreateNewsletterTestCreate as useCreateNewsletterTestCreate, index_useCreateNewsletterUnsubscribeCreate as useCreateNewsletterUnsubscribeCreate, index_useCreatePaymentsPaymentsConfirmCreate as useCreatePaymentsPaymentsConfirmCreate, index_useCreatePaymentsPaymentsCreateCreate as useCreatePaymentsPaymentsCreateCreate, index_useCreateSupportTicketsCreate as useCreateSupportTicketsCreate, index_useCreateSupportTicketsMessagesCreate as useCreateSupportTicketsMessagesCreate, index_useCreateTasksApiClearCreate as useCreateTasksApiClearCreate, index_useCreateTasksApiClearQueuesCreate as useCreateTasksApiClearQueuesCreate, index_useCreateTasksApiPurgeFailedCreate as useCreateTasksApiPurgeFailedCreate, index_useCreateTasksApiQueuesManageCreate as useCreateTasksApiQueuesManageCreate, index_useCreateTasksApiSimulateCreate as useCreateTasksApiSimulateCreate, index_useCreateTasksApiWorkersManageCreate as useCreateTasksApiWorkersManageCreate, index_useDeleteKnowbaseAdminChatDestroy as useDeleteKnowbaseAdminChatDestroy, index_useDeleteKnowbaseAdminDocumentsDestroy as useDeleteKnowbaseAdminDocumentsDestroy, index_useDeleteKnowbaseAdminSessionsDestroy as useDeleteKnowbaseAdminSessionsDestroy, index_useDeleteKnowbaseSystemArchivesDestroy as useDeleteKnowbaseSystemArchivesDestroy, index_useDeleteKnowbaseSystemChunksDestroy as useDeleteKnowbaseSystemChunksDestroy, index_useDeleteKnowbaseSystemItemsDestroy as useDeleteKnowbaseSystemItemsDestroy, index_useDeleteLeadsDestroy as useDeleteLeadsDestroy, index_useDeleteNewsletterCampaignsDestroy as useDeleteNewsletterCampaignsDestroy, index_useDeleteSupportTicketsDestroy as useDeleteSupportTicketsDestroy, index_useDeleteSupportTicketsMessagesDestroy as useDeleteSupportTicketsMessagesDestroy, index_useEndpointsDrfRetrieve as useEndpointsDrfRetrieve, index_useHealthDrfQuickRetrieve as useHealthDrfQuickRetrieve, index_useHealthDrfRetrieve as useHealthDrfRetrieve, index_useKnowbaseAdminChatHistoryRetrieve as useKnowbaseAdminChatHistoryRetrieve, index_useKnowbaseAdminChatList as useKnowbaseAdminChatList, index_useKnowbaseAdminChatRetrieve as useKnowbaseAdminChatRetrieve, index_useKnowbaseAdminDocumentsList as useKnowbaseAdminDocumentsList, index_useKnowbaseAdminDocumentsRetrieve as useKnowbaseAdminDocumentsRetrieve, index_useKnowbaseAdminDocumentsStatsRetrieve as useKnowbaseAdminDocumentsStatsRetrieve, index_useKnowbaseAdminDocumentsStatusRetrieve as useKnowbaseAdminDocumentsStatusRetrieve, index_useKnowbaseAdminSessionsList as useKnowbaseAdminSessionsList, index_useKnowbaseAdminSessionsRetrieve as useKnowbaseAdminSessionsRetrieve, index_useKnowbaseCategoriesList as useKnowbaseCategoriesList, index_useKnowbaseCategoriesRetrieve as useKnowbaseCategoriesRetrieve, index_useKnowbaseDocumentsList as useKnowbaseDocumentsList, index_useKnowbaseDocumentsRetrieve as useKnowbaseDocumentsRetrieve, index_useKnowbaseSystemArchivesFileTreeRetrieve as useKnowbaseSystemArchivesFileTreeRetrieve, index_useKnowbaseSystemArchivesItemsList as useKnowbaseSystemArchivesItemsList, index_useKnowbaseSystemArchivesList as useKnowbaseSystemArchivesList, index_useKnowbaseSystemArchivesRetrieve as useKnowbaseSystemArchivesRetrieve, index_useKnowbaseSystemArchivesStatisticsRetrieve as useKnowbaseSystemArchivesStatisticsRetrieve, index_useKnowbaseSystemArchivesVectorizationStatsRetrieve as useKnowbaseSystemArchivesVectorizationStatsRetrieve, index_useKnowbaseSystemChunksContextRetrieve as useKnowbaseSystemChunksContextRetrieve, index_useKnowbaseSystemChunksList as useKnowbaseSystemChunksList, index_useKnowbaseSystemChunksRetrieve as useKnowbaseSystemChunksRetrieve, index_useKnowbaseSystemItemsChunksList as useKnowbaseSystemItemsChunksList, index_useKnowbaseSystemItemsContentRetrieve as useKnowbaseSystemItemsContentRetrieve, index_useKnowbaseSystemItemsList as useKnowbaseSystemItemsList, index_useKnowbaseSystemItemsRetrieve as useKnowbaseSystemItemsRetrieve, index_useLeadsList as useLeadsList, index_useLeadsRetrieve as useLeadsRetrieve, index_useNewsletterCampaignsList as useNewsletterCampaignsList, index_useNewsletterCampaignsRetrieve as useNewsletterCampaignsRetrieve, index_useNewsletterLogsList as useNewsletterLogsList, index_useNewsletterNewslettersList as useNewsletterNewslettersList, index_useNewsletterNewslettersRetrieve as useNewsletterNewslettersRetrieve, index_useNewsletterSubscriptionsList as useNewsletterSubscriptionsList, index_usePartialUpdateAccountsProfilePartialPartialUpdate as usePartialUpdateAccountsProfilePartialPartialUpdate, index_usePartialUpdateAccountsProfilePartialUpdate as usePartialUpdateAccountsProfilePartialUpdate, index_usePartialUpdateAccountsProfileUpdatePartialUpdate as usePartialUpdateAccountsProfileUpdatePartialUpdate, index_usePartialUpdateKnowbaseAdminChatPartialUpdate as usePartialUpdateKnowbaseAdminChatPartialUpdate, index_usePartialUpdateKnowbaseAdminDocumentsPartialUpdate as usePartialUpdateKnowbaseAdminDocumentsPartialUpdate, index_usePartialUpdateKnowbaseAdminSessionsPartialUpdate as usePartialUpdateKnowbaseAdminSessionsPartialUpdate, index_usePartialUpdateKnowbaseSystemArchivesPartialUpdate as usePartialUpdateKnowbaseSystemArchivesPartialUpdate, index_usePartialUpdateKnowbaseSystemChunksPartialUpdate as usePartialUpdateKnowbaseSystemChunksPartialUpdate, index_usePartialUpdateKnowbaseSystemItemsPartialUpdate as usePartialUpdateKnowbaseSystemItemsPartialUpdate, index_usePartialUpdateLeadsPartialUpdate as usePartialUpdateLeadsPartialUpdate, index_usePartialUpdateNewsletterCampaignsPartialUpdate as usePartialUpdateNewsletterCampaignsPartialUpdate, index_usePartialUpdateNewsletterUnsubscribePartialUpdate as usePartialUpdateNewsletterUnsubscribePartialUpdate, index_usePartialUpdateSupportTicketsMessagesPartialUpdate as usePartialUpdateSupportTicketsMessagesPartialUpdate, index_usePartialUpdateSupportTicketsPartialUpdate as usePartialUpdateSupportTicketsPartialUpdate, index_usePaymentsBalanceRetrieve as usePaymentsBalanceRetrieve, index_usePaymentsCurrenciesList as usePaymentsCurrenciesList, index_usePaymentsPaymentsList as usePaymentsPaymentsList, index_usePaymentsPaymentsRetrieve as usePaymentsPaymentsRetrieve, index_usePaymentsPaymentsStatusRetrieve as usePaymentsPaymentsStatusRetrieve, index_usePaymentsTransactionsList as usePaymentsTransactionsList, index_useSupportTicketsList as useSupportTicketsList, index_useSupportTicketsMessagesList as useSupportTicketsMessagesList, index_useSupportTicketsMessagesRetrieve as useSupportTicketsMessagesRetrieve, index_useSupportTicketsRetrieve as useSupportTicketsRetrieve, index_useTasksApiQueuesStatusRetrieve as useTasksApiQueuesStatusRetrieve, index_useTasksApiTasksListRetrieve as useTasksApiTasksListRetrieve, index_useTasksApiTasksStatsRetrieve as useTasksApiTasksStatsRetrieve, index_useTasksApiWorkersListRetrieve as useTasksApiWorkersListRetrieve, index_useUpdateAccountsProfileUpdateUpdate as useUpdateAccountsProfileUpdateUpdate, index_useUpdateKnowbaseAdminChatUpdate as useUpdateKnowbaseAdminChatUpdate, index_useUpdateKnowbaseAdminDocumentsUpdate as useUpdateKnowbaseAdminDocumentsUpdate, index_useUpdateKnowbaseAdminSessionsUpdate as useUpdateKnowbaseAdminSessionsUpdate, index_useUpdateKnowbaseSystemArchivesUpdate as useUpdateKnowbaseSystemArchivesUpdate, index_useUpdateKnowbaseSystemChunksUpdate as useUpdateKnowbaseSystemChunksUpdate, index_useUpdateKnowbaseSystemItemsUpdate as useUpdateKnowbaseSystemItemsUpdate, index_useUpdateLeadsUpdate as useUpdateLeadsUpdate, index_useUpdateNewsletterCampaignsUpdate as useUpdateNewsletterCampaignsUpdate, index_useUpdateNewsletterUnsubscribeUpdate as useUpdateNewsletterUnsubscribeUpdate, index_useUpdateSupportTicketsMessagesUpdate as useUpdateSupportTicketsMessagesUpdate, index_useUpdateSupportTicketsUpdate as useUpdateSupportTicketsUpdate };
20388
20152
  }
20389
20153
 
20390
20154
  /**
@@ -20446,7 +20210,7 @@ declare class NetworkError extends Error {
20446
20210
  }
20447
20211
 
20448
20212
  /**
20449
- * Django CFG Sample API - API Client with JWT Management
20213
+ * Django CFG API - API Client with JWT Management
20450
20214
  *
20451
20215
  * Usage:
20452
20216
  * ```typescript
@@ -21580,4 +21344,4 @@ declare function KnowbaseSessionsProvider({ children }: {
21580
21344
  }): react_jsx_runtime.JSX.Element;
21581
21345
  declare function useKnowbaseSessionsContext(): KnowbaseSessionsContextValue;
21582
21346
 
21583
- export { API, APIClient, APIError, APILogger, type APIOptions, type AccountsContextValue, AccountsProvider, type ApiKeysContextValue, ApiKeysProvider, ApiKeysService, type ArchiveProcessingResult$1 as ArchiveProcessingResult, type ArchiveStatistics$1 as ArchiveStatistics, AuthService, type BalancesContextValue, BalancesProvider, BaseClient, BulkEmailService, CampaignsService, models$8 as CfgAccountsTypes, models$h as CfgAuthTypes, models$g as CfgBulkEmailTypes, models$f as CfgCampaignsTypes, models$7 as CfgEndpointsTypes, models$6 as CfgHealthTypes, models$5 as CfgKnowbaseTypes, models$e as CfgLeadSubmissionTypes, models$4 as CfgLeadsTypes, models$d as CfgLogsTypes, models$3 as CfgNewsletterTypes, models$c as CfgNewslettersTypes, models$2 as CfgPaymentsTypes, models$b as CfgSubscriptionsTypes, models$1 as CfgSupportTypes, models as CfgTasksTypes, models$a as CfgTestingTypes, models$9 as CfgUserProfileTypes, type ChatHistory$1 as ChatHistory, type ChatMessage$1 as ChatMessage, type ChatQueryRequest$1 as ChatQueryRequest, type ChatResponse$1 as ChatResponse, type ChatResponseRequest$1 as ChatResponseRequest, type ChatSession$1 as ChatSession, type ChatSessionCreateRequest$1 as ChatSessionCreateRequest, type ChatSessionRequest$1 as ChatSessionRequest, type ChatSource$1 as ChatSource, CookieStorageAdapter, type CurrenciesContextValue, CurrenciesProvider, DEFAULT_RETRY_CONFIG, type Document$1 as Document, type DocumentArchive$1 as DocumentArchive, type DocumentArchiveDetail$1 as DocumentArchiveDetail, type DocumentCreateRequest$1 as DocumentCreateRequest, type DocumentProcessingStatus$1 as DocumentProcessingStatus, type DocumentRequest$1 as DocumentRequest, type DocumentStats$1 as DocumentStats, enums as Enums, type ErrorLog, type FailedAttemptInfo, FetchAdapter, index$1 as Fetchers, index as Hooks, type HttpClientAdapter, type HttpRequest, type HttpResponse, type KnowbaseChatContextValue, KnowbaseChatProvider, type KnowbaseDocumentsContextValue, KnowbaseDocumentsProvider, type KnowbaseSessionsContextValue, KnowbaseSessionsProvider, type LeadsContextValue, LeadsProvider, LeadsService, LocalStorageAdapter, type LoggerConfig, MemoryStorageAdapter, type Message, type MessageCreateRequest, type MessageRequest, NetworkError, type NewsletterContextValue, NewsletterProvider, NewsletterService, NewslettersListService, OPENAPI_SCHEMA, type OTPRequestResponse, type OTPVerifyResponse, type OverviewContextValue, type PaginatedPaymentListList as OverviewPaginatedPaymentListList, type PaymentList as OverviewPaymentList, OverviewProvider, type PaginatedPaymentListList, type PatchedChatResponseRequest$1 as PatchedChatResponseRequest, type PatchedChatSessionRequest$1 as PatchedChatSessionRequest, type PatchedDocumentArchiveRequest$1 as PatchedDocumentArchiveRequest, type PatchedDocumentRequest$1 as PatchedDocumentRequest, type PatchedMessageRequest, type PatchedTicketRequest, type PatchedUserProfileUpdateRequest, PatchedUserProfileUpdateRequestSchema, PaymentDashboardService, type PaymentDetail, type PaymentList, type PaymentsContextValue, PaymentsProvider, PaymentsService, REFRESH_TOKEN_KEY, type RequestLog, type ResponseLog, type RetryConfig, type RootPaymentsContextValue, RootPaymentsProvider, index$2 as Schemas, type StorageAdapter, SubscriptionsService, type SupportContextValue, SupportProvider, SupportService, TOKEN_KEY, TasksService, type Ticket, type TicketRequest, type User, WebhooksService, api, clearAPITokens, configureAPI, createAccountsOtpRequestCreate, createAccountsOtpVerifyCreate, createAccountsProfileAvatarCreate, createAccountsTokenRefreshCreate, createKnowbaseAdminChatCreate, createKnowbaseAdminChatQueryCreate, createKnowbaseAdminDocumentsCreate, createKnowbaseAdminDocumentsReprocessCreate, createKnowbaseAdminSessionsActivateCreate, createKnowbaseAdminSessionsArchiveCreate, createKnowbaseAdminSessionsCreate, createKnowbaseSystemArchivesCreate, createKnowbaseSystemArchivesRevectorizeCreate, createKnowbaseSystemArchivesSearchCreate, createKnowbaseSystemChunksCreate, createKnowbaseSystemChunksVectorizeCreate, createKnowbaseSystemItemsCreate, createLeadsCreate, createLeadsSubmitCreate, createNewsletterBulkCreate, createNewsletterCampaignsCreate, createNewsletterCampaignsSendCreate, createNewsletterSubscribeCreate, createNewsletterTestCreate, createNewsletterUnsubscribeCreate, createPaymentsPaymentsConfirmCreate, createPaymentsPaymentsCreateCreate, createSupportTicketsCreate, createSupportTicketsMessagesCreate, createTasksApiClearCreate, createTasksApiClearQueuesCreate, createTasksApiPurgeFailedCreate, createTasksApiQueuesManageCreate, createTasksApiSimulateCreate, createTasksApiWorkersManageCreate, api as default, deleteKnowbaseAdminChatDestroy, deleteKnowbaseAdminDocumentsDestroy, deleteKnowbaseAdminSessionsDestroy, deleteKnowbaseSystemArchivesDestroy, deleteKnowbaseSystemChunksDestroy, deleteKnowbaseSystemItemsDestroy, deleteLeadsDestroy, deleteNewsletterCampaignsDestroy, deleteSupportTicketsDestroy, deleteSupportTicketsMessagesDestroy, getAPIInstance, getAccountsProfileRetrieve, getEndpointsDrfRetrieve, getHealthDrfQuickRetrieve, getHealthDrfRetrieve, getKnowbaseAdminChatHistoryRetrieve, getKnowbaseAdminChatList, getKnowbaseAdminChatRetrieve, getKnowbaseAdminDocumentsList, getKnowbaseAdminDocumentsRetrieve, getKnowbaseAdminDocumentsStatsRetrieve, getKnowbaseAdminDocumentsStatusRetrieve, getKnowbaseAdminSessionsList, getKnowbaseAdminSessionsRetrieve, getKnowbaseCategoriesList, getKnowbaseCategoriesRetrieve, getKnowbaseDocumentsList, getKnowbaseDocumentsRetrieve, getKnowbaseSystemArchivesFileTreeRetrieve, getKnowbaseSystemArchivesItemsList, getKnowbaseSystemArchivesList, getKnowbaseSystemArchivesRetrieve, getKnowbaseSystemArchivesStatisticsRetrieve, getKnowbaseSystemArchivesVectorizationStatsRetrieve, getKnowbaseSystemChunksContextRetrieve, getKnowbaseSystemChunksList, getKnowbaseSystemChunksRetrieve, getKnowbaseSystemItemsChunksList, getKnowbaseSystemItemsContentRetrieve, getKnowbaseSystemItemsList, getKnowbaseSystemItemsRetrieve, getLeadsList, getLeadsRetrieve, getNewsletterCampaignsList, getNewsletterCampaignsRetrieve, getNewsletterLogsList, getNewsletterNewslettersList, getNewsletterNewslettersRetrieve, getNewsletterSubscriptionsList, getPaymentsBalanceRetrieve, getPaymentsCurrenciesRetrieve, getPaymentsPaymentsList, getPaymentsPaymentsRetrieve, getPaymentsPaymentsStatusRetrieve, getPaymentsTransactionsRetrieve, getSupportTicketsList, getSupportTicketsMessagesList, getSupportTicketsMessagesRetrieve, getSupportTicketsRetrieve, getTasksApiQueuesStatusRetrieve, getTasksApiTasksListRetrieve, getTasksApiTasksStatsRetrieve, getTasksApiWorkersListRetrieve, isAPIConfigured, partialUpdateAccountsProfilePartialPartialUpdate, partialUpdateAccountsProfilePartialUpdate, partialUpdateAccountsProfileUpdatePartialUpdate, partialUpdateKnowbaseAdminChatPartialUpdate, partialUpdateKnowbaseAdminDocumentsPartialUpdate, partialUpdateKnowbaseAdminSessionsPartialUpdate, partialUpdateKnowbaseSystemArchivesPartialUpdate, partialUpdateKnowbaseSystemChunksPartialUpdate, partialUpdateKnowbaseSystemItemsPartialUpdate, partialUpdateLeadsPartialUpdate, partialUpdateNewsletterCampaignsPartialUpdate, partialUpdateNewsletterUnsubscribePartialUpdate, partialUpdateSupportTicketsMessagesPartialUpdate, partialUpdateSupportTicketsPartialUpdate, reconfigureAPI, resetAPI, shouldRetry, updateAccountsProfileUpdateUpdate, updateKnowbaseAdminChatUpdate, updateKnowbaseAdminDocumentsUpdate, updateKnowbaseAdminSessionsUpdate, updateKnowbaseSystemArchivesUpdate, updateKnowbaseSystemChunksUpdate, updateKnowbaseSystemItemsUpdate, updateLeadsUpdate, updateNewsletterCampaignsUpdate, updateNewsletterUnsubscribeUpdate, updateSupportTicketsMessagesUpdate, updateSupportTicketsUpdate, useAccountsContext, useApiKeysContext, useBalancesContext, useCurrenciesContext, useKnowbaseChatContext, useKnowbaseDocumentsContext, useKnowbaseSessionsContext, useLeadsContext, useNewsletterContext, useOverviewContext, usePaymentsContext, useRootPaymentsContext, useSupportContext, withRetry };
21347
+ export { API, APIClient, APIError, APILogger, type APIOptions, type AccountsContextValue, AccountsProvider, type ApiKeysContextValue, ApiKeysProvider, ApiKeysService, type ArchiveProcessingResult$1 as ArchiveProcessingResult, type ArchiveStatistics$1 as ArchiveStatistics, AuthService, type BalancesContextValue, BalancesProvider, BaseClient, BulkEmailService, CampaignsService, models$8 as CfgAccountsTypes, models$h as CfgAuthTypes, models$g as CfgBulkEmailTypes, models$f as CfgCampaignsTypes, models$7 as CfgEndpointsTypes, models$6 as CfgHealthTypes, models$5 as CfgKnowbaseTypes, models$e as CfgLeadSubmissionTypes, models$4 as CfgLeadsTypes, models$d as CfgLogsTypes, models$3 as CfgNewsletterTypes, models$c as CfgNewslettersTypes, models$2 as CfgPaymentsTypes, models$b as CfgSubscriptionsTypes, models$1 as CfgSupportTypes, models as CfgTasksTypes, models$a as CfgTestingTypes, models$9 as CfgUserProfileTypes, type ChatHistory$1 as ChatHistory, type ChatMessage$1 as ChatMessage, type ChatQueryRequest$1 as ChatQueryRequest, type ChatResponse$1 as ChatResponse, type ChatResponseRequest$1 as ChatResponseRequest, type ChatSession$1 as ChatSession, type ChatSessionCreateRequest$1 as ChatSessionCreateRequest, type ChatSessionRequest$1 as ChatSessionRequest, type ChatSource$1 as ChatSource, CookieStorageAdapter, type CurrenciesContextValue, CurrenciesProvider, DEFAULT_RETRY_CONFIG, type Document$1 as Document, type DocumentArchive$1 as DocumentArchive, type DocumentArchiveDetail$1 as DocumentArchiveDetail, type DocumentCreateRequest$1 as DocumentCreateRequest, type DocumentProcessingStatus$1 as DocumentProcessingStatus, type DocumentRequest$1 as DocumentRequest, type DocumentStats$1 as DocumentStats, enums as Enums, type ErrorLog, type FailedAttemptInfo, FetchAdapter, index$1 as Fetchers, index as Hooks, type HttpClientAdapter, type HttpRequest, type HttpResponse, type KnowbaseChatContextValue, KnowbaseChatProvider, type KnowbaseDocumentsContextValue, KnowbaseDocumentsProvider, type KnowbaseSessionsContextValue, KnowbaseSessionsProvider, type LeadsContextValue, LeadsProvider, LeadsService, LocalStorageAdapter, type LoggerConfig, MemoryStorageAdapter, type Message, type MessageCreateRequest, type MessageRequest, NetworkError, type NewsletterContextValue, NewsletterProvider, NewsletterService, NewslettersListService, OPENAPI_SCHEMA, type OTPRequestResponse, type OTPVerifyResponse, type OverviewContextValue, type PaginatedPaymentListList as OverviewPaginatedPaymentListList, type PaymentList as OverviewPaymentList, OverviewProvider, type PaginatedPaymentListList, type PatchedChatResponseRequest$1 as PatchedChatResponseRequest, type PatchedChatSessionRequest$1 as PatchedChatSessionRequest, type PatchedDocumentArchiveRequest$1 as PatchedDocumentArchiveRequest, type PatchedDocumentRequest$1 as PatchedDocumentRequest, type PatchedMessageRequest, type PatchedTicketRequest, type PatchedUserProfileUpdateRequest, PatchedUserProfileUpdateRequestSchema, PaymentDashboardService, type PaymentDetail, type PaymentList, type PaymentsContextValue, PaymentsProvider, PaymentsService, REFRESH_TOKEN_KEY, type RequestLog, type ResponseLog, type RetryConfig, type RootPaymentsContextValue, RootPaymentsProvider, index$2 as Schemas, type StorageAdapter, SubscriptionsService, type SupportContextValue, SupportProvider, SupportService, TOKEN_KEY, TasksService, type Ticket, type TicketRequest, type User, WebhooksService, api, clearAPITokens, configureAPI, createAccountsOtpRequestCreate, createAccountsOtpVerifyCreate, createAccountsProfileAvatarCreate, createAccountsTokenRefreshCreate, createKnowbaseAdminChatCreate, createKnowbaseAdminChatQueryCreate, createKnowbaseAdminDocumentsCreate, createKnowbaseAdminDocumentsReprocessCreate, createKnowbaseAdminSessionsActivateCreate, createKnowbaseAdminSessionsArchiveCreate, createKnowbaseAdminSessionsCreate, createKnowbaseSystemArchivesCreate, createKnowbaseSystemArchivesRevectorizeCreate, createKnowbaseSystemArchivesSearchCreate, createKnowbaseSystemChunksCreate, createKnowbaseSystemChunksVectorizeCreate, createKnowbaseSystemItemsCreate, createLeadsCreate, createLeadsSubmitCreate, createNewsletterBulkCreate, createNewsletterCampaignsCreate, createNewsletterCampaignsSendCreate, createNewsletterSubscribeCreate, createNewsletterTestCreate, createNewsletterUnsubscribeCreate, createPaymentsPaymentsConfirmCreate, createPaymentsPaymentsCreateCreate, createSupportTicketsCreate, createSupportTicketsMessagesCreate, createTasksApiClearCreate, createTasksApiClearQueuesCreate, createTasksApiPurgeFailedCreate, createTasksApiQueuesManageCreate, createTasksApiSimulateCreate, createTasksApiWorkersManageCreate, api as default, deleteKnowbaseAdminChatDestroy, deleteKnowbaseAdminDocumentsDestroy, deleteKnowbaseAdminSessionsDestroy, deleteKnowbaseSystemArchivesDestroy, deleteKnowbaseSystemChunksDestroy, deleteKnowbaseSystemItemsDestroy, deleteLeadsDestroy, deleteNewsletterCampaignsDestroy, deleteSupportTicketsDestroy, deleteSupportTicketsMessagesDestroy, getAPIInstance, getAccountsProfileRetrieve, getEndpointsDrfRetrieve, getHealthDrfQuickRetrieve, getHealthDrfRetrieve, getKnowbaseAdminChatHistoryRetrieve, getKnowbaseAdminChatList, getKnowbaseAdminChatRetrieve, getKnowbaseAdminDocumentsList, getKnowbaseAdminDocumentsRetrieve, getKnowbaseAdminDocumentsStatsRetrieve, getKnowbaseAdminDocumentsStatusRetrieve, getKnowbaseAdminSessionsList, getKnowbaseAdminSessionsRetrieve, getKnowbaseCategoriesList, getKnowbaseCategoriesRetrieve, getKnowbaseDocumentsList, getKnowbaseDocumentsRetrieve, getKnowbaseSystemArchivesFileTreeRetrieve, getKnowbaseSystemArchivesItemsList, getKnowbaseSystemArchivesList, getKnowbaseSystemArchivesRetrieve, getKnowbaseSystemArchivesStatisticsRetrieve, getKnowbaseSystemArchivesVectorizationStatsRetrieve, getKnowbaseSystemChunksContextRetrieve, getKnowbaseSystemChunksList, getKnowbaseSystemChunksRetrieve, getKnowbaseSystemItemsChunksList, getKnowbaseSystemItemsContentRetrieve, getKnowbaseSystemItemsList, getKnowbaseSystemItemsRetrieve, getLeadsList, getLeadsRetrieve, getNewsletterCampaignsList, getNewsletterCampaignsRetrieve, getNewsletterLogsList, getNewsletterNewslettersList, getNewsletterNewslettersRetrieve, getNewsletterSubscriptionsList, getPaymentsBalanceRetrieve, getPaymentsCurrenciesList, getPaymentsPaymentsList, getPaymentsPaymentsRetrieve, getPaymentsPaymentsStatusRetrieve, getPaymentsTransactionsList, getSupportTicketsList, getSupportTicketsMessagesList, getSupportTicketsMessagesRetrieve, getSupportTicketsRetrieve, getTasksApiQueuesStatusRetrieve, getTasksApiTasksListRetrieve, getTasksApiTasksStatsRetrieve, getTasksApiWorkersListRetrieve, isAPIConfigured, partialUpdateAccountsProfilePartialPartialUpdate, partialUpdateAccountsProfilePartialUpdate, partialUpdateAccountsProfileUpdatePartialUpdate, partialUpdateKnowbaseAdminChatPartialUpdate, partialUpdateKnowbaseAdminDocumentsPartialUpdate, partialUpdateKnowbaseAdminSessionsPartialUpdate, partialUpdateKnowbaseSystemArchivesPartialUpdate, partialUpdateKnowbaseSystemChunksPartialUpdate, partialUpdateKnowbaseSystemItemsPartialUpdate, partialUpdateLeadsPartialUpdate, partialUpdateNewsletterCampaignsPartialUpdate, partialUpdateNewsletterUnsubscribePartialUpdate, partialUpdateSupportTicketsMessagesPartialUpdate, partialUpdateSupportTicketsPartialUpdate, reconfigureAPI, resetAPI, shouldRetry, updateAccountsProfileUpdateUpdate, updateKnowbaseAdminChatUpdate, updateKnowbaseAdminDocumentsUpdate, updateKnowbaseAdminSessionsUpdate, updateKnowbaseSystemArchivesUpdate, updateKnowbaseSystemChunksUpdate, updateKnowbaseSystemItemsUpdate, updateLeadsUpdate, updateNewsletterCampaignsUpdate, updateNewsletterUnsubscribeUpdate, updateSupportTicketsMessagesUpdate, updateSupportTicketsUpdate, useAccountsContext, useApiKeysContext, useBalancesContext, useCurrenciesContext, useKnowbaseChatContext, useKnowbaseDocumentsContext, useKnowbaseSessionsContext, useLeadsContext, useNewsletterContext, useOverviewContext, usePaymentsContext, useRootPaymentsContext, useSupportContext, withRetry };