@djangocfg/api 1.2.14 → 1.2.16

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.
Files changed (52) hide show
  1. package/dist/index.cjs +2478 -3259
  2. package/dist/index.cjs.map +1 -1
  3. package/dist/index.d.cts +1332 -1955
  4. package/dist/index.d.ts +1332 -1955
  5. package/dist/index.mjs +2461 -3222
  6. package/dist/index.mjs.map +1 -1
  7. package/package.json +2 -2
  8. package/src/cfg/contexts/index.ts +0 -4
  9. package/src/cfg/generated/_utils/fetchers/cfg__tasks.ts +36 -96
  10. package/src/cfg/generated/_utils/hooks/cfg__tasks.ts +38 -122
  11. package/src/cfg/generated/_utils/schemas/PaginatedTaskLogListList.schema.ts +24 -0
  12. package/src/cfg/generated/_utils/schemas/TaskLog.schema.ts +42 -0
  13. package/src/cfg/generated/_utils/schemas/TaskLogDetail.schema.ts +50 -0
  14. package/src/cfg/generated/_utils/schemas/TaskLogList.schema.ts +35 -0
  15. package/src/cfg/generated/_utils/schemas/TaskLogStats.schema.ts +30 -0
  16. package/src/cfg/generated/_utils/schemas/index.ts +5 -8
  17. package/src/cfg/generated/cfg__tasks/client.ts +52 -49
  18. package/src/cfg/generated/cfg__tasks/models.ts +169 -106
  19. package/src/cfg/generated/enums.ts +60 -56
  20. package/src/cfg/generated/schema.ts +859 -552
  21. package/src/index.ts +0 -3
  22. package/src/cfg/contexts/TasksContext.tsx +0 -242
  23. package/src/cfg/generated/_utils/schemas/APIResponse.schema.ts +0 -22
  24. package/src/cfg/generated/_utils/schemas/APIResponseRequest.schema.ts +0 -22
  25. package/src/cfg/generated/_utils/schemas/QueueAction.schema.ts +0 -21
  26. package/src/cfg/generated/_utils/schemas/QueueActionRequest.schema.ts +0 -21
  27. package/src/cfg/generated/_utils/schemas/QueueStatus.schema.ts +0 -23
  28. package/src/cfg/generated/_utils/schemas/TaskStatistics.schema.ts +0 -22
  29. package/src/cfg/generated/_utils/schemas/WorkerAction.schema.ts +0 -22
  30. package/src/cfg/generated/_utils/schemas/WorkerActionRequest.schema.ts +0 -22
  31. package/src/cfg/services_deprecated/README.md +0 -53
  32. package/src/cfg/services_deprecated/auth/AuthService.ts +0 -165
  33. package/src/cfg/services_deprecated/auth/index.ts +0 -7
  34. package/src/cfg/services_deprecated/index.ts +0 -31
  35. package/src/cfg/services_deprecated/leads/LeadsService.ts +0 -133
  36. package/src/cfg/services_deprecated/leads/index.ts +0 -7
  37. package/src/cfg/services_deprecated/newsletter/BulkEmailService.ts +0 -35
  38. package/src/cfg/services_deprecated/newsletter/CampaignsService.ts +0 -138
  39. package/src/cfg/services_deprecated/newsletter/NewsletterService.ts +0 -79
  40. package/src/cfg/services_deprecated/newsletter/NewslettersListService.ts +0 -48
  41. package/src/cfg/services_deprecated/newsletter/index.ts +0 -10
  42. package/src/cfg/services_deprecated/payments/ApiKeysService.ts +0 -101
  43. package/src/cfg/services_deprecated/payments/DashboardService.ts +0 -112
  44. package/src/cfg/services_deprecated/payments/PaymentsService.ts +0 -159
  45. package/src/cfg/services_deprecated/payments/SubscriptionsService.ts +0 -101
  46. package/src/cfg/services_deprecated/payments/index.ts +0 -10
  47. package/src/cfg/services_deprecated/support/SupportService.ts +0 -142
  48. package/src/cfg/services_deprecated/support/index.ts +0 -7
  49. package/src/cfg/services_deprecated/tasks/TasksService.ts +0 -170
  50. package/src/cfg/services_deprecated/tasks/index.ts +0 -7
  51. package/src/cfg/services_deprecated/webhooks/WebhooksService.ts +0 -66
  52. package/src/cfg/services_deprecated/webhooks/index.ts +0 -7
package/dist/index.d.ts CHANGED
@@ -446,36 +446,6 @@ declare enum PaymentListStatus {
446
446
  EXPIRED = "expired",
447
447
  CANCELLED = "cancelled"
448
448
  }
449
- /**
450
- * Action to perform on queues
451
- * * `clear` - clear
452
- * * `clear_all` - clear_all
453
- * * `purge` - purge
454
- * * `purge_failed` - purge_failed
455
- * * `flush` - flush
456
- */
457
- declare enum QueueActionAction {
458
- CLEAR = "clear",
459
- CLEAR_ALL = "clear_all",
460
- PURGE = "purge",
461
- PURGE_FAILED = "purge_failed",
462
- FLUSH = "flush"
463
- }
464
- /**
465
- * Action to perform on queues
466
- * * `clear` - clear
467
- * * `clear_all` - clear_all
468
- * * `purge` - purge
469
- * * `purge_failed` - purge_failed
470
- * * `flush` - flush
471
- */
472
- declare enum QueueActionRequestAction {
473
- CLEAR = "clear",
474
- CLEAR_ALL = "clear_all",
475
- PURGE = "purge",
476
- PURGE_FAILED = "purge_failed",
477
- FLUSH = "flush"
478
- }
479
449
  /**
480
450
  * Button color theme
481
451
  * * `primary` - primary
@@ -528,6 +498,63 @@ declare enum SystemHealthItemStatus {
528
498
  ERROR = "error",
529
499
  UNKNOWN = "unknown"
530
500
  }
501
+ /**
502
+ * Current task status
503
+ * * `deferred` - Deferred
504
+ * * `queued` - Queued
505
+ * * `in_progress` - In Progress
506
+ * * `success` - Success
507
+ * * `failed` - Failed
508
+ * * `expired` - Expired
509
+ * * `canceled` - Canceled
510
+ */
511
+ declare enum TaskLogStatus {
512
+ DEFERRED = "deferred",
513
+ QUEUED = "queued",
514
+ IN_PROGRESS = "in_progress",
515
+ SUCCESS = "success",
516
+ FAILED = "failed",
517
+ EXPIRED = "expired",
518
+ CANCELED = "canceled"
519
+ }
520
+ /**
521
+ * Current task status
522
+ * * `deferred` - Deferred
523
+ * * `queued` - Queued
524
+ * * `in_progress` - In Progress
525
+ * * `success` - Success
526
+ * * `failed` - Failed
527
+ * * `expired` - Expired
528
+ * * `canceled` - Canceled
529
+ */
530
+ declare enum TaskLogDetailStatus {
531
+ DEFERRED = "deferred",
532
+ QUEUED = "queued",
533
+ IN_PROGRESS = "in_progress",
534
+ SUCCESS = "success",
535
+ FAILED = "failed",
536
+ EXPIRED = "expired",
537
+ CANCELED = "canceled"
538
+ }
539
+ /**
540
+ * Current task status
541
+ * * `deferred` - Deferred
542
+ * * `queued` - Queued
543
+ * * `in_progress` - In Progress
544
+ * * `success` - Success
545
+ * * `failed` - Failed
546
+ * * `expired` - Expired
547
+ * * `canceled` - Canceled
548
+ */
549
+ declare enum TaskLogListStatus {
550
+ DEFERRED = "deferred",
551
+ QUEUED = "queued",
552
+ IN_PROGRESS = "in_progress",
553
+ SUCCESS = "success",
554
+ FAILED = "failed",
555
+ EXPIRED = "expired",
556
+ CANCELED = "canceled"
557
+ }
531
558
  /**
532
559
  * * `open` - Open
533
560
  * * `waiting_for_user` - Waiting for User
@@ -575,28 +602,6 @@ declare enum TransactionTransactionType {
575
602
  BONUS = "bonus",
576
603
  ADJUSTMENT = "adjustment"
577
604
  }
578
- /**
579
- * Action to perform on workers
580
- * * `start` - start
581
- * * `stop` - stop
582
- * * `restart` - restart
583
- */
584
- declare enum WorkerActionAction {
585
- START = "start",
586
- STOP = "stop",
587
- RESTART = "restart"
588
- }
589
- /**
590
- * Action to perform on workers
591
- * * `start` - start
592
- * * `stop` - stop
593
- * * `restart` - restart
594
- */
595
- declare enum WorkerActionRequestAction {
596
- START = "start",
597
- STOP = "stop",
598
- RESTART = "restart"
599
- }
600
605
 
601
606
  type enums_ArchiveItemChunkChunkType = ArchiveItemChunkChunkType;
602
607
  declare const enums_ArchiveItemChunkChunkType: typeof ArchiveItemChunkChunkType;
@@ -648,10 +653,6 @@ type enums_PaymentDetailStatus = PaymentDetailStatus;
648
653
  declare const enums_PaymentDetailStatus: typeof PaymentDetailStatus;
649
654
  type enums_PaymentListStatus = PaymentListStatus;
650
655
  declare const enums_PaymentListStatus: typeof PaymentListStatus;
651
- type enums_QueueActionAction = QueueActionAction;
652
- declare const enums_QueueActionAction: typeof QueueActionAction;
653
- type enums_QueueActionRequestAction = QueueActionRequestAction;
654
- declare const enums_QueueActionRequestAction: typeof QueueActionRequestAction;
655
656
  type enums_QuickActionColor = QuickActionColor;
656
657
  declare const enums_QuickActionColor: typeof QuickActionColor;
657
658
  type enums_StatCardChangeType = StatCardChangeType;
@@ -660,18 +661,20 @@ type enums_SystemHealthItemStatus = SystemHealthItemStatus;
660
661
  declare const enums_SystemHealthItemStatus: typeof SystemHealthItemStatus;
661
662
  type enums_SystemHealthOverallStatus = SystemHealthOverallStatus;
662
663
  declare const enums_SystemHealthOverallStatus: typeof SystemHealthOverallStatus;
664
+ type enums_TaskLogDetailStatus = TaskLogDetailStatus;
665
+ declare const enums_TaskLogDetailStatus: typeof TaskLogDetailStatus;
666
+ type enums_TaskLogListStatus = TaskLogListStatus;
667
+ declare const enums_TaskLogListStatus: typeof TaskLogListStatus;
668
+ type enums_TaskLogStatus = TaskLogStatus;
669
+ declare const enums_TaskLogStatus: typeof TaskLogStatus;
663
670
  type enums_TicketRequestStatus = TicketRequestStatus;
664
671
  declare const enums_TicketRequestStatus: typeof TicketRequestStatus;
665
672
  type enums_TicketStatus = TicketStatus;
666
673
  declare const enums_TicketStatus: typeof TicketStatus;
667
674
  type enums_TransactionTransactionType = TransactionTransactionType;
668
675
  declare const enums_TransactionTransactionType: typeof TransactionTransactionType;
669
- type enums_WorkerActionAction = WorkerActionAction;
670
- declare const enums_WorkerActionAction: typeof WorkerActionAction;
671
- type enums_WorkerActionRequestAction = WorkerActionRequestAction;
672
- declare const enums_WorkerActionRequestAction: typeof WorkerActionRequestAction;
673
676
  declare namespace enums {
674
- 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_QuickActionColor as QuickActionColor, enums_StatCardChangeType as StatCardChangeType, enums_SystemHealthItemStatus as SystemHealthItemStatus, enums_SystemHealthOverallStatus as SystemHealthOverallStatus, enums_TicketRequestStatus as TicketRequestStatus, enums_TicketStatus as TicketStatus, enums_TransactionTransactionType as TransactionTransactionType, enums_WorkerActionAction as WorkerActionAction, enums_WorkerActionRequestAction as WorkerActionRequestAction };
677
+ 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_QuickActionColor as QuickActionColor, enums_StatCardChangeType as StatCardChangeType, enums_SystemHealthItemStatus as SystemHealthItemStatus, enums_SystemHealthOverallStatus as SystemHealthOverallStatus, enums_TaskLogDetailStatus as TaskLogDetailStatus, enums_TaskLogListStatus as TaskLogListStatus, enums_TaskLogStatus as TaskLogStatus, enums_TicketRequestStatus as TicketRequestStatus, enums_TicketStatus as TicketStatus, enums_TransactionTransactionType as TransactionTransactionType };
675
678
  }
676
679
 
677
680
  /**
@@ -4494,138 +4497,204 @@ declare class CfgSupport {
4494
4497
  }
4495
4498
 
4496
4499
  /**
4497
- * Standard API response serializer.
4498
- *
4499
- * Request model (no read-only fields).
4500
- */
4501
- interface APIResponseRequest$1 {
4502
- /** Operation success status */
4503
- success: boolean;
4504
- /** Success message */
4505
- message?: string;
4506
- /** Error message */
4507
- error?: string;
4508
- /** Response data */
4509
- data?: Record<string, any>;
4510
- }
4511
- /**
4512
- * Standard API response serializer.
4513
4500
  *
4514
4501
  * Response model (includes read-only fields).
4515
4502
  */
