@djangocfg/api 1.2.7 → 1.2.9

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 (28) hide show
  1. package/dist/index.cjs +1274 -2252
  2. package/dist/index.cjs.map +1 -1
  3. package/dist/index.d.cts +321 -1099
  4. package/dist/index.d.ts +321 -1099
  5. package/dist/index.mjs +1197 -2162
  6. package/dist/index.mjs.map +1 -1
  7. package/package.json +2 -2
  8. package/src/cfg/generated/_utils/fetchers/cfg__centrifugo.ts +0 -14
  9. package/src/cfg/generated/_utils/fetchers/cfg__centrifugo__centrifugo_admin_api.ts +0 -84
  10. package/src/cfg/generated/_utils/fetchers/cfg__centrifugo__centrifugo_monitoring.ts +0 -56
  11. package/src/cfg/generated/_utils/fetchers/cfg__centrifugo__centrifugo_testing.ts +0 -56
  12. package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_commands.ts +30 -0
  13. package/src/cfg/generated/_utils/hooks/cfg__centrifugo.ts +0 -14
  14. package/src/cfg/generated/_utils/hooks/cfg__centrifugo__centrifugo_admin_api.ts +0 -108
  15. package/src/cfg/generated/_utils/hooks/cfg__centrifugo__centrifugo_monitoring.ts +0 -56
  16. package/src/cfg/generated/_utils/hooks/cfg__centrifugo__centrifugo_testing.ts +0 -72
  17. package/src/cfg/generated/_utils/hooks/cfg__dashboard__dashboard_commands.ts +34 -0
  18. package/src/cfg/generated/_utils/schemas/Command.schema.ts +2 -0
  19. package/src/cfg/generated/_utils/schemas/CommandExecuteRequestRequest.schema.ts +21 -0
  20. package/src/cfg/generated/_utils/schemas/CommandHelpResponse.schema.ts +25 -0
  21. package/src/cfg/generated/_utils/schemas/index.ts +2 -0
  22. package/src/cfg/generated/cfg__centrifugo/client.ts +0 -8
  23. package/src/cfg/generated/cfg__centrifugo__centrifugo_admin_api/client.ts +0 -61
  24. package/src/cfg/generated/cfg__centrifugo__centrifugo_monitoring/client.ts +0 -73
  25. package/src/cfg/generated/cfg__centrifugo__centrifugo_testing/client.ts +0 -43
  26. package/src/cfg/generated/cfg__dashboard__dashboard_commands/client.ts +21 -0
  27. package/src/cfg/generated/cfg__dashboard__dashboard_commands/models.ts +31 -0
  28. package/src/cfg/generated/schema.ts +256 -907
