@djangocfg/api 1.2.36 → 1.2.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1766 -1726
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +223 -118
- package/dist/index.d.ts +223 -118
- package/dist/index.mjs +1766 -1726
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/cfg/generated/_utils/fetchers/cfg__centrifugo__centrifugo_monitoring.ts +3 -3
- package/src/cfg/generated/_utils/fetchers/cfg__health.ts +3 -3
- package/src/cfg/generated/_utils/fetchers/cfg__rq__rq_monitoring.ts +3 -3
- package/src/cfg/generated/_utils/hooks/cfg__centrifugo__centrifugo_monitoring.ts +3 -3
- package/src/cfg/generated/_utils/hooks/cfg__health.ts +3 -3
- package/src/cfg/generated/_utils/hooks/cfg__rq__rq_monitoring.ts +3 -3
- package/src/cfg/generated/_utils/schemas/ArchiveItemChunk.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/ArchiveItemChunkDetail.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/{HealthCheck.schema.ts → CentrifugoHealthCheck.schema.ts} +3 -3
- package/src/cfg/generated/_utils/schemas/DRFHealthCheck.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/DocumentArchiveDetail.schema.ts +1 -1
- package/src/cfg/generated/_utils/schemas/{MethodStats.schema.ts → GRPCMethodStats.schema.ts} +3 -3
- package/src/cfg/generated/_utils/schemas/GRPCServiceRegistryMethodStats.schema.ts +26 -0
- package/src/cfg/generated/_utils/schemas/MethodList.schema.ts +2 -2
- package/src/cfg/generated/_utils/schemas/MethodSummary.schema.ts +2 -2
- package/src/cfg/generated/_utils/schemas/RQHealthCheck.schema.ts +31 -0
- package/src/cfg/generated/_utils/schemas/index.ts +5 -2
- package/src/cfg/generated/cfg__centrifugo__centrifugo_monitoring/client.ts +1 -1
- package/src/cfg/generated/cfg__centrifugo__centrifugo_monitoring/models.ts +1 -1
- package/src/cfg/generated/cfg__grpc__grpc_monitoring/models.ts +2 -2
- package/src/cfg/generated/cfg__grpc__grpc_services/models.ts +17 -15
- package/src/cfg/generated/cfg__health/client.ts +1 -1
- package/src/cfg/generated/cfg__health/models.ts +14 -8
- package/src/cfg/generated/cfg__rq__rq_monitoring/client.ts +1 -1
- package/src/cfg/generated/cfg__rq__rq_monitoring/models.ts +18 -8
- package/src/cfg/generated/schema.json +401 -126
package/dist/index.d.ts
CHANGED
|
@@ -1142,7 +1142,7 @@ interface ChannelList$1 {
|
|
|
1142
1142
|
*
|
|
1143
1143
|
* Response model (includes read-only fields).
|
|
1144
1144
|
*/
|
|
1145
|
-
interface
|
|
1145
|
+
interface CentrifugoHealthCheck$1 {
|
|
1146
1146
|
/** Health status: healthy or unhealthy */
|
|
1147
1147
|
status: string;
|
|
1148
1148
|
/** Configured wrapper URL */
|
|
@@ -1262,7 +1262,7 @@ interface TimelineItem$1 {
|
|
|
1262
1262
|
}
|
|
1263
1263
|
|
|
1264
1264
|
declare namespace models$B {
|
|
1265
|
-
export type { CentrifugoOverviewStats$1 as CentrifugoOverviewStats, ChannelList$1 as ChannelList, ChannelStats$1 as ChannelStats,
|
|
1265
|
+
export type { CentrifugoHealthCheck$1 as CentrifugoHealthCheck, CentrifugoOverviewStats$1 as CentrifugoOverviewStats, ChannelList$1 as ChannelList, ChannelStats$1 as ChannelStats, PaginatedPublishList$1 as PaginatedPublishList, Publish$1 as Publish, TimelineItem$1 as TimelineItem, TimelineResponse$1 as TimelineResponse };
|
|
1266
1266
|
}
|
|
1267
1267
|
|
|
1268
1268
|
/**
|
|
@@ -1280,7 +1280,7 @@ declare class CfgCentrifugoMonitoring {
|
|
|
1280
1280
|
*
|
|
1281
1281
|
* Returns the current health status of the Centrifugo client.
|
|
1282
1282
|
*/
|
|
1283
|
-
centrifugoMonitorHealthRetrieve(): Promise<
|
|
1283
|
+
centrifugoMonitorHealthRetrieve(): Promise<CentrifugoHealthCheck$1>;
|
|
1284
1284
|
centrifugoMonitorOverviewRetrieve(hours?: number): Promise<CentrifugoOverviewStats$1>;
|
|
1285
1285
|
centrifugoMonitorOverviewRetrieve(params?: {
|
|
1286
1286
|
hours?: number;
|
|
@@ -2750,19 +2750,29 @@ interface RQConfig$1 {
|
|
|
2750
2750
|
schedules?: Array<ScheduleInfo$1>;
|
|
2751
2751
|
}
|
|
2752
2752
|
/**
|
|
2753
|
-
* Health check response.
|
|
2753
|
+
* Health check response serializer. Provides overall RQ cluster health status.
|
|
2754
2754
|
*
|
|
2755
2755
|
* Response model (includes read-only fields).
|
|
2756
2756
|
*/
|
|
2757
|
-
interface
|
|
2758
|
-
/** Health status
|
|
2757
|
+
interface RQHealthCheck$1 {
|
|
2758
|
+
/** Health status (healthy/degraded/unhealthy) */
|
|
2759
2759
|
status: string;
|
|
2760
|
-
/**
|
|
2761
|
-
|
|
2762
|
-
/**
|
|
2763
|
-
|
|
2764
|
-
/**
|
|
2760
|
+
/** Total number of active workers */
|
|
2761
|
+
worker_count: number;
|
|
2762
|
+
/** Number of configured queues */
|
|
2763
|
+
queue_count: number;
|
|
2764
|
+
/** Total jobs across all queues */
|
|
2765
|
+
total_jobs: number;
|
|
2766
|
+
/** Health check timestamp */
|
|
2765
2767
|
timestamp: string;
|
|
2768
|
+
/** RQ enabled status */
|
|
2769
|
+
enabled: boolean;
|
|
2770
|
+
/** Redis connection status */
|
|
2771
|
+
redis_connected: boolean;
|
|
2772
|
+
/** Wrapper URL (optional) */
|
|
2773
|
+
wrapper_url?: string;
|
|
2774
|
+
/** API key configured status */
|
|
2775
|
+
has_api_key?: boolean;
|
|
2766
2776
|
}
|
|
2767
2777
|
/**
|
|
2768
2778
|
* Schedule information in config response.
|
|
@@ -2782,7 +2792,7 @@ interface ScheduleInfo$1 {
|
|
|
2782
2792
|
}
|
|
2783
2793
|
|
|
2784
2794
|
declare namespace models$n {
|
|
2785
|
-
export type {
|
|
2795
|
+
export type { RQConfig$1 as RQConfig, RQHealthCheck$1 as RQHealthCheck, ScheduleInfo$1 as ScheduleInfo };
|
|
2786
2796
|
}
|
|
2787
2797
|
|
|
2788
2798
|
/**
|
|
@@ -2803,7 +2813,7 @@ declare class CfgRqMonitoring {
|
|
|
2803
2813
|
* Returns RQ cluster health status including worker count and queue
|
|
2804
2814
|
* status.
|
|
2805
2815
|
*/
|
|
2806
|
-
rqMonitorHealthRetrieve(): Promise<
|
|
2816
|
+
rqMonitorHealthRetrieve(): Promise<RQHealthCheck$1>;
|
|
2807
2817
|
/**
|
|
2808
2818
|
* Prometheus metrics
|
|
2809
2819
|
*
|
|
@@ -4413,7 +4423,7 @@ interface GRPCHealthCheck$1 {
|
|
|
4413
4423
|
*/
|
|
4414
4424
|
interface MethodList$1 {
|
|
4415
4425
|
/** Method statistics */
|
|
4416
|
-
methods: Array<
|
|
4426
|
+
methods: Array<GRPCMethodStats$1>;
|
|
4417
4427
|
/** Total number of methods */
|
|
4418
4428
|
total_methods: number;
|
|
4419
4429
|
}
|
|
@@ -4472,7 +4482,7 @@ interface PaginatedRecentRequestList$1 {
|
|
|
4472
4482
|
*
|
|
4473
4483
|
* Response model (includes read-only fields).
|
|
4474
4484
|
*/
|
|
4475
|
-
interface
|
|
4485
|
+
interface GRPCMethodStats$1 {
|
|
4476
4486
|
/** Method name */
|
|
4477
4487
|
method_name: string;
|
|
4478
4488
|
/** Service name */
|
|
@@ -4583,7 +4593,7 @@ interface GRPCRegisteredService$1 {
|
|
|
4583
4593
|
}
|
|
4584
4594
|
|
|
4585
4595
|
declare namespace models$9 {
|
|
4586
|
-
export type { GRPCHealthCheck$1 as GRPCHealthCheck, GRPCOverviewStats$1 as GRPCOverviewStats, GRPCRegisteredService$1 as GRPCRegisteredService, GRPCServerStatus$1 as GRPCServerStatus, MethodList$1 as MethodList,
|
|
4596
|
+
export type { GRPCHealthCheck$1 as GRPCHealthCheck, GRPCMethodStats$1 as GRPCMethodStats, GRPCOverviewStats$1 as GRPCOverviewStats, GRPCRegisteredService$1 as GRPCRegisteredService, GRPCServerStatus$1 as GRPCServerStatus, MethodList$1 as MethodList, PaginatedRecentRequestList$1 as PaginatedRecentRequestList, RecentRequest$1 as RecentRequest };
|
|
4587
4597
|
}
|
|
4588
4598
|
|
|
4589
4599
|
/**
|
|
@@ -4846,32 +4856,34 @@ interface MethodSummary$1 {
|
|
|
4846
4856
|
request_type?: string;
|
|
4847
4857
|
/** Response message type */
|
|
4848
4858
|
response_type?: string;
|
|
4849
|
-
stats:
|
|
4859
|
+
stats: GRPCServiceRegistryMethodStats$1;
|
|
4850
4860
|
}
|
|
4851
4861
|
/**
|
|
4852
|
-
* Statistics for a single
|
|
4862
|
+
* Statistics for a single method.
|
|
4853
4863
|
*
|
|
4854
4864
|
* Response model (includes read-only fields).
|
|
4855
4865
|
*/
|
|
4856
|
-
interface
|
|
4857
|
-
/** Method name */
|
|
4858
|
-
method_name: string;
|
|
4859
|
-
/** Service name */
|
|
4860
|
-
service_name: string;
|
|
4866
|
+
interface GRPCServiceRegistryMethodStats$1 {
|
|
4861
4867
|
/** Total requests */
|
|
4862
|
-
|
|
4868
|
+
total_requests?: number;
|
|
4863
4869
|
/** Successful requests */
|
|
4864
|
-
successful
|
|
4865
|
-
/**
|
|
4866
|
-
errors
|
|
4867
|
-
/**
|
|
4868
|
-
|
|
4869
|
-
/**
|
|
4870
|
-
|
|
4870
|
+
successful?: number;
|
|
4871
|
+
/** Failed requests */
|
|
4872
|
+
errors?: number;
|
|
4873
|
+
/** Success rate percentage */
|
|
4874
|
+
success_rate?: number;
|
|
4875
|
+
/** Average duration in milliseconds */
|
|
4876
|
+
avg_duration_ms?: number;
|
|
4877
|
+
/** P50 duration in milliseconds */
|
|
4878
|
+
p50_duration_ms?: number;
|
|
4879
|
+
/** P95 duration in milliseconds */
|
|
4880
|
+
p95_duration_ms?: number;
|
|
4881
|
+
/** P99 duration in milliseconds */
|
|
4882
|
+
p99_duration_ms?: number;
|
|
4871
4883
|
}
|
|
4872
4884
|
|
|
4873
4885
|
declare namespace models$7 {
|
|
4874
|
-
export type {
|
|
4886
|
+
export type { GRPCServiceRegistryMethodStats$1 as GRPCServiceRegistryMethodStats, MethodInfo$1 as MethodInfo, MethodSummary$1 as MethodSummary, PaginatedServiceSummaryList$1 as PaginatedServiceSummaryList, RecentError$1 as RecentError, ServiceDetail$1 as ServiceDetail, ServiceMethods$1 as ServiceMethods, ServiceStats$1 as ServiceStats, ServiceSummary$1 as ServiceSummary };
|
|
4875
4887
|
}
|
|
4876
4888
|
|
|
4877
4889
|
/**
|
|
@@ -5059,19 +5071,25 @@ declare class CfgGrpcTesting {
|
|
|
5059
5071
|
}
|
|
5060
5072
|
|
|
5061
5073
|
/**
|
|
5062
|
-
*
|
|
5074
|
+
* Serializer for health check response.
|
|
5063
5075
|
*
|
|
5064
5076
|
* Response model (includes read-only fields).
|
|
5065
5077
|
*/
|
|
5066
|
-
interface
|
|
5067
|
-
/**
|
|
5078
|
+
interface DRFHealthCheck$1 {
|
|
5079
|
+
/** Overall health status: healthy, degraded, or unhealthy */
|
|
5068
5080
|
status: string;
|
|
5069
|
-
/**
|
|
5070
|
-
wrapper_url: string;
|
|
5071
|
-
/** Whether API key is configured */
|
|
5072
|
-
has_api_key: boolean;
|
|
5073
|
-
/** Current timestamp */
|
|
5081
|
+
/** Timestamp of the health check */
|
|
5074
5082
|
timestamp: string;
|
|
5083
|
+
/** Service name */
|
|
5084
|
+
service: string;
|
|
5085
|
+
/** Django-CFG version */
|
|
5086
|
+
version: string;
|
|
5087
|
+
/** Detailed health checks for databases, cache, and system */
|
|
5088
|
+
checks: Record<string, any>;
|
|
5089
|
+
/** Environment information */
|
|
5090
|
+
environment: Record<string, any>;
|
|
5091
|
+
/** Useful API endpoint links */
|
|
5092
|
+
links?: Record<string, any>;
|
|
5075
5093
|
}
|
|
5076
5094
|
/**
|
|
5077
5095
|
* Serializer for quick health check response.
|
|
@@ -5088,7 +5106,7 @@ interface QuickHealth$1 {
|
|
|
5088
5106
|
}
|
|
5089
5107
|
|
|
5090
5108
|
declare namespace models$5 {
|
|
5091
|
-
export type {
|
|
5109
|
+
export type { DRFHealthCheck$1 as DRFHealthCheck, QuickHealth$1 as QuickHealth };
|
|
5092
5110
|
}
|
|
5093
5111
|
|
|
5094
5112
|
/**
|
|
@@ -5100,7 +5118,7 @@ declare class CfgHealth {
|
|
|
5100
5118
|
/**
|
|
5101
5119
|
* Return comprehensive health check data.
|
|
5102
5120
|
*/
|
|
5103
|
-
drfRetrieve(): Promise<
|
|
5121
|
+
drfRetrieve(): Promise<DRFHealthCheck$1>;
|
|
5104
5122
|
/**
|
|
5105
5123
|
* Return minimal health status.
|
|
5106
5124
|
*/
|
|
@@ -7766,7 +7784,7 @@ declare const ArchiveItemChunkSchema: z.ZodObject<{
|
|
|
7766
7784
|
character_count: z.ZodInt;
|
|
7767
7785
|
embedding_model: z.ZodString;
|
|
7768
7786
|
embedding_cost: z.ZodNumber;
|
|
7769
|
-
context_summary: z.
|
|
7787
|
+
context_summary: z.ZodObject<{}, z.core.$strip>;
|
|
7770
7788
|
created_at: z.ZodISODateTime;
|
|
7771
7789
|
}, z.core.$strip>;
|
|
7772
7790
|
/**
|
|
@@ -7793,7 +7811,7 @@ declare const ArchiveItemChunkDetailSchema: z.ZodObject<{
|
|
|
7793
7811
|
character_count: z.ZodInt;
|
|
7794
7812
|
embedding_model: z.ZodString;
|
|
7795
7813
|
embedding_cost: z.ZodNumber;
|
|
7796
|
-
context_summary: z.
|
|
7814
|
+
context_summary: z.ZodObject<{}, z.core.$strip>;
|
|
7797
7815
|
created_at: z.ZodISODateTime;
|
|
7798
7816
|
context_metadata: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
7799
7817
|
}, z.core.$strip>;
|
|
@@ -7938,7 +7956,7 @@ declare const ArchiveSearchResultSchema: z.ZodObject<{
|
|
|
7938
7956
|
character_count: z.ZodInt;
|
|
7939
7957
|
embedding_model: z.ZodString;
|
|
7940
7958
|
embedding_cost: z.ZodNumber;
|
|
7941
|
-
context_summary: z.
|
|
7959
|
+
context_summary: z.ZodObject<{}, z.core.$strip>;
|
|
7942
7960
|
created_at: z.ZodISODateTime;
|
|
7943
7961
|
}, z.core.$strip>;
|
|
7944
7962
|
similarity_score: z.ZodNumber;
|
|
@@ -8225,6 +8243,27 @@ declare const CentrifugoErrorSchema: z.ZodObject<{
|
|
|
8225
8243
|
*/
|
|
8226
8244
|
type CentrifugoError = z.infer<typeof CentrifugoErrorSchema>;
|
|
8227
8245
|
|
|
8246
|
+
/**
|
|
8247
|
+
* Zod schema for CentrifugoHealthCheck
|
|
8248
|
+
*
|
|
8249
|
+
* This schema provides runtime validation and type inference.
|
|
8250
|
+
* * Health check response.
|
|
8251
|
+
* */
|
|
8252
|
+
|
|
8253
|
+
/**
|
|
8254
|
+
* Health check response.
|
|
8255
|
+
*/
|
|
8256
|
+
declare const CentrifugoHealthCheckSchema: z.ZodObject<{
|
|
8257
|
+
status: z.ZodString;
|
|
8258
|
+
wrapper_url: z.ZodString;
|
|
8259
|
+
has_api_key: z.ZodBoolean;
|
|
8260
|
+
timestamp: z.ZodString;
|
|
8261
|
+
}, z.core.$strip>;
|
|
8262
|
+
/**
|
|
8263
|
+
* Infer TypeScript type from Zod schema
|
|
8264
|
+
*/
|
|
8265
|
+
type CentrifugoHealthCheck = z.infer<typeof CentrifugoHealthCheckSchema>;
|
|
8266
|
+
|
|
8228
8267
|
/**
|
|
8229
8268
|
* Zod schema for CentrifugoHistoryRequestRequest
|
|
8230
8269
|
*
|
|
@@ -9562,6 +9601,30 @@ declare const DRFConfigSchema: z.ZodObject<{
|
|
|
9562
9601
|
*/
|
|
9563
9602
|
type DRFConfig = z.infer<typeof DRFConfigSchema>;
|
|
9564
9603
|
|
|
9604
|
+
/**
|
|
9605
|
+
* Zod schema for DRFHealthCheck
|
|
9606
|
+
*
|
|
9607
|
+
* This schema provides runtime validation and type inference.
|
|
9608
|
+
* * Serializer for health check response.
|
|
9609
|
+
* */
|
|
9610
|
+
|
|
9611
|
+
/**
|
|
9612
|
+
* Serializer for health check response.
|
|
9613
|
+
*/
|
|
9614
|
+
declare const DRFHealthCheckSchema: z.ZodObject<{
|
|
9615
|
+
status: z.ZodString;
|
|
9616
|
+
timestamp: z.ZodISODateTime;
|
|
9617
|
+
service: z.ZodString;
|
|
9618
|
+
version: z.ZodString;
|
|
9619
|
+
checks: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9620
|
+
environment: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9621
|
+
links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
9622
|
+
}, z.core.$strip>;
|
|
9623
|
+
/**
|
|
9624
|
+
* Infer TypeScript type from Zod schema
|
|
9625
|
+
*/
|
|
9626
|
+
type DRFHealthCheck = z.infer<typeof DRFHealthCheckSchema>;
|
|
9627
|
+
|
|
9565
9628
|
/**
|
|
9566
9629
|
* Zod schema for DashboardCharts
|
|
9567
9630
|
*
|
|
@@ -10158,7 +10221,7 @@ declare const DocumentArchiveDetailSchema: z.ZodObject<{
|
|
|
10158
10221
|
created_at: z.ZodISODateTime;
|
|
10159
10222
|
updated_at: z.ZodISODateTime;
|
|
10160
10223
|
}, z.core.$strip>>;
|
|
10161
|
-
file_tree: z.ZodRecord<z.ZodString, z.
|
|
10224
|
+
file_tree: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
10162
10225
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
10163
10226
|
}, z.core.$strip>;
|
|
10164
10227
|
/**
|
|
@@ -10799,6 +10862,30 @@ declare const GRPCInterceptorInfoSchema: z.ZodObject<{
|
|
|
10799
10862
|
*/
|
|
10800
10863
|
type GRPCInterceptorInfo = z.infer<typeof GRPCInterceptorInfoSchema>;
|
|
10801
10864
|
|
|
10865
|
+
/**
|
|
10866
|
+
* Zod schema for GRPCMethodStats
|
|
10867
|
+
*
|
|
10868
|
+
* This schema provides runtime validation and type inference.
|
|
10869
|
+
* * Statistics for a single gRPC method.
|
|
10870
|
+
* */
|
|
10871
|
+
|
|
10872
|
+
/**
|
|
10873
|
+
* Statistics for a single gRPC method.
|
|
10874
|
+
*/
|
|
10875
|
+
declare const GRPCMethodStatsSchema: z.ZodObject<{
|
|
10876
|
+
method_name: z.ZodString;
|
|
10877
|
+
service_name: z.ZodString;
|
|
10878
|
+
total: z.ZodInt;
|
|
10879
|
+
successful: z.ZodInt;
|
|
10880
|
+
errors: z.ZodInt;
|
|
10881
|
+
avg_duration_ms: z.ZodNumber;
|
|
10882
|
+
last_activity_at: z.ZodNullable<z.ZodString>;
|
|
10883
|
+
}, z.core.$strip>;
|
|
10884
|
+
/**
|
|
10885
|
+
* Infer TypeScript type from Zod schema
|
|
10886
|
+
*/
|
|
10887
|
+
type GRPCMethodStats = z.infer<typeof GRPCMethodStatsSchema>;
|
|
10888
|
+
|
|
10802
10889
|
/**
|
|
10803
10890
|
* Zod schema for GRPCOverviewStats
|
|
10804
10891
|
*
|
|
@@ -10990,6 +11077,31 @@ declare const GRPCServiceInfoSchema: z.ZodObject<{
|
|
|
10990
11077
|
*/
|
|
10991
11078
|
type GRPCServiceInfo = z.infer<typeof GRPCServiceInfoSchema>;
|
|
10992
11079
|
|
|
11080
|
+
/**
|
|
11081
|
+
* Zod schema for GRPCServiceRegistryMethodStats
|
|
11082
|
+
*
|
|
11083
|
+
* This schema provides runtime validation and type inference.
|
|
11084
|
+
* * Statistics for a single method.
|
|
11085
|
+
* */
|
|
11086
|
+
|
|
11087
|
+
/**
|
|
11088
|
+
* Statistics for a single method.
|
|
11089
|
+
*/
|
|
11090
|
+
declare const GRPCServiceRegistryMethodStatsSchema: z.ZodObject<{
|
|
11091
|
+
total_requests: z.ZodOptional<z.ZodInt>;
|
|
11092
|
+
successful: z.ZodOptional<z.ZodInt>;
|
|
11093
|
+
errors: z.ZodOptional<z.ZodInt>;
|
|
11094
|
+
success_rate: z.ZodOptional<z.ZodNumber>;
|
|
11095
|
+
avg_duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
11096
|
+
p50_duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
11097
|
+
p95_duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
11098
|
+
p99_duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
11099
|
+
}, z.core.$strip>;
|
|
11100
|
+
/**
|
|
11101
|
+
* Infer TypeScript type from Zod schema
|
|
11102
|
+
*/
|
|
11103
|
+
type GRPCServiceRegistryMethodStats = z.infer<typeof GRPCServiceRegistryMethodStatsSchema>;
|
|
11104
|
+
|
|
10993
11105
|
/**
|
|
10994
11106
|
* Zod schema for GRPCStats
|
|
10995
11107
|
*
|
|
@@ -11036,27 +11148,6 @@ declare const GRPCTestLogSchema: z.ZodObject<{
|
|
|
11036
11148
|
*/
|
|
11037
11149
|
type GRPCTestLog = z.infer<typeof GRPCTestLogSchema>;
|
|
11038
11150
|
|
|
11039
|
-
/**
|
|
11040
|
-
* Zod schema for HealthCheck
|
|
11041
|
-
*
|
|
11042
|
-
* This schema provides runtime validation and type inference.
|
|
11043
|
-
* * Health check response.
|
|
11044
|
-
* */
|
|
11045
|
-
|
|
11046
|
-
/**
|
|
11047
|
-
* Health check response.
|
|
11048
|
-
*/
|
|
11049
|
-
declare const HealthCheckSchema: z.ZodObject<{
|
|
11050
|
-
status: z.ZodString;
|
|
11051
|
-
wrapper_url: z.ZodString;
|
|
11052
|
-
has_api_key: z.ZodBoolean;
|
|
11053
|
-
timestamp: z.ZodString;
|
|
11054
|
-
}, z.core.$strip>;
|
|
11055
|
-
/**
|
|
11056
|
-
* Infer TypeScript type from Zod schema
|
|
11057
|
-
*/
|
|
11058
|
-
type HealthCheck = z.infer<typeof HealthCheckSchema>;
|
|
11059
|
-
|
|
11060
11151
|
/**
|
|
11061
11152
|
* Zod schema for JWTConfig
|
|
11062
11153
|
*
|
|
@@ -11447,30 +11538,6 @@ declare const MethodListSchema: z.ZodObject<{
|
|
|
11447
11538
|
*/
|
|
11448
11539
|
type MethodList = z.infer<typeof MethodListSchema>;
|
|
11449
11540
|
|
|
11450
|
-
/**
|
|
11451
|
-
* Zod schema for MethodStats
|
|
11452
|
-
*
|
|
11453
|
-
* This schema provides runtime validation and type inference.
|
|
11454
|
-
* * Statistics for a single gRPC method.
|
|
11455
|
-
* */
|
|
11456
|
-
|
|
11457
|
-
/**
|
|
11458
|
-
* Statistics for a single gRPC method.
|
|
11459
|
-
*/
|
|
11460
|
-
declare const MethodStatsSchema: z.ZodObject<{
|
|
11461
|
-
method_name: z.ZodString;
|
|
11462
|
-
service_name: z.ZodString;
|
|
11463
|
-
total: z.ZodInt;
|
|
11464
|
-
successful: z.ZodInt;
|
|
11465
|
-
errors: z.ZodInt;
|
|
11466
|
-
avg_duration_ms: z.ZodNumber;
|
|
11467
|
-
last_activity_at: z.ZodNullable<z.ZodString>;
|
|
11468
|
-
}, z.core.$strip>;
|
|
11469
|
-
/**
|
|
11470
|
-
* Infer TypeScript type from Zod schema
|
|
11471
|
-
*/
|
|
11472
|
-
type MethodStats = z.infer<typeof MethodStatsSchema>;
|
|
11473
|
-
|
|
11474
11541
|
/**
|
|
11475
11542
|
* Zod schema for MethodSummary
|
|
11476
11543
|
*
|
|
@@ -11488,13 +11555,14 @@ declare const MethodSummarySchema: z.ZodObject<{
|
|
|
11488
11555
|
request_type: z.ZodOptional<z.ZodString>;
|
|
11489
11556
|
response_type: z.ZodOptional<z.ZodString>;
|
|
11490
11557
|
stats: z.ZodObject<{
|
|
11491
|
-
|
|
11492
|
-
|
|
11493
|
-
|
|
11494
|
-
|
|
11495
|
-
|
|
11496
|
-
|
|
11497
|
-
|
|
11558
|
+
total_requests: z.ZodOptional<z.ZodInt>;
|
|
11559
|
+
successful: z.ZodOptional<z.ZodInt>;
|
|
11560
|
+
errors: z.ZodOptional<z.ZodInt>;
|
|
11561
|
+
success_rate: z.ZodOptional<z.ZodNumber>;
|
|
11562
|
+
avg_duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
11563
|
+
p50_duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
11564
|
+
p95_duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
11565
|
+
p99_duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
11498
11566
|
}, z.core.$strip>;
|
|
11499
11567
|
}, z.core.$strip>;
|
|
11500
11568
|
/**
|
|
@@ -11872,7 +11940,7 @@ declare const PaginatedArchiveItemChunkListSchema: z.ZodObject<{
|
|
|
11872
11940
|
character_count: z.ZodInt;
|
|
11873
11941
|
embedding_model: z.ZodString;
|
|
11874
11942
|
embedding_cost: z.ZodNumber;
|
|
11875
|
-
context_summary: z.
|
|
11943
|
+
context_summary: z.ZodObject<{}, z.core.$strip>;
|
|
11876
11944
|
created_at: z.ZodISODateTime;
|
|
11877
11945
|
}, z.core.$strip>>;
|
|
11878
11946
|
}, z.core.$strip>;
|
|
@@ -11931,7 +11999,7 @@ declare const PaginatedArchiveSearchResultListSchema: z.ZodObject<{
|
|
|
11931
11999
|
character_count: z.ZodInt;
|
|
11932
12000
|
embedding_model: z.ZodString;
|
|
11933
12001
|
embedding_cost: z.ZodNumber;
|
|
11934
|
-
context_summary: z.
|
|
12002
|
+
context_summary: z.ZodObject<{}, z.core.$strip>;
|
|
11935
12003
|
created_at: z.ZodISODateTime;
|
|
11936
12004
|
}, z.core.$strip>;
|
|
11937
12005
|
similarity_score: z.ZodNumber;
|
|
@@ -13365,6 +13433,36 @@ declare const RQConfigSchema: z.ZodObject<{
|
|
|
13365
13433
|
*/
|
|
13366
13434
|
type RQConfig = z.infer<typeof RQConfigSchema>;
|
|
13367
13435
|
|
|
13436
|
+
/**
|
|
13437
|
+
* Zod schema for RQHealthCheck
|
|
13438
|
+
*
|
|
13439
|
+
* This schema provides runtime validation and type inference.
|
|
13440
|
+
* * Health check response serializer.
|
|
13441
|
+
|
|
13442
|
+
Provides overall RQ cluster health status.
|
|
13443
|
+
* */
|
|
13444
|
+
|
|
13445
|
+
/**
|
|
13446
|
+
* Health check response serializer.
|
|
13447
|
+
|
|
13448
|
+
Provides overall RQ cluster health status.
|
|
13449
|
+
*/
|
|
13450
|
+
declare const RQHealthCheckSchema: z.ZodObject<{
|
|
13451
|
+
status: z.ZodString;
|
|
13452
|
+
worker_count: z.ZodInt;
|
|
13453
|
+
queue_count: z.ZodInt;
|
|
13454
|
+
total_jobs: z.ZodInt;
|
|
13455
|
+
timestamp: z.ZodISODateTime;
|
|
13456
|
+
enabled: z.ZodBoolean;
|
|
13457
|
+
redis_connected: z.ZodBoolean;
|
|
13458
|
+
wrapper_url: z.ZodOptional<z.ZodString>;
|
|
13459
|
+
has_api_key: z.ZodOptional<z.ZodBoolean>;
|
|
13460
|
+
}, z.core.$strip>;
|
|
13461
|
+
/**
|
|
13462
|
+
* Infer TypeScript type from Zod schema
|
|
13463
|
+
*/
|
|
13464
|
+
type RQHealthCheck = z.infer<typeof RQHealthCheckSchema>;
|
|
13465
|
+
|
|
13368
13466
|
/**
|
|
13369
13467
|
* Zod schema for RQSchedule
|
|
13370
13468
|
*
|
|
@@ -14012,13 +14110,14 @@ declare const ServiceMethodsSchema: z.ZodObject<{
|
|
|
14012
14110
|
request_type: z.ZodOptional<z.ZodString>;
|
|
14013
14111
|
response_type: z.ZodOptional<z.ZodString>;
|
|
14014
14112
|
stats: z.ZodObject<{
|
|
14015
|
-
|
|
14016
|
-
|
|
14017
|
-
|
|
14018
|
-
|
|
14019
|
-
|
|
14020
|
-
|
|
14021
|
-
|
|
14113
|
+
total_requests: z.ZodOptional<z.ZodInt>;
|
|
14114
|
+
successful: z.ZodOptional<z.ZodInt>;
|
|
14115
|
+
errors: z.ZodOptional<z.ZodInt>;
|
|
14116
|
+
success_rate: z.ZodOptional<z.ZodNumber>;
|
|
14117
|
+
avg_duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
14118
|
+
p50_duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
14119
|
+
p95_duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
14120
|
+
p99_duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
14022
14121
|
}, z.core.$strip>;
|
|
14023
14122
|
}, z.core.$strip>>>;
|
|
14024
14123
|
total_methods: z.ZodInt;
|
|
@@ -14879,6 +14978,8 @@ type index$2_CentrifugoConfig = CentrifugoConfig;
|
|
|
14879
14978
|
declare const index$2_CentrifugoConfigSchema: typeof CentrifugoConfigSchema;
|
|
14880
14979
|
type index$2_CentrifugoError = CentrifugoError;
|
|
14881
14980
|
declare const index$2_CentrifugoErrorSchema: typeof CentrifugoErrorSchema;
|
|
14981
|
+
type index$2_CentrifugoHealthCheck = CentrifugoHealthCheck;
|
|
14982
|
+
declare const index$2_CentrifugoHealthCheckSchema: typeof CentrifugoHealthCheckSchema;
|
|
14882
14983
|
type index$2_CentrifugoHistoryRequestRequest = CentrifugoHistoryRequestRequest;
|
|
14883
14984
|
declare const index$2_CentrifugoHistoryRequestRequestSchema: typeof CentrifugoHistoryRequestRequestSchema;
|
|
14884
14985
|
type index$2_CentrifugoHistoryResponse = CentrifugoHistoryResponse;
|
|
@@ -14969,6 +15070,8 @@ type index$2_Currency = Currency;
|
|
|
14969
15070
|
declare const index$2_CurrencySchema: typeof CurrencySchema;
|
|
14970
15071
|
type index$2_DRFConfig = DRFConfig;
|
|
14971
15072
|
declare const index$2_DRFConfigSchema: typeof DRFConfigSchema;
|
|
15073
|
+
type index$2_DRFHealthCheck = DRFHealthCheck;
|
|
15074
|
+
declare const index$2_DRFHealthCheckSchema: typeof DRFHealthCheckSchema;
|
|
14972
15075
|
type index$2_DashboardCharts = DashboardCharts;
|
|
14973
15076
|
declare const index$2_DashboardChartsSchema: typeof DashboardChartsSchema;
|
|
14974
15077
|
type index$2_DashboardOverview = DashboardOverview;
|
|
@@ -15035,6 +15138,8 @@ type index$2_GRPCHealthCheck = GRPCHealthCheck;
|
|
|
15035
15138
|
declare const index$2_GRPCHealthCheckSchema: typeof GRPCHealthCheckSchema;
|
|
15036
15139
|
type index$2_GRPCInterceptorInfo = GRPCInterceptorInfo;
|
|
15037
15140
|
declare const index$2_GRPCInterceptorInfoSchema: typeof GRPCInterceptorInfoSchema;
|
|
15141
|
+
type index$2_GRPCMethodStats = GRPCMethodStats;
|
|
15142
|
+
declare const index$2_GRPCMethodStatsSchema: typeof GRPCMethodStatsSchema;
|
|
15038
15143
|
type index$2_GRPCOverviewStats = GRPCOverviewStats;
|
|
15039
15144
|
declare const index$2_GRPCOverviewStatsSchema: typeof GRPCOverviewStatsSchema;
|
|
15040
15145
|
type index$2_GRPCRegisteredService = GRPCRegisteredService;
|
|
@@ -15047,12 +15152,12 @@ type index$2_GRPCServerStatus = GRPCServerStatus;
|
|
|
15047
15152
|
declare const index$2_GRPCServerStatusSchema: typeof GRPCServerStatusSchema;
|
|
15048
15153
|
type index$2_GRPCServiceInfo = GRPCServiceInfo;
|
|
15049
15154
|
declare const index$2_GRPCServiceInfoSchema: typeof GRPCServiceInfoSchema;
|
|
15155
|
+
type index$2_GRPCServiceRegistryMethodStats = GRPCServiceRegistryMethodStats;
|
|
15156
|
+
declare const index$2_GRPCServiceRegistryMethodStatsSchema: typeof GRPCServiceRegistryMethodStatsSchema;
|
|
15050
15157
|
type index$2_GRPCStats = GRPCStats;
|
|
15051
15158
|
declare const index$2_GRPCStatsSchema: typeof GRPCStatsSchema;
|
|
15052
15159
|
type index$2_GRPCTestLog = GRPCTestLog;
|
|
15053
15160
|
declare const index$2_GRPCTestLogSchema: typeof GRPCTestLogSchema;
|
|
15054
|
-
type index$2_HealthCheck = HealthCheck;
|
|
15055
|
-
declare const index$2_HealthCheckSchema: typeof HealthCheckSchema;
|
|
15056
15161
|
type index$2_JWTConfig = JWTConfig;
|
|
15057
15162
|
declare const index$2_JWTConfigSchema: typeof JWTConfigSchema;
|
|
15058
15163
|
type index$2_JobActionResponse = JobActionResponse;
|
|
@@ -15087,8 +15192,6 @@ type index$2_MethodInfo = MethodInfo;
|
|
|
15087
15192
|
declare const index$2_MethodInfoSchema: typeof MethodInfoSchema;
|
|
15088
15193
|
type index$2_MethodList = MethodList;
|
|
15089
15194
|
declare const index$2_MethodListSchema: typeof MethodListSchema;
|
|
15090
|
-
type index$2_MethodStats = MethodStats;
|
|
15091
|
-
declare const index$2_MethodStatsSchema: typeof MethodStatsSchema;
|
|
15092
15195
|
type index$2_MethodSummary = MethodSummary;
|
|
15093
15196
|
declare const index$2_MethodSummarySchema: typeof MethodSummarySchema;
|
|
15094
15197
|
type index$2_ModelStatistics = ModelStatistics;
|
|
@@ -15229,6 +15332,8 @@ type index$2_QuickHealth = QuickHealth;
|
|
|
15229
15332
|
declare const index$2_QuickHealthSchema: typeof QuickHealthSchema;
|
|
15230
15333
|
type index$2_RQConfig = RQConfig;
|
|
15231
15334
|
declare const index$2_RQConfigSchema: typeof RQConfigSchema;
|
|
15335
|
+
type index$2_RQHealthCheck = RQHealthCheck;
|
|
15336
|
+
declare const index$2_RQHealthCheckSchema: typeof RQHealthCheckSchema;
|
|
15232
15337
|
type index$2_RQSchedule = RQSchedule;
|
|
15233
15338
|
declare const index$2_RQScheduleSchema: typeof RQScheduleSchema;
|
|
15234
15339
|
type index$2_RecentError = RecentError;
|
|
@@ -15346,7 +15451,7 @@ declare const index$2_WorkerSchema: typeof WorkerSchema;
|
|
|
15346
15451
|
type index$2_WorkerStats = WorkerStats;
|
|
15347
15452
|
declare const index$2_WorkerStatsSchema: typeof WorkerStatsSchema;
|
|
15348
15453
|
declare namespace index$2 {
|
|
15349
|
-
export { type index$2_APIZone as APIZone, index$2_APIZoneSchema as APIZoneSchema, type index$2_APIZonesSummary as APIZonesSummary, index$2_APIZonesSummarySchema as APIZonesSummarySchema, type index$2_ActivityEntry as ActivityEntry, index$2_ActivityEntrySchema as ActivityEntrySchema, type index$2_ActivityTrackerDay as ActivityTrackerDay, index$2_ActivityTrackerDaySchema as ActivityTrackerDaySchema, type index$2_ApiKey as ApiKey, index$2_ApiKeySchema as ApiKeySchema, type index$2_ApiKeyStats as ApiKeyStats, index$2_ApiKeyStatsSchema as ApiKeyStatsSchema, type index$2_AppStatistics as AppStatistics, type index$2_AppStatisticsData as AppStatisticsData, index$2_AppStatisticsDataSchema as AppStatisticsDataSchema, 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_AxesConfig as AxesConfig, index$2_AxesConfigSchema as AxesConfigSchema, 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_CentrifugoConfig as CentrifugoConfig, index$2_CentrifugoConfigSchema as CentrifugoConfigSchema, 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_CentrifugoOverviewStats as CentrifugoOverviewStats, index$2_CentrifugoOverviewStatsSchema as CentrifugoOverviewStatsSchema, 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_CentrifugoToken as CentrifugoToken, index$2_CentrifugoTokenSchema as CentrifugoTokenSchema, type index$2_ChannelList as ChannelList, index$2_ChannelListSchema as ChannelListSchema, type index$2_ChannelStats as ChannelStats, index$2_ChannelStatsSchema as ChannelStatsSchema, 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_CommandCategory as CommandCategory, index$2_CommandCategorySchema as CommandCategorySchema, 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_ConfigData as ConfigData, index$2_ConfigDataSchema as ConfigDataSchema, type index$2_ConfigMeta as ConfigMeta, index$2_ConfigMetaSchema as ConfigMetaSchema, type index$2_ConfigValidation as ConfigValidation, index$2_ConfigValidationSchema as ConfigValidationSchema, type index$2_ConnectionTokenResponse as ConnectionTokenResponse, index$2_ConnectionTokenResponseSchema as ConnectionTokenResponseSchema, type index$2_ConstanceConfig as ConstanceConfig, index$2_ConstanceConfigSchema as ConstanceConfigSchema, type index$2_Currency as Currency, index$2_CurrencySchema as CurrencySchema, type index$2_DRFConfig as DRFConfig, index$2_DRFConfigSchema as DRFConfigSchema, type index$2_DashboardCharts as DashboardCharts, index$2_DashboardChartsSchema as DashboardChartsSchema, type index$2_DashboardOverview as DashboardOverview, index$2_DashboardOverviewSchema as DashboardOverviewSchema, type index$2_DatabaseConfig as DatabaseConfig, index$2_DatabaseConfigSchema as DatabaseConfigSchema, type index$2_DjangoConfig as DjangoConfig, index$2_DjangoConfigSchema as DjangoConfigSchema, type index$2_DjangoRQConfig as DjangoRQConfig, index$2_DjangoRQConfigSchema as DjangoRQConfigSchema, 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_EmailConfig as EmailConfig, index$2_EmailConfigSchema as EmailConfigSchema, 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_ErrorDistributionChart as ErrorDistributionChart, index$2_ErrorDistributionChartSchema as ErrorDistributionChartSchema, type index$2_ErrorDistributionDataPoint as ErrorDistributionDataPoint, index$2_ErrorDistributionDataPointSchema as ErrorDistributionDataPointSchema, type index$2_ErrorResponse as ErrorResponse, index$2_ErrorResponseSchema as ErrorResponseSchema, type index$2_GRPCCallRequestRequest as GRPCCallRequestRequest, index$2_GRPCCallRequestRequestSchema as GRPCCallRequestRequestSchema, type index$2_GRPCCallResponse as GRPCCallResponse, index$2_GRPCCallResponseSchema as GRPCCallResponseSchema, type index$2_GRPCConfig as GRPCConfig, type index$2_GRPCConfigDashboard as GRPCConfigDashboard, index$2_GRPCConfigDashboardSchema as GRPCConfigDashboardSchema, index$2_GRPCConfigSchema as GRPCConfigSchema, type index$2_GRPCExample as GRPCExample, index$2_GRPCExampleSchema as GRPCExampleSchema, type index$2_GRPCExamplesList as GRPCExamplesList, index$2_GRPCExamplesListSchema as GRPCExamplesListSchema, type index$2_GRPCFeatures as GRPCFeatures, index$2_GRPCFeaturesSchema as GRPCFeaturesSchema, type index$2_GRPCFrameworkConfig as GRPCFrameworkConfig, index$2_GRPCFrameworkConfigSchema as GRPCFrameworkConfigSchema, type index$2_GRPCHealthCheck as GRPCHealthCheck, index$2_GRPCHealthCheckSchema as GRPCHealthCheckSchema, type index$2_GRPCInterceptorInfo as GRPCInterceptorInfo, index$2_GRPCInterceptorInfoSchema as GRPCInterceptorInfoSchema, type index$2_GRPCOverviewStats as GRPCOverviewStats, index$2_GRPCOverviewStatsSchema as GRPCOverviewStatsSchema, type index$2_GRPCRegisteredService as GRPCRegisteredService, index$2_GRPCRegisteredServiceSchema as GRPCRegisteredServiceSchema, type index$2_GRPCServerConfig as GRPCServerConfig, index$2_GRPCServerConfigSchema as GRPCServerConfigSchema, type index$2_GRPCServerInfo as GRPCServerInfo, index$2_GRPCServerInfoSchema as GRPCServerInfoSchema, type index$2_GRPCServerStatus as GRPCServerStatus, index$2_GRPCServerStatusSchema as GRPCServerStatusSchema, type index$2_GRPCServiceInfo as GRPCServiceInfo, index$2_GRPCServiceInfoSchema as GRPCServiceInfoSchema, type index$2_GRPCStats as GRPCStats, index$2_GRPCStatsSchema as GRPCStatsSchema, type index$2_GRPCTestLog as GRPCTestLog, index$2_GRPCTestLogSchema as GRPCTestLogSchema, type index$2_HealthCheck as HealthCheck, index$2_HealthCheckSchema as HealthCheckSchema, type index$2_JWTConfig as JWTConfig, index$2_JWTConfigSchema as JWTConfigSchema, type index$2_JobActionResponse as JobActionResponse, index$2_JobActionResponseSchema as JobActionResponseSchema, type index$2_JobDetail as JobDetail, index$2_JobDetailSchema as JobDetailSchema, type index$2_JobList as JobList, type index$2_JobListRequest as JobListRequest, index$2_JobListRequestSchema as JobListRequestSchema, index$2_JobListSchema as JobListSchema, 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_MethodInfo as MethodInfo, index$2_MethodInfoSchema as MethodInfoSchema, type index$2_MethodList as MethodList, index$2_MethodListSchema as MethodListSchema, type index$2_MethodStats as MethodStats, index$2_MethodStatsSchema as MethodStatsSchema, type index$2_MethodSummary as MethodSummary, index$2_MethodSummarySchema as MethodSummarySchema, type index$2_ModelStatistics as ModelStatistics, index$2_ModelStatisticsSchema as ModelStatisticsSchema, 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_NextJSAdminConfig as NextJSAdminConfig, index$2_NextJSAdminConfigSchema as NextJSAdminConfigSchema, type index$2_NgrokConfig as NgrokConfig, index$2_NgrokConfigSchema as NgrokConfigSchema, 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_OpenAPIClientConfig as OpenAPIClientConfig, index$2_OpenAPIClientConfigSchema as OpenAPIClientConfigSchema, type index$2_PaginatedApiKeyList as PaginatedApiKeyList, index$2_PaginatedApiKeyListSchema as PaginatedApiKeyListSchema, 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_PaginatedGRPCTestLogList as PaginatedGRPCTestLogList, index$2_PaginatedGRPCTestLogListSchema as PaginatedGRPCTestLogListSchema, type index$2_PaginatedJobListList as PaginatedJobListList, index$2_PaginatedJobListListSchema as PaginatedJobListListSchema, 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_PaginatedPublishList as PaginatedPublishList, index$2_PaginatedPublishListSchema as PaginatedPublishListSchema, type index$2_PaginatedRecentRequestList as PaginatedRecentRequestList, index$2_PaginatedRecentRequestListSchema as PaginatedRecentRequestListSchema, type index$2_PaginatedScheduledJobList as PaginatedScheduledJobList, index$2_PaginatedScheduledJobListSchema as PaginatedScheduledJobListSchema, type index$2_PaginatedServiceSummaryList as PaginatedServiceSummaryList, index$2_PaginatedServiceSummaryListSchema as PaginatedServiceSummaryListSchema, 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_PaymentsConfig as PaymentsConfig, index$2_PaymentsConfigSchema as PaymentsConfigSchema, type index$2_PaymentsNowPayments as PaymentsNowPayments, index$2_PaymentsNowPaymentsSchema as PaymentsNowPaymentsSchema, type index$2_ProtoFileDetail as ProtoFileDetail, index$2_ProtoFileDetailSchema as ProtoFileDetailSchema, type index$2_ProtoFileList as ProtoFileList, index$2_ProtoFileListSchema as ProtoFileListSchema, type index$2_ProtoGenerateError as ProtoGenerateError, index$2_ProtoGenerateErrorSchema as ProtoGenerateErrorSchema, type index$2_ProtoGenerateRequestRequest as ProtoGenerateRequestRequest, index$2_ProtoGenerateRequestRequestSchema as ProtoGenerateRequestRequestSchema, type index$2_ProtoGenerateResponse as ProtoGenerateResponse, index$2_ProtoGenerateResponseSchema as ProtoGenerateResponseSchema, 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_Publish as Publish, index$2_PublishSchema as PublishSchema, 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_QueueDetail as QueueDetail, index$2_QueueDetailSchema as QueueDetailSchema, type index$2_QueueStats as QueueStats, index$2_QueueStatsSchema as QueueStatsSchema, 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_RQConfig as RQConfig, index$2_RQConfigSchema as RQConfigSchema, type index$2_RQSchedule as RQSchedule, index$2_RQScheduleSchema as RQScheduleSchema, type index$2_RecentError as RecentError, index$2_RecentErrorSchema as RecentErrorSchema, type index$2_RecentRequest as RecentRequest, index$2_RecentRequestSchema as RecentRequestSchema, type index$2_RecentUser as RecentUser, index$2_RecentUserSchema as RecentUserSchema, type index$2_RedisQueueConfig as RedisQueueConfig, index$2_RedisQueueConfigSchema as RedisQueueConfigSchema, type index$2_RequestVolumeChart as RequestVolumeChart, index$2_RequestVolumeChartSchema as RequestVolumeChartSchema, type index$2_RequestVolumeDataPoint as RequestVolumeDataPoint, index$2_RequestVolumeDataPointSchema as RequestVolumeDataPointSchema, type index$2_ResponseTimeChart as ResponseTimeChart, index$2_ResponseTimeChartSchema as ResponseTimeChartSchema, type index$2_ResponseTimeDataPoint as ResponseTimeDataPoint, index$2_ResponseTimeDataPointSchema as ResponseTimeDataPointSchema, type index$2_RunDemoRequestRequest as RunDemoRequestRequest, index$2_RunDemoRequestRequestSchema as RunDemoRequestRequestSchema, type index$2_ScheduleActionResponse as ScheduleActionResponse, index$2_ScheduleActionResponseSchema as ScheduleActionResponseSchema, type index$2_ScheduleCreateRequest as ScheduleCreateRequest, index$2_ScheduleCreateRequestSchema as ScheduleCreateRequestSchema, type index$2_ScheduleInfo as ScheduleInfo, index$2_ScheduleInfoSchema as ScheduleInfoSchema, type index$2_ScheduledJob as ScheduledJob, index$2_ScheduledJobSchema as ScheduledJobSchema, 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_ServerLifecycleChart as ServerLifecycleChart, index$2_ServerLifecycleChartSchema as ServerLifecycleChartSchema, type index$2_ServerLifecycleEvent as ServerLifecycleEvent, index$2_ServerLifecycleEventSchema as ServerLifecycleEventSchema, type index$2_ServerUptimeChart as ServerUptimeChart, index$2_ServerUptimeChartSchema as ServerUptimeChartSchema, type index$2_ServerUptimeDataPoint as ServerUptimeDataPoint, index$2_ServerUptimeDataPointSchema as ServerUptimeDataPointSchema, type index$2_ServiceActivityChart as ServiceActivityChart, index$2_ServiceActivityChartSchema as ServiceActivityChartSchema, type index$2_ServiceActivityDataPoint as ServiceActivityDataPoint, index$2_ServiceActivityDataPointSchema as ServiceActivityDataPointSchema, type index$2_ServiceDetail as ServiceDetail, index$2_ServiceDetailSchema as ServiceDetailSchema, type index$2_ServiceMethods as ServiceMethods, index$2_ServiceMethodsSchema as ServiceMethodsSchema, type index$2_ServiceStats as ServiceStats, index$2_ServiceStatsSchema as ServiceStatsSchema, type index$2_ServiceSummary as ServiceSummary, index$2_ServiceSummarySchema as ServiceSummarySchema, type index$2_SpectacularConfig as SpectacularConfig, index$2_SpectacularConfigSchema as SpectacularConfigSchema, type index$2_StatCard as StatCard, index$2_StatCardSchema as StatCardSchema, type index$2_StressTestRequestRequest as StressTestRequestRequest, index$2_StressTestRequestRequestSchema as StressTestRequestRequestSchema, 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_TelegramConfig as TelegramConfig, index$2_TelegramConfigSchema as TelegramConfigSchema, type index$2_TestEmailRequest as TestEmailRequest, index$2_TestEmailRequestSchema as TestEmailRequestSchema, type index$2_TestScenario as TestScenario, index$2_TestScenarioSchema as TestScenarioSchema, type index$2_TestingActionResponse as TestingActionResponse, index$2_TestingActionResponseSchema as TestingActionResponseSchema, 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_TimelineItem as TimelineItem, index$2_TimelineItemSchema as TimelineItemSchema, type index$2_TimelineResponse as TimelineResponse, index$2_TimelineResponseSchema as TimelineResponseSchema, 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_Worker as Worker, index$2_WorkerSchema as WorkerSchema, type index$2_WorkerStats as WorkerStats, index$2_WorkerStatsSchema as WorkerStatsSchema };
|
|
15454
|
+
export { type index$2_APIZone as APIZone, index$2_APIZoneSchema as APIZoneSchema, type index$2_APIZonesSummary as APIZonesSummary, index$2_APIZonesSummarySchema as APIZonesSummarySchema, type index$2_ActivityEntry as ActivityEntry, index$2_ActivityEntrySchema as ActivityEntrySchema, type index$2_ActivityTrackerDay as ActivityTrackerDay, index$2_ActivityTrackerDaySchema as ActivityTrackerDaySchema, type index$2_ApiKey as ApiKey, index$2_ApiKeySchema as ApiKeySchema, type index$2_ApiKeyStats as ApiKeyStats, index$2_ApiKeyStatsSchema as ApiKeyStatsSchema, type index$2_AppStatistics as AppStatistics, type index$2_AppStatisticsData as AppStatisticsData, index$2_AppStatisticsDataSchema as AppStatisticsDataSchema, 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_AxesConfig as AxesConfig, index$2_AxesConfigSchema as AxesConfigSchema, 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_CentrifugoConfig as CentrifugoConfig, index$2_CentrifugoConfigSchema as CentrifugoConfigSchema, type index$2_CentrifugoError as CentrifugoError, index$2_CentrifugoErrorSchema as CentrifugoErrorSchema, type index$2_CentrifugoHealthCheck as CentrifugoHealthCheck, index$2_CentrifugoHealthCheckSchema as CentrifugoHealthCheckSchema, 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_CentrifugoOverviewStats as CentrifugoOverviewStats, index$2_CentrifugoOverviewStatsSchema as CentrifugoOverviewStatsSchema, 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_CentrifugoToken as CentrifugoToken, index$2_CentrifugoTokenSchema as CentrifugoTokenSchema, type index$2_ChannelList as ChannelList, index$2_ChannelListSchema as ChannelListSchema, type index$2_ChannelStats as ChannelStats, index$2_ChannelStatsSchema as ChannelStatsSchema, 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_CommandCategory as CommandCategory, index$2_CommandCategorySchema as CommandCategorySchema, 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_ConfigData as ConfigData, index$2_ConfigDataSchema as ConfigDataSchema, type index$2_ConfigMeta as ConfigMeta, index$2_ConfigMetaSchema as ConfigMetaSchema, type index$2_ConfigValidation as ConfigValidation, index$2_ConfigValidationSchema as ConfigValidationSchema, type index$2_ConnectionTokenResponse as ConnectionTokenResponse, index$2_ConnectionTokenResponseSchema as ConnectionTokenResponseSchema, type index$2_ConstanceConfig as ConstanceConfig, index$2_ConstanceConfigSchema as ConstanceConfigSchema, type index$2_Currency as Currency, index$2_CurrencySchema as CurrencySchema, type index$2_DRFConfig as DRFConfig, index$2_DRFConfigSchema as DRFConfigSchema, type index$2_DRFHealthCheck as DRFHealthCheck, index$2_DRFHealthCheckSchema as DRFHealthCheckSchema, type index$2_DashboardCharts as DashboardCharts, index$2_DashboardChartsSchema as DashboardChartsSchema, type index$2_DashboardOverview as DashboardOverview, index$2_DashboardOverviewSchema as DashboardOverviewSchema, type index$2_DatabaseConfig as DatabaseConfig, index$2_DatabaseConfigSchema as DatabaseConfigSchema, type index$2_DjangoConfig as DjangoConfig, index$2_DjangoConfigSchema as DjangoConfigSchema, type index$2_DjangoRQConfig as DjangoRQConfig, index$2_DjangoRQConfigSchema as DjangoRQConfigSchema, 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_EmailConfig as EmailConfig, index$2_EmailConfigSchema as EmailConfigSchema, 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_ErrorDistributionChart as ErrorDistributionChart, index$2_ErrorDistributionChartSchema as ErrorDistributionChartSchema, type index$2_ErrorDistributionDataPoint as ErrorDistributionDataPoint, index$2_ErrorDistributionDataPointSchema as ErrorDistributionDataPointSchema, type index$2_ErrorResponse as ErrorResponse, index$2_ErrorResponseSchema as ErrorResponseSchema, type index$2_GRPCCallRequestRequest as GRPCCallRequestRequest, index$2_GRPCCallRequestRequestSchema as GRPCCallRequestRequestSchema, type index$2_GRPCCallResponse as GRPCCallResponse, index$2_GRPCCallResponseSchema as GRPCCallResponseSchema, type index$2_GRPCConfig as GRPCConfig, type index$2_GRPCConfigDashboard as GRPCConfigDashboard, index$2_GRPCConfigDashboardSchema as GRPCConfigDashboardSchema, index$2_GRPCConfigSchema as GRPCConfigSchema, type index$2_GRPCExample as GRPCExample, index$2_GRPCExampleSchema as GRPCExampleSchema, type index$2_GRPCExamplesList as GRPCExamplesList, index$2_GRPCExamplesListSchema as GRPCExamplesListSchema, type index$2_GRPCFeatures as GRPCFeatures, index$2_GRPCFeaturesSchema as GRPCFeaturesSchema, type index$2_GRPCFrameworkConfig as GRPCFrameworkConfig, index$2_GRPCFrameworkConfigSchema as GRPCFrameworkConfigSchema, type index$2_GRPCHealthCheck as GRPCHealthCheck, index$2_GRPCHealthCheckSchema as GRPCHealthCheckSchema, type index$2_GRPCInterceptorInfo as GRPCInterceptorInfo, index$2_GRPCInterceptorInfoSchema as GRPCInterceptorInfoSchema, type index$2_GRPCMethodStats as GRPCMethodStats, index$2_GRPCMethodStatsSchema as GRPCMethodStatsSchema, type index$2_GRPCOverviewStats as GRPCOverviewStats, index$2_GRPCOverviewStatsSchema as GRPCOverviewStatsSchema, type index$2_GRPCRegisteredService as GRPCRegisteredService, index$2_GRPCRegisteredServiceSchema as GRPCRegisteredServiceSchema, type index$2_GRPCServerConfig as GRPCServerConfig, index$2_GRPCServerConfigSchema as GRPCServerConfigSchema, type index$2_GRPCServerInfo as GRPCServerInfo, index$2_GRPCServerInfoSchema as GRPCServerInfoSchema, type index$2_GRPCServerStatus as GRPCServerStatus, index$2_GRPCServerStatusSchema as GRPCServerStatusSchema, type index$2_GRPCServiceInfo as GRPCServiceInfo, index$2_GRPCServiceInfoSchema as GRPCServiceInfoSchema, type index$2_GRPCServiceRegistryMethodStats as GRPCServiceRegistryMethodStats, index$2_GRPCServiceRegistryMethodStatsSchema as GRPCServiceRegistryMethodStatsSchema, type index$2_GRPCStats as GRPCStats, index$2_GRPCStatsSchema as GRPCStatsSchema, type index$2_GRPCTestLog as GRPCTestLog, index$2_GRPCTestLogSchema as GRPCTestLogSchema, type index$2_JWTConfig as JWTConfig, index$2_JWTConfigSchema as JWTConfigSchema, type index$2_JobActionResponse as JobActionResponse, index$2_JobActionResponseSchema as JobActionResponseSchema, type index$2_JobDetail as JobDetail, index$2_JobDetailSchema as JobDetailSchema, type index$2_JobList as JobList, type index$2_JobListRequest as JobListRequest, index$2_JobListRequestSchema as JobListRequestSchema, index$2_JobListSchema as JobListSchema, 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_MethodInfo as MethodInfo, index$2_MethodInfoSchema as MethodInfoSchema, type index$2_MethodList as MethodList, index$2_MethodListSchema as MethodListSchema, type index$2_MethodSummary as MethodSummary, index$2_MethodSummarySchema as MethodSummarySchema, type index$2_ModelStatistics as ModelStatistics, index$2_ModelStatisticsSchema as ModelStatisticsSchema, 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_NextJSAdminConfig as NextJSAdminConfig, index$2_NextJSAdminConfigSchema as NextJSAdminConfigSchema, type index$2_NgrokConfig as NgrokConfig, index$2_NgrokConfigSchema as NgrokConfigSchema, 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_OpenAPIClientConfig as OpenAPIClientConfig, index$2_OpenAPIClientConfigSchema as OpenAPIClientConfigSchema, type index$2_PaginatedApiKeyList as PaginatedApiKeyList, index$2_PaginatedApiKeyListSchema as PaginatedApiKeyListSchema, 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_PaginatedGRPCTestLogList as PaginatedGRPCTestLogList, index$2_PaginatedGRPCTestLogListSchema as PaginatedGRPCTestLogListSchema, type index$2_PaginatedJobListList as PaginatedJobListList, index$2_PaginatedJobListListSchema as PaginatedJobListListSchema, 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_PaginatedPublishList as PaginatedPublishList, index$2_PaginatedPublishListSchema as PaginatedPublishListSchema, type index$2_PaginatedRecentRequestList as PaginatedRecentRequestList, index$2_PaginatedRecentRequestListSchema as PaginatedRecentRequestListSchema, type index$2_PaginatedScheduledJobList as PaginatedScheduledJobList, index$2_PaginatedScheduledJobListSchema as PaginatedScheduledJobListSchema, type index$2_PaginatedServiceSummaryList as PaginatedServiceSummaryList, index$2_PaginatedServiceSummaryListSchema as PaginatedServiceSummaryListSchema, 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_PaymentsConfig as PaymentsConfig, index$2_PaymentsConfigSchema as PaymentsConfigSchema, type index$2_PaymentsNowPayments as PaymentsNowPayments, index$2_PaymentsNowPaymentsSchema as PaymentsNowPaymentsSchema, type index$2_ProtoFileDetail as ProtoFileDetail, index$2_ProtoFileDetailSchema as ProtoFileDetailSchema, type index$2_ProtoFileList as ProtoFileList, index$2_ProtoFileListSchema as ProtoFileListSchema, type index$2_ProtoGenerateError as ProtoGenerateError, index$2_ProtoGenerateErrorSchema as ProtoGenerateErrorSchema, type index$2_ProtoGenerateRequestRequest as ProtoGenerateRequestRequest, index$2_ProtoGenerateRequestRequestSchema as ProtoGenerateRequestRequestSchema, type index$2_ProtoGenerateResponse as ProtoGenerateResponse, index$2_ProtoGenerateResponseSchema as ProtoGenerateResponseSchema, 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_Publish as Publish, index$2_PublishSchema as PublishSchema, 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_QueueDetail as QueueDetail, index$2_QueueDetailSchema as QueueDetailSchema, type index$2_QueueStats as QueueStats, index$2_QueueStatsSchema as QueueStatsSchema, 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_RQConfig as RQConfig, index$2_RQConfigSchema as RQConfigSchema, type index$2_RQHealthCheck as RQHealthCheck, index$2_RQHealthCheckSchema as RQHealthCheckSchema, type index$2_RQSchedule as RQSchedule, index$2_RQScheduleSchema as RQScheduleSchema, type index$2_RecentError as RecentError, index$2_RecentErrorSchema as RecentErrorSchema, type index$2_RecentRequest as RecentRequest, index$2_RecentRequestSchema as RecentRequestSchema, type index$2_RecentUser as RecentUser, index$2_RecentUserSchema as RecentUserSchema, type index$2_RedisQueueConfig as RedisQueueConfig, index$2_RedisQueueConfigSchema as RedisQueueConfigSchema, type index$2_RequestVolumeChart as RequestVolumeChart, index$2_RequestVolumeChartSchema as RequestVolumeChartSchema, type index$2_RequestVolumeDataPoint as RequestVolumeDataPoint, index$2_RequestVolumeDataPointSchema as RequestVolumeDataPointSchema, type index$2_ResponseTimeChart as ResponseTimeChart, index$2_ResponseTimeChartSchema as ResponseTimeChartSchema, type index$2_ResponseTimeDataPoint as ResponseTimeDataPoint, index$2_ResponseTimeDataPointSchema as ResponseTimeDataPointSchema, type index$2_RunDemoRequestRequest as RunDemoRequestRequest, index$2_RunDemoRequestRequestSchema as RunDemoRequestRequestSchema, type index$2_ScheduleActionResponse as ScheduleActionResponse, index$2_ScheduleActionResponseSchema as ScheduleActionResponseSchema, type index$2_ScheduleCreateRequest as ScheduleCreateRequest, index$2_ScheduleCreateRequestSchema as ScheduleCreateRequestSchema, type index$2_ScheduleInfo as ScheduleInfo, index$2_ScheduleInfoSchema as ScheduleInfoSchema, type index$2_ScheduledJob as ScheduledJob, index$2_ScheduledJobSchema as ScheduledJobSchema, 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_ServerLifecycleChart as ServerLifecycleChart, index$2_ServerLifecycleChartSchema as ServerLifecycleChartSchema, type index$2_ServerLifecycleEvent as ServerLifecycleEvent, index$2_ServerLifecycleEventSchema as ServerLifecycleEventSchema, type index$2_ServerUptimeChart as ServerUptimeChart, index$2_ServerUptimeChartSchema as ServerUptimeChartSchema, type index$2_ServerUptimeDataPoint as ServerUptimeDataPoint, index$2_ServerUptimeDataPointSchema as ServerUptimeDataPointSchema, type index$2_ServiceActivityChart as ServiceActivityChart, index$2_ServiceActivityChartSchema as ServiceActivityChartSchema, type index$2_ServiceActivityDataPoint as ServiceActivityDataPoint, index$2_ServiceActivityDataPointSchema as ServiceActivityDataPointSchema, type index$2_ServiceDetail as ServiceDetail, index$2_ServiceDetailSchema as ServiceDetailSchema, type index$2_ServiceMethods as ServiceMethods, index$2_ServiceMethodsSchema as ServiceMethodsSchema, type index$2_ServiceStats as ServiceStats, index$2_ServiceStatsSchema as ServiceStatsSchema, type index$2_ServiceSummary as ServiceSummary, index$2_ServiceSummarySchema as ServiceSummarySchema, type index$2_SpectacularConfig as SpectacularConfig, index$2_SpectacularConfigSchema as SpectacularConfigSchema, type index$2_StatCard as StatCard, index$2_StatCardSchema as StatCardSchema, type index$2_StressTestRequestRequest as StressTestRequestRequest, index$2_StressTestRequestRequestSchema as StressTestRequestRequestSchema, 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_TelegramConfig as TelegramConfig, index$2_TelegramConfigSchema as TelegramConfigSchema, type index$2_TestEmailRequest as TestEmailRequest, index$2_TestEmailRequestSchema as TestEmailRequestSchema, type index$2_TestScenario as TestScenario, index$2_TestScenarioSchema as TestScenarioSchema, type index$2_TestingActionResponse as TestingActionResponse, index$2_TestingActionResponseSchema as TestingActionResponseSchema, 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_TimelineItem as TimelineItem, index$2_TimelineItemSchema as TimelineItemSchema, type index$2_TimelineResponse as TimelineResponse, index$2_TimelineResponseSchema as TimelineResponseSchema, 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_Worker as Worker, index$2_WorkerSchema as WorkerSchema, type index$2_WorkerStats as WorkerStats, index$2_WorkerStatsSchema as WorkerStatsSchema };
|
|
15350
15455
|
}
|
|
15351
15456
|
|
|
15352
15457
|
/**
|
|
@@ -15554,7 +15659,7 @@ declare function getCentrifugoMonitorChannelsRetrieve(params?: {
|
|
|
15554
15659
|
* @method GET
|
|
15555
15660
|
* @path /cfg/centrifugo/monitor/health/
|
|
15556
15661
|
*/
|
|
15557
|
-
declare function getCentrifugoMonitorHealthRetrieve(client?: any): Promise<
|
|
15662
|
+
declare function getCentrifugoMonitorHealthRetrieve(client?: any): Promise<CentrifugoHealthCheck>;
|
|
15558
15663
|
/**
|
|
15559
15664
|
* Get overview statistics
|
|
15560
15665
|
*
|
|
@@ -16031,7 +16136,7 @@ declare function getGrpcTestLogsList(params?: {
|
|
|
16031
16136
|
* @method GET
|
|
16032
16137
|
* @path /cfg/health/drf/
|
|
16033
16138
|
*/
|
|
16034
|
-
declare function getHealthDrfRetrieve(client?: any): Promise<
|
|
16139
|
+
declare function getHealthDrfRetrieve(client?: any): Promise<DRFHealthCheck>;
|
|
16035
16140
|
/**
|
|
16036
16141
|
* API operation
|
|
16037
16142
|
*
|
|
@@ -16786,7 +16891,7 @@ declare function getRqMonitorConfigRetrieve(client?: any): Promise<RQConfig>;
|
|
|
16786
16891
|
* @method GET
|
|
16787
16892
|
* @path /cfg/rq/monitor/health/
|
|
16788
16893
|
*/
|
|
16789
|
-
declare function getRqMonitorHealthRetrieve(client?: any): Promise<
|
|
16894
|
+
declare function getRqMonitorHealthRetrieve(client?: any): Promise<RQHealthCheck>;
|
|
16790
16895
|
/**
|
|
16791
16896
|
* Prometheus metrics
|
|
16792
16897
|
*
|
|
@@ -17597,7 +17702,7 @@ declare function useCentrifugoMonitorChannelsRetrieve(params?: {
|
|
|
17597
17702
|
* @method GET
|
|
17598
17703
|
* @path /cfg/centrifugo/monitor/health/
|
|
17599
17704
|
*/
|
|
17600
|
-
declare function useCentrifugoMonitorHealthRetrieve(client?: API): ReturnType<typeof useSWR<
|
|
17705
|
+
declare function useCentrifugoMonitorHealthRetrieve(client?: API): ReturnType<typeof useSWR<CentrifugoHealthCheck>>;
|
|
17601
17706
|
/**
|
|
17602
17707
|
* Get overview statistics
|
|
17603
17708
|
*
|
|
@@ -18098,7 +18203,7 @@ declare function useRqMonitorConfigRetrieve(client?: API): ReturnType<typeof use
|
|
|
18098
18203
|
* @method GET
|
|
18099
18204
|
* @path /cfg/rq/monitor/health/
|
|
18100
18205
|
*/
|
|
18101
|
-
declare function useRqMonitorHealthRetrieve(client?: API): ReturnType<typeof useSWR<
|
|
18206
|
+
declare function useRqMonitorHealthRetrieve(client?: API): ReturnType<typeof useSWR<RQHealthCheck>>;
|
|
18102
18207
|
/**
|
|
18103
18208
|
* Prometheus metrics
|
|
18104
18209
|
*
|
|
@@ -18952,7 +19057,7 @@ declare function useGrpcTestLogsList(params?: {
|
|
|
18952
19057
|
* @method GET
|
|
18953
19058
|
* @path /cfg/health/drf/
|
|
18954
19059
|
*/
|
|
18955
|
-
declare function useHealthDrfRetrieve(client?: API): ReturnType<typeof useSWR<
|
|
19060
|
+
declare function useHealthDrfRetrieve(client?: API): ReturnType<typeof useSWR<DRFHealthCheck>>;
|
|
18956
19061
|
/**
|
|
18957
19062
|
* API operation
|
|
18958
19063
|
*
|