@djangocfg/api 1.0.6 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/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
@@ -4494,6 +4538,45 @@ declare const OPENAPI_SCHEMA: {
4494
4538
  required: string[];
4495
4539
  type: string;
4496
4540
  };
4541
+ Balance: {
4542
+ description: string;
4543
+ properties: {
4544
+ balance_display: {
4545
+ readOnly: boolean;
4546
+ type: string;
4547
+ };
4548
+ balance_usd: {
4549
+ description: string;
4550
+ format: string;
4551
+ pattern: string;
4552
+ readOnly: boolean;
4553
+ type: string;
4554
+ };
4555
+ last_transaction_at: {
4556
+ description: string;
4557
+ format: string;
4558
+ nullable: boolean;
4559
+ readOnly: boolean;
4560
+ type: string;
4561
+ };
4562
+ total_deposited: {
4563
+ description: string;
4564
+ format: string;
4565
+ pattern: string;
4566
+ readOnly: boolean;
4567
+ type: string;
4568
+ };
4569
+ total_withdrawn: {
4570
+ description: string;
4571
+ format: string;
4572
+ pattern: string;
4573
+ readOnly: boolean;
4574
+ type: string;
4575
+ };
4576
+ };
4577
+ required: string[];
4578
+ type: string;
4579
+ };
4497
4580
  BulkEmailRequest: {
4498
4581
  description: string;
4499
4582
  properties: {
@@ -4924,6 +5007,65 @@ declare const OPENAPI_SCHEMA: {
4924
5007
  required: string[];
4925
5008
  type: string;
4926
5009
  };
5010
+ Currency: {
5011
+ description: string;
5012
+ properties: {
5013
+ code: {
5014
+ description: string;
5015
+ readOnly: boolean;
5016
+ type: string;
5017
+ };
5018
+ decimal_places: {
5019
+ description: string;
5020
+ readOnly: boolean;
5021
+ type: string;
5022
+ };
5023
+ display_name: {
5024
+ readOnly: boolean;
5025
+ type: string;
5026
+ };
5027
+ is_active: {
5028
+ description: string;
5029
+ readOnly: boolean;
5030
+ type: string;
5031
+ };
5032
+ min_amount_usd: {
5033
+ description: string;
5034
+ format: string;
5035
+ pattern: string;
5036
+ readOnly: boolean;
5037
+ type: string;
5038
+ };
5039
+ name: {
5040
+ description: string;
5041
+ readOnly: boolean;
5042
+ type: string;
5043
+ };
5044
+ network: {
5045
+ description: string;
5046
+ nullable: boolean;
5047
+ readOnly: boolean;
5048
+ type: string;
5049
+ };
5050
+ sort_order: {
5051
+ description: string;
5052
+ readOnly: boolean;
5053
+ type: string;
5054
+ };
5055
+ symbol: {
5056
+ description: string;
5057
+ readOnly: boolean;
5058
+ type: string;
5059
+ };
5060
+ token: {
5061
+ description: string;
5062
+ readOnly: boolean;
5063
+ type: string;
5064
+ };
5065
+ };
5066
+ required: string[];
5067
+ type: string;
5068
+ };
4927
5069
  Document: {
4928
5070
  description: string;
4929
5071
  properties: {
@@ -7666,6 +7808,8 @@ declare const OPENAPI_SCHEMA: {
7666
7808
  type: string;
7667
7809
  };
7668
7810
  explorer_link: {
7811
+ description: string;
7812
+ nullable: boolean;
7669
7813
  readOnly: boolean;
7670
7814
  type: string;
7671
7815
  };
@@ -7714,6 +7858,8 @@ declare const OPENAPI_SCHEMA: {
7714
7858
  type: string;
7715
7859
  };
7716
7860
  qr_code_url: {
7861
+ description: string;
7862
+ nullable: boolean;
7717
7863
  readOnly: boolean;
7718
7864
  type: string;
7719
7865
  };
@@ -8225,6 +8371,65 @@ declare const OPENAPI_SCHEMA: {
8225
8371
  required: string[];
8226
8372
  type: string;
8227
8373
  };
8374
+ Transaction: {
8375
+ description: string;
8376
+ properties: {
8377
+ amount_display: {
8378
+ readOnly: boolean;
8379
+ type: string;
8380
+ };
8381
+ amount_usd: {
8382
+ description: string;
8383
+ format: string;
8384
+ pattern: string;
8385
+ readOnly: boolean;
8386
+ type: string;
8387
+ };
8388
+ balance_after: {
8389
+ description: string;
8390
+ format: string;
8391
+ pattern: string;
8392
+ readOnly: boolean;
8393
+ type: string;
8394
+ };
8395
+ created_at: {
8396
+ description: string;
8397
+ format: string;
8398
+ readOnly: boolean;
8399
+ type: string;
8400
+ };
8401
+ description: {
8402
+ description: string;
8403
+ readOnly: boolean;
8404
+ type: string;
8405
+ };
8406
+ id: {
8407
+ description: string;
8408
+ format: string;
8409
+ readOnly: boolean;
8410
+ type: string;
8411
+ };
8412
+ payment_id: {
8413
+ description: string;
8414
+ nullable: boolean;
8415
+ readOnly: boolean;
8416
+ type: string;
8417
+ };
8418
+ transaction_type: {
8419
+ description: string;
8420
+ enum: string[];
8421
+ readOnly: boolean;
8422
+ type: string;
8423
+ "x-spec-enum-id": string;
8424
+ };
8425
+ type_display: {
8426
+ readOnly: boolean;
8427
+ type: string;
8428
+ };
8429
+ };
8430
+ required: string[];
8431
+ type: string;
8432
+ };
8228
8433
  Unsubscribe: {
8229
8434
  description: string;
8230
8435
  properties: {
@@ -9665,39 +9870,12 @@ declare const OPENAPI_SCHEMA: {
9665
9870
  description: string;
9666
9871
  };
9667
9872
  "400": {
9668
- content: {
9669
- "application/json": {
9670
- schema: {
9671
- additionalProperties: {};
9672
- description: string;
9673
- type: string;
9674
- };
9675
- };
9676
- };
9677
9873
  description: string;
9678
9874
  };
9679
9875
  "413": {
9680
- content: {
9681
- "application/json": {
9682
- schema: {
9683
- additionalProperties: {};
9684
- description: string;
9685
- type: string;
9686
- };
9687
- };
9688
- };
9689
9876
  description: string;
9690
9877
  };
9691
9878
  "429": {
9692
- content: {
9693
- "application/json": {
9694
- schema: {
9695
- additionalProperties: {};
9696
- description: string;
9697
- type: string;
9698
- };
9699
- };
9700
- };
9701
9879
  description: string;
9702
9880
  };
9703
9881
  };
@@ -9757,27 +9935,9 @@ declare const OPENAPI_SCHEMA: {
9757
9935
  }[];
9758
9936
  responses: {
9759
9937
  "204": {
9760
- content: {
9761
- "application/json": {
9762
- schema: {
9763
- additionalProperties: {};
9764
- description: string;
9765
- type: string;
9766
- };
9767
- };
9768
- };
9769
9938
  description: string;
9770
9939
  };
9771
9940
  "404": {
9772
- content: {
9773
- "application/json": {
9774
- schema: {
9775
- additionalProperties: {};
9776
- description: string;
9777
- type: string;
9778
- };
9779
- };
9780
- };
9781
9941
  description: string;
9782
9942
  };
9783
9943
  };
@@ -9817,15 +9977,6 @@ declare const OPENAPI_SCHEMA: {
9817
9977
  description: string;
9818
9978
  };
9819
9979
  "404": {
9820
- content: {
9821
- "application/json": {
9822
- schema: {
9823
- additionalProperties: {};
9824
- description: string;
9825
- type: string;
9826
- };
9827
- };
9828
- };
9829
9980
  description: string;
9830
9981
  };
9831
9982
  };
@@ -10481,15 +10632,6 @@ declare const OPENAPI_SCHEMA: {
10481
10632
  description: string;
10482
10633
  };
10483
10634
  "404": {
10484
- content: {
10485
- "application/json": {
10486
- schema: {
10487
- additionalProperties: {};
10488
- description: string;
10489
- type: string;
10490
- };
10491
- };
10492
- };
10493
10635
  description: string;
10494
10636
  };
10495
10637
  };
@@ -10582,15 +10724,6 @@ declare const OPENAPI_SCHEMA: {
10582
10724
  description: string;
10583
10725
  };
10584
10726
  "404": {
10585
- content: {
10586
- "application/json": {
10587
- schema: {
10588
- additionalProperties: {};
10589
- description: string;
10590
- type: string;
10591
- };
10592
- };
10593
- };
10594
10727
  description: string;
10595
10728
  };
10596
10729
  };
@@ -10692,39 +10825,12 @@ declare const OPENAPI_SCHEMA: {
10692
10825
  description: string;
10693
10826
  };
10694
10827
  "400": {
10695
- content: {
10696
- "application/json": {
10697
- schema: {
10698
- additionalProperties: {};
10699
- description: string;
10700
- type: string;
10701
- };
10702
- };
10703
- };
10704
10828
  description: string;
10705
10829
  };
10706
10830
  "413": {
10707
- content: {
10708
- "application/json": {
10709
- schema: {
10710
- additionalProperties: {};
10711
- description: string;
10712
- type: string;
10713
- };
10714
- };
10715
- };
10716
10831
  description: string;
10717
10832
  };
10718
10833
  "429": {
10719
- content: {
10720
- "application/json": {
10721
- schema: {
10722
- additionalProperties: {};
10723
- description: string;
10724
- type: string;
10725
- };
10726
- };
10727
- };
10728
10834
  description: string;
10729
10835
  };
10730
10836
  };
@@ -13012,6 +13118,13 @@ declare const OPENAPI_SCHEMA: {
13012
13118
  operationId: string;
13013
13119
  responses: {
13014
13120
  "200": {
13121
+ content: {
13122
+ "application/json": {
13123
+ schema: {
13124
+ $ref: string;
13125
+ };
13126
+ };
13127
+ };
13015
13128
  description: string;
13016
13129
  };
13017
13130
  };
@@ -13022,6 +13135,7 @@ declare const OPENAPI_SCHEMA: {
13022
13135
  cookieAuth: any[];
13023
13136
  jwtAuth?: undefined;
13024
13137
  })[];
13138
+ summary: string;
13025
13139
  tags: string[];
13026
13140
  "x-async-capable": boolean;
13027
13141
  };