package/dist/index.d.cts CHANGED
@@ -1060,43 +1060,6 @@ declare namespace models$p {
1060
1060
  declare class CfgCentrifugoAdminApi {
1061
1061
  private client;
1062
1062
  constructor(client: any);
1063
- /**
1064
- * Get connection token for dashboard
1065
- *
1066
- * Returns JWT token and config for WebSocket connection to Centrifugo.
1067
- */
1068
- serverAuthTokenCreate(): Promise<any>;
1069
- /**
1070
- * List active channels
1071
- *
1072
- * Returns list of active channels with optional pattern filter.
1073
- */
1074
- serverChannelsCreate(data: CentrifugoChannelsRequestRequest$1): Promise<CentrifugoChannelsResponse$1>;
1075
- /**
1076
- * Get channel history
1077
- *
1078
- * Returns message history for a channel.
1079
- */
1080
- serverHistoryCreate(data: CentrifugoHistoryRequestRequest$1): Promise<CentrifugoHistoryResponse$1>;
1081
- /**
1082
- * Get Centrifugo server info
1083
- *
1084
- * Returns server information including node count, version, and uptime.
1085
- */
1086
- serverInfoCreate(): Promise<CentrifugoInfoResponse$1>;
1087
- /**
1088
- * Get channel presence
1089
- *
1090
- * Returns list of clients currently subscribed to a channel.
1091
- */
1092
- serverPresenceCreate(data: CentrifugoPresenceRequestRequest$1): Promise<CentrifugoPresenceResponse$1>;
1093
- /**
1094
- * Get channel presence statistics
1095
- *
1096
- * Returns quick statistics about channel presence (num_clients,
1097
- * num_users).
1098
- */
1099
- serverPresenceStatsCreate(data: CentrifugoPresenceStatsRequestRequest$1): Promise<CentrifugoPresenceStatsResponse$1>;
1100
1063
  /**
1101
1064
  * Get connection token for dashboard
1102
1065
  *
@@ -1234,28 +1197,6 @@ declare namespace models$o {
1234
1197
  declare class CfgCentrifugoMonitoring {
1235
1198
  private client;
1236
1199
  constructor(client: any);
1237
- /**
1238
- * Get Centrifugo health status
1239
- *
1240
- * Returns the current health status of the Centrifugo client.
1241
- */
1242
- centrifugoAdminApiMonitorHealthRetrieve(): Promise<HealthCheck$2>;
1243
- centrifugoAdminApiMonitorOverviewRetrieve(hours?: number): Promise<OverviewStats$1>;
1244
- centrifugoAdminApiMonitorOverviewRetrieve(params?: {
1245
- hours?: number;
1246
- }): Promise<OverviewStats$1>;
1247
- centrifugoAdminApiMonitorPublishesRetrieve(channel?: string, count?: number, offset?: number, status?: string): Promise<RecentPublishes$1>;
1248
- centrifugoAdminApiMonitorPublishesRetrieve(params?: {
1249
- channel?: string;
1250
- count?: number;
1251
- offset?: number;
1252
- status?: string;
1253
- }): Promise<RecentPublishes$1>;
1254
- centrifugoAdminApiMonitorTimelineRetrieve(hours?: number, interval?: string): Promise<ChannelList$1[]>;
1255
- centrifugoAdminApiMonitorTimelineRetrieve(params?: {
1256
- hours?: number;
1257
- interval?: string;
1258
- }): Promise<ChannelList$1[]>;
1259
1200
  /**
1260
1201
  * Get Centrifugo health status
1261
1202
  *
@@ -1373,33 +1314,6 @@ declare namespace models$n {
1373
1314
  declare class CfgCentrifugoTesting {
1374
1315
  private client;
1375
1316
  constructor(client: any);
1376
- /**
1377
- * Generate connection token
1378
- *
1379
- * Generate JWT token for WebSocket connection to Centrifugo.
1380
- */
1381
- centrifugoAdminApiTestingConnectionTokenCreate(data: ConnectionTokenRequestRequest$1): Promise<ConnectionTokenResponse$1>;
1382
- /**
1383
- * Publish test message
1384
- *
1385
- * Publish test message to Centrifugo via wrapper with optional ACK
1386
- * tracking.
1387
- */
1388
- centrifugoAdminApiTestingPublishTestCreate(data: PublishTestRequestRequest$1): Promise<PublishTestResponse$1>;
1389
- /**
1390
- * Publish with database logging
1391
- *
1392
- * Publish message using CentrifugoClient with database logging. This will
1393
- * create CentrifugoLog records.
1394
- */
1395
- centrifugoAdminApiTestingPublishWithLoggingCreate(data: PublishTestRequestRequest$1): Promise<PublishTestResponse$1>;
1396
- /**
1397
- * Send manual ACK
1398
- *
1399
- * Manually send ACK for a message to the wrapper. Pass message_id in
1400
- * request body.
1401
- */
1402
- centrifugoAdminApiTestingSendAckCreate(data: ManualAckRequestRequest$1): Promise<ManualAckResponse$1>;
1403
1317
  /**
1404
1318
  * Generate connection token
1405
1319
  *
@@ -1552,6 +1466,33 @@ declare class CfgDashboardCharts {
1552
1466
  }): Promise<any>;
1553
1467
  }
1554
1468
 
1469
+ /**
1470
+ * Response serializer for command help.
1471
+ *
1472
+ * Response model (includes read-only fields).
1473
+ */
1474
+ interface CommandHelpResponse$1 {
1475
+ status: string;
1476
+ command: string;
1477
+ app?: string;
1478
+ help_text?: string;
1479
+ is_allowed?: boolean;
1480
+ risk_level?: string;
1481
+ error?: string;
1482
+ }
1483
+ /**
1484
+ * Request serializer for command execution.
1485
+ *
1486
+ * Request model (no read-only fields).
1487
+ */
1488
+ interface CommandExecuteRequestRequest$1 {
1489
+ /** Name of the Django management command */
1490
+ command: string;
1491
+ /** Positional arguments for the command */
1492
+ args?: Array<string>;
1493
+ /** Named options for the command (e.g., {'verbosity': '2'}) */
1494
+ options?: Record<string, any>;
1495
+ }
1555
1496
  /**
1556
1497
  * Commands summary serializer.
1557
1498
  *
@@ -1576,10 +1517,12 @@ interface Command$1 {
1576
1517
  help: string;
1577
1518
  is_core: boolean;
1578
1519
  is_custom: boolean;
1520
+ is_allowed?: boolean;
1521
+ risk_level?: string;
1579
1522
  }
1580
1523
 
1581
1524
  declare namespace models$j {
1582
- export type { Command$1 as Command, CommandsSummary$1 as CommandsSummary };
1525
+ export type { Command$1 as Command, CommandExecuteRequestRequest$1 as CommandExecuteRequestRequest, CommandHelpResponse$1 as CommandHelpResponse, CommandsSummary$1 as CommandsSummary };
1583
1526
  }
1584
1527
 
1585
1528
  /**
@@ -1594,6 +1537,19 @@ declare class CfgDashboardCommands {
1594
1537
  * Retrieve all available Django management commands
1595
1538
  */
1596
1539
  dashboardApiCommandsList(): Promise<any>;
1540
+ /**
1541
+ * Get command help
1542
+ *
1543
+ * Get detailed help text for a specific Django management command
1544
+ */
1545
+ dashboardApiCommandsHelpRetrieve(id: string): Promise<CommandHelpResponse$1>;
1546
+ /**
1547
+ * Execute command
1548
+ *
1549
+ * Execute a Django management command and stream output in Server-Sent
1550
+ * Events format
1551
+ */
1552
+ dashboardApiCommandsExecuteCreate(data: CommandExecuteRequestRequest$1): Promise<any>;
1597
1553
  /**
1598
1554
  * Get commands summary
1599
1555
  *
@@ -2351,10 +2307,6 @@ declare class CfgAccounts {
2351
2307
  declare class CfgCentrifugo {
2352
2308
  private client;
2353
2309
  constructor(client: any);
2354
- /**
2355
- * Get statistics per channel.
2356
- */
2357
- adminApiMonitorChannelsRetrieve(): Promise<any>;
2358
2310
  /**
2359
2311
  * Get statistics per channel.
2360
2312
  */
@@ -6934,6 +6886,9 @@ declare const OPENAPI_SCHEMA: {
6934
6886
  help: {
6935
6887
  type: string;
6936
6888
  };
6889
+ is_allowed: {
6890
+ type: string;
6891
+ };
6937
6892
  is_core: {
6938
6893
  type: string;
6939
6894
  };
@@ -6943,6 +6898,62 @@ declare const OPENAPI_SCHEMA: {
6943
6898
  name: {
6944
6899
  type: string;
6945
6900
  };
6901
+ risk_level: {
6902
+ type: string;
6903
+ };
6904
+ };
6905
+ required: string[];
6906
+ type: string;
6907
+ };
6908
+ CommandExecuteRequestRequest: {
6909
+ description: string;
6910
+ properties: {
6911
+ args: {
6912
+ description: string;
6913
+ items: {
6914
+ minLength: number;
6915
+ type: string;
6916
+ };
6917
+ type: string;
6918
+ };
6919
+ command: {
6920
+ description: string;
6921
+ minLength: number;
6922
+ type: string;
6923
+ };
6924
+ options: {
6925
+ additionalProperties: {};
6926
+ description: string;
6927
+ type: string;
6928
+ };
6929
+ };
6930
+ required: string[];
6931
+ type: string;
6932
+ };
6933
+ CommandHelpResponse: {
6934
+ description: string;
6935
+ properties: {
6936
+ app: {
6937
+ type: string;
6938
+ };
6939
+ command: {
6940
+ type: string;
6941
+ };
6942
+ error: {
6943
+ type: string;
6944
+ };
6945
+ help_text: {
6946
+ type: string;
6947
+ };
6948
+ is_allowed: {
6949
+ type: string;
6950
+ };
6951
+ risk_level: {
6952
+ type: string;
6953
+ };
6954
+ status: {
6955
+ type: string;
6956
+ };
6946
6957
  };
6947
6958
  required: string[];
6948
6959
  type: string;
@@ -11870,7 +11881,7 @@ declare const OPENAPI_SCHEMA: {
11870
11881
  "x-async-capable": boolean;
11871
11882
  };
11872
11883
  };
11873
- "/cfg/centrifugo/admin/api/monitor/channels/": {
11884
+ "/cfg/centrifugo/monitor/channels/": {
11874
11885
  get: {
11875
11886
  description: string;
11876
11887
  operationId: string;
@@ -11886,7 +11897,7 @@ declare const OPENAPI_SCHEMA: {
11886
11897
  "x-async-capable": boolean;
11887
11898
  };
11888
11899
  };
11889
- "/cfg/centrifugo/admin/api/monitor/health/": {
11900
+ "/cfg/centrifugo/monitor/health/": {
11890
11901
  get: {
11891
11902
  description: string;
11892
11903
  operationId: string;
@@ -11920,7 +11931,7 @@ declare const OPENAPI_SCHEMA: {
11920
11931
  "x-async-capable": boolean;
11921
11932
  };
11922
11933
  };
11923
- "/cfg/centrifugo/admin/api/monitor/overview/": {
11934
+ "/cfg/centrifugo/monitor/overview/": {
11924
11935
  get: {
11925
11936
  description: string;
11926
11937
  operationId: string;
@@ -11962,7 +11973,7 @@ declare const OPENAPI_SCHEMA: {
11962
11973
  "x-async-capable": boolean;
11963
11974
  };
11964
11975
  };
11965
- "/cfg/centrifugo/admin/api/monitor/publishes/": {
11976
+ "/cfg/centrifugo/monitor/publishes/": {
11966
11977
  get: {
11967
11978
  description: string;
11968
11979
  operationId: string;
@@ -12004,7 +12015,7 @@ declare const OPENAPI_SCHEMA: {
12004
12015
  "x-async-capable": boolean;
12005
12016
  };
12006
12017
  };
12007
- "/cfg/centrifugo/admin/api/monitor/timeline/": {
12018
+ "/cfg/centrifugo/monitor/timeline/": {
12008
12019
  get: {
12009
12020
  description: string;
12010
12021
  operationId: string;
@@ -12046,7 +12057,7 @@ declare const OPENAPI_SCHEMA: {
12046
12057
  "x-async-capable": boolean;
12047
12058
  };
12048
12059
  };
12049
- "/cfg/centrifugo/admin/api/server/auth/token/": {
12060
+ "/cfg/centrifugo/server/auth/token/": {
12050
12061
  post: {
12051
12062
  description: string;
12052
12063
  operationId: string;
@@ -12106,7 +12117,7 @@ declare const OPENAPI_SCHEMA: {
12106
12117
  "x-async-capable": boolean;
12107
12118
  };
12108
12119
  };
12109
- "/cfg/centrifugo/admin/api/server/channels/": {
12120
+ "/cfg/centrifugo/server/channels/": {
12110
12121
  post: {
12111
12122
  description: string;
12112
12123
  operationId: string;
@@ -12159,7 +12170,7 @@ declare const OPENAPI_SCHEMA: {
12159
12170
  "x-async-capable": boolean;
12160
12171
  };
12161
12172
  };
12162
- "/cfg/centrifugo/admin/api/server/history/": {
12173
+ "/cfg/centrifugo/server/history/": {
12163
12174
  post: {
12164
12175
  description: string;
12165
12176
  operationId: string;
@@ -12213,7 +12224,7 @@ declare const OPENAPI_SCHEMA: {
12213
12224
  "x-async-capable": boolean;
12214
12225
  };
12215
12226
  };
12216
- "/cfg/centrifugo/admin/api/server/info/": {
12227
+ "/cfg/centrifugo/server/info/": {
12217
12228
  post: {
12218
12229
  description: string;
12219
12230
  operationId: string;
@@ -12247,7 +12258,7 @@ declare const OPENAPI_SCHEMA: {
12247
12258
  "x-async-capable": boolean;
12248
12259
  };
12249
12260
  };
12250
- "/cfg/centrifugo/admin/api/server/presence-stats/": {
12261
+ "/cfg/centrifugo/server/presence-stats/": {
12251
12262
  post: {
12252
12263
  description: string;
12253
12264
  operationId: string;
@@ -12301,7 +12312,7 @@ declare const OPENAPI_SCHEMA: {
12301
12312
  "x-async-capable": boolean;
12302
12313
  };
12303
12314
  };
12304
- "/cfg/centrifugo/admin/api/server/presence/": {
12315
+ "/cfg/centrifugo/server/presence/": {
12305
12316
  post: {
12306
12317
  description: string;
12307
12318
  operationId: string;
@@ -12355,7 +12366,7 @@ declare const OPENAPI_SCHEMA: {
12355
12366
  "x-async-capable": boolean;
12356
12367
  };
12357
12368
  };
12358
- "/cfg/centrifugo/admin/api/testing/connection-token/": {
12369
+ "/cfg/centrifugo/testing/connection-token/": {
12359
12370
  post: {
12360
12371
  description: string;
12361
12372
  operationId: string;
@@ -12419,7 +12430,7 @@ declare const OPENAPI_SCHEMA: {
12419
12430
  "x-async-capable": boolean;
12420
12431
  };
12421
12432
  };
12422
- "/cfg/centrifugo/admin/api/testing/publish-test/": {
12433
+ "/cfg/centrifugo/testing/publish-test/": {
12423
12434
  post: {
12424
12435
  description: string;
12425
12436
  operationId: string;
@@ -12483,7 +12494,7 @@ declare const OPENAPI_SCHEMA: {
12483
12494
  "x-async-capable": boolean;
12484
12495
  };
12485
12496
  };
12486
- "/cfg/centrifugo/admin/api/testing/publish-with-logging/": {
12497
+ "/cfg/centrifugo/testing/publish-with-logging/": {
12487
12498
  post: {
12488
12499
  description: string;
12489
12500
  operationId: string;
@@ -12547,7 +12558,7 @@ declare const OPENAPI_SCHEMA: {
12547
12558
  "x-async-capable": boolean;
12548
12559
  };
12549
12560
  };
12550
- "/cfg/centrifugo/admin/api/testing/send-ack/": {
12561
+ "/cfg/centrifugo/testing/send-ack/": {
12551
12562
  post: {
12552
12563
  description: string;
12553
12564
  operationId: string;
@@ -12611,23 +12622,7 @@ declare const OPENAPI_SCHEMA: {
12611
12622
  "x-async-capable": boolean;
12612
12623
  };
12613
12624
  };
12614
- "/cfg/centrifugo/monitor/channels/": {
12615
- get: {
12616
- description: string;
12617
- operationId: string;
12618
- responses: {
12619
- "200": {
12620
- description: string;
12621
- };
12622
- };
12623
- security: {
12624
- jwtAuth: any[];
12625
- }[];
12626
- tags: string[];
12627
- "x-async-capable": boolean;
12628
- };
12629
- };
12630
- "/cfg/centrifugo/monitor/health/": {
12625
+ "/cfg/dashboard/api/activity/actions/": {
12631
12626
  get: {
12632
12627
  description: string;
12633
12628
  operationId: string;
@@ -12636,32 +12631,29 @@ declare const OPENAPI_SCHEMA: {
12636
12631
  content: {
12637
12632
  "application/json": {
12638
12633
  schema: {
12639
- $ref: string;
12640
- };
12641
- };
12642
- };
12643
- description: string;
12644
- };
12645
- "503": {
12646
- content: {
12647
- "application/json": {
12648
- schema: {
12649
- description: string;
12634
+ items: {
12635
+ $ref: string;
12636
+ };
12637
+ type: string;
12650
12638
  };
12651
12639
  };
12652
12640
  };
12653
12641
  description: string;
12654
12642
  };
12655
12643
  };
12656
- security: {
12657
- jwtAuth: any[];
12658
- }[];
12644
+ security: ({
12645
+ cookieAuth: any[];
12646
+ basicAuth?: undefined;
12647
+ } | {
12648
+ basicAuth: any[];
12649
+ cookieAuth?: undefined;
12650
+ })[];
12659
12651
  summary: string;
12660
12652
  tags: string[];
12661
12653
  "x-async-capable": boolean;
12662
12654
  };
12663
12655
  };
12664
- "/cfg/centrifugo/monitor/overview/": {
12656
+ "/cfg/dashboard/api/activity/recent/": {
12665
12657
  get: {
12666
12658
  description: string;
12667
12659
  operationId: string;
@@ -12670,6 +12662,7 @@ declare const OPENAPI_SCHEMA: {
12670
12662
  in: string;
12671
12663
  name: string;
12672
12664
  schema: {
12665
+ default: number;
12673
12666
  type: string;
12674
12667
  };
12675
12668
  }[];
@@ -12678,32 +12671,29 @@ declare const OPENAPI_SCHEMA: {
12678
12671
  content: {
12679
12672
  "application/json": {
12680
12673
  schema: {
12681
- $ref: string;
12682
- };
12683
- };
12684
- };
12685
- description: string;
12686
- };
12687
- "400": {
12688
- content: {
12689
- "application/json": {
12690
- schema: {
12691
- description: string;
12674
+ items: {
12675
+ $ref: string;
12676
+ };
12677
+ type: string;
12692
12678
  };
12693
12679
  };
12694
12680
  };
12695
12681
  description: string;
12696
12682
  };
12697
12683
  };
12698
- security: {
12699
- jwtAuth: any[];
12700
- }[];
12684
+ security: ({
12685
+ cookieAuth: any[];
12686
+ basicAuth?: undefined;
12687
+ } | {
12688
+ basicAuth: any[];
12689
+ cookieAuth?: undefined;
12690
+ })[];
12701
12691
  summary: string;
12702
12692
  tags: string[];
12703
12693
  "x-async-capable": boolean;
12704
12694
  };
12705
12695
  };
12706
- "/cfg/centrifugo/monitor/publishes/": {
12696
+ "/cfg/dashboard/api/charts/activity/": {
12707
12697
  get: {
12708
12698
  description: string;
12709
12699
  operationId: string;
@@ -12712,6 +12702,7 @@ declare const OPENAPI_SCHEMA: {
12712
12702
  in: string;
12713
12703
  name: string;
12714
12704
  schema: {
12705
+ default: number;
12715
12706
  type: string;
12716
12707
  };
12717
12708
  }[];
@@ -12726,26 +12717,20 @@ declare const OPENAPI_SCHEMA: {
12726
12717
  };
12727
12718
  description: string;
12728
12719
  };
12729
- "400": {
12730
- content: {
12731
- "application/json": {
12732
- schema: {
12733
- description: string;
12734
- };
12735
- };
12736
- };
12737
- description: string;
12738
- };
12739
12720
  };
12740
- security: {
12741
- jwtAuth: any[];
12742
- }[];
12721
+ security: ({
12722
+ cookieAuth: any[];
12723
+ basicAuth?: undefined;
12724
+ } | {
12725
+ basicAuth: any[];
12726
+ cookieAuth?: undefined;
12727
+ })[];
12743
12728
  summary: string;
12744
12729
  tags: string[];
12745
12730
  "x-async-capable": boolean;
12746
12731
  };
12747
12732
  };
12748
- "/cfg/centrifugo/monitor/timeline/": {
12733
+ "/cfg/dashboard/api/charts/recent-users/": {
12749
12734
  get: {
12750
12735
  description: string;
12751
12736
  operationId: string;
@@ -12754,6 +12739,7 @@ declare const OPENAPI_SCHEMA: {
12754
12739
  in: string;
12755
12740
  name: string;
12756
12741
  schema: {
12742
+ default: number;
12757
12743
  type: string;
12758
12744
  };
12759
12745
  }[];
@@ -12762,609 +12748,10 @@ declare const OPENAPI_SCHEMA: {
12762
12748
  content: {
12763
12749
  "application/json": {
12764
12750
  schema: {
12765
- $ref: string;
12766
- };
12767
- };
12768
- };
12769
- description: string;
12770
- };
12771
- "400": {
12772
- content: {
12773
- "application/json": {
12774
- schema: {
12775
- description: string;
12776
- };
12777
- };
12778
- };
12779
- description: string;
12780
- };
12781
- };
12782
- security: {
12783
- jwtAuth: any[];
12784
- }[];
12785
- summary: string;
12786
- tags: string[];
12787
- "x-async-capable": boolean;
12788
- };
12789
- };
12790
- "/cfg/centrifugo/server/auth/token/": {
12791
- post: {
12792
- description: string;
12793
- operationId: string;
12794
- responses: {
12795
- "200": {
12796
- content: {
12797
- "application/json": {
12798
- schema: {
12799
- properties: {
12800
- config: {
12801
- properties: {
12802
- centrifugo_url: {
12803
- type: string;
12804
- };
12805
- expires_at: {
12806
- type: string;
12807
- };
12808
- };
12809
- type: string;
12810
- };
12811
- token: {
12812
- type: string;
12813
- };
12814
- };
12815
- type: string;
12816
- };
12817
- };
12818
- };
12819
- description: string;
12820
- };
12821
- "400": {
12822
- content: {
12823
- "application/json": {
12824
- schema: {
12825
- description: string;
12826
- };
12827
- };
12828
- };
12829
- description: string;
12830
- };
12831
- "500": {
12832
- content: {
12833
- "application/json": {
12834
- schema: {
12835
- description: string;
12836
- };
12837
- };
12838
- };
12839
- description: string;
12840
- };
12841
- };
12842
- security: {
12843
- jwtAuth: any[];
12844
- }[];
12845
- summary: string;
12846
- tags: string[];
12847
- "x-async-capable": boolean;
12848
- };
12849
- };
12850
- "/cfg/centrifugo/server/channels/": {
12851
- post: {
12852
- description: string;
12853
- operationId: string;
12854
- requestBody: {
12855
- content: {
12856
- "application/json": {
12857
- schema: {
12858
- $ref: string;
12859
- };
12860
- };
12861
- "application/x-www-form-urlencoded": {
12862
- schema: {
12863
- $ref: string;
12864
- };
12865
- };
12866
- "multipart/form-data": {
12867
- schema: {
12868
- $ref: string;
12869
- };
12870
- };
12871
- };
12872
- };
12873
- responses: {
12874
- "200": {
12875
- content: {
12876
- "application/json": {
12877
- schema: {
12878
- $ref: string;
12879
- };
12880
- };
12881
- };
12882
- description: string;
12883
- };
12884
- "500": {
12885
- content: {
12886
- "application/json": {
12887
- schema: {
12888
- description: string;
12889
- };
12890
- };
12891
- };
12892
- description: string;
12893
- };
12894
- };
12895
- security: {
12896
- jwtAuth: any[];
12897
- }[];
12898
- summary: string;
12899
- tags: string[];
12900
- "x-async-capable": boolean;
12901
- };
12902
- };
12903
- "/cfg/centrifugo/server/history/": {
12904
- post: {
12905
- description: string;
12906
- operationId: string;
12907
- requestBody: {
12908
- content: {
12909
- "application/json": {
12910
- schema: {
12911
- $ref: string;
12912
- };
12913
- };
12914
- "application/x-www-form-urlencoded": {
12915
- schema: {
12916
- $ref: string;
12917
- };
12918
- };
12919
- "multipart/form-data": {
12920
- schema: {
12921
- $ref: string;
12922
- };
12923
- };
12924
- };
12925
- required: boolean;
12926
- };
12927
- responses: {
12928
- "200": {
12929
- content: {
12930
- "application/json": {
12931
- schema: {
12932
- $ref: string;
12933
- };
12934
- };
12935
- };
12936
- description: string;
12937
- };
12938
- "500": {
12939
- content: {
12940
- "application/json": {
12941
- schema: {
12942
- description: string;
12943
- };
12944
- };
12945
- };
12946
- description: string;
12947
- };
12948
- };
12949
- security: {
12950
- jwtAuth: any[];
12951
- }[];
12952
- summary: string;
12953
- tags: string[];
12954
- "x-async-capable": boolean;
12955
- };
12956
- };
12957
- "/cfg/centrifugo/server/info/": {
12958
- post: {
12959
- description: string;
12960
- operationId: string;
12961
- responses: {
12962
- "200": {
12963
- content: {
12964
- "application/json": {
12965
- schema: {
12966
- $ref: string;
12967
- };
12968
- };
12969
- };
12970
- description: string;
12971
- };
12972
- "500": {
12973
- content: {
12974
- "application/json": {
12975
- schema: {
12976
- description: string;
12977
- };
12978
- };
12979
- };
12980
- description: string;
12981
- };
12982
- };
12983
- security: {
12984
- jwtAuth: any[];
12985
- }[];
12986
- summary: string;
12987
- tags: string[];
12988
- "x-async-capable": boolean;
12989
- };
12990
- };
12991
- "/cfg/centrifugo/server/presence-stats/": {
12992
- post: {
12993
- description: string;
12994
- operationId: string;
12995
- requestBody: {
12996
- content: {
12997
- "application/json": {
12998
- schema: {
12999
- $ref: string;
13000
- };
13001
- };
13002
- "application/x-www-form-urlencoded": {
13003
- schema: {
13004
- $ref: string;
13005
- };
13006
- };
13007
- "multipart/form-data": {
13008
- schema: {
13009
- $ref: string;
13010
- };
13011
- };
13012
- };
13013
- required: boolean;
13014
- };
13015
- responses: {
13016
- "200": {
13017
- content: {
13018
- "application/json": {
13019
- schema: {
13020
- $ref: string;
13021
- };
13022
- };
13023
- };
13024
- description: string;
13025
- };
13026
- "500": {
13027
- content: {
13028
- "application/json": {
13029
- schema: {
13030
- description: string;
13031
- };
13032
- };
13033
- };
13034
- description: string;
13035
- };
13036
- };
13037
- security: {
13038
- jwtAuth: any[];
13039
- }[];
13040
- summary: string;
13041
- tags: string[];
13042
- "x-async-capable": boolean;
13043
- };
13044
- };
13045
- "/cfg/centrifugo/server/presence/": {
13046
- post: {
13047
- description: string;
13048
- operationId: string;
13049
- requestBody: {
13050
- content: {
13051
- "application/json": {
13052
- schema: {
13053
- $ref: string;
13054
- };
13055
- };
13056
- "application/x-www-form-urlencoded": {
13057
- schema: {
13058
- $ref: string;
13059
- };
13060
- };
13061
- "multipart/form-data": {
13062
- schema: {
13063
- $ref: string;
13064
- };
13065
- };
13066
- };
13067
- required: boolean;
13068
- };
13069
- responses: {
13070
- "200": {
13071
- content: {
13072
- "application/json": {
13073
- schema: {
13074
- $ref: string;
13075
- };
13076
- };
13077
- };
13078
- description: string;
13079
- };
13080
- "500": {
13081
- content: {
13082
- "application/json": {
13083
- schema: {
13084
- description: string;
13085
- };
13086
- };
13087
- };
13088
- description: string;
13089
- };
13090
- };
13091
- security: {
13092
- jwtAuth: any[];
13093
- }[];
13094
- summary: string;
13095
- tags: string[];
13096
- "x-async-capable": boolean;
13097
- };
13098
- };
13099
- "/cfg/centrifugo/testing/connection-token/": {
13100
- post: {
13101
- description: string;
13102
- operationId: string;
13103
- requestBody: {
13104
- content: {
13105
- "application/json": {
13106
- schema: {
13107
- $ref: string;
13108
- };
13109
- };
13110
- "application/x-www-form-urlencoded": {
13111
- schema: {
13112
- $ref: string;
13113
- };
13114
- };
13115
- "multipart/form-data": {
13116
- schema: {
13117
- $ref: string;
13118
- };
13119
- };
13120
- };
13121
- required: boolean;
13122
- };
13123
- responses: {
13124
- "200": {
13125
- content: {
13126
- "application/json": {
13127
- schema: {
13128
- $ref: string;
13129
- };
13130
- };
13131
- };
13132
- description: string;
13133
- };
13134
- "400": {
13135
- content: {
13136
- "application/json": {
13137
- schema: {
13138
- description: string;
13139
- };
13140
- };
13141
- };
13142
- description: string;
13143
- };
13144
- "500": {
13145
- content: {
13146
- "application/json": {
13147
- schema: {
13148
- description: string;
13149
- };
13150
- };
13151
- };
13152
- description: string;
13153
- };
13154
- };
13155
- security: {
13156
- jwtAuth: any[];
13157
- }[];
13158
- summary: string;
13159
- tags: string[];
13160
- "x-async-capable": boolean;
13161
- };
13162
- };
13163
- "/cfg/centrifugo/testing/publish-test/": {
13164
- post: {
13165
- description: string;
13166
- operationId: string;
13167
- requestBody: {
13168
- content: {
13169
- "application/json": {
13170
- schema: {
13171
- $ref: string;
13172
- };
13173
- };
13174
- "application/x-www-form-urlencoded": {
13175
- schema: {
13176
- $ref: string;
13177
- };
13178
- };
13179
- "multipart/form-data": {
13180
- schema: {
13181
- $ref: string;
13182
- };
13183
- };
13184
- };
13185
- required: boolean;
13186
- };
13187
- responses: {
13188
- "200": {
13189
- content: {
13190
- "application/json": {
13191
- schema: {
13192
- $ref: string;
13193
- };
13194
- };
13195
- };
13196
- description: string;
13197
- };
13198
- "400": {
13199
- content: {
13200
- "application/json": {
13201
- schema: {
13202
- description: string;
13203
- };
13204
- };
13205
- };
13206
- description: string;
13207
- };
13208
- "500": {
13209
- content: {
13210
- "application/json": {
13211
- schema: {
13212
- description: string;
13213
- };
13214
- };
13215
- };
13216
- description: string;
13217
- };
13218
- };
13219
- security: {
13220
- jwtAuth: any[];
13221
- }[];
13222
- summary: string;
13223
- tags: string[];
13224
- "x-async-capable": boolean;
13225
- };
13226
- };
13227
- "/cfg/centrifugo/testing/publish-with-logging/": {
13228
- post: {
13229
- description: string;
13230
- operationId: string;
13231
- requestBody: {
13232
- content: {
13233
- "application/json": {
13234
- schema: {
13235
- $ref: string;
13236
- };
13237
- };
13238
- "application/x-www-form-urlencoded": {
13239
- schema: {
13240
- $ref: string;
13241
- };
13242
- };
13243
- "multipart/form-data": {
13244
- schema: {
13245
- $ref: string;
13246
- };
13247
- };
13248
- };
13249
- required: boolean;
13250
- };
13251
- responses: {
13252
- "200": {
13253
- content: {
13254
- "application/json": {
13255
- schema: {
13256
- $ref: string;
13257
- };
13258
- };
13259
- };
13260
- description: string;
13261
- };
13262
- "400": {
13263
- content: {
13264
- "application/json": {
13265
- schema: {
13266
- description: string;
13267
- };
13268
- };
13269
- };
13270
- description: string;
13271
- };
13272
- "500": {
13273
- content: {
13274
- "application/json": {
13275
- schema: {
13276
- description: string;
13277
- };
13278
- };
13279
- };
13280
- description: string;
13281
- };
13282
- };
13283
- security: {
13284
- jwtAuth: any[];
13285
- }[];
13286
- summary: string;
13287
- tags: string[];
13288
- "x-async-capable": boolean;
13289
- };
13290
- };
13291
- "/cfg/centrifugo/testing/send-ack/": {
13292
- post: {
13293
- description: string;
13294
- operationId: string;
13295
- requestBody: {
13296
- content: {
13297
- "application/json": {
13298
- schema: {
13299
- $ref: string;
13300
- };
13301
- };
13302
- "application/x-www-form-urlencoded": {
13303
- schema: {
13304
- $ref: string;
13305
- };
13306
- };
13307
- "multipart/form-data": {
13308
- schema: {
13309
- $ref: string;
13310
- };
13311
- };
13312
- };
13313
- required: boolean;
13314
- };
13315
- responses: {
13316
- "200": {
13317
- content: {
13318
- "application/json": {
13319
- schema: {
13320
- $ref: string;
13321
- };
13322
- };
13323
- };
13324
- description: string;
13325
- };
13326
- "400": {
13327
- content: {
13328
- "application/json": {
13329
- schema: {
13330
- description: string;
13331
- };
13332
- };
13333
- };
13334
- description: string;
13335
- };
13336
- "500": {
13337
- content: {
13338
- "application/json": {
13339
- schema: {
13340
- description: string;
13341
- };
13342
- };
13343
- };
13344
- description: string;
13345
- };
13346
- };
13347
- security: {
13348
- jwtAuth: any[];
13349
- }[];
13350
- summary: string;
13351
- tags: string[];
13352
- "x-async-capable": boolean;
13353
- };
13354
- };
13355
- "/cfg/dashboard/api/activity/actions/": {
13356
- get: {
13357
- description: string;
13358
- operationId: string;
13359
- responses: {
13360
- "200": {
13361
- content: {
13362
- "application/json": {
13363
- schema: {
13364
- items: {
13365
- $ref: string;
13366
- };
13367
- type: string;
12751
+ items: {
12752
+ $ref: string;
12753
+ };
12754
+ type: string;
13368
12755
  };
13369
12756
  };
13370
12757
  };
@@ -13383,7 +12770,7 @@ declare const OPENAPI_SCHEMA: {
13383
12770
  "x-async-capable": boolean;
13384
12771
  };
13385
12772
  };
13386
- "/cfg/dashboard/api/activity/recent/": {
12773
+ "/cfg/dashboard/api/charts/registrations/": {
13387
12774
  get: {
13388
12775
  description: string;
13389
12776
  operationId: string;
@@ -13401,10 +12788,7 @@ declare const OPENAPI_SCHEMA: {
13401
12788
  content: {
13402
12789
  "application/json": {
13403
12790
  schema: {
13404
- items: {
13405
- $ref: string;
13406
- };
13407
- type: string;
12791
+ $ref: string;
13408
12792
  };
13409
12793
  };
13410
12794
  };
@@ -13423,7 +12807,7 @@ declare const OPENAPI_SCHEMA: {
13423
12807
  "x-async-capable": boolean;
13424
12808
  };
13425
12809
  };
13426
- "/cfg/dashboard/api/charts/activity/": {
12810
+ "/cfg/dashboard/api/charts/tracker/": {
13427
12811
  get: {
13428
12812
  description: string;
13429
12813
  operationId: string;
@@ -13441,7 +12825,10 @@ declare const OPENAPI_SCHEMA: {
13441
12825
  content: {
13442
12826
  "application/json": {
13443
12827
  schema: {
13444
- $ref: string;
12828
+ items: {
12829
+ $ref: string;
12830
+ };
12831
+ type: string;
13445
12832
  };
13446
12833
  };
13447
12834
  };
@@ -13460,19 +12847,10 @@ declare const OPENAPI_SCHEMA: {
13460
12847
  "x-async-capable": boolean;
13461
12848
  };
13462
12849
  };
13463
- "/cfg/dashboard/api/charts/recent-users/": {
12850
+ "/cfg/dashboard/api/commands/": {
13464
12851
  get: {
13465
12852
  description: string;
13466
12853
  operationId: string;
13467
- parameters: {
13468
- description: string;
13469
- in: string;
13470
- name: string;
13471
- schema: {
13472
- default: number;
13473
- type: string;
13474
- };
13475
- }[];
13476
12854
  responses: {
13477
12855
  "200": {
13478
12856
  content: {
@@ -13489,10 +12867,16 @@ declare const OPENAPI_SCHEMA: {
13489
12867
  };
13490
12868
  };
13491
12869
  security: ({
12870
+ jwtAuth: any[];
12871
+ cookieAuth?: undefined;
12872
+ basicAuth?: undefined;
12873
+ } | {
13492
12874
  cookieAuth: any[];
12875
+ jwtAuth?: undefined;
13493
12876
  basicAuth?: undefined;
13494
12877
  } | {
13495
12878
  basicAuth: any[];
12879
+ jwtAuth?: undefined;
13496
12880
  cookieAuth?: undefined;
13497
12881
  })[];
13498
12882
  summary: string;
@@ -13500,65 +12884,56 @@ declare const OPENAPI_SCHEMA: {
13500
12884
  "x-async-capable": boolean;
13501
12885
  };
13502
12886
  };
13503
- "/cfg/dashboard/api/charts/registrations/": {
13504
- get: {
12887
+ "/cfg/dashboard/api/commands/execute/": {
12888
+ post: {
13505
12889
  description: string;
13506
12890
  operationId: string;
13507
- parameters: {
13508
- description: string;
13509
- in: string;
13510
- name: string;
13511
- schema: {
13512
- default: number;
13513
- type: string;
12891
+ requestBody: {
12892
+ content: {
12893
+ "application/json": {
12894
+ schema: {
12895
+ $ref: string;
12896
+ };
12897
+ };
12898
+ "application/x-www-form-urlencoded": {
12899
+ schema: {
12900
+ $ref: string;
12901
+ };
12902
+ };
12903
+ "multipart/form-data": {
12904
+ schema: {
12905
+ $ref: string;
12906
+ };
12907
+ };
13514
12908
  };
13515
- }[];
12909
+ required: boolean;
12910
+ };
13516
12911
  responses: {
13517
12912
  "200": {
13518
12913
  content: {
13519
12914
  "application/json": {
13520
12915
  schema: {
13521
- $ref: string;
12916
+ description: string;
13522
12917
  };
13523
12918
  };
13524
12919
  };
13525
12920
  description: string;
13526
12921
  };
13527
- };
13528
- security: ({
13529
- cookieAuth: any[];
13530
- basicAuth?: undefined;
13531
- } | {
13532
- basicAuth: any[];
13533
- cookieAuth?: undefined;
13534
- })[];
13535
- summary: string;
13536
- tags: string[];
13537
- "x-async-capable": boolean;
13538
- };
13539
- };
13540
- "/cfg/dashboard/api/charts/tracker/": {
13541
- get: {
13542
- description: string;
13543
- operationId: string;
13544
- parameters: {
13545
- description: string;
13546
- in: string;
13547
- name: string;
13548
- schema: {
13549
- default: number;
13550
- type: string;
12922
+ "400": {
12923
+ content: {
12924
+ "application/json": {
12925
+ schema: {
12926
+ description: string;
12927
+ };
12928
+ };
12929
+ };
12930
+ description: string;
13551
12931
  };
13552
- }[];
13553
- responses: {
13554
- "200": {
12932
+ "403": {
13555
12933
  content: {
13556
12934
  "application/json": {
13557
12935
  schema: {
13558
- items: {
13559
- $ref: string;
13560
- };
13561
- type: string;
12936
+ description: string;
13562
12937
  };
13563
12938
  };
13564
12939
  };
@@ -13566,10 +12941,16 @@ declare const OPENAPI_SCHEMA: {
13566
12941
  };
13567
12942
  };
13568
12943
  security: ({
12944
+ jwtAuth: any[];
12945
+ cookieAuth?: undefined;
12946
+ basicAuth?: undefined;
12947
+ } | {
13569
12948
  cookieAuth: any[];
12949
+ jwtAuth?: undefined;
13570
12950
  basicAuth?: undefined;
13571
12951
  } | {
13572
12952
  basicAuth: any[];
12953
+ jwtAuth?: undefined;
13573
12954
  cookieAuth?: undefined;
13574
12955
  })[];
13575
12956
  summary: string;
@@ -13577,7 +12958,7 @@ declare const OPENAPI_SCHEMA: {
13577
12958
  "x-async-capable": boolean;
13578
12959
  };
13579
12960
  };
13580
- "/cfg/dashboard/api/commands/": {
12961
+ "/cfg/dashboard/api/commands/summary/": {
13581
12962
  get: {
13582
12963
  description: string;
13583
12964
  operationId: string;
@@ -13586,10 +12967,7 @@ declare const OPENAPI_SCHEMA: {
13586
12967
  content: {
13587
12968
  "application/json": {
13588
12969
  schema: {
13589
- items: {
13590
- $ref: string;
13591
- };
13592
- type: string;
12970
+ $ref: string;
13593
12971
  };
13594
12972
  };
13595
12973
  };
@@ -13597,10 +12975,16 @@ declare const OPENAPI_SCHEMA: {
13597
12975
  };
13598
12976
  };
13599
12977
  security: ({
12978
+ jwtAuth: any[];
12979
+ cookieAuth?: undefined;
12980
+ basicAuth?: undefined;
12981
+ } | {
13600
12982
  cookieAuth: any[];
12983
+ jwtAuth?: undefined;
13601
12984
  basicAuth?: undefined;
13602
12985
  } | {
13603
12986
  basicAuth: any[];
12987
+ jwtAuth?: undefined;
13604
12988
  cookieAuth?: undefined;
13605
12989
  })[];
13606
12990
  summary: string;
@@ -13608,10 +12992,18 @@ declare const OPENAPI_SCHEMA: {
13608
12992
  "x-async-capable": boolean;
13609
12993
  };
13610
12994
  };
13611
- "/cfg/dashboard/api/commands/summary/": {
12995
+ "/cfg/dashboard/api/commands/{id}/help/": {
13612
12996
  get: {
13613
12997
  description: string;
13614
12998
  operationId: string;
12999
+ parameters: {
13000
+ in: string;
13001
+ name: string;
13002
+ required: boolean;
13003
+ schema: {
13004
+ type: string;
13005
+ };
13006
+ }[];
13615
13007
  responses: {
13616
13008
  "200": {
13617
13009
  content: {
@@ -13625,10 +13017,16 @@ declare const OPENAPI_SCHEMA: {
13625
13017
  };
13626
13018
  };
13627
13019
  security: ({
13020
+ jwtAuth: any[];
13021
+ cookieAuth?: undefined;
13022
+ basicAuth?: undefined;
13023
+ } | {
13628
13024
  cookieAuth: any[];
13025
+ jwtAuth?: undefined;
13629
13026
  basicAuth?: undefined;
13630
13027
  } | {
13631
13028
  basicAuth: any[];
13029
+ jwtAuth?: undefined;
13632
13030
  cookieAuth?: undefined;
13633
13031
  })[];
13634
13032
  summary: string;
@@ -19895,12 +19293,58 @@ declare const CommandSchema: z.ZodObject<{
19895
19293
  help: z.ZodString;
19896
19294
  is_core: z.ZodBoolean;
19897
19295
  is_custom: z.ZodBoolean;
19296
+ is_allowed: z.ZodOptional<z.ZodBoolean>;
19297
+ risk_level: z.ZodOptional<z.ZodString>;
19898
19298
  }, z.core.$strip>;
19899
19299
  /**
19900
19300
  * Infer TypeScript type from Zod schema
19901
19301
  */
19902
19302
  type Command = z.infer<typeof CommandSchema>;
19903
19303
 
19304
+ /**
19305
+ * Zod schema for CommandExecuteRequestRequest
19306
+ *
19307
+ * This schema provides runtime validation and type inference.
19308
+ * * Request serializer for command execution.
19309
+ * */
19310
+
19311
+ /**
19312
+ * Request serializer for command execution.
19313
+ */
19314
+ declare const CommandExecuteRequestRequestSchema: z.ZodObject<{
19315
+ command: z.ZodString;
19316
+ args: z.ZodOptional<z.ZodArray<z.ZodString>>;
19317
+ options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
19318
+ }, z.core.$strip>;
19319
+ /**
19320
+ * Infer TypeScript type from Zod schema
19321
+ */
19322
+ type CommandExecuteRequestRequest = z.infer<typeof CommandExecuteRequestRequestSchema>;
19323
+
19324
+ /**
19325
+ * Zod schema for CommandHelpResponse
19326
+ *
19327
+ * This schema provides runtime validation and type inference.
19328
+ * * Response serializer for command help.
19329
+ * */
19330
+
19331
+ /**
19332
+ * Response serializer for command help.
19333
+ */
19334
+ declare const CommandHelpResponseSchema: z.ZodObject<{
19335
+ status: z.ZodString;
19336
+ command: z.ZodString;
19337
+ app: z.ZodOptional<z.ZodString>;
19338
+ help_text: z.ZodOptional<z.ZodString>;
19339
+ is_allowed: z.ZodOptional<z.ZodBoolean>;
19340
+ risk_level: z.ZodOptional<z.ZodString>;
19341
+ error: z.ZodOptional<z.ZodString>;
19342
+ }, z.core.$strip>;
19343
+ /**
19344
+ * Infer TypeScript type from Zod schema
19345
+ */
19346
+ type CommandHelpResponse = z.infer<typeof CommandHelpResponseSchema>;
19347
+
19904
19348
  /**
19905
19349
  * Zod schema for CommandsSummary
19906
19350
  *
@@ -19922,6 +19366,8 @@ declare const CommandsSummarySchema: z.ZodObject<{
19922
19366
  help: z.ZodString;
19923
19367
  is_core: z.ZodBoolean;
19924
19368
  is_custom: z.ZodBoolean;
19369
+ is_allowed: z.ZodOptional<z.ZodBoolean>;
19370
+ risk_level: z.ZodOptional<z.ZodString>;
19925
19371
  }, z.core.$strip>>;
19926
19372
  categorized: z.ZodRecord<z.ZodString, z.ZodAny>;
19927
19373
  }, z.core.$strip>;
@@ -22814,6 +22260,10 @@ declare const index$2_ChatSourceSchema: typeof ChatSourceSchema;
22814
22260
  type index$2_ChunkRevectorizationRequestRequest = ChunkRevectorizationRequestRequest;
22815
22261
  declare const index$2_ChunkRevectorizationRequestRequestSchema: typeof ChunkRevectorizationRequestRequestSchema;
22816
22262
  type index$2_Command = Command;
22263
+ type index$2_CommandExecuteRequestRequest = CommandExecuteRequestRequest;
22264
+ declare const index$2_CommandExecuteRequestRequestSchema: typeof CommandExecuteRequestRequestSchema;
22265
+ type index$2_CommandHelpResponse = CommandHelpResponse;
22266
+ declare const index$2_CommandHelpResponseSchema: typeof CommandHelpResponseSchema;
22817
22267
  declare const index$2_CommandSchema: typeof CommandSchema;
22818
22268
  type index$2_CommandsSummary = CommandsSummary;
22819
22269
  declare const index$2_CommandsSummarySchema: typeof CommandsSummarySchema;
@@ -23040,7 +22490,7 @@ type index$2_WorkerActionRequest = WorkerActionRequest;
23040
22490
  declare const index$2_WorkerActionRequestSchema: typeof WorkerActionRequestSchema;
23041
22491
  declare const index$2_WorkerActionSchema: typeof WorkerActionSchema;
23042
22492
  declare namespace index$2 {
23043
- 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, 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 };
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 };
23044
22494
  }
23045
22495
 
23046
22496
  /**
@@ -23205,13 +22655,6 @@ declare function updateAccountsProfileUpdateUpdate(data: UserProfileUpdateReques
23205
22655
  */
23206
22656
  declare function partialUpdateAccountsProfileUpdatePartialUpdate(data?: PatchedUserProfileUpdateRequest, client?: any): Promise<User>;
23207
22657
 
23208
- /**
23209
- * API operation
23210
- *
23211
- * @method GET
23212
- * @path /cfg/centrifugo/admin/api/monitor/channels/
23213
- */
23214
- declare function getCentrifugoAdminApiMonitorChannelsRetrieve(client?: any): Promise<any>;
23215
22658
  /**
23216
22659
  * API operation
23217
22660
  *
@@ -23252,48 +22695,6 @@ declare function getCentrifugoMonitorChannelsRetrieve(client?: any): Promise<any
23252
22695
  * ```
23253
22696
  */
23254
22697
 
23255
- /**
23256
- * Get connection token for dashboard
23257
- *
23258
- * @method POST
23259
- * @path /cfg/centrifugo/admin/api/server/auth/token/
23260
- */
23261
- declare function createCentrifugoAdminApiServerAuthTokenCreate(client?: any): Promise<any>;
23262
- /**
23263
- * List active channels
23264
- *
23265
- * @method POST
23266
- * @path /cfg/centrifugo/admin/api/server/channels/
23267
- */
23268
- declare function createCentrifugoAdminApiServerChannelsCreate(data: CentrifugoChannelsRequestRequest, client?: any): Promise<CentrifugoChannelsResponse>;
23269
- /**
23270
- * Get channel history
23271
- *
23272
- * @method POST
23273
- * @path /cfg/centrifugo/admin/api/server/history/
23274
- */
23275
- declare function createCentrifugoAdminApiServerHistoryCreate(data: CentrifugoHistoryRequestRequest, client?: any): Promise<CentrifugoHistoryResponse>;
23276
- /**
23277
- * Get Centrifugo server info
23278
- *
23279
- * @method POST
23280
- * @path /cfg/centrifugo/admin/api/server/info/
23281
- */
23282
- declare function createCentrifugoAdminApiServerInfoCreate(client?: any): Promise<CentrifugoInfoResponse>;
23283
- /**
23284
- * Get channel presence
23285
- *
23286
- * @method POST
23287
- * @path /cfg/centrifugo/admin/api/server/presence/
23288
- */
23289
- declare function createCentrifugoAdminApiServerPresenceCreate(data: CentrifugoPresenceRequestRequest, client?: any): Promise<CentrifugoPresenceResponse>;
23290
- /**
23291
- * Get channel presence statistics
23292
- *
23293
- * @method POST
23294
- * @path /cfg/centrifugo/admin/api/server/presence-stats/
23295
- */
23296
- declare function createCentrifugoAdminApiServerPresenceStatsCreate(data: CentrifugoPresenceStatsRequestRequest, client?: any): Promise<CentrifugoPresenceStatsResponse>;
23297
22698
  /**
23298
22699
  * Get connection token for dashboard
23299
22700
  *
@@ -23369,44 +22770,6 @@ declare function createCentrifugoServerPresenceStatsCreate(data: CentrifugoPrese
23369
22770
  * ```
23370
22771
  */
23371
22772
 
23372
- /**
23373
- * Get Centrifugo health status
23374
- *
23375
- * @method GET
23376
- * @path /cfg/centrifugo/admin/api/monitor/health/
23377
- */
23378
- declare function getCentrifugoAdminApiMonitorHealthRetrieve(client?: any): Promise<HealthCheck>;
23379
- /**
23380
- * Get overview statistics
23381
- *
23382
- * @method GET
23383
- * @path /cfg/centrifugo/admin/api/monitor/overview/
23384
- */
23385
- declare function getCentrifugoAdminApiMonitorOverviewRetrieve(params?: {
23386
- hours?: number;
23387
- }, client?: any): Promise<OverviewStats>;
23388
- /**
23389
- * Get recent publishes
23390
- *
23391
- * @method GET
23392
- * @path /cfg/centrifugo/admin/api/monitor/publishes/
23393
- */
23394
- declare function getCentrifugoAdminApiMonitorPublishesRetrieve(params?: {
23395
- channel?: string;
23396
- count?: number;
23397
- offset?: number;
23398
- status?: string;
23399
- }, client?: any): Promise<RecentPublishes>;
23400
- /**
23401
- * Get channel statistics
23402
- *
23403
- * @method GET
23404
- * @path /cfg/centrifugo/admin/api/monitor/timeline/
23405
- */
23406
- declare function getCentrifugoAdminApiMonitorTimelineRetrieve(params?: {
23407
- hours?: number;
23408
- interval?: string;
23409
- }, client?: any): Promise<ChannelList>;
23410
22773
  /**
23411
22774
  * Get Centrifugo health status
23412
22775
  *
@@ -23478,34 +22841,6 @@ declare function getCentrifugoMonitorTimelineRetrieve(params?: {
23478
22841
  * ```
23479
22842
  */
23480
22843
 
23481
- /**
23482
- * Generate connection token
23483
- *
23484
- * @method POST
23485
- * @path /cfg/centrifugo/admin/api/testing/connection-token/
23486
- */
23487
- declare function createCentrifugoAdminApiTestingConnectionTokenCreate(data: ConnectionTokenRequestRequest, client?: any): Promise<ConnectionTokenResponse>;
23488
- /**
23489
- * Publish test message
23490
- *
23491
- * @method POST
23492
- * @path /cfg/centrifugo/admin/api/testing/publish-test/
23493
- */
23494
- declare function createCentrifugoAdminApiTestingPublishTestCreate(data: PublishTestRequestRequest, client?: any): Promise<PublishTestResponse>;
23495
- /**
23496
- * Publish with database logging
23497
- *
23498
- * @method POST
23499
- * @path /cfg/centrifugo/admin/api/testing/publish-with-logging/
23500
- */
23501
- declare function createCentrifugoAdminApiTestingPublishWithLoggingCreate(data: PublishTestRequestRequest, client?: any): Promise<PublishTestResponse>;
23502
- /**
23503
- * Send manual ACK
23504
- *
23505
- * @method POST
23506
- * @path /cfg/centrifugo/admin/api/testing/send-ack/
23507
- */
23508
- declare function createCentrifugoAdminApiTestingSendAckCreate(data: ManualAckRequestRequest, client?: any): Promise<ManualAckResponse>;
23509
22844
  /**
23510
22845
  * Generate connection token
23511
22846
  *
@@ -23707,6 +23042,20 @@ declare function getDashboardApiChartsTrackerList(params?: {
23707
23042
  * @path /cfg/dashboard/api/commands/
23708
23043
  */
23709
23044
  declare function getDashboardApiCommandsList(client?: any): Promise<any>;
23045
+ /**
23046
+ * Get command help
23047
+ *
23048
+ * @method GET
23049
+ * @path /cfg/dashboard/api/commands/{id}/help/
23050
+ */
23051
+ declare function getDashboardApiCommandsHelpRetrieve(id: string, client?: any): Promise<CommandHelpResponse>;
23052
+ /**
23053
+ * Execute command
23054
+ *
23055
+ * @method POST
23056
+ * @path /cfg/dashboard/api/commands/execute/
23057
+ */
23058
+ declare function createDashboardApiCommandsExecuteCreate(data: CommandExecuteRequestRequest, client?: any): Promise<any>;
23710
23059
  /**
23711
23060
  * Get commands summary
23712
23061
  *
@@ -25258,16 +24607,6 @@ declare const index$1_createAccountsOtpRequestCreate: typeof createAccountsOtpRe
25258
24607
  declare const index$1_createAccountsOtpVerifyCreate: typeof createAccountsOtpVerifyCreate;
25259
24608
  declare const index$1_createAccountsProfileAvatarCreate: typeof createAccountsProfileAvatarCreate;
25260
24609
  declare const index$1_createAccountsTokenRefreshCreate: typeof createAccountsTokenRefreshCreate;
25261
- declare const index$1_createCentrifugoAdminApiServerAuthTokenCreate: typeof createCentrifugoAdminApiServerAuthTokenCreate;
25262
- declare const index$1_createCentrifugoAdminApiServerChannelsCreate: typeof createCentrifugoAdminApiServerChannelsCreate;
25263
- declare const index$1_createCentrifugoAdminApiServerHistoryCreate: typeof createCentrifugoAdminApiServerHistoryCreate;
25264
- declare const index$1_createCentrifugoAdminApiServerInfoCreate: typeof createCentrifugoAdminApiServerInfoCreate;
25265
- declare const index$1_createCentrifugoAdminApiServerPresenceCreate: typeof createCentrifugoAdminApiServerPresenceCreate;
25266
- declare const index$1_createCentrifugoAdminApiServerPresenceStatsCreate: typeof createCentrifugoAdminApiServerPresenceStatsCreate;
25267
- declare const index$1_createCentrifugoAdminApiTestingConnectionTokenCreate: typeof createCentrifugoAdminApiTestingConnectionTokenCreate;
25268
- declare const index$1_createCentrifugoAdminApiTestingPublishTestCreate: typeof createCentrifugoAdminApiTestingPublishTestCreate;
25269
- declare const index$1_createCentrifugoAdminApiTestingPublishWithLoggingCreate: typeof createCentrifugoAdminApiTestingPublishWithLoggingCreate;
25270
- declare const index$1_createCentrifugoAdminApiTestingSendAckCreate: typeof createCentrifugoAdminApiTestingSendAckCreate;
25271
24610
  declare const index$1_createCentrifugoServerAuthTokenCreate: typeof createCentrifugoServerAuthTokenCreate;
25272
24611
  declare const index$1_createCentrifugoServerChannelsCreate: typeof createCentrifugoServerChannelsCreate;
25273
24612
  declare const index$1_createCentrifugoServerHistoryCreate: typeof createCentrifugoServerHistoryCreate;
@@ -25278,6 +24617,7 @@ declare const index$1_createCentrifugoTestingConnectionTokenCreate: typeof creat
25278
24617
  declare const index$1_createCentrifugoTestingPublishTestCreate: typeof createCentrifugoTestingPublishTestCreate;
25279
24618
  declare const index$1_createCentrifugoTestingPublishWithLoggingCreate: typeof createCentrifugoTestingPublishWithLoggingCreate;
25280
24619
  declare const index$1_createCentrifugoTestingSendAckCreate: typeof createCentrifugoTestingSendAckCreate;
24620
+ declare const index$1_createDashboardApiCommandsExecuteCreate: typeof createDashboardApiCommandsExecuteCreate;
25281
24621
  declare const index$1_createKnowbaseAdminChatCreate: typeof createKnowbaseAdminChatCreate;
25282
24622
  declare const index$1_createKnowbaseAdminChatQueryCreate: typeof createKnowbaseAdminChatQueryCreate;
25283
24623
  declare const index$1_createKnowbaseAdminDocumentsCreate: typeof createKnowbaseAdminDocumentsCreate;
@@ -25320,11 +24660,6 @@ declare const index$1_deleteNewsletterCampaignsDestroy: typeof deleteNewsletterC
25320
24660
  declare const index$1_deleteSupportTicketsDestroy: typeof deleteSupportTicketsDestroy;
25321
24661
  declare const index$1_deleteSupportTicketsMessagesDestroy: typeof deleteSupportTicketsMessagesDestroy;
25322
24662
  declare const index$1_getAccountsProfileRetrieve: typeof getAccountsProfileRetrieve;
25323
- declare const index$1_getCentrifugoAdminApiMonitorChannelsRetrieve: typeof getCentrifugoAdminApiMonitorChannelsRetrieve;
25324
- declare const index$1_getCentrifugoAdminApiMonitorHealthRetrieve: typeof getCentrifugoAdminApiMonitorHealthRetrieve;
25325
- declare const index$1_getCentrifugoAdminApiMonitorOverviewRetrieve: typeof getCentrifugoAdminApiMonitorOverviewRetrieve;
25326
- declare const index$1_getCentrifugoAdminApiMonitorPublishesRetrieve: typeof getCentrifugoAdminApiMonitorPublishesRetrieve;
25327
- declare const index$1_getCentrifugoAdminApiMonitorTimelineRetrieve: typeof getCentrifugoAdminApiMonitorTimelineRetrieve;
25328
24663
  declare const index$1_getCentrifugoMonitorChannelsRetrieve: typeof getCentrifugoMonitorChannelsRetrieve;
25329
24664
  declare const index$1_getCentrifugoMonitorHealthRetrieve: typeof getCentrifugoMonitorHealthRetrieve;
25330
24665
  declare const index$1_getCentrifugoMonitorOverviewRetrieve: typeof getCentrifugoMonitorOverviewRetrieve;
@@ -25336,6 +24671,7 @@ declare const index$1_getDashboardApiChartsActivityRetrieve: typeof getDashboard
25336
24671
  declare const index$1_getDashboardApiChartsRecentUsersList: typeof getDashboardApiChartsRecentUsersList;
25337
24672
  declare const index$1_getDashboardApiChartsRegistrationsRetrieve: typeof getDashboardApiChartsRegistrationsRetrieve;
25338
24673
  declare const index$1_getDashboardApiChartsTrackerList: typeof getDashboardApiChartsTrackerList;
24674
+ declare const index$1_getDashboardApiCommandsHelpRetrieve: typeof getDashboardApiCommandsHelpRetrieve;
25339
24675
  declare const index$1_getDashboardApiCommandsList: typeof getDashboardApiCommandsList;
25340
24676
  declare const index$1_getDashboardApiCommandsSummaryRetrieve: typeof getDashboardApiCommandsSummaryRetrieve;
25341
24677
  declare const index$1_getDashboardApiOverviewOverviewRetrieve: typeof getDashboardApiOverviewOverviewRetrieve;
@@ -25426,7 +24762,7 @@ declare const index$1_updateNewsletterUnsubscribeUpdate: typeof updateNewsletter
25426
24762
  declare const index$1_updateSupportTicketsMessagesUpdate: typeof updateSupportTicketsMessagesUpdate;
25427
24763
  declare const index$1_updateSupportTicketsUpdate: typeof updateSupportTicketsUpdate;
25428
24764
  declare namespace index$1 {
25429
- export { index$1_createAccountsOtpRequestCreate as createAccountsOtpRequestCreate, index$1_createAccountsOtpVerifyCreate as createAccountsOtpVerifyCreate, index$1_createAccountsProfileAvatarCreate as createAccountsProfileAvatarCreate, index$1_createAccountsTokenRefreshCreate as createAccountsTokenRefreshCreate, index$1_createCentrifugoAdminApiServerAuthTokenCreate as createCentrifugoAdminApiServerAuthTokenCreate, index$1_createCentrifugoAdminApiServerChannelsCreate as createCentrifugoAdminApiServerChannelsCreate, index$1_createCentrifugoAdminApiServerHistoryCreate as createCentrifugoAdminApiServerHistoryCreate, index$1_createCentrifugoAdminApiServerInfoCreate as createCentrifugoAdminApiServerInfoCreate, index$1_createCentrifugoAdminApiServerPresenceCreate as createCentrifugoAdminApiServerPresenceCreate, index$1_createCentrifugoAdminApiServerPresenceStatsCreate as createCentrifugoAdminApiServerPresenceStatsCreate, index$1_createCentrifugoAdminApiTestingConnectionTokenCreate as createCentrifugoAdminApiTestingConnectionTokenCreate, index$1_createCentrifugoAdminApiTestingPublishTestCreate as createCentrifugoAdminApiTestingPublishTestCreate, index$1_createCentrifugoAdminApiTestingPublishWithLoggingCreate as createCentrifugoAdminApiTestingPublishWithLoggingCreate, index$1_createCentrifugoAdminApiTestingSendAckCreate as createCentrifugoAdminApiTestingSendAckCreate, 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_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_getCentrifugoAdminApiMonitorChannelsRetrieve as getCentrifugoAdminApiMonitorChannelsRetrieve, index$1_getCentrifugoAdminApiMonitorHealthRetrieve as getCentrifugoAdminApiMonitorHealthRetrieve, index$1_getCentrifugoAdminApiMonitorOverviewRetrieve as getCentrifugoAdminApiMonitorOverviewRetrieve, index$1_getCentrifugoAdminApiMonitorPublishesRetrieve as getCentrifugoAdminApiMonitorPublishesRetrieve, index$1_getCentrifugoAdminApiMonitorTimelineRetrieve as getCentrifugoAdminApiMonitorTimelineRetrieve, 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_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 };
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 };
25430
24766
  }
25431
24767
 
25432
24768
  /**
@@ -25591,48 +24927,6 @@ declare function useDeleteNewsletterCampaignsDestroy(): (id: number, client?: AP
25591
24927
  */
25592
24928
  declare function useCreateNewsletterCampaignsSendCreate(): (data: SendCampaignRequest, client?: API) => Promise<SendCampaignResponse>;
25593
24929
 
25594
- /**
25595
- * Get connection token for dashboard
25596
- *
25597
- * @method POST
25598
- * @path /cfg/centrifugo/admin/api/server/auth/token/
25599
- */
25600
- declare function useCreateCentrifugoAdminApiServerAuthTokenCreate(): (client?: API) => Promise<any>;
25601
- /**
25602
- * List active channels
25603
- *
25604
- * @method POST
25605
- * @path /cfg/centrifugo/admin/api/server/channels/
25606
- */
25607
- declare function useCreateCentrifugoAdminApiServerChannelsCreate(): (data: CentrifugoChannelsRequestRequest, client?: API) => Promise<CentrifugoChannelsResponse>;
25608
- /**
25609
- * Get channel history
25610
- *
25611
- * @method POST
25612
- * @path /cfg/centrifugo/admin/api/server/history/
25613
- */
25614
- declare function useCreateCentrifugoAdminApiServerHistoryCreate(): (data: CentrifugoHistoryRequestRequest, client?: API) => Promise<CentrifugoHistoryResponse>;
25615
- /**
25616
- * Get Centrifugo server info
25617
- *
25618
- * @method POST
25619
- * @path /cfg/centrifugo/admin/api/server/info/
25620
- */
25621
- declare function useCreateCentrifugoAdminApiServerInfoCreate(): (client?: API) => Promise<CentrifugoInfoResponse>;
25622
- /**
25623
- * Get channel presence
25624
- *
25625
- * @method POST
25626
- * @path /cfg/centrifugo/admin/api/server/presence/
25627
- */
25628
- declare function useCreateCentrifugoAdminApiServerPresenceCreate(): (data: CentrifugoPresenceRequestRequest, client?: API) => Promise<CentrifugoPresenceResponse>;
25629
- /**
25630
- * Get channel presence statistics
25631
- *
25632
- * @method POST
25633
- * @path /cfg/centrifugo/admin/api/server/presence-stats/
25634
- */
25635
- declare function useCreateCentrifugoAdminApiServerPresenceStatsCreate(): (data: CentrifugoPresenceStatsRequestRequest, client?: API) => Promise<CentrifugoPresenceStatsResponse>;
25636
24930
  /**
25637
24931
  * Get connection token for dashboard
25638
24932
  *
@@ -25693,44 +24987,6 @@ declare function useCreateCentrifugoServerPresenceStatsCreate(): (data: Centrifu
25693
24987
  * ```
25694
24988
  */
25695
24989
 
25696
- /**
25697
- * Get Centrifugo health status
25698
- *
25699
- * @method GET
25700
- * @path /cfg/centrifugo/admin/api/monitor/health/
25701
- */
25702
- declare function useCentrifugoAdminApiMonitorHealthRetrieve(client?: API): ReturnType<typeof useSWR<HealthCheck>>;
25703
- /**
25704
- * Get overview statistics
25705
- *
25706
- * @method GET
25707
- * @path /cfg/centrifugo/admin/api/monitor/overview/
25708
- */
25709
- declare function useCentrifugoAdminApiMonitorOverviewRetrieve(params?: {
25710
- hours?: number;
25711
- }, client?: API): ReturnType<typeof useSWR<OverviewStats>>;
25712
- /**
25713
- * Get recent publishes
25714
- *
25715
- * @method GET
25716
- * @path /cfg/centrifugo/admin/api/monitor/publishes/
25717
- */
25718
- declare function useCentrifugoAdminApiMonitorPublishesRetrieve(params?: {
25719
- channel?: string;
25720
- count?: number;
25721
- offset?: number;
25722
- status?: string;
25723
- }, client?: API): ReturnType<typeof useSWR<RecentPublishes>>;
25724
- /**
25725
- * Get channel statistics
25726
- *
25727
- * @method GET
25728
- * @path /cfg/centrifugo/admin/api/monitor/timeline/
25729
- */
25730
- declare function useCentrifugoAdminApiMonitorTimelineRetrieve(params?: {
25731
- hours?: number;
25732
- interval?: string;
25733
- }, client?: API): ReturnType<typeof useSWR<ChannelList>>;
25734
24990
  /**
25735
24991
  * Get Centrifugo health status
25736
24992
  *
@@ -25770,34 +25026,6 @@ declare function useCentrifugoMonitorTimelineRetrieve(params?: {
25770
25026
  interval?: string;
25771
25027
  }, client?: API): ReturnType<typeof useSWR<ChannelList>>;
25772
25028
 
25773
- /**
25774
- * Generate connection token
25775
- *
25776
- * @method POST
25777
- * @path /cfg/centrifugo/admin/api/testing/connection-token/
25778
- */
25779
- declare function useCreateCentrifugoAdminApiTestingConnectionTokenCreate(): (data: ConnectionTokenRequestRequest, client?: API) => Promise<ConnectionTokenResponse>;
25780
- /**
25781
- * Publish test message
25782
- *
25783
- * @method POST
25784
- * @path /cfg/centrifugo/admin/api/testing/publish-test/
25785
- */
25786
- declare function useCreateCentrifugoAdminApiTestingPublishTestCreate(): (data: PublishTestRequestRequest, client?: API) => Promise<PublishTestResponse>;
25787
- /**
25788
- * Publish with database logging
25789
- *
25790
- * @method POST
25791
- * @path /cfg/centrifugo/admin/api/testing/publish-with-logging/
25792
- */
25793
- declare function useCreateCentrifugoAdminApiTestingPublishWithLoggingCreate(): (data: PublishTestRequestRequest, client?: API) => Promise<PublishTestResponse>;
25794
- /**
25795
- * Send manual ACK
25796
- *
25797
- * @method POST
25798
- * @path /cfg/centrifugo/admin/api/testing/send-ack/
25799
- */
25800
- declare function useCreateCentrifugoAdminApiTestingSendAckCreate(): (data: ManualAckRequestRequest, client?: API) => Promise<ManualAckResponse>;
25801
25029
  /**
25802
25030
  * Generate connection token
25803
25031
  *
@@ -25971,6 +25199,20 @@ declare function useDashboardApiChartsTrackerList(params?: {
25971
25199
  * @path /cfg/dashboard/api/commands/
25972
25200
  */
25973
25201
  declare function useDashboardApiCommandsList(client?: API): ReturnType<typeof useSWR<any>>;
25202
+ /**
25203
+ * Get command help
25204
+ *
25205
+ * @method GET
25206
+ * @path /cfg/dashboard/api/commands/{id}/help/
25207
+ */
25208
+ declare function useDashboardApiCommandsHelpRetrieve(id: string, client?: API): ReturnType<typeof useSWR<CommandHelpResponse>>;
25209
+ /**
25210
+ * Execute command
25211
+ *
25212
+ * @method POST
25213
+ * @path /cfg/dashboard/api/commands/execute/
25214
+ */
25215
+ declare function useCreateDashboardApiCommandsExecuteCreate(): (data: CommandExecuteRequestRequest, client?: API) => Promise<any>;
25974
25216
  /**
25975
25217
  * Get commands summary
25976
25218
  *
@@ -26288,13 +25530,6 @@ declare function useCreateAccountsOtpVerifyCreate(): (data: OTPVerifyRequest, cl
26288
25530
  * ```
26289
25531
  */
26290
25532
 
26291
- /**
26292
- * API operation
26293
- *
26294
- * @method GET
26295
- * @path /cfg/centrifugo/admin/api/monitor/channels/
26296
- */
26297
- declare function useCentrifugoAdminApiMonitorChannelsRetrieve(client?: API): ReturnType<typeof useSWR<any>>;
26298
25533
  /**
26299
25534
  * API operation
26300
25535
  *
@@ -27215,11 +26450,6 @@ declare function useCreateTasksApiWorkersManageCreate(): (data: WorkerActionRequ
27215
26450
  */
27216
26451
 
27217
26452
  declare const index_useAccountsProfileRetrieve: typeof useAccountsProfileRetrieve;
27218
- declare const index_useCentrifugoAdminApiMonitorChannelsRetrieve: typeof useCentrifugoAdminApiMonitorChannelsRetrieve;
27219
- declare const index_useCentrifugoAdminApiMonitorHealthRetrieve: typeof useCentrifugoAdminApiMonitorHealthRetrieve;
27220
- declare const index_useCentrifugoAdminApiMonitorOverviewRetrieve: typeof useCentrifugoAdminApiMonitorOverviewRetrieve;
27221
- declare const index_useCentrifugoAdminApiMonitorPublishesRetrieve: typeof useCentrifugoAdminApiMonitorPublishesRetrieve;
27222
- declare const index_useCentrifugoAdminApiMonitorTimelineRetrieve: typeof useCentrifugoAdminApiMonitorTimelineRetrieve;
27223
26453
  declare const index_useCentrifugoMonitorChannelsRetrieve: typeof useCentrifugoMonitorChannelsRetrieve;
27224
26454
  declare const index_useCentrifugoMonitorHealthRetrieve: typeof useCentrifugoMonitorHealthRetrieve;
27225
26455
  declare const index_useCentrifugoMonitorOverviewRetrieve: typeof useCentrifugoMonitorOverviewRetrieve;
@@ -27229,16 +26459,6 @@ declare const index_useCreateAccountsOtpRequestCreate: typeof useCreateAccountsO
27229
26459
  declare const index_useCreateAccountsOtpVerifyCreate: typeof useCreateAccountsOtpVerifyCreate;
27230
26460
  declare const index_useCreateAccountsProfileAvatarCreate: typeof useCreateAccountsProfileAvatarCreate;
27231
26461
  declare const index_useCreateAccountsTokenRefreshCreate: typeof useCreateAccountsTokenRefreshCreate;
27232
- declare const index_useCreateCentrifugoAdminApiServerAuthTokenCreate: typeof useCreateCentrifugoAdminApiServerAuthTokenCreate;
27233
- declare const index_useCreateCentrifugoAdminApiServerChannelsCreate: typeof useCreateCentrifugoAdminApiServerChannelsCreate;
27234
- declare const index_useCreateCentrifugoAdminApiServerHistoryCreate: typeof useCreateCentrifugoAdminApiServerHistoryCreate;
27235
- declare const index_useCreateCentrifugoAdminApiServerInfoCreate: typeof useCreateCentrifugoAdminApiServerInfoCreate;
27236
- declare const index_useCreateCentrifugoAdminApiServerPresenceCreate: typeof useCreateCentrifugoAdminApiServerPresenceCreate;
27237
- declare const index_useCreateCentrifugoAdminApiServerPresenceStatsCreate: typeof useCreateCentrifugoAdminApiServerPresenceStatsCreate;
27238
- declare const index_useCreateCentrifugoAdminApiTestingConnectionTokenCreate: typeof useCreateCentrifugoAdminApiTestingConnectionTokenCreate;
27239
- declare const index_useCreateCentrifugoAdminApiTestingPublishTestCreate: typeof useCreateCentrifugoAdminApiTestingPublishTestCreate;
27240
- declare const index_useCreateCentrifugoAdminApiTestingPublishWithLoggingCreate: typeof useCreateCentrifugoAdminApiTestingPublishWithLoggingCreate;
27241
- declare const index_useCreateCentrifugoAdminApiTestingSendAckCreate: typeof useCreateCentrifugoAdminApiTestingSendAckCreate;
27242
26462
  declare const index_useCreateCentrifugoServerAuthTokenCreate: typeof useCreateCentrifugoServerAuthTokenCreate;
27243
26463
  declare const index_useCreateCentrifugoServerChannelsCreate: typeof useCreateCentrifugoServerChannelsCreate;
27244
26464
  declare const index_useCreateCentrifugoServerHistoryCreate: typeof useCreateCentrifugoServerHistoryCreate;
@@ -27249,6 +26469,7 @@ declare const index_useCreateCentrifugoTestingConnectionTokenCreate: typeof useC
27249
26469
  declare const index_useCreateCentrifugoTestingPublishTestCreate: typeof useCreateCentrifugoTestingPublishTestCreate;
27250
26470
  declare const index_useCreateCentrifugoTestingPublishWithLoggingCreate: typeof useCreateCentrifugoTestingPublishWithLoggingCreate;
27251
26471
  declare const index_useCreateCentrifugoTestingSendAckCreate: typeof useCreateCentrifugoTestingSendAckCreate;
26472
+ declare const index_useCreateDashboardApiCommandsExecuteCreate: typeof useCreateDashboardApiCommandsExecuteCreate;
27252
26473
  declare const index_useCreateKnowbaseAdminChatCreate: typeof useCreateKnowbaseAdminChatCreate;
27253
26474
  declare const index_useCreateKnowbaseAdminChatQueryCreate: typeof useCreateKnowbaseAdminChatQueryCreate;
27254
26475
  declare const index_useCreateKnowbaseAdminDocumentsCreate: typeof useCreateKnowbaseAdminDocumentsCreate;
@@ -27286,6 +26507,7 @@ declare const index_useDashboardApiChartsActivityRetrieve: typeof useDashboardAp
27286
26507
  declare const index_useDashboardApiChartsRecentUsersList: typeof useDashboardApiChartsRecentUsersList;
27287
26508
  declare const index_useDashboardApiChartsRegistrationsRetrieve: typeof useDashboardApiChartsRegistrationsRetrieve;
27288
26509
  declare const index_useDashboardApiChartsTrackerList: typeof useDashboardApiChartsTrackerList;
26510
+ declare const index_useDashboardApiCommandsHelpRetrieve: typeof useDashboardApiCommandsHelpRetrieve;
27289
26511
  declare const index_useDashboardApiCommandsList: typeof useDashboardApiCommandsList;
27290
26512
  declare const index_useDashboardApiCommandsSummaryRetrieve: typeof useDashboardApiCommandsSummaryRetrieve;
27291
26513
  declare const index_useDashboardApiOverviewOverviewRetrieve: typeof useDashboardApiOverviewOverviewRetrieve;
@@ -27386,7 +26608,7 @@ declare const index_useUpdateNewsletterUnsubscribeUpdate: typeof useUpdateNewsle
27386
26608
  declare const index_useUpdateSupportTicketsMessagesUpdate: typeof useUpdateSupportTicketsMessagesUpdate;
27387
26609
  declare const index_useUpdateSupportTicketsUpdate: typeof useUpdateSupportTicketsUpdate;
27388
26610
  declare namespace index {
27389
- export { index_useAccountsProfileRetrieve as useAccountsProfileRetrieve, index_useCentrifugoAdminApiMonitorChannelsRetrieve as useCentrifugoAdminApiMonitorChannelsRetrieve, index_useCentrifugoAdminApiMonitorHealthRetrieve as useCentrifugoAdminApiMonitorHealthRetrieve, index_useCentrifugoAdminApiMonitorOverviewRetrieve as useCentrifugoAdminApiMonitorOverviewRetrieve, index_useCentrifugoAdminApiMonitorPublishesRetrieve as useCentrifugoAdminApiMonitorPublishesRetrieve, index_useCentrifugoAdminApiMonitorTimelineRetrieve as useCentrifugoAdminApiMonitorTimelineRetrieve, 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_useCreateCentrifugoAdminApiServerAuthTokenCreate as useCreateCentrifugoAdminApiServerAuthTokenCreate, index_useCreateCentrifugoAdminApiServerChannelsCreate as useCreateCentrifugoAdminApiServerChannelsCreate, index_useCreateCentrifugoAdminApiServerHistoryCreate as useCreateCentrifugoAdminApiServerHistoryCreate, index_useCreateCentrifugoAdminApiServerInfoCreate as useCreateCentrifugoAdminApiServerInfoCreate, index_useCreateCentrifugoAdminApiServerPresenceCreate as useCreateCentrifugoAdminApiServerPresenceCreate, index_useCreateCentrifugoAdminApiServerPresenceStatsCreate as useCreateCentrifugoAdminApiServerPresenceStatsCreate, index_useCreateCentrifugoAdminApiTestingConnectionTokenCreate as useCreateCentrifugoAdminApiTestingConnectionTokenCreate, index_useCreateCentrifugoAdminApiTestingPublishTestCreate as useCreateCentrifugoAdminApiTestingPublishTestCreate, index_useCreateCentrifugoAdminApiTestingPublishWithLoggingCreate as useCreateCentrifugoAdminApiTestingPublishWithLoggingCreate, index_useCreateCentrifugoAdminApiTestingSendAckCreate as useCreateCentrifugoAdminApiTestingSendAckCreate, 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_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_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 };
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 };
27390
26612
  }
27391
26613
 
27392
26614
  /**
@@ -28621,4 +27843,4 @@ interface TasksProviderProps {
28621
27843
  declare function TasksProvider({ children, autoRefresh, refreshInterval, }: TasksProviderProps): react_jsx_runtime.JSX.Element;
28622
27844
  declare function useTasks(): TasksContextValue;
28623
27845
 
28624
- 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, createCentrifugoAdminApiServerAuthTokenCreate, createCentrifugoAdminApiServerChannelsCreate, createCentrifugoAdminApiServerHistoryCreate, createCentrifugoAdminApiServerInfoCreate, createCentrifugoAdminApiServerPresenceCreate, createCentrifugoAdminApiServerPresenceStatsCreate, createCentrifugoAdminApiTestingConnectionTokenCreate, createCentrifugoAdminApiTestingPublishTestCreate, createCentrifugoAdminApiTestingPublishWithLoggingCreate, createCentrifugoAdminApiTestingSendAckCreate, createCentrifugoServerAuthTokenCreate, createCentrifugoServerChannelsCreate, createCentrifugoServerHistoryCreate, createCentrifugoServerInfoCreate, createCentrifugoServerPresenceCreate, createCentrifugoServerPresenceStatsCreate, createCentrifugoTestingConnectionTokenCreate, createCentrifugoTestingPublishTestCreate, createCentrifugoTestingPublishWithLoggingCreate, createCentrifugoTestingSendAckCreate, 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, getCentrifugoAdminApiMonitorChannelsRetrieve, getCentrifugoAdminApiMonitorHealthRetrieve, getCentrifugoAdminApiMonitorOverviewRetrieve, getCentrifugoAdminApiMonitorPublishesRetrieve, getCentrifugoAdminApiMonitorTimelineRetrieve, getCentrifugoMonitorChannelsRetrieve, getCentrifugoMonitorHealthRetrieve, getCentrifugoMonitorOverviewRetrieve, getCentrifugoMonitorPublishesRetrieve, getCentrifugoMonitorTimelineRetrieve, getDashboardApiActivityActionsList, getDashboardApiActivityRecentList, getDashboardApiChartsActivityRetrieve, getDashboardApiChartsRecentUsersList, getDashboardApiChartsRegistrationsRetrieve, getDashboardApiChartsTrackerList, 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 };
27846
+ 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 };