4516
- interface APIResponse$1 {
4517
- /** Operation success status */
4518
- success: boolean;
4519
- /** Success message */
4520
- message?: string;
4521
- /** Error message */
4522
- error?: string;
4523
- /** Response data */
4524
- data?: Record<string, any>;
4525
- }
4526
- /**
4527
- * Serializer for queue management actions.
4528
- *
4529
- * Request model (no read-only fields).
4530
- */
4531
- interface QueueActionRequest$1 {
4532
- /** Action to perform on queues
4533
-
4534
- * `clear` - clear
4535
- * `clear_all` - clear_all
4536
- * `purge` - purge
4537
- * `purge_failed` - purge_failed
4538
- * `flush` - flush */
4539
- action: QueueActionRequestAction;
4540
- /** Specific queues to target (empty = all queues) */
4541
- queue_names?: Array<string>;
4503
+ interface PaginatedTaskLogListList$1 {
4504
+ /** Total number of items across all pages */
4505
+ count: number;
4506
+ /** Current page number (1-based) */
4507
+ page: number;
4508
+ /** Total number of pages */
4509
+ pages: number;
4510
+ /** Number of items per page */
4511
+ page_size: number;
4512
+ /** Whether there is a next page */
4513
+ has_next: boolean;
4514
+ /** Whether there is a previous page */
4515
+ has_previous: boolean;
4516
+ /** Next page number (null if no next page) */
4517
+ next_page?: number | null;
4518
+ /** Previous page number (null if no previous page) */
4519
+ previous_page?: number | null;
4520
+ /** Array of items for current page */
4521
+ results: Array<TaskLogList$1>;
4542
4522
  }
4543
4523
  /**
4544
- * Serializer for queue management actions.
4524
+ * Detailed TaskLog serializer. Includes all fields including args, kwargs,
4525
+ * result, error messages. Combines ReArq Job + JobResult data.
4545
4526
  *
4546
4527
  * Response model (includes read-only fields).
4547
4528
  */
4548
- interface QueueAction$1 {
4549
- /** Action to perform on queues
4529
+ interface TaskLogDetail$1 {
4530
+ id: number;
4531
+ /** Unique job identifier from ReArq */
4532
+ job_id: string;
4533
+ /** Name of the task function */
4534
+ task_name: string;
4535
+ /** Queue where task was executed */
4536
+ queue_name: string;
4537
+ /** Current task status
4550
4538
 
4551
- * `clear` - clear
4552
- * `clear_all` - clear_all
4553
- * `purge` - purge
4554
- * `purge_failed` - purge_failed
4555
- * `flush` - flush */
4556
- action: QueueActionAction;
4557
- /** Specific queues to target (empty = all queues) */
4558
- queue_names?: Array<string>;
4539
+ * `deferred` - Deferred
4540
+ * `queued` - Queued
4541
+ * `in_progress` - In Progress
4542
+ * `success` - Success
4543
+ * `failed` - Failed
4544
+ * `expired` - Expired
4545
+ * `canceled` - Canceled */
4546
+ status: TaskLogDetailStatus;
4547
+ status_display: string;
4548
+ /** Whether task completed successfully (null = not finished) */
4549
+ success: boolean | null;
4550
+ /** Positional arguments passed to task */
4551
+ args: string;
4552
+ /** Keyword arguments passed to task */
4553
+ kwargs: string;
4554
+ /** Task result (JSON string) */
4555
+ result: string | null;
4556
+ /** Error message if task failed */
4557
+ error_message: string | null;
4558
+ /** Task execution duration in milliseconds */
4559
+ duration_ms: number | null;
4560
+ /** Convert duration from ms to seconds. */
4561
+ duration_seconds: number;
4562
+ /** Maximum number of retries allowed (from task definition) */
4563
+ job_retry: number;
4564
+ /** Number of retries performed so far */
4565
+ job_retries: number;
4566
+ /** Seconds to wait before retry */
4567
+ job_retry_after: number;
4568
+ /** ID of worker that processed the task */
4569
+ worker_id: string | null;
4570
+ /** When job was enqueued to ReArq (from Job.enqueue_time) */
4571
+ enqueue_time: string;
4572
+ /** When job will expire (from Job.expire_time) */
4573
+ expire_time: string | null;
4574
+ /** When task execution started (from JobResult.start_time) */
4575
+ start_time: string | null;
4576
+ /** When task execution finished (from JobResult.finish_time) */
4577
+ finish_time: string | null;
4578
+ /** When TaskLog record was created in Django DB */
4579
+ created_at: string;
4580
+ /** When TaskLog record was last updated */
4581
+ updated_at: string;
4582
+ /** User who triggered the task (if applicable) */
4583
+ user: number | null;
4584
+ /** Get user display name. */
4585
+ user_display: string;
4559
4586
  }
4560
4587
  /**
4561
- * Serializer for queue status data.
4588
+ * Basic TaskLog serializer. Used for list views with essential fields only.
4589
+ * Includes computed properties matching ReArq response format.
4562
4590
  *
4563
4591
  * Response model (includes read-only fields).
4564
4592
  */
4565
- interface QueueStatus$1 {
4566
- /** Queue information with pending/failed counts */
4567
- queues: Record<string, any>;
4568
- /** Number of active workers */
4569
- workers: number;
4570
- /** Redis connection status */
4571
- redis_connected: boolean;
4572
- /** Current timestamp */
4573
- timestamp: string;
4574
- /** Error message if any */
4575
- error?: string;
4593
+ interface TaskLog$1 {
4594
+ id: number;
4595
+ /** Unique job identifier from ReArq */
4596
+ job_id: string;
4597
+ /** Name of the task function */
4598
+ task_name: string;
4599
+ /** Queue where task was executed */
4600
+ queue_name: string;
4601
+ /** Current task status
4602
+
4603
+ * `deferred` - Deferred
4604
+ * `queued` - Queued
4605
+ * `in_progress` - In Progress
4606
+ * `success` - Success
4607
+ * `failed` - Failed
4608
+ * `expired` - Expired
4609
+ * `canceled` - Canceled */
4610
+ status: TaskLogStatus;
4611
+ /** Whether task completed successfully (null = not finished) */
4612
+ success: boolean | null;
4613
+ /** Task execution duration in milliseconds */
4614
+ duration_ms: number | null;
4615
+ /** Convert duration from ms to seconds. */
4616
+ duration_seconds: number;
4617
+ /** Maximum number of retries allowed (from task definition) */
4618
+ job_retry: number;
4619
+ /** Number of retries performed so far */
4620
+ job_retries: number;
4621
+ /** When job was enqueued to ReArq (from Job.enqueue_time) */
4622
+ enqueue_time: string;
4623
+ /** When job will expire (from Job.expire_time) */
4624
+ expire_time: string | null;
4625
+ /** When task execution started (from JobResult.start_time) */
4626
+ start_time: string | null;
4627
+ /** When task execution finished (from JobResult.finish_time) */
4628
+ finish_time: string | null;
4629
+ is_completed: boolean;
4630
+ is_successful: boolean;
4631
+ is_failed: boolean;
4576
4632
  }
4577
4633
  /**
4578
- * Serializer for task statistics data.
4634
+ * Statistics serializer for task metrics. Not tied to a model - used for
4635
+ * aggregated data.
4579
4636
  *
4580
4637
  * Response model (includes read-only fields).
4581
4638
  */
4582
- interface TaskStatistics$1 {
4583
- /** Task count statistics */
4584
- statistics: Record<string, any>;
4585
- /** List of recent tasks */
4586
- recent_tasks: Array<Record<string, any>>;
4587
- /** Current timestamp */
4588
- timestamp: string;
4589
- /** Error message if any */
4590
- error?: string;
4591
- }
4592
- /**
4593
- * Serializer for worker management actions.
4594
- *
4595
- * Request model (no read-only fields).
4596
- */
4597
- interface WorkerActionRequest$1 {
4598
- /** Action to perform on workers
4599
-
4600
- * `start` - start
4601
- * `stop` - stop
4602
- * `restart` - restart */
4603
- action: WorkerActionRequestAction;
4604
- /** Number of worker processes */
4605
- processes?: number;
4606
- /** Number of threads per process */
4607
- threads?: number;
4639
+ interface TaskLogStats$1 {
4640
+ /** Total number of task executions */
4641
+ total: number;
4642
+ /** Number of successful executions */
4643
+ successful: number;
4644
+ /** Number of failed executions */
4645
+ failed: number;
4646
+ /** Number of tasks currently running */
4647
+ in_progress: number;
4648
+ /** Success rate percentage */
4649
+ success_rate: number;
4650
+ /** Average duration in milliseconds */
4651
+ avg_duration_ms: number;
4652
+ /** Average duration in seconds */
4653
+ avg_duration_seconds: number;
4654
+ /** Statistics period in hours */
4655
+ period_hours?: number;
4608
4656
  }
4609
4657
  /**
4610
- * Serializer for worker management actions.
4658
+ * Compact serializer for list views. Minimal fields for performance, matching
4659
+ * ReArq Job list format.
4611
4660
  *
4612
4661
  * Response model (includes read-only fields).
4613
4662
  */
4614
- interface WorkerAction$1 {
4615
- /** Action to perform on workers
4663
+ interface TaskLogList$1 {
4664
+ id: number;
4665
+ /** Unique job identifier from ReArq */
4666
+ job_id: string;
4667
+ /** Name of the task function */
4668
+ task_name: string;
4669
+ /** Queue where task was executed */
4670
+ queue_name: string;
4671
+ /** Current task status
4616
4672
 
4617
- * `start` - start
4618
- * `stop` - stop
4619
- * `restart` - restart */
4620
- action: WorkerActionAction;
4621
- /** Number of worker processes */
4622
- processes?: number;
4623
- /** Number of threads per process */
4624
- threads?: number;
4673
+ * `deferred` - Deferred
4674
+ * `queued` - Queued
4675
+ * `in_progress` - In Progress
4676
+ * `success` - Success
4677
+ * `failed` - Failed
4678
+ * `expired` - Expired
4679
+ * `canceled` - Canceled */
4680
+ status: TaskLogListStatus;
4681
+ status_display: string;
4682
+ /** Whether task completed successfully (null = not finished) */
4683
+ success: boolean | null;
4684
+ /** Number of retries performed so far */
4685
+ job_retries: number;
4686
+ /** Task execution duration in milliseconds */
4687
+ duration_ms: number | null;
4688
+ /** When job was enqueued to ReArq (from Job.enqueue_time) */
4689
+ enqueue_time: string;
4690
+ /** When task execution started (from JobResult.start_time) */
4691
+ start_time: string | null;
4692
+ /** When task execution finished (from JobResult.finish_time) */
4693
+ finish_time: string | null;
4625
4694
  }
4626
4695
 
4627
4696
  declare namespace models {
4628
- export type { APIResponse$1 as APIResponse, APIResponseRequest$1 as APIResponseRequest, QueueAction$1 as QueueAction, QueueActionRequest$1 as QueueActionRequest, QueueStatus$1 as QueueStatus, TaskStatistics$1 as TaskStatistics, WorkerAction$1 as WorkerAction, WorkerActionRequest$1 as WorkerActionRequest };
4697
+ export type { PaginatedTaskLogListList$1 as PaginatedTaskLogListList, TaskLog$1 as TaskLog, TaskLogDetail$1 as TaskLogDetail, TaskLogList$1 as TaskLogList, TaskLogStats$1 as TaskLogStats };
4629
4698
  }
4630
4699
 
4631
4700
  /**
@@ -4634,46 +4703,81 @@ declare namespace models {
4634
4703
  declare class CfgTasks {
4635
4704
  private client;
4636
4705
  constructor(client: any);
4706
+ logsList(created_after?: string, created_before?: string, duration_max?: number, duration_min?: number, end_time?: string, enqueue_after?: string, enqueue_before?: string, finish_after?: string, finish_before?: string, has_error?: boolean, is_completed?: boolean, is_failed?: boolean, is_successful?: boolean, job_id?: string, job_retries_max?: number, job_retries_min?: number, ordering?: string, page?: number, page_size?: number, queue_name?: string, queue_name_in?: any[], search?: string, start_after?: string, start_before?: string, start_time?: string, status?: string, status_in?: any[], success?: boolean, task?: string, task_name?: string, task_name_exact?: string, worker?: string, worker_id?: string): Promise<PaginatedTaskLogListList$1>;
4707
+ logsList(params?: {
4708
+ created_after?: string;
4709
+ created_before?: string;
4710
+ duration_max?: number;
4711
+ duration_min?: number;
4712
+ end_time?: string;
4713
+ enqueue_after?: string;
4714
+ enqueue_before?: string;
4715
+ finish_after?: string;
4716
+ finish_before?: string;
4717
+ has_error?: boolean;
4718
+ is_completed?: boolean;
4719
+ is_failed?: boolean;
4720
+ is_successful?: boolean;
4721
+ job_id?: string;
4722
+ job_retries_max?: number;
4723
+ job_retries_min?: number;
4724
+ ordering?: string;
4725
+ page?: number;
4726
+ page_size?: number;
4727
+ queue_name?: string;
4728
+ queue_name_in?: any[];
4729
+ search?: string;
4730
+ start_after?: string;
4731
+ start_before?: string;
4732
+ start_time?: string;
4733
+ status?: string;
4734
+ status_in?: any[];
4735
+ success?: boolean;
4736
+ task?: string;
4737
+ task_name?: string;
4738
+ task_name_exact?: string;
4739
+ worker?: string;
4740
+ worker_id?: string;
4741
+ }): Promise<PaginatedTaskLogListList$1>;
4637
4742
  /**
4638
- * Clear all test data from Redis.
4639
- */
4640
- apiClearCreate(data: APIResponseRequest$1): Promise<APIResponse$1>;
4641
- /**
4642
- * Clear all tasks from all Dramatiq queues.
4643
- */
4644
- apiClearQueuesCreate(data: APIResponseRequest$1): Promise<APIResponse$1>;
4645
- /**
4646
- * Purge all failed tasks from queues.
4647
- */
4648
- apiPurgeFailedCreate(data: APIResponseRequest$1): Promise<APIResponse$1>;
4649
- /**
4650
- * Manage queue operations (clear, purge, etc.).
4651
- */
4652
- apiQueuesManageCreate(data: QueueActionRequest$1): Promise<QueueAction$1>;
4653
- /**
4654
- * Get current status of all queues.
4655
- */
4656
- apiQueuesStatusRetrieve(): Promise<QueueStatus$1>;
4657
- /**
4658
- * Simulate test data for dashboard testing.
4743
+ * ViewSet for TaskLog monitoring. Provides read-only access to task
4744
+ * execution logs with filtering, searching, and statistics. Endpoints: GET
4745
+ * /api/tasks/logs/ - List all task logs GET /api/tasks/logs/{id}/ - Get
4746
+ * task log details GET /api/tasks/logs/stats/ - Get aggregated statistics
4747
+ * GET /api/tasks/logs/timeline/ - Get task execution timeline GET
4748
+ * /api/tasks/logs/overview/ - Get summary overview
4659
4749
  */
4660
- apiSimulateCreate(data: APIResponseRequest$1): Promise<APIResponse$1>;
4750
+ logsRetrieve(id: number): Promise<TaskLogDetail$1>;
4661
4751
  /**
4662
- * Get paginated task list with filtering.
4752
+ * Get related task logs (same job_id or task_name). Returns tasks that
4753
+ * share the same job_id or are retries of the same task.
4663
4754
  */
4664
- apiTasksListRetrieve(): Promise<APIResponse$1>;
4755
+ logsRelatedRetrieve(id: number): Promise<TaskLog$1>;
4665
4756
  /**
4666
- * Get task execution statistics.
4757
+ * Get summary overview of task system. Returns: { "total_tasks": 1500,
4758
+ * "active_queues": ["default", "high", "knowledge"], "recent_failures": 5,
4759
+ * "tasks_by_queue": { "default": 800, "high": 500, "knowledge": 200 },
4760
+ * "tasks_by_status": { "completed": 1450, "failed": 45, "in_progress": 5 }
4761
+ * }
4667
4762
  */
4668
- apiTasksStatsRetrieve(): Promise<TaskStatistics$1>;
4763
+ logsOverviewRetrieve(): Promise<TaskLog$1>;
4669
4764
  /**
4670
- * Get detailed list of workers.
4765
+ * Get aggregated task statistics. Query Parameters: period_hours (int):
4766
+ * Statistics period in hours (default: 24) task_name (str): Filter by
4767
+ * specific task name Returns: { "total": 150, "successful": 145, "failed":
4768
+ * 5, "in_progress": 2, "success_rate": 96.67, "avg_duration_ms": 1250,
4769
+ * "avg_duration_seconds": 1.25, "period_hours": 24 }
4671
4770
  */
4672
- apiWorkersListRetrieve(): Promise<APIResponse$1>;
4771
+ logsStatsRetrieve(): Promise<TaskLogStats$1>;
4673
4772
  /**
4674
- * Manage worker operations.
4773
+ * Get task execution timeline grouped by time intervals. Query Parameters:
4774
+ * period_hours (int): Timeline period in hours (default: 24) interval
4775
+ * (str): Grouping interval - 'hour', 'day' (default: 'hour') task_name
4776
+ * (str): Filter by specific task name Returns: [ { "timestamp":
4777
+ * "2025-10-30T10:00:00Z", "total": 15, "successful": 14, "failed": 1,
4778
+ * "avg_duration_ms": 1200 }, ... ]
4675
4779
  */
4676
- apiWorkersManageCreate(data: WorkerActionRequest$1): Promise<WorkerAction$1>;
4780
+ logsTimelineRetrieve(): Promise<TaskLog$1>;
4677
4781
  }
4678
4782
 
4679
4783
  /**
@@ -5007,56 +5111,6 @@ declare class APIClient {
5007
5111
  declare const OPENAPI_SCHEMA: {
5008
5112
  components: {
5009
5113
  schemas: {
5010
- APIResponse: {
5011
- description: string;
5012
- properties: {
5013
- data: {
5014
- additionalProperties: {};
5015
- description: string;
5016
- type: string;
5017
- };
5018
- error: {
5019
- description: string;
5020
- type: string;
5021
- };
5022
- message: {
5023
- description: string;
5024
- type: string;
5025
- };
5026
- success: {
5027
- description: string;
5028
- type: string;
5029
- };
5030
- };
5031
- required: string[];
5032
- type: string;
5033
- };
5034
- APIResponseRequest: {
5035
- description: string;
5036
- properties: {
5037
- data: {
5038
- additionalProperties: {};
5039
- description: string;
5040
- type: string;
5041
- };
5042
- error: {
5043
- description: string;
5044
- minLength: number;
5045
- type: string;
5046
- };
5047
- message: {
5048
- description: string;
5049
- minLength: number;
5050
- type: string;
5051
- };
5052
- success: {
5053
- description: string;
5054
- type: string;
5055
- };
5056
- };
5057
- required: string[];
5058
- type: string;
5059
- };
5060
5114
  APIZone: {
5061
5115
  description: string;
5062
5116
  properties: {
@@ -9507,6 +9561,61 @@ declare const OPENAPI_SCHEMA: {
9507
9561
  required: string[];
9508
9562
  type: string;
9509
9563
  };
9564
+ PaginatedTaskLogListList: {
9565
+ properties: {
9566
+ count: {
9567
+ description: string;
9568
+ example: number;
9569
+ type: string;
9570
+ };
9571
+ has_next: {
9572
+ description: string;
9573
+ example: boolean;
9574
+ type: string;
9575
+ };
9576
+ has_previous: {
9577
+ description: string;
9578
+ example: boolean;
9579
+ type: string;
9580
+ };
9581
+ next_page: {
9582
+ description: string;
9583
+ example: number;
9584
+ nullable: boolean;
9585
+ type: string;
9586
+ };
9587
+ page: {
9588
+ description: string;
9589
+ example: number;
9590
+ type: string;
9591
+ };
9592
+ page_size: {
9593
+ description: string;
9594
+ example: number;
9595
+ type: string;
9596
+ };
9597
+ pages: {
9598
+ description: string;
9599
+ example: number;
9600
+ type: string;
9601
+ };
9602
+ previous_page: {
9603
+ description: string;
9604
+ example: number;
9605
+ nullable: boolean;
9606
+ type: string;
9607
+ };
9608
+ results: {
9609
+ description: string;
9610
+ items: {
9611
+ $ref: string;
9612
+ };
9613
+ type: string;
9614
+ };
9615
+ };
9616
+ required: string[];
9617
+ type: string;
9618
+ };
9510
9619
  PaginatedTicketList: {
9511
9620
  properties: {
9512
9621
  count: {
@@ -10274,108 +10383,34 @@ declare const OPENAPI_SCHEMA: {
10274
10383
  title: string;
10275
10384
  type: string;
10276
10385
  };
10277
- QueueAction: {
10386
+ QuickAction: {
10278
10387
  description: string;
10279
10388
  properties: {
10280
- action: {
10389
+ category: {
10390
+ default: string;
10391
+ description: string;
10392
+ type: string;
10393
+ };
10394
+ color: {
10395
+ default: string;
10281
10396
  description: string;
10282
10397
  enum: string[];
10283
10398
  type: string;
10284
10399
  "x-spec-enum-id": string;
10285
10400
  };
10286
- queue_names: {
10401
+ description: {
10287
10402
  description: string;
10288
- items: {
10289
- type: string;
10290
- };
10291
10403
  type: string;
10292
10404
  };
10293
- };
10294
- required: string[];
10295
- type: string;
10296
- };
10297
- QueueActionRequest: {
10298
- description: string;
10299
- properties: {
10300
- action: {
10405
+ icon: {
10406
+ description: string;
10407
+ type: string;
10408
+ };
10409
+ link: {
10301
10410
  description: string;
10302
- enum: string[];
10303
10411
  type: string;
10304
- "x-spec-enum-id": string;
10305
10412
  };
10306
- queue_names: {
10307
- description: string;
10308
- items: {
10309
- minLength: number;
10310
- type: string;
10311
- };
10312
- type: string;
10313
- };
10314
- };
10315
- required: string[];
10316
- type: string;
10317
- };
10318
- QueueStatus: {
10319
- description: string;
10320
- properties: {
10321
- error: {
10322
- description: string;
10323
- type: string;
10324
- };
10325
- queues: {
10326
- additionalProperties: {
10327
- additionalProperties: {
10328
- type: string;
10329
- };
10330
- type: string;
10331
- };
10332
- description: string;
10333
- type: string;
10334
- };
10335
- redis_connected: {
10336
- description: string;
10337
- type: string;
10338
- };
10339
- timestamp: {
10340
- description: string;
10341
- type: string;
10342
- };
10343
- workers: {
10344
- description: string;
10345
- type: string;
10346
- };
10347
- };
10348
- required: string[];
10349
- type: string;
10350
- };
10351
- QuickAction: {
10352
- description: string;
10353
- properties: {
10354
- category: {
10355
- default: string;
10356
- description: string;
10357
- type: string;
10358
- };
10359
- color: {
10360
- default: string;
10361
- description: string;
10362
- enum: string[];
10363
- type: string;
10364
- "x-spec-enum-id": string;
10365
- };
10366
- description: {
10367
- description: string;
10368
- type: string;
10369
- };
10370
- icon: {
10371
- description: string;
10372
- type: string;
10373
- };
10374
- link: {
10375
- description: string;
10376
- type: string;
10377
- };
10378
- title: {
10413
+ title: {
10379
10414
  description: string;
10380
10415
  type: string;
10381
10416
  };
@@ -10731,263 +10766,594 @@ declare const OPENAPI_SCHEMA: {
10731
10766
  required: string[];
10732
10767
  type: string;
10733
10768
  };
10734
- TaskStatistics: {
10769
+ TaskLog: {
10735
10770
  description: string;
10736
10771
  properties: {
10737
- error: {
10772
+ duration_ms: {
10738
10773
  description: string;
10774
+ nullable: boolean;
10775
+ readOnly: boolean;
10739
10776
  type: string;
10740
10777
  };
10741
- recent_tasks: {
10778
+ duration_seconds: {
10742
10779
  description: string;
10743
- items: {
10744
- additionalProperties: {};
10745
- type: string;
10746
- };
10780
+ format: string;
10781
+ readOnly: boolean;
10747
10782
  type: string;
10748
10783
  };
10749
- statistics: {
10750
- additionalProperties: {
10751
- type: string;
10752
- };
10784
+ enqueue_time: {
10753
10785
  description: string;
10786
+ format: string;
10787
+ readOnly: boolean;
10754
10788
  type: string;
10755
10789
  };
10756
- timestamp: {
10790
+ expire_time: {
10757
10791
  description: string;
10792
+ format: string;
10793
+ nullable: boolean;
10794
+ readOnly: boolean;
10758
10795
  type: string;
10759
10796
  };
10760
- };
10761
- required: string[];
10762
- type: string;
10763
- };
10764
- TestEmailRequest: {
10765
- description: string;
10766
- properties: {
10767
- email: {
10797
+ finish_time: {
10798
+ description: string;
10768
10799
  format: string;
10769
- minLength: number;
10800
+ nullable: boolean;
10801
+ readOnly: boolean;
10770
10802
  type: string;
10771
10803
  };
10772
- message: {
10773
- default: string;
10774
- minLength: number;
10804
+ id: {
10805
+ readOnly: boolean;
10775
10806
  type: string;
10776
10807
  };
10777
- subject: {
10778
- default: string;
10779
- maxLength: number;
10780
- minLength: number;
10808
+ is_completed: {
10809
+ readOnly: boolean;
10781
10810
  type: string;
10782
10811
  };
10783
- };
10784
- required: string[];
10785
- type: string;
10786
- };
10787
- Ticket: {
10788
- properties: {
10789
- created_at: {
10790
- format: string;
10812
+ is_failed: {
10791
10813
  readOnly: boolean;
10792
10814
  type: string;
10793
10815
  };
10794
- status: {
10816
+ is_successful: {
10817
+ readOnly: boolean;
10818
+ type: string;
10819
+ };
10820
+ job_id: {
10795
10821
  description: string;
10796
- enum: string[];
10822
+ readOnly: boolean;
10797
10823
  type: string;
10798
- "x-spec-enum-id": string;
10799
10824
  };
10800
- subject: {
10801
- maxLength: number;
10825
+ job_retries: {
10826
+ description: string;
10827
+ readOnly: boolean;
10802
10828
  type: string;
10803
10829
  };
10804
- unanswered_messages_count: {
10830
+ job_retry: {
10805
10831
  description: string;
10806
10832
  readOnly: boolean;
10807
10833
  type: string;
10808
10834
  };
10809
- user: {
10835
+ queue_name: {
10836
+ description: string;
10837
+ readOnly: boolean;
10810
10838
  type: string;
10811
10839
  };
10812
- uuid: {
10840
+ start_time: {
10841
+ description: string;
10813
10842
  format: string;
10843
+ nullable: boolean;
10814
10844
  readOnly: boolean;
10815
10845
  type: string;
10816
10846
  };
10817
- };
10818
- required: string[];
10819
- type: string;
10820
- };
10821
- TicketRequest: {
10822
- properties: {
10823
10847
  status: {
10824
10848
  description: string;
10825
10849
  enum: string[];
10850
+ readOnly: boolean;
10826
10851
  type: string;
10827
10852
  "x-spec-enum-id": string;
10828
10853
  };
10829
- subject: {
10830
- maxLength: number;
10831
- minLength: number;
10832
- type: string;
10833
- };
10834
- user: {
10835
- type: string;
10836
- };
10837
- };
10838
- required: string[];
10839
- type: string;
10840
- };
10841
- TokenRefresh: {
10842
- properties: {
10843
- access: {
10854
+ success: {
10855
+ description: string;
10856
+ nullable: boolean;
10844
10857
  readOnly: boolean;
10845
10858
  type: string;
10846
10859
  };
10847
- refresh: {
10848
- type: string;
10849
- };
10850
- };
10851
- required: string[];
10852
- type: string;
10853
- };
10854
- TokenRefreshRequest: {
10855
- properties: {
10856
- refresh: {
10857
- minLength: number;
10860
+ task_name: {
10861
+ description: string;
10862
+ readOnly: boolean;
10858
10863
  type: string;
10859
10864
  };
10860
10865
  };
10861
10866
  required: string[];
10862
10867
  type: string;
10863
10868
  };
10864
- Transaction: {
10869
+ TaskLogDetail: {
10865
10870
  description: string;
10866
10871
  properties: {
10867
- amount_display: {
10872
+ args: {
10873
+ description: string;
10868
10874
  readOnly: boolean;
10869
- type: string;
10870
10875
  };
10871
- amount_usd: {
10876
+ created_at: {
10872
10877
  description: string;
10873
10878
  format: string;
10874
- pattern: string;
10875
10879
  readOnly: boolean;
10876
10880
  type: string;
10877
10881
  };
10878
- balance_after: {
10882
+ duration_ms: {
10879
10883
  description: string;
10880
- format: string;
10881
- pattern: string;
10884
+ nullable: boolean;
10882
10885
  readOnly: boolean;
10883
10886
  type: string;
10884
10887
  };
10885
- created_at: {
10888
+ duration_seconds: {
10886
10889
  description: string;
10887
10890
  format: string;
10888
10891
  readOnly: boolean;
10889
10892
  type: string;
10890
10893
  };
10891
- description: {
10894
+ enqueue_time: {
10892
10895
  description: string;
10896
+ format: string;
10893
10897
  readOnly: boolean;
10894
10898
  type: string;
10895
10899
  };
10896
- id: {
10900
+ error_message: {
10897
10901
  description: string;
10898
- format: string;
10902
+ nullable: boolean;
10899
10903
  readOnly: boolean;
10900
10904
  type: string;
10901
10905
  };
10902
- payment_id: {
10906
+ expire_time: {
10903
10907
  description: string;
10908
+ format: string;
10904
10909
  nullable: boolean;
10905
10910
  readOnly: boolean;
10906
10911
  type: string;
10907
10912
  };
10908
- transaction_type: {
10913
+ finish_time: {
10909
10914
  description: string;
10910
- enum: string[];
10915
+ format: string;
10916
+ nullable: boolean;
10911
10917
  readOnly: boolean;
10912
10918
  type: string;
10913
- "x-spec-enum-id": string;
10914
10919
  };
10915
- type_display: {
10920
+ id: {
10916
10921
  readOnly: boolean;
10917
10922
  type: string;
10918
10923
  };
10919
- };
10920
- required: string[];
10921
- type: string;
10922
- };
10923
- URLPattern: {
10924
- description: string;
10925
- properties: {
10926
- full_name: {
10924
+ job_id: {
10927
10925
  description: string;
10928
- nullable: boolean;
10926
+ readOnly: boolean;
10929
10927
  type: string;
10930
10928
  };
10931
- methods: {
10929
+ job_retries: {
10932
10930
  description: string;
10933
- items: {
10934
- type: string;
10935
- };
10931
+ readOnly: boolean;
10936
10932
  type: string;
10937
10933
  };
10938
- module: {
10934
+ job_retry: {
10939
10935
  description: string;
10940
- nullable: boolean;
10936
+ readOnly: boolean;
10941
10937
  type: string;
10942
10938
  };
10943
- name: {
10939
+ job_retry_after: {
10944
10940
  description: string;
10945
- nullable: boolean;
10941
+ readOnly: boolean;
10946
10942
  type: string;
10947
10943
  };
10948
- namespace: {
10944
+ kwargs: {
10949
10945
  description: string;
10950
- nullable: boolean;
10951
- type: string;
10946
+ readOnly: boolean;
10952
10947
  };
10953
- pattern: {
10948
+ queue_name: {
10954
10949
  description: string;
10950
+ readOnly: boolean;
10955
10951
  type: string;
10956
10952
  };
10957
- view: {
10953
+ result: {
10958
10954
  description: string;
10959
10955
  nullable: boolean;
10956
+ readOnly: boolean;
10960
10957
  type: string;
10961
10958
  };
10962
- view_class: {
10959
+ start_time: {
10963
10960
  description: string;
10961
+ format: string;
10964
10962
  nullable: boolean;
10963
+ readOnly: boolean;
10965
10964
  type: string;
10966
10965
  };
10967
- };
10968
- required: string[];
10969
- type: string;
10970
- };
10971
- URLsList: {
10972
- description: string;
10973
- properties: {
10974
- base_url: {
10966
+ status: {
10975
10967
  description: string;
10968
+ enum: string[];
10969
+ readOnly: boolean;
10976
10970
  type: string;
10971
+ "x-spec-enum-id": string;
10977
10972
  };
10978
- service: {
10979
- description: string;
10973
+ status_display: {
10974
+ readOnly: boolean;
10980
10975
  type: string;
10981
10976
  };
10982
- status: {
10977
+ success: {
10983
10978
  description: string;
10979
+ nullable: boolean;
10980
+ readOnly: boolean;
10984
10981
  type: string;
10985
10982
  };
10986
- total_urls: {
10983
+ task_name: {
10987
10984
  description: string;
10985
+ readOnly: boolean;
10988
10986
  type: string;
10989
10987
  };
10990
- urls: {
10988
+ updated_at: {
10989
+ description: string;
10990
+ format: string;
10991
+ readOnly: boolean;
10992
+ type: string;
10993
+ };
10994
+ user: {
10995
+ description: string;
10996
+ nullable: boolean;
10997
+ readOnly: boolean;
10998
+ type: string;
10999
+ };
11000
+ user_display: {
11001
+ description: string;
11002
+ readOnly: boolean;
11003
+ type: string;
11004
+ };
11005
+ worker_id: {
11006
+ description: string;
11007
+ nullable: boolean;
11008
+ readOnly: boolean;
11009
+ type: string;
11010
+ };
11011
+ };
11012
+ required: string[];
11013
+ type: string;
11014
+ };
11015
+ TaskLogList: {
11016
+ description: string;
11017
+ properties: {
11018
+ duration_ms: {
11019
+ description: string;
11020
+ nullable: boolean;
11021
+ readOnly: boolean;
11022
+ type: string;
11023
+ };
11024
+ enqueue_time: {
11025
+ description: string;
11026
+ format: string;
11027
+ readOnly: boolean;
11028
+ type: string;
11029
+ };
11030
+ finish_time: {
11031
+ description: string;
11032
+ format: string;
11033
+ nullable: boolean;
11034
+ readOnly: boolean;
11035
+ type: string;
11036
+ };
11037
+ id: {
11038
+ readOnly: boolean;
11039
+ type: string;
11040
+ };
11041
+ job_id: {
11042
+ description: string;
11043
+ readOnly: boolean;
11044
+ type: string;
11045
+ };
11046
+ job_retries: {
11047
+ description: string;
11048
+ readOnly: boolean;
11049
+ type: string;
11050
+ };
11051
+ queue_name: {
11052
+ description: string;
11053
+ readOnly: boolean;
11054
+ type: string;
11055
+ };
11056
+ start_time: {
11057
+ description: string;
11058
+ format: string;
11059
+ nullable: boolean;
11060
+ readOnly: boolean;
11061
+ type: string;
11062
+ };
11063
+ status: {
11064
+ description: string;
11065
+ enum: string[];
11066
+ readOnly: boolean;
11067
+ type: string;
11068
+ "x-spec-enum-id": string;
11069
+ };
11070
+ status_display: {
11071
+ readOnly: boolean;
11072
+ type: string;
11073
+ };
11074
+ success: {
11075
+ description: string;
11076
+ nullable: boolean;
11077
+ readOnly: boolean;
11078
+ type: string;
11079
+ };
11080
+ task_name: {
11081
+ description: string;
11082
+ readOnly: boolean;
11083
+ type: string;
11084
+ };
11085
+ };
11086
+ required: string[];
11087
+ type: string;
11088
+ };
11089
+ TaskLogStats: {
11090
+ description: string;
11091
+ properties: {
11092
+ avg_duration_ms: {
11093
+ description: string;
11094
+ type: string;
11095
+ };
11096
+ avg_duration_seconds: {
11097
+ description: string;
11098
+ format: string;
11099
+ type: string;
11100
+ };
11101
+ failed: {
11102
+ description: string;
11103
+ type: string;
11104
+ };
11105
+ in_progress: {
11106
+ description: string;
11107
+ type: string;
11108
+ };
11109
+ period_hours: {
11110
+ description: string;
11111
+ type: string;
11112
+ };
11113
+ success_rate: {
11114
+ description: string;
11115
+ format: string;
11116
+ type: string;
11117
+ };
11118
+ successful: {
11119
+ description: string;
11120
+ type: string;
11121
+ };
11122
+ total: {
11123
+ description: string;
11124
+ type: string;
11125
+ };
11126
+ };
11127
+ required: string[];
11128
+ type: string;
11129
+ };
11130
+ TestEmailRequest: {
11131
+ description: string;
11132
+ properties: {
11133
+ email: {
11134
+ format: string;
11135
+ minLength: number;
11136
+ type: string;
11137
+ };
11138
+ message: {
11139
+ default: string;
11140
+ minLength: number;
11141
+ type: string;
11142
+ };
11143
+ subject: {
11144
+ default: string;
11145
+ maxLength: number;
11146
+ minLength: number;
11147
+ type: string;
11148
+ };
11149
+ };
11150
+ required: string[];
11151
+ type: string;
11152
+ };
11153
+ Ticket: {
11154
+ properties: {
11155
+ created_at: {
11156
+ format: string;
11157
+ readOnly: boolean;
11158
+ type: string;
11159
+ };
11160
+ status: {
11161
+ description: string;
11162
+ enum: string[];
11163
+ type: string;
11164
+ "x-spec-enum-id": string;
11165
+ };
11166
+ subject: {
11167
+ maxLength: number;
11168
+ type: string;
11169
+ };
11170
+ unanswered_messages_count: {
11171
+ description: string;
11172
+ readOnly: boolean;
11173
+ type: string;
11174
+ };
11175
+ user: {
11176
+ type: string;
11177
+ };
11178
+ uuid: {
11179
+ format: string;
11180
+ readOnly: boolean;
11181
+ type: string;
11182
+ };
11183
+ };
11184
+ required: string[];
11185
+ type: string;
11186
+ };
11187
+ TicketRequest: {
11188
+ properties: {
11189
+ status: {
11190
+ description: string;
11191
+ enum: string[];
11192
+ type: string;
11193
+ "x-spec-enum-id": string;
11194
+ };
11195
+ subject: {
11196
+ maxLength: number;
11197
+ minLength: number;
11198
+ type: string;
11199
+ };
11200
+ user: {
11201
+ type: string;
11202
+ };
11203
+ };
11204
+ required: string[];
11205
+ type: string;
11206
+ };
11207
+ TokenRefresh: {
11208
+ properties: {
11209
+ access: {
11210
+ readOnly: boolean;
11211
+ type: string;
11212
+ };
11213
+ refresh: {
11214
+ type: string;
11215
+ };
11216
+ };
11217
+ required: string[];
11218
+ type: string;
11219
+ };
11220
+ TokenRefreshRequest: {
11221
+ properties: {
11222
+ refresh: {
11223
+ minLength: number;
11224
+ type: string;
11225
+ };
11226
+ };
11227
+ required: string[];
11228
+ type: string;
11229
+ };
11230
+ Transaction: {
11231
+ description: string;
11232
+ properties: {
11233
+ amount_display: {
11234
+ readOnly: boolean;
11235
+ type: string;
11236
+ };
11237
+ amount_usd: {
11238
+ description: string;
11239
+ format: string;
11240
+ pattern: string;
11241
+ readOnly: boolean;
11242
+ type: string;
11243
+ };
11244
+ balance_after: {
11245
+ description: string;
11246
+ format: string;
11247
+ pattern: string;
11248
+ readOnly: boolean;
11249
+ type: string;
11250
+ };
11251
+ created_at: {
11252
+ description: string;
11253
+ format: string;
11254
+ readOnly: boolean;
11255
+ type: string;
11256
+ };
11257
+ description: {
11258
+ description: string;
11259
+ readOnly: boolean;
11260
+ type: string;
11261
+ };
11262
+ id: {
11263
+ description: string;
11264
+ format: string;
11265
+ readOnly: boolean;
11266
+ type: string;
11267
+ };
11268
+ payment_id: {
11269
+ description: string;
11270
+ nullable: boolean;
11271
+ readOnly: boolean;
11272
+ type: string;
11273
+ };
11274
+ transaction_type: {
11275
+ description: string;
11276
+ enum: string[];
11277
+ readOnly: boolean;
11278
+ type: string;
11279
+ "x-spec-enum-id": string;
11280
+ };
11281
+ type_display: {
11282
+ readOnly: boolean;
11283
+ type: string;
11284
+ };
11285
+ };
11286
+ required: string[];
11287
+ type: string;
11288
+ };
11289
+ URLPattern: {
11290
+ description: string;
11291
+ properties: {
11292
+ full_name: {
11293
+ description: string;
11294
+ nullable: boolean;
11295
+ type: string;
11296
+ };
11297
+ methods: {
11298
+ description: string;
11299
+ items: {
11300
+ type: string;
11301
+ };
11302
+ type: string;
11303
+ };
11304
+ module: {
11305
+ description: string;
11306
+ nullable: boolean;
11307
+ type: string;
11308
+ };
11309
+ name: {
11310
+ description: string;
11311
+ nullable: boolean;
11312
+ type: string;
11313
+ };
11314
+ namespace: {
11315
+ description: string;
11316
+ nullable: boolean;
11317
+ type: string;
11318
+ };
11319
+ pattern: {
11320
+ description: string;
11321
+ type: string;
11322
+ };
11323
+ view: {
11324
+ description: string;
11325
+ nullable: boolean;
11326
+ type: string;
11327
+ };
11328
+ view_class: {
11329
+ description: string;
11330
+ nullable: boolean;
11331
+ type: string;
11332
+ };
11333
+ };
11334
+ required: string[];
11335
+ type: string;
11336
+ };
11337
+ URLsList: {
11338
+ description: string;
11339
+ properties: {
11340
+ base_url: {
11341
+ description: string;
11342
+ type: string;
11343
+ };
11344
+ service: {
11345
+ description: string;
11346
+ type: string;
11347
+ };
11348
+ status: {
11349
+ description: string;
11350
+ type: string;
11351
+ };
11352
+ total_urls: {
11353
+ description: string;
11354
+ type: string;
11355
+ };
11356
+ urls: {
10991
11357
  description: string;
10992
11358
  items: {
10993
11359
  $ref: string;
@@ -11222,67 +11588,13 @@ declare const OPENAPI_SCHEMA: {
11222
11588
  readOnly: boolean;
11223
11589
  type: string;
11224
11590
  };
11225
- vectorization_rate: {
11226
- format: string;
11227
- readOnly: boolean;
11228
- type: string;
11229
- };
11230
- vectorized_chunks: {
11231
- readOnly: boolean;
11232
- type: string;
11233
- };
11234
- };
11235
- required: string[];
11236
- type: string;
11237
- };
11238
- WorkerAction: {
11239
- description: string;
11240
- properties: {
11241
- action: {
11242
- description: string;
11243
- enum: string[];
11244
- type: string;
11245
- "x-spec-enum-id": string;
11246
- };
11247
- processes: {
11248
- default: number;
11249
- description: string;
11250
- maximum: number;
11251
- minimum: number;
11252
- type: string;
11253
- };
11254
- threads: {
11255
- default: number;
11256
- description: string;
11257
- maximum: number;
11258
- minimum: number;
11259
- type: string;
11260
- };
11261
- };
11262
- required: string[];
11263
- type: string;
11264
- };
11265
- WorkerActionRequest: {
11266
- description: string;
11267
- properties: {
11268
- action: {
11269
- description: string;
11270
- enum: string[];
11271
- type: string;
11272
- "x-spec-enum-id": string;
11273
- };
11274
- processes: {
11275
- default: number;
11276
- description: string;
11277
- maximum: number;
11278
- minimum: number;
11591
+ vectorization_rate: {
11592
+ format: string;
11593
+ readOnly: boolean;
11279
11594
  type: string;
11280
11595
  };
11281
- threads: {
11282
- default: number;
11283
- description: string;
11284
- maximum: number;
11285
- minimum: number;
11596
+ vectorized_chunks: {
11597
+ readOnly: boolean;
11286
11598
  type: string;
11287
11599
  };
11288
11600
  };
@@ -17263,255 +17575,7 @@ declare const OPENAPI_SCHEMA: {
17263
17575
  format: string;
17264
17576
  type: string;
17265
17577
  };
17266
- }[];
17267
- requestBody: {
17268
- content: {
17269
- "application/json": {
17270
- schema: {
17271
- $ref: string;
17272
- };
17273
- };
17274
- "application/x-www-form-urlencoded": {
17275
- schema: {
17276
- $ref: string;
17277
- };
17278
- };
17279
- "multipart/form-data": {
17280
- schema: {
17281
- $ref: string;
17282
- };
17283
- };
17284
- };
17285
- required: boolean;
17286
- };
17287
- responses: {
17288
- "200": {
17289
- content: {
17290
- "application/json": {
17291
- schema: {
17292
- $ref: string;
17293
- };
17294
- };
17295
- };
17296
- description: string;
17297
- };
17298
- };
17299
- security: {
17300
- jwtAuth: any[];
17301
- }[];
17302
- tags: string[];
17303
- "x-async-capable": boolean;
17304
- };
17305
- };
17306
- "/cfg/support/tickets/{uuid}/": {
17307
- delete: {
17308
- description: string;
17309
- operationId: string;
17310
- parameters: {
17311
- description: string;
17312
- in: string;
17313
- name: string;
17314
- required: boolean;
17315
- schema: {
17316
- format: string;
17317
- type: string;
17318
- };
17319
- }[];
17320
- responses: {
17321
- "204": {
17322
- description: string;
17323
- };
17324
- };
17325
- security: {
17326
- jwtAuth: any[];
17327
- }[];
17328
- tags: string[];
17329
- "x-async-capable": boolean;
17330
- };
17331
- get: {
17332
- description: string;
17333
- operationId: string;
17334
- parameters: {
17335
- description: string;
17336
- in: string;
17337
- name: string;
17338
- required: boolean;
17339
- schema: {
17340
- format: string;
17341
- type: string;
17342
- };
17343
- }[];
17344
- responses: {
17345
- "200": {
17346
- content: {
17347
- "application/json": {
17348
- schema: {
17349
- $ref: string;
17350
- };
17351
- };
17352
- };
17353
- description: string;
17354
- };
17355
- };
17356
- security: {
17357
- jwtAuth: any[];
17358
- }[];
17359
- tags: string[];
17360
- "x-async-capable": boolean;
17361
- };
17362
- patch: {
17363
- description: string;
17364
- operationId: string;
17365
- parameters: {
17366
- description: string;
17367
- in: string;
17368
- name: string;
17369
- required: boolean;
17370
- schema: {
17371
- format: string;
17372
- type: string;
17373
- };
17374
- }[];
17375
- requestBody: {
17376
- content: {
17377
- "application/json": {
17378
- schema: {
17379
- $ref: string;
17380
- };
17381
- };
17382
- "application/x-www-form-urlencoded": {
17383
- schema: {
17384
- $ref: string;
17385
- };
17386
- };
17387
- "multipart/form-data": {
17388
- schema: {
17389
- $ref: string;
17390
- };
17391
- };
17392
- };
17393
- };
17394
- responses: {
17395
- "200": {
17396
- content: {
17397
- "application/json": {
17398
- schema: {
17399
- $ref: string;
17400
- };
17401
- };
17402
- };
17403
- description: string;
17404
- };
17405
- };
17406
- security: {
17407
- jwtAuth: any[];
17408
- }[];
17409
- tags: string[];
17410
- "x-async-capable": boolean;
17411
- };
17412
- put: {
17413
- description: string;
17414
- operationId: string;
17415
- parameters: {
17416
- description: string;
17417
- in: string;
17418
- name: string;
17419
- required: boolean;
17420
- schema: {
17421
- format: string;
17422
- type: string;
17423
- };
17424
- }[];
17425
- requestBody: {
17426
- content: {
17427
- "application/json": {
17428
- schema: {
17429
- $ref: string;
17430
- };
17431
- };
17432
- "application/x-www-form-urlencoded": {
17433
- schema: {
17434
- $ref: string;
17435
- };
17436
- };
17437
- "multipart/form-data": {
17438
- schema: {
17439
- $ref: string;
17440
- };
17441
- };
17442
- };
17443
- required: boolean;
17444
- };
17445
- responses: {
17446
- "200": {
17447
- content: {
17448
- "application/json": {
17449
- schema: {
17450
- $ref: string;
17451
- };
17452
- };
17453
- };
17454
- description: string;
17455
- };
17456
- };
17457
- security: {
17458
- jwtAuth: any[];
17459
- }[];
17460
- tags: string[];
17461
- "x-async-capable": boolean;
17462
- };
17463
- };
17464
- "/cfg/tasks/api/clear-queues/": {
17465
- post: {
17466
- description: string;
17467
- operationId: string;
17468
- requestBody: {
17469
- content: {
17470
- "application/json": {
17471
- schema: {
17472
- $ref: string;
17473
- };
17474
- };
17475
- "application/x-www-form-urlencoded": {
17476
- schema: {
17477
- $ref: string;
17478
- };
17479
- };
17480
- "multipart/form-data": {
17481
- schema: {
17482
- $ref: string;
17483
- };
17484
- };
17485
- };
17486
- required: boolean;
17487
- };
17488
- responses: {
17489
- "200": {
17490
- content: {
17491
- "application/json": {
17492
- schema: {
17493
- $ref: string;
17494
- };
17495
- };
17496
- };
17497
- description: string;
17498
- };
17499
- };
17500
- security: ({
17501
- cookieAuth: any[];
17502
- basicAuth?: undefined;
17503
- } | {
17504
- basicAuth: any[];
17505
- cookieAuth?: undefined;
17506
- })[];
17507
- tags: string[];
17508
- "x-async-capable": boolean;
17509
- };
17510
- };
17511
- "/cfg/tasks/api/clear/": {
17512
- post: {
17513
- description: string;
17514
- operationId: string;
17578
+ }[];
17515
17579
  requestBody: {
17516
17580
  content: {
17517
17581
  "application/json": {
@@ -17544,21 +17608,82 @@ declare const OPENAPI_SCHEMA: {
17544
17608
  description: string;
17545
17609
  };
17546
17610
  };
17547
- security: ({
17548
- cookieAuth: any[];
17549
- basicAuth?: undefined;
17550
- } | {
17551
- basicAuth: any[];
17552
- cookieAuth?: undefined;
17553
- })[];
17611
+ security: {
17612
+ jwtAuth: any[];
17613
+ }[];
17554
17614
  tags: string[];
17555
17615
  "x-async-capable": boolean;
17556
17616
  };
17557
17617
  };
17558
- "/cfg/tasks/api/purge-failed/": {
17559
- post: {
17618
+ "/cfg/support/tickets/{uuid}/": {
17619
+ delete: {
17620
+ description: string;
17621
+ operationId: string;
17622
+ parameters: {
17623
+ description: string;
17624
+ in: string;
17625
+ name: string;
17626
+ required: boolean;
17627
+ schema: {
17628
+ format: string;
17629
+ type: string;
17630
+ };
17631
+ }[];
17632
+ responses: {
17633
+ "204": {
17634
+ description: string;
17635
+ };
17636
+ };
17637
+ security: {
17638
+ jwtAuth: any[];
17639
+ }[];
17640
+ tags: string[];
17641
+ "x-async-capable": boolean;
17642
+ };
17643
+ get: {
17644
+ description: string;
17645
+ operationId: string;
17646
+ parameters: {
17647
+ description: string;
17648
+ in: string;
17649
+ name: string;
17650
+ required: boolean;
17651
+ schema: {
17652
+ format: string;
17653
+ type: string;
17654
+ };
17655
+ }[];
17656
+ responses: {
17657
+ "200": {
17658
+ content: {
17659
+ "application/json": {
17660
+ schema: {
17661
+ $ref: string;
17662
+ };
17663
+ };
17664
+ };
17665
+ description: string;
17666
+ };
17667
+ };
17668
+ security: {
17669
+ jwtAuth: any[];
17670
+ }[];
17671
+ tags: string[];
17672
+ "x-async-capable": boolean;
17673
+ };
17674
+ patch: {
17560
17675
  description: string;
17561
17676
  operationId: string;
17677
+ parameters: {
17678
+ description: string;
17679
+ in: string;
17680
+ name: string;
17681
+ required: boolean;
17682
+ schema: {
17683
+ format: string;
17684
+ type: string;
17685
+ };
17686
+ }[];
17562
17687
  requestBody: {
17563
17688
  content: {
17564
17689
  "application/json": {
@@ -17577,7 +17702,6 @@ declare const OPENAPI_SCHEMA: {
17577
17702
  };
17578
17703
  };
17579
17704
  };
17580
- required: boolean;
17581
17705
  };
17582
17706
  responses: {
17583
17707
  "200": {
@@ -17591,21 +17715,25 @@ declare const OPENAPI_SCHEMA: {
17591
17715
  description: string;
17592
17716
  };
17593
17717
  };
17594
- security: ({
17595
- cookieAuth: any[];
17596
- basicAuth?: undefined;
17597
- } | {
17598
- basicAuth: any[];
17599
- cookieAuth?: undefined;
17600
- })[];
17718
+ security: {
17719
+ jwtAuth: any[];
17720
+ }[];
17601
17721
  tags: string[];
17602
17722
  "x-async-capable": boolean;
17603
17723
  };
17604
- };
17605
- "/cfg/tasks/api/queues/manage/": {
17606
- post: {
17724
+ put: {
17607
17725
  description: string;
17608
17726
  operationId: string;
17727
+ parameters: {
17728
+ description: string;
17729
+ in: string;
17730
+ name: string;
17731
+ required: boolean;
17732
+ schema: {
17733
+ format: string;
17734
+ type: string;
17735
+ };
17736
+ }[];
17609
17737
  requestBody: {
17610
17738
  content: {
17611
17739
  "application/json": {
@@ -17638,68 +17766,86 @@ declare const OPENAPI_SCHEMA: {
17638
17766
  description: string;
17639
17767
  };
17640
17768
  };
17641
- security: ({
17642
- cookieAuth: any[];
17643
- basicAuth?: undefined;
17644
- } | {
17645
- basicAuth: any[];
17646
- cookieAuth?: undefined;
17647
- })[];
17769
+ security: {
17770
+ jwtAuth: any[];
17771
+ }[];
17648
17772
  tags: string[];
17649
17773
  "x-async-capable": boolean;
17650
17774
  };
17651
17775
  };
17652
- "/cfg/tasks/api/queues/status/": {
17776
+ "/cfg/tasks/logs/": {
17653
17777
  get: {
17654
17778
  description: string;
17655
17779
  operationId: string;
17656
- responses: {
17657
- "200": {
17658
- content: {
17659
- "application/json": {
17660
- schema: {
17661
- $ref: string;
17662
- };
17663
- };
17664
- };
17665
- description: string;
17780
+ parameters: ({
17781
+ in: string;
17782
+ name: string;
17783
+ schema: {
17784
+ format: string;
17785
+ type: string;
17786
+ items?: undefined;
17666
17787
  };
17667
- };
17668
- security: ({
17669
- cookieAuth: any[];
17670
- basicAuth?: undefined;
17788
+ description?: undefined;
17789
+ required?: undefined;
17790
+ explode?: undefined;
17791
+ style?: undefined;
17671
17792
  } | {
17672
- basicAuth: any[];
17673
- cookieAuth?: undefined;
17674
- })[];
17675
- tags: string[];
17676
- "x-async-capable": boolean;
17677
- };
17678
- };
17679
- "/cfg/tasks/api/simulate/": {
17680
- post: {
17681
- description: string;
17682
- operationId: string;
17683
- requestBody: {
17684
- content: {
17685
- "application/json": {
17686
- schema: {
17687
- $ref: string;
17688
- };
17689
- };
17690
- "application/x-www-form-urlencoded": {
17691
- schema: {
17692
- $ref: string;
17693
- };
17793
+ in: string;
17794
+ name: string;
17795
+ schema: {
17796
+ type: string;
17797
+ format?: undefined;
17798
+ items?: undefined;
17799
+ };
17800
+ description?: undefined;
17801
+ required?: undefined;
17802
+ explode?: undefined;
17803
+ style?: undefined;
17804
+ } | {
17805
+ description: string;
17806
+ in: string;
17807
+ name: string;
17808
+ required: boolean;
17809
+ schema: {
17810
+ type: string;
17811
+ format?: undefined;
17812
+ items?: undefined;
17813
+ };
17814
+ explode?: undefined;
17815
+ style?: undefined;
17816
+ } | {
17817
+ description: string;
17818
+ explode: boolean;
17819
+ in: string;
17820
+ name: string;
17821
+ schema: {
17822
+ items: {
17823
+ type: string;
17824
+ enum?: undefined;
17825
+ "x-spec-enum-id"?: undefined;
17694
17826
  };
17695
- "multipart/form-data": {
17696
- schema: {
17697
- $ref: string;
17698
- };
17827
+ type: string;
17828
+ format?: undefined;
17829
+ };
17830
+ style: string;
17831
+ required?: undefined;
17832
+ } | {
17833
+ description: string;
17834
+ explode: boolean;
17835
+ in: string;
17836
+ name: string;
17837
+ schema: {
17838
+ items: {
17839
+ enum: string[];
17840
+ type: string;
17841
+ "x-spec-enum-id": string;
17699
17842
  };
17843
+ type: string;
17844
+ format?: undefined;
17700
17845
  };
17701
- required: boolean;
17702
- };
17846
+ style: string;
17847
+ required?: undefined;
17848
+ })[];
17703
17849
  responses: {
17704
17850
  "200": {
17705
17851
  content: {
@@ -17713,17 +17859,15 @@ declare const OPENAPI_SCHEMA: {
17713
17859
  };
17714
17860
  };
17715
17861
  security: ({
17716
- cookieAuth: any[];
17717
- basicAuth?: undefined;
17862
+ jwtAuth: any[];
17718
17863
  } | {
17719
- basicAuth: any[];
17720
- cookieAuth?: undefined;
17864
+ jwtAuth?: undefined;
17721
17865
  })[];
17722
17866
  tags: string[];
17723
17867
  "x-async-capable": boolean;
17724
17868
  };
17725
17869
  };
17726
- "/cfg/tasks/api/tasks/list/": {
17870
+ "/cfg/tasks/logs/overview/": {
17727
17871
  get: {
17728
17872
  description: string;
17729
17873
  operationId: string;
@@ -17740,17 +17884,15 @@ declare const OPENAPI_SCHEMA: {
17740
17884
  };
17741
17885
  };
17742
17886
  security: ({
17743
- cookieAuth: any[];
17744
- basicAuth?: undefined;
17887
+ jwtAuth: any[];
17745
17888
  } | {
17746
- basicAuth: any[];
17747
- cookieAuth?: undefined;
17889
+ jwtAuth?: undefined;
17748
17890
  })[];
17749
17891
  tags: string[];
17750
17892
  "x-async-capable": boolean;
17751
17893
  };
17752
17894
  };
17753
- "/cfg/tasks/api/tasks/stats/": {
17895
+ "/cfg/tasks/logs/stats/": {
17754
17896
  get: {
17755
17897
  description: string;
17756
17898
  operationId: string;
@@ -17767,17 +17909,15 @@ declare const OPENAPI_SCHEMA: {
17767
17909
  };
17768
17910
  };
17769
17911
  security: ({
17770
- cookieAuth: any[];
17771
- basicAuth?: undefined;
17912
+ jwtAuth: any[];
17772
17913
  } | {
17773
- basicAuth: any[];
17774
- cookieAuth?: undefined;
17914
+ jwtAuth?: undefined;
17775
17915
  })[];
17776
17916
  tags: string[];
17777
17917
  "x-async-capable": boolean;
17778
17918
  };
17779
17919
  };
17780
- "/cfg/tasks/api/workers/list/": {
17920
+ "/cfg/tasks/logs/timeline/": {
17781
17921
  get: {
17782
17922
  description: string;
17783
17923
  operationId: string;
@@ -17794,40 +17934,61 @@ declare const OPENAPI_SCHEMA: {
17794
17934
  };
17795
17935
  };
17796
17936
  security: ({
17797
- cookieAuth: any[];
17798
- basicAuth?: undefined;
17937
+ jwtAuth: any[];
17799
17938
  } | {
17800
- basicAuth: any[];
17801
- cookieAuth?: undefined;
17939
+ jwtAuth?: undefined;
17802
17940
  })[];
17803
17941
  tags: string[];
17804
17942
  "x-async-capable": boolean;
17805
17943
  };
17806
17944
  };
17807
- "/cfg/tasks/api/workers/manage/": {
17808
- post: {
17945
+ "/cfg/tasks/logs/{id}/": {
17946
+ get: {
17809
17947
  description: string;
17810
17948
  operationId: string;
17811
- requestBody: {
17812
- content: {
17813
- "application/json": {
17814
- schema: {
17815
- $ref: string;
17816
- };
17817
- };
17818
- "application/x-www-form-urlencoded": {
17819
- schema: {
17820
- $ref: string;
17821
- };
17822
- };
17823
- "multipart/form-data": {
17824
- schema: {
17825
- $ref: string;
17949
+ parameters: {
17950
+ description: string;
17951
+ in: string;
17952
+ name: string;
17953
+ required: boolean;
17954
+ schema: {
17955
+ type: string;
17956
+ };
17957
+ }[];
17958
+ responses: {
17959
+ "200": {
17960
+ content: {
17961
+ "application/json": {
17962
+ schema: {
17963
+ $ref: string;
17964
+ };
17826
17965
  };
17827
17966
  };
17967
+ description: string;
17828
17968
  };
17829
- required: boolean;
17830
17969
  };
17970
+ security: ({
17971
+ jwtAuth: any[];
17972
+ } | {
17973
+ jwtAuth?: undefined;
17974
+ })[];
17975
+ tags: string[];
17976
+ "x-async-capable": boolean;
17977
+ };
17978
+ };
17979
+ "/cfg/tasks/logs/{id}/related/": {
17980
+ get: {
17981
+ description: string;
17982
+ operationId: string;
17983
+ parameters: {
17984
+ description: string;
17985
+ in: string;
17986
+ name: string;
17987
+ required: boolean;
17988
+ schema: {
17989
+ type: string;
17990
+ };
17991
+ }[];
17831
17992
  responses: {
17832
17993
  "200": {
17833
17994
  content: {
@@ -17841,11 +18002,9 @@ declare const OPENAPI_SCHEMA: {
17841
18002
  };
17842
18003
  };
17843
18004
  security: ({
17844
- cookieAuth: any[];
17845
- basicAuth?: undefined;
18005
+ jwtAuth: any[];
17846
18006
  } | {
17847
- basicAuth: any[];
17848
- cookieAuth?: undefined;
18007
+ jwtAuth?: undefined;
17849
18008
  })[];
17850
18009
  tags: string[];
17851
18010
  "x-async-capable": boolean;
@@ -17906,48 +18065,6 @@ declare class MemoryStorageAdapter implements StorageAdapter {
17906
18065
  removeItem(key: string): void;
17907
18066
  }
17908
18067
 
17909
- /**
17910
- * Zod schema for APIResponse
17911
- *
17912
- * This schema provides runtime validation and type inference.
17913
- * * Standard API response serializer.
17914
- * */
17915
-
17916
- /**
17917
- * Standard API response serializer.
17918
- */
17919
- declare const APIResponseSchema: z.ZodObject<{
17920
- success: z.ZodBoolean;
17921
- message: z.ZodOptional<z.ZodString>;
17922
- error: z.ZodOptional<z.ZodString>;
17923
- data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
17924
- }, z.core.$strip>;
17925
- /**
17926
- * Infer TypeScript type from Zod schema
17927
- */
17928
- type APIResponse = z.infer<typeof APIResponseSchema>;
17929
-
17930
- /**
17931
- * Zod schema for APIResponseRequest
17932
- *
17933
- * This schema provides runtime validation and type inference.
17934
- * * Standard API response serializer.
17935
- * */
17936
-
17937
- /**
17938
- * Standard API response serializer.
17939
- */
17940
- declare const APIResponseRequestSchema: z.ZodObject<{
17941
- success: z.ZodBoolean;
17942
- message: z.ZodOptional<z.ZodString>;
17943
- error: z.ZodOptional<z.ZodString>;
17944
- data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
17945
- }, z.core.$strip>;
17946
- /**
17947
- * Infer TypeScript type from Zod schema
17948
- */
17949
- type APIResponseRequest = z.infer<typeof APIResponseRequestSchema>;
17950
-
17951
18068
  /**
17952
18069
  * Zod schema for APIZone
17953
18070
  *
@@ -20899,6 +21016,35 @@ declare const PaginatedPublicDocumentListListSchema: z.ZodObject<{
20899
21016
  */
20900
21017
  type PaginatedPublicDocumentListList = z.infer<typeof PaginatedPublicDocumentListListSchema>;
20901
21018
 
21019
+ declare const PaginatedTaskLogListListSchema: z.ZodObject<{
21020
+ count: z.ZodInt;
21021
+ page: z.ZodInt;
21022
+ pages: z.ZodInt;
21023
+ page_size: z.ZodInt;
21024
+ has_next: z.ZodBoolean;
21025
+ has_previous: z.ZodBoolean;
21026
+ next_page: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
21027
+ previous_page: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
21028
+ results: z.ZodArray<z.ZodObject<{
21029
+ id: z.ZodInt;
21030
+ job_id: z.ZodString;
21031
+ task_name: z.ZodString;
21032
+ queue_name: z.ZodString;
21033
+ status: z.ZodEnum<typeof TaskLogListStatus>;
21034
+ status_display: z.ZodString;
21035
+ success: z.ZodNullable<z.ZodBoolean>;
21036
+ job_retries: z.ZodInt;
21037
+ duration_ms: z.ZodNullable<z.ZodInt>;
21038
+ enqueue_time: z.ZodISODateTime;
21039
+ start_time: z.ZodNullable<z.ZodISODateTime>;
21040
+ finish_time: z.ZodNullable<z.ZodISODateTime>;
21041
+ }, z.core.$strip>>;
21042
+ }, z.core.$strip>;
21043
+ /**
21044
+ * Infer TypeScript type from Zod schema
21045
+ */
21046
+ type PaginatedTaskLogListList = z.infer<typeof PaginatedTaskLogListListSchema>;
21047
+
20902
21048
  declare const PaginatedTicketListSchema: z.ZodObject<{
20903
21049
  count: z.ZodInt;
20904
21050
  page: z.ZodInt;
@@ -21363,66 +21509,6 @@ declare const PublishTestResponseSchema: z.ZodObject<{
21363
21509
  */
21364
21510
  type PublishTestResponse = z.infer<typeof PublishTestResponseSchema>;
21365
21511
 
21366
- /**
21367
- * Zod schema for QueueAction
21368
- *
21369
- * This schema provides runtime validation and type inference.
21370
- * * Serializer for queue management actions.
21371
- * */
21372
-
21373
- /**
21374
- * Serializer for queue management actions.
21375
- */
21376
- declare const QueueActionSchema: z.ZodObject<{
21377
- action: z.ZodEnum<typeof QueueActionAction>;
21378
- queue_names: z.ZodOptional<z.ZodArray<z.ZodString>>;
21379
- }, z.core.$strip>;
21380
- /**
21381
- * Infer TypeScript type from Zod schema
21382
- */
21383
- type QueueAction = z.infer<typeof QueueActionSchema>;
21384
-
21385
- /**
21386
- * Zod schema for QueueActionRequest
21387
- *
21388
- * This schema provides runtime validation and type inference.
21389
- * * Serializer for queue management actions.
21390
- * */
21391
-
21392
- /**
21393
- * Serializer for queue management actions.
21394
- */
21395
- declare const QueueActionRequestSchema: z.ZodObject<{
21396
- action: z.ZodEnum<typeof QueueActionRequestAction>;
21397
- queue_names: z.ZodOptional<z.ZodArray<z.ZodString>>;
21398
- }, z.core.$strip>;
21399
- /**
21400
- * Infer TypeScript type from Zod schema
21401
- */
21402
- type QueueActionRequest = z.infer<typeof QueueActionRequestSchema>;
21403
-
21404
- /**
21405
- * Zod schema for QueueStatus
21406
- *
21407
- * This schema provides runtime validation and type inference.
21408
- * * Serializer for queue status data.
21409
- * */
21410
-
21411
- /**
21412
- * Serializer for queue status data.
21413
- */
21414
- declare const QueueStatusSchema: z.ZodObject<{
21415
- queues: z.ZodRecord<z.ZodString, z.ZodAny>;
21416
- workers: z.ZodInt;
21417
- redis_connected: z.ZodBoolean;
21418
- timestamp: z.ZodString;
21419
- error: z.ZodOptional<z.ZodString>;
21420
- }, z.core.$strip>;
21421
- /**
21422
- * Infer TypeScript type from Zod schema
21423
- */
21424
- type QueueStatus = z.infer<typeof QueueStatusSchema>;
21425
-
21426
21512
  /**
21427
21513
  * Zod schema for QuickAction
21428
21514
  *
@@ -21740,25 +21826,154 @@ declare const SystemMetricsSchema: z.ZodObject<{
21740
21826
  type SystemMetrics = z.infer<typeof SystemMetricsSchema>;
21741
21827
 
21742
21828
  /**
21743
- * Zod schema for TaskStatistics
21829
+ * Zod schema for TaskLog
21744
21830
  *
21745
21831
  * This schema provides runtime validation and type inference.
21746
- * * Serializer for task statistics data.
21832
+ * * Basic TaskLog serializer.
21833
+
21834
+ Used for list views with essential fields only.
21835
+ Includes computed properties matching ReArq response format.
21747
21836
  * */
21748
21837
 
21749
21838
  /**
21750
- * Serializer for task statistics data.
21839
+ * Basic TaskLog serializer.
21840
+
21841
+ Used for list views with essential fields only.
21842
+ Includes computed properties matching ReArq response format.
21751
21843
  */
21752
- declare const TaskStatisticsSchema: z.ZodObject<{
21753
- statistics: z.ZodRecord<z.ZodString, z.ZodAny>;
21754
- recent_tasks: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>>;
21755
- timestamp: z.ZodString;
21756
- error: z.ZodOptional<z.ZodString>;
21844
+ declare const TaskLogSchema: z.ZodObject<{
21845
+ id: z.ZodInt;
21846
+ job_id: z.ZodString;
21847
+ task_name: z.ZodString;
21848
+ queue_name: z.ZodString;
21849
+ status: z.ZodEnum<typeof TaskLogStatus>;
21850
+ success: z.ZodNullable<z.ZodBoolean>;
21851
+ duration_ms: z.ZodNullable<z.ZodInt>;
21852
+ duration_seconds: z.ZodNumber;
21853
+ job_retry: z.ZodInt;
21854
+ job_retries: z.ZodInt;
21855
+ enqueue_time: z.ZodISODateTime;
21856
+ expire_time: z.ZodNullable<z.ZodISODateTime>;
21857
+ start_time: z.ZodNullable<z.ZodISODateTime>;
21858
+ finish_time: z.ZodNullable<z.ZodISODateTime>;
21859
+ is_completed: z.ZodBoolean;
21860
+ is_successful: z.ZodBoolean;
21861
+ is_failed: z.ZodBoolean;
21862
+ }, z.core.$strip>;
21863
+ /**
21864
+ * Infer TypeScript type from Zod schema
21865
+ */
21866
+ type TaskLog = z.infer<typeof TaskLogSchema>;
21867
+
21868
+ /**
21869
+ * Zod schema for TaskLogDetail
21870
+ *
21871
+ * This schema provides runtime validation and type inference.
21872
+ * * Detailed TaskLog serializer.
21873
+
21874
+ Includes all fields including args, kwargs, result, error messages.
21875
+ Combines ReArq Job + JobResult data.
21876
+ * */
21877
+
21878
+ /**
21879
+ * Detailed TaskLog serializer.
21880
+
21881
+ Includes all fields including args, kwargs, result, error messages.
21882
+ Combines ReArq Job + JobResult data.
21883
+ */
21884
+ declare const TaskLogDetailSchema: z.ZodObject<{
21885
+ id: z.ZodInt;
21886
+ job_id: z.ZodString;
21887
+ task_name: z.ZodString;
21888
+ queue_name: z.ZodString;
21889
+ status: z.ZodEnum<typeof TaskLogDetailStatus>;
21890
+ status_display: z.ZodString;
21891
+ success: z.ZodNullable<z.ZodBoolean>;
21892
+ args: z.ZodString;
21893
+ kwargs: z.ZodString;
21894
+ result: z.ZodNullable<z.ZodString>;
21895
+ error_message: z.ZodNullable<z.ZodString>;
21896
+ duration_ms: z.ZodNullable<z.ZodInt>;
21897
+ duration_seconds: z.ZodNumber;
21898
+ job_retry: z.ZodInt;
21899
+ job_retries: z.ZodInt;
21900
+ job_retry_after: z.ZodInt;
21901
+ worker_id: z.ZodNullable<z.ZodString>;
21902
+ enqueue_time: z.ZodISODateTime;
21903
+ expire_time: z.ZodNullable<z.ZodISODateTime>;
21904
+ start_time: z.ZodNullable<z.ZodISODateTime>;
21905
+ finish_time: z.ZodNullable<z.ZodISODateTime>;
21906
+ created_at: z.ZodISODateTime;
21907
+ updated_at: z.ZodISODateTime;
21908
+ user: z.ZodNullable<z.ZodInt>;
21909
+ user_display: z.ZodString;
21910
+ }, z.core.$strip>;
21911
+ /**
21912
+ * Infer TypeScript type from Zod schema
21913
+ */
21914
+ type TaskLogDetail = z.infer<typeof TaskLogDetailSchema>;
21915
+
21916
+ /**
21917
+ * Zod schema for TaskLogList
21918
+ *
21919
+ * This schema provides runtime validation and type inference.
21920
+ * * Compact serializer for list views.
21921
+
21922
+ Minimal fields for performance, matching ReArq Job list format.
21923
+ * */
21924
+
21925
+ /**
21926
+ * Compact serializer for list views.
21927
+
21928
+ Minimal fields for performance, matching ReArq Job list format.
21929
+ */
21930
+ declare const TaskLogListSchema: z.ZodObject<{
21931
+ id: z.ZodInt;
21932
+ job_id: z.ZodString;
21933
+ task_name: z.ZodString;
21934
+ queue_name: z.ZodString;
21935
+ status: z.ZodEnum<typeof TaskLogListStatus>;
21936
+ status_display: z.ZodString;
21937
+ success: z.ZodNullable<z.ZodBoolean>;
21938
+ job_retries: z.ZodInt;
21939
+ duration_ms: z.ZodNullable<z.ZodInt>;
21940
+ enqueue_time: z.ZodISODateTime;
21941
+ start_time: z.ZodNullable<z.ZodISODateTime>;
21942
+ finish_time: z.ZodNullable<z.ZodISODateTime>;
21757
21943
  }, z.core.$strip>;
21758
21944
  /**
21759
21945
  * Infer TypeScript type from Zod schema
21760
21946
  */
21761
- type TaskStatistics = z.infer<typeof TaskStatisticsSchema>;
21947
+ type TaskLogList = z.infer<typeof TaskLogListSchema>;
21948
+
21949
+ /**
21950
+ * Zod schema for TaskLogStats
21951
+ *
21952
+ * This schema provides runtime validation and type inference.
21953
+ * * Statistics serializer for task metrics.
21954
+
21955
+ Not tied to a model - used for aggregated data.
21956
+ * */
21957
+
21958
+ /**
21959
+ * Statistics serializer for task metrics.
21960
+
21961
+ Not tied to a model - used for aggregated data.
21962
+ */
21963
+ declare const TaskLogStatsSchema: z.ZodObject<{
21964
+ total: z.ZodInt;
21965
+ successful: z.ZodInt;
21966
+ failed: z.ZodInt;
21967
+ in_progress: z.ZodInt;
21968
+ success_rate: z.ZodNumber;
21969
+ avg_duration_ms: z.ZodInt;
21970
+ avg_duration_seconds: z.ZodNumber;
21971
+ period_hours: z.ZodOptional<z.ZodInt>;
21972
+ }, z.core.$strip>;
21973
+ /**
21974
+ * Infer TypeScript type from Zod schema
21975
+ */
21976
+ type TaskLogStats = z.infer<typeof TaskLogStatsSchema>;
21762
21977
 
21763
21978
  /**
21764
21979
  * Zod schema for TestEmailRequest
@@ -22087,46 +22302,6 @@ declare const VectorizationStatisticsSchema: z.ZodObject<{
22087
22302
  */
22088
22303
  type VectorizationStatistics = z.infer<typeof VectorizationStatisticsSchema>;
22089
22304
 
22090
- /**
22091
- * Zod schema for WorkerAction
22092
- *
22093
- * This schema provides runtime validation and type inference.
22094
- * * Serializer for worker management actions.
22095
- * */
22096
-
22097
- /**
22098
- * Serializer for worker management actions.
22099
- */
22100
- declare const WorkerActionSchema: z.ZodObject<{
22101
- action: z.ZodEnum<typeof WorkerActionAction>;
22102
- processes: z.ZodOptional<z.ZodInt>;
22103
- threads: z.ZodOptional<z.ZodInt>;
22104
- }, z.core.$strip>;
22105
- /**
22106
- * Infer TypeScript type from Zod schema
22107
- */
22108
- type WorkerAction = z.infer<typeof WorkerActionSchema>;
22109
-
22110
- /**
22111
- * Zod schema for WorkerActionRequest
22112
- *
22113
- * This schema provides runtime validation and type inference.
22114
- * * Serializer for worker management actions.
22115
- * */
22116
-
22117
- /**
22118
- * Serializer for worker management actions.
22119
- */
22120
- declare const WorkerActionRequestSchema: z.ZodObject<{
22121
- action: z.ZodEnum<typeof WorkerActionRequestAction>;
22122
- processes: z.ZodOptional<z.ZodInt>;
22123
- threads: z.ZodOptional<z.ZodInt>;
22124
- }, z.core.$strip>;
22125
- /**
22126
- * Infer TypeScript type from Zod schema
22127
- */
22128
- type WorkerActionRequest = z.infer<typeof WorkerActionRequestSchema>;
22129
-
22130
22305
  /**
22131
22306
  * Zod Schemas - Runtime validation and type inference
22132
22307
  *
@@ -22145,10 +22320,6 @@ type WorkerActionRequest = z.infer<typeof WorkerActionRequestSchema>;
22145
22320
  * ```
22146
22321
  */
22147
22322
 
22148
- type index$2_APIResponse = APIResponse;
22149
- type index$2_APIResponseRequest = APIResponseRequest;
22150
- declare const index$2_APIResponseRequestSchema: typeof APIResponseRequestSchema;
22151
- declare const index$2_APIResponseSchema: typeof APIResponseSchema;
22152
22323
  type index$2_APIZone = APIZone;
22153
22324
  declare const index$2_APIZoneSchema: typeof APIZoneSchema;
22154
22325
  type index$2_APIZonesSummary = APIZonesSummary;
@@ -22379,6 +22550,8 @@ type index$2_PaginatedPublicCategoryList = PaginatedPublicCategoryList;
22379
22550
  declare const index$2_PaginatedPublicCategoryListSchema: typeof PaginatedPublicCategoryListSchema;
22380
22551
  type index$2_PaginatedPublicDocumentListList = PaginatedPublicDocumentListList;
22381
22552
  declare const index$2_PaginatedPublicDocumentListListSchema: typeof PaginatedPublicDocumentListListSchema;
22553
+ type index$2_PaginatedTaskLogListList = PaginatedTaskLogListList;
22554
+ declare const index$2_PaginatedTaskLogListListSchema: typeof PaginatedTaskLogListListSchema;
22382
22555
  type index$2_PaginatedTicketList = PaginatedTicketList;
22383
22556
  declare const index$2_PaginatedTicketListSchema: typeof PaginatedTicketListSchema;
22384
22557
  type index$2_PatchedArchiveItemChunkRequest = PatchedArchiveItemChunkRequest;
@@ -22419,12 +22592,6 @@ type index$2_PublishTestRequestRequest = PublishTestRequestRequest;
22419
22592
  declare const index$2_PublishTestRequestRequestSchema: typeof PublishTestRequestRequestSchema;
22420
22593
  type index$2_PublishTestResponse = PublishTestResponse;
22421
22594
  declare const index$2_PublishTestResponseSchema: typeof PublishTestResponseSchema;
22422
- type index$2_QueueAction = QueueAction;
22423
- type index$2_QueueActionRequest = QueueActionRequest;
22424
- declare const index$2_QueueActionRequestSchema: typeof QueueActionRequestSchema;
22425
- declare const index$2_QueueActionSchema: typeof QueueActionSchema;
22426
- type index$2_QueueStatus = QueueStatus;
22427
- declare const index$2_QueueStatusSchema: typeof QueueStatusSchema;
22428
22595
  type index$2_QuickAction = QuickAction;
22429
22596
  declare const index$2_QuickActionSchema: typeof QuickActionSchema;
22430
22597
  type index$2_QuickHealth = QuickHealth;
@@ -22453,8 +22620,14 @@ declare const index$2_SystemHealthItemSchema: typeof SystemHealthItemSchema;
22453
22620
  declare const index$2_SystemHealthSchema: typeof SystemHealthSchema;
22454
22621
  type index$2_SystemMetrics = SystemMetrics;
22455
22622
  declare const index$2_SystemMetricsSchema: typeof SystemMetricsSchema;
22456
- type index$2_TaskStatistics = TaskStatistics;
22457
- declare const index$2_TaskStatisticsSchema: typeof TaskStatisticsSchema;
22623
+ type index$2_TaskLog = TaskLog;
22624
+ type index$2_TaskLogDetail = TaskLogDetail;
22625
+ declare const index$2_TaskLogDetailSchema: typeof TaskLogDetailSchema;
22626
+ type index$2_TaskLogList = TaskLogList;
22627
+ declare const index$2_TaskLogListSchema: typeof TaskLogListSchema;
22628
+ declare const index$2_TaskLogSchema: typeof TaskLogSchema;
22629
+ type index$2_TaskLogStats = TaskLogStats;
22630
+ declare const index$2_TaskLogStatsSchema: typeof TaskLogStatsSchema;
22458
22631
  type index$2_TestEmailRequest = TestEmailRequest;
22459
22632
  declare const index$2_TestEmailRequestSchema: typeof TestEmailRequestSchema;
22460
22633
  type index$2_Ticket = Ticket;
@@ -22485,12 +22658,8 @@ type index$2_VectorizationResult = VectorizationResult;
22485
22658
  declare const index$2_VectorizationResultSchema: typeof VectorizationResultSchema;
22486
22659
  type index$2_VectorizationStatistics = VectorizationStatistics;
22487
22660
  declare const index$2_VectorizationStatisticsSchema: typeof VectorizationStatisticsSchema;
22488
- type index$2_WorkerAction = WorkerAction;
22489
- type index$2_WorkerActionRequest = WorkerActionRequest;
22490
- declare const index$2_WorkerActionRequestSchema: typeof WorkerActionRequestSchema;
22491
- declare const index$2_WorkerActionSchema: typeof WorkerActionSchema;
22492
22661
  declare namespace index$2 {
22493
- 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_APIZone as APIZone, index$2_APIZoneSchema as APIZoneSchema, type index$2_APIZonesSummary as APIZonesSummary, index$2_APIZonesSummarySchema as APIZonesSummarySchema, type index$2_ActivityEntry as ActivityEntry, index$2_ActivityEntrySchema as ActivityEntrySchema, type index$2_ActivityTrackerDay as ActivityTrackerDay, index$2_ActivityTrackerDaySchema as ActivityTrackerDaySchema, type index$2_AppStatistics as AppStatistics, index$2_AppStatisticsSchema as AppStatisticsSchema, 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_CentrifugoChannelInfo as CentrifugoChannelInfo, index$2_CentrifugoChannelInfoSchema as CentrifugoChannelInfoSchema, type index$2_CentrifugoChannelsRequestRequest as CentrifugoChannelsRequestRequest, index$2_CentrifugoChannelsRequestRequestSchema as CentrifugoChannelsRequestRequestSchema, type index$2_CentrifugoChannelsResponse as CentrifugoChannelsResponse, index$2_CentrifugoChannelsResponseSchema as CentrifugoChannelsResponseSchema, type index$2_CentrifugoChannelsResult as CentrifugoChannelsResult, index$2_CentrifugoChannelsResultSchema as CentrifugoChannelsResultSchema, type index$2_CentrifugoClientInfo as CentrifugoClientInfo, index$2_CentrifugoClientInfoSchema as CentrifugoClientInfoSchema, type index$2_CentrifugoError as CentrifugoError, index$2_CentrifugoErrorSchema as CentrifugoErrorSchema, type index$2_CentrifugoHistoryRequestRequest as CentrifugoHistoryRequestRequest, index$2_CentrifugoHistoryRequestRequestSchema as CentrifugoHistoryRequestRequestSchema, type index$2_CentrifugoHistoryResponse as CentrifugoHistoryResponse, index$2_CentrifugoHistoryResponseSchema as CentrifugoHistoryResponseSchema, type index$2_CentrifugoHistoryResult as CentrifugoHistoryResult, index$2_CentrifugoHistoryResultSchema as CentrifugoHistoryResultSchema, type index$2_CentrifugoInfoResponse as CentrifugoInfoResponse, index$2_CentrifugoInfoResponseSchema as CentrifugoInfoResponseSchema, type index$2_CentrifugoInfoResult as CentrifugoInfoResult, index$2_CentrifugoInfoResultSchema as CentrifugoInfoResultSchema, type index$2_CentrifugoMetrics as CentrifugoMetrics, index$2_CentrifugoMetricsSchema as CentrifugoMetricsSchema, type index$2_CentrifugoNodeInfo as CentrifugoNodeInfo, index$2_CentrifugoNodeInfoSchema as CentrifugoNodeInfoSchema, type index$2_CentrifugoPresenceRequestRequest as CentrifugoPresenceRequestRequest, index$2_CentrifugoPresenceRequestRequestSchema as CentrifugoPresenceRequestRequestSchema, type index$2_CentrifugoPresenceResponse as CentrifugoPresenceResponse, index$2_CentrifugoPresenceResponseSchema as CentrifugoPresenceResponseSchema, type index$2_CentrifugoPresenceResult as CentrifugoPresenceResult, index$2_CentrifugoPresenceResultSchema as CentrifugoPresenceResultSchema, type index$2_CentrifugoPresenceStatsRequestRequest as CentrifugoPresenceStatsRequestRequest, index$2_CentrifugoPresenceStatsRequestRequestSchema as CentrifugoPresenceStatsRequestRequestSchema, type index$2_CentrifugoPresenceStatsResponse as CentrifugoPresenceStatsResponse, index$2_CentrifugoPresenceStatsResponseSchema as CentrifugoPresenceStatsResponseSchema, type index$2_CentrifugoPresenceStatsResult as CentrifugoPresenceStatsResult, index$2_CentrifugoPresenceStatsResultSchema as CentrifugoPresenceStatsResultSchema, type index$2_CentrifugoProcess as CentrifugoProcess, index$2_CentrifugoProcessSchema as CentrifugoProcessSchema, type index$2_CentrifugoPublication as CentrifugoPublication, index$2_CentrifugoPublicationSchema as CentrifugoPublicationSchema, type index$2_CentrifugoStreamPosition as CentrifugoStreamPosition, index$2_CentrifugoStreamPositionSchema as CentrifugoStreamPositionSchema, type index$2_ChannelList as ChannelList, index$2_ChannelListSchema as ChannelListSchema, type index$2_ChannelStatsSerializer as ChannelStatsSerializer, index$2_ChannelStatsSerializerSchema as ChannelStatsSerializerSchema, type index$2_ChartData as ChartData, index$2_ChartDataSchema as ChartDataSchema, type index$2_ChartDataset as ChartDataset, index$2_ChartDatasetSchema as ChartDatasetSchema, 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_Command as Command, type index$2_CommandExecuteRequestRequest as CommandExecuteRequestRequest, index$2_CommandExecuteRequestRequestSchema as CommandExecuteRequestRequestSchema, type index$2_CommandHelpResponse as CommandHelpResponse, index$2_CommandHelpResponseSchema as CommandHelpResponseSchema, index$2_CommandSchema as CommandSchema, type index$2_CommandsSummary as CommandsSummary, index$2_CommandsSummarySchema as CommandsSummarySchema, type index$2_ConnectionTokenRequestRequest as ConnectionTokenRequestRequest, index$2_ConnectionTokenRequestRequestSchema as ConnectionTokenRequestRequestSchema, type index$2_ConnectionTokenResponse as ConnectionTokenResponse, index$2_ConnectionTokenResponseSchema as ConnectionTokenResponseSchema, type index$2_Currency as Currency, index$2_CurrencySchema as CurrencySchema, type index$2_DashboardOverview as DashboardOverview, index$2_DashboardOverviewSchema as DashboardOverviewSchema, 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_ManualAckRequestRequest as ManualAckRequestRequest, index$2_ManualAckRequestRequestSchema as ManualAckRequestRequestSchema, type index$2_ManualAckResponse as ManualAckResponse, index$2_ManualAckResponseSchema as ManualAckResponseSchema, 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_OverviewStats as OverviewStats, index$2_OverviewStatsSchema as OverviewStatsSchema, 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_PublishTestRequestRequest as PublishTestRequestRequest, index$2_PublishTestRequestRequestSchema as PublishTestRequestRequestSchema, type index$2_PublishTestResponse as PublishTestResponse, index$2_PublishTestResponseSchema as PublishTestResponseSchema, 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_QuickAction as QuickAction, index$2_QuickActionSchema as QuickActionSchema, type index$2_QuickHealth as QuickHealth, index$2_QuickHealthSchema as QuickHealthSchema, type index$2_RecentPublishes as RecentPublishes, index$2_RecentPublishesSchema as RecentPublishesSchema, type index$2_RecentUser as RecentUser, index$2_RecentUserSchema as RecentUserSchema, 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_StatCard as StatCard, index$2_StatCardSchema as StatCardSchema, 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_SystemHealth as SystemHealth, type index$2_SystemHealthItem as SystemHealthItem, index$2_SystemHealthItemSchema as SystemHealthItemSchema, index$2_SystemHealthSchema as SystemHealthSchema, type index$2_SystemMetrics as SystemMetrics, index$2_SystemMetricsSchema as SystemMetricsSchema, 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_URLPattern as URLPattern, index$2_URLPatternSchema as URLPatternSchema, type index$2_URLsList as URLsList, index$2_URLsListSchema as URLsListSchema, 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_UserStatistics as UserStatistics, index$2_UserStatisticsSchema as UserStatisticsSchema, 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 };
22662
+ export { type index$2_APIZone as APIZone, index$2_APIZoneSchema as APIZoneSchema, type index$2_APIZonesSummary as APIZonesSummary, index$2_APIZonesSummarySchema as APIZonesSummarySchema, type index$2_ActivityEntry as ActivityEntry, index$2_ActivityEntrySchema as ActivityEntrySchema, type index$2_ActivityTrackerDay as ActivityTrackerDay, index$2_ActivityTrackerDaySchema as ActivityTrackerDaySchema, type index$2_AppStatistics as AppStatistics, index$2_AppStatisticsSchema as AppStatisticsSchema, 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_CentrifugoChannelInfo as CentrifugoChannelInfo, index$2_CentrifugoChannelInfoSchema as CentrifugoChannelInfoSchema, type index$2_CentrifugoChannelsRequestRequest as CentrifugoChannelsRequestRequest, index$2_CentrifugoChannelsRequestRequestSchema as CentrifugoChannelsRequestRequestSchema, type index$2_CentrifugoChannelsResponse as CentrifugoChannelsResponse, index$2_CentrifugoChannelsResponseSchema as CentrifugoChannelsResponseSchema, type index$2_CentrifugoChannelsResult as CentrifugoChannelsResult, index$2_CentrifugoChannelsResultSchema as CentrifugoChannelsResultSchema, type index$2_CentrifugoClientInfo as CentrifugoClientInfo, index$2_CentrifugoClientInfoSchema as CentrifugoClientInfoSchema, type index$2_CentrifugoError as CentrifugoError, index$2_CentrifugoErrorSchema as CentrifugoErrorSchema, type index$2_CentrifugoHistoryRequestRequest as CentrifugoHistoryRequestRequest, index$2_CentrifugoHistoryRequestRequestSchema as CentrifugoHistoryRequestRequestSchema, type index$2_CentrifugoHistoryResponse as CentrifugoHistoryResponse, index$2_CentrifugoHistoryResponseSchema as CentrifugoHistoryResponseSchema, type index$2_CentrifugoHistoryResult as CentrifugoHistoryResult, index$2_CentrifugoHistoryResultSchema as CentrifugoHistoryResultSchema, type index$2_CentrifugoInfoResponse as CentrifugoInfoResponse, index$2_CentrifugoInfoResponseSchema as CentrifugoInfoResponseSchema, type index$2_CentrifugoInfoResult as CentrifugoInfoResult, index$2_CentrifugoInfoResultSchema as CentrifugoInfoResultSchema, type index$2_CentrifugoMetrics as CentrifugoMetrics, index$2_CentrifugoMetricsSchema as CentrifugoMetricsSchema, type index$2_CentrifugoNodeInfo as CentrifugoNodeInfo, index$2_CentrifugoNodeInfoSchema as CentrifugoNodeInfoSchema, type index$2_CentrifugoPresenceRequestRequest as CentrifugoPresenceRequestRequest, index$2_CentrifugoPresenceRequestRequestSchema as CentrifugoPresenceRequestRequestSchema, type index$2_CentrifugoPresenceResponse as CentrifugoPresenceResponse, index$2_CentrifugoPresenceResponseSchema as CentrifugoPresenceResponseSchema, type index$2_CentrifugoPresenceResult as CentrifugoPresenceResult, index$2_CentrifugoPresenceResultSchema as CentrifugoPresenceResultSchema, type index$2_CentrifugoPresenceStatsRequestRequest as CentrifugoPresenceStatsRequestRequest, index$2_CentrifugoPresenceStatsRequestRequestSchema as CentrifugoPresenceStatsRequestRequestSchema, type index$2_CentrifugoPresenceStatsResponse as CentrifugoPresenceStatsResponse, index$2_CentrifugoPresenceStatsResponseSchema as CentrifugoPresenceStatsResponseSchema, type index$2_CentrifugoPresenceStatsResult as CentrifugoPresenceStatsResult, index$2_CentrifugoPresenceStatsResultSchema as CentrifugoPresenceStatsResultSchema, type index$2_CentrifugoProcess as CentrifugoProcess, index$2_CentrifugoProcessSchema as CentrifugoProcessSchema, type index$2_CentrifugoPublication as CentrifugoPublication, index$2_CentrifugoPublicationSchema as CentrifugoPublicationSchema, type index$2_CentrifugoStreamPosition as CentrifugoStreamPosition, index$2_CentrifugoStreamPositionSchema as CentrifugoStreamPositionSchema, type index$2_ChannelList as ChannelList, index$2_ChannelListSchema as ChannelListSchema, type index$2_ChannelStatsSerializer as ChannelStatsSerializer, index$2_ChannelStatsSerializerSchema as ChannelStatsSerializerSchema, type index$2_ChartData as ChartData, index$2_ChartDataSchema as ChartDataSchema, type index$2_ChartDataset as ChartDataset, index$2_ChartDatasetSchema as ChartDatasetSchema, 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_Command as Command, type index$2_CommandExecuteRequestRequest as CommandExecuteRequestRequest, index$2_CommandExecuteRequestRequestSchema as CommandExecuteRequestRequestSchema, type index$2_CommandHelpResponse as CommandHelpResponse, index$2_CommandHelpResponseSchema as CommandHelpResponseSchema, index$2_CommandSchema as CommandSchema, type index$2_CommandsSummary as CommandsSummary, index$2_CommandsSummarySchema as CommandsSummarySchema, type index$2_ConnectionTokenRequestRequest as ConnectionTokenRequestRequest, index$2_ConnectionTokenRequestRequestSchema as ConnectionTokenRequestRequestSchema, type index$2_ConnectionTokenResponse as ConnectionTokenResponse, index$2_ConnectionTokenResponseSchema as ConnectionTokenResponseSchema, type index$2_Currency as Currency, index$2_CurrencySchema as CurrencySchema, type index$2_DashboardOverview as DashboardOverview, index$2_DashboardOverviewSchema as DashboardOverviewSchema, 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_ManualAckRequestRequest as ManualAckRequestRequest, index$2_ManualAckRequestRequestSchema as ManualAckRequestRequestSchema, type index$2_ManualAckResponse as ManualAckResponse, index$2_ManualAckResponseSchema as ManualAckResponseSchema, 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_OverviewStats as OverviewStats, index$2_OverviewStatsSchema as OverviewStatsSchema, 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_PaginatedTaskLogListList as PaginatedTaskLogListList, index$2_PaginatedTaskLogListListSchema as PaginatedTaskLogListListSchema, 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_PublishTestRequestRequest as PublishTestRequestRequest, index$2_PublishTestRequestRequestSchema as PublishTestRequestRequestSchema, type index$2_PublishTestResponse as PublishTestResponse, index$2_PublishTestResponseSchema as PublishTestResponseSchema, type index$2_QuickAction as QuickAction, index$2_QuickActionSchema as QuickActionSchema, type index$2_QuickHealth as QuickHealth, index$2_QuickHealthSchema as QuickHealthSchema, type index$2_RecentPublishes as RecentPublishes, index$2_RecentPublishesSchema as RecentPublishesSchema, type index$2_RecentUser as RecentUser, index$2_RecentUserSchema as RecentUserSchema, 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_StatCard as StatCard, index$2_StatCardSchema as StatCardSchema, 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_SystemHealth as SystemHealth, type index$2_SystemHealthItem as SystemHealthItem, index$2_SystemHealthItemSchema as SystemHealthItemSchema, index$2_SystemHealthSchema as SystemHealthSchema, type index$2_SystemMetrics as SystemMetrics, index$2_SystemMetricsSchema as SystemMetricsSchema, type index$2_TaskLog as TaskLog, type index$2_TaskLogDetail as TaskLogDetail, index$2_TaskLogDetailSchema as TaskLogDetailSchema, type index$2_TaskLogList as TaskLogList, index$2_TaskLogListSchema as TaskLogListSchema, index$2_TaskLogSchema as TaskLogSchema, type index$2_TaskLogStats as TaskLogStats, index$2_TaskLogStatsSchema as TaskLogStatsSchema, 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_URLPattern as URLPattern, index$2_URLPatternSchema as URLPatternSchema, type index$2_URLsList as URLsList, index$2_URLsListSchema as URLsListSchema, 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_UserStatistics as UserStatistics, index$2_UserStatisticsSchema as UserStatisticsSchema, type index$2_VectorizationResult as VectorizationResult, index$2_VectorizationResultSchema as VectorizationResultSchema, type index$2_VectorizationStatistics as VectorizationStatistics, index$2_VectorizationStatisticsSchema as VectorizationStatisticsSchema };
22494
22663
  }
22495
22664
 
22496
22665
  /**
@@ -24505,76 +24674,82 @@ declare function deleteSupportTicketsDestroy(uuid: string, client?: any): Promis
24505
24674
  * ```
24506
24675
  */
24507
24676
 
24508
- /**
24509
- * API operation
24510
- *
24511
- * @method POST
24512
- * @path /cfg/tasks/api/clear/
24513
- */
24514
- declare function createTasksApiClearCreate(data: APIResponseRequest, client?: any): Promise<APIResponse>;
24515
- /**
24516
- * API operation
24517
- *
24518
- * @method POST
24519
- * @path /cfg/tasks/api/clear-queues/
24520
- */
24521
- declare function createTasksApiClearQueuesCreate(data: APIResponseRequest, client?: any): Promise<APIResponse>;
24522
- /**
24523
- * API operation
24524
- *
24525
- * @method POST
24526
- * @path /cfg/tasks/api/purge-failed/
24527
- */
24528
- declare function createTasksApiPurgeFailedCreate(data: APIResponseRequest, client?: any): Promise<APIResponse>;
24529
- /**
24530
- * API operation
24531
- *
24532
- * @method POST
24533
- * @path /cfg/tasks/api/queues/manage/
24534
- */
24535
- declare function createTasksApiQueuesManageCreate(data: QueueActionRequest, client?: any): Promise<QueueAction>;
24536
24677
  /**
24537
24678
  * API operation
24538
24679
  *
24539
24680
  * @method GET
24540
- * @path /cfg/tasks/api/queues/status/
24541
- */
24542
- declare function getTasksApiQueuesStatusRetrieve(client?: any): Promise<QueueStatus>;
24681
+ * @path /cfg/tasks/logs/
24682
+ */
24683
+ declare function getTasksLogsList(params?: {
24684
+ created_after?: string;
24685
+ created_before?: string;
24686
+ duration_max?: number;
24687
+ duration_min?: number;
24688
+ end_time?: string;
24689
+ enqueue_after?: string;
24690
+ enqueue_before?: string;
24691
+ finish_after?: string;
24692
+ finish_before?: string;
24693
+ has_error?: boolean;
24694
+ is_completed?: boolean;
24695
+ is_failed?: boolean;
24696
+ is_successful?: boolean;
24697
+ job_id?: string;
24698
+ job_retries_max?: number;
24699
+ job_retries_min?: number;
24700
+ ordering?: string;
24701
+ page?: number;
24702
+ page_size?: number;
24703
+ queue_name?: string;
24704
+ queue_name_in?: any[];
24705
+ search?: string;
24706
+ start_after?: string;
24707
+ start_before?: string;
24708
+ start_time?: string;
24709
+ status?: string;
24710
+ status_in?: any[];
24711
+ success?: boolean;
24712
+ task?: string;
24713
+ task_name?: string;
24714
+ task_name_exact?: string;
24715
+ worker?: string;
24716
+ worker_id?: string;
24717
+ }, client?: any): Promise<PaginatedTaskLogListList>;
24543
24718
  /**
24544
24719
  * API operation
24545
24720
  *
24546
- * @method POST
24547
- * @path /cfg/tasks/api/simulate/
24721
+ * @method GET
24722
+ * @path /cfg/tasks/logs/{id}/
24548
24723
  */
24549
- declare function createTasksApiSimulateCreate(data: APIResponseRequest, client?: any): Promise<APIResponse>;
24724
+ declare function getTasksLogsRetrieve(id: number, client?: any): Promise<TaskLogDetail>;
24550
24725
  /**
24551
24726
  * API operation
24552
24727
  *
24553
24728
  * @method GET
24554
- * @path /cfg/tasks/api/tasks/list/
24729
+ * @path /cfg/tasks/logs/{id}/related/
24555
24730
  */
24556
- declare function getTasksApiTasksListRetrieve(client?: any): Promise<APIResponse>;
24731
+ declare function getTasksLogsRelatedRetrieve(id: number, client?: any): Promise<TaskLog>;
24557
24732
  /**
24558
24733
  * API operation
24559
24734
  *
24560
24735
  * @method GET
24561
- * @path /cfg/tasks/api/tasks/stats/
24736
+ * @path /cfg/tasks/logs/overview/
24562
24737
  */
24563
- declare function getTasksApiTasksStatsRetrieve(client?: any): Promise<TaskStatistics>;
24738
+ declare function getTasksLogsOverviewRetrieve(client?: any): Promise<TaskLog>;
24564
24739
  /**
24565
24740
  * API operation
24566
24741
  *
24567
24742
  * @method GET
24568
- * @path /cfg/tasks/api/workers/list/
24743
+ * @path /cfg/tasks/logs/stats/
24569
24744
  */
24570
- declare function getTasksApiWorkersListRetrieve(client?: any): Promise<APIResponse>;
24745
+ declare function getTasksLogsStatsRetrieve(client?: any): Promise<TaskLogStats>;
24571
24746
  /**
24572
24747
  * API operation
24573
24748
  *
24574
- * @method POST
24575
- * @path /cfg/tasks/api/workers/manage/
24749
+ * @method GET
24750
+ * @path /cfg/tasks/logs/timeline/
24576
24751
  */
24577
- declare function createTasksApiWorkersManageCreate(data: WorkerActionRequest, client?: any): Promise<WorkerAction>;
24752
+ declare function getTasksLogsTimelineRetrieve(client?: any): Promise<TaskLog>;
24578
24753
 
24579
24754
  /**
24580
24755
  * Typed Fetchers - Universal API functions
@@ -24643,12 +24818,6 @@ declare const index$1_createPaymentsPaymentsConfirmCreate: typeof createPayments
24643
24818
  declare const index$1_createPaymentsPaymentsCreateCreate: typeof createPaymentsPaymentsCreateCreate;
24644
24819
  declare const index$1_createSupportTicketsCreate: typeof createSupportTicketsCreate;
24645
24820
  declare const index$1_createSupportTicketsMessagesCreate: typeof createSupportTicketsMessagesCreate;
24646
- declare const index$1_createTasksApiClearCreate: typeof createTasksApiClearCreate;
24647
- declare const index$1_createTasksApiClearQueuesCreate: typeof createTasksApiClearQueuesCreate;
24648
- declare const index$1_createTasksApiPurgeFailedCreate: typeof createTasksApiPurgeFailedCreate;
24649
- declare const index$1_createTasksApiQueuesManageCreate: typeof createTasksApiQueuesManageCreate;
24650
- declare const index$1_createTasksApiSimulateCreate: typeof createTasksApiSimulateCreate;
24651
- declare const index$1_createTasksApiWorkersManageCreate: typeof createTasksApiWorkersManageCreate;
24652
24821
  declare const index$1_deleteKnowbaseAdminChatDestroy: typeof deleteKnowbaseAdminChatDestroy;
24653
24822
  declare const index$1_deleteKnowbaseAdminDocumentsDestroy: typeof deleteKnowbaseAdminDocumentsDestroy;
24654
24823
  declare const index$1_deleteKnowbaseAdminSessionsDestroy: typeof deleteKnowbaseAdminSessionsDestroy;
@@ -24731,10 +24900,12 @@ declare const index$1_getSupportTicketsList: typeof getSupportTicketsList;
24731
24900
  declare const index$1_getSupportTicketsMessagesList: typeof getSupportTicketsMessagesList;
24732
24901
  declare const index$1_getSupportTicketsMessagesRetrieve: typeof getSupportTicketsMessagesRetrieve;
24733
24902
  declare const index$1_getSupportTicketsRetrieve: typeof getSupportTicketsRetrieve;
24734
- declare const index$1_getTasksApiQueuesStatusRetrieve: typeof getTasksApiQueuesStatusRetrieve;
24735
- declare const index$1_getTasksApiTasksListRetrieve: typeof getTasksApiTasksListRetrieve;
24736
- declare const index$1_getTasksApiTasksStatsRetrieve: typeof getTasksApiTasksStatsRetrieve;
24737
- declare const index$1_getTasksApiWorkersListRetrieve: typeof getTasksApiWorkersListRetrieve;
24903
+ declare const index$1_getTasksLogsList: typeof getTasksLogsList;
24904
+ declare const index$1_getTasksLogsOverviewRetrieve: typeof getTasksLogsOverviewRetrieve;
24905
+ declare const index$1_getTasksLogsRelatedRetrieve: typeof getTasksLogsRelatedRetrieve;
24906
+ declare const index$1_getTasksLogsRetrieve: typeof getTasksLogsRetrieve;
24907
+ declare const index$1_getTasksLogsStatsRetrieve: typeof getTasksLogsStatsRetrieve;
24908
+ declare const index$1_getTasksLogsTimelineRetrieve: typeof getTasksLogsTimelineRetrieve;
24738
24909
  declare const index$1_partialUpdateAccountsProfilePartialPartialUpdate: typeof partialUpdateAccountsProfilePartialPartialUpdate;
24739
24910
  declare const index$1_partialUpdateAccountsProfilePartialUpdate: typeof partialUpdateAccountsProfilePartialUpdate;
24740
24911
  declare const index$1_partialUpdateAccountsProfileUpdatePartialUpdate: typeof partialUpdateAccountsProfileUpdatePartialUpdate;
@@ -24762,7 +24933,7 @@ declare const index$1_updateNewsletterUnsubscribeUpdate: typeof updateNewsletter
24762
24933
  declare const index$1_updateSupportTicketsMessagesUpdate: typeof updateSupportTicketsMessagesUpdate;
24763
24934
  declare const index$1_updateSupportTicketsUpdate: typeof updateSupportTicketsUpdate;
24764
24935
  declare namespace index$1 {
24765
- export { index$1_createAccountsOtpRequestCreate as createAccountsOtpRequestCreate, index$1_createAccountsOtpVerifyCreate as createAccountsOtpVerifyCreate, index$1_createAccountsProfileAvatarCreate as createAccountsProfileAvatarCreate, index$1_createAccountsTokenRefreshCreate as createAccountsTokenRefreshCreate, index$1_createCentrifugoServerAuthTokenCreate as createCentrifugoServerAuthTokenCreate, index$1_createCentrifugoServerChannelsCreate as createCentrifugoServerChannelsCreate, index$1_createCentrifugoServerHistoryCreate as createCentrifugoServerHistoryCreate, index$1_createCentrifugoServerInfoCreate as createCentrifugoServerInfoCreate, index$1_createCentrifugoServerPresenceCreate as createCentrifugoServerPresenceCreate, index$1_createCentrifugoServerPresenceStatsCreate as createCentrifugoServerPresenceStatsCreate, index$1_createCentrifugoTestingConnectionTokenCreate as createCentrifugoTestingConnectionTokenCreate, index$1_createCentrifugoTestingPublishTestCreate as createCentrifugoTestingPublishTestCreate, index$1_createCentrifugoTestingPublishWithLoggingCreate as createCentrifugoTestingPublishWithLoggingCreate, index$1_createCentrifugoTestingSendAckCreate as createCentrifugoTestingSendAckCreate, index$1_createDashboardApiCommandsExecuteCreate as createDashboardApiCommandsExecuteCreate, 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_getCentrifugoMonitorChannelsRetrieve as getCentrifugoMonitorChannelsRetrieve, index$1_getCentrifugoMonitorHealthRetrieve as getCentrifugoMonitorHealthRetrieve, index$1_getCentrifugoMonitorOverviewRetrieve as getCentrifugoMonitorOverviewRetrieve, index$1_getCentrifugoMonitorPublishesRetrieve as getCentrifugoMonitorPublishesRetrieve, index$1_getCentrifugoMonitorTimelineRetrieve as getCentrifugoMonitorTimelineRetrieve, index$1_getDashboardApiActivityActionsList as getDashboardApiActivityActionsList, index$1_getDashboardApiActivityRecentList as getDashboardApiActivityRecentList, index$1_getDashboardApiChartsActivityRetrieve as getDashboardApiChartsActivityRetrieve, index$1_getDashboardApiChartsRecentUsersList as getDashboardApiChartsRecentUsersList, index$1_getDashboardApiChartsRegistrationsRetrieve as getDashboardApiChartsRegistrationsRetrieve, index$1_getDashboardApiChartsTrackerList as getDashboardApiChartsTrackerList, index$1_getDashboardApiCommandsHelpRetrieve as getDashboardApiCommandsHelpRetrieve, index$1_getDashboardApiCommandsList as getDashboardApiCommandsList, index$1_getDashboardApiCommandsSummaryRetrieve as getDashboardApiCommandsSummaryRetrieve, index$1_getDashboardApiOverviewOverviewRetrieve as getDashboardApiOverviewOverviewRetrieve, index$1_getDashboardApiStatisticsAppsList as getDashboardApiStatisticsAppsList, index$1_getDashboardApiStatisticsCardsList as getDashboardApiStatisticsCardsList, index$1_getDashboardApiStatisticsUsersRetrieve as getDashboardApiStatisticsUsersRetrieve, index$1_getDashboardApiSystemHealthRetrieve as getDashboardApiSystemHealthRetrieve, index$1_getDashboardApiSystemMetricsRetrieve as getDashboardApiSystemMetricsRetrieve, index$1_getDashboardApiZonesList as getDashboardApiZonesList, index$1_getDashboardApiZonesSummaryRetrieve as getDashboardApiZonesSummaryRetrieve, index$1_getEndpointsDrfRetrieve as getEndpointsDrfRetrieve, index$1_getEndpointsUrlsCompactRetrieve as getEndpointsUrlsCompactRetrieve, index$1_getEndpointsUrlsRetrieve as getEndpointsUrlsRetrieve, 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 };
24936
+ export { index$1_createAccountsOtpRequestCreate as createAccountsOtpRequestCreate, index$1_createAccountsOtpVerifyCreate as createAccountsOtpVerifyCreate, index$1_createAccountsProfileAvatarCreate as createAccountsProfileAvatarCreate, index$1_createAccountsTokenRefreshCreate as createAccountsTokenRefreshCreate, index$1_createCentrifugoServerAuthTokenCreate as createCentrifugoServerAuthTokenCreate, index$1_createCentrifugoServerChannelsCreate as createCentrifugoServerChannelsCreate, index$1_createCentrifugoServerHistoryCreate as createCentrifugoServerHistoryCreate, index$1_createCentrifugoServerInfoCreate as createCentrifugoServerInfoCreate, index$1_createCentrifugoServerPresenceCreate as createCentrifugoServerPresenceCreate, index$1_createCentrifugoServerPresenceStatsCreate as createCentrifugoServerPresenceStatsCreate, index$1_createCentrifugoTestingConnectionTokenCreate as createCentrifugoTestingConnectionTokenCreate, index$1_createCentrifugoTestingPublishTestCreate as createCentrifugoTestingPublishTestCreate, index$1_createCentrifugoTestingPublishWithLoggingCreate as createCentrifugoTestingPublishWithLoggingCreate, index$1_createCentrifugoTestingSendAckCreate as createCentrifugoTestingSendAckCreate, index$1_createDashboardApiCommandsExecuteCreate as createDashboardApiCommandsExecuteCreate, 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_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_getCentrifugoMonitorChannelsRetrieve as getCentrifugoMonitorChannelsRetrieve, index$1_getCentrifugoMonitorHealthRetrieve as getCentrifugoMonitorHealthRetrieve, index$1_getCentrifugoMonitorOverviewRetrieve as getCentrifugoMonitorOverviewRetrieve, index$1_getCentrifugoMonitorPublishesRetrieve as getCentrifugoMonitorPublishesRetrieve, index$1_getCentrifugoMonitorTimelineRetrieve as getCentrifugoMonitorTimelineRetrieve, index$1_getDashboardApiActivityActionsList as getDashboardApiActivityActionsList, index$1_getDashboardApiActivityRecentList as getDashboardApiActivityRecentList, index$1_getDashboardApiChartsActivityRetrieve as getDashboardApiChartsActivityRetrieve, index$1_getDashboardApiChartsRecentUsersList as getDashboardApiChartsRecentUsersList, index$1_getDashboardApiChartsRegistrationsRetrieve as getDashboardApiChartsRegistrationsRetrieve, index$1_getDashboardApiChartsTrackerList as getDashboardApiChartsTrackerList, index$1_getDashboardApiCommandsHelpRetrieve as getDashboardApiCommandsHelpRetrieve, index$1_getDashboardApiCommandsList as getDashboardApiCommandsList, index$1_getDashboardApiCommandsSummaryRetrieve as getDashboardApiCommandsSummaryRetrieve, index$1_getDashboardApiOverviewOverviewRetrieve as getDashboardApiOverviewOverviewRetrieve, index$1_getDashboardApiStatisticsAppsList as getDashboardApiStatisticsAppsList, index$1_getDashboardApiStatisticsCardsList as getDashboardApiStatisticsCardsList, index$1_getDashboardApiStatisticsUsersRetrieve as getDashboardApiStatisticsUsersRetrieve, index$1_getDashboardApiSystemHealthRetrieve as getDashboardApiSystemHealthRetrieve, index$1_getDashboardApiSystemMetricsRetrieve as getDashboardApiSystemMetricsRetrieve, index$1_getDashboardApiZonesList as getDashboardApiZonesList, index$1_getDashboardApiZonesSummaryRetrieve as getDashboardApiZonesSummaryRetrieve, index$1_getEndpointsDrfRetrieve as getEndpointsDrfRetrieve, index$1_getEndpointsUrlsCompactRetrieve as getEndpointsUrlsCompactRetrieve, index$1_getEndpointsUrlsRetrieve as getEndpointsUrlsRetrieve, 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_getTasksLogsList as getTasksLogsList, index$1_getTasksLogsOverviewRetrieve as getTasksLogsOverviewRetrieve, index$1_getTasksLogsRelatedRetrieve as getTasksLogsRelatedRetrieve, index$1_getTasksLogsRetrieve as getTasksLogsRetrieve, index$1_getTasksLogsStatsRetrieve as getTasksLogsStatsRetrieve, index$1_getTasksLogsTimelineRetrieve as getTasksLogsTimelineRetrieve, 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 };
24766
24937
  }
24767
24938
 
24768
24939
  /**
@@ -26353,76 +26524,82 @@ declare function useDeleteSupportTicketsDestroy(): (uuid: string, client?: API)
26353
26524
  * ```
26354
26525
  */
26355
26526
 
26356
- /**
26357
- * API operation
26358
- *
26359
- * @method POST
26360
- * @path /cfg/tasks/api/clear/
26361
- */
26362
- declare function useCreateTasksApiClearCreate(): (data: APIResponseRequest, client?: API) => Promise<APIResponse>;
26363
- /**
26364
- * API operation
26365
- *
26366
- * @method POST
26367
- * @path /cfg/tasks/api/clear-queues/
26368
- */
26369
- declare function useCreateTasksApiClearQueuesCreate(): (data: APIResponseRequest, client?: API) => Promise<APIResponse>;
26370
- /**
26371
- * API operation
26372
- *
26373
- * @method POST
26374
- * @path /cfg/tasks/api/purge-failed/
26375
- */
26376
- declare function useCreateTasksApiPurgeFailedCreate(): (data: APIResponseRequest, client?: API) => Promise<APIResponse>;
26377
- /**
26378
- * API operation
26379
- *
26380
- * @method POST
26381
- * @path /cfg/tasks/api/queues/manage/
26382
- */
26383
- declare function useCreateTasksApiQueuesManageCreate(): (data: QueueActionRequest, client?: API) => Promise<QueueAction>;
26384
26527
  /**
26385
26528
  * API operation
26386
26529
  *
26387
26530
  * @method GET
26388
- * @path /cfg/tasks/api/queues/status/
26389
- */
26390
- declare function useTasksApiQueuesStatusRetrieve(client?: API): ReturnType<typeof useSWR<QueueStatus>>;
26531
+ * @path /cfg/tasks/logs/
26532
+ */
26533
+ declare function useTasksLogsList(params?: {
26534
+ created_after?: string;
26535
+ created_before?: string;
26536
+ duration_max?: number;
26537
+ duration_min?: number;
26538
+ end_time?: string;
26539
+ enqueue_after?: string;
26540
+ enqueue_before?: string;
26541
+ finish_after?: string;
26542
+ finish_before?: string;
26543
+ has_error?: boolean;
26544
+ is_completed?: boolean;
26545
+ is_failed?: boolean;
26546
+ is_successful?: boolean;
26547
+ job_id?: string;
26548
+ job_retries_max?: number;
26549
+ job_retries_min?: number;
26550
+ ordering?: string;
26551
+ page?: number;
26552
+ page_size?: number;
26553
+ queue_name?: string;
26554
+ queue_name_in?: any[];
26555
+ search?: string;
26556
+ start_after?: string;
26557
+ start_before?: string;
26558
+ start_time?: string;
26559
+ status?: string;
26560
+ status_in?: any[];
26561
+ success?: boolean;
26562
+ task?: string;
26563
+ task_name?: string;
26564
+ task_name_exact?: string;
26565
+ worker?: string;
26566
+ worker_id?: string;
26567
+ }, client?: API): ReturnType<typeof useSWR<PaginatedTaskLogListList>>;
26391
26568
  /**
26392
26569
  * API operation
26393
26570
  *
26394
- * @method POST
26395
- * @path /cfg/tasks/api/simulate/
26571
+ * @method GET
26572
+ * @path /cfg/tasks/logs/{id}/
26396
26573
  */
26397
- declare function useCreateTasksApiSimulateCreate(): (data: APIResponseRequest, client?: API) => Promise<APIResponse>;
26574
+ declare function useTasksLogsRetrieve(id: number, client?: API): ReturnType<typeof useSWR<TaskLogDetail>>;
26398
26575
  /**
26399
26576
  * API operation
26400
26577
  *
26401
26578
  * @method GET
26402
- * @path /cfg/tasks/api/tasks/list/
26579
+ * @path /cfg/tasks/logs/{id}/related/
26403
26580
  */
26404
- declare function useTasksApiTasksListRetrieve(client?: API): ReturnType<typeof useSWR<APIResponse>>;
26581
+ declare function useTasksLogsRelatedRetrieve(id: number, client?: API): ReturnType<typeof useSWR<TaskLog>>;
26405
26582
  /**
26406
26583
  * API operation
26407
26584
  *
26408
26585
  * @method GET
26409
- * @path /cfg/tasks/api/tasks/stats/
26586
+ * @path /cfg/tasks/logs/overview/
26410
26587
  */
26411
- declare function useTasksApiTasksStatsRetrieve(client?: API): ReturnType<typeof useSWR<TaskStatistics>>;
26588
+ declare function useTasksLogsOverviewRetrieve(client?: API): ReturnType<typeof useSWR<TaskLog>>;
26412
26589
  /**
26413
26590
  * API operation
26414
26591
  *
26415
26592
  * @method GET
26416
- * @path /cfg/tasks/api/workers/list/
26593
+ * @path /cfg/tasks/logs/stats/
26417
26594
  */
26418
- declare function useTasksApiWorkersListRetrieve(client?: API): ReturnType<typeof useSWR<APIResponse>>;
26595
+ declare function useTasksLogsStatsRetrieve(client?: API): ReturnType<typeof useSWR<TaskLogStats>>;
26419
26596
  /**
26420
26597
  * API operation
26421
26598
  *
26422
- * @method POST
26423
- * @path /cfg/tasks/api/workers/manage/
26599
+ * @method GET
26600
+ * @path /cfg/tasks/logs/timeline/
26424
26601
  */
26425
- declare function useCreateTasksApiWorkersManageCreate(): (data: WorkerActionRequest, client?: API) => Promise<WorkerAction>;
26602
+ declare function useTasksLogsTimelineRetrieve(client?: API): ReturnType<typeof useSWR<TaskLog>>;
26426
26603
 
26427
26604
  /**
26428
26605
  * SWR Hooks - React data fetching hooks
@@ -26495,12 +26672,6 @@ declare const index_useCreatePaymentsPaymentsConfirmCreate: typeof useCreatePaym
26495
26672
  declare const index_useCreatePaymentsPaymentsCreateCreate: typeof useCreatePaymentsPaymentsCreateCreate;
26496
26673
  declare const index_useCreateSupportTicketsCreate: typeof useCreateSupportTicketsCreate;
26497
26674
  declare const index_useCreateSupportTicketsMessagesCreate: typeof useCreateSupportTicketsMessagesCreate;
26498
- declare const index_useCreateTasksApiClearCreate: typeof useCreateTasksApiClearCreate;
26499
- declare const index_useCreateTasksApiClearQueuesCreate: typeof useCreateTasksApiClearQueuesCreate;
26500
- declare const index_useCreateTasksApiPurgeFailedCreate: typeof useCreateTasksApiPurgeFailedCreate;
26501
- declare const index_useCreateTasksApiQueuesManageCreate: typeof useCreateTasksApiQueuesManageCreate;
26502
- declare const index_useCreateTasksApiSimulateCreate: typeof useCreateTasksApiSimulateCreate;
26503
- declare const index_useCreateTasksApiWorkersManageCreate: typeof useCreateTasksApiWorkersManageCreate;
26504
26675
  declare const index_useDashboardApiActivityActionsList: typeof useDashboardApiActivityActionsList;
26505
26676
  declare const index_useDashboardApiActivityRecentList: typeof useDashboardApiActivityRecentList;
26506
26677
  declare const index_useDashboardApiChartsActivityRetrieve: typeof useDashboardApiChartsActivityRetrieve;
@@ -26591,10 +26762,12 @@ declare const index_useSupportTicketsList: typeof useSupportTicketsList;
26591
26762
  declare const index_useSupportTicketsMessagesList: typeof useSupportTicketsMessagesList;
26592
26763
  declare const index_useSupportTicketsMessagesRetrieve: typeof useSupportTicketsMessagesRetrieve;
26593
26764
  declare const index_useSupportTicketsRetrieve: typeof useSupportTicketsRetrieve;
26594
- declare const index_useTasksApiQueuesStatusRetrieve: typeof useTasksApiQueuesStatusRetrieve;
26595
- declare const index_useTasksApiTasksListRetrieve: typeof useTasksApiTasksListRetrieve;
26596
- declare const index_useTasksApiTasksStatsRetrieve: typeof useTasksApiTasksStatsRetrieve;
26597
- declare const index_useTasksApiWorkersListRetrieve: typeof useTasksApiWorkersListRetrieve;
26765
+ declare const index_useTasksLogsList: typeof useTasksLogsList;
26766
+ declare const index_useTasksLogsOverviewRetrieve: typeof useTasksLogsOverviewRetrieve;
26767
+ declare const index_useTasksLogsRelatedRetrieve: typeof useTasksLogsRelatedRetrieve;
26768
+ declare const index_useTasksLogsRetrieve: typeof useTasksLogsRetrieve;
26769
+ declare const index_useTasksLogsStatsRetrieve: typeof useTasksLogsStatsRetrieve;
26770
+ declare const index_useTasksLogsTimelineRetrieve: typeof useTasksLogsTimelineRetrieve;
26598
26771
  declare const index_useUpdateAccountsProfileUpdateUpdate: typeof useUpdateAccountsProfileUpdateUpdate;
26599
26772
  declare const index_useUpdateKnowbaseAdminChatUpdate: typeof useUpdateKnowbaseAdminChatUpdate;
26600
26773
  declare const index_useUpdateKnowbaseAdminDocumentsUpdate: typeof useUpdateKnowbaseAdminDocumentsUpdate;
@@ -26608,7 +26781,7 @@ declare const index_useUpdateNewsletterUnsubscribeUpdate: typeof useUpdateNewsle
26608
26781
  declare const index_useUpdateSupportTicketsMessagesUpdate: typeof useUpdateSupportTicketsMessagesUpdate;
26609
26782
  declare const index_useUpdateSupportTicketsUpdate: typeof useUpdateSupportTicketsUpdate;
26610
26783
  declare namespace index {
26611
- export { index_useAccountsProfileRetrieve as useAccountsProfileRetrieve, index_useCentrifugoMonitorChannelsRetrieve as useCentrifugoMonitorChannelsRetrieve, index_useCentrifugoMonitorHealthRetrieve as useCentrifugoMonitorHealthRetrieve, index_useCentrifugoMonitorOverviewRetrieve as useCentrifugoMonitorOverviewRetrieve, index_useCentrifugoMonitorPublishesRetrieve as useCentrifugoMonitorPublishesRetrieve, index_useCentrifugoMonitorTimelineRetrieve as useCentrifugoMonitorTimelineRetrieve, index_useCreateAccountsOtpRequestCreate as useCreateAccountsOtpRequestCreate, index_useCreateAccountsOtpVerifyCreate as useCreateAccountsOtpVerifyCreate, index_useCreateAccountsProfileAvatarCreate as useCreateAccountsProfileAvatarCreate, index_useCreateAccountsTokenRefreshCreate as useCreateAccountsTokenRefreshCreate, index_useCreateCentrifugoServerAuthTokenCreate as useCreateCentrifugoServerAuthTokenCreate, index_useCreateCentrifugoServerChannelsCreate as useCreateCentrifugoServerChannelsCreate, index_useCreateCentrifugoServerHistoryCreate as useCreateCentrifugoServerHistoryCreate, index_useCreateCentrifugoServerInfoCreate as useCreateCentrifugoServerInfoCreate, index_useCreateCentrifugoServerPresenceCreate as useCreateCentrifugoServerPresenceCreate, index_useCreateCentrifugoServerPresenceStatsCreate as useCreateCentrifugoServerPresenceStatsCreate, index_useCreateCentrifugoTestingConnectionTokenCreate as useCreateCentrifugoTestingConnectionTokenCreate, index_useCreateCentrifugoTestingPublishTestCreate as useCreateCentrifugoTestingPublishTestCreate, index_useCreateCentrifugoTestingPublishWithLoggingCreate as useCreateCentrifugoTestingPublishWithLoggingCreate, index_useCreateCentrifugoTestingSendAckCreate as useCreateCentrifugoTestingSendAckCreate, index_useCreateDashboardApiCommandsExecuteCreate as useCreateDashboardApiCommandsExecuteCreate, 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_useDashboardApiActivityActionsList as useDashboardApiActivityActionsList, index_useDashboardApiActivityRecentList as useDashboardApiActivityRecentList, index_useDashboardApiChartsActivityRetrieve as useDashboardApiChartsActivityRetrieve, index_useDashboardApiChartsRecentUsersList as useDashboardApiChartsRecentUsersList, index_useDashboardApiChartsRegistrationsRetrieve as useDashboardApiChartsRegistrationsRetrieve, index_useDashboardApiChartsTrackerList as useDashboardApiChartsTrackerList, index_useDashboardApiCommandsHelpRetrieve as useDashboardApiCommandsHelpRetrieve, index_useDashboardApiCommandsList as useDashboardApiCommandsList, index_useDashboardApiCommandsSummaryRetrieve as useDashboardApiCommandsSummaryRetrieve, index_useDashboardApiOverviewOverviewRetrieve as useDashboardApiOverviewOverviewRetrieve, index_useDashboardApiStatisticsAppsList as useDashboardApiStatisticsAppsList, index_useDashboardApiStatisticsCardsList as useDashboardApiStatisticsCardsList, index_useDashboardApiStatisticsUsersRetrieve as useDashboardApiStatisticsUsersRetrieve, index_useDashboardApiSystemHealthRetrieve as useDashboardApiSystemHealthRetrieve, index_useDashboardApiSystemMetricsRetrieve as useDashboardApiSystemMetricsRetrieve, index_useDashboardApiZonesList as useDashboardApiZonesList, index_useDashboardApiZonesSummaryRetrieve as useDashboardApiZonesSummaryRetrieve, 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_useEndpointsUrlsCompactRetrieve as useEndpointsUrlsCompactRetrieve, index_useEndpointsUrlsRetrieve as useEndpointsUrlsRetrieve, 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 };
26784
+ export { index_useAccountsProfileRetrieve as useAccountsProfileRetrieve, index_useCentrifugoMonitorChannelsRetrieve as useCentrifugoMonitorChannelsRetrieve, index_useCentrifugoMonitorHealthRetrieve as useCentrifugoMonitorHealthRetrieve, index_useCentrifugoMonitorOverviewRetrieve as useCentrifugoMonitorOverviewRetrieve, index_useCentrifugoMonitorPublishesRetrieve as useCentrifugoMonitorPublishesRetrieve, index_useCentrifugoMonitorTimelineRetrieve as useCentrifugoMonitorTimelineRetrieve, index_useCreateAccountsOtpRequestCreate as useCreateAccountsOtpRequestCreate, index_useCreateAccountsOtpVerifyCreate as useCreateAccountsOtpVerifyCreate, index_useCreateAccountsProfileAvatarCreate as useCreateAccountsProfileAvatarCreate, index_useCreateAccountsTokenRefreshCreate as useCreateAccountsTokenRefreshCreate, index_useCreateCentrifugoServerAuthTokenCreate as useCreateCentrifugoServerAuthTokenCreate, index_useCreateCentrifugoServerChannelsCreate as useCreateCentrifugoServerChannelsCreate, index_useCreateCentrifugoServerHistoryCreate as useCreateCentrifugoServerHistoryCreate, index_useCreateCentrifugoServerInfoCreate as useCreateCentrifugoServerInfoCreate, index_useCreateCentrifugoServerPresenceCreate as useCreateCentrifugoServerPresenceCreate, index_useCreateCentrifugoServerPresenceStatsCreate as useCreateCentrifugoServerPresenceStatsCreate, index_useCreateCentrifugoTestingConnectionTokenCreate as useCreateCentrifugoTestingConnectionTokenCreate, index_useCreateCentrifugoTestingPublishTestCreate as useCreateCentrifugoTestingPublishTestCreate, index_useCreateCentrifugoTestingPublishWithLoggingCreate as useCreateCentrifugoTestingPublishWithLoggingCreate, index_useCreateCentrifugoTestingSendAckCreate as useCreateCentrifugoTestingSendAckCreate, index_useCreateDashboardApiCommandsExecuteCreate as useCreateDashboardApiCommandsExecuteCreate, 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_useDashboardApiActivityActionsList as useDashboardApiActivityActionsList, index_useDashboardApiActivityRecentList as useDashboardApiActivityRecentList, index_useDashboardApiChartsActivityRetrieve as useDashboardApiChartsActivityRetrieve, index_useDashboardApiChartsRecentUsersList as useDashboardApiChartsRecentUsersList, index_useDashboardApiChartsRegistrationsRetrieve as useDashboardApiChartsRegistrationsRetrieve, index_useDashboardApiChartsTrackerList as useDashboardApiChartsTrackerList, index_useDashboardApiCommandsHelpRetrieve as useDashboardApiCommandsHelpRetrieve, index_useDashboardApiCommandsList as useDashboardApiCommandsList, index_useDashboardApiCommandsSummaryRetrieve as useDashboardApiCommandsSummaryRetrieve, index_useDashboardApiOverviewOverviewRetrieve as useDashboardApiOverviewOverviewRetrieve, index_useDashboardApiStatisticsAppsList as useDashboardApiStatisticsAppsList, index_useDashboardApiStatisticsCardsList as useDashboardApiStatisticsCardsList, index_useDashboardApiStatisticsUsersRetrieve as useDashboardApiStatisticsUsersRetrieve, index_useDashboardApiSystemHealthRetrieve as useDashboardApiSystemHealthRetrieve, index_useDashboardApiSystemMetricsRetrieve as useDashboardApiSystemMetricsRetrieve, index_useDashboardApiZonesList as useDashboardApiZonesList, index_useDashboardApiZonesSummaryRetrieve as useDashboardApiZonesSummaryRetrieve, 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_useEndpointsUrlsCompactRetrieve as useEndpointsUrlsCompactRetrieve, index_useEndpointsUrlsRetrieve as useEndpointsUrlsRetrieve, 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_useTasksLogsList as useTasksLogsList, index_useTasksLogsOverviewRetrieve as useTasksLogsOverviewRetrieve, index_useTasksLogsRelatedRetrieve as useTasksLogsRelatedRetrieve, index_useTasksLogsRetrieve as useTasksLogsRetrieve, index_useTasksLogsStatsRetrieve as useTasksLogsStatsRetrieve, index_useTasksLogsTimelineRetrieve as useTasksLogsTimelineRetrieve, 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 };
26612
26785
  }
26613
26786
 
26614
26787
  /**
@@ -26801,774 +26974,6 @@ declare class API {
26801
26974
  */
26802
26975
 
26803
26976
  declare const api: API;
26804
- /**
26805
- * Base Client Class
26806
- *
26807
- * Service classes can extend this to access api instance
26808
- */
26809
- declare class BaseClient {
26810
- /**
26811
- * Authenticated API instance with JWT management
26812
- */
26813
- protected static api: API;
26814
- }
26815
-
26816
- /**
26817
- * Authentication Service
26818
- *
26819
- * Handles OTP authentication, token management, and user profile
26820
- */
26821
-
26822
- declare class AuthService extends BaseClient {
26823
- /**
26824
- * Request OTP code
26825
- */
26826
- static requestOTP(identifier: string, channel?: OTPRequestRequestChannel): Promise<{
26827
- success: boolean;
26828
- message?: string;
26829
- error?: string;
26830
- }>;
26831
- /**
26832
- * Verify OTP and login
26833
- */
26834
- static verifyOTP(identifier: string, otp: string, channel?: OTPVerifyRequestChannel): Promise<{
26835
- success: boolean;
26836
- user?: User$2;
26837
- error?: string;
26838
- fieldErrors?: Record<string, string[]>;
26839
- }>;
26840
- /**
26841
- * Get current user profile
26842
- */
26843
- static getCurrentUser(): Promise<{
26844
- success: boolean;
26845
- user?: User$2;
26846
- error?: string;
26847
- }>;
26848
- /**
26849
- * Update user profile
26850
- */
26851
- static updateProfile(data: PatchedUserProfileUpdateRequest$1): Promise<{
26852
- success: boolean;
26853
- user?: User$2;
26854
- error?: string;
26855
- fieldErrors?: Record<string, string[]>;
26856
- }>;
26857
- /**
26858
- * Refresh access token
26859
- */
26860
- static refreshToken(): Promise<{
26861
- success: boolean;
26862
- error?: string;
26863
- }>;
26864
- /**
26865
- * Logout user
26866
- */
26867
- static logout(): void;
26868
- /**
26869
- * Check if user is authenticated
26870
- */
26871
- static isAuthenticated(): boolean;
26872
- /**
26873
- * Get access token
26874
- */
26875
- static getToken(): string | null;
26876
- /**
26877
- * Get refresh token
26878
- */
26879
- static getRefreshToken(): string | null;
26880
- }
26881
-
26882
- /**
26883
- * Leads Service
26884
- *
26885
- * Handles lead submission and management
26886
- */
26887
-
26888
- declare class LeadsService extends BaseClient {
26889
- /**
26890
- * Submit lead (public)
26891
- */
26892
- static submitLead(data: {
26893
- email: string;
26894
- name: string;
26895
- message: string;
26896
- company?: string;
26897
- phone?: string;
26898
- contact_type?: LeadSubmissionRequestContactType;
26899
- }): Promise<{
26900
- success: boolean;
26901
- lead?: LeadSubmissionResponse$1;
26902
- error?: string;
26903
- fieldErrors?: Record<string, string[]>;
26904
- }>;
26905
- /**
26906
- * Get leads list (admin)
26907
- */
26908
- static getLeads(page?: number, pageSize?: number): Promise<{
26909
- success: boolean;
26910
- leads?: PaginatedLeadSubmissionList$1;
26911
- error?: string;
26912
- }>;
26913
- /**
26914
- * Get lead by ID (admin)
26915
- */
26916
- static getLead(id: number): Promise<{
26917
- success: boolean;
26918
- lead?: LeadSubmission$1;
26919
- error?: string;
26920
- }>;
26921
- /**
26922
- * Update lead (admin)
26923
- */
26924
- static updateLead(id: number, data: PatchedLeadSubmissionRequest$1): Promise<{
26925
- success: boolean;
26926
- lead?: LeadSubmission$1;
26927
- error?: string;
26928
- fieldErrors?: Record<string, string[]>;
26929
- }>;
26930
- /**
26931
- * Delete lead (admin)
26932
- */
26933
- static deleteLead(id: number): Promise<{
26934
- success: boolean;
26935
- error?: string;
26936
- }>;
26937
- }
26938
-
26939
- /**
26940
- * Support Service
26941
- *
26942
- * Handles support tickets and messages
26943
- */
26944
-
26945
- declare class SupportService extends BaseClient {
26946
- /**
26947
- * Get tickets list
26948
- */
26949
- static getTickets(): Promise<{
26950
- success: boolean;
26951
- error?: string;
26952
- }>;
26953
- /**
26954
- * Get ticket by ID
26955
- */
26956
- static getTicket(id: string): Promise<{
26957
- success: boolean;
26958
- ticket?: Ticket$1;
26959
- error?: string;
26960
- }>;
26961
- /**
26962
- * Create ticket
26963
- */
26964
- static createTicket(data: TicketRequest$1): Promise<{
26965
- success: boolean;
26966
- ticket?: Ticket$1;
26967
- error?: string;
26968
- fieldErrors?: Record<string, string[]>;
26969
- }>;
26970
- /**
26971
- * Update ticket
26972
- */
26973
- static updateTicket(id: string, data: PatchedTicketRequest$1): Promise<{
26974
- success: boolean;
26975
- ticket?: Ticket$1;
26976
- error?: string;
26977
- fieldErrors?: Record<string, string[]>;
26978
- }>;
26979
- /**
26980
- * Get ticket messages
26981
- */
26982
- static getMessages(ticketId: string): Promise<{
26983
- success: boolean;
26984
- error?: string;
26985
- }>;
26986
- /**
26987
- * Send message to ticket
26988
- */
26989
- static sendMessage(ticketId: string, text: string): Promise<{
26990
- success: boolean;
26991
- message?: MessageCreate$1;
26992
- error?: string;
26993
- fieldErrors?: Record<string, string[]>;
26994
- }>;
26995
- }
26996
-
26997
- /**
26998
- * Tasks Service
26999
- *
27000
- * Manages background tasks, queues, and workers
27001
- */
27002
-
27003
- declare class TasksService extends BaseClient {
27004
- /**
27005
- * Get queue status
27006
- */
27007
- static getQueuesStatus(): Promise<{
27008
- success: boolean;
27009
- status?: QueueStatus$1;
27010
- error?: string;
27011
- }>;
27012
- /**
27013
- * Manage queue operations
27014
- */
27015
- static manageQueue(data: QueueActionRequest$1): Promise<{
27016
- success: boolean;
27017
- result?: QueueAction$1;
27018
- error?: string;
27019
- }>;
27020
- /**
27021
- * Clear all queues
27022
- */
27023
- static clearQueues(data: APIResponseRequest$1): Promise<{
27024
- success: boolean;
27025
- response?: APIResponse$1;
27026
- error?: string;
27027
- }>;
27028
- /**
27029
- * Purge failed tasks
27030
- */
27031
- static purgeFailed(data: APIResponseRequest$1): Promise<{
27032
- success: boolean;
27033
- response?: APIResponse$1;
27034
- error?: string;
27035
- }>;
27036
- /**
27037
- * Get task statistics
27038
- */
27039
- static getTaskStats(): Promise<{
27040
- success: boolean;
27041
- stats?: TaskStatistics$1;
27042
- error?: string;
27043
- }>;
27044
- /**
27045
- * Get tasks list
27046
- */
27047
- static getTasksList(): Promise<{
27048
- success: boolean;
27049
- tasks?: APIResponse$1;
27050
- error?: string;
27051
- }>;
27052
- /**
27053
- * Get workers list
27054
- */
27055
- static getWorkersList(): Promise<{
27056
- success: boolean;
27057
- workers?: APIResponse$1;
27058
- error?: string;
27059
- }>;
27060
- /**
27061
- * Manage worker operations
27062
- */
27063
- static manageWorker(data: WorkerActionRequest$1): Promise<{
27064
- success: boolean;
27065
- result?: WorkerAction$1;
27066
- error?: string;
27067
- }>;
27068
- }
27069
-
27070
- /**
27071
- * Webhooks Service (DEPRECATED)
27072
- *
27073
- * Webhooks functionality has been integrated into main Payments API in v2.0
27074
- * This service is kept as a stub for backward compatibility
27075
- */
27076
-
27077
- declare class WebhooksService extends BaseClient {
27078
- /**
27079
- * @deprecated Webhooks integrated into Payments API in v2.0
27080
- */
27081
- static list(): Promise<{
27082
- success: boolean;
27083
- events?: never;
27084
- error?: string;
27085
- }>;
27086
- /**
27087
- * @deprecated Webhooks integrated into Payments API in v2.0
27088
- */
27089
- static get(): Promise<{
27090
- success: boolean;
27091
- event?: never;
27092
- error?: string;
27093
- }>;
27094
- /**
27095
- * @deprecated Webhooks integrated into Payments API in v2.0
27096
- */
27097
- static getStats(): Promise<{
27098
- success: boolean;
27099
- stats?: never;
27100
- error?: string;
27101
- }>;
27102
- /**
27103
- * @deprecated Webhooks integrated into Payments API in v2.0
27104
- */
27105
- static getHealth(): Promise<{
27106
- success: boolean;
27107
- health?: never;
27108
- error?: string;
27109
- }>;
27110
- /**
27111
- * @deprecated Webhooks integrated into Payments API in v2.0
27112
- */
27113
- static retry(): Promise<{
27114
- success: boolean;
27115
- error?: string;
27116
- }>;
27117
- }
27118
-
27119
- /**
27120
- * API Keys Service (DEPRECATED)
27121
- *
27122
- * API Keys functionality has been removed in Payments v2.0
27123
- * This service is kept as a stub for backward compatibility
27124
- */
27125
-
27126
- declare class ApiKeysService extends BaseClient {
27127
- /**
27128
- * @deprecated API Keys removed in v2.0
27129
- */
27130
- static list(): Promise<{
27131
- success: boolean;
27132
- keys?: never;
27133
- error?: string;
27134
- }>;
27135
- /**
27136
- * @deprecated API Keys removed in v2.0
27137
- */
27138
- static create(): Promise<{
27139
- success: boolean;
27140
- key?: never;
27141
- error?: string;
27142
- fieldErrors?: Record<string, string[]>;
27143
- }>;
27144
- /**
27145
- * @deprecated API Keys removed in v2.0
27146
- */
27147
- static get(): Promise<{
27148
- success: boolean;
27149
- key?: never;
27150
- error?: string;
27151
- }>;
27152
- /**
27153
- * @deprecated API Keys removed in v2.0
27154
- */
27155
- static update(): Promise<{
27156
- success: boolean;
27157
- key?: never;
27158
- error?: string;
27159
- fieldErrors?: Record<string, string[]>;
27160
- }>;
27161
- /**
27162
- * @deprecated API Keys removed in v2.0
27163
- */
27164
- static delete(): Promise<{
27165
- success: boolean;
27166
- error?: string;
27167
- }>;
27168
- /**
27169
- * @deprecated API Keys removed in v2.0
27170
- */
27171
- static validate(): Promise<{
27172
- success: boolean;
27173
- validation?: never;
27174
- error?: string;
27175
- }>;
27176
- /**
27177
- * @deprecated API Keys removed in v2.0
27178
- */
27179
- static getAnalytics(): Promise<{
27180
- success: boolean;
27181
- analytics?: never;
27182
- error?: string;
27183
- }>;
27184
- /**
27185
- * @deprecated API Keys removed in v2.0
27186
- */
27187
- static getStats(): Promise<{
27188
- success: boolean;
27189
- stats?: never;
27190
- error?: string;
27191
- }>;
27192
- }
27193
-
27194
- /**
27195
- * Payments Service
27196
- *
27197
- * Manages payment operations - create, check status, confirm
27198
- */
27199
-
27200
- declare class PaymentsService extends BaseClient {
27201
- /**
27202
- * List payments
27203
- */
27204
- static list(params?: {
27205
- page?: number;
27206
- page_size?: number;
27207
- }): Promise<{
27208
- success: boolean;
27209
- payments?: PaginatedPaymentListList$1;
27210
- error?: string;
27211
- }>;
27212
- /**
27213
- * Create payment
27214
- */
27215
- static create(): Promise<{
27216
- success: boolean;
27217
- payment?: any;
27218
- error?: string;
27219
- fieldErrors?: Record<string, string[]>;
27220
- }>;
27221
- /**
27222
- * Get payment details
27223
- */
27224
- static get(id: string): Promise<{
27225
- success: boolean;
27226
- payment?: PaymentDetail$1;
27227
- error?: string;
27228
- }>;
27229
- /**
27230
- * Get payment status
27231
- */
27232
- static getStatus(id: string): Promise<{
27233
- success: boolean;
27234
- payment?: any;
27235
- error?: string;
27236
- }>;
27237
- /**
27238
- * Confirm payment (user clicked "I paid")
27239
- */
27240
- static confirm(id: string): Promise<{
27241
- success: boolean;
27242
- payment?: any;
27243
- error?: string;
27244
- }>;
27245
- /**
27246
- * @deprecated Cancel payment removed in v2.0
27247
- */
27248
- static cancel(): Promise<{
27249
- success: boolean;
27250
- payment?: never;
27251
- error?: string;
27252
- }>;
27253
- /**
27254
- * @deprecated Check status method replaced with getStatus in v2.0
27255
- */
27256
- static checkStatus(id: string): Promise<{
27257
- success: boolean;
27258
- payment?: any;
27259
- error?: string;
27260
- }>;
27261
- /**
27262
- * @deprecated Analytics removed in v2.0
27263
- */
27264
- static getAnalytics(): Promise<{
27265
- success: boolean;
27266
- analytics?: never;
27267
- error?: string;
27268
- }>;
27269
- /**
27270
- * @deprecated Stats removed in v2.0
27271
- */
27272
- static getStats(): Promise<{
27273
- success: boolean;
27274
- stats?: never;
27275
- error?: string;
27276
- }>;
27277
- }
27278
-
27279
- /**
27280
- * Subscriptions Service (DEPRECATED)
27281
- *
27282
- * Subscriptions functionality has been removed in Payments v2.0
27283
- * This service is kept as a stub for backward compatibility
27284
- */
27285
-
27286
- declare class SubscriptionsService extends BaseClient {
27287
- /**
27288
- * @deprecated Subscriptions removed in v2.0
27289
- */
27290
- static list(): Promise<{
27291
- success: boolean;
27292
- subscriptions?: never;
27293
- error?: string;
27294
- }>;
27295
- /**
27296
- * @deprecated Subscriptions removed in v2.0
27297
- */
27298
- static create(): Promise<{
27299
- success: boolean;
27300
- subscription?: never;
27301
- error?: string;
27302
- fieldErrors?: Record<string, string[]>;
27303
- }>;
27304
- /**
27305
- * @deprecated Subscriptions removed in v2.0
27306
- */
27307
- static get(): Promise<{
27308
- success: boolean;
27309
- subscription?: never;
27310
- error?: string;
27311
- }>;
27312
- /**
27313
- * @deprecated Subscriptions removed in v2.0
27314
- */
27315
- static update(): Promise<{
27316
- success: boolean;
27317
- subscription?: never;
27318
- error?: string;
27319
- fieldErrors?: Record<string, string[]>;
27320
- }>;
27321
- /**
27322
- * @deprecated Subscriptions removed in v2.0
27323
- */
27324
- static delete(): Promise<{
27325
- success: boolean;
27326
- error?: string;
27327
- }>;
27328
- /**
27329
- * @deprecated Subscriptions removed in v2.0
27330
- */
27331
- static getAnalytics(): Promise<{
27332
- success: boolean;
27333
- analytics?: never;
27334
- error?: string;
27335
- }>;
27336
- /**
27337
- * @deprecated Subscriptions removed in v2.0
27338
- */
27339
- static listTariffs(): Promise<{
27340
- success: boolean;
27341
- tariffs?: never;
27342
- error?: string;
27343
- }>;
27344
- /**
27345
- * @deprecated Subscriptions removed in v2.0
27346
- */
27347
- static getTariff(): Promise<{
27348
- success: boolean;
27349
- tariff?: never;
27350
- error?: string;
27351
- }>;
27352
- }
27353
-
27354
- /**
27355
- * Payment Dashboard Service (DEPRECATED)
27356
- *
27357
- * Dashboard functionality has been removed in Payments v2.0
27358
- * Use basic endpoints (balance, payments, transactions) instead
27359
- * This service is kept as a stub for backward compatibility
27360
- */
27361
-
27362
- declare class PaymentDashboardService extends BaseClient {
27363
- /**
27364
- * @deprecated Dashboard removed in v2.0
27365
- */
27366
- static getOverview(): Promise<{
27367
- success: boolean;
27368
- overview?: never;
27369
- error?: string;
27370
- }>;
27371
- /**
27372
- * @deprecated Dashboard removed in v2.0
27373
- */
27374
- static getMetrics(): Promise<{
27375
- success: boolean;
27376
- metrics?: never;
27377
- error?: string;
27378
- }>;
27379
- /**
27380
- * @deprecated Dashboard removed in v2.0
27381
- */
27382
- static getBalanceOverview(): Promise<{
27383
- success: boolean;
27384
- balance?: never;
27385
- error?: string;
27386
- }>;
27387
- /**
27388
- * @deprecated Dashboard removed in v2.0
27389
- */
27390
- static getSubscriptionOverview(): Promise<{
27391
- success: boolean;
27392
- subscription?: never;
27393
- error?: string;
27394
- }>;
27395
- /**
27396
- * @deprecated Dashboard removed in v2.0
27397
- */
27398
- static getApiKeysOverview(): Promise<{
27399
- success: boolean;
27400
- apiKeys?: never;
27401
- error?: string;
27402
- }>;
27403
- /**
27404
- * @deprecated Dashboard removed in v2.0
27405
- */
27406
- static getChartData(): Promise<{
27407
- success: boolean;
27408
- chartData?: never;
27409
- error?: string;
27410
- }>;
27411
- /**
27412
- * @deprecated Dashboard removed in v2.0
27413
- */
27414
- static getPaymentAnalytics(): Promise<{
27415
- success: boolean;
27416
- analytics?: never;
27417
- error?: string;
27418
- }>;
27419
- /**
27420
- * @deprecated Dashboard removed in v2.0
27421
- */
27422
- static getRecentPayments(): Promise<{
27423
- success: boolean;
27424
- payments?: never;
27425
- error?: string;
27426
- }>;
27427
- /**
27428
- * @deprecated Dashboard removed in v2.0
27429
- */
27430
- static getRecentTransactions(): Promise<{
27431
- success: boolean;
27432
- transactions?: never;
27433
- error?: string;
27434
- }>;
27435
- }
27436
-
27437
- /**
27438
- * Newsletter Campaigns Service
27439
- *
27440
- * Manages newsletter campaigns
27441
- */
27442
-
27443
- declare class CampaignsService extends BaseClient {
27444
- /**
27445
- * List campaigns
27446
- */
27447
- static list(page?: number, pageSize?: number): Promise<{
27448
- success: boolean;
27449
- campaigns?: PaginatedNewsletterCampaignList$1;
27450
- error?: string;
27451
- }>;
27452
- /**
27453
- * Create campaign
27454
- */
27455
- static create(data: NewsletterCampaignRequest$1): Promise<{
27456
- success: boolean;
27457
- campaign?: NewsletterCampaign$2;
27458
- error?: string;
27459
- fieldErrors?: Record<string, string[]>;
27460
- }>;
27461
- /**
27462
- * Get campaign details
27463
- */
27464
- static get(id: number): Promise<{
27465
- success: boolean;
27466
- campaign?: NewsletterCampaign$2;
27467
- error?: string;
27468
- }>;
27469
- /**
27470
- * Update campaign
27471
- */
27472
- static update(id: number, data: NewsletterCampaignRequest$1): Promise<{
27473
- success: boolean;
27474
- campaign?: NewsletterCampaign$2;
27475
- error?: string;
27476
- fieldErrors?: Record<string, string[]>;
27477
- }>;
27478
- /**
27479
- * Delete campaign
27480
- */
27481
- static delete(id: number): Promise<{
27482
- success: boolean;
27483
- error?: string;
27484
- }>;
27485
- /**
27486
- * Send campaign
27487
- */
27488
- static send(data: SendCampaignRequest$1): Promise<{
27489
- success: boolean;
27490
- response?: SendCampaignResponse$1;
27491
- error?: string;
27492
- }>;
27493
- }
27494
-
27495
- /**
27496
- * Newsletters List Service
27497
- *
27498
- * Manages available newsletters
27499
- */
27500
-
27501
- declare class NewslettersListService extends BaseClient {
27502
- /**
27503
- * List available newsletters
27504
- */
27505
- static list(page?: number, pageSize?: number): Promise<{
27506
- success: boolean;
27507
- newsletters?: PaginatedNewsletterList$1;
27508
- error?: string;
27509
- }>;
27510
- /**
27511
- * Get newsletter details
27512
- */
27513
- static get(id: number): Promise<{
27514
- success: boolean;
27515
- newsletter?: Newsletter$1;
27516
- error?: string;
27517
- }>;
27518
- }
27519
-
27520
- /**
27521
- * Bulk Email Service
27522
- *
27523
- * Sends bulk emails
27524
- */
27525
-
27526
- declare class BulkEmailService extends BaseClient {
27527
- /**
27528
- * Send bulk email
27529
- */
27530
- static send(data: BulkEmailRequest$1): Promise<{
27531
- success: boolean;
27532
- response?: BulkEmailResponse$2;
27533
- error?: string;
27534
- fieldErrors?: Record<string, string[]>;
27535
- }>;
27536
- }
27537
-
27538
- /**
27539
- * Newsletter Service
27540
- *
27541
- * Manages newsletter subscriptions
27542
- */
27543
-
27544
- declare class NewsletterService extends BaseClient {
27545
- /**
27546
- * Subscribe to newsletter
27547
- */
27548
- static subscribe(data: SubscribeRequest$1): Promise<{
27549
- success: boolean;
27550
- response?: SubscribeResponse$1;
27551
- error?: string;
27552
- fieldErrors?: Record<string, string[]>;
27553
- }>;
27554
- /**
27555
- * Unsubscribe from newsletter
27556
- */
27557
- static unsubscribe(data: UnsubscribeRequest$2): Promise<{
27558
- success: boolean;
27559
- response?: SuccessResponse$1;
27560
- error?: string;
27561
- fieldErrors?: Record<string, string[]>;
27562
- }>;
27563
- /**
27564
- * List user subscriptions
27565
- */
27566
- static list(page?: number, pageSize?: number): Promise<{
27567
- success: boolean;
27568
- subscriptions?: PaginatedNewsletterSubscriptionList$1;
27569
- error?: string;
27570
- }>;
27571
- }
27572
26977
 
27573
26978
  interface AccountsContextValue {
27574
26979
  profile?: User;
@@ -27811,32 +27216,4 @@ declare function KnowbaseSessionsProvider({ children }: {
27811
27216
  }): react_jsx_runtime.JSX.Element;
27812
27217
  declare function useKnowbaseSessionsContext(): KnowbaseSessionsContextValue;
27813
27218
 
27814
- interface TasksContextValue {
27815
- stats: TaskStatistics | undefined;
27816
- isLoadingStats: boolean;
27817
- statsError: Error | null;
27818
- queues: QueueStatus | undefined;
27819
- isLoadingQueues: boolean;
27820
- queuesError: Error | null;
27821
- workers: APIResponse | undefined;
27822
- isLoadingWorkers: boolean;
27823
- workersError: Error | null;
27824
- clearTasks: (data: APIResponseRequest) => Promise<APIResponse>;
27825
- clearQueues: (data: APIResponseRequest) => Promise<APIResponse>;
27826
- purgeFailedTasks: (data: APIResponseRequest) => Promise<APIResponse>;
27827
- queueAction: (data: QueueActionRequest) => Promise<QueueAction>;
27828
- workerAction: (data: WorkerActionRequest) => Promise<WorkerAction>;
27829
- refreshStats: () => void;
27830
- refreshQueues: () => void;
27831
- refreshWorkers: () => void;
27832
- refreshAll: () => void;
27833
- }
27834
- interface TasksProviderProps {
27835
- children: ReactNode;
27836
- autoRefresh?: boolean;
27837
- refreshInterval?: number;
27838
- }
27839
- declare function TasksProvider({ children, autoRefresh, refreshInterval, }: TasksProviderProps): react_jsx_runtime.JSX.Element;
27840
- declare function useTasks(): TasksContextValue;
27841
-
27842
- 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$9 as CfgAccountsTypes, models$s as CfgAuthTypes, models$r as CfgBulkEmailTypes, models$q as CfgCampaignsTypes, models$p as CfgCentrifugoAdminApiTypes, models$o as CfgCentrifugoMonitoringTypes, models$n as CfgCentrifugoTestingTypes, models$8 as CfgCentrifugoTypes, models$l as CfgDashboardActivityTypes, models$m as CfgDashboardApiZonesTypes, models$k as CfgDashboardChartsTypes, models$j as CfgDashboardCommandsTypes, models$i as CfgDashboardOverviewTypes, models$h as CfgDashboardStatisticsTypes, models$g as CfgDashboardSystemTypes, models$7 as CfgEndpointsTypes, models$6 as CfgHealthTypes, models$5 as CfgKnowbaseTypes, models$f as CfgLeadSubmissionTypes, models$4 as CfgLeadsTypes, models$e as CfgLogsTypes, models$3 as CfgNewsletterTypes, models$d as CfgNewslettersTypes, models$2 as CfgPaymentsTypes, models$c as CfgSubscriptionsTypes, models$1 as CfgSupportTypes, models as CfgTasksTypes, models$b as CfgTestingTypes, models$a 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, type TasksContextValue, TasksProvider, type TasksProviderProps, TasksService, type Ticket, type TicketRequest, type User, WebhooksService, api, clearAPITokens, configureAPI, createAccountsOtpRequestCreate, createAccountsOtpVerifyCreate, createAccountsProfileAvatarCreate, createAccountsTokenRefreshCreate, createCentrifugoServerAuthTokenCreate, createCentrifugoServerChannelsCreate, createCentrifugoServerHistoryCreate, createCentrifugoServerInfoCreate, createCentrifugoServerPresenceCreate, createCentrifugoServerPresenceStatsCreate, createCentrifugoTestingConnectionTokenCreate, createCentrifugoTestingPublishTestCreate, createCentrifugoTestingPublishWithLoggingCreate, createCentrifugoTestingSendAckCreate, createDashboardApiCommandsExecuteCreate, 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, getCentrifugoMonitorChannelsRetrieve, getCentrifugoMonitorHealthRetrieve, getCentrifugoMonitorOverviewRetrieve, getCentrifugoMonitorPublishesRetrieve, getCentrifugoMonitorTimelineRetrieve, getDashboardApiActivityActionsList, getDashboardApiActivityRecentList, getDashboardApiChartsActivityRetrieve, getDashboardApiChartsRecentUsersList, getDashboardApiChartsRegistrationsRetrieve, getDashboardApiChartsTrackerList, getDashboardApiCommandsHelpRetrieve, getDashboardApiCommandsList, getDashboardApiCommandsSummaryRetrieve, getDashboardApiOverviewOverviewRetrieve, getDashboardApiStatisticsAppsList, getDashboardApiStatisticsCardsList, getDashboardApiStatisticsUsersRetrieve, getDashboardApiSystemHealthRetrieve, getDashboardApiSystemMetricsRetrieve, getDashboardApiZonesList, getDashboardApiZonesSummaryRetrieve, getEndpointsDrfRetrieve, getEndpointsUrlsCompactRetrieve, getEndpointsUrlsRetrieve, 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, useTasks, withRetry };
27219
+ export { API, APIClient, APIError, APILogger, type APIOptions, type AccountsContextValue, AccountsProvider, type ApiKeysContextValue, ApiKeysProvider, type ArchiveProcessingResult$1 as ArchiveProcessingResult, type ArchiveStatistics$1 as ArchiveStatistics, type BalancesContextValue, BalancesProvider, models$9 as CfgAccountsTypes, models$s as CfgAuthTypes, models$r as CfgBulkEmailTypes, models$q as CfgCampaignsTypes, models$p as CfgCentrifugoAdminApiTypes, models$o as CfgCentrifugoMonitoringTypes, models$n as CfgCentrifugoTestingTypes, models$8 as CfgCentrifugoTypes, models$l as CfgDashboardActivityTypes, models$m as CfgDashboardApiZonesTypes, models$k as CfgDashboardChartsTypes, models$j as CfgDashboardCommandsTypes, models$i as CfgDashboardOverviewTypes, models$h as CfgDashboardStatisticsTypes, models$g as CfgDashboardSystemTypes, models$7 as CfgEndpointsTypes, models$6 as CfgHealthTypes, models$5 as CfgKnowbaseTypes, models$f as CfgLeadSubmissionTypes, models$4 as CfgLeadsTypes, models$e as CfgLogsTypes, models$3 as CfgNewsletterTypes, models$d as CfgNewslettersTypes, models$2 as CfgPaymentsTypes, models$c as CfgSubscriptionsTypes, models$1 as CfgSupportTypes, models as CfgTasksTypes, models$b as CfgTestingTypes, models$a 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, LocalStorageAdapter, type LoggerConfig, MemoryStorageAdapter, type Message, type MessageCreateRequest, type MessageRequest, NetworkError, type NewsletterContextValue, NewsletterProvider, 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, type PaymentDetail, type PaymentList, type PaymentsContextValue, PaymentsProvider, REFRESH_TOKEN_KEY, type RequestLog, type ResponseLog, type RetryConfig, type RootPaymentsContextValue, RootPaymentsProvider, index$2 as Schemas, type StorageAdapter, type SupportContextValue, SupportProvider, TOKEN_KEY, type Ticket, type TicketRequest, type User, api, clearAPITokens, configureAPI, createAccountsOtpRequestCreate, createAccountsOtpVerifyCreate, createAccountsProfileAvatarCreate, createAccountsTokenRefreshCreate, createCentrifugoServerAuthTokenCreate, createCentrifugoServerChannelsCreate, createCentrifugoServerHistoryCreate, createCentrifugoServerInfoCreate, createCentrifugoServerPresenceCreate, createCentrifugoServerPresenceStatsCreate, createCentrifugoTestingConnectionTokenCreate, createCentrifugoTestingPublishTestCreate, createCentrifugoTestingPublishWithLoggingCreate, createCentrifugoTestingSendAckCreate, createDashboardApiCommandsExecuteCreate, 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, api as default, deleteKnowbaseAdminChatDestroy, deleteKnowbaseAdminDocumentsDestroy, deleteKnowbaseAdminSessionsDestroy, deleteKnowbaseSystemArchivesDestroy, deleteKnowbaseSystemChunksDestroy, deleteKnowbaseSystemItemsDestroy, deleteLeadsDestroy, deleteNewsletterCampaignsDestroy, deleteSupportTicketsDestroy, deleteSupportTicketsMessagesDestroy, getAPIInstance, getAccountsProfileRetrieve, getCentrifugoMonitorChannelsRetrieve, getCentrifugoMonitorHealthRetrieve, getCentrifugoMonitorOverviewRetrieve, getCentrifugoMonitorPublishesRetrieve, getCentrifugoMonitorTimelineRetrieve, getDashboardApiActivityActionsList, getDashboardApiActivityRecentList, getDashboardApiChartsActivityRetrieve, getDashboardApiChartsRecentUsersList, getDashboardApiChartsRegistrationsRetrieve, getDashboardApiChartsTrackerList, getDashboardApiCommandsHelpRetrieve, getDashboardApiCommandsList, getDashboardApiCommandsSummaryRetrieve, getDashboardApiOverviewOverviewRetrieve, getDashboardApiStatisticsAppsList, getDashboardApiStatisticsCardsList, getDashboardApiStatisticsUsersRetrieve, getDashboardApiSystemHealthRetrieve, getDashboardApiSystemMetricsRetrieve, getDashboardApiZonesList, getDashboardApiZonesSummaryRetrieve, getEndpointsDrfRetrieve, getEndpointsUrlsCompactRetrieve, getEndpointsUrlsRetrieve, 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, getTasksLogsList, getTasksLogsOverviewRetrieve, getTasksLogsRelatedRetrieve, getTasksLogsRetrieve, getTasksLogsStatsRetrieve, getTasksLogsTimelineRetrieve, 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 };