@@ -13032,6 +13146,16 @@ declare const OPENAPI_SCHEMA: {
13032
13146
  operationId: string;
13033
13147
  responses: {
13034
13148
  "200": {
13149
+ content: {
13150
+ "application/json": {
13151
+ schema: {
13152
+ items: {
13153
+ $ref: string;
13154
+ };
13155
+ type: string;
13156
+ };
13157
+ };
13158
+ };
13035
13159
  description: string;
13036
13160
  };
13037
13161
  };
@@ -13042,6 +13166,7 @@ declare const OPENAPI_SCHEMA: {
13042
13166
  cookieAuth: any[];
13043
13167
  jwtAuth?: undefined;
13044
13168
  })[];
13169
+ summary: string;
13045
13170
  tags: string[];
13046
13171
  "x-async-capable": boolean;
13047
13172
  };
@@ -13218,8 +13343,26 @@ declare const OPENAPI_SCHEMA: {
13218
13343
  get: {
13219
13344
  description: string;
13220
13345
  operationId: string;
13346
+ parameters: {
13347
+ description: string;
13348
+ in: string;
13349
+ name: string;
13350
+ schema: {
13351
+ type: string;
13352
+ };
13353
+ }[];
13221
13354
  responses: {
13222
13355
  "200": {
13356
+ content: {
13357
+ "application/json": {
13358
+ schema: {
13359
+ items: {
13360
+ $ref: string;
13361
+ };
13362
+ type: string;
13363
+ };
13364
+ };
13365
+ };
13223
13366
  description: string;
13224
13367
  };
13225
13368
  };
@@ -13230,6 +13373,7 @@ declare const OPENAPI_SCHEMA: {
13230
13373
  cookieAuth: any[];
13231
13374
  jwtAuth?: undefined;
13232
13375
  })[];
13376
+ summary: string;
13233
13377
  tags: string[];
13234
13378
  "x-async-capable": boolean;
13235
13379
  };
@@ -14513,6 +14657,28 @@ declare const ArchiveStatisticsSchema: z.ZodObject<{
14513
14657
  */
14514
14658
  type ArchiveStatistics = z.infer<typeof ArchiveStatisticsSchema>;
14515
14659
 
14660
+ /**
14661
+ * Zod schema for Balance
14662
+ *
14663
+ * This schema provides runtime validation and type inference.
14664
+ * * User balance serializer.
14665
+ * */
14666
+
14667
+ /**
14668
+ * User balance serializer.
14669
+ */
14670
+ declare const BalanceSchema: z.ZodObject<{
14671
+ balance_usd: z.ZodString;
14672
+ balance_display: z.ZodString;
14673
+ total_deposited: z.ZodString;
14674
+ total_withdrawn: z.ZodString;
14675
+ last_transaction_at: z.ZodNullable<z.ZodISODateTime>;
14676
+ }, z.core.$strip>;
14677
+ /**
14678
+ * Infer TypeScript type from Zod schema
14679
+ */
14680
+ type Balance = z.infer<typeof BalanceSchema>;
14681
+
14516
14682
  /**
14517
14683
  * Zod schema for BulkEmailRequest
14518
14684
  *
@@ -14816,6 +14982,33 @@ declare const ChunkRevectorizationRequestRequestSchema: z.ZodObject<{
14816
14982
  */
14817
14983
  type ChunkRevectorizationRequestRequest = z.infer<typeof ChunkRevectorizationRequestRequestSchema>;
14818
14984
 
14985
+ /**
14986
+ * Zod schema for Currency
14987
+ *
14988
+ * This schema provides runtime validation and type inference.
14989
+ * * Currency list serializer.
14990
+ * */
14991
+
14992
+ /**
14993
+ * Currency list serializer.
14994
+ */
14995
+ declare const CurrencySchema: z.ZodObject<{
14996
+ code: z.ZodString;
14997
+ name: z.ZodString;
14998
+ token: z.ZodString;
14999
+ network: z.ZodNullable<z.ZodString>;
15000
+ display_name: z.ZodString;
15001
+ symbol: z.ZodString;
15002
+ decimal_places: z.ZodInt;
15003
+ is_active: z.ZodBoolean;
15004
+ min_amount_usd: z.ZodString;
15005
+ sort_order: z.ZodInt;
15006
+ }, z.core.$strip>;
15007
+ /**
15008
+ * Infer TypeScript type from Zod schema
15009
+ */
15010
+ type Currency = z.infer<typeof CurrencySchema>;
15011
+
14819
15012
  /**
14820
15013
  * Zod schema for Document
14821
15014
  *
@@ -16488,10 +16681,10 @@ declare const PaymentDetailSchema: z.ZodObject<{
16488
16681
  status: z.ZodEnum<typeof PaymentDetailStatus>;
16489
16682
  status_display: z.ZodString;
16490
16683
  pay_address: z.ZodNullable<z.ZodString>;
16491
- qr_code_url: z.ZodString;
16684
+ qr_code_url: z.ZodNullable<z.ZodString>;
16492
16685
  payment_url: z.ZodNullable<z.ZodURL>;
16493
16686
  transaction_hash: z.ZodNullable<z.ZodString>;
16494
- explorer_link: z.ZodString;
16687
+ explorer_link: z.ZodNullable<z.ZodString>;
16495
16688
  confirmations_count: z.ZodInt;
16496
16689
  expires_at: z.ZodNullable<z.ZodISODateTime>;
16497
16690
  completed_at: z.ZodNullable<z.ZodISODateTime>;
@@ -16907,6 +17100,32 @@ declare const TokenRefreshRequestSchema: z.ZodObject<{
16907
17100
  */
16908
17101
  type TokenRefreshRequest = z.infer<typeof TokenRefreshRequestSchema>;
16909
17102
 
17103
+ /**
17104
+ * Zod schema for Transaction
17105
+ *
17106
+ * This schema provides runtime validation and type inference.
17107
+ * * Transaction serializer.
17108
+ * */
17109
+
17110
+ /**
17111
+ * Transaction serializer.
17112
+ */
17113
+ declare const TransactionSchema: z.ZodObject<{
17114
+ id: z.ZodUUID;
17115
+ transaction_type: z.ZodEnum<typeof TransactionTransactionType>;
17116
+ type_display: z.ZodString;
17117
+ amount_usd: z.ZodString;
17118
+ amount_display: z.ZodString;
17119
+ balance_after: z.ZodString;
17120
+ payment_id: z.ZodNullable<z.ZodString>;
17121
+ description: z.ZodString;
17122
+ created_at: z.ZodISODateTime;
17123
+ }, z.core.$strip>;
17124
+ /**
17125
+ * Infer TypeScript type from Zod schema
17126
+ */
17127
+ type Transaction = z.infer<typeof TransactionSchema>;
17128
+
16910
17129
  /**
16911
17130
  * Zod schema for Unsubscribe
16912
17131
  *
@@ -17128,6 +17347,8 @@ type index$2_ArchiveSearchResult = ArchiveSearchResult;
17128
17347
  declare const index$2_ArchiveSearchResultSchema: typeof ArchiveSearchResultSchema;
17129
17348
  type index$2_ArchiveStatistics = ArchiveStatistics;
17130
17349
  declare const index$2_ArchiveStatisticsSchema: typeof ArchiveStatisticsSchema;
17350
+ type index$2_Balance = Balance;
17351
+ declare const index$2_BalanceSchema: typeof BalanceSchema;
17131
17352
  type index$2_BulkEmailRequest = BulkEmailRequest;
17132
17353
  declare const index$2_BulkEmailRequestSchema: typeof BulkEmailRequestSchema;
17133
17354
  type index$2_BulkEmailResponse = BulkEmailResponse;
@@ -17154,6 +17375,8 @@ declare const index$2_ChatSourceRequestSchema: typeof ChatSourceRequestSchema;
17154
17375
  declare const index$2_ChatSourceSchema: typeof ChatSourceSchema;
17155
17376
  type index$2_ChunkRevectorizationRequestRequest = ChunkRevectorizationRequestRequest;
17156
17377
  declare const index$2_ChunkRevectorizationRequestRequestSchema: typeof ChunkRevectorizationRequestRequestSchema;
17378
+ type index$2_Currency = Currency;
17379
+ declare const index$2_CurrencySchema: typeof CurrencySchema;
17157
17380
  type index$2_Document = Document;
17158
17381
  type index$2_DocumentArchive = DocumentArchive;
17159
17382
  type index$2_DocumentArchiveDetail = DocumentArchiveDetail;
@@ -17320,6 +17543,8 @@ type index$2_TokenRefresh = TokenRefresh;
17320
17543
  type index$2_TokenRefreshRequest = TokenRefreshRequest;
17321
17544
  declare const index$2_TokenRefreshRequestSchema: typeof TokenRefreshRequestSchema;
17322
17545
  declare const index$2_TokenRefreshSchema: typeof TokenRefreshSchema;
17546
+ type index$2_Transaction = Transaction;
17547
+ declare const index$2_TransactionSchema: typeof TransactionSchema;
17323
17548
  type index$2_Unsubscribe = Unsubscribe;
17324
17549
  type index$2_UnsubscribeRequest = UnsubscribeRequest;
17325
17550
  declare const index$2_UnsubscribeRequestSchema: typeof UnsubscribeRequestSchema;
@@ -17337,7 +17562,7 @@ type index$2_WorkerActionRequest = WorkerActionRequest;
17337
17562
  declare const index$2_WorkerActionRequestSchema: typeof WorkerActionRequestSchema;
17338
17563
  declare const index$2_WorkerActionSchema: typeof WorkerActionSchema;
17339
17564
  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 };
17565
+ 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
17566
  }
17342
17567
 
17343
17568
  /**
@@ -18570,19 +18795,19 @@ declare function createNewsletterTestCreate(data: TestEmailRequest, client?: any
18570
18795
  */
18571
18796
 
18572
18797
  /**
18573
- * API operation
18798
+ * Get user balance
18574
18799
  *
18575
18800
  * @method GET
18576
18801
  * @path /cfg/payments/balance/
18577
18802
  */
18578
- declare function getPaymentsBalanceRetrieve(client?: any): Promise<any>;
18803
+ declare function getPaymentsBalanceRetrieve(client?: any): Promise<Balance>;
18579
18804
  /**
18580
- * API operation
18805
+ * Get available currencies
18581
18806
  *
18582
18807
  * @method GET
18583
18808
  * @path /cfg/payments/currencies/
18584
18809
  */
18585
- declare function getPaymentsCurrenciesRetrieve(client?: any): Promise<any>;
18810
+ declare function getPaymentsCurrenciesList(client?: any): Promise<any>;
18586
18811
  /**
18587
18812
  * API operation
18588
18813
  *
@@ -18622,12 +18847,16 @@ declare function getPaymentsPaymentsStatusRetrieve(id: string, client?: any): Pr
18622
18847
  */
18623
18848
  declare function createPaymentsPaymentsCreateCreate(client?: any): Promise<PaymentList>;
18624
18849
  /**
18625
- * API operation
18850
+ * Get user transactions
18626
18851
  *
18627
18852
  * @method GET
18628
18853
  * @path /cfg/payments/transactions/
18629
18854
  */
18630
- declare function getPaymentsTransactionsRetrieve(client?: any): Promise<any>;
18855
+ declare function getPaymentsTransactionsList(params?: {
18856
+ limit?: number;
18857
+ offset?: number;
18858
+ type?: string;
18859
+ }, client?: any): Promise<any>;
18631
18860
 
18632
18861
  /**
18633
18862
  * Typed fetchers for Support
@@ -18966,11 +19195,11 @@ declare const index$1_getNewsletterNewslettersList: typeof getNewsletterNewslett
18966
19195
  declare const index$1_getNewsletterNewslettersRetrieve: typeof getNewsletterNewslettersRetrieve;
18967
19196
  declare const index$1_getNewsletterSubscriptionsList: typeof getNewsletterSubscriptionsList;
18968
19197
  declare const index$1_getPaymentsBalanceRetrieve: typeof getPaymentsBalanceRetrieve;
18969
- declare const index$1_getPaymentsCurrenciesRetrieve: typeof getPaymentsCurrenciesRetrieve;
19198
+ declare const index$1_getPaymentsCurrenciesList: typeof getPaymentsCurrenciesList;
18970
19199
  declare const index$1_getPaymentsPaymentsList: typeof getPaymentsPaymentsList;
18971
19200
  declare const index$1_getPaymentsPaymentsRetrieve: typeof getPaymentsPaymentsRetrieve;
18972
19201
  declare const index$1_getPaymentsPaymentsStatusRetrieve: typeof getPaymentsPaymentsStatusRetrieve;
18973
- declare const index$1_getPaymentsTransactionsRetrieve: typeof getPaymentsTransactionsRetrieve;
19202
+ declare const index$1_getPaymentsTransactionsList: typeof getPaymentsTransactionsList;
18974
19203
  declare const index$1_getSupportTicketsList: typeof getSupportTicketsList;
18975
19204
  declare const index$1_getSupportTicketsMessagesList: typeof getSupportTicketsMessagesList;
18976
19205
  declare const index$1_getSupportTicketsMessagesRetrieve: typeof getSupportTicketsMessagesRetrieve;
@@ -19006,7 +19235,7 @@ declare const index$1_updateNewsletterUnsubscribeUpdate: typeof updateNewsletter
19006
19235
  declare const index$1_updateSupportTicketsMessagesUpdate: typeof updateSupportTicketsMessagesUpdate;
19007
19236
  declare const index$1_updateSupportTicketsUpdate: typeof updateSupportTicketsUpdate;
19008
19237
  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 };
19238
+ 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
19239
  }
19011
19240
 
19012
19241
  /**
@@ -19980,19 +20209,19 @@ declare function usePartialUpdateNewsletterUnsubscribePartialUpdate(): (data?: P
19980
20209
  */
19981
20210
 
19982
20211
  /**
19983
- * API operation
20212
+ * Get user balance
19984
20213
  *
19985
20214
  * @method GET
19986
20215
  * @path /cfg/payments/balance/
19987
20216
  */
19988
- declare function usePaymentsBalanceRetrieve(client?: API): ReturnType<typeof useSWR<any>>;
20217
+ declare function usePaymentsBalanceRetrieve(client?: API): ReturnType<typeof useSWR<Balance>>;
19989
20218
  /**
19990
- * API operation
20219
+ * Get available currencies
19991
20220
  *
19992
20221
  * @method GET
19993
20222
  * @path /cfg/payments/currencies/
19994
20223
  */
19995
- declare function usePaymentsCurrenciesRetrieve(client?: API): ReturnType<typeof useSWR<any>>;
20224
+ declare function usePaymentsCurrenciesList(client?: API): ReturnType<typeof useSWR<any>>;
19996
20225
  /**
19997
20226
  * API operation
19998
20227
  *
@@ -20032,12 +20261,16 @@ declare function usePaymentsPaymentsStatusRetrieve(id: string, client?: API): Re
20032
20261
  */
20033
20262
  declare function useCreatePaymentsPaymentsCreateCreate(): (client?: API) => Promise<PaymentList>;
20034
20263
  /**
20035
- * API operation
20264
+ * Get user transactions
20036
20265
  *
20037
20266
  * @method GET
20038
20267
  * @path /cfg/payments/transactions/
20039
20268
  */
20040
- declare function usePaymentsTransactionsRetrieve(client?: API): ReturnType<typeof useSWR<any>>;
20269
+ declare function usePaymentsTransactionsList(params?: {
20270
+ limit?: number;
20271
+ offset?: number;
20272
+ type?: string;
20273
+ }, client?: API): ReturnType<typeof useSWR<any>>;
20041
20274
 
20042
20275
  /**
20043
20276
  * SWR Hooks for Support
@@ -20358,11 +20591,11 @@ declare const index_usePartialUpdateNewsletterUnsubscribePartialUpdate: typeof u
20358
20591
  declare const index_usePartialUpdateSupportTicketsMessagesPartialUpdate: typeof usePartialUpdateSupportTicketsMessagesPartialUpdate;
20359
20592
  declare const index_usePartialUpdateSupportTicketsPartialUpdate: typeof usePartialUpdateSupportTicketsPartialUpdate;
20360
20593
  declare const index_usePaymentsBalanceRetrieve: typeof usePaymentsBalanceRetrieve;
20361
- declare const index_usePaymentsCurrenciesRetrieve: typeof usePaymentsCurrenciesRetrieve;
20594
+ declare const index_usePaymentsCurrenciesList: typeof usePaymentsCurrenciesList;
20362
20595
  declare const index_usePaymentsPaymentsList: typeof usePaymentsPaymentsList;
20363
20596
  declare const index_usePaymentsPaymentsRetrieve: typeof usePaymentsPaymentsRetrieve;
20364
20597
  declare const index_usePaymentsPaymentsStatusRetrieve: typeof usePaymentsPaymentsStatusRetrieve;
20365
- declare const index_usePaymentsTransactionsRetrieve: typeof usePaymentsTransactionsRetrieve;
20598
+ declare const index_usePaymentsTransactionsList: typeof usePaymentsTransactionsList;
20366
20599
  declare const index_useSupportTicketsList: typeof useSupportTicketsList;
20367
20600
  declare const index_useSupportTicketsMessagesList: typeof useSupportTicketsMessagesList;
20368
20601
  declare const index_useSupportTicketsMessagesRetrieve: typeof useSupportTicketsMessagesRetrieve;
@@ -20384,7 +20617,7 @@ declare const index_useUpdateNewsletterUnsubscribeUpdate: typeof useUpdateNewsle
20384
20617
  declare const index_useUpdateSupportTicketsMessagesUpdate: typeof useUpdateSupportTicketsMessagesUpdate;
20385
20618
  declare const index_useUpdateSupportTicketsUpdate: typeof useUpdateSupportTicketsUpdate;
20386
20619
  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 };
20620
+ 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
20621
  }
20389
20622
 
20390
20623
  /**
@@ -20446,7 +20679,7 @@ declare class NetworkError extends Error {
20446
20679
  }
20447
20680
 
20448
20681
  /**
20449
- * Django CFG Sample API - API Client with JWT Management
20682
+ * Django CFG API - API Client with JWT Management
20450
20683
  *
20451
20684
  * Usage:
20452
20685
  * ```typescript
@@ -21580,4 +21813,4 @@ declare function KnowbaseSessionsProvider({ children }: {
21580
21813
  }): react_jsx_runtime.JSX.Element;
21581
21814
  declare function useKnowbaseSessionsContext(): KnowbaseSessionsContextValue;
21582
21815
 
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 };
21816
+ 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 };