@djangocfg/api 1.2.3 → 1.2.4
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 +2658 -1264
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2332 -496
- package/dist/index.d.ts +2332 -496
- package/dist/index.mjs +2633 -1259
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/cfg/generated/_utils/fetchers/cfg__ipc__ipcrpc_monitoring.ts +179 -0
- package/src/cfg/generated/_utils/fetchers/cfg__ipc__ipcrpc_testing.ts +151 -0
- package/src/cfg/generated/_utils/fetchers/index.ts +2 -0
- package/src/cfg/generated/_utils/hooks/cfg__ipc__ipcrpc_monitoring.ts +166 -0
- package/src/cfg/generated/_utils/hooks/cfg__ipc__ipcrpc_testing.ts +162 -0
- package/src/cfg/generated/_utils/hooks/index.ts +2 -0
- package/src/cfg/generated/_utils/schemas/LoadTestRequestRequest.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/LoadTestResponse.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/LoadTestStatus.schema.ts +27 -0
- package/src/cfg/generated/_utils/schemas/MethodStat.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/MethodStats.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/NotificationStats.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/OverviewStats.schema.ts +29 -0
- package/src/cfg/generated/_utils/schemas/RPCRequest.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/RecentRequests.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/TestRPCRequestRequest.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/TestRPCResponse.schema.ts +23 -0
- package/src/cfg/generated/_utils/schemas/index.ts +11 -0
- package/src/cfg/generated/cfg__ipc__ipcrpc_monitoring/client.ts +136 -0
- package/src/cfg/generated/cfg__ipc__ipcrpc_monitoring/index.ts +2 -0
- package/src/cfg/generated/cfg__ipc__ipcrpc_monitoring/models.ts +144 -0
- package/src/cfg/generated/cfg__ipc__ipcrpc_testing/client.ts +96 -0
- package/src/cfg/generated/cfg__ipc__ipcrpc_testing/index.ts +2 -0
- package/src/cfg/generated/cfg__ipc__ipcrpc_testing/models.ts +88 -0
- package/src/cfg/generated/client.ts +6 -0
- package/src/cfg/generated/index.ts +10 -0
- package/src/cfg/generated/schema.ts +1352 -587
package/dist/index.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ interface TokenRefresh$1 {
|
|
|
20
20
|
refresh: string;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
declare namespace models$
|
|
23
|
+
declare namespace models$j {
|
|
24
24
|
export type { TokenRefresh$1 as TokenRefresh, TokenRefreshRequest$1 as TokenRefreshRequest };
|
|
25
25
|
}
|
|
26
26
|
|
|
@@ -64,7 +64,7 @@ interface BulkEmailResponse$2 {
|
|
|
64
64
|
error?: string;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
declare namespace models$
|
|
67
|
+
declare namespace models$i {
|
|
68
68
|
export type { BulkEmailRequest$1 as BulkEmailRequest, BulkEmailResponse$2 as BulkEmailResponse };
|
|
69
69
|
}
|
|
70
70
|
|
|
@@ -707,7 +707,7 @@ interface ErrorResponse$2 {
|
|
|
707
707
|
message: string;
|
|
708
708
|
}
|
|
709
709
|
|
|
710
|
-
declare namespace models$
|
|
710
|
+
declare namespace models$h {
|
|
711
711
|
export type { ErrorResponse$2 as ErrorResponse, NewsletterCampaign$2 as NewsletterCampaign, NewsletterCampaignRequest$1 as NewsletterCampaignRequest, PaginatedNewsletterCampaignList$1 as PaginatedNewsletterCampaignList, SendCampaignRequest$1 as SendCampaignRequest, SendCampaignResponse$1 as SendCampaignResponse };
|
|
712
712
|
}
|
|
713
713
|
|
|
@@ -754,6 +754,358 @@ declare class CfgCampaigns {
|
|
|
754
754
|
newsletterCampaignsSendCreate(data: SendCampaignRequest$1): Promise<SendCampaignResponse$1>;
|
|
755
755
|
}
|
|
756
756
|
|
|
757
|
+
/**
|
|
758
|
+
* Serializer for health check response.
|
|
759
|
+
*
|
|
760
|
+
* Response model (includes read-only fields).
|
|
761
|
+
*/
|
|
762
|
+
interface HealthCheck$2 {
|
|
763
|
+
/** Overall health status: healthy, degraded, or unhealthy */
|
|
764
|
+
status: string;
|
|
765
|
+
/** Timestamp of the health check */
|
|
766
|
+
timestamp: string;
|
|
767
|
+
/** Service name */
|
|
768
|
+
service: string;
|
|
769
|
+
/** Django-CFG version */
|
|
770
|
+
version: string;
|
|
771
|
+
/** Detailed health checks for databases, cache, and system */
|
|
772
|
+
checks: Record<string, any>;
|
|
773
|
+
/** Environment information */
|
|
774
|
+
environment: Record<string, any>;
|
|
775
|
+
}
|
|
776
|
+
/**
|
|
777
|
+
* Serializer for method statistics response.
|
|
778
|
+
*
|
|
779
|
+
* Response model (includes read-only fields).
|
|
780
|
+
*/
|
|
781
|
+
interface MethodStats$1 {
|
|
782
|
+
/** List of method statistics */
|
|
783
|
+
methods: Array<MethodStat$1>;
|
|
784
|
+
/** Total number of methods */
|
|
785
|
+
count: number;
|
|
786
|
+
/** Total calls across all methods */
|
|
787
|
+
total_calls: number;
|
|
788
|
+
}
|
|
789
|
+
/**
|
|
790
|
+
* Serializer for notification statistics.
|
|
791
|
+
*
|
|
792
|
+
* Response model (includes read-only fields).
|
|
793
|
+
*/
|
|
794
|
+
interface NotificationStats$1 {
|
|
795
|
+
/** Total notifications sent */
|
|
796
|
+
total_sent: number;
|
|
797
|
+
/** Delivery success rate percentage */
|
|
798
|
+
delivery_rate: number;
|
|
799
|
+
/** Breakdown by notification type */
|
|
800
|
+
by_type?: Record<string, any>;
|
|
801
|
+
/** Recent notifications */
|
|
802
|
+
recent?: Array<string>;
|
|
803
|
+
/** ISO timestamp of last notification */
|
|
804
|
+
last_sent?: string | null;
|
|
805
|
+
/** ISO timestamp of the stats */
|
|
806
|
+
timestamp?: string;
|
|
807
|
+
/** Error message if any */
|
|
808
|
+
error?: string | null;
|
|
809
|
+
}
|
|
810
|
+
/**
|
|
811
|
+
* Serializer for overview statistics.
|
|
812
|
+
*
|
|
813
|
+
* Response model (includes read-only fields).
|
|
814
|
+
*/
|
|
815
|
+
interface OverviewStats$1 {
|
|
816
|
+
/** Whether Redis is connected */
|
|
817
|
+
redis_connected?: boolean;
|
|
818
|
+
/** Total requests processed today */
|
|
819
|
+
total_requests_today: number;
|
|
820
|
+
/** Total requests in the last hour */
|
|
821
|
+
total_requests_hour?: number;
|
|
822
|
+
/** List of active RPC methods */
|
|
823
|
+
active_methods: Array<string>;
|
|
824
|
+
/** Most frequently called method */
|
|
825
|
+
top_method?: string | null;
|
|
826
|
+
/** Count of requests per method */
|
|
827
|
+
method_counts?: Record<string, any>;
|
|
828
|
+
/** Average response time in milliseconds */
|
|
829
|
+
avg_response_time_ms: number;
|
|
830
|
+
/** Success rate percentage */
|
|
831
|
+
success_rate: number;
|
|
832
|
+
/** Error rate percentage */
|
|
833
|
+
error_rate?: number;
|
|
834
|
+
/** ISO timestamp of the stats */
|
|
835
|
+
timestamp?: string;
|
|
836
|
+
/** Error message if any */
|
|
837
|
+
error?: string | null;
|
|
838
|
+
}
|
|
839
|
+
/**
|
|
840
|
+
* Serializer for recent requests response.
|
|
841
|
+
*
|
|
842
|
+
* Response model (includes read-only fields).
|
|
843
|
+
*/
|
|
844
|
+
interface RecentRequests$1 {
|
|
845
|
+
/** List of recent RPC requests */
|
|
846
|
+
requests: Array<RPCRequest$1>;
|
|
847
|
+
/** Number of requests returned */
|
|
848
|
+
count: number;
|
|
849
|
+
/** Total number of requests available */
|
|
850
|
+
total_available: number;
|
|
851
|
+
}
|
|
852
|
+
/**
|
|
853
|
+
* Serializer for individual method statistics.
|
|
854
|
+
*
|
|
855
|
+
* Response model (includes read-only fields).
|
|
856
|
+
*/
|
|
857
|
+
interface MethodStat$1 {
|
|
858
|
+
/** RPC method name */
|
|
859
|
+
method: string;
|
|
860
|
+
/** Number of calls */
|
|
861
|
+
count: number;
|
|
862
|
+
/** Percentage of total calls */
|
|
863
|
+
percentage: number;
|
|
864
|
+
/** Average execution time in milliseconds */
|
|
865
|
+
avg_time_ms?: number;
|
|
866
|
+
/** Average execution time (alternative field) */
|
|
867
|
+
avg_time?: number;
|
|
868
|
+
/** Success rate percentage */
|
|
869
|
+
success_rate?: number;
|
|
870
|
+
/** ISO timestamp of last call */
|
|
871
|
+
last_called?: string | null;
|
|
872
|
+
}
|
|
873
|
+
/**
|
|
874
|
+
* Serializer for individual RPC request.
|
|
875
|
+
*
|
|
876
|
+
* Request model (no read-only fields).
|
|
877
|
+
*/
|
|
878
|
+
interface RPCRequest$1 {
|
|
879
|
+
/** Stream entry ID */
|
|
880
|
+
id?: string;
|
|
881
|
+
/** Unique request ID */
|
|
882
|
+
request_id?: string;
|
|
883
|
+
/** ISO timestamp of the request */
|
|
884
|
+
timestamp: string;
|
|
885
|
+
/** RPC method name */
|
|
886
|
+
method: string | null;
|
|
887
|
+
/** Request parameters */
|
|
888
|
+
params?: Record<string, any> | null;
|
|
889
|
+
/** Correlation ID for tracking */
|
|
890
|
+
correlation_id?: string | null;
|
|
891
|
+
/** Source of the request */
|
|
892
|
+
source?: string | null;
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
declare namespace models$g {
|
|
896
|
+
export type { HealthCheck$2 as HealthCheck, MethodStat$1 as MethodStat, MethodStats$1 as MethodStats, NotificationStats$1 as NotificationStats, OverviewStats$1 as OverviewStats, RPCRequest$1 as RPCRequest, RecentRequests$1 as RecentRequests };
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
/**
|
|
900
|
+
* API endpoints for IPC/RPC Monitoring.
|
|
901
|
+
*/
|
|
902
|
+
declare class CfgIpcrpcMonitoring {
|
|
903
|
+
private client;
|
|
904
|
+
constructor(client: any);
|
|
905
|
+
/**
|
|
906
|
+
* Get RPC health status
|
|
907
|
+
*
|
|
908
|
+
* Returns the current health status of the RPC monitoring system.
|
|
909
|
+
*/
|
|
910
|
+
ipcAdminApiMonitorHealthRetrieve(): Promise<HealthCheck$2>;
|
|
911
|
+
/**
|
|
912
|
+
* Get method statistics
|
|
913
|
+
*
|
|
914
|
+
* Returns statistics grouped by RPC method.
|
|
915
|
+
*/
|
|
916
|
+
ipcAdminApiMonitorMethodsRetrieve(): Promise<MethodStats$1>;
|
|
917
|
+
/**
|
|
918
|
+
* Get notification statistics
|
|
919
|
+
*
|
|
920
|
+
* Returns statistics about RPC notifications.
|
|
921
|
+
*/
|
|
922
|
+
ipcAdminApiMonitorNotificationsRetrieve(): Promise<NotificationStats$1>;
|
|
923
|
+
/**
|
|
924
|
+
* Get overview statistics
|
|
925
|
+
*
|
|
926
|
+
* Returns overview statistics for RPC monitoring.
|
|
927
|
+
*/
|
|
928
|
+
ipcAdminApiMonitorOverviewRetrieve(): Promise<OverviewStats$1>;
|
|
929
|
+
ipcAdminApiMonitorRequestsRetrieve(count?: number): Promise<RecentRequests$1>;
|
|
930
|
+
ipcAdminApiMonitorRequestsRetrieve(params?: {
|
|
931
|
+
count?: number;
|
|
932
|
+
}): Promise<RecentRequests$1>;
|
|
933
|
+
/**
|
|
934
|
+
* Get RPC health status
|
|
935
|
+
*
|
|
936
|
+
* Returns the current health status of the RPC monitoring system.
|
|
937
|
+
*/
|
|
938
|
+
ipcMonitorHealthRetrieve(): Promise<HealthCheck$2>;
|
|
939
|
+
/**
|
|
940
|
+
* Get method statistics
|
|
941
|
+
*
|
|
942
|
+
* Returns statistics grouped by RPC method.
|
|
943
|
+
*/
|
|
944
|
+
ipcMonitorMethodsRetrieve(): Promise<MethodStats$1>;
|
|
945
|
+
/**
|
|
946
|
+
* Get notification statistics
|
|
947
|
+
*
|
|
948
|
+
* Returns statistics about RPC notifications.
|
|
949
|
+
*/
|
|
950
|
+
ipcMonitorNotificationsRetrieve(): Promise<NotificationStats$1>;
|
|
951
|
+
/**
|
|
952
|
+
* Get overview statistics
|
|
953
|
+
*
|
|
954
|
+
* Returns overview statistics for RPC monitoring.
|
|
955
|
+
*/
|
|
956
|
+
ipcMonitorOverviewRetrieve(): Promise<OverviewStats$1>;
|
|
957
|
+
ipcMonitorRequestsRetrieve(count?: number): Promise<RecentRequests$1>;
|
|
958
|
+
ipcMonitorRequestsRetrieve(params?: {
|
|
959
|
+
count?: number;
|
|
960
|
+
}): Promise<RecentRequests$1>;
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
/**
|
|
964
|
+
* Serializer for load test request input.
|
|
965
|
+
*
|
|
966
|
+
* Request model (no read-only fields).
|
|
967
|
+
*/
|
|
968
|
+
interface LoadTestRequestRequest$1 {
|
|
969
|
+
/** RPC method to test */
|
|
970
|
+
method: string;
|
|
971
|
+
/** Total number of requests to send */
|
|
972
|
+
total_requests: number;
|
|
973
|
+
/** Number of concurrent requests */
|
|
974
|
+
concurrency: number;
|
|
975
|
+
/** Parameters template for RPC calls */
|
|
976
|
+
params?: string;
|
|
977
|
+
}
|
|
978
|
+
/**
|
|
979
|
+
* Serializer for load test response.
|
|
980
|
+
*
|
|
981
|
+
* Response model (includes read-only fields).
|
|
982
|
+
*/
|
|
983
|
+
interface LoadTestResponse$1 {
|
|
984
|
+
/** Unique test ID */
|
|
985
|
+
test_id: string;
|
|
986
|
+
/** Whether test was started successfully */
|
|
987
|
+
started: boolean;
|
|
988
|
+
/** Status message */
|
|
989
|
+
message: string;
|
|
990
|
+
}
|
|
991
|
+
/**
|
|
992
|
+
* Serializer for load test status.
|
|
993
|
+
*
|
|
994
|
+
* Response model (includes read-only fields).
|
|
995
|
+
*/
|
|
996
|
+
interface LoadTestStatus$1 {
|
|
997
|
+
/** Unique test ID */
|
|
998
|
+
test_id: string | null;
|
|
999
|
+
/** Whether test is currently running */
|
|
1000
|
+
running: boolean;
|
|
1001
|
+
/** Number of completed requests */
|
|
1002
|
+
progress: number;
|
|
1003
|
+
/** Total number of requests */
|
|
1004
|
+
total: number;
|
|
1005
|
+
/** Number of successful requests */
|
|
1006
|
+
success_count: number;
|
|
1007
|
+
/** Number of failed requests */
|
|
1008
|
+
failed_count: number;
|
|
1009
|
+
/** Average duration in milliseconds */
|
|
1010
|
+
avg_duration_ms: number;
|
|
1011
|
+
/** Total elapsed time in seconds */
|
|
1012
|
+
elapsed_time: number;
|
|
1013
|
+
/** Requests per second */
|
|
1014
|
+
rps: number;
|
|
1015
|
+
}
|
|
1016
|
+
/**
|
|
1017
|
+
* Serializer for test RPC request input.
|
|
1018
|
+
*
|
|
1019
|
+
* Request model (no read-only fields).
|
|
1020
|
+
*/
|
|
1021
|
+
interface TestRPCRequestRequest$1 {
|
|
1022
|
+
/** RPC method to call */
|
|
1023
|
+
method: string;
|
|
1024
|
+
/** Parameters for the RPC call */
|
|
1025
|
+
params: string;
|
|
1026
|
+
/** Timeout in seconds */
|
|
1027
|
+
timeout?: number;
|
|
1028
|
+
}
|
|
1029
|
+
/**
|
|
1030
|
+
* Serializer for test RPC response.
|
|
1031
|
+
*
|
|
1032
|
+
* Response model (includes read-only fields).
|
|
1033
|
+
*/
|
|
1034
|
+
interface TestRPCResponse$1 {
|
|
1035
|
+
/** Whether the call was successful */
|
|
1036
|
+
success: boolean;
|
|
1037
|
+
/** Call duration in milliseconds */
|
|
1038
|
+
duration_ms: number;
|
|
1039
|
+
/** Response data from RPC call */
|
|
1040
|
+
response?: string | null;
|
|
1041
|
+
/** Error message if failed */
|
|
1042
|
+
error?: string | null;
|
|
1043
|
+
/** Correlation ID for tracking */
|
|
1044
|
+
correlation_id: string;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
declare namespace models$f {
|
|
1048
|
+
export type { LoadTestRequestRequest$1 as LoadTestRequestRequest, LoadTestResponse$1 as LoadTestResponse, LoadTestStatus$1 as LoadTestStatus, TestRPCRequestRequest$1 as TestRPCRequestRequest, TestRPCResponse$1 as TestRPCResponse };
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
/**
|
|
1052
|
+
* API endpoints for IPC/RPC Testing.
|
|
1053
|
+
*/
|
|
1054
|
+
declare class CfgIpcrpcTesting {
|
|
1055
|
+
private client;
|
|
1056
|
+
constructor(client: any);
|
|
1057
|
+
/**
|
|
1058
|
+
* Start load test
|
|
1059
|
+
*
|
|
1060
|
+
* Start a load test by sending multiple concurrent RPC requests.
|
|
1061
|
+
*/
|
|
1062
|
+
ipcAdminApiTestLoadStartCreate(data: LoadTestRequestRequest$1): Promise<LoadTestResponse$1>;
|
|
1063
|
+
/**
|
|
1064
|
+
* Get load test status
|
|
1065
|
+
*
|
|
1066
|
+
* Get current status of running or completed load test.
|
|
1067
|
+
*/
|
|
1068
|
+
ipcAdminApiTestLoadStatusRetrieve(): Promise<LoadTestStatus$1>;
|
|
1069
|
+
/**
|
|
1070
|
+
* Stop load test
|
|
1071
|
+
*
|
|
1072
|
+
* Stop currently running load test.
|
|
1073
|
+
*/
|
|
1074
|
+
ipcAdminApiTestLoadStopCreate(data: TestRPCRequestRequest$1): Promise<any>;
|
|
1075
|
+
/**
|
|
1076
|
+
* Send test RPC request
|
|
1077
|
+
*
|
|
1078
|
+
* Send a single RPC request for testing purposes and measure response
|
|
1079
|
+
* time.
|
|
1080
|
+
*/
|
|
1081
|
+
ipcAdminApiTestSendCreate(data: TestRPCRequestRequest$1): Promise<TestRPCResponse$1>;
|
|
1082
|
+
/**
|
|
1083
|
+
* Start load test
|
|
1084
|
+
*
|
|
1085
|
+
* Start a load test by sending multiple concurrent RPC requests.
|
|
1086
|
+
*/
|
|
1087
|
+
ipcTestLoadStartCreate(data: LoadTestRequestRequest$1): Promise<LoadTestResponse$1>;
|
|
1088
|
+
/**
|
|
1089
|
+
* Get load test status
|
|
1090
|
+
*
|
|
1091
|
+
* Get current status of running or completed load test.
|
|
1092
|
+
*/
|
|
1093
|
+
ipcTestLoadStatusRetrieve(): Promise<LoadTestStatus$1>;
|
|
1094
|
+
/**
|
|
1095
|
+
* Stop load test
|
|
1096
|
+
*
|
|
1097
|
+
* Stop currently running load test.
|
|
1098
|
+
*/
|
|
1099
|
+
ipcTestLoadStopCreate(data: TestRPCRequestRequest$1): Promise<any>;
|
|
1100
|
+
/**
|
|
1101
|
+
* Send test RPC request
|
|
1102
|
+
*
|
|
1103
|
+
* Send a single RPC request for testing purposes and measure response
|
|
1104
|
+
* time.
|
|
1105
|
+
*/
|
|
1106
|
+
ipcTestSendCreate(data: TestRPCRequestRequest$1): Promise<TestRPCResponse$1>;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
757
1109
|
/**
|
|
758
1110
|
* Serializer for lead form submission from frontend.
|
|
759
1111
|
*
|
|
@@ -3902,6 +4254,8 @@ declare class APIClient {
|
|
|
3902
4254
|
cfg_auth: CfgAuth;
|
|
3903
4255
|
cfg_bulk_email: CfgBulkEmail;
|
|
3904
4256
|
cfg_campaigns: CfgCampaigns;
|
|
4257
|
+
cfg_ipcrpc_monitoring: CfgIpcrpcMonitoring;
|
|
4258
|
+
cfg_ipcrpc_testing: CfgIpcrpcTesting;
|
|
3905
4259
|
cfg_lead_submission: CfgLeadSubmission;
|
|
3906
4260
|
cfg_logs: CfgLogs;
|
|
3907
4261
|
cfg_newsletters: CfgNewsletters;
|
|
@@ -6109,6 +6463,99 @@ declare const OPENAPI_SCHEMA: {
|
|
|
6109
6463
|
required: string[];
|
|
6110
6464
|
type: string;
|
|
6111
6465
|
};
|
|
6466
|
+
LoadTestRequestRequest: {
|
|
6467
|
+
description: string;
|
|
6468
|
+
properties: {
|
|
6469
|
+
concurrency: {
|
|
6470
|
+
description: string;
|
|
6471
|
+
maximum: number;
|
|
6472
|
+
minimum: number;
|
|
6473
|
+
type: string;
|
|
6474
|
+
};
|
|
6475
|
+
method: {
|
|
6476
|
+
description: string;
|
|
6477
|
+
minLength: number;
|
|
6478
|
+
type: string;
|
|
6479
|
+
};
|
|
6480
|
+
params: {
|
|
6481
|
+
description: string;
|
|
6482
|
+
};
|
|
6483
|
+
total_requests: {
|
|
6484
|
+
description: string;
|
|
6485
|
+
maximum: number;
|
|
6486
|
+
minimum: number;
|
|
6487
|
+
type: string;
|
|
6488
|
+
};
|
|
6489
|
+
};
|
|
6490
|
+
required: string[];
|
|
6491
|
+
type: string;
|
|
6492
|
+
};
|
|
6493
|
+
LoadTestResponse: {
|
|
6494
|
+
description: string;
|
|
6495
|
+
properties: {
|
|
6496
|
+
message: {
|
|
6497
|
+
description: string;
|
|
6498
|
+
type: string;
|
|
6499
|
+
};
|
|
6500
|
+
started: {
|
|
6501
|
+
description: string;
|
|
6502
|
+
type: string;
|
|
6503
|
+
};
|
|
6504
|
+
test_id: {
|
|
6505
|
+
description: string;
|
|
6506
|
+
type: string;
|
|
6507
|
+
};
|
|
6508
|
+
};
|
|
6509
|
+
required: string[];
|
|
6510
|
+
type: string;
|
|
6511
|
+
};
|
|
6512
|
+
LoadTestStatus: {
|
|
6513
|
+
description: string;
|
|
6514
|
+
properties: {
|
|
6515
|
+
avg_duration_ms: {
|
|
6516
|
+
description: string;
|
|
6517
|
+
format: string;
|
|
6518
|
+
type: string;
|
|
6519
|
+
};
|
|
6520
|
+
elapsed_time: {
|
|
6521
|
+
description: string;
|
|
6522
|
+
format: string;
|
|
6523
|
+
type: string;
|
|
6524
|
+
};
|
|
6525
|
+
failed_count: {
|
|
6526
|
+
description: string;
|
|
6527
|
+
type: string;
|
|
6528
|
+
};
|
|
6529
|
+
progress: {
|
|
6530
|
+
description: string;
|
|
6531
|
+
type: string;
|
|
6532
|
+
};
|
|
6533
|
+
rps: {
|
|
6534
|
+
description: string;
|
|
6535
|
+
format: string;
|
|
6536
|
+
type: string;
|
|
6537
|
+
};
|
|
6538
|
+
running: {
|
|
6539
|
+
description: string;
|
|
6540
|
+
type: string;
|
|
6541
|
+
};
|
|
6542
|
+
success_count: {
|
|
6543
|
+
description: string;
|
|
6544
|
+
type: string;
|
|
6545
|
+
};
|
|
6546
|
+
test_id: {
|
|
6547
|
+
description: string;
|
|
6548
|
+
nullable: boolean;
|
|
6549
|
+
type: string;
|
|
6550
|
+
};
|
|
6551
|
+
total: {
|
|
6552
|
+
description: string;
|
|
6553
|
+
type: string;
|
|
6554
|
+
};
|
|
6555
|
+
};
|
|
6556
|
+
required: string[];
|
|
6557
|
+
type: string;
|
|
6558
|
+
};
|
|
6112
6559
|
Message: {
|
|
6113
6560
|
properties: {
|
|
6114
6561
|
created_at: {
|
|
@@ -6173,32 +6620,95 @@ declare const OPENAPI_SCHEMA: {
|
|
|
6173
6620
|
required: string[];
|
|
6174
6621
|
type: string;
|
|
6175
6622
|
};
|
|
6176
|
-
|
|
6623
|
+
MethodStat: {
|
|
6177
6624
|
description: string;
|
|
6178
6625
|
properties: {
|
|
6179
|
-
|
|
6626
|
+
avg_time: {
|
|
6180
6627
|
description: string;
|
|
6181
|
-
|
|
6628
|
+
format: string;
|
|
6182
6629
|
type: string;
|
|
6183
6630
|
};
|
|
6184
|
-
|
|
6631
|
+
avg_time_ms: {
|
|
6632
|
+
description: string;
|
|
6185
6633
|
format: string;
|
|
6186
|
-
readOnly: boolean;
|
|
6187
6634
|
type: string;
|
|
6188
6635
|
};
|
|
6189
|
-
|
|
6636
|
+
count: {
|
|
6637
|
+
description: string;
|
|
6190
6638
|
type: string;
|
|
6191
6639
|
};
|
|
6192
|
-
|
|
6193
|
-
|
|
6640
|
+
last_called: {
|
|
6641
|
+
description: string;
|
|
6642
|
+
nullable: boolean;
|
|
6194
6643
|
type: string;
|
|
6195
6644
|
};
|
|
6196
|
-
|
|
6197
|
-
|
|
6645
|
+
method: {
|
|
6646
|
+
description: string;
|
|
6198
6647
|
type: string;
|
|
6199
6648
|
};
|
|
6200
|
-
|
|
6201
|
-
|
|
6649
|
+
percentage: {
|
|
6650
|
+
description: string;
|
|
6651
|
+
format: string;
|
|
6652
|
+
type: string;
|
|
6653
|
+
};
|
|
6654
|
+
success_rate: {
|
|
6655
|
+
default: number;
|
|
6656
|
+
description: string;
|
|
6657
|
+
format: string;
|
|
6658
|
+
type: string;
|
|
6659
|
+
};
|
|
6660
|
+
};
|
|
6661
|
+
required: string[];
|
|
6662
|
+
type: string;
|
|
6663
|
+
};
|
|
6664
|
+
MethodStats: {
|
|
6665
|
+
description: string;
|
|
6666
|
+
properties: {
|
|
6667
|
+
count: {
|
|
6668
|
+
description: string;
|
|
6669
|
+
type: string;
|
|
6670
|
+
};
|
|
6671
|
+
methods: {
|
|
6672
|
+
description: string;
|
|
6673
|
+
items: {
|
|
6674
|
+
$ref: string;
|
|
6675
|
+
};
|
|
6676
|
+
type: string;
|
|
6677
|
+
};
|
|
6678
|
+
total_calls: {
|
|
6679
|
+
description: string;
|
|
6680
|
+
type: string;
|
|
6681
|
+
};
|
|
6682
|
+
};
|
|
6683
|
+
required: string[];
|
|
6684
|
+
type: string;
|
|
6685
|
+
};
|
|
6686
|
+
Newsletter: {
|
|
6687
|
+
description: string;
|
|
6688
|
+
properties: {
|
|
6689
|
+
auto_subscribe: {
|
|
6690
|
+
description: string;
|
|
6691
|
+
title: string;
|
|
6692
|
+
type: string;
|
|
6693
|
+
};
|
|
6694
|
+
created_at: {
|
|
6695
|
+
format: string;
|
|
6696
|
+
readOnly: boolean;
|
|
6697
|
+
type: string;
|
|
6698
|
+
};
|
|
6699
|
+
description: {
|
|
6700
|
+
type: string;
|
|
6701
|
+
};
|
|
6702
|
+
id: {
|
|
6703
|
+
readOnly: boolean;
|
|
6704
|
+
type: string;
|
|
6705
|
+
};
|
|
6706
|
+
is_active: {
|
|
6707
|
+
title: string;
|
|
6708
|
+
type: string;
|
|
6709
|
+
};
|
|
6710
|
+
subscribers_count: {
|
|
6711
|
+
readOnly: boolean;
|
|
6202
6712
|
type: string;
|
|
6203
6713
|
};
|
|
6204
6714
|
title: {
|
|
@@ -6369,6 +6879,46 @@ declare const OPENAPI_SCHEMA: {
|
|
|
6369
6879
|
required: string[];
|
|
6370
6880
|
type: string;
|
|
6371
6881
|
};
|
|
6882
|
+
NotificationStats: {
|
|
6883
|
+
description: string;
|
|
6884
|
+
properties: {
|
|
6885
|
+
by_type: {
|
|
6886
|
+
additionalProperties: {};
|
|
6887
|
+
description: string;
|
|
6888
|
+
type: string;
|
|
6889
|
+
};
|
|
6890
|
+
delivery_rate: {
|
|
6891
|
+
description: string;
|
|
6892
|
+
format: string;
|
|
6893
|
+
type: string;
|
|
6894
|
+
};
|
|
6895
|
+
error: {
|
|
6896
|
+
description: string;
|
|
6897
|
+
nullable: boolean;
|
|
6898
|
+
type: string;
|
|
6899
|
+
};
|
|
6900
|
+
last_sent: {
|
|
6901
|
+
description: string;
|
|
6902
|
+
nullable: boolean;
|
|
6903
|
+
type: string;
|
|
6904
|
+
};
|
|
6905
|
+
recent: {
|
|
6906
|
+
description: string;
|
|
6907
|
+
items: {};
|
|
6908
|
+
type: string;
|
|
6909
|
+
};
|
|
6910
|
+
timestamp: {
|
|
6911
|
+
description: string;
|
|
6912
|
+
type: string;
|
|
6913
|
+
};
|
|
6914
|
+
total_sent: {
|
|
6915
|
+
description: string;
|
|
6916
|
+
type: string;
|
|
6917
|
+
};
|
|
6918
|
+
};
|
|
6919
|
+
required: string[];
|
|
6920
|
+
type: string;
|
|
6921
|
+
};
|
|
6372
6922
|
OTPErrorResponse: {
|
|
6373
6923
|
description: string;
|
|
6374
6924
|
properties: {
|
|
@@ -6463,6 +7013,68 @@ declare const OPENAPI_SCHEMA: {
|
|
|
6463
7013
|
required: string[];
|
|
6464
7014
|
type: string;
|
|
6465
7015
|
};
|
|
7016
|
+
OverviewStats: {
|
|
7017
|
+
description: string;
|
|
7018
|
+
properties: {
|
|
7019
|
+
active_methods: {
|
|
7020
|
+
description: string;
|
|
7021
|
+
items: {
|
|
7022
|
+
type: string;
|
|
7023
|
+
};
|
|
7024
|
+
type: string;
|
|
7025
|
+
};
|
|
7026
|
+
avg_response_time_ms: {
|
|
7027
|
+
description: string;
|
|
7028
|
+
format: string;
|
|
7029
|
+
type: string;
|
|
7030
|
+
};
|
|
7031
|
+
error: {
|
|
7032
|
+
description: string;
|
|
7033
|
+
nullable: boolean;
|
|
7034
|
+
type: string;
|
|
7035
|
+
};
|
|
7036
|
+
error_rate: {
|
|
7037
|
+
default: number;
|
|
7038
|
+
description: string;
|
|
7039
|
+
format: string;
|
|
7040
|
+
type: string;
|
|
7041
|
+
};
|
|
7042
|
+
method_counts: {
|
|
7043
|
+
additionalProperties: {};
|
|
7044
|
+
description: string;
|
|
7045
|
+
type: string;
|
|
7046
|
+
};
|
|
7047
|
+
redis_connected: {
|
|
7048
|
+
description: string;
|
|
7049
|
+
type: string;
|
|
7050
|
+
};
|
|
7051
|
+
success_rate: {
|
|
7052
|
+
description: string;
|
|
7053
|
+
format: string;
|
|
7054
|
+
type: string;
|
|
7055
|
+
};
|
|
7056
|
+
timestamp: {
|
|
7057
|
+
description: string;
|
|
7058
|
+
type: string;
|
|
7059
|
+
};
|
|
7060
|
+
top_method: {
|
|
7061
|
+
description: string;
|
|
7062
|
+
nullable: boolean;
|
|
7063
|
+
type: string;
|
|
7064
|
+
};
|
|
7065
|
+
total_requests_hour: {
|
|
7066
|
+
default: number;
|
|
7067
|
+
description: string;
|
|
7068
|
+
type: string;
|
|
7069
|
+
};
|
|
7070
|
+
total_requests_today: {
|
|
7071
|
+
description: string;
|
|
7072
|
+
type: string;
|
|
7073
|
+
};
|
|
7074
|
+
};
|
|
7075
|
+
required: string[];
|
|
7076
|
+
type: string;
|
|
7077
|
+
};
|
|
6466
7078
|
PaginatedArchiveItemChunkList: {
|
|
6467
7079
|
properties: {
|
|
6468
7080
|
count: {
|
|
@@ -8128,6 +8740,68 @@ declare const OPENAPI_SCHEMA: {
|
|
|
8128
8740
|
required: string[];
|
|
8129
8741
|
type: string;
|
|
8130
8742
|
};
|
|
8743
|
+
RPCRequest: {
|
|
8744
|
+
description: string;
|
|
8745
|
+
properties: {
|
|
8746
|
+
correlation_id: {
|
|
8747
|
+
description: string;
|
|
8748
|
+
nullable: boolean;
|
|
8749
|
+
type: string;
|
|
8750
|
+
};
|
|
8751
|
+
id: {
|
|
8752
|
+
description: string;
|
|
8753
|
+
type: string;
|
|
8754
|
+
};
|
|
8755
|
+
method: {
|
|
8756
|
+
description: string;
|
|
8757
|
+
nullable: boolean;
|
|
8758
|
+
type: string;
|
|
8759
|
+
};
|
|
8760
|
+
params: {
|
|
8761
|
+
additionalProperties: {};
|
|
8762
|
+
description: string;
|
|
8763
|
+
nullable: boolean;
|
|
8764
|
+
type: string;
|
|
8765
|
+
};
|
|
8766
|
+
request_id: {
|
|
8767
|
+
description: string;
|
|
8768
|
+
type: string;
|
|
8769
|
+
};
|
|
8770
|
+
source: {
|
|
8771
|
+
description: string;
|
|
8772
|
+
nullable: boolean;
|
|
8773
|
+
type: string;
|
|
8774
|
+
};
|
|
8775
|
+
timestamp: {
|
|
8776
|
+
description: string;
|
|
8777
|
+
type: string;
|
|
8778
|
+
};
|
|
8779
|
+
};
|
|
8780
|
+
required: string[];
|
|
8781
|
+
type: string;
|
|
8782
|
+
};
|
|
8783
|
+
RecentRequests: {
|
|
8784
|
+
description: string;
|
|
8785
|
+
properties: {
|
|
8786
|
+
count: {
|
|
8787
|
+
description: string;
|
|
8788
|
+
type: string;
|
|
8789
|
+
};
|
|
8790
|
+
requests: {
|
|
8791
|
+
description: string;
|
|
8792
|
+
items: {
|
|
8793
|
+
$ref: string;
|
|
8794
|
+
};
|
|
8795
|
+
type: string;
|
|
8796
|
+
};
|
|
8797
|
+
total_available: {
|
|
8798
|
+
description: string;
|
|
8799
|
+
type: string;
|
|
8800
|
+
};
|
|
8801
|
+
};
|
|
8802
|
+
required: string[];
|
|
8803
|
+
type: string;
|
|
8804
|
+
};
|
|
8131
8805
|
SendCampaignRequest: {
|
|
8132
8806
|
description: string;
|
|
8133
8807
|
properties: {
|
|
@@ -8296,6 +8970,57 @@ declare const OPENAPI_SCHEMA: {
|
|
|
8296
8970
|
required: string[];
|
|
8297
8971
|
type: string;
|
|
8298
8972
|
};
|
|
8973
|
+
TestRPCRequestRequest: {
|
|
8974
|
+
description: string;
|
|
8975
|
+
properties: {
|
|
8976
|
+
method: {
|
|
8977
|
+
description: string;
|
|
8978
|
+
minLength: number;
|
|
8979
|
+
type: string;
|
|
8980
|
+
};
|
|
8981
|
+
params: {
|
|
8982
|
+
description: string;
|
|
8983
|
+
};
|
|
8984
|
+
timeout: {
|
|
8985
|
+
default: number;
|
|
8986
|
+
description: string;
|
|
8987
|
+
maximum: number;
|
|
8988
|
+
minimum: number;
|
|
8989
|
+
type: string;
|
|
8990
|
+
};
|
|
8991
|
+
};
|
|
8992
|
+
required: string[];
|
|
8993
|
+
type: string;
|
|
8994
|
+
};
|
|
8995
|
+
TestRPCResponse: {
|
|
8996
|
+
description: string;
|
|
8997
|
+
properties: {
|
|
8998
|
+
correlation_id: {
|
|
8999
|
+
description: string;
|
|
9000
|
+
type: string;
|
|
9001
|
+
};
|
|
9002
|
+
duration_ms: {
|
|
9003
|
+
description: string;
|
|
9004
|
+
format: string;
|
|
9005
|
+
type: string;
|
|
9006
|
+
};
|
|
9007
|
+
error: {
|
|
9008
|
+
description: string;
|
|
9009
|
+
nullable: boolean;
|
|
9010
|
+
type: string;
|
|
9011
|
+
};
|
|
9012
|
+
response: {
|
|
9013
|
+
description: string;
|
|
9014
|
+
nullable: boolean;
|
|
9015
|
+
};
|
|
9016
|
+
success: {
|
|
9017
|
+
description: string;
|
|
9018
|
+
type: string;
|
|
9019
|
+
};
|
|
9020
|
+
};
|
|
9021
|
+
required: string[];
|
|
9022
|
+
type: string;
|
|
9023
|
+
};
|
|
8299
9024
|
Ticket: {
|
|
8300
9025
|
properties: {
|
|
8301
9026
|
created_at: {
|
|
@@ -8707,11 +9432,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
8707
9432
|
name: string;
|
|
8708
9433
|
type: string;
|
|
8709
9434
|
};
|
|
8710
|
-
jwtAuth: {
|
|
8711
|
-
bearerFormat: string;
|
|
8712
|
-
scheme: string;
|
|
8713
|
-
type: string;
|
|
8714
|
-
};
|
|
8715
9435
|
};
|
|
8716
9436
|
};
|
|
8717
9437
|
info: {
|
|
@@ -8783,11 +9503,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
8783
9503
|
description: string;
|
|
8784
9504
|
};
|
|
8785
9505
|
};
|
|
8786
|
-
security:
|
|
8787
|
-
jwtAuth: any[];
|
|
8788
|
-
} | {
|
|
8789
|
-
jwtAuth?: undefined;
|
|
8790
|
-
})[];
|
|
9506
|
+
security: {}[];
|
|
8791
9507
|
tags: string[];
|
|
8792
9508
|
"x-async-capable": boolean;
|
|
8793
9509
|
};
|
|
@@ -8848,11 +9564,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
8848
9564
|
description: string;
|
|
8849
9565
|
};
|
|
8850
9566
|
};
|
|
8851
|
-
security:
|
|
8852
|
-
jwtAuth: any[];
|
|
8853
|
-
} | {
|
|
8854
|
-
jwtAuth?: undefined;
|
|
8855
|
-
})[];
|
|
9567
|
+
security: {}[];
|
|
8856
9568
|
tags: string[];
|
|
8857
9569
|
"x-async-capable": boolean;
|
|
8858
9570
|
};
|
|
@@ -8883,9 +9595,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
8883
9595
|
description: string;
|
|
8884
9596
|
};
|
|
8885
9597
|
};
|
|
8886
|
-
security: {
|
|
8887
|
-
jwtAuth: any[];
|
|
8888
|
-
}[];
|
|
8889
9598
|
summary: string;
|
|
8890
9599
|
tags: string[];
|
|
8891
9600
|
"x-async-capable": boolean;
|
|
@@ -8944,9 +9653,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
8944
9653
|
description: string;
|
|
8945
9654
|
};
|
|
8946
9655
|
};
|
|
8947
|
-
security: {
|
|
8948
|
-
jwtAuth: any[];
|
|
8949
|
-
}[];
|
|
8950
9656
|
summary: string;
|
|
8951
9657
|
tags: string[];
|
|
8952
9658
|
"x-async-capable": boolean;
|
|
@@ -9019,9 +9725,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9019
9725
|
description: string;
|
|
9020
9726
|
};
|
|
9021
9727
|
};
|
|
9022
|
-
security: {
|
|
9023
|
-
jwtAuth: any[];
|
|
9024
|
-
}[];
|
|
9025
9728
|
summary: string;
|
|
9026
9729
|
tags: string[];
|
|
9027
9730
|
"x-async-capable": boolean;
|
|
@@ -9059,7 +9762,831 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9059
9762
|
};
|
|
9060
9763
|
};
|
|
9061
9764
|
};
|
|
9062
|
-
};
|
|
9765
|
+
};
|
|
9766
|
+
responses: {
|
|
9767
|
+
"200": {
|
|
9768
|
+
content: {
|
|
9769
|
+
"application/json": {
|
|
9770
|
+
schema: {
|
|
9771
|
+
$ref: string;
|
|
9772
|
+
};
|
|
9773
|
+
};
|
|
9774
|
+
};
|
|
9775
|
+
description: string;
|
|
9776
|
+
};
|
|
9777
|
+
"400": {
|
|
9778
|
+
content: {
|
|
9779
|
+
"application/json": {
|
|
9780
|
+
schema: {
|
|
9781
|
+
description: string;
|
|
9782
|
+
};
|
|
9783
|
+
};
|
|
9784
|
+
};
|
|
9785
|
+
description: string;
|
|
9786
|
+
};
|
|
9787
|
+
"401": {
|
|
9788
|
+
content: {
|
|
9789
|
+
"application/json": {
|
|
9790
|
+
schema: {
|
|
9791
|
+
description: string;
|
|
9792
|
+
};
|
|
9793
|
+
};
|
|
9794
|
+
};
|
|
9795
|
+
description: string;
|
|
9796
|
+
};
|
|
9797
|
+
};
|
|
9798
|
+
summary: string;
|
|
9799
|
+
tags: string[];
|
|
9800
|
+
"x-async-capable": boolean;
|
|
9801
|
+
};
|
|
9802
|
+
};
|
|
9803
|
+
"/cfg/accounts/profile/update/": {
|
|
9804
|
+
patch: {
|
|
9805
|
+
description: string;
|
|
9806
|
+
operationId: string;
|
|
9807
|
+
requestBody: {
|
|
9808
|
+
content: {
|
|
9809
|
+
"application/json": {
|
|
9810
|
+
examples: {
|
|
9811
|
+
ValidProfileUpdate: {
|
|
9812
|
+
summary: string;
|
|
9813
|
+
value: {
|
|
9814
|
+
company: string;
|
|
9815
|
+
first_name: string;
|
|
9816
|
+
last_name: string;
|
|
9817
|
+
phone: string;
|
|
9818
|
+
position: string;
|
|
9819
|
+
};
|
|
9820
|
+
};
|
|
9821
|
+
};
|
|
9822
|
+
schema: {
|
|
9823
|
+
$ref: string;
|
|
9824
|
+
};
|
|
9825
|
+
};
|
|
9826
|
+
"application/x-www-form-urlencoded": {
|
|
9827
|
+
schema: {
|
|
9828
|
+
$ref: string;
|
|
9829
|
+
};
|
|
9830
|
+
};
|
|
9831
|
+
"multipart/form-data": {
|
|
9832
|
+
schema: {
|
|
9833
|
+
$ref: string;
|
|
9834
|
+
};
|
|
9835
|
+
};
|
|
9836
|
+
};
|
|
9837
|
+
};
|
|
9838
|
+
responses: {
|
|
9839
|
+
"200": {
|
|
9840
|
+
content: {
|
|
9841
|
+
"application/json": {
|
|
9842
|
+
schema: {
|
|
9843
|
+
$ref: string;
|
|
9844
|
+
};
|
|
9845
|
+
};
|
|
9846
|
+
};
|
|
9847
|
+
description: string;
|
|
9848
|
+
};
|
|
9849
|
+
"400": {
|
|
9850
|
+
content: {
|
|
9851
|
+
"application/json": {
|
|
9852
|
+
schema: {
|
|
9853
|
+
description: string;
|
|
9854
|
+
};
|
|
9855
|
+
};
|
|
9856
|
+
};
|
|
9857
|
+
description: string;
|
|
9858
|
+
};
|
|
9859
|
+
"401": {
|
|
9860
|
+
content: {
|
|
9861
|
+
"application/json": {
|
|
9862
|
+
schema: {
|
|
9863
|
+
description: string;
|
|
9864
|
+
};
|
|
9865
|
+
};
|
|
9866
|
+
};
|
|
9867
|
+
description: string;
|
|
9868
|
+
};
|
|
9869
|
+
};
|
|
9870
|
+
summary: string;
|
|
9871
|
+
tags: string[];
|
|
9872
|
+
"x-async-capable": boolean;
|
|
9873
|
+
};
|
|
9874
|
+
put: {
|
|
9875
|
+
description: string;
|
|
9876
|
+
operationId: string;
|
|
9877
|
+
requestBody: {
|
|
9878
|
+
content: {
|
|
9879
|
+
"application/json": {
|
|
9880
|
+
examples: {
|
|
9881
|
+
ValidProfileUpdate: {
|
|
9882
|
+
summary: string;
|
|
9883
|
+
value: {
|
|
9884
|
+
company: string;
|
|
9885
|
+
first_name: string;
|
|
9886
|
+
last_name: string;
|
|
9887
|
+
phone: string;
|
|
9888
|
+
position: string;
|
|
9889
|
+
};
|
|
9890
|
+
};
|
|
9891
|
+
};
|
|
9892
|
+
schema: {
|
|
9893
|
+
$ref: string;
|
|
9894
|
+
};
|
|
9895
|
+
};
|
|
9896
|
+
"application/x-www-form-urlencoded": {
|
|
9897
|
+
schema: {
|
|
9898
|
+
$ref: string;
|
|
9899
|
+
};
|
|
9900
|
+
};
|
|
9901
|
+
"multipart/form-data": {
|
|
9902
|
+
schema: {
|
|
9903
|
+
$ref: string;
|
|
9904
|
+
};
|
|
9905
|
+
};
|
|
9906
|
+
};
|
|
9907
|
+
};
|
|
9908
|
+
responses: {
|
|
9909
|
+
"200": {
|
|
9910
|
+
content: {
|
|
9911
|
+
"application/json": {
|
|
9912
|
+
schema: {
|
|
9913
|
+
$ref: string;
|
|
9914
|
+
};
|
|
9915
|
+
};
|
|
9916
|
+
};
|
|
9917
|
+
description: string;
|
|
9918
|
+
};
|
|
9919
|
+
"400": {
|
|
9920
|
+
content: {
|
|
9921
|
+
"application/json": {
|
|
9922
|
+
schema: {
|
|
9923
|
+
description: string;
|
|
9924
|
+
};
|
|
9925
|
+
};
|
|
9926
|
+
};
|
|
9927
|
+
description: string;
|
|
9928
|
+
};
|
|
9929
|
+
"401": {
|
|
9930
|
+
content: {
|
|
9931
|
+
"application/json": {
|
|
9932
|
+
schema: {
|
|
9933
|
+
description: string;
|
|
9934
|
+
};
|
|
9935
|
+
};
|
|
9936
|
+
};
|
|
9937
|
+
description: string;
|
|
9938
|
+
};
|
|
9939
|
+
};
|
|
9940
|
+
summary: string;
|
|
9941
|
+
tags: string[];
|
|
9942
|
+
"x-async-capable": boolean;
|
|
9943
|
+
};
|
|
9944
|
+
};
|
|
9945
|
+
"/cfg/accounts/token/refresh/": {
|
|
9946
|
+
post: {
|
|
9947
|
+
description: string;
|
|
9948
|
+
operationId: string;
|
|
9949
|
+
requestBody: {
|
|
9950
|
+
content: {
|
|
9951
|
+
"application/json": {
|
|
9952
|
+
schema: {
|
|
9953
|
+
$ref: string;
|
|
9954
|
+
};
|
|
9955
|
+
};
|
|
9956
|
+
"application/x-www-form-urlencoded": {
|
|
9957
|
+
schema: {
|
|
9958
|
+
$ref: string;
|
|
9959
|
+
};
|
|
9960
|
+
};
|
|
9961
|
+
"multipart/form-data": {
|
|
9962
|
+
schema: {
|
|
9963
|
+
$ref: string;
|
|
9964
|
+
};
|
|
9965
|
+
};
|
|
9966
|
+
};
|
|
9967
|
+
required: boolean;
|
|
9968
|
+
};
|
|
9969
|
+
responses: {
|
|
9970
|
+
"200": {
|
|
9971
|
+
content: {
|
|
9972
|
+
"application/json": {
|
|
9973
|
+
schema: {
|
|
9974
|
+
$ref: string;
|
|
9975
|
+
};
|
|
9976
|
+
};
|
|
9977
|
+
};
|
|
9978
|
+
description: string;
|
|
9979
|
+
};
|
|
9980
|
+
};
|
|
9981
|
+
tags: string[];
|
|
9982
|
+
"x-async-capable": boolean;
|
|
9983
|
+
};
|
|
9984
|
+
};
|
|
9985
|
+
"/cfg/endpoints/drf/": {
|
|
9986
|
+
get: {
|
|
9987
|
+
description: string;
|
|
9988
|
+
operationId: string;
|
|
9989
|
+
responses: {
|
|
9990
|
+
"200": {
|
|
9991
|
+
content: {
|
|
9992
|
+
"application/json": {
|
|
9993
|
+
schema: {
|
|
9994
|
+
$ref: string;
|
|
9995
|
+
};
|
|
9996
|
+
};
|
|
9997
|
+
};
|
|
9998
|
+
description: string;
|
|
9999
|
+
};
|
|
10000
|
+
};
|
|
10001
|
+
security: {}[];
|
|
10002
|
+
tags: string[];
|
|
10003
|
+
"x-async-capable": boolean;
|
|
10004
|
+
};
|
|
10005
|
+
};
|
|
10006
|
+
"/cfg/health/drf/": {
|
|
10007
|
+
get: {
|
|
10008
|
+
description: string;
|
|
10009
|
+
operationId: string;
|
|
10010
|
+
responses: {
|
|
10011
|
+
"200": {
|
|
10012
|
+
content: {
|
|
10013
|
+
"application/json": {
|
|
10014
|
+
schema: {
|
|
10015
|
+
$ref: string;
|
|
10016
|
+
};
|
|
10017
|
+
};
|
|
10018
|
+
};
|
|
10019
|
+
description: string;
|
|
10020
|
+
};
|
|
10021
|
+
};
|
|
10022
|
+
security: {}[];
|
|
10023
|
+
tags: string[];
|
|
10024
|
+
"x-async-capable": boolean;
|
|
10025
|
+
};
|
|
10026
|
+
};
|
|
10027
|
+
"/cfg/health/drf/quick/": {
|
|
10028
|
+
get: {
|
|
10029
|
+
description: string;
|
|
10030
|
+
operationId: string;
|
|
10031
|
+
responses: {
|
|
10032
|
+
"200": {
|
|
10033
|
+
content: {
|
|
10034
|
+
"application/json": {
|
|
10035
|
+
schema: {
|
|
10036
|
+
$ref: string;
|
|
10037
|
+
};
|
|
10038
|
+
};
|
|
10039
|
+
};
|
|
10040
|
+
description: string;
|
|
10041
|
+
};
|
|
10042
|
+
};
|
|
10043
|
+
security: {}[];
|
|
10044
|
+
tags: string[];
|
|
10045
|
+
"x-async-capable": boolean;
|
|
10046
|
+
};
|
|
10047
|
+
};
|
|
10048
|
+
"/cfg/ipc/admin/api/monitor/health/": {
|
|
10049
|
+
get: {
|
|
10050
|
+
description: string;
|
|
10051
|
+
operationId: string;
|
|
10052
|
+
responses: {
|
|
10053
|
+
"200": {
|
|
10054
|
+
content: {
|
|
10055
|
+
"application/json": {
|
|
10056
|
+
schema: {
|
|
10057
|
+
$ref: string;
|
|
10058
|
+
};
|
|
10059
|
+
};
|
|
10060
|
+
};
|
|
10061
|
+
description: string;
|
|
10062
|
+
};
|
|
10063
|
+
"503": {
|
|
10064
|
+
content: {
|
|
10065
|
+
"application/json": {
|
|
10066
|
+
schema: {
|
|
10067
|
+
description: string;
|
|
10068
|
+
};
|
|
10069
|
+
};
|
|
10070
|
+
};
|
|
10071
|
+
description: string;
|
|
10072
|
+
};
|
|
10073
|
+
};
|
|
10074
|
+
security: {
|
|
10075
|
+
cookieAuth: any[];
|
|
10076
|
+
}[];
|
|
10077
|
+
summary: string;
|
|
10078
|
+
tags: string[];
|
|
10079
|
+
"x-async-capable": boolean;
|
|
10080
|
+
};
|
|
10081
|
+
};
|
|
10082
|
+
"/cfg/ipc/admin/api/monitor/methods/": {
|
|
10083
|
+
get: {
|
|
10084
|
+
description: string;
|
|
10085
|
+
operationId: string;
|
|
10086
|
+
responses: {
|
|
10087
|
+
"200": {
|
|
10088
|
+
content: {
|
|
10089
|
+
"application/json": {
|
|
10090
|
+
schema: {
|
|
10091
|
+
$ref: string;
|
|
10092
|
+
};
|
|
10093
|
+
};
|
|
10094
|
+
};
|
|
10095
|
+
description: string;
|
|
10096
|
+
};
|
|
10097
|
+
"503": {
|
|
10098
|
+
content: {
|
|
10099
|
+
"application/json": {
|
|
10100
|
+
schema: {
|
|
10101
|
+
description: string;
|
|
10102
|
+
};
|
|
10103
|
+
};
|
|
10104
|
+
};
|
|
10105
|
+
description: string;
|
|
10106
|
+
};
|
|
10107
|
+
};
|
|
10108
|
+
security: {
|
|
10109
|
+
cookieAuth: any[];
|
|
10110
|
+
}[];
|
|
10111
|
+
summary: string;
|
|
10112
|
+
tags: string[];
|
|
10113
|
+
"x-async-capable": boolean;
|
|
10114
|
+
};
|
|
10115
|
+
};
|
|
10116
|
+
"/cfg/ipc/admin/api/monitor/notifications/": {
|
|
10117
|
+
get: {
|
|
10118
|
+
description: string;
|
|
10119
|
+
operationId: string;
|
|
10120
|
+
responses: {
|
|
10121
|
+
"200": {
|
|
10122
|
+
content: {
|
|
10123
|
+
"application/json": {
|
|
10124
|
+
schema: {
|
|
10125
|
+
$ref: string;
|
|
10126
|
+
};
|
|
10127
|
+
};
|
|
10128
|
+
};
|
|
10129
|
+
description: string;
|
|
10130
|
+
};
|
|
10131
|
+
"503": {
|
|
10132
|
+
content: {
|
|
10133
|
+
"application/json": {
|
|
10134
|
+
schema: {
|
|
10135
|
+
description: string;
|
|
10136
|
+
};
|
|
10137
|
+
};
|
|
10138
|
+
};
|
|
10139
|
+
description: string;
|
|
10140
|
+
};
|
|
10141
|
+
};
|
|
10142
|
+
security: {
|
|
10143
|
+
cookieAuth: any[];
|
|
10144
|
+
}[];
|
|
10145
|
+
summary: string;
|
|
10146
|
+
tags: string[];
|
|
10147
|
+
"x-async-capable": boolean;
|
|
10148
|
+
};
|
|
10149
|
+
};
|
|
10150
|
+
"/cfg/ipc/admin/api/monitor/overview/": {
|
|
10151
|
+
get: {
|
|
10152
|
+
description: string;
|
|
10153
|
+
operationId: string;
|
|
10154
|
+
responses: {
|
|
10155
|
+
"200": {
|
|
10156
|
+
content: {
|
|
10157
|
+
"application/json": {
|
|
10158
|
+
schema: {
|
|
10159
|
+
$ref: string;
|
|
10160
|
+
};
|
|
10161
|
+
};
|
|
10162
|
+
};
|
|
10163
|
+
description: string;
|
|
10164
|
+
};
|
|
10165
|
+
"503": {
|
|
10166
|
+
content: {
|
|
10167
|
+
"application/json": {
|
|
10168
|
+
schema: {
|
|
10169
|
+
description: string;
|
|
10170
|
+
};
|
|
10171
|
+
};
|
|
10172
|
+
};
|
|
10173
|
+
description: string;
|
|
10174
|
+
};
|
|
10175
|
+
};
|
|
10176
|
+
security: {
|
|
10177
|
+
cookieAuth: any[];
|
|
10178
|
+
}[];
|
|
10179
|
+
summary: string;
|
|
10180
|
+
tags: string[];
|
|
10181
|
+
"x-async-capable": boolean;
|
|
10182
|
+
};
|
|
10183
|
+
};
|
|
10184
|
+
"/cfg/ipc/admin/api/monitor/requests/": {
|
|
10185
|
+
get: {
|
|
10186
|
+
description: string;
|
|
10187
|
+
operationId: string;
|
|
10188
|
+
parameters: {
|
|
10189
|
+
description: string;
|
|
10190
|
+
in: string;
|
|
10191
|
+
name: string;
|
|
10192
|
+
schema: {
|
|
10193
|
+
type: string;
|
|
10194
|
+
};
|
|
10195
|
+
}[];
|
|
10196
|
+
responses: {
|
|
10197
|
+
"200": {
|
|
10198
|
+
content: {
|
|
10199
|
+
"application/json": {
|
|
10200
|
+
schema: {
|
|
10201
|
+
$ref: string;
|
|
10202
|
+
};
|
|
10203
|
+
};
|
|
10204
|
+
};
|
|
10205
|
+
description: string;
|
|
10206
|
+
};
|
|
10207
|
+
"400": {
|
|
10208
|
+
content: {
|
|
10209
|
+
"application/json": {
|
|
10210
|
+
schema: {
|
|
10211
|
+
description: string;
|
|
10212
|
+
};
|
|
10213
|
+
};
|
|
10214
|
+
};
|
|
10215
|
+
description: string;
|
|
10216
|
+
};
|
|
10217
|
+
"503": {
|
|
10218
|
+
content: {
|
|
10219
|
+
"application/json": {
|
|
10220
|
+
schema: {
|
|
10221
|
+
description: string;
|
|
10222
|
+
};
|
|
10223
|
+
};
|
|
10224
|
+
};
|
|
10225
|
+
description: string;
|
|
10226
|
+
};
|
|
10227
|
+
};
|
|
10228
|
+
security: {
|
|
10229
|
+
cookieAuth: any[];
|
|
10230
|
+
}[];
|
|
10231
|
+
summary: string;
|
|
10232
|
+
tags: string[];
|
|
10233
|
+
"x-async-capable": boolean;
|
|
10234
|
+
};
|
|
10235
|
+
};
|
|
10236
|
+
"/cfg/ipc/admin/api/test/load/start/": {
|
|
10237
|
+
post: {
|
|
10238
|
+
description: string;
|
|
10239
|
+
operationId: string;
|
|
10240
|
+
requestBody: {
|
|
10241
|
+
content: {
|
|
10242
|
+
"application/json": {
|
|
10243
|
+
schema: {
|
|
10244
|
+
$ref: string;
|
|
10245
|
+
};
|
|
10246
|
+
};
|
|
10247
|
+
"application/x-www-form-urlencoded": {
|
|
10248
|
+
schema: {
|
|
10249
|
+
$ref: string;
|
|
10250
|
+
};
|
|
10251
|
+
};
|
|
10252
|
+
"multipart/form-data": {
|
|
10253
|
+
schema: {
|
|
10254
|
+
$ref: string;
|
|
10255
|
+
};
|
|
10256
|
+
};
|
|
10257
|
+
};
|
|
10258
|
+
required: boolean;
|
|
10259
|
+
};
|
|
10260
|
+
responses: {
|
|
10261
|
+
"200": {
|
|
10262
|
+
content: {
|
|
10263
|
+
"application/json": {
|
|
10264
|
+
schema: {
|
|
10265
|
+
$ref: string;
|
|
10266
|
+
};
|
|
10267
|
+
};
|
|
10268
|
+
};
|
|
10269
|
+
description: string;
|
|
10270
|
+
};
|
|
10271
|
+
"400": {
|
|
10272
|
+
content: {
|
|
10273
|
+
"application/json": {
|
|
10274
|
+
schema: {
|
|
10275
|
+
description: string;
|
|
10276
|
+
};
|
|
10277
|
+
};
|
|
10278
|
+
};
|
|
10279
|
+
description: string;
|
|
10280
|
+
};
|
|
10281
|
+
"409": {
|
|
10282
|
+
content: {
|
|
10283
|
+
"application/json": {
|
|
10284
|
+
schema: {
|
|
10285
|
+
description: string;
|
|
10286
|
+
};
|
|
10287
|
+
};
|
|
10288
|
+
};
|
|
10289
|
+
description: string;
|
|
10290
|
+
};
|
|
10291
|
+
};
|
|
10292
|
+
security: {
|
|
10293
|
+
cookieAuth: any[];
|
|
10294
|
+
}[];
|
|
10295
|
+
summary: string;
|
|
10296
|
+
tags: string[];
|
|
10297
|
+
"x-async-capable": boolean;
|
|
10298
|
+
};
|
|
10299
|
+
};
|
|
10300
|
+
"/cfg/ipc/admin/api/test/load/status/": {
|
|
10301
|
+
get: {
|
|
10302
|
+
description: string;
|
|
10303
|
+
operationId: string;
|
|
10304
|
+
responses: {
|
|
10305
|
+
"200": {
|
|
10306
|
+
content: {
|
|
10307
|
+
"application/json": {
|
|
10308
|
+
schema: {
|
|
10309
|
+
$ref: string;
|
|
10310
|
+
};
|
|
10311
|
+
};
|
|
10312
|
+
};
|
|
10313
|
+
description: string;
|
|
10314
|
+
};
|
|
10315
|
+
};
|
|
10316
|
+
security: {
|
|
10317
|
+
cookieAuth: any[];
|
|
10318
|
+
}[];
|
|
10319
|
+
summary: string;
|
|
10320
|
+
tags: string[];
|
|
10321
|
+
"x-async-capable": boolean;
|
|
10322
|
+
};
|
|
10323
|
+
};
|
|
10324
|
+
"/cfg/ipc/admin/api/test/load/stop/": {
|
|
10325
|
+
post: {
|
|
10326
|
+
description: string;
|
|
10327
|
+
operationId: string;
|
|
10328
|
+
requestBody: {
|
|
10329
|
+
content: {
|
|
10330
|
+
"application/json": {
|
|
10331
|
+
schema: {
|
|
10332
|
+
$ref: string;
|
|
10333
|
+
};
|
|
10334
|
+
};
|
|
10335
|
+
"application/x-www-form-urlencoded": {
|
|
10336
|
+
schema: {
|
|
10337
|
+
$ref: string;
|
|
10338
|
+
};
|
|
10339
|
+
};
|
|
10340
|
+
"multipart/form-data": {
|
|
10341
|
+
schema: {
|
|
10342
|
+
$ref: string;
|
|
10343
|
+
};
|
|
10344
|
+
};
|
|
10345
|
+
};
|
|
10346
|
+
required: boolean;
|
|
10347
|
+
};
|
|
10348
|
+
responses: {
|
|
10349
|
+
"200": {
|
|
10350
|
+
content: {
|
|
10351
|
+
"application/json": {
|
|
10352
|
+
schema: {
|
|
10353
|
+
description: string;
|
|
10354
|
+
};
|
|
10355
|
+
};
|
|
10356
|
+
};
|
|
10357
|
+
description: string;
|
|
10358
|
+
};
|
|
10359
|
+
"400": {
|
|
10360
|
+
content: {
|
|
10361
|
+
"application/json": {
|
|
10362
|
+
schema: {
|
|
10363
|
+
description: string;
|
|
10364
|
+
};
|
|
10365
|
+
};
|
|
10366
|
+
};
|
|
10367
|
+
description: string;
|
|
10368
|
+
};
|
|
10369
|
+
};
|
|
10370
|
+
security: {
|
|
10371
|
+
cookieAuth: any[];
|
|
10372
|
+
}[];
|
|
10373
|
+
summary: string;
|
|
10374
|
+
tags: string[];
|
|
10375
|
+
"x-async-capable": boolean;
|
|
10376
|
+
};
|
|
10377
|
+
};
|
|
10378
|
+
"/cfg/ipc/admin/api/test/send/": {
|
|
10379
|
+
post: {
|
|
10380
|
+
description: string;
|
|
10381
|
+
operationId: string;
|
|
10382
|
+
requestBody: {
|
|
10383
|
+
content: {
|
|
10384
|
+
"application/json": {
|
|
10385
|
+
schema: {
|
|
10386
|
+
$ref: string;
|
|
10387
|
+
};
|
|
10388
|
+
};
|
|
10389
|
+
"application/x-www-form-urlencoded": {
|
|
10390
|
+
schema: {
|
|
10391
|
+
$ref: string;
|
|
10392
|
+
};
|
|
10393
|
+
};
|
|
10394
|
+
"multipart/form-data": {
|
|
10395
|
+
schema: {
|
|
10396
|
+
$ref: string;
|
|
10397
|
+
};
|
|
10398
|
+
};
|
|
10399
|
+
};
|
|
10400
|
+
required: boolean;
|
|
10401
|
+
};
|
|
10402
|
+
responses: {
|
|
10403
|
+
"200": {
|
|
10404
|
+
content: {
|
|
10405
|
+
"application/json": {
|
|
10406
|
+
schema: {
|
|
10407
|
+
$ref: string;
|
|
10408
|
+
};
|
|
10409
|
+
};
|
|
10410
|
+
};
|
|
10411
|
+
description: string;
|
|
10412
|
+
};
|
|
10413
|
+
"400": {
|
|
10414
|
+
content: {
|
|
10415
|
+
"application/json": {
|
|
10416
|
+
schema: {
|
|
10417
|
+
description: string;
|
|
10418
|
+
};
|
|
10419
|
+
};
|
|
10420
|
+
};
|
|
10421
|
+
description: string;
|
|
10422
|
+
};
|
|
10423
|
+
"500": {
|
|
10424
|
+
content: {
|
|
10425
|
+
"application/json": {
|
|
10426
|
+
schema: {
|
|
10427
|
+
description: string;
|
|
10428
|
+
};
|
|
10429
|
+
};
|
|
10430
|
+
};
|
|
10431
|
+
description: string;
|
|
10432
|
+
};
|
|
10433
|
+
};
|
|
10434
|
+
security: {
|
|
10435
|
+
cookieAuth: any[];
|
|
10436
|
+
}[];
|
|
10437
|
+
summary: string;
|
|
10438
|
+
tags: string[];
|
|
10439
|
+
"x-async-capable": boolean;
|
|
10440
|
+
};
|
|
10441
|
+
};
|
|
10442
|
+
"/cfg/ipc/monitor/health/": {
|
|
10443
|
+
get: {
|
|
10444
|
+
description: string;
|
|
10445
|
+
operationId: string;
|
|
10446
|
+
responses: {
|
|
10447
|
+
"200": {
|
|
10448
|
+
content: {
|
|
10449
|
+
"application/json": {
|
|
10450
|
+
schema: {
|
|
10451
|
+
$ref: string;
|
|
10452
|
+
};
|
|
10453
|
+
};
|
|
10454
|
+
};
|
|
10455
|
+
description: string;
|
|
10456
|
+
};
|
|
10457
|
+
"503": {
|
|
10458
|
+
content: {
|
|
10459
|
+
"application/json": {
|
|
10460
|
+
schema: {
|
|
10461
|
+
description: string;
|
|
10462
|
+
};
|
|
10463
|
+
};
|
|
10464
|
+
};
|
|
10465
|
+
description: string;
|
|
10466
|
+
};
|
|
10467
|
+
};
|
|
10468
|
+
security: {
|
|
10469
|
+
cookieAuth: any[];
|
|
10470
|
+
}[];
|
|
10471
|
+
summary: string;
|
|
10472
|
+
tags: string[];
|
|
10473
|
+
"x-async-capable": boolean;
|
|
10474
|
+
};
|
|
10475
|
+
};
|
|
10476
|
+
"/cfg/ipc/monitor/methods/": {
|
|
10477
|
+
get: {
|
|
10478
|
+
description: string;
|
|
10479
|
+
operationId: string;
|
|
10480
|
+
responses: {
|
|
10481
|
+
"200": {
|
|
10482
|
+
content: {
|
|
10483
|
+
"application/json": {
|
|
10484
|
+
schema: {
|
|
10485
|
+
$ref: string;
|
|
10486
|
+
};
|
|
10487
|
+
};
|
|
10488
|
+
};
|
|
10489
|
+
description: string;
|
|
10490
|
+
};
|
|
10491
|
+
"503": {
|
|
10492
|
+
content: {
|
|
10493
|
+
"application/json": {
|
|
10494
|
+
schema: {
|
|
10495
|
+
description: string;
|
|
10496
|
+
};
|
|
10497
|
+
};
|
|
10498
|
+
};
|
|
10499
|
+
description: string;
|
|
10500
|
+
};
|
|
10501
|
+
};
|
|
10502
|
+
security: {
|
|
10503
|
+
cookieAuth: any[];
|
|
10504
|
+
}[];
|
|
10505
|
+
summary: string;
|
|
10506
|
+
tags: string[];
|
|
10507
|
+
"x-async-capable": boolean;
|
|
10508
|
+
};
|
|
10509
|
+
};
|
|
10510
|
+
"/cfg/ipc/monitor/notifications/": {
|
|
10511
|
+
get: {
|
|
10512
|
+
description: string;
|
|
10513
|
+
operationId: string;
|
|
10514
|
+
responses: {
|
|
10515
|
+
"200": {
|
|
10516
|
+
content: {
|
|
10517
|
+
"application/json": {
|
|
10518
|
+
schema: {
|
|
10519
|
+
$ref: string;
|
|
10520
|
+
};
|
|
10521
|
+
};
|
|
10522
|
+
};
|
|
10523
|
+
description: string;
|
|
10524
|
+
};
|
|
10525
|
+
"503": {
|
|
10526
|
+
content: {
|
|
10527
|
+
"application/json": {
|
|
10528
|
+
schema: {
|
|
10529
|
+
description: string;
|
|
10530
|
+
};
|
|
10531
|
+
};
|
|
10532
|
+
};
|
|
10533
|
+
description: string;
|
|
10534
|
+
};
|
|
10535
|
+
};
|
|
10536
|
+
security: {
|
|
10537
|
+
cookieAuth: any[];
|
|
10538
|
+
}[];
|
|
10539
|
+
summary: string;
|
|
10540
|
+
tags: string[];
|
|
10541
|
+
"x-async-capable": boolean;
|
|
10542
|
+
};
|
|
10543
|
+
};
|
|
10544
|
+
"/cfg/ipc/monitor/overview/": {
|
|
10545
|
+
get: {
|
|
10546
|
+
description: string;
|
|
10547
|
+
operationId: string;
|
|
10548
|
+
responses: {
|
|
10549
|
+
"200": {
|
|
10550
|
+
content: {
|
|
10551
|
+
"application/json": {
|
|
10552
|
+
schema: {
|
|
10553
|
+
$ref: string;
|
|
10554
|
+
};
|
|
10555
|
+
};
|
|
10556
|
+
};
|
|
10557
|
+
description: string;
|
|
10558
|
+
};
|
|
10559
|
+
"503": {
|
|
10560
|
+
content: {
|
|
10561
|
+
"application/json": {
|
|
10562
|
+
schema: {
|
|
10563
|
+
description: string;
|
|
10564
|
+
};
|
|
10565
|
+
};
|
|
10566
|
+
};
|
|
10567
|
+
description: string;
|
|
10568
|
+
};
|
|
10569
|
+
};
|
|
10570
|
+
security: {
|
|
10571
|
+
cookieAuth: any[];
|
|
10572
|
+
}[];
|
|
10573
|
+
summary: string;
|
|
10574
|
+
tags: string[];
|
|
10575
|
+
"x-async-capable": boolean;
|
|
10576
|
+
};
|
|
10577
|
+
};
|
|
10578
|
+
"/cfg/ipc/monitor/requests/": {
|
|
10579
|
+
get: {
|
|
10580
|
+
description: string;
|
|
10581
|
+
operationId: string;
|
|
10582
|
+
parameters: {
|
|
10583
|
+
description: string;
|
|
10584
|
+
in: string;
|
|
10585
|
+
name: string;
|
|
10586
|
+
schema: {
|
|
10587
|
+
type: string;
|
|
10588
|
+
};
|
|
10589
|
+
}[];
|
|
9063
10590
|
responses: {
|
|
9064
10591
|
"200": {
|
|
9065
10592
|
content: {
|
|
@@ -9081,7 +10608,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9081
10608
|
};
|
|
9082
10609
|
description: string;
|
|
9083
10610
|
};
|
|
9084
|
-
"
|
|
10611
|
+
"503": {
|
|
9085
10612
|
content: {
|
|
9086
10613
|
"application/json": {
|
|
9087
10614
|
schema: {
|
|
@@ -9093,32 +10620,20 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9093
10620
|
};
|
|
9094
10621
|
};
|
|
9095
10622
|
security: {
|
|
9096
|
-
|
|
10623
|
+
cookieAuth: any[];
|
|
9097
10624
|
}[];
|
|
9098
10625
|
summary: string;
|
|
9099
10626
|
tags: string[];
|
|
9100
10627
|
"x-async-capable": boolean;
|
|
9101
10628
|
};
|
|
9102
10629
|
};
|
|
9103
|
-
"/cfg/
|
|
9104
|
-
|
|
10630
|
+
"/cfg/ipc/test/load/start/": {
|
|
10631
|
+
post: {
|
|
9105
10632
|
description: string;
|
|
9106
10633
|
operationId: string;
|
|
9107
10634
|
requestBody: {
|
|
9108
10635
|
content: {
|
|
9109
10636
|
"application/json": {
|
|
9110
|
-
examples: {
|
|
9111
|
-
ValidProfileUpdate: {
|
|
9112
|
-
summary: string;
|
|
9113
|
-
value: {
|
|
9114
|
-
company: string;
|
|
9115
|
-
first_name: string;
|
|
9116
|
-
last_name: string;
|
|
9117
|
-
phone: string;
|
|
9118
|
-
position: string;
|
|
9119
|
-
};
|
|
9120
|
-
};
|
|
9121
|
-
};
|
|
9122
10637
|
schema: {
|
|
9123
10638
|
$ref: string;
|
|
9124
10639
|
};
|
|
@@ -9134,6 +10649,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9134
10649
|
};
|
|
9135
10650
|
};
|
|
9136
10651
|
};
|
|
10652
|
+
required: boolean;
|
|
9137
10653
|
};
|
|
9138
10654
|
responses: {
|
|
9139
10655
|
"200": {
|
|
@@ -9156,7 +10672,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9156
10672
|
};
|
|
9157
10673
|
description: string;
|
|
9158
10674
|
};
|
|
9159
|
-
"
|
|
10675
|
+
"409": {
|
|
9160
10676
|
content: {
|
|
9161
10677
|
"application/json": {
|
|
9162
10678
|
schema: {
|
|
@@ -9168,30 +10684,44 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9168
10684
|
};
|
|
9169
10685
|
};
|
|
9170
10686
|
security: {
|
|
9171
|
-
|
|
10687
|
+
cookieAuth: any[];
|
|
9172
10688
|
}[];
|
|
9173
10689
|
summary: string;
|
|
9174
10690
|
tags: string[];
|
|
9175
10691
|
"x-async-capable": boolean;
|
|
9176
10692
|
};
|
|
9177
|
-
|
|
10693
|
+
};
|
|
10694
|
+
"/cfg/ipc/test/load/status/": {
|
|
10695
|
+
get: {
|
|
10696
|
+
description: string;
|
|
10697
|
+
operationId: string;
|
|
10698
|
+
responses: {
|
|
10699
|
+
"200": {
|
|
10700
|
+
content: {
|
|
10701
|
+
"application/json": {
|
|
10702
|
+
schema: {
|
|
10703
|
+
$ref: string;
|
|
10704
|
+
};
|
|
10705
|
+
};
|
|
10706
|
+
};
|
|
10707
|
+
description: string;
|
|
10708
|
+
};
|
|
10709
|
+
};
|
|
10710
|
+
security: {
|
|
10711
|
+
cookieAuth: any[];
|
|
10712
|
+
}[];
|
|
10713
|
+
summary: string;
|
|
10714
|
+
tags: string[];
|
|
10715
|
+
"x-async-capable": boolean;
|
|
10716
|
+
};
|
|
10717
|
+
};
|
|
10718
|
+
"/cfg/ipc/test/load/stop/": {
|
|
10719
|
+
post: {
|
|
9178
10720
|
description: string;
|
|
9179
10721
|
operationId: string;
|
|
9180
10722
|
requestBody: {
|
|
9181
10723
|
content: {
|
|
9182
10724
|
"application/json": {
|
|
9183
|
-
examples: {
|
|
9184
|
-
ValidProfileUpdate: {
|
|
9185
|
-
summary: string;
|
|
9186
|
-
value: {
|
|
9187
|
-
company: string;
|
|
9188
|
-
first_name: string;
|
|
9189
|
-
last_name: string;
|
|
9190
|
-
phone: string;
|
|
9191
|
-
position: string;
|
|
9192
|
-
};
|
|
9193
|
-
};
|
|
9194
|
-
};
|
|
9195
10725
|
schema: {
|
|
9196
10726
|
$ref: string;
|
|
9197
10727
|
};
|
|
@@ -9207,19 +10737,10 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9207
10737
|
};
|
|
9208
10738
|
};
|
|
9209
10739
|
};
|
|
10740
|
+
required: boolean;
|
|
9210
10741
|
};
|
|
9211
10742
|
responses: {
|
|
9212
10743
|
"200": {
|
|
9213
|
-
content: {
|
|
9214
|
-
"application/json": {
|
|
9215
|
-
schema: {
|
|
9216
|
-
$ref: string;
|
|
9217
|
-
};
|
|
9218
|
-
};
|
|
9219
|
-
};
|
|
9220
|
-
description: string;
|
|
9221
|
-
};
|
|
9222
|
-
"400": {
|
|
9223
10744
|
content: {
|
|
9224
10745
|
"application/json": {
|
|
9225
10746
|
schema: {
|
|
@@ -9229,7 +10750,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9229
10750
|
};
|
|
9230
10751
|
description: string;
|
|
9231
10752
|
};
|
|
9232
|
-
"
|
|
10753
|
+
"400": {
|
|
9233
10754
|
content: {
|
|
9234
10755
|
"application/json": {
|
|
9235
10756
|
schema: {
|
|
@@ -9241,14 +10762,14 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9241
10762
|
};
|
|
9242
10763
|
};
|
|
9243
10764
|
security: {
|
|
9244
|
-
|
|
10765
|
+
cookieAuth: any[];
|
|
9245
10766
|
}[];
|
|
9246
10767
|
summary: string;
|
|
9247
10768
|
tags: string[];
|
|
9248
10769
|
"x-async-capable": boolean;
|
|
9249
10770
|
};
|
|
9250
10771
|
};
|
|
9251
|
-
"/cfg/
|
|
10772
|
+
"/cfg/ipc/test/send/": {
|
|
9252
10773
|
post: {
|
|
9253
10774
|
description: string;
|
|
9254
10775
|
operationId: string;
|
|
@@ -9283,82 +10804,31 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9283
10804
|
};
|
|
9284
10805
|
description: string;
|
|
9285
10806
|
};
|
|
9286
|
-
|
|
9287
|
-
tags: string[];
|
|
9288
|
-
"x-async-capable": boolean;
|
|
9289
|
-
};
|
|
9290
|
-
};
|
|
9291
|
-
"/cfg/endpoints/drf/": {
|
|
9292
|
-
get: {
|
|
9293
|
-
description: string;
|
|
9294
|
-
operationId: string;
|
|
9295
|
-
responses: {
|
|
9296
|
-
"200": {
|
|
9297
|
-
content: {
|
|
9298
|
-
"application/json": {
|
|
9299
|
-
schema: {
|
|
9300
|
-
$ref: string;
|
|
9301
|
-
};
|
|
9302
|
-
};
|
|
9303
|
-
};
|
|
9304
|
-
description: string;
|
|
9305
|
-
};
|
|
9306
|
-
};
|
|
9307
|
-
security: ({
|
|
9308
|
-
jwtAuth: any[];
|
|
9309
|
-
} | {
|
|
9310
|
-
jwtAuth?: undefined;
|
|
9311
|
-
})[];
|
|
9312
|
-
tags: string[];
|
|
9313
|
-
"x-async-capable": boolean;
|
|
9314
|
-
};
|
|
9315
|
-
};
|
|
9316
|
-
"/cfg/health/drf/": {
|
|
9317
|
-
get: {
|
|
9318
|
-
description: string;
|
|
9319
|
-
operationId: string;
|
|
9320
|
-
responses: {
|
|
9321
|
-
"200": {
|
|
10807
|
+
"400": {
|
|
9322
10808
|
content: {
|
|
9323
10809
|
"application/json": {
|
|
9324
10810
|
schema: {
|
|
9325
|
-
|
|
10811
|
+
description: string;
|
|
9326
10812
|
};
|
|
9327
10813
|
};
|
|
9328
10814
|
};
|
|
9329
10815
|
description: string;
|
|
9330
10816
|
};
|
|
9331
|
-
|
|
9332
|
-
security: ({
|
|
9333
|
-
jwtAuth: any[];
|
|
9334
|
-
} | {
|
|
9335
|
-
jwtAuth?: undefined;
|
|
9336
|
-
})[];
|
|
9337
|
-
tags: string[];
|
|
9338
|
-
"x-async-capable": boolean;
|
|
9339
|
-
};
|
|
9340
|
-
};
|
|
9341
|
-
"/cfg/health/drf/quick/": {
|
|
9342
|
-
get: {
|
|
9343
|
-
description: string;
|
|
9344
|
-
operationId: string;
|
|
9345
|
-
responses: {
|
|
9346
|
-
"200": {
|
|
10817
|
+
"500": {
|
|
9347
10818
|
content: {
|
|
9348
10819
|
"application/json": {
|
|
9349
10820
|
schema: {
|
|
9350
|
-
|
|
10821
|
+
description: string;
|
|
9351
10822
|
};
|
|
9352
10823
|
};
|
|
9353
10824
|
};
|
|
9354
10825
|
description: string;
|
|
9355
10826
|
};
|
|
9356
10827
|
};
|
|
9357
|
-
security:
|
|
9358
|
-
|
|
9359
|
-
}
|
|
9360
|
-
|
|
9361
|
-
})[];
|
|
10828
|
+
security: {
|
|
10829
|
+
cookieAuth: any[];
|
|
10830
|
+
}[];
|
|
10831
|
+
summary: string;
|
|
9362
10832
|
tags: string[];
|
|
9363
10833
|
"x-async-capable": boolean;
|
|
9364
10834
|
};
|
|
@@ -9388,9 +10858,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9388
10858
|
description: string;
|
|
9389
10859
|
};
|
|
9390
10860
|
};
|
|
9391
|
-
security: {
|
|
9392
|
-
jwtAuth: any[];
|
|
9393
|
-
}[];
|
|
9394
10861
|
tags: string[];
|
|
9395
10862
|
"x-async-capable": boolean;
|
|
9396
10863
|
};
|
|
@@ -9429,9 +10896,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9429
10896
|
description: string;
|
|
9430
10897
|
};
|
|
9431
10898
|
};
|
|
9432
|
-
security: {
|
|
9433
|
-
jwtAuth: any[];
|
|
9434
|
-
}[];
|
|
9435
10899
|
tags: string[];
|
|
9436
10900
|
"x-async-capable": boolean;
|
|
9437
10901
|
};
|
|
@@ -9492,9 +10956,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9492
10956
|
description: string;
|
|
9493
10957
|
};
|
|
9494
10958
|
};
|
|
9495
|
-
security: {
|
|
9496
|
-
jwtAuth: any[];
|
|
9497
|
-
}[];
|
|
9498
10959
|
summary: string;
|
|
9499
10960
|
tags: string[];
|
|
9500
10961
|
"x-async-capable": boolean;
|
|
@@ -9519,9 +10980,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9519
10980
|
description: string;
|
|
9520
10981
|
};
|
|
9521
10982
|
};
|
|
9522
|
-
security: {
|
|
9523
|
-
jwtAuth: any[];
|
|
9524
|
-
}[];
|
|
9525
10983
|
tags: string[];
|
|
9526
10984
|
"x-async-capable": boolean;
|
|
9527
10985
|
};
|
|
@@ -9550,9 +11008,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9550
11008
|
description: string;
|
|
9551
11009
|
};
|
|
9552
11010
|
};
|
|
9553
|
-
security: {
|
|
9554
|
-
jwtAuth: any[];
|
|
9555
|
-
}[];
|
|
9556
11011
|
tags: string[];
|
|
9557
11012
|
"x-async-capable": boolean;
|
|
9558
11013
|
};
|
|
@@ -9600,9 +11055,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9600
11055
|
description: string;
|
|
9601
11056
|
};
|
|
9602
11057
|
};
|
|
9603
|
-
security: {
|
|
9604
|
-
jwtAuth: any[];
|
|
9605
|
-
}[];
|
|
9606
11058
|
tags: string[];
|
|
9607
11059
|
"x-async-capable": boolean;
|
|
9608
11060
|
};
|
|
@@ -9651,9 +11103,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9651
11103
|
description: string;
|
|
9652
11104
|
};
|
|
9653
11105
|
};
|
|
9654
|
-
security: {
|
|
9655
|
-
jwtAuth: any[];
|
|
9656
|
-
}[];
|
|
9657
11106
|
tags: string[];
|
|
9658
11107
|
"x-async-capable": boolean;
|
|
9659
11108
|
};
|
|
@@ -9684,9 +11133,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9684
11133
|
description: string;
|
|
9685
11134
|
};
|
|
9686
11135
|
};
|
|
9687
|
-
security: {
|
|
9688
|
-
jwtAuth: any[];
|
|
9689
|
-
}[];
|
|
9690
11136
|
summary: string;
|
|
9691
11137
|
tags: string[];
|
|
9692
11138
|
"x-async-capable": boolean;
|
|
@@ -9725,9 +11171,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9725
11171
|
description: string;
|
|
9726
11172
|
};
|
|
9727
11173
|
};
|
|
9728
|
-
security: {
|
|
9729
|
-
jwtAuth: any[];
|
|
9730
|
-
}[];
|
|
9731
11174
|
summary: string;
|
|
9732
11175
|
tags: string[];
|
|
9733
11176
|
"x-async-capable": boolean;
|
|
@@ -9796,9 +11239,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9796
11239
|
description: string;
|
|
9797
11240
|
};
|
|
9798
11241
|
};
|
|
9799
|
-
security: {
|
|
9800
|
-
jwtAuth: any[];
|
|
9801
|
-
}[];
|
|
9802
11242
|
summary: string;
|
|
9803
11243
|
tags: string[];
|
|
9804
11244
|
"x-async-capable": boolean;
|
|
@@ -9820,9 +11260,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9820
11260
|
description: string;
|
|
9821
11261
|
};
|
|
9822
11262
|
};
|
|
9823
|
-
security: {
|
|
9824
|
-
jwtAuth: any[];
|
|
9825
|
-
}[];
|
|
9826
11263
|
summary: string;
|
|
9827
11264
|
tags: string[];
|
|
9828
11265
|
"x-async-capable": boolean;
|
|
@@ -9850,9 +11287,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9850
11287
|
description: string;
|
|
9851
11288
|
};
|
|
9852
11289
|
};
|
|
9853
|
-
security: {
|
|
9854
|
-
jwtAuth: any[];
|
|
9855
|
-
}[];
|
|
9856
11290
|
summary: string;
|
|
9857
11291
|
tags: string[];
|
|
9858
11292
|
"x-async-capable": boolean;
|
|
@@ -9885,9 +11319,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9885
11319
|
description: string;
|
|
9886
11320
|
};
|
|
9887
11321
|
};
|
|
9888
|
-
security: {
|
|
9889
|
-
jwtAuth: any[];
|
|
9890
|
-
}[];
|
|
9891
11322
|
summary: string;
|
|
9892
11323
|
tags: string[];
|
|
9893
11324
|
"x-async-capable": boolean;
|
|
@@ -9936,9 +11367,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9936
11367
|
description: string;
|
|
9937
11368
|
};
|
|
9938
11369
|
};
|
|
9939
|
-
security: {
|
|
9940
|
-
jwtAuth: any[];
|
|
9941
|
-
}[];
|
|
9942
11370
|
tags: string[];
|
|
9943
11371
|
"x-async-capable": boolean;
|
|
9944
11372
|
};
|
|
@@ -9987,9 +11415,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9987
11415
|
description: string;
|
|
9988
11416
|
};
|
|
9989
11417
|
};
|
|
9990
|
-
security: {
|
|
9991
|
-
jwtAuth: any[];
|
|
9992
|
-
}[];
|
|
9993
11418
|
tags: string[];
|
|
9994
11419
|
"x-async-capable": boolean;
|
|
9995
11420
|
};
|
|
@@ -10040,9 +11465,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10040
11465
|
description: string;
|
|
10041
11466
|
};
|
|
10042
11467
|
};
|
|
10043
|
-
security: {
|
|
10044
|
-
jwtAuth: any[];
|
|
10045
|
-
}[];
|
|
10046
11468
|
summary: string;
|
|
10047
11469
|
tags: string[];
|
|
10048
11470
|
"x-async-capable": boolean;
|
|
@@ -10074,9 +11496,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10074
11496
|
description: string;
|
|
10075
11497
|
};
|
|
10076
11498
|
};
|
|
10077
|
-
security: {
|
|
10078
|
-
jwtAuth: any[];
|
|
10079
|
-
}[];
|
|
10080
11499
|
summary: string;
|
|
10081
11500
|
tags: string[];
|
|
10082
11501
|
"x-async-capable": boolean;
|
|
@@ -10107,9 +11526,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10107
11526
|
description: string;
|
|
10108
11527
|
};
|
|
10109
11528
|
};
|
|
10110
|
-
security: {
|
|
10111
|
-
jwtAuth: any[];
|
|
10112
|
-
}[];
|
|
10113
11529
|
summary: string;
|
|
10114
11530
|
tags: string[];
|
|
10115
11531
|
"x-async-capable": boolean;
|
|
@@ -10148,9 +11564,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10148
11564
|
description: string;
|
|
10149
11565
|
};
|
|
10150
11566
|
};
|
|
10151
|
-
security: {
|
|
10152
|
-
jwtAuth: any[];
|
|
10153
|
-
}[];
|
|
10154
11567
|
summary: string;
|
|
10155
11568
|
tags: string[];
|
|
10156
11569
|
"x-async-capable": boolean;
|
|
@@ -10175,9 +11588,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10175
11588
|
description: string;
|
|
10176
11589
|
};
|
|
10177
11590
|
};
|
|
10178
|
-
security: {
|
|
10179
|
-
jwtAuth: any[];
|
|
10180
|
-
}[];
|
|
10181
11591
|
tags: string[];
|
|
10182
11592
|
"x-async-capable": boolean;
|
|
10183
11593
|
};
|
|
@@ -10206,9 +11616,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10206
11616
|
description: string;
|
|
10207
11617
|
};
|
|
10208
11618
|
};
|
|
10209
|
-
security: {
|
|
10210
|
-
jwtAuth: any[];
|
|
10211
|
-
}[];
|
|
10212
11619
|
tags: string[];
|
|
10213
11620
|
"x-async-capable": boolean;
|
|
10214
11621
|
};
|
|
@@ -10256,9 +11663,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10256
11663
|
description: string;
|
|
10257
11664
|
};
|
|
10258
11665
|
};
|
|
10259
|
-
security: {
|
|
10260
|
-
jwtAuth: any[];
|
|
10261
|
-
}[];
|
|
10262
11666
|
tags: string[];
|
|
10263
11667
|
"x-async-capable": boolean;
|
|
10264
11668
|
};
|
|
@@ -10306,9 +11710,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10306
11710
|
description: string;
|
|
10307
11711
|
};
|
|
10308
11712
|
};
|
|
10309
|
-
security: {
|
|
10310
|
-
jwtAuth: any[];
|
|
10311
|
-
}[];
|
|
10312
11713
|
tags: string[];
|
|
10313
11714
|
"x-async-capable": boolean;
|
|
10314
11715
|
};
|
|
@@ -10358,9 +11759,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10358
11759
|
description: string;
|
|
10359
11760
|
};
|
|
10360
11761
|
};
|
|
10361
|
-
security: {
|
|
10362
|
-
jwtAuth: any[];
|
|
10363
|
-
}[];
|
|
10364
11762
|
summary: string;
|
|
10365
11763
|
tags: string[];
|
|
10366
11764
|
"x-async-capable": boolean;
|
|
@@ -10411,9 +11809,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10411
11809
|
description: string;
|
|
10412
11810
|
};
|
|
10413
11811
|
};
|
|
10414
|
-
security: {
|
|
10415
|
-
jwtAuth: any[];
|
|
10416
|
-
}[];
|
|
10417
11812
|
summary: string;
|
|
10418
11813
|
tags: string[];
|
|
10419
11814
|
"x-async-capable": boolean;
|
|
@@ -10444,11 +11839,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10444
11839
|
description: string;
|
|
10445
11840
|
};
|
|
10446
11841
|
};
|
|
10447
|
-
security:
|
|
10448
|
-
jwtAuth: any[];
|
|
10449
|
-
} | {
|
|
10450
|
-
jwtAuth?: undefined;
|
|
10451
|
-
})[];
|
|
11842
|
+
security: {}[];
|
|
10452
11843
|
summary: string;
|
|
10453
11844
|
tags: string[];
|
|
10454
11845
|
"x-async-capable": boolean;
|
|
@@ -10483,11 +11874,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10483
11874
|
description: string;
|
|
10484
11875
|
};
|
|
10485
11876
|
};
|
|
10486
|
-
security:
|
|
10487
|
-
jwtAuth: any[];
|
|
10488
|
-
} | {
|
|
10489
|
-
jwtAuth?: undefined;
|
|
10490
|
-
})[];
|
|
11877
|
+
security: {}[];
|
|
10491
11878
|
summary: string;
|
|
10492
11879
|
tags: string[];
|
|
10493
11880
|
"x-async-capable": boolean;
|
|
@@ -10526,11 +11913,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10526
11913
|
description: string;
|
|
10527
11914
|
};
|
|
10528
11915
|
};
|
|
10529
|
-
security:
|
|
10530
|
-
jwtAuth: any[];
|
|
10531
|
-
} | {
|
|
10532
|
-
jwtAuth?: undefined;
|
|
10533
|
-
})[];
|
|
11916
|
+
security: {}[];
|
|
10534
11917
|
summary: string;
|
|
10535
11918
|
tags: string[];
|
|
10536
11919
|
"x-async-capable": boolean;
|
|
@@ -10565,11 +11948,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10565
11948
|
description: string;
|
|
10566
11949
|
};
|
|
10567
11950
|
};
|
|
10568
|
-
security:
|
|
10569
|
-
jwtAuth: any[];
|
|
10570
|
-
} | {
|
|
10571
|
-
jwtAuth?: undefined;
|
|
10572
|
-
})[];
|
|
11951
|
+
security: {}[];
|
|
10573
11952
|
summary: string;
|
|
10574
11953
|
tags: string[];
|
|
10575
11954
|
"x-async-capable": boolean;
|
|
@@ -10600,9 +11979,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10600
11979
|
description: string;
|
|
10601
11980
|
};
|
|
10602
11981
|
};
|
|
10603
|
-
security: {
|
|
10604
|
-
jwtAuth: any[];
|
|
10605
|
-
}[];
|
|
10606
11982
|
tags: string[];
|
|
10607
11983
|
"x-async-capable": boolean;
|
|
10608
11984
|
};
|
|
@@ -10663,9 +12039,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10663
12039
|
description: string;
|
|
10664
12040
|
};
|
|
10665
12041
|
};
|
|
10666
|
-
security: {
|
|
10667
|
-
jwtAuth: any[];
|
|
10668
|
-
}[];
|
|
10669
12042
|
summary: string;
|
|
10670
12043
|
tags: string[];
|
|
10671
12044
|
"x-async-capable": boolean;
|
|
@@ -10702,9 +12075,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10702
12075
|
description: string;
|
|
10703
12076
|
};
|
|
10704
12077
|
};
|
|
10705
|
-
security: {
|
|
10706
|
-
jwtAuth: any[];
|
|
10707
|
-
}[];
|
|
10708
12078
|
summary: string;
|
|
10709
12079
|
tags: string[];
|
|
10710
12080
|
"x-async-capable": boolean;
|
|
@@ -10726,9 +12096,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10726
12096
|
description: string;
|
|
10727
12097
|
};
|
|
10728
12098
|
};
|
|
10729
|
-
security: {
|
|
10730
|
-
jwtAuth: any[];
|
|
10731
|
-
}[];
|
|
10732
12099
|
summary: string;
|
|
10733
12100
|
tags: string[];
|
|
10734
12101
|
"x-async-capable": boolean;
|
|
@@ -10750,9 +12117,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10750
12117
|
description: string;
|
|
10751
12118
|
};
|
|
10752
12119
|
};
|
|
10753
|
-
security: {
|
|
10754
|
-
jwtAuth: any[];
|
|
10755
|
-
}[];
|
|
10756
12120
|
summary: string;
|
|
10757
12121
|
tags: string[];
|
|
10758
12122
|
"x-async-capable": boolean;
|
|
@@ -10777,9 +12141,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10777
12141
|
description: string;
|
|
10778
12142
|
};
|
|
10779
12143
|
};
|
|
10780
|
-
security: {
|
|
10781
|
-
jwtAuth: any[];
|
|
10782
|
-
}[];
|
|
10783
12144
|
tags: string[];
|
|
10784
12145
|
"x-async-capable": boolean;
|
|
10785
12146
|
};
|
|
@@ -10808,9 +12169,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10808
12169
|
description: string;
|
|
10809
12170
|
};
|
|
10810
12171
|
};
|
|
10811
|
-
security: {
|
|
10812
|
-
jwtAuth: any[];
|
|
10813
|
-
}[];
|
|
10814
12172
|
tags: string[];
|
|
10815
12173
|
"x-async-capable": boolean;
|
|
10816
12174
|
};
|
|
@@ -10853,9 +12211,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10853
12211
|
description: string;
|
|
10854
12212
|
};
|
|
10855
12213
|
};
|
|
10856
|
-
security: {
|
|
10857
|
-
jwtAuth: any[];
|
|
10858
|
-
}[];
|
|
10859
12214
|
tags: string[];
|
|
10860
12215
|
"x-async-capable": boolean;
|
|
10861
12216
|
};
|
|
@@ -10899,9 +12254,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10899
12254
|
description: string;
|
|
10900
12255
|
};
|
|
10901
12256
|
};
|
|
10902
|
-
security: {
|
|
10903
|
-
jwtAuth: any[];
|
|
10904
|
-
}[];
|
|
10905
12257
|
tags: string[];
|
|
10906
12258
|
"x-async-capable": boolean;
|
|
10907
12259
|
};
|
|
@@ -10932,9 +12284,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10932
12284
|
description: string;
|
|
10933
12285
|
};
|
|
10934
12286
|
};
|
|
10935
|
-
security: {
|
|
10936
|
-
jwtAuth: any[];
|
|
10937
|
-
}[];
|
|
10938
12287
|
summary: string;
|
|
10939
12288
|
tags: string[];
|
|
10940
12289
|
"x-async-capable": boolean;
|
|
@@ -10975,9 +12324,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10975
12324
|
description: string;
|
|
10976
12325
|
};
|
|
10977
12326
|
};
|
|
10978
|
-
security: {
|
|
10979
|
-
jwtAuth: any[];
|
|
10980
|
-
}[];
|
|
10981
12327
|
summary: string;
|
|
10982
12328
|
tags: string[];
|
|
10983
12329
|
"x-async-capable": boolean;
|
|
@@ -11033,9 +12379,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11033
12379
|
description: string;
|
|
11034
12380
|
};
|
|
11035
12381
|
};
|
|
11036
|
-
security: {
|
|
11037
|
-
jwtAuth: any[];
|
|
11038
|
-
}[];
|
|
11039
12382
|
summary: string;
|
|
11040
12383
|
tags: string[];
|
|
11041
12384
|
"x-async-capable": boolean;
|
|
@@ -11066,9 +12409,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11066
12409
|
description: string;
|
|
11067
12410
|
};
|
|
11068
12411
|
};
|
|
11069
|
-
security: {
|
|
11070
|
-
jwtAuth: any[];
|
|
11071
|
-
}[];
|
|
11072
12412
|
tags: string[];
|
|
11073
12413
|
"x-async-capable": boolean;
|
|
11074
12414
|
};
|
|
@@ -11107,9 +12447,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11107
12447
|
description: string;
|
|
11108
12448
|
};
|
|
11109
12449
|
};
|
|
11110
|
-
security: {
|
|
11111
|
-
jwtAuth: any[];
|
|
11112
|
-
}[];
|
|
11113
12450
|
tags: string[];
|
|
11114
12451
|
"x-async-capable": boolean;
|
|
11115
12452
|
};
|
|
@@ -11133,9 +12470,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11133
12470
|
description: string;
|
|
11134
12471
|
};
|
|
11135
12472
|
};
|
|
11136
|
-
security: {
|
|
11137
|
-
jwtAuth: any[];
|
|
11138
|
-
}[];
|
|
11139
12473
|
tags: string[];
|
|
11140
12474
|
"x-async-capable": boolean;
|
|
11141
12475
|
};
|
|
@@ -11164,9 +12498,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11164
12498
|
description: string;
|
|
11165
12499
|
};
|
|
11166
12500
|
};
|
|
11167
|
-
security: {
|
|
11168
|
-
jwtAuth: any[];
|
|
11169
|
-
}[];
|
|
11170
12501
|
tags: string[];
|
|
11171
12502
|
"x-async-capable": boolean;
|
|
11172
12503
|
};
|
|
@@ -11214,9 +12545,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11214
12545
|
description: string;
|
|
11215
12546
|
};
|
|
11216
12547
|
};
|
|
11217
|
-
security: {
|
|
11218
|
-
jwtAuth: any[];
|
|
11219
|
-
}[];
|
|
11220
12548
|
tags: string[];
|
|
11221
12549
|
"x-async-capable": boolean;
|
|
11222
12550
|
};
|
|
@@ -11265,9 +12593,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11265
12593
|
description: string;
|
|
11266
12594
|
};
|
|
11267
12595
|
};
|
|
11268
|
-
security: {
|
|
11269
|
-
jwtAuth: any[];
|
|
11270
|
-
}[];
|
|
11271
12596
|
tags: string[];
|
|
11272
12597
|
"x-async-capable": boolean;
|
|
11273
12598
|
};
|
|
@@ -11298,9 +12623,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11298
12623
|
description: string;
|
|
11299
12624
|
};
|
|
11300
12625
|
};
|
|
11301
|
-
security: {
|
|
11302
|
-
jwtAuth: any[];
|
|
11303
|
-
}[];
|
|
11304
12626
|
summary: string;
|
|
11305
12627
|
tags: string[];
|
|
11306
12628
|
"x-async-capable": boolean;
|
|
@@ -11352,9 +12674,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11352
12674
|
description: string;
|
|
11353
12675
|
};
|
|
11354
12676
|
};
|
|
11355
|
-
security: {
|
|
11356
|
-
jwtAuth: any[];
|
|
11357
|
-
}[];
|
|
11358
12677
|
summary: string;
|
|
11359
12678
|
tags: string[];
|
|
11360
12679
|
"x-async-capable": boolean;
|
|
@@ -11385,9 +12704,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11385
12704
|
description: string;
|
|
11386
12705
|
};
|
|
11387
12706
|
};
|
|
11388
|
-
security: {
|
|
11389
|
-
jwtAuth: any[];
|
|
11390
|
-
}[];
|
|
11391
12707
|
tags: string[];
|
|
11392
12708
|
"x-async-capable": boolean;
|
|
11393
12709
|
};
|
|
@@ -11426,9 +12742,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11426
12742
|
description: string;
|
|
11427
12743
|
};
|
|
11428
12744
|
};
|
|
11429
|
-
security: {
|
|
11430
|
-
jwtAuth: any[];
|
|
11431
|
-
}[];
|
|
11432
12745
|
tags: string[];
|
|
11433
12746
|
"x-async-capable": boolean;
|
|
11434
12747
|
};
|
|
@@ -11452,9 +12765,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11452
12765
|
description: string;
|
|
11453
12766
|
};
|
|
11454
12767
|
};
|
|
11455
|
-
security: {
|
|
11456
|
-
jwtAuth: any[];
|
|
11457
|
-
}[];
|
|
11458
12768
|
tags: string[];
|
|
11459
12769
|
"x-async-capable": boolean;
|
|
11460
12770
|
};
|
|
@@ -11483,9 +12793,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11483
12793
|
description: string;
|
|
11484
12794
|
};
|
|
11485
12795
|
};
|
|
11486
|
-
security: {
|
|
11487
|
-
jwtAuth: any[];
|
|
11488
|
-
}[];
|
|
11489
12796
|
tags: string[];
|
|
11490
12797
|
"x-async-capable": boolean;
|
|
11491
12798
|
};
|
|
@@ -11533,9 +12840,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11533
12840
|
description: string;
|
|
11534
12841
|
};
|
|
11535
12842
|
};
|
|
11536
|
-
security: {
|
|
11537
|
-
jwtAuth: any[];
|
|
11538
|
-
}[];
|
|
11539
12843
|
tags: string[];
|
|
11540
12844
|
"x-async-capable": boolean;
|
|
11541
12845
|
};
|
|
@@ -11583,10 +12887,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11583
12887
|
};
|
|
11584
12888
|
description: string;
|
|
11585
12889
|
};
|
|
11586
|
-
};
|
|
11587
|
-
security: {
|
|
11588
|
-
jwtAuth: any[];
|
|
11589
|
-
}[];
|
|
12890
|
+
};
|
|
11590
12891
|
tags: string[];
|
|
11591
12892
|
"x-async-capable": boolean;
|
|
11592
12893
|
};
|
|
@@ -11626,9 +12927,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11626
12927
|
description: string;
|
|
11627
12928
|
};
|
|
11628
12929
|
};
|
|
11629
|
-
security: {
|
|
11630
|
-
jwtAuth: any[];
|
|
11631
|
-
}[];
|
|
11632
12930
|
summary: string;
|
|
11633
12931
|
tags: string[];
|
|
11634
12932
|
"x-async-capable": boolean;
|
|
@@ -11660,9 +12958,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11660
12958
|
description: string;
|
|
11661
12959
|
};
|
|
11662
12960
|
};
|
|
11663
|
-
security: {
|
|
11664
|
-
jwtAuth: any[];
|
|
11665
|
-
}[];
|
|
11666
12961
|
summary: string;
|
|
11667
12962
|
tags: string[];
|
|
11668
12963
|
"x-async-capable": boolean;
|
|
@@ -11693,11 +12988,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11693
12988
|
description: string;
|
|
11694
12989
|
};
|
|
11695
12990
|
};
|
|
11696
|
-
security:
|
|
11697
|
-
jwtAuth: any[];
|
|
11698
|
-
} | {
|
|
11699
|
-
jwtAuth?: undefined;
|
|
11700
|
-
})[];
|
|
12991
|
+
security: {}[];
|
|
11701
12992
|
tags: string[];
|
|
11702
12993
|
"x-async-capable": boolean;
|
|
11703
12994
|
};
|
|
@@ -11736,11 +13027,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11736
13027
|
description: string;
|
|
11737
13028
|
};
|
|
11738
13029
|
};
|
|
11739
|
-
security:
|
|
11740
|
-
jwtAuth: any[];
|
|
11741
|
-
} | {
|
|
11742
|
-
jwtAuth?: undefined;
|
|
11743
|
-
})[];
|
|
13030
|
+
security: {}[];
|
|
11744
13031
|
tags: string[];
|
|
11745
13032
|
"x-async-capable": boolean;
|
|
11746
13033
|
};
|
|
@@ -11807,11 +13094,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11807
13094
|
description: string;
|
|
11808
13095
|
};
|
|
11809
13096
|
};
|
|
11810
|
-
security:
|
|
11811
|
-
jwtAuth: any[];
|
|
11812
|
-
} | {
|
|
11813
|
-
jwtAuth?: undefined;
|
|
11814
|
-
})[];
|
|
13097
|
+
security: {}[];
|
|
11815
13098
|
summary: string;
|
|
11816
13099
|
tags: string[];
|
|
11817
13100
|
"x-async-capable": boolean;
|
|
@@ -11835,11 +13118,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11835
13118
|
description: string;
|
|
11836
13119
|
};
|
|
11837
13120
|
};
|
|
11838
|
-
security:
|
|
11839
|
-
jwtAuth: any[];
|
|
11840
|
-
} | {
|
|
11841
|
-
jwtAuth?: undefined;
|
|
11842
|
-
})[];
|
|
13121
|
+
security: {}[];
|
|
11843
13122
|
tags: string[];
|
|
11844
13123
|
"x-async-capable": boolean;
|
|
11845
13124
|
};
|
|
@@ -11867,11 +13146,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11867
13146
|
description: string;
|
|
11868
13147
|
};
|
|
11869
13148
|
};
|
|
11870
|
-
security:
|
|
11871
|
-
jwtAuth: any[];
|
|
11872
|
-
} | {
|
|
11873
|
-
jwtAuth?: undefined;
|
|
11874
|
-
})[];
|
|
13149
|
+
security: {}[];
|
|
11875
13150
|
tags: string[];
|
|
11876
13151
|
"x-async-capable": boolean;
|
|
11877
13152
|
};
|
|
@@ -11918,11 +13193,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11918
13193
|
description: string;
|
|
11919
13194
|
};
|
|
11920
13195
|
};
|
|
11921
|
-
security:
|
|
11922
|
-
jwtAuth: any[];
|
|
11923
|
-
} | {
|
|
11924
|
-
jwtAuth?: undefined;
|
|
11925
|
-
})[];
|
|
13196
|
+
security: {}[];
|
|
11926
13197
|
tags: string[];
|
|
11927
13198
|
"x-async-capable": boolean;
|
|
11928
13199
|
};
|
|
@@ -11970,11 +13241,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11970
13241
|
description: string;
|
|
11971
13242
|
};
|
|
11972
13243
|
};
|
|
11973
|
-
security:
|
|
11974
|
-
jwtAuth: any[];
|
|
11975
|
-
} | {
|
|
11976
|
-
jwtAuth?: undefined;
|
|
11977
|
-
})[];
|
|
13244
|
+
security: {}[];
|
|
11978
13245
|
tags: string[];
|
|
11979
13246
|
"x-async-capable": boolean;
|
|
11980
13247
|
};
|
|
@@ -12025,9 +13292,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12025
13292
|
description: string;
|
|
12026
13293
|
};
|
|
12027
13294
|
};
|
|
12028
|
-
security: {
|
|
12029
|
-
jwtAuth: any[];
|
|
12030
|
-
}[];
|
|
12031
13295
|
summary: string;
|
|
12032
13296
|
tags: string[];
|
|
12033
13297
|
"x-async-capable": boolean;
|
|
@@ -12058,9 +13322,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12058
13322
|
description: string;
|
|
12059
13323
|
};
|
|
12060
13324
|
};
|
|
12061
|
-
security: {
|
|
12062
|
-
jwtAuth: any[];
|
|
12063
|
-
}[];
|
|
12064
13325
|
summary: string;
|
|
12065
13326
|
tags: string[];
|
|
12066
13327
|
"x-async-capable": boolean;
|
|
@@ -12100,9 +13361,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12100
13361
|
description: string;
|
|
12101
13362
|
};
|
|
12102
13363
|
};
|
|
12103
|
-
security: {
|
|
12104
|
-
jwtAuth: any[];
|
|
12105
|
-
}[];
|
|
12106
13364
|
summary: string;
|
|
12107
13365
|
tags: string[];
|
|
12108
13366
|
"x-async-capable": boolean;
|
|
@@ -12164,9 +13422,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12164
13422
|
description: string;
|
|
12165
13423
|
};
|
|
12166
13424
|
};
|
|
12167
|
-
security: {
|
|
12168
|
-
jwtAuth: any[];
|
|
12169
|
-
}[];
|
|
12170
13425
|
summary: string;
|
|
12171
13426
|
tags: string[];
|
|
12172
13427
|
"x-async-capable": boolean;
|
|
@@ -12189,9 +13444,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12189
13444
|
description: string;
|
|
12190
13445
|
};
|
|
12191
13446
|
};
|
|
12192
|
-
security: {
|
|
12193
|
-
jwtAuth: any[];
|
|
12194
|
-
}[];
|
|
12195
13447
|
summary: string;
|
|
12196
13448
|
tags: string[];
|
|
12197
13449
|
"x-async-capable": boolean;
|
|
@@ -12219,9 +13471,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12219
13471
|
description: string;
|
|
12220
13472
|
};
|
|
12221
13473
|
};
|
|
12222
|
-
security: {
|
|
12223
|
-
jwtAuth: any[];
|
|
12224
|
-
}[];
|
|
12225
13474
|
summary: string;
|
|
12226
13475
|
tags: string[];
|
|
12227
13476
|
"x-async-capable": boolean;
|
|
@@ -12268,9 +13517,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12268
13517
|
description: string;
|
|
12269
13518
|
};
|
|
12270
13519
|
};
|
|
12271
|
-
security: {
|
|
12272
|
-
jwtAuth: any[];
|
|
12273
|
-
}[];
|
|
12274
13520
|
tags: string[];
|
|
12275
13521
|
"x-async-capable": boolean;
|
|
12276
13522
|
};
|
|
@@ -12317,9 +13563,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12317
13563
|
description: string;
|
|
12318
13564
|
};
|
|
12319
13565
|
};
|
|
12320
|
-
security: {
|
|
12321
|
-
jwtAuth: any[];
|
|
12322
|
-
}[];
|
|
12323
13566
|
summary: string;
|
|
12324
13567
|
tags: string[];
|
|
12325
13568
|
"x-async-capable": boolean;
|
|
@@ -12350,9 +13593,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12350
13593
|
description: string;
|
|
12351
13594
|
};
|
|
12352
13595
|
};
|
|
12353
|
-
security: {
|
|
12354
|
-
jwtAuth: any[];
|
|
12355
|
-
}[];
|
|
12356
13596
|
summary: string;
|
|
12357
13597
|
tags: string[];
|
|
12358
13598
|
"x-async-capable": boolean;
|
|
@@ -12383,11 +13623,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12383
13623
|
description: string;
|
|
12384
13624
|
};
|
|
12385
13625
|
};
|
|
12386
|
-
security:
|
|
12387
|
-
jwtAuth: any[];
|
|
12388
|
-
} | {
|
|
12389
|
-
jwtAuth?: undefined;
|
|
12390
|
-
})[];
|
|
13626
|
+
security: {}[];
|
|
12391
13627
|
summary: string;
|
|
12392
13628
|
tags: string[];
|
|
12393
13629
|
"x-async-capable": boolean;
|
|
@@ -12417,11 +13653,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12417
13653
|
description: string;
|
|
12418
13654
|
};
|
|
12419
13655
|
};
|
|
12420
|
-
security:
|
|
12421
|
-
jwtAuth: any[];
|
|
12422
|
-
} | {
|
|
12423
|
-
jwtAuth?: undefined;
|
|
12424
|
-
})[];
|
|
13656
|
+
security: {}[];
|
|
12425
13657
|
summary: string;
|
|
12426
13658
|
tags: string[];
|
|
12427
13659
|
"x-async-capable": boolean;
|
|
@@ -12483,11 +13715,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12483
13715
|
description: string;
|
|
12484
13716
|
};
|
|
12485
13717
|
};
|
|
12486
|
-
security:
|
|
12487
|
-
jwtAuth: any[];
|
|
12488
|
-
} | {
|
|
12489
|
-
jwtAuth?: undefined;
|
|
12490
|
-
})[];
|
|
13718
|
+
security: {}[];
|
|
12491
13719
|
summary: string;
|
|
12492
13720
|
tags: string[];
|
|
12493
13721
|
"x-async-capable": boolean;
|
|
@@ -12518,9 +13746,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12518
13746
|
description: string;
|
|
12519
13747
|
};
|
|
12520
13748
|
};
|
|
12521
|
-
security: {
|
|
12522
|
-
jwtAuth: any[];
|
|
12523
|
-
}[];
|
|
12524
13749
|
summary: string;
|
|
12525
13750
|
tags: string[];
|
|
12526
13751
|
"x-async-capable": boolean;
|
|
@@ -12572,11 +13797,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12572
13797
|
description: string;
|
|
12573
13798
|
};
|
|
12574
13799
|
};
|
|
12575
|
-
security:
|
|
12576
|
-
jwtAuth: any[];
|
|
12577
|
-
} | {
|
|
12578
|
-
jwtAuth?: undefined;
|
|
12579
|
-
})[];
|
|
13800
|
+
security: {}[];
|
|
12580
13801
|
summary: string;
|
|
12581
13802
|
tags: string[];
|
|
12582
13803
|
"x-async-capable": boolean;
|
|
@@ -12617,11 +13838,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12617
13838
|
description: string;
|
|
12618
13839
|
};
|
|
12619
13840
|
};
|
|
12620
|
-
security:
|
|
12621
|
-
jwtAuth: any[];
|
|
12622
|
-
} | {
|
|
12623
|
-
jwtAuth?: undefined;
|
|
12624
|
-
})[];
|
|
13841
|
+
security: {}[];
|
|
12625
13842
|
tags: string[];
|
|
12626
13843
|
"x-async-capable": boolean;
|
|
12627
13844
|
};
|
|
@@ -12670,11 +13887,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12670
13887
|
description: string;
|
|
12671
13888
|
};
|
|
12672
13889
|
};
|
|
12673
|
-
security:
|
|
12674
|
-
jwtAuth: any[];
|
|
12675
|
-
} | {
|
|
12676
|
-
jwtAuth?: undefined;
|
|
12677
|
-
})[];
|
|
13890
|
+
security: {}[];
|
|
12678
13891
|
summary: string;
|
|
12679
13892
|
tags: string[];
|
|
12680
13893
|
"x-async-capable": boolean;
|
|
@@ -12714,11 +13927,7 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12714
13927
|
description: string;
|
|
12715
13928
|
};
|
|
12716
13929
|
};
|
|
12717
|
-
security:
|
|
12718
|
-
jwtAuth: any[];
|
|
12719
|
-
} | {
|
|
12720
|
-
jwtAuth?: undefined;
|
|
12721
|
-
})[];
|
|
13930
|
+
security: {}[];
|
|
12722
13931
|
tags: string[];
|
|
12723
13932
|
"x-async-capable": boolean;
|
|
12724
13933
|
};
|
|
@@ -12739,9 +13948,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12739
13948
|
description: string;
|
|
12740
13949
|
};
|
|
12741
13950
|
};
|
|
12742
|
-
security: {
|
|
12743
|
-
jwtAuth: any[];
|
|
12744
|
-
}[];
|
|
12745
13951
|
summary: string;
|
|
12746
13952
|
tags: string[];
|
|
12747
13953
|
"x-async-capable": boolean;
|
|
@@ -12766,9 +13972,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12766
13972
|
description: string;
|
|
12767
13973
|
};
|
|
12768
13974
|
};
|
|
12769
|
-
security: {
|
|
12770
|
-
jwtAuth: any[];
|
|
12771
|
-
}[];
|
|
12772
13975
|
summary: string;
|
|
12773
13976
|
tags: string[];
|
|
12774
13977
|
"x-async-capable": boolean;
|
|
@@ -12799,9 +14002,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12799
14002
|
description: string;
|
|
12800
14003
|
};
|
|
12801
14004
|
};
|
|
12802
|
-
security: {
|
|
12803
|
-
jwtAuth: any[];
|
|
12804
|
-
}[];
|
|
12805
14005
|
tags: string[];
|
|
12806
14006
|
"x-async-capable": boolean;
|
|
12807
14007
|
};
|
|
@@ -12822,9 +14022,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12822
14022
|
description: string;
|
|
12823
14023
|
};
|
|
12824
14024
|
};
|
|
12825
|
-
security: {
|
|
12826
|
-
jwtAuth: any[];
|
|
12827
|
-
}[];
|
|
12828
14025
|
tags: string[];
|
|
12829
14026
|
"x-async-capable": boolean;
|
|
12830
14027
|
};
|
|
@@ -12853,9 +14050,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12853
14050
|
description: string;
|
|
12854
14051
|
};
|
|
12855
14052
|
};
|
|
12856
|
-
security: {
|
|
12857
|
-
jwtAuth: any[];
|
|
12858
|
-
}[];
|
|
12859
14053
|
tags: string[];
|
|
12860
14054
|
"x-async-capable": boolean;
|
|
12861
14055
|
};
|
|
@@ -12884,9 +14078,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12884
14078
|
description: string;
|
|
12885
14079
|
};
|
|
12886
14080
|
};
|
|
12887
|
-
security: {
|
|
12888
|
-
jwtAuth: any[];
|
|
12889
|
-
}[];
|
|
12890
14081
|
tags: string[];
|
|
12891
14082
|
"x-async-capable": boolean;
|
|
12892
14083
|
};
|
|
@@ -12915,9 +14106,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12915
14106
|
description: string;
|
|
12916
14107
|
};
|
|
12917
14108
|
};
|
|
12918
|
-
security: {
|
|
12919
|
-
jwtAuth: any[];
|
|
12920
|
-
}[];
|
|
12921
14109
|
tags: string[];
|
|
12922
14110
|
"x-async-capable": boolean;
|
|
12923
14111
|
};
|
|
@@ -12949,9 +14137,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12949
14137
|
description: string;
|
|
12950
14138
|
};
|
|
12951
14139
|
};
|
|
12952
|
-
security: {
|
|
12953
|
-
jwtAuth: any[];
|
|
12954
|
-
}[];
|
|
12955
14140
|
summary: string;
|
|
12956
14141
|
tags: string[];
|
|
12957
14142
|
"x-async-capable": boolean;
|
|
@@ -12982,9 +14167,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12982
14167
|
description: string;
|
|
12983
14168
|
};
|
|
12984
14169
|
};
|
|
12985
|
-
security: {
|
|
12986
|
-
jwtAuth: any[];
|
|
12987
|
-
}[];
|
|
12988
14170
|
tags: string[];
|
|
12989
14171
|
"x-async-capable": boolean;
|
|
12990
14172
|
};
|
|
@@ -13023,9 +14205,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13023
14205
|
description: string;
|
|
13024
14206
|
};
|
|
13025
14207
|
};
|
|
13026
|
-
security: {
|
|
13027
|
-
jwtAuth: any[];
|
|
13028
|
-
}[];
|
|
13029
14208
|
tags: string[];
|
|
13030
14209
|
"x-async-capable": boolean;
|
|
13031
14210
|
};
|
|
@@ -13065,9 +14244,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13065
14244
|
description: string;
|
|
13066
14245
|
};
|
|
13067
14246
|
};
|
|
13068
|
-
security: {
|
|
13069
|
-
jwtAuth: any[];
|
|
13070
|
-
}[];
|
|
13071
14247
|
tags: string[];
|
|
13072
14248
|
"x-async-capable": boolean;
|
|
13073
14249
|
};
|
|
@@ -13116,9 +14292,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13116
14292
|
description: string;
|
|
13117
14293
|
};
|
|
13118
14294
|
};
|
|
13119
|
-
security: {
|
|
13120
|
-
jwtAuth: any[];
|
|
13121
|
-
}[];
|
|
13122
14295
|
tags: string[];
|
|
13123
14296
|
"x-async-capable": boolean;
|
|
13124
14297
|
};
|
|
@@ -13142,9 +14315,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13142
14315
|
description: string;
|
|
13143
14316
|
};
|
|
13144
14317
|
};
|
|
13145
|
-
security: {
|
|
13146
|
-
jwtAuth: any[];
|
|
13147
|
-
}[];
|
|
13148
14318
|
tags: string[];
|
|
13149
14319
|
"x-async-capable": boolean;
|
|
13150
14320
|
};
|
|
@@ -13173,9 +14343,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13173
14343
|
description: string;
|
|
13174
14344
|
};
|
|
13175
14345
|
};
|
|
13176
|
-
security: {
|
|
13177
|
-
jwtAuth: any[];
|
|
13178
|
-
}[];
|
|
13179
14346
|
tags: string[];
|
|
13180
14347
|
"x-async-capable": boolean;
|
|
13181
14348
|
};
|
|
@@ -13223,9 +14390,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13223
14390
|
description: string;
|
|
13224
14391
|
};
|
|
13225
14392
|
};
|
|
13226
|
-
security: {
|
|
13227
|
-
jwtAuth: any[];
|
|
13228
|
-
}[];
|
|
13229
14393
|
tags: string[];
|
|
13230
14394
|
"x-async-capable": boolean;
|
|
13231
14395
|
};
|
|
@@ -13274,9 +14438,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13274
14438
|
description: string;
|
|
13275
14439
|
};
|
|
13276
14440
|
};
|
|
13277
|
-
security: {
|
|
13278
|
-
jwtAuth: any[];
|
|
13279
|
-
}[];
|
|
13280
14441
|
tags: string[];
|
|
13281
14442
|
"x-async-capable": boolean;
|
|
13282
14443
|
};
|
|
@@ -13300,9 +14461,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13300
14461
|
description: string;
|
|
13301
14462
|
};
|
|
13302
14463
|
};
|
|
13303
|
-
security: {
|
|
13304
|
-
jwtAuth: any[];
|
|
13305
|
-
}[];
|
|
13306
14464
|
tags: string[];
|
|
13307
14465
|
"x-async-capable": boolean;
|
|
13308
14466
|
};
|
|
@@ -13331,9 +14489,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13331
14489
|
description: string;
|
|
13332
14490
|
};
|
|
13333
14491
|
};
|
|
13334
|
-
security: {
|
|
13335
|
-
jwtAuth: any[];
|
|
13336
|
-
}[];
|
|
13337
14492
|
tags: string[];
|
|
13338
14493
|
"x-async-capable": boolean;
|
|
13339
14494
|
};
|
|
@@ -13381,9 +14536,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13381
14536
|
description: string;
|
|
13382
14537
|
};
|
|
13383
14538
|
};
|
|
13384
|
-
security: {
|
|
13385
|
-
jwtAuth: any[];
|
|
13386
|
-
}[];
|
|
13387
14539
|
tags: string[];
|
|
13388
14540
|
"x-async-capable": boolean;
|
|
13389
14541
|
};
|
|
@@ -13432,9 +14584,6 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13432
14584
|
description: string;
|
|
13433
14585
|
};
|
|
13434
14586
|
};
|
|
13435
|
-
security: {
|
|
13436
|
-
jwtAuth: any[];
|
|
13437
|
-
}[];
|
|
13438
14587
|
tags: string[];
|
|
13439
14588
|
"x-async-capable": boolean;
|
|
13440
14589
|
};
|
|
@@ -15114,6 +16263,73 @@ declare const LeadSubmissionResponseSchema: z.ZodObject<{
|
|
|
15114
16263
|
*/
|
|
15115
16264
|
type LeadSubmissionResponse = z.infer<typeof LeadSubmissionResponseSchema>;
|
|
15116
16265
|
|
|
16266
|
+
/**
|
|
16267
|
+
* Zod schema for LoadTestRequestRequest
|
|
16268
|
+
*
|
|
16269
|
+
* This schema provides runtime validation and type inference.
|
|
16270
|
+
* * Serializer for load test request input.
|
|
16271
|
+
* */
|
|
16272
|
+
|
|
16273
|
+
/**
|
|
16274
|
+
* Serializer for load test request input.
|
|
16275
|
+
*/
|
|
16276
|
+
declare const LoadTestRequestRequestSchema: z.ZodObject<{
|
|
16277
|
+
method: z.ZodString;
|
|
16278
|
+
total_requests: z.ZodInt;
|
|
16279
|
+
concurrency: z.ZodInt;
|
|
16280
|
+
params: z.ZodOptional<z.ZodString>;
|
|
16281
|
+
}, z.core.$strip>;
|
|
16282
|
+
/**
|
|
16283
|
+
* Infer TypeScript type from Zod schema
|
|
16284
|
+
*/
|
|
16285
|
+
type LoadTestRequestRequest = z.infer<typeof LoadTestRequestRequestSchema>;
|
|
16286
|
+
|
|
16287
|
+
/**
|
|
16288
|
+
* Zod schema for LoadTestResponse
|
|
16289
|
+
*
|
|
16290
|
+
* This schema provides runtime validation and type inference.
|
|
16291
|
+
* * Serializer for load test response.
|
|
16292
|
+
* */
|
|
16293
|
+
|
|
16294
|
+
/**
|
|
16295
|
+
* Serializer for load test response.
|
|
16296
|
+
*/
|
|
16297
|
+
declare const LoadTestResponseSchema: z.ZodObject<{
|
|
16298
|
+
test_id: z.ZodString;
|
|
16299
|
+
started: z.ZodBoolean;
|
|
16300
|
+
message: z.ZodString;
|
|
16301
|
+
}, z.core.$strip>;
|
|
16302
|
+
/**
|
|
16303
|
+
* Infer TypeScript type from Zod schema
|
|
16304
|
+
*/
|
|
16305
|
+
type LoadTestResponse = z.infer<typeof LoadTestResponseSchema>;
|
|
16306
|
+
|
|
16307
|
+
/**
|
|
16308
|
+
* Zod schema for LoadTestStatus
|
|
16309
|
+
*
|
|
16310
|
+
* This schema provides runtime validation and type inference.
|
|
16311
|
+
* * Serializer for load test status.
|
|
16312
|
+
* */
|
|
16313
|
+
|
|
16314
|
+
/**
|
|
16315
|
+
* Serializer for load test status.
|
|
16316
|
+
*/
|
|
16317
|
+
declare const LoadTestStatusSchema: z.ZodObject<{
|
|
16318
|
+
test_id: z.ZodNullable<z.ZodString>;
|
|
16319
|
+
running: z.ZodBoolean;
|
|
16320
|
+
progress: z.ZodInt;
|
|
16321
|
+
total: z.ZodInt;
|
|
16322
|
+
success_count: z.ZodInt;
|
|
16323
|
+
failed_count: z.ZodInt;
|
|
16324
|
+
avg_duration_ms: z.ZodNumber;
|
|
16325
|
+
elapsed_time: z.ZodNumber;
|
|
16326
|
+
rps: z.ZodNumber;
|
|
16327
|
+
}, z.core.$strip>;
|
|
16328
|
+
/**
|
|
16329
|
+
* Infer TypeScript type from Zod schema
|
|
16330
|
+
*/
|
|
16331
|
+
type LoadTestStatus = z.infer<typeof LoadTestStatusSchema>;
|
|
16332
|
+
|
|
15117
16333
|
/**
|
|
15118
16334
|
* Zod schema for Message
|
|
15119
16335
|
*
|
|
@@ -15183,6 +16399,58 @@ declare const MessageRequestSchema: z.ZodObject<{
|
|
|
15183
16399
|
*/
|
|
15184
16400
|
type MessageRequest = z.infer<typeof MessageRequestSchema>;
|
|
15185
16401
|
|
|
16402
|
+
/**
|
|
16403
|
+
* Zod schema for MethodStat
|
|
16404
|
+
*
|
|
16405
|
+
* This schema provides runtime validation and type inference.
|
|
16406
|
+
* * Serializer for individual method statistics.
|
|
16407
|
+
* */
|
|
16408
|
+
|
|
16409
|
+
/**
|
|
16410
|
+
* Serializer for individual method statistics.
|
|
16411
|
+
*/
|
|
16412
|
+
declare const MethodStatSchema: z.ZodObject<{
|
|
16413
|
+
method: z.ZodString;
|
|
16414
|
+
count: z.ZodInt;
|
|
16415
|
+
percentage: z.ZodNumber;
|
|
16416
|
+
avg_time_ms: z.ZodOptional<z.ZodNumber>;
|
|
16417
|
+
avg_time: z.ZodOptional<z.ZodNumber>;
|
|
16418
|
+
success_rate: z.ZodOptional<z.ZodNumber>;
|
|
16419
|
+
last_called: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16420
|
+
}, z.core.$strip>;
|
|
16421
|
+
/**
|
|
16422
|
+
* Infer TypeScript type from Zod schema
|
|
16423
|
+
*/
|
|
16424
|
+
type MethodStat = z.infer<typeof MethodStatSchema>;
|
|
16425
|
+
|
|
16426
|
+
/**
|
|
16427
|
+
* Zod schema for MethodStats
|
|
16428
|
+
*
|
|
16429
|
+
* This schema provides runtime validation and type inference.
|
|
16430
|
+
* * Serializer for method statistics response.
|
|
16431
|
+
* */
|
|
16432
|
+
|
|
16433
|
+
/**
|
|
16434
|
+
* Serializer for method statistics response.
|
|
16435
|
+
*/
|
|
16436
|
+
declare const MethodStatsSchema: z.ZodObject<{
|
|
16437
|
+
methods: z.ZodArray<z.ZodObject<{
|
|
16438
|
+
method: z.ZodString;
|
|
16439
|
+
count: z.ZodInt;
|
|
16440
|
+
percentage: z.ZodNumber;
|
|
16441
|
+
avg_time_ms: z.ZodOptional<z.ZodNumber>;
|
|
16442
|
+
avg_time: z.ZodOptional<z.ZodNumber>;
|
|
16443
|
+
success_rate: z.ZodOptional<z.ZodNumber>;
|
|
16444
|
+
last_called: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16445
|
+
}, z.core.$strip>>;
|
|
16446
|
+
count: z.ZodInt;
|
|
16447
|
+
total_calls: z.ZodInt;
|
|
16448
|
+
}, z.core.$strip>;
|
|
16449
|
+
/**
|
|
16450
|
+
* Infer TypeScript type from Zod schema
|
|
16451
|
+
*/
|
|
16452
|
+
type MethodStats = z.infer<typeof MethodStatsSchema>;
|
|
16453
|
+
|
|
15186
16454
|
/**
|
|
15187
16455
|
* Zod schema for Newsletter
|
|
15188
16456
|
*
|
|
@@ -15290,6 +16558,30 @@ declare const NewsletterSubscriptionSchema: z.ZodObject<{
|
|
|
15290
16558
|
*/
|
|
15291
16559
|
type NewsletterSubscription = z.infer<typeof NewsletterSubscriptionSchema>;
|
|
15292
16560
|
|
|
16561
|
+
/**
|
|
16562
|
+
* Zod schema for NotificationStats
|
|
16563
|
+
*
|
|
16564
|
+
* This schema provides runtime validation and type inference.
|
|
16565
|
+
* * Serializer for notification statistics.
|
|
16566
|
+
* */
|
|
16567
|
+
|
|
16568
|
+
/**
|
|
16569
|
+
* Serializer for notification statistics.
|
|
16570
|
+
*/
|
|
16571
|
+
declare const NotificationStatsSchema: z.ZodObject<{
|
|
16572
|
+
total_sent: z.ZodInt;
|
|
16573
|
+
delivery_rate: z.ZodNumber;
|
|
16574
|
+
by_type: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16575
|
+
recent: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16576
|
+
last_sent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16577
|
+
timestamp: z.ZodOptional<z.ZodString>;
|
|
16578
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16579
|
+
}, z.core.$strip>;
|
|
16580
|
+
/**
|
|
16581
|
+
* Infer TypeScript type from Zod schema
|
|
16582
|
+
*/
|
|
16583
|
+
type NotificationStats = z.infer<typeof NotificationStatsSchema>;
|
|
16584
|
+
|
|
15293
16585
|
/**
|
|
15294
16586
|
* Zod schema for OTPErrorResponse
|
|
15295
16587
|
*
|
|
@@ -15404,6 +16696,34 @@ declare const OTPVerifyResponseSchema: z.ZodObject<{
|
|
|
15404
16696
|
*/
|
|
15405
16697
|
type OTPVerifyResponse = z.infer<typeof OTPVerifyResponseSchema>;
|
|
15406
16698
|
|
|
16699
|
+
/**
|
|
16700
|
+
* Zod schema for OverviewStats
|
|
16701
|
+
*
|
|
16702
|
+
* This schema provides runtime validation and type inference.
|
|
16703
|
+
* * Serializer for overview statistics.
|
|
16704
|
+
* */
|
|
16705
|
+
|
|
16706
|
+
/**
|
|
16707
|
+
* Serializer for overview statistics.
|
|
16708
|
+
*/
|
|
16709
|
+
declare const OverviewStatsSchema: z.ZodObject<{
|
|
16710
|
+
redis_connected: z.ZodOptional<z.ZodBoolean>;
|
|
16711
|
+
total_requests_today: z.ZodInt;
|
|
16712
|
+
total_requests_hour: z.ZodOptional<z.ZodInt>;
|
|
16713
|
+
active_methods: z.ZodArray<z.ZodString>;
|
|
16714
|
+
top_method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16715
|
+
method_counts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16716
|
+
avg_response_time_ms: z.ZodNumber;
|
|
16717
|
+
success_rate: z.ZodNumber;
|
|
16718
|
+
error_rate: z.ZodOptional<z.ZodNumber>;
|
|
16719
|
+
timestamp: z.ZodOptional<z.ZodString>;
|
|
16720
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16721
|
+
}, z.core.$strip>;
|
|
16722
|
+
/**
|
|
16723
|
+
* Infer TypeScript type from Zod schema
|
|
16724
|
+
*/
|
|
16725
|
+
type OverviewStats = z.infer<typeof OverviewStatsSchema>;
|
|
16726
|
+
|
|
15407
16727
|
declare const PaginatedArchiveItemChunkListSchema: z.ZodObject<{
|
|
15408
16728
|
count: z.ZodInt;
|
|
15409
16729
|
page: z.ZodInt;
|
|
@@ -16409,6 +17729,58 @@ declare const QuickHealthSchema: z.ZodObject<{
|
|
|
16409
17729
|
*/
|
|
16410
17730
|
type QuickHealth = z.infer<typeof QuickHealthSchema>;
|
|
16411
17731
|
|
|
17732
|
+
/**
|
|
17733
|
+
* Zod schema for RPCRequest
|
|
17734
|
+
*
|
|
17735
|
+
* This schema provides runtime validation and type inference.
|
|
17736
|
+
* * Serializer for individual RPC request.
|
|
17737
|
+
* */
|
|
17738
|
+
|
|
17739
|
+
/**
|
|
17740
|
+
* Serializer for individual RPC request.
|
|
17741
|
+
*/
|
|
17742
|
+
declare const RPCRequestSchema: z.ZodObject<{
|
|
17743
|
+
id: z.ZodOptional<z.ZodString>;
|
|
17744
|
+
request_id: z.ZodOptional<z.ZodString>;
|
|
17745
|
+
timestamp: z.ZodString;
|
|
17746
|
+
method: z.ZodNullable<z.ZodString>;
|
|
17747
|
+
params: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
17748
|
+
correlation_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17749
|
+
source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17750
|
+
}, z.core.$strip>;
|
|
17751
|
+
/**
|
|
17752
|
+
* Infer TypeScript type from Zod schema
|
|
17753
|
+
*/
|
|
17754
|
+
type RPCRequest = z.infer<typeof RPCRequestSchema>;
|
|
17755
|
+
|
|
17756
|
+
/**
|
|
17757
|
+
* Zod schema for RecentRequests
|
|
17758
|
+
*
|
|
17759
|
+
* This schema provides runtime validation and type inference.
|
|
17760
|
+
* * Serializer for recent requests response.
|
|
17761
|
+
* */
|
|
17762
|
+
|
|
17763
|
+
/**
|
|
17764
|
+
* Serializer for recent requests response.
|
|
17765
|
+
*/
|
|
17766
|
+
declare const RecentRequestsSchema: z.ZodObject<{
|
|
17767
|
+
requests: z.ZodArray<z.ZodObject<{
|
|
17768
|
+
id: z.ZodOptional<z.ZodString>;
|
|
17769
|
+
request_id: z.ZodOptional<z.ZodString>;
|
|
17770
|
+
timestamp: z.ZodString;
|
|
17771
|
+
method: z.ZodNullable<z.ZodString>;
|
|
17772
|
+
params: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
17773
|
+
correlation_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17774
|
+
source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17775
|
+
}, z.core.$strip>>;
|
|
17776
|
+
count: z.ZodInt;
|
|
17777
|
+
total_available: z.ZodInt;
|
|
17778
|
+
}, z.core.$strip>;
|
|
17779
|
+
/**
|
|
17780
|
+
* Infer TypeScript type from Zod schema
|
|
17781
|
+
*/
|
|
17782
|
+
type RecentRequests = z.infer<typeof RecentRequestsSchema>;
|
|
17783
|
+
|
|
16412
17784
|
/**
|
|
16413
17785
|
* Zod schema for SendCampaignRequest
|
|
16414
17786
|
*
|
|
@@ -16545,27 +17917,69 @@ declare const TaskStatisticsSchema: z.ZodObject<{
|
|
|
16545
17917
|
/**
|
|
16546
17918
|
* Infer TypeScript type from Zod schema
|
|
16547
17919
|
*/
|
|
16548
|
-
type TaskStatistics = z.infer<typeof TaskStatisticsSchema>;
|
|
17920
|
+
type TaskStatistics = z.infer<typeof TaskStatisticsSchema>;
|
|
17921
|
+
|
|
17922
|
+
/**
|
|
17923
|
+
* Zod schema for TestEmailRequest
|
|
17924
|
+
*
|
|
17925
|
+
* This schema provides runtime validation and type inference.
|
|
17926
|
+
* * Simple serializer for test email.
|
|
17927
|
+
* */
|
|
17928
|
+
|
|
17929
|
+
/**
|
|
17930
|
+
* Simple serializer for test email.
|
|
17931
|
+
*/
|
|
17932
|
+
declare const TestEmailRequestSchema: z.ZodObject<{
|
|
17933
|
+
email: z.ZodEmail;
|
|
17934
|
+
subject: z.ZodOptional<z.ZodString>;
|
|
17935
|
+
message: z.ZodOptional<z.ZodString>;
|
|
17936
|
+
}, z.core.$strip>;
|
|
17937
|
+
/**
|
|
17938
|
+
* Infer TypeScript type from Zod schema
|
|
17939
|
+
*/
|
|
17940
|
+
type TestEmailRequest = z.infer<typeof TestEmailRequestSchema>;
|
|
17941
|
+
|
|
17942
|
+
/**
|
|
17943
|
+
* Zod schema for TestRPCRequestRequest
|
|
17944
|
+
*
|
|
17945
|
+
* This schema provides runtime validation and type inference.
|
|
17946
|
+
* * Serializer for test RPC request input.
|
|
17947
|
+
* */
|
|
17948
|
+
|
|
17949
|
+
/**
|
|
17950
|
+
* Serializer for test RPC request input.
|
|
17951
|
+
*/
|
|
17952
|
+
declare const TestRPCRequestRequestSchema: z.ZodObject<{
|
|
17953
|
+
method: z.ZodString;
|
|
17954
|
+
params: z.ZodString;
|
|
17955
|
+
timeout: z.ZodOptional<z.ZodInt>;
|
|
17956
|
+
}, z.core.$strip>;
|
|
17957
|
+
/**
|
|
17958
|
+
* Infer TypeScript type from Zod schema
|
|
17959
|
+
*/
|
|
17960
|
+
type TestRPCRequestRequest = z.infer<typeof TestRPCRequestRequestSchema>;
|
|
16549
17961
|
|
|
16550
17962
|
/**
|
|
16551
|
-
* Zod schema for
|
|
17963
|
+
* Zod schema for TestRPCResponse
|
|
16552
17964
|
*
|
|
16553
17965
|
* This schema provides runtime validation and type inference.
|
|
16554
|
-
* *
|
|
17966
|
+
* * Serializer for test RPC response.
|
|
16555
17967
|
* */
|
|
16556
17968
|
|
|
16557
17969
|
/**
|
|
16558
|
-
*
|
|
17970
|
+
* Serializer for test RPC response.
|
|
16559
17971
|
*/
|
|
16560
|
-
declare const
|
|
16561
|
-
|
|
16562
|
-
|
|
16563
|
-
|
|
17972
|
+
declare const TestRPCResponseSchema: z.ZodObject<{
|
|
17973
|
+
success: z.ZodBoolean;
|
|
17974
|
+
duration_ms: z.ZodNumber;
|
|
17975
|
+
response: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17976
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17977
|
+
correlation_id: z.ZodString;
|
|
16564
17978
|
}, z.core.$strip>;
|
|
16565
17979
|
/**
|
|
16566
17980
|
* Infer TypeScript type from Zod schema
|
|
16567
17981
|
*/
|
|
16568
|
-
type
|
|
17982
|
+
type TestRPCResponse = z.infer<typeof TestRPCResponseSchema>;
|
|
16569
17983
|
|
|
16570
17984
|
/**
|
|
16571
17985
|
* Zod schema for Ticket
|
|
@@ -16948,6 +18362,12 @@ declare const index$2_LeadSubmissionRequestSchema: typeof LeadSubmissionRequestS
|
|
|
16948
18362
|
type index$2_LeadSubmissionResponse = LeadSubmissionResponse;
|
|
16949
18363
|
declare const index$2_LeadSubmissionResponseSchema: typeof LeadSubmissionResponseSchema;
|
|
16950
18364
|
declare const index$2_LeadSubmissionSchema: typeof LeadSubmissionSchema;
|
|
18365
|
+
type index$2_LoadTestRequestRequest = LoadTestRequestRequest;
|
|
18366
|
+
declare const index$2_LoadTestRequestRequestSchema: typeof LoadTestRequestRequestSchema;
|
|
18367
|
+
type index$2_LoadTestResponse = LoadTestResponse;
|
|
18368
|
+
declare const index$2_LoadTestResponseSchema: typeof LoadTestResponseSchema;
|
|
18369
|
+
type index$2_LoadTestStatus = LoadTestStatus;
|
|
18370
|
+
declare const index$2_LoadTestStatusSchema: typeof LoadTestStatusSchema;
|
|
16951
18371
|
type index$2_Message = Message;
|
|
16952
18372
|
type index$2_MessageCreate = MessageCreate;
|
|
16953
18373
|
type index$2_MessageCreateRequest = MessageCreateRequest;
|
|
@@ -16956,6 +18376,10 @@ declare const index$2_MessageCreateSchema: typeof MessageCreateSchema;
|
|
|
16956
18376
|
type index$2_MessageRequest = MessageRequest;
|
|
16957
18377
|
declare const index$2_MessageRequestSchema: typeof MessageRequestSchema;
|
|
16958
18378
|
declare const index$2_MessageSchema: typeof MessageSchema;
|
|
18379
|
+
type index$2_MethodStat = MethodStat;
|
|
18380
|
+
declare const index$2_MethodStatSchema: typeof MethodStatSchema;
|
|
18381
|
+
type index$2_MethodStats = MethodStats;
|
|
18382
|
+
declare const index$2_MethodStatsSchema: typeof MethodStatsSchema;
|
|
16959
18383
|
type index$2_Newsletter = Newsletter;
|
|
16960
18384
|
type index$2_NewsletterCampaign = NewsletterCampaign;
|
|
16961
18385
|
type index$2_NewsletterCampaignRequest = NewsletterCampaignRequest;
|
|
@@ -16964,6 +18388,8 @@ declare const index$2_NewsletterCampaignSchema: typeof NewsletterCampaignSchema;
|
|
|
16964
18388
|
declare const index$2_NewsletterSchema: typeof NewsletterSchema;
|
|
16965
18389
|
type index$2_NewsletterSubscription = NewsletterSubscription;
|
|
16966
18390
|
declare const index$2_NewsletterSubscriptionSchema: typeof NewsletterSubscriptionSchema;
|
|
18391
|
+
type index$2_NotificationStats = NotificationStats;
|
|
18392
|
+
declare const index$2_NotificationStatsSchema: typeof NotificationStatsSchema;
|
|
16967
18393
|
type index$2_OTPErrorResponse = OTPErrorResponse;
|
|
16968
18394
|
declare const index$2_OTPErrorResponseSchema: typeof OTPErrorResponseSchema;
|
|
16969
18395
|
type index$2_OTPRequestRequest = OTPRequestRequest;
|
|
@@ -16974,6 +18400,8 @@ type index$2_OTPVerifyRequest = OTPVerifyRequest;
|
|
|
16974
18400
|
declare const index$2_OTPVerifyRequestSchema: typeof OTPVerifyRequestSchema;
|
|
16975
18401
|
type index$2_OTPVerifyResponse = OTPVerifyResponse;
|
|
16976
18402
|
declare const index$2_OTPVerifyResponseSchema: typeof OTPVerifyResponseSchema;
|
|
18403
|
+
type index$2_OverviewStats = OverviewStats;
|
|
18404
|
+
declare const index$2_OverviewStatsSchema: typeof OverviewStatsSchema;
|
|
16977
18405
|
type index$2_PaginatedArchiveItemChunkList = PaginatedArchiveItemChunkList;
|
|
16978
18406
|
declare const index$2_PaginatedArchiveItemChunkListSchema: typeof PaginatedArchiveItemChunkListSchema;
|
|
16979
18407
|
type index$2_PaginatedArchiveItemList = PaginatedArchiveItemList;
|
|
@@ -17050,6 +18478,10 @@ type index$2_QueueStatus = QueueStatus;
|
|
|
17050
18478
|
declare const index$2_QueueStatusSchema: typeof QueueStatusSchema;
|
|
17051
18479
|
type index$2_QuickHealth = QuickHealth;
|
|
17052
18480
|
declare const index$2_QuickHealthSchema: typeof QuickHealthSchema;
|
|
18481
|
+
type index$2_RPCRequest = RPCRequest;
|
|
18482
|
+
declare const index$2_RPCRequestSchema: typeof RPCRequestSchema;
|
|
18483
|
+
type index$2_RecentRequests = RecentRequests;
|
|
18484
|
+
declare const index$2_RecentRequestsSchema: typeof RecentRequestsSchema;
|
|
17053
18485
|
type index$2_SendCampaignRequest = SendCampaignRequest;
|
|
17054
18486
|
declare const index$2_SendCampaignRequestSchema: typeof SendCampaignRequestSchema;
|
|
17055
18487
|
type index$2_SendCampaignResponse = SendCampaignResponse;
|
|
@@ -17066,6 +18498,10 @@ type index$2_TaskStatistics = TaskStatistics;
|
|
|
17066
18498
|
declare const index$2_TaskStatisticsSchema: typeof TaskStatisticsSchema;
|
|
17067
18499
|
type index$2_TestEmailRequest = TestEmailRequest;
|
|
17068
18500
|
declare const index$2_TestEmailRequestSchema: typeof TestEmailRequestSchema;
|
|
18501
|
+
type index$2_TestRPCRequestRequest = TestRPCRequestRequest;
|
|
18502
|
+
declare const index$2_TestRPCRequestRequestSchema: typeof TestRPCRequestRequestSchema;
|
|
18503
|
+
type index$2_TestRPCResponse = TestRPCResponse;
|
|
18504
|
+
declare const index$2_TestRPCResponseSchema: typeof TestRPCResponseSchema;
|
|
17069
18505
|
type index$2_Ticket = Ticket;
|
|
17070
18506
|
type index$2_TicketRequest = TicketRequest;
|
|
17071
18507
|
declare const index$2_TicketRequestSchema: typeof TicketRequestSchema;
|
|
@@ -17093,7 +18529,7 @@ type index$2_WorkerActionRequest = WorkerActionRequest;
|
|
|
17093
18529
|
declare const index$2_WorkerActionRequestSchema: typeof WorkerActionRequestSchema;
|
|
17094
18530
|
declare const index$2_WorkerActionSchema: typeof WorkerActionSchema;
|
|
17095
18531
|
declare namespace index$2 {
|
|
17096
|
-
export { type index$2_APIResponse as APIResponse, type index$2_APIResponseRequest as APIResponseRequest, index$2_APIResponseRequestSchema as APIResponseRequestSchema, index$2_APIResponseSchema as APIResponseSchema, type index$2_ArchiveItem as ArchiveItem, type index$2_ArchiveItemChunk as ArchiveItemChunk, type index$2_ArchiveItemChunkDetail as ArchiveItemChunkDetail, index$2_ArchiveItemChunkDetailSchema as ArchiveItemChunkDetailSchema, type index$2_ArchiveItemChunkRequest as ArchiveItemChunkRequest, index$2_ArchiveItemChunkRequestSchema as ArchiveItemChunkRequestSchema, index$2_ArchiveItemChunkSchema as ArchiveItemChunkSchema, type index$2_ArchiveItemDetail as ArchiveItemDetail, index$2_ArchiveItemDetailSchema as ArchiveItemDetailSchema, type index$2_ArchiveItemRequest as ArchiveItemRequest, index$2_ArchiveItemRequestSchema as ArchiveItemRequestSchema, index$2_ArchiveItemSchema as ArchiveItemSchema, type index$2_ArchiveProcessingResult as ArchiveProcessingResult, index$2_ArchiveProcessingResultSchema as ArchiveProcessingResultSchema, type index$2_ArchiveSearchRequestRequest as ArchiveSearchRequestRequest, index$2_ArchiveSearchRequestRequestSchema as ArchiveSearchRequestRequestSchema, type index$2_ArchiveSearchResult as ArchiveSearchResult, index$2_ArchiveSearchResultSchema as ArchiveSearchResultSchema, type index$2_ArchiveStatistics as ArchiveStatistics, index$2_ArchiveStatisticsSchema as ArchiveStatisticsSchema, type index$2_Balance as Balance, index$2_BalanceSchema as BalanceSchema, type index$2_BulkEmailRequest as BulkEmailRequest, index$2_BulkEmailRequestSchema as BulkEmailRequestSchema, type index$2_BulkEmailResponse as BulkEmailResponse, index$2_BulkEmailResponseSchema as BulkEmailResponseSchema, type index$2_ChatHistory as ChatHistory, index$2_ChatHistorySchema as ChatHistorySchema, type index$2_ChatMessage as ChatMessage, index$2_ChatMessageSchema as ChatMessageSchema, type index$2_ChatQueryRequest as ChatQueryRequest, index$2_ChatQueryRequestSchema as ChatQueryRequestSchema, type index$2_ChatResponse as ChatResponse, type index$2_ChatResponseRequest as ChatResponseRequest, index$2_ChatResponseRequestSchema as ChatResponseRequestSchema, index$2_ChatResponseSchema as ChatResponseSchema, type index$2_ChatSession as ChatSession, type index$2_ChatSessionCreateRequest as ChatSessionCreateRequest, index$2_ChatSessionCreateRequestSchema as ChatSessionCreateRequestSchema, type index$2_ChatSessionRequest as ChatSessionRequest, index$2_ChatSessionRequestSchema as ChatSessionRequestSchema, index$2_ChatSessionSchema as ChatSessionSchema, type index$2_ChatSource as ChatSource, type index$2_ChatSourceRequest as ChatSourceRequest, index$2_ChatSourceRequestSchema as ChatSourceRequestSchema, index$2_ChatSourceSchema as ChatSourceSchema, type index$2_ChunkRevectorizationRequestRequest as ChunkRevectorizationRequestRequest, index$2_ChunkRevectorizationRequestRequestSchema as ChunkRevectorizationRequestRequestSchema, type index$2_Currency as Currency, index$2_CurrencySchema as CurrencySchema, type index$2_Document as Document, type index$2_DocumentArchive as DocumentArchive, type index$2_DocumentArchiveDetail as DocumentArchiveDetail, index$2_DocumentArchiveDetailSchema as DocumentArchiveDetailSchema, type index$2_DocumentArchiveList as DocumentArchiveList, index$2_DocumentArchiveListSchema as DocumentArchiveListSchema, type index$2_DocumentArchiveRequest as DocumentArchiveRequest, index$2_DocumentArchiveRequestSchema as DocumentArchiveRequestSchema, index$2_DocumentArchiveSchema as DocumentArchiveSchema, type index$2_DocumentCategory as DocumentCategory, type index$2_DocumentCategoryRequest as DocumentCategoryRequest, index$2_DocumentCategoryRequestSchema as DocumentCategoryRequestSchema, index$2_DocumentCategorySchema as DocumentCategorySchema, type index$2_DocumentCreateRequest as DocumentCreateRequest, index$2_DocumentCreateRequestSchema as DocumentCreateRequestSchema, type index$2_DocumentProcessingStatus as DocumentProcessingStatus, index$2_DocumentProcessingStatusSchema as DocumentProcessingStatusSchema, type index$2_DocumentRequest as DocumentRequest, index$2_DocumentRequestSchema as DocumentRequestSchema, index$2_DocumentSchema as DocumentSchema, type index$2_DocumentStats as DocumentStats, index$2_DocumentStatsSchema as DocumentStatsSchema, type index$2_EmailLog as EmailLog, index$2_EmailLogSchema as EmailLogSchema, type index$2_Endpoint as Endpoint, index$2_EndpointSchema as EndpointSchema, type index$2_EndpointsStatus as EndpointsStatus, index$2_EndpointsStatusSchema as EndpointsStatusSchema, type index$2_ErrorResponse as ErrorResponse, index$2_ErrorResponseSchema as ErrorResponseSchema, type index$2_HealthCheck as HealthCheck, index$2_HealthCheckSchema as HealthCheckSchema, type index$2_LeadSubmission as LeadSubmission, type index$2_LeadSubmissionError as LeadSubmissionError, index$2_LeadSubmissionErrorSchema as LeadSubmissionErrorSchema, type index$2_LeadSubmissionRequest as LeadSubmissionRequest, index$2_LeadSubmissionRequestSchema as LeadSubmissionRequestSchema, type index$2_LeadSubmissionResponse as LeadSubmissionResponse, index$2_LeadSubmissionResponseSchema as LeadSubmissionResponseSchema, index$2_LeadSubmissionSchema as LeadSubmissionSchema, type index$2_Message as Message, type index$2_MessageCreate as MessageCreate, type index$2_MessageCreateRequest as MessageCreateRequest, index$2_MessageCreateRequestSchema as MessageCreateRequestSchema, index$2_MessageCreateSchema as MessageCreateSchema, type index$2_MessageRequest as MessageRequest, index$2_MessageRequestSchema as MessageRequestSchema, index$2_MessageSchema as MessageSchema, type index$2_Newsletter as Newsletter, type index$2_NewsletterCampaign as NewsletterCampaign, type index$2_NewsletterCampaignRequest as NewsletterCampaignRequest, index$2_NewsletterCampaignRequestSchema as NewsletterCampaignRequestSchema, index$2_NewsletterCampaignSchema as NewsletterCampaignSchema, index$2_NewsletterSchema as NewsletterSchema, type index$2_NewsletterSubscription as NewsletterSubscription, index$2_NewsletterSubscriptionSchema as NewsletterSubscriptionSchema, type index$2_OTPErrorResponse as OTPErrorResponse, index$2_OTPErrorResponseSchema as OTPErrorResponseSchema, type index$2_OTPRequestRequest as OTPRequestRequest, index$2_OTPRequestRequestSchema as OTPRequestRequestSchema, type index$2_OTPRequestResponse as OTPRequestResponse, index$2_OTPRequestResponseSchema as OTPRequestResponseSchema, type index$2_OTPVerifyRequest as OTPVerifyRequest, index$2_OTPVerifyRequestSchema as OTPVerifyRequestSchema, type index$2_OTPVerifyResponse as OTPVerifyResponse, index$2_OTPVerifyResponseSchema as OTPVerifyResponseSchema, type index$2_PaginatedArchiveItemChunkList as PaginatedArchiveItemChunkList, index$2_PaginatedArchiveItemChunkListSchema as PaginatedArchiveItemChunkListSchema, type index$2_PaginatedArchiveItemList as PaginatedArchiveItemList, index$2_PaginatedArchiveItemListSchema as PaginatedArchiveItemListSchema, type index$2_PaginatedArchiveSearchResultList as PaginatedArchiveSearchResultList, index$2_PaginatedArchiveSearchResultListSchema as PaginatedArchiveSearchResultListSchema, type index$2_PaginatedChatResponseList as PaginatedChatResponseList, index$2_PaginatedChatResponseListSchema as PaginatedChatResponseListSchema, type index$2_PaginatedChatSessionList as PaginatedChatSessionList, index$2_PaginatedChatSessionListSchema as PaginatedChatSessionListSchema, type index$2_PaginatedDocumentArchiveListList as PaginatedDocumentArchiveListList, index$2_PaginatedDocumentArchiveListListSchema as PaginatedDocumentArchiveListListSchema, type index$2_PaginatedDocumentList as PaginatedDocumentList, index$2_PaginatedDocumentListSchema as PaginatedDocumentListSchema, type index$2_PaginatedEmailLogList as PaginatedEmailLogList, index$2_PaginatedEmailLogListSchema as PaginatedEmailLogListSchema, type index$2_PaginatedLeadSubmissionList as PaginatedLeadSubmissionList, index$2_PaginatedLeadSubmissionListSchema as PaginatedLeadSubmissionListSchema, type index$2_PaginatedMessageList as PaginatedMessageList, index$2_PaginatedMessageListSchema as PaginatedMessageListSchema, type index$2_PaginatedNewsletterCampaignList as PaginatedNewsletterCampaignList, index$2_PaginatedNewsletterCampaignListSchema as PaginatedNewsletterCampaignListSchema, type index$2_PaginatedNewsletterList as PaginatedNewsletterList, index$2_PaginatedNewsletterListSchema as PaginatedNewsletterListSchema, type index$2_PaginatedNewsletterSubscriptionList as PaginatedNewsletterSubscriptionList, index$2_PaginatedNewsletterSubscriptionListSchema as PaginatedNewsletterSubscriptionListSchema, type index$2_PaginatedPaymentListList as PaginatedPaymentListList, index$2_PaginatedPaymentListListSchema as PaginatedPaymentListListSchema, type index$2_PaginatedPublicCategoryList as PaginatedPublicCategoryList, index$2_PaginatedPublicCategoryListSchema as PaginatedPublicCategoryListSchema, type index$2_PaginatedPublicDocumentListList as PaginatedPublicDocumentListList, index$2_PaginatedPublicDocumentListListSchema as PaginatedPublicDocumentListListSchema, type index$2_PaginatedTicketList as PaginatedTicketList, index$2_PaginatedTicketListSchema as PaginatedTicketListSchema, type index$2_PatchedArchiveItemChunkRequest as PatchedArchiveItemChunkRequest, index$2_PatchedArchiveItemChunkRequestSchema as PatchedArchiveItemChunkRequestSchema, type index$2_PatchedArchiveItemRequest as PatchedArchiveItemRequest, index$2_PatchedArchiveItemRequestSchema as PatchedArchiveItemRequestSchema, type index$2_PatchedChatResponseRequest as PatchedChatResponseRequest, index$2_PatchedChatResponseRequestSchema as PatchedChatResponseRequestSchema, type index$2_PatchedChatSessionRequest as PatchedChatSessionRequest, index$2_PatchedChatSessionRequestSchema as PatchedChatSessionRequestSchema, type index$2_PatchedDocumentArchiveRequest as PatchedDocumentArchiveRequest, index$2_PatchedDocumentArchiveRequestSchema as PatchedDocumentArchiveRequestSchema, type index$2_PatchedDocumentRequest as PatchedDocumentRequest, index$2_PatchedDocumentRequestSchema as PatchedDocumentRequestSchema, type index$2_PatchedLeadSubmissionRequest as PatchedLeadSubmissionRequest, index$2_PatchedLeadSubmissionRequestSchema as PatchedLeadSubmissionRequestSchema, type index$2_PatchedMessageRequest as PatchedMessageRequest, index$2_PatchedMessageRequestSchema as PatchedMessageRequestSchema, type index$2_PatchedNewsletterCampaignRequest as PatchedNewsletterCampaignRequest, index$2_PatchedNewsletterCampaignRequestSchema as PatchedNewsletterCampaignRequestSchema, type index$2_PatchedTicketRequest as PatchedTicketRequest, index$2_PatchedTicketRequestSchema as PatchedTicketRequestSchema, type index$2_PatchedUnsubscribeRequest as PatchedUnsubscribeRequest, index$2_PatchedUnsubscribeRequestSchema as PatchedUnsubscribeRequestSchema, type index$2_PatchedUserProfileUpdateRequest as PatchedUserProfileUpdateRequest, index$2_PatchedUserProfileUpdateRequestSchema as PatchedUserProfileUpdateRequestSchema, type index$2_PaymentDetail as PaymentDetail, index$2_PaymentDetailSchema as PaymentDetailSchema, type index$2_PaymentList as PaymentList, index$2_PaymentListSchema as PaymentListSchema, type index$2_PublicCategory as PublicCategory, index$2_PublicCategorySchema as PublicCategorySchema, type index$2_PublicDocument as PublicDocument, type index$2_PublicDocumentList as PublicDocumentList, index$2_PublicDocumentListSchema as PublicDocumentListSchema, index$2_PublicDocumentSchema as PublicDocumentSchema, type index$2_QueueAction as QueueAction, type index$2_QueueActionRequest as QueueActionRequest, index$2_QueueActionRequestSchema as QueueActionRequestSchema, index$2_QueueActionSchema as QueueActionSchema, type index$2_QueueStatus as QueueStatus, index$2_QueueStatusSchema as QueueStatusSchema, type index$2_QuickHealth as QuickHealth, index$2_QuickHealthSchema as QuickHealthSchema, type index$2_SendCampaignRequest as SendCampaignRequest, index$2_SendCampaignRequestSchema as SendCampaignRequestSchema, type index$2_SendCampaignResponse as SendCampaignResponse, index$2_SendCampaignResponseSchema as SendCampaignResponseSchema, type index$2_Sender as Sender, index$2_SenderSchema as SenderSchema, type index$2_SubscribeRequest as SubscribeRequest, index$2_SubscribeRequestSchema as SubscribeRequestSchema, type index$2_SubscribeResponse as SubscribeResponse, index$2_SubscribeResponseSchema as SubscribeResponseSchema, type index$2_SuccessResponse as SuccessResponse, index$2_SuccessResponseSchema as SuccessResponseSchema, type index$2_TaskStatistics as TaskStatistics, index$2_TaskStatisticsSchema as TaskStatisticsSchema, type index$2_TestEmailRequest as TestEmailRequest, index$2_TestEmailRequestSchema as TestEmailRequestSchema, type index$2_Ticket as Ticket, type index$2_TicketRequest as TicketRequest, index$2_TicketRequestSchema as TicketRequestSchema, index$2_TicketSchema as TicketSchema, type index$2_TokenRefresh as TokenRefresh, type index$2_TokenRefreshRequest as TokenRefreshRequest, index$2_TokenRefreshRequestSchema as TokenRefreshRequestSchema, index$2_TokenRefreshSchema as TokenRefreshSchema, type index$2_Transaction as Transaction, index$2_TransactionSchema as TransactionSchema, type index$2_Unsubscribe as Unsubscribe, type index$2_UnsubscribeRequest as UnsubscribeRequest, index$2_UnsubscribeRequestSchema as UnsubscribeRequestSchema, index$2_UnsubscribeSchema as UnsubscribeSchema, type index$2_User as User, type index$2_UserProfileUpdateRequest as UserProfileUpdateRequest, index$2_UserProfileUpdateRequestSchema as UserProfileUpdateRequestSchema, index$2_UserSchema as UserSchema, type index$2_VectorizationResult as VectorizationResult, index$2_VectorizationResultSchema as VectorizationResultSchema, type index$2_VectorizationStatistics as VectorizationStatistics, index$2_VectorizationStatisticsSchema as VectorizationStatisticsSchema, type index$2_WorkerAction as WorkerAction, type index$2_WorkerActionRequest as WorkerActionRequest, index$2_WorkerActionRequestSchema as WorkerActionRequestSchema, index$2_WorkerActionSchema as WorkerActionSchema };
|
|
18532
|
+
export { type index$2_APIResponse as APIResponse, type index$2_APIResponseRequest as APIResponseRequest, index$2_APIResponseRequestSchema as APIResponseRequestSchema, index$2_APIResponseSchema as APIResponseSchema, type index$2_ArchiveItem as ArchiveItem, type index$2_ArchiveItemChunk as ArchiveItemChunk, type index$2_ArchiveItemChunkDetail as ArchiveItemChunkDetail, index$2_ArchiveItemChunkDetailSchema as ArchiveItemChunkDetailSchema, type index$2_ArchiveItemChunkRequest as ArchiveItemChunkRequest, index$2_ArchiveItemChunkRequestSchema as ArchiveItemChunkRequestSchema, index$2_ArchiveItemChunkSchema as ArchiveItemChunkSchema, type index$2_ArchiveItemDetail as ArchiveItemDetail, index$2_ArchiveItemDetailSchema as ArchiveItemDetailSchema, type index$2_ArchiveItemRequest as ArchiveItemRequest, index$2_ArchiveItemRequestSchema as ArchiveItemRequestSchema, index$2_ArchiveItemSchema as ArchiveItemSchema, type index$2_ArchiveProcessingResult as ArchiveProcessingResult, index$2_ArchiveProcessingResultSchema as ArchiveProcessingResultSchema, type index$2_ArchiveSearchRequestRequest as ArchiveSearchRequestRequest, index$2_ArchiveSearchRequestRequestSchema as ArchiveSearchRequestRequestSchema, type index$2_ArchiveSearchResult as ArchiveSearchResult, index$2_ArchiveSearchResultSchema as ArchiveSearchResultSchema, type index$2_ArchiveStatistics as ArchiveStatistics, index$2_ArchiveStatisticsSchema as ArchiveStatisticsSchema, type index$2_Balance as Balance, index$2_BalanceSchema as BalanceSchema, type index$2_BulkEmailRequest as BulkEmailRequest, index$2_BulkEmailRequestSchema as BulkEmailRequestSchema, type index$2_BulkEmailResponse as BulkEmailResponse, index$2_BulkEmailResponseSchema as BulkEmailResponseSchema, type index$2_ChatHistory as ChatHistory, index$2_ChatHistorySchema as ChatHistorySchema, type index$2_ChatMessage as ChatMessage, index$2_ChatMessageSchema as ChatMessageSchema, type index$2_ChatQueryRequest as ChatQueryRequest, index$2_ChatQueryRequestSchema as ChatQueryRequestSchema, type index$2_ChatResponse as ChatResponse, type index$2_ChatResponseRequest as ChatResponseRequest, index$2_ChatResponseRequestSchema as ChatResponseRequestSchema, index$2_ChatResponseSchema as ChatResponseSchema, type index$2_ChatSession as ChatSession, type index$2_ChatSessionCreateRequest as ChatSessionCreateRequest, index$2_ChatSessionCreateRequestSchema as ChatSessionCreateRequestSchema, type index$2_ChatSessionRequest as ChatSessionRequest, index$2_ChatSessionRequestSchema as ChatSessionRequestSchema, index$2_ChatSessionSchema as ChatSessionSchema, type index$2_ChatSource as ChatSource, type index$2_ChatSourceRequest as ChatSourceRequest, index$2_ChatSourceRequestSchema as ChatSourceRequestSchema, index$2_ChatSourceSchema as ChatSourceSchema, type index$2_ChunkRevectorizationRequestRequest as ChunkRevectorizationRequestRequest, index$2_ChunkRevectorizationRequestRequestSchema as ChunkRevectorizationRequestRequestSchema, type index$2_Currency as Currency, index$2_CurrencySchema as CurrencySchema, type index$2_Document as Document, type index$2_DocumentArchive as DocumentArchive, type index$2_DocumentArchiveDetail as DocumentArchiveDetail, index$2_DocumentArchiveDetailSchema as DocumentArchiveDetailSchema, type index$2_DocumentArchiveList as DocumentArchiveList, index$2_DocumentArchiveListSchema as DocumentArchiveListSchema, type index$2_DocumentArchiveRequest as DocumentArchiveRequest, index$2_DocumentArchiveRequestSchema as DocumentArchiveRequestSchema, index$2_DocumentArchiveSchema as DocumentArchiveSchema, type index$2_DocumentCategory as DocumentCategory, type index$2_DocumentCategoryRequest as DocumentCategoryRequest, index$2_DocumentCategoryRequestSchema as DocumentCategoryRequestSchema, index$2_DocumentCategorySchema as DocumentCategorySchema, type index$2_DocumentCreateRequest as DocumentCreateRequest, index$2_DocumentCreateRequestSchema as DocumentCreateRequestSchema, type index$2_DocumentProcessingStatus as DocumentProcessingStatus, index$2_DocumentProcessingStatusSchema as DocumentProcessingStatusSchema, type index$2_DocumentRequest as DocumentRequest, index$2_DocumentRequestSchema as DocumentRequestSchema, index$2_DocumentSchema as DocumentSchema, type index$2_DocumentStats as DocumentStats, index$2_DocumentStatsSchema as DocumentStatsSchema, type index$2_EmailLog as EmailLog, index$2_EmailLogSchema as EmailLogSchema, type index$2_Endpoint as Endpoint, index$2_EndpointSchema as EndpointSchema, type index$2_EndpointsStatus as EndpointsStatus, index$2_EndpointsStatusSchema as EndpointsStatusSchema, type index$2_ErrorResponse as ErrorResponse, index$2_ErrorResponseSchema as ErrorResponseSchema, type index$2_HealthCheck as HealthCheck, index$2_HealthCheckSchema as HealthCheckSchema, type index$2_LeadSubmission as LeadSubmission, type index$2_LeadSubmissionError as LeadSubmissionError, index$2_LeadSubmissionErrorSchema as LeadSubmissionErrorSchema, type index$2_LeadSubmissionRequest as LeadSubmissionRequest, index$2_LeadSubmissionRequestSchema as LeadSubmissionRequestSchema, type index$2_LeadSubmissionResponse as LeadSubmissionResponse, index$2_LeadSubmissionResponseSchema as LeadSubmissionResponseSchema, index$2_LeadSubmissionSchema as LeadSubmissionSchema, type index$2_LoadTestRequestRequest as LoadTestRequestRequest, index$2_LoadTestRequestRequestSchema as LoadTestRequestRequestSchema, type index$2_LoadTestResponse as LoadTestResponse, index$2_LoadTestResponseSchema as LoadTestResponseSchema, type index$2_LoadTestStatus as LoadTestStatus, index$2_LoadTestStatusSchema as LoadTestStatusSchema, 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_MethodStat as MethodStat, index$2_MethodStatSchema as MethodStatSchema, type index$2_MethodStats as MethodStats, index$2_MethodStatsSchema as MethodStatsSchema, 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_NotificationStats as NotificationStats, index$2_NotificationStatsSchema as NotificationStatsSchema, type index$2_OTPErrorResponse as OTPErrorResponse, index$2_OTPErrorResponseSchema as OTPErrorResponseSchema, type index$2_OTPRequestRequest as OTPRequestRequest, index$2_OTPRequestRequestSchema as OTPRequestRequestSchema, type index$2_OTPRequestResponse as OTPRequestResponse, index$2_OTPRequestResponseSchema as OTPRequestResponseSchema, type index$2_OTPVerifyRequest as OTPVerifyRequest, index$2_OTPVerifyRequestSchema as OTPVerifyRequestSchema, type index$2_OTPVerifyResponse as OTPVerifyResponse, index$2_OTPVerifyResponseSchema as OTPVerifyResponseSchema, type index$2_OverviewStats as OverviewStats, index$2_OverviewStatsSchema as OverviewStatsSchema, type index$2_PaginatedArchiveItemChunkList as PaginatedArchiveItemChunkList, index$2_PaginatedArchiveItemChunkListSchema as PaginatedArchiveItemChunkListSchema, type index$2_PaginatedArchiveItemList as PaginatedArchiveItemList, index$2_PaginatedArchiveItemListSchema as PaginatedArchiveItemListSchema, type index$2_PaginatedArchiveSearchResultList as PaginatedArchiveSearchResultList, index$2_PaginatedArchiveSearchResultListSchema as PaginatedArchiveSearchResultListSchema, type index$2_PaginatedChatResponseList as PaginatedChatResponseList, index$2_PaginatedChatResponseListSchema as PaginatedChatResponseListSchema, type index$2_PaginatedChatSessionList as PaginatedChatSessionList, index$2_PaginatedChatSessionListSchema as PaginatedChatSessionListSchema, type index$2_PaginatedDocumentArchiveListList as PaginatedDocumentArchiveListList, index$2_PaginatedDocumentArchiveListListSchema as PaginatedDocumentArchiveListListSchema, type index$2_PaginatedDocumentList as PaginatedDocumentList, index$2_PaginatedDocumentListSchema as PaginatedDocumentListSchema, type index$2_PaginatedEmailLogList as PaginatedEmailLogList, index$2_PaginatedEmailLogListSchema as PaginatedEmailLogListSchema, type index$2_PaginatedLeadSubmissionList as PaginatedLeadSubmissionList, index$2_PaginatedLeadSubmissionListSchema as PaginatedLeadSubmissionListSchema, type index$2_PaginatedMessageList as PaginatedMessageList, index$2_PaginatedMessageListSchema as PaginatedMessageListSchema, type index$2_PaginatedNewsletterCampaignList as PaginatedNewsletterCampaignList, index$2_PaginatedNewsletterCampaignListSchema as PaginatedNewsletterCampaignListSchema, type index$2_PaginatedNewsletterList as PaginatedNewsletterList, index$2_PaginatedNewsletterListSchema as PaginatedNewsletterListSchema, type index$2_PaginatedNewsletterSubscriptionList as PaginatedNewsletterSubscriptionList, index$2_PaginatedNewsletterSubscriptionListSchema as PaginatedNewsletterSubscriptionListSchema, type index$2_PaginatedPaymentListList as PaginatedPaymentListList, index$2_PaginatedPaymentListListSchema as PaginatedPaymentListListSchema, type index$2_PaginatedPublicCategoryList as PaginatedPublicCategoryList, index$2_PaginatedPublicCategoryListSchema as PaginatedPublicCategoryListSchema, type index$2_PaginatedPublicDocumentListList as PaginatedPublicDocumentListList, index$2_PaginatedPublicDocumentListListSchema as PaginatedPublicDocumentListListSchema, type index$2_PaginatedTicketList as PaginatedTicketList, index$2_PaginatedTicketListSchema as PaginatedTicketListSchema, type index$2_PatchedArchiveItemChunkRequest as PatchedArchiveItemChunkRequest, index$2_PatchedArchiveItemChunkRequestSchema as PatchedArchiveItemChunkRequestSchema, type index$2_PatchedArchiveItemRequest as PatchedArchiveItemRequest, index$2_PatchedArchiveItemRequestSchema as PatchedArchiveItemRequestSchema, type index$2_PatchedChatResponseRequest as PatchedChatResponseRequest, index$2_PatchedChatResponseRequestSchema as PatchedChatResponseRequestSchema, type index$2_PatchedChatSessionRequest as PatchedChatSessionRequest, index$2_PatchedChatSessionRequestSchema as PatchedChatSessionRequestSchema, type index$2_PatchedDocumentArchiveRequest as PatchedDocumentArchiveRequest, index$2_PatchedDocumentArchiveRequestSchema as PatchedDocumentArchiveRequestSchema, type index$2_PatchedDocumentRequest as PatchedDocumentRequest, index$2_PatchedDocumentRequestSchema as PatchedDocumentRequestSchema, type index$2_PatchedLeadSubmissionRequest as PatchedLeadSubmissionRequest, index$2_PatchedLeadSubmissionRequestSchema as PatchedLeadSubmissionRequestSchema, type index$2_PatchedMessageRequest as PatchedMessageRequest, index$2_PatchedMessageRequestSchema as PatchedMessageRequestSchema, type index$2_PatchedNewsletterCampaignRequest as PatchedNewsletterCampaignRequest, index$2_PatchedNewsletterCampaignRequestSchema as PatchedNewsletterCampaignRequestSchema, type index$2_PatchedTicketRequest as PatchedTicketRequest, index$2_PatchedTicketRequestSchema as PatchedTicketRequestSchema, type index$2_PatchedUnsubscribeRequest as PatchedUnsubscribeRequest, index$2_PatchedUnsubscribeRequestSchema as PatchedUnsubscribeRequestSchema, type index$2_PatchedUserProfileUpdateRequest as PatchedUserProfileUpdateRequest, index$2_PatchedUserProfileUpdateRequestSchema as PatchedUserProfileUpdateRequestSchema, type index$2_PaymentDetail as PaymentDetail, index$2_PaymentDetailSchema as PaymentDetailSchema, type index$2_PaymentList as PaymentList, index$2_PaymentListSchema as PaymentListSchema, type index$2_PublicCategory as PublicCategory, index$2_PublicCategorySchema as PublicCategorySchema, type index$2_PublicDocument as PublicDocument, type index$2_PublicDocumentList as PublicDocumentList, index$2_PublicDocumentListSchema as PublicDocumentListSchema, index$2_PublicDocumentSchema as PublicDocumentSchema, type index$2_QueueAction as QueueAction, type index$2_QueueActionRequest as QueueActionRequest, index$2_QueueActionRequestSchema as QueueActionRequestSchema, index$2_QueueActionSchema as QueueActionSchema, type index$2_QueueStatus as QueueStatus, index$2_QueueStatusSchema as QueueStatusSchema, type index$2_QuickHealth as QuickHealth, index$2_QuickHealthSchema as QuickHealthSchema, type index$2_RPCRequest as RPCRequest, index$2_RPCRequestSchema as RPCRequestSchema, type index$2_RecentRequests as RecentRequests, index$2_RecentRequestsSchema as RecentRequestsSchema, type index$2_SendCampaignRequest as SendCampaignRequest, index$2_SendCampaignRequestSchema as SendCampaignRequestSchema, type index$2_SendCampaignResponse as SendCampaignResponse, index$2_SendCampaignResponseSchema as SendCampaignResponseSchema, type index$2_Sender as Sender, index$2_SenderSchema as SenderSchema, type index$2_SubscribeRequest as SubscribeRequest, index$2_SubscribeRequestSchema as SubscribeRequestSchema, type index$2_SubscribeResponse as SubscribeResponse, index$2_SubscribeResponseSchema as SubscribeResponseSchema, type index$2_SuccessResponse as SuccessResponse, index$2_SuccessResponseSchema as SuccessResponseSchema, type index$2_TaskStatistics as TaskStatistics, index$2_TaskStatisticsSchema as TaskStatisticsSchema, type index$2_TestEmailRequest as TestEmailRequest, index$2_TestEmailRequestSchema as TestEmailRequestSchema, type index$2_TestRPCRequestRequest as TestRPCRequestRequest, index$2_TestRPCRequestRequestSchema as TestRPCRequestRequestSchema, type index$2_TestRPCResponse as TestRPCResponse, index$2_TestRPCResponseSchema as TestRPCResponseSchema, type index$2_Ticket as Ticket, type index$2_TicketRequest as TicketRequest, index$2_TicketRequestSchema as TicketRequestSchema, index$2_TicketSchema as TicketSchema, type index$2_TokenRefresh as TokenRefresh, type index$2_TokenRefreshRequest as TokenRefreshRequest, index$2_TokenRefreshRequestSchema as TokenRefreshRequestSchema, index$2_TokenRefreshSchema as TokenRefreshSchema, type index$2_Transaction as Transaction, index$2_TransactionSchema as TransactionSchema, type index$2_Unsubscribe as Unsubscribe, type index$2_UnsubscribeRequest as UnsubscribeRequest, index$2_UnsubscribeRequestSchema as UnsubscribeRequestSchema, index$2_UnsubscribeSchema as UnsubscribeSchema, type index$2_User as User, type index$2_UserProfileUpdateRequest as UserProfileUpdateRequest, index$2_UserProfileUpdateRequestSchema as UserProfileUpdateRequestSchema, index$2_UserSchema as UserSchema, type index$2_VectorizationResult as VectorizationResult, index$2_VectorizationResultSchema as VectorizationResultSchema, type index$2_VectorizationStatistics as VectorizationStatistics, index$2_VectorizationStatisticsSchema as VectorizationStatisticsSchema, type index$2_WorkerAction as WorkerAction, type index$2_WorkerActionRequest as WorkerActionRequest, index$2_WorkerActionRequestSchema as WorkerActionRequestSchema, index$2_WorkerActionSchema as WorkerActionSchema };
|
|
17097
18533
|
}
|
|
17098
18534
|
|
|
17099
18535
|
/**
|
|
@@ -17345,6 +18781,202 @@ declare function getHealthDrfRetrieve(client?: any): Promise<HealthCheck>;
|
|
|
17345
18781
|
*/
|
|
17346
18782
|
declare function getHealthDrfQuickRetrieve(client?: any): Promise<QuickHealth>;
|
|
17347
18783
|
|
|
18784
|
+
/**
|
|
18785
|
+
* Typed fetchers for IPC/RPC Monitoring
|
|
18786
|
+
*
|
|
18787
|
+
* Universal functions that work in any environment:
|
|
18788
|
+
* - Next.js (App Router / Pages Router / Server Components)
|
|
18789
|
+
* - React Native
|
|
18790
|
+
* - Node.js backend
|
|
18791
|
+
*
|
|
18792
|
+
* These fetchers use Zod schemas for runtime validation.
|
|
18793
|
+
*
|
|
18794
|
+
* Usage:
|
|
18795
|
+
* ```typescript
|
|
18796
|
+
* // Configure API once (in your app entry point)
|
|
18797
|
+
* import { configureAPI } from '../../api-instance'
|
|
18798
|
+
* configureAPI({ baseUrl: 'https://api.example.com' })
|
|
18799
|
+
*
|
|
18800
|
+
* // Then use fetchers anywhere
|
|
18801
|
+
* const users = await getUsers({ page: 1 })
|
|
18802
|
+
*
|
|
18803
|
+
* // With SWR
|
|
18804
|
+
* const { data } = useSWR(['users', params], () => getUsers(params))
|
|
18805
|
+
*
|
|
18806
|
+
* // With React Query
|
|
18807
|
+
* const { data } = useQuery(['users', params], () => getUsers(params))
|
|
18808
|
+
*
|
|
18809
|
+
* // In Server Component or SSR (pass custom client)
|
|
18810
|
+
* import { API } from '../../index'
|
|
18811
|
+
* const api = new API('https://api.example.com')
|
|
18812
|
+
* const users = await getUsers({ page: 1 }, api)
|
|
18813
|
+
* ```
|
|
18814
|
+
*/
|
|
18815
|
+
|
|
18816
|
+
/**
|
|
18817
|
+
* Get RPC health status
|
|
18818
|
+
*
|
|
18819
|
+
* @method GET
|
|
18820
|
+
* @path /cfg/ipc/admin/api/monitor/health/
|
|
18821
|
+
*/
|
|
18822
|
+
declare function getIpcAdminApiMonitorHealthRetrieve(client?: any): Promise<HealthCheck>;
|
|
18823
|
+
/**
|
|
18824
|
+
* Get method statistics
|
|
18825
|
+
*
|
|
18826
|
+
* @method GET
|
|
18827
|
+
* @path /cfg/ipc/admin/api/monitor/methods/
|
|
18828
|
+
*/
|
|
18829
|
+
declare function getIpcAdminApiMonitorMethodsRetrieve(client?: any): Promise<MethodStats>;
|
|
18830
|
+
/**
|
|
18831
|
+
* Get notification statistics
|
|
18832
|
+
*
|
|
18833
|
+
* @method GET
|
|
18834
|
+
* @path /cfg/ipc/admin/api/monitor/notifications/
|
|
18835
|
+
*/
|
|
18836
|
+
declare function getIpcAdminApiMonitorNotificationsRetrieve(client?: any): Promise<NotificationStats>;
|
|
18837
|
+
/**
|
|
18838
|
+
* Get overview statistics
|
|
18839
|
+
*
|
|
18840
|
+
* @method GET
|
|
18841
|
+
* @path /cfg/ipc/admin/api/monitor/overview/
|
|
18842
|
+
*/
|
|
18843
|
+
declare function getIpcAdminApiMonitorOverviewRetrieve(client?: any): Promise<OverviewStats>;
|
|
18844
|
+
/**
|
|
18845
|
+
* Get recent RPC requests
|
|
18846
|
+
*
|
|
18847
|
+
* @method GET
|
|
18848
|
+
* @path /cfg/ipc/admin/api/monitor/requests/
|
|
18849
|
+
*/
|
|
18850
|
+
declare function getIpcAdminApiMonitorRequestsRetrieve(params?: {
|
|
18851
|
+
count?: number;
|
|
18852
|
+
}, client?: any): Promise<RecentRequests>;
|
|
18853
|
+
/**
|
|
18854
|
+
* Get RPC health status
|
|
18855
|
+
*
|
|
18856
|
+
* @method GET
|
|
18857
|
+
* @path /cfg/ipc/monitor/health/
|
|
18858
|
+
*/
|
|
18859
|
+
declare function getIpcMonitorHealthRetrieve(client?: any): Promise<HealthCheck>;
|
|
18860
|
+
/**
|
|
18861
|
+
* Get method statistics
|
|
18862
|
+
*
|
|
18863
|
+
* @method GET
|
|
18864
|
+
* @path /cfg/ipc/monitor/methods/
|
|
18865
|
+
*/
|
|
18866
|
+
declare function getIpcMonitorMethodsRetrieve(client?: any): Promise<MethodStats>;
|
|
18867
|
+
/**
|
|
18868
|
+
* Get notification statistics
|
|
18869
|
+
*
|
|
18870
|
+
* @method GET
|
|
18871
|
+
* @path /cfg/ipc/monitor/notifications/
|
|
18872
|
+
*/
|
|
18873
|
+
declare function getIpcMonitorNotificationsRetrieve(client?: any): Promise<NotificationStats>;
|
|
18874
|
+
/**
|
|
18875
|
+
* Get overview statistics
|
|
18876
|
+
*
|
|
18877
|
+
* @method GET
|
|
18878
|
+
* @path /cfg/ipc/monitor/overview/
|
|
18879
|
+
*/
|
|
18880
|
+
declare function getIpcMonitorOverviewRetrieve(client?: any): Promise<OverviewStats>;
|
|
18881
|
+
/**
|
|
18882
|
+
* Get recent RPC requests
|
|
18883
|
+
*
|
|
18884
|
+
* @method GET
|
|
18885
|
+
* @path /cfg/ipc/monitor/requests/
|
|
18886
|
+
*/
|
|
18887
|
+
declare function getIpcMonitorRequestsRetrieve(params?: {
|
|
18888
|
+
count?: number;
|
|
18889
|
+
}, client?: any): Promise<RecentRequests>;
|
|
18890
|
+
|
|
18891
|
+
/**
|
|
18892
|
+
* Typed fetchers for IPC/RPC Testing
|
|
18893
|
+
*
|
|
18894
|
+
* Universal functions that work in any environment:
|
|
18895
|
+
* - Next.js (App Router / Pages Router / Server Components)
|
|
18896
|
+
* - React Native
|
|
18897
|
+
* - Node.js backend
|
|
18898
|
+
*
|
|
18899
|
+
* These fetchers use Zod schemas for runtime validation.
|
|
18900
|
+
*
|
|
18901
|
+
* Usage:
|
|
18902
|
+
* ```typescript
|
|
18903
|
+
* // Configure API once (in your app entry point)
|
|
18904
|
+
* import { configureAPI } from '../../api-instance'
|
|
18905
|
+
* configureAPI({ baseUrl: 'https://api.example.com' })
|
|
18906
|
+
*
|
|
18907
|
+
* // Then use fetchers anywhere
|
|
18908
|
+
* const users = await getUsers({ page: 1 })
|
|
18909
|
+
*
|
|
18910
|
+
* // With SWR
|
|
18911
|
+
* const { data } = useSWR(['users', params], () => getUsers(params))
|
|
18912
|
+
*
|
|
18913
|
+
* // With React Query
|
|
18914
|
+
* const { data } = useQuery(['users', params], () => getUsers(params))
|
|
18915
|
+
*
|
|
18916
|
+
* // In Server Component or SSR (pass custom client)
|
|
18917
|
+
* import { API } from '../../index'
|
|
18918
|
+
* const api = new API('https://api.example.com')
|
|
18919
|
+
* const users = await getUsers({ page: 1 }, api)
|
|
18920
|
+
* ```
|
|
18921
|
+
*/
|
|
18922
|
+
|
|
18923
|
+
/**
|
|
18924
|
+
* Start load test
|
|
18925
|
+
*
|
|
18926
|
+
* @method POST
|
|
18927
|
+
* @path /cfg/ipc/admin/api/test/load/start/
|
|
18928
|
+
*/
|
|
18929
|
+
declare function createIpcAdminApiTestLoadStartCreate(data: LoadTestRequestRequest, client?: any): Promise<LoadTestResponse>;
|
|
18930
|
+
/**
|
|
18931
|
+
* Get load test status
|
|
18932
|
+
*
|
|
18933
|
+
* @method GET
|
|
18934
|
+
* @path /cfg/ipc/admin/api/test/load/status/
|
|
18935
|
+
*/
|
|
18936
|
+
declare function getIpcAdminApiTestLoadStatusRetrieve(client?: any): Promise<LoadTestStatus>;
|
|
18937
|
+
/**
|
|
18938
|
+
* Stop load test
|
|
18939
|
+
*
|
|
18940
|
+
* @method POST
|
|
18941
|
+
* @path /cfg/ipc/admin/api/test/load/stop/
|
|
18942
|
+
*/
|
|
18943
|
+
declare function createIpcAdminApiTestLoadStopCreate(data: TestRPCRequestRequest, client?: any): Promise<any>;
|
|
18944
|
+
/**
|
|
18945
|
+
* Send test RPC request
|
|
18946
|
+
*
|
|
18947
|
+
* @method POST
|
|
18948
|
+
* @path /cfg/ipc/admin/api/test/send/
|
|
18949
|
+
*/
|
|
18950
|
+
declare function createIpcAdminApiTestSendCreate(data: TestRPCRequestRequest, client?: any): Promise<TestRPCResponse>;
|
|
18951
|
+
/**
|
|
18952
|
+
* Start load test
|
|
18953
|
+
*
|
|
18954
|
+
* @method POST
|
|
18955
|
+
* @path /cfg/ipc/test/load/start/
|
|
18956
|
+
*/
|
|
18957
|
+
declare function createIpcTestLoadStartCreate(data: LoadTestRequestRequest, client?: any): Promise<LoadTestResponse>;
|
|
18958
|
+
/**
|
|
18959
|
+
* Get load test status
|
|
18960
|
+
*
|
|
18961
|
+
* @method GET
|
|
18962
|
+
* @path /cfg/ipc/test/load/status/
|
|
18963
|
+
*/
|
|
18964
|
+
declare function getIpcTestLoadStatusRetrieve(client?: any): Promise<LoadTestStatus>;
|
|
18965
|
+
/**
|
|
18966
|
+
* Stop load test
|
|
18967
|
+
*
|
|
18968
|
+
* @method POST
|
|
18969
|
+
* @path /cfg/ipc/test/load/stop/
|
|
18970
|
+
*/
|
|
18971
|
+
declare function createIpcTestLoadStopCreate(data: TestRPCRequestRequest, client?: any): Promise<any>;
|
|
18972
|
+
/**
|
|
18973
|
+
* Send test RPC request
|
|
18974
|
+
*
|
|
18975
|
+
* @method POST
|
|
18976
|
+
* @path /cfg/ipc/test/send/
|
|
18977
|
+
*/
|
|
18978
|
+
declare function createIpcTestSendCreate(data: TestRPCRequestRequest, client?: any): Promise<TestRPCResponse>;
|
|
18979
|
+
|
|
17348
18980
|
/**
|
|
17349
18981
|
* Typed fetchers for Knowbase
|
|
17350
18982
|
*
|
|
@@ -18646,6 +20278,12 @@ declare const index$1_createAccountsOtpRequestCreate: typeof createAccountsOtpRe
|
|
|
18646
20278
|
declare const index$1_createAccountsOtpVerifyCreate: typeof createAccountsOtpVerifyCreate;
|
|
18647
20279
|
declare const index$1_createAccountsProfileAvatarCreate: typeof createAccountsProfileAvatarCreate;
|
|
18648
20280
|
declare const index$1_createAccountsTokenRefreshCreate: typeof createAccountsTokenRefreshCreate;
|
|
20281
|
+
declare const index$1_createIpcAdminApiTestLoadStartCreate: typeof createIpcAdminApiTestLoadStartCreate;
|
|
20282
|
+
declare const index$1_createIpcAdminApiTestLoadStopCreate: typeof createIpcAdminApiTestLoadStopCreate;
|
|
20283
|
+
declare const index$1_createIpcAdminApiTestSendCreate: typeof createIpcAdminApiTestSendCreate;
|
|
20284
|
+
declare const index$1_createIpcTestLoadStartCreate: typeof createIpcTestLoadStartCreate;
|
|
20285
|
+
declare const index$1_createIpcTestLoadStopCreate: typeof createIpcTestLoadStopCreate;
|
|
20286
|
+
declare const index$1_createIpcTestSendCreate: typeof createIpcTestSendCreate;
|
|
18649
20287
|
declare const index$1_createKnowbaseAdminChatCreate: typeof createKnowbaseAdminChatCreate;
|
|
18650
20288
|
declare const index$1_createKnowbaseAdminChatQueryCreate: typeof createKnowbaseAdminChatQueryCreate;
|
|
18651
20289
|
declare const index$1_createKnowbaseAdminDocumentsCreate: typeof createKnowbaseAdminDocumentsCreate;
|
|
@@ -18691,6 +20329,18 @@ declare const index$1_getAccountsProfileRetrieve: typeof getAccountsProfileRetri
|
|
|
18691
20329
|
declare const index$1_getEndpointsDrfRetrieve: typeof getEndpointsDrfRetrieve;
|
|
18692
20330
|
declare const index$1_getHealthDrfQuickRetrieve: typeof getHealthDrfQuickRetrieve;
|
|
18693
20331
|
declare const index$1_getHealthDrfRetrieve: typeof getHealthDrfRetrieve;
|
|
20332
|
+
declare const index$1_getIpcAdminApiMonitorHealthRetrieve: typeof getIpcAdminApiMonitorHealthRetrieve;
|
|
20333
|
+
declare const index$1_getIpcAdminApiMonitorMethodsRetrieve: typeof getIpcAdminApiMonitorMethodsRetrieve;
|
|
20334
|
+
declare const index$1_getIpcAdminApiMonitorNotificationsRetrieve: typeof getIpcAdminApiMonitorNotificationsRetrieve;
|
|
20335
|
+
declare const index$1_getIpcAdminApiMonitorOverviewRetrieve: typeof getIpcAdminApiMonitorOverviewRetrieve;
|
|
20336
|
+
declare const index$1_getIpcAdminApiMonitorRequestsRetrieve: typeof getIpcAdminApiMonitorRequestsRetrieve;
|
|
20337
|
+
declare const index$1_getIpcAdminApiTestLoadStatusRetrieve: typeof getIpcAdminApiTestLoadStatusRetrieve;
|
|
20338
|
+
declare const index$1_getIpcMonitorHealthRetrieve: typeof getIpcMonitorHealthRetrieve;
|
|
20339
|
+
declare const index$1_getIpcMonitorMethodsRetrieve: typeof getIpcMonitorMethodsRetrieve;
|
|
20340
|
+
declare const index$1_getIpcMonitorNotificationsRetrieve: typeof getIpcMonitorNotificationsRetrieve;
|
|
20341
|
+
declare const index$1_getIpcMonitorOverviewRetrieve: typeof getIpcMonitorOverviewRetrieve;
|
|
20342
|
+
declare const index$1_getIpcMonitorRequestsRetrieve: typeof getIpcMonitorRequestsRetrieve;
|
|
20343
|
+
declare const index$1_getIpcTestLoadStatusRetrieve: typeof getIpcTestLoadStatusRetrieve;
|
|
18694
20344
|
declare const index$1_getKnowbaseAdminChatHistoryRetrieve: typeof getKnowbaseAdminChatHistoryRetrieve;
|
|
18695
20345
|
declare const index$1_getKnowbaseAdminChatList: typeof getKnowbaseAdminChatList;
|
|
18696
20346
|
declare const index$1_getKnowbaseAdminChatRetrieve: typeof getKnowbaseAdminChatRetrieve;
|
|
@@ -18766,7 +20416,7 @@ declare const index$1_updateNewsletterUnsubscribeUpdate: typeof updateNewsletter
|
|
|
18766
20416
|
declare const index$1_updateSupportTicketsMessagesUpdate: typeof updateSupportTicketsMessagesUpdate;
|
|
18767
20417
|
declare const index$1_updateSupportTicketsUpdate: typeof updateSupportTicketsUpdate;
|
|
18768
20418
|
declare namespace index$1 {
|
|
18769
|
-
export { index$1_createAccountsOtpRequestCreate as createAccountsOtpRequestCreate, index$1_createAccountsOtpVerifyCreate as createAccountsOtpVerifyCreate, index$1_createAccountsProfileAvatarCreate as createAccountsProfileAvatarCreate, index$1_createAccountsTokenRefreshCreate as createAccountsTokenRefreshCreate, index$1_createKnowbaseAdminChatCreate as createKnowbaseAdminChatCreate, index$1_createKnowbaseAdminChatQueryCreate as createKnowbaseAdminChatQueryCreate, index$1_createKnowbaseAdminDocumentsCreate as createKnowbaseAdminDocumentsCreate, index$1_createKnowbaseAdminDocumentsReprocessCreate as createKnowbaseAdminDocumentsReprocessCreate, index$1_createKnowbaseAdminSessionsActivateCreate as createKnowbaseAdminSessionsActivateCreate, index$1_createKnowbaseAdminSessionsArchiveCreate as createKnowbaseAdminSessionsArchiveCreate, index$1_createKnowbaseAdminSessionsCreate as createKnowbaseAdminSessionsCreate, index$1_createKnowbaseSystemArchivesCreate as createKnowbaseSystemArchivesCreate, index$1_createKnowbaseSystemArchivesRevectorizeCreate as createKnowbaseSystemArchivesRevectorizeCreate, index$1_createKnowbaseSystemArchivesSearchCreate as createKnowbaseSystemArchivesSearchCreate, index$1_createKnowbaseSystemChunksCreate as createKnowbaseSystemChunksCreate, index$1_createKnowbaseSystemChunksVectorizeCreate as createKnowbaseSystemChunksVectorizeCreate, index$1_createKnowbaseSystemItemsCreate as createKnowbaseSystemItemsCreate, index$1_createLeadsCreate as createLeadsCreate, index$1_createLeadsSubmitCreate as createLeadsSubmitCreate, index$1_createNewsletterBulkCreate as createNewsletterBulkCreate, index$1_createNewsletterCampaignsCreate as createNewsletterCampaignsCreate, index$1_createNewsletterCampaignsSendCreate as createNewsletterCampaignsSendCreate, index$1_createNewsletterSubscribeCreate as createNewsletterSubscribeCreate, index$1_createNewsletterTestCreate as createNewsletterTestCreate, index$1_createNewsletterUnsubscribeCreate as createNewsletterUnsubscribeCreate, index$1_createPaymentsPaymentsConfirmCreate as createPaymentsPaymentsConfirmCreate, index$1_createPaymentsPaymentsCreateCreate as createPaymentsPaymentsCreateCreate, index$1_createSupportTicketsCreate as createSupportTicketsCreate, index$1_createSupportTicketsMessagesCreate as createSupportTicketsMessagesCreate, index$1_createTasksApiClearCreate as createTasksApiClearCreate, index$1_createTasksApiClearQueuesCreate as createTasksApiClearQueuesCreate, index$1_createTasksApiPurgeFailedCreate as createTasksApiPurgeFailedCreate, index$1_createTasksApiQueuesManageCreate as createTasksApiQueuesManageCreate, index$1_createTasksApiSimulateCreate as createTasksApiSimulateCreate, index$1_createTasksApiWorkersManageCreate as createTasksApiWorkersManageCreate, index$1_deleteKnowbaseAdminChatDestroy as deleteKnowbaseAdminChatDestroy, index$1_deleteKnowbaseAdminDocumentsDestroy as deleteKnowbaseAdminDocumentsDestroy, index$1_deleteKnowbaseAdminSessionsDestroy as deleteKnowbaseAdminSessionsDestroy, index$1_deleteKnowbaseSystemArchivesDestroy as deleteKnowbaseSystemArchivesDestroy, index$1_deleteKnowbaseSystemChunksDestroy as deleteKnowbaseSystemChunksDestroy, index$1_deleteKnowbaseSystemItemsDestroy as deleteKnowbaseSystemItemsDestroy, index$1_deleteLeadsDestroy as deleteLeadsDestroy, index$1_deleteNewsletterCampaignsDestroy as deleteNewsletterCampaignsDestroy, index$1_deleteSupportTicketsDestroy as deleteSupportTicketsDestroy, index$1_deleteSupportTicketsMessagesDestroy as deleteSupportTicketsMessagesDestroy, index$1_getAccountsProfileRetrieve as getAccountsProfileRetrieve, index$1_getEndpointsDrfRetrieve as getEndpointsDrfRetrieve, index$1_getHealthDrfQuickRetrieve as getHealthDrfQuickRetrieve, index$1_getHealthDrfRetrieve as getHealthDrfRetrieve, index$1_getKnowbaseAdminChatHistoryRetrieve as getKnowbaseAdminChatHistoryRetrieve, index$1_getKnowbaseAdminChatList as getKnowbaseAdminChatList, index$1_getKnowbaseAdminChatRetrieve as getKnowbaseAdminChatRetrieve, index$1_getKnowbaseAdminDocumentsList as getKnowbaseAdminDocumentsList, index$1_getKnowbaseAdminDocumentsRetrieve as getKnowbaseAdminDocumentsRetrieve, index$1_getKnowbaseAdminDocumentsStatsRetrieve as getKnowbaseAdminDocumentsStatsRetrieve, index$1_getKnowbaseAdminDocumentsStatusRetrieve as getKnowbaseAdminDocumentsStatusRetrieve, index$1_getKnowbaseAdminSessionsList as getKnowbaseAdminSessionsList, index$1_getKnowbaseAdminSessionsRetrieve as getKnowbaseAdminSessionsRetrieve, index$1_getKnowbaseCategoriesList as getKnowbaseCategoriesList, index$1_getKnowbaseCategoriesRetrieve as getKnowbaseCategoriesRetrieve, index$1_getKnowbaseDocumentsList as getKnowbaseDocumentsList, index$1_getKnowbaseDocumentsRetrieve as getKnowbaseDocumentsRetrieve, index$1_getKnowbaseSystemArchivesFileTreeRetrieve as getKnowbaseSystemArchivesFileTreeRetrieve, index$1_getKnowbaseSystemArchivesItemsList as getKnowbaseSystemArchivesItemsList, index$1_getKnowbaseSystemArchivesList as getKnowbaseSystemArchivesList, index$1_getKnowbaseSystemArchivesRetrieve as getKnowbaseSystemArchivesRetrieve, index$1_getKnowbaseSystemArchivesStatisticsRetrieve as getKnowbaseSystemArchivesStatisticsRetrieve, index$1_getKnowbaseSystemArchivesVectorizationStatsRetrieve as getKnowbaseSystemArchivesVectorizationStatsRetrieve, index$1_getKnowbaseSystemChunksContextRetrieve as getKnowbaseSystemChunksContextRetrieve, index$1_getKnowbaseSystemChunksList as getKnowbaseSystemChunksList, index$1_getKnowbaseSystemChunksRetrieve as getKnowbaseSystemChunksRetrieve, index$1_getKnowbaseSystemItemsChunksList as getKnowbaseSystemItemsChunksList, index$1_getKnowbaseSystemItemsContentRetrieve as getKnowbaseSystemItemsContentRetrieve, index$1_getKnowbaseSystemItemsList as getKnowbaseSystemItemsList, index$1_getKnowbaseSystemItemsRetrieve as getKnowbaseSystemItemsRetrieve, index$1_getLeadsList as getLeadsList, index$1_getLeadsRetrieve as getLeadsRetrieve, index$1_getNewsletterCampaignsList as getNewsletterCampaignsList, index$1_getNewsletterCampaignsRetrieve as getNewsletterCampaignsRetrieve, index$1_getNewsletterLogsList as getNewsletterLogsList, index$1_getNewsletterNewslettersList as getNewsletterNewslettersList, index$1_getNewsletterNewslettersRetrieve as getNewsletterNewslettersRetrieve, index$1_getNewsletterSubscriptionsList as getNewsletterSubscriptionsList, index$1_getPaymentsBalanceRetrieve as getPaymentsBalanceRetrieve, index$1_getPaymentsCurrenciesList as getPaymentsCurrenciesList, index$1_getPaymentsPaymentsList as getPaymentsPaymentsList, index$1_getPaymentsPaymentsRetrieve as getPaymentsPaymentsRetrieve, index$1_getPaymentsPaymentsStatusRetrieve as getPaymentsPaymentsStatusRetrieve, index$1_getPaymentsTransactionsList as getPaymentsTransactionsList, index$1_getSupportTicketsList as getSupportTicketsList, index$1_getSupportTicketsMessagesList as getSupportTicketsMessagesList, index$1_getSupportTicketsMessagesRetrieve as getSupportTicketsMessagesRetrieve, index$1_getSupportTicketsRetrieve as getSupportTicketsRetrieve, index$1_getTasksApiQueuesStatusRetrieve as getTasksApiQueuesStatusRetrieve, index$1_getTasksApiTasksListRetrieve as getTasksApiTasksListRetrieve, index$1_getTasksApiTasksStatsRetrieve as getTasksApiTasksStatsRetrieve, index$1_getTasksApiWorkersListRetrieve as getTasksApiWorkersListRetrieve, index$1_partialUpdateAccountsProfilePartialPartialUpdate as partialUpdateAccountsProfilePartialPartialUpdate, index$1_partialUpdateAccountsProfilePartialUpdate as partialUpdateAccountsProfilePartialUpdate, index$1_partialUpdateAccountsProfileUpdatePartialUpdate as partialUpdateAccountsProfileUpdatePartialUpdate, index$1_partialUpdateKnowbaseAdminChatPartialUpdate as partialUpdateKnowbaseAdminChatPartialUpdate, index$1_partialUpdateKnowbaseAdminDocumentsPartialUpdate as partialUpdateKnowbaseAdminDocumentsPartialUpdate, index$1_partialUpdateKnowbaseAdminSessionsPartialUpdate as partialUpdateKnowbaseAdminSessionsPartialUpdate, index$1_partialUpdateKnowbaseSystemArchivesPartialUpdate as partialUpdateKnowbaseSystemArchivesPartialUpdate, index$1_partialUpdateKnowbaseSystemChunksPartialUpdate as partialUpdateKnowbaseSystemChunksPartialUpdate, index$1_partialUpdateKnowbaseSystemItemsPartialUpdate as partialUpdateKnowbaseSystemItemsPartialUpdate, index$1_partialUpdateLeadsPartialUpdate as partialUpdateLeadsPartialUpdate, index$1_partialUpdateNewsletterCampaignsPartialUpdate as partialUpdateNewsletterCampaignsPartialUpdate, index$1_partialUpdateNewsletterUnsubscribePartialUpdate as partialUpdateNewsletterUnsubscribePartialUpdate, index$1_partialUpdateSupportTicketsMessagesPartialUpdate as partialUpdateSupportTicketsMessagesPartialUpdate, index$1_partialUpdateSupportTicketsPartialUpdate as partialUpdateSupportTicketsPartialUpdate, index$1_updateAccountsProfileUpdateUpdate as updateAccountsProfileUpdateUpdate, index$1_updateKnowbaseAdminChatUpdate as updateKnowbaseAdminChatUpdate, index$1_updateKnowbaseAdminDocumentsUpdate as updateKnowbaseAdminDocumentsUpdate, index$1_updateKnowbaseAdminSessionsUpdate as updateKnowbaseAdminSessionsUpdate, index$1_updateKnowbaseSystemArchivesUpdate as updateKnowbaseSystemArchivesUpdate, index$1_updateKnowbaseSystemChunksUpdate as updateKnowbaseSystemChunksUpdate, index$1_updateKnowbaseSystemItemsUpdate as updateKnowbaseSystemItemsUpdate, index$1_updateLeadsUpdate as updateLeadsUpdate, index$1_updateNewsletterCampaignsUpdate as updateNewsletterCampaignsUpdate, index$1_updateNewsletterUnsubscribeUpdate as updateNewsletterUnsubscribeUpdate, index$1_updateSupportTicketsMessagesUpdate as updateSupportTicketsMessagesUpdate, index$1_updateSupportTicketsUpdate as updateSupportTicketsUpdate };
|
|
20419
|
+
export { index$1_createAccountsOtpRequestCreate as createAccountsOtpRequestCreate, index$1_createAccountsOtpVerifyCreate as createAccountsOtpVerifyCreate, index$1_createAccountsProfileAvatarCreate as createAccountsProfileAvatarCreate, index$1_createAccountsTokenRefreshCreate as createAccountsTokenRefreshCreate, index$1_createIpcAdminApiTestLoadStartCreate as createIpcAdminApiTestLoadStartCreate, index$1_createIpcAdminApiTestLoadStopCreate as createIpcAdminApiTestLoadStopCreate, index$1_createIpcAdminApiTestSendCreate as createIpcAdminApiTestSendCreate, index$1_createIpcTestLoadStartCreate as createIpcTestLoadStartCreate, index$1_createIpcTestLoadStopCreate as createIpcTestLoadStopCreate, index$1_createIpcTestSendCreate as createIpcTestSendCreate, index$1_createKnowbaseAdminChatCreate as createKnowbaseAdminChatCreate, index$1_createKnowbaseAdminChatQueryCreate as createKnowbaseAdminChatQueryCreate, index$1_createKnowbaseAdminDocumentsCreate as createKnowbaseAdminDocumentsCreate, index$1_createKnowbaseAdminDocumentsReprocessCreate as createKnowbaseAdminDocumentsReprocessCreate, index$1_createKnowbaseAdminSessionsActivateCreate as createKnowbaseAdminSessionsActivateCreate, index$1_createKnowbaseAdminSessionsArchiveCreate as createKnowbaseAdminSessionsArchiveCreate, index$1_createKnowbaseAdminSessionsCreate as createKnowbaseAdminSessionsCreate, index$1_createKnowbaseSystemArchivesCreate as createKnowbaseSystemArchivesCreate, index$1_createKnowbaseSystemArchivesRevectorizeCreate as createKnowbaseSystemArchivesRevectorizeCreate, index$1_createKnowbaseSystemArchivesSearchCreate as createKnowbaseSystemArchivesSearchCreate, index$1_createKnowbaseSystemChunksCreate as createKnowbaseSystemChunksCreate, index$1_createKnowbaseSystemChunksVectorizeCreate as createKnowbaseSystemChunksVectorizeCreate, index$1_createKnowbaseSystemItemsCreate as createKnowbaseSystemItemsCreate, index$1_createLeadsCreate as createLeadsCreate, index$1_createLeadsSubmitCreate as createLeadsSubmitCreate, index$1_createNewsletterBulkCreate as createNewsletterBulkCreate, index$1_createNewsletterCampaignsCreate as createNewsletterCampaignsCreate, index$1_createNewsletterCampaignsSendCreate as createNewsletterCampaignsSendCreate, index$1_createNewsletterSubscribeCreate as createNewsletterSubscribeCreate, index$1_createNewsletterTestCreate as createNewsletterTestCreate, index$1_createNewsletterUnsubscribeCreate as createNewsletterUnsubscribeCreate, index$1_createPaymentsPaymentsConfirmCreate as createPaymentsPaymentsConfirmCreate, index$1_createPaymentsPaymentsCreateCreate as createPaymentsPaymentsCreateCreate, index$1_createSupportTicketsCreate as createSupportTicketsCreate, index$1_createSupportTicketsMessagesCreate as createSupportTicketsMessagesCreate, index$1_createTasksApiClearCreate as createTasksApiClearCreate, index$1_createTasksApiClearQueuesCreate as createTasksApiClearQueuesCreate, index$1_createTasksApiPurgeFailedCreate as createTasksApiPurgeFailedCreate, index$1_createTasksApiQueuesManageCreate as createTasksApiQueuesManageCreate, index$1_createTasksApiSimulateCreate as createTasksApiSimulateCreate, index$1_createTasksApiWorkersManageCreate as createTasksApiWorkersManageCreate, index$1_deleteKnowbaseAdminChatDestroy as deleteKnowbaseAdminChatDestroy, index$1_deleteKnowbaseAdminDocumentsDestroy as deleteKnowbaseAdminDocumentsDestroy, index$1_deleteKnowbaseAdminSessionsDestroy as deleteKnowbaseAdminSessionsDestroy, index$1_deleteKnowbaseSystemArchivesDestroy as deleteKnowbaseSystemArchivesDestroy, index$1_deleteKnowbaseSystemChunksDestroy as deleteKnowbaseSystemChunksDestroy, index$1_deleteKnowbaseSystemItemsDestroy as deleteKnowbaseSystemItemsDestroy, index$1_deleteLeadsDestroy as deleteLeadsDestroy, index$1_deleteNewsletterCampaignsDestroy as deleteNewsletterCampaignsDestroy, index$1_deleteSupportTicketsDestroy as deleteSupportTicketsDestroy, index$1_deleteSupportTicketsMessagesDestroy as deleteSupportTicketsMessagesDestroy, index$1_getAccountsProfileRetrieve as getAccountsProfileRetrieve, index$1_getEndpointsDrfRetrieve as getEndpointsDrfRetrieve, index$1_getHealthDrfQuickRetrieve as getHealthDrfQuickRetrieve, index$1_getHealthDrfRetrieve as getHealthDrfRetrieve, index$1_getIpcAdminApiMonitorHealthRetrieve as getIpcAdminApiMonitorHealthRetrieve, index$1_getIpcAdminApiMonitorMethodsRetrieve as getIpcAdminApiMonitorMethodsRetrieve, index$1_getIpcAdminApiMonitorNotificationsRetrieve as getIpcAdminApiMonitorNotificationsRetrieve, index$1_getIpcAdminApiMonitorOverviewRetrieve as getIpcAdminApiMonitorOverviewRetrieve, index$1_getIpcAdminApiMonitorRequestsRetrieve as getIpcAdminApiMonitorRequestsRetrieve, index$1_getIpcAdminApiTestLoadStatusRetrieve as getIpcAdminApiTestLoadStatusRetrieve, index$1_getIpcMonitorHealthRetrieve as getIpcMonitorHealthRetrieve, index$1_getIpcMonitorMethodsRetrieve as getIpcMonitorMethodsRetrieve, index$1_getIpcMonitorNotificationsRetrieve as getIpcMonitorNotificationsRetrieve, index$1_getIpcMonitorOverviewRetrieve as getIpcMonitorOverviewRetrieve, index$1_getIpcMonitorRequestsRetrieve as getIpcMonitorRequestsRetrieve, index$1_getIpcTestLoadStatusRetrieve as getIpcTestLoadStatusRetrieve, index$1_getKnowbaseAdminChatHistoryRetrieve as getKnowbaseAdminChatHistoryRetrieve, index$1_getKnowbaseAdminChatList as getKnowbaseAdminChatList, index$1_getKnowbaseAdminChatRetrieve as getKnowbaseAdminChatRetrieve, index$1_getKnowbaseAdminDocumentsList as getKnowbaseAdminDocumentsList, index$1_getKnowbaseAdminDocumentsRetrieve as getKnowbaseAdminDocumentsRetrieve, index$1_getKnowbaseAdminDocumentsStatsRetrieve as getKnowbaseAdminDocumentsStatsRetrieve, index$1_getKnowbaseAdminDocumentsStatusRetrieve as getKnowbaseAdminDocumentsStatusRetrieve, index$1_getKnowbaseAdminSessionsList as getKnowbaseAdminSessionsList, index$1_getKnowbaseAdminSessionsRetrieve as getKnowbaseAdminSessionsRetrieve, index$1_getKnowbaseCategoriesList as getKnowbaseCategoriesList, index$1_getKnowbaseCategoriesRetrieve as getKnowbaseCategoriesRetrieve, index$1_getKnowbaseDocumentsList as getKnowbaseDocumentsList, index$1_getKnowbaseDocumentsRetrieve as getKnowbaseDocumentsRetrieve, index$1_getKnowbaseSystemArchivesFileTreeRetrieve as getKnowbaseSystemArchivesFileTreeRetrieve, index$1_getKnowbaseSystemArchivesItemsList as getKnowbaseSystemArchivesItemsList, index$1_getKnowbaseSystemArchivesList as getKnowbaseSystemArchivesList, index$1_getKnowbaseSystemArchivesRetrieve as getKnowbaseSystemArchivesRetrieve, index$1_getKnowbaseSystemArchivesStatisticsRetrieve as getKnowbaseSystemArchivesStatisticsRetrieve, index$1_getKnowbaseSystemArchivesVectorizationStatsRetrieve as getKnowbaseSystemArchivesVectorizationStatsRetrieve, index$1_getKnowbaseSystemChunksContextRetrieve as getKnowbaseSystemChunksContextRetrieve, index$1_getKnowbaseSystemChunksList as getKnowbaseSystemChunksList, index$1_getKnowbaseSystemChunksRetrieve as getKnowbaseSystemChunksRetrieve, index$1_getKnowbaseSystemItemsChunksList as getKnowbaseSystemItemsChunksList, index$1_getKnowbaseSystemItemsContentRetrieve as getKnowbaseSystemItemsContentRetrieve, index$1_getKnowbaseSystemItemsList as getKnowbaseSystemItemsList, index$1_getKnowbaseSystemItemsRetrieve as getKnowbaseSystemItemsRetrieve, index$1_getLeadsList as getLeadsList, index$1_getLeadsRetrieve as getLeadsRetrieve, index$1_getNewsletterCampaignsList as getNewsletterCampaignsList, index$1_getNewsletterCampaignsRetrieve as getNewsletterCampaignsRetrieve, index$1_getNewsletterLogsList as getNewsletterLogsList, index$1_getNewsletterNewslettersList as getNewsletterNewslettersList, index$1_getNewsletterNewslettersRetrieve as getNewsletterNewslettersRetrieve, index$1_getNewsletterSubscriptionsList as getNewsletterSubscriptionsList, index$1_getPaymentsBalanceRetrieve as getPaymentsBalanceRetrieve, index$1_getPaymentsCurrenciesList as getPaymentsCurrenciesList, index$1_getPaymentsPaymentsList as getPaymentsPaymentsList, index$1_getPaymentsPaymentsRetrieve as getPaymentsPaymentsRetrieve, index$1_getPaymentsPaymentsStatusRetrieve as getPaymentsPaymentsStatusRetrieve, index$1_getPaymentsTransactionsList as getPaymentsTransactionsList, index$1_getSupportTicketsList as getSupportTicketsList, index$1_getSupportTicketsMessagesList as getSupportTicketsMessagesList, index$1_getSupportTicketsMessagesRetrieve as getSupportTicketsMessagesRetrieve, index$1_getSupportTicketsRetrieve as getSupportTicketsRetrieve, index$1_getTasksApiQueuesStatusRetrieve as getTasksApiQueuesStatusRetrieve, index$1_getTasksApiTasksListRetrieve as getTasksApiTasksListRetrieve, index$1_getTasksApiTasksStatsRetrieve as getTasksApiTasksStatsRetrieve, index$1_getTasksApiWorkersListRetrieve as getTasksApiWorkersListRetrieve, index$1_partialUpdateAccountsProfilePartialPartialUpdate as partialUpdateAccountsProfilePartialPartialUpdate, index$1_partialUpdateAccountsProfilePartialUpdate as partialUpdateAccountsProfilePartialUpdate, index$1_partialUpdateAccountsProfileUpdatePartialUpdate as partialUpdateAccountsProfileUpdatePartialUpdate, index$1_partialUpdateKnowbaseAdminChatPartialUpdate as partialUpdateKnowbaseAdminChatPartialUpdate, index$1_partialUpdateKnowbaseAdminDocumentsPartialUpdate as partialUpdateKnowbaseAdminDocumentsPartialUpdate, index$1_partialUpdateKnowbaseAdminSessionsPartialUpdate as partialUpdateKnowbaseAdminSessionsPartialUpdate, index$1_partialUpdateKnowbaseSystemArchivesPartialUpdate as partialUpdateKnowbaseSystemArchivesPartialUpdate, index$1_partialUpdateKnowbaseSystemChunksPartialUpdate as partialUpdateKnowbaseSystemChunksPartialUpdate, index$1_partialUpdateKnowbaseSystemItemsPartialUpdate as partialUpdateKnowbaseSystemItemsPartialUpdate, index$1_partialUpdateLeadsPartialUpdate as partialUpdateLeadsPartialUpdate, index$1_partialUpdateNewsletterCampaignsPartialUpdate as partialUpdateNewsletterCampaignsPartialUpdate, index$1_partialUpdateNewsletterUnsubscribePartialUpdate as partialUpdateNewsletterUnsubscribePartialUpdate, index$1_partialUpdateSupportTicketsMessagesPartialUpdate as partialUpdateSupportTicketsMessagesPartialUpdate, index$1_partialUpdateSupportTicketsPartialUpdate as partialUpdateSupportTicketsPartialUpdate, index$1_updateAccountsProfileUpdateUpdate as updateAccountsProfileUpdateUpdate, index$1_updateKnowbaseAdminChatUpdate as updateKnowbaseAdminChatUpdate, index$1_updateKnowbaseAdminDocumentsUpdate as updateKnowbaseAdminDocumentsUpdate, index$1_updateKnowbaseAdminSessionsUpdate as updateKnowbaseAdminSessionsUpdate, index$1_updateKnowbaseSystemArchivesUpdate as updateKnowbaseSystemArchivesUpdate, index$1_updateKnowbaseSystemChunksUpdate as updateKnowbaseSystemChunksUpdate, index$1_updateKnowbaseSystemItemsUpdate as updateKnowbaseSystemItemsUpdate, index$1_updateLeadsUpdate as updateLeadsUpdate, index$1_updateNewsletterCampaignsUpdate as updateNewsletterCampaignsUpdate, index$1_updateNewsletterUnsubscribeUpdate as updateNewsletterUnsubscribeUpdate, index$1_updateSupportTicketsMessagesUpdate as updateSupportTicketsMessagesUpdate, index$1_updateSupportTicketsUpdate as updateSupportTicketsUpdate };
|
|
18770
20420
|
}
|
|
18771
20421
|
|
|
18772
20422
|
/**
|
|
@@ -18931,6 +20581,172 @@ declare function useDeleteNewsletterCampaignsDestroy(): (id: number, client?: AP
|
|
|
18931
20581
|
*/
|
|
18932
20582
|
declare function useCreateNewsletterCampaignsSendCreate(): (data: SendCampaignRequest, client?: API) => Promise<SendCampaignResponse>;
|
|
18933
20583
|
|
|
20584
|
+
/**
|
|
20585
|
+
* SWR Hooks for IPC/RPC Monitoring
|
|
20586
|
+
*
|
|
20587
|
+
* React hooks powered by SWR for data fetching with automatic caching,
|
|
20588
|
+
* revalidation, and optimistic updates.
|
|
20589
|
+
*
|
|
20590
|
+
* Usage:
|
|
20591
|
+
* ```typescript
|
|
20592
|
+
* // Query hooks (GET)
|
|
20593
|
+
* const { data, error, isLoading } = useUsers({ page: 1 })
|
|
20594
|
+
*
|
|
20595
|
+
* // Mutation hooks (POST/PUT/PATCH/DELETE)
|
|
20596
|
+
* const createUser = useCreateUser()
|
|
20597
|
+
* await createUser({ name: 'John', email: 'john@example.com' })
|
|
20598
|
+
* ```
|
|
20599
|
+
*/
|
|
20600
|
+
|
|
20601
|
+
/**
|
|
20602
|
+
* Get RPC health status
|
|
20603
|
+
*
|
|
20604
|
+
* @method GET
|
|
20605
|
+
* @path /cfg/ipc/admin/api/monitor/health/
|
|
20606
|
+
*/
|
|
20607
|
+
declare function useIpcAdminApiMonitorHealthRetrieve(client?: API): ReturnType<typeof useSWR<HealthCheck>>;
|
|
20608
|
+
/**
|
|
20609
|
+
* Get method statistics
|
|
20610
|
+
*
|
|
20611
|
+
* @method GET
|
|
20612
|
+
* @path /cfg/ipc/admin/api/monitor/methods/
|
|
20613
|
+
*/
|
|
20614
|
+
declare function useIpcAdminApiMonitorMethodsRetrieve(client?: API): ReturnType<typeof useSWR<MethodStats>>;
|
|
20615
|
+
/**
|
|
20616
|
+
* Get notification statistics
|
|
20617
|
+
*
|
|
20618
|
+
* @method GET
|
|
20619
|
+
* @path /cfg/ipc/admin/api/monitor/notifications/
|
|
20620
|
+
*/
|
|
20621
|
+
declare function useIpcAdminApiMonitorNotificationsRetrieve(client?: API): ReturnType<typeof useSWR<NotificationStats>>;
|
|
20622
|
+
/**
|
|
20623
|
+
* Get overview statistics
|
|
20624
|
+
*
|
|
20625
|
+
* @method GET
|
|
20626
|
+
* @path /cfg/ipc/admin/api/monitor/overview/
|
|
20627
|
+
*/
|
|
20628
|
+
declare function useIpcAdminApiMonitorOverviewRetrieve(client?: API): ReturnType<typeof useSWR<OverviewStats>>;
|
|
20629
|
+
/**
|
|
20630
|
+
* Get recent RPC requests
|
|
20631
|
+
*
|
|
20632
|
+
* @method GET
|
|
20633
|
+
* @path /cfg/ipc/admin/api/monitor/requests/
|
|
20634
|
+
*/
|
|
20635
|
+
declare function useIpcAdminApiMonitorRequestsRetrieve(params?: {
|
|
20636
|
+
count?: number;
|
|
20637
|
+
}, client?: API): ReturnType<typeof useSWR<RecentRequests>>;
|
|
20638
|
+
/**
|
|
20639
|
+
* Get RPC health status
|
|
20640
|
+
*
|
|
20641
|
+
* @method GET
|
|
20642
|
+
* @path /cfg/ipc/monitor/health/
|
|
20643
|
+
*/
|
|
20644
|
+
declare function useIpcMonitorHealthRetrieve(client?: API): ReturnType<typeof useSWR<HealthCheck>>;
|
|
20645
|
+
/**
|
|
20646
|
+
* Get method statistics
|
|
20647
|
+
*
|
|
20648
|
+
* @method GET
|
|
20649
|
+
* @path /cfg/ipc/monitor/methods/
|
|
20650
|
+
*/
|
|
20651
|
+
declare function useIpcMonitorMethodsRetrieve(client?: API): ReturnType<typeof useSWR<MethodStats>>;
|
|
20652
|
+
/**
|
|
20653
|
+
* Get notification statistics
|
|
20654
|
+
*
|
|
20655
|
+
* @method GET
|
|
20656
|
+
* @path /cfg/ipc/monitor/notifications/
|
|
20657
|
+
*/
|
|
20658
|
+
declare function useIpcMonitorNotificationsRetrieve(client?: API): ReturnType<typeof useSWR<NotificationStats>>;
|
|
20659
|
+
/**
|
|
20660
|
+
* Get overview statistics
|
|
20661
|
+
*
|
|
20662
|
+
* @method GET
|
|
20663
|
+
* @path /cfg/ipc/monitor/overview/
|
|
20664
|
+
*/
|
|
20665
|
+
declare function useIpcMonitorOverviewRetrieve(client?: API): ReturnType<typeof useSWR<OverviewStats>>;
|
|
20666
|
+
/**
|
|
20667
|
+
* Get recent RPC requests
|
|
20668
|
+
*
|
|
20669
|
+
* @method GET
|
|
20670
|
+
* @path /cfg/ipc/monitor/requests/
|
|
20671
|
+
*/
|
|
20672
|
+
declare function useIpcMonitorRequestsRetrieve(params?: {
|
|
20673
|
+
count?: number;
|
|
20674
|
+
}, client?: API): ReturnType<typeof useSWR<RecentRequests>>;
|
|
20675
|
+
|
|
20676
|
+
/**
|
|
20677
|
+
* SWR Hooks for IPC/RPC Testing
|
|
20678
|
+
*
|
|
20679
|
+
* React hooks powered by SWR for data fetching with automatic caching,
|
|
20680
|
+
* revalidation, and optimistic updates.
|
|
20681
|
+
*
|
|
20682
|
+
* Usage:
|
|
20683
|
+
* ```typescript
|
|
20684
|
+
* // Query hooks (GET)
|
|
20685
|
+
* const { data, error, isLoading } = useUsers({ page: 1 })
|
|
20686
|
+
*
|
|
20687
|
+
* // Mutation hooks (POST/PUT/PATCH/DELETE)
|
|
20688
|
+
* const createUser = useCreateUser()
|
|
20689
|
+
* await createUser({ name: 'John', email: 'john@example.com' })
|
|
20690
|
+
* ```
|
|
20691
|
+
*/
|
|
20692
|
+
|
|
20693
|
+
/**
|
|
20694
|
+
* Start load test
|
|
20695
|
+
*
|
|
20696
|
+
* @method POST
|
|
20697
|
+
* @path /cfg/ipc/admin/api/test/load/start/
|
|
20698
|
+
*/
|
|
20699
|
+
declare function useCreateIpcAdminApiTestLoadStartCreate(): (data: LoadTestRequestRequest, client?: API) => Promise<LoadTestResponse>;
|
|
20700
|
+
/**
|
|
20701
|
+
* Get load test status
|
|
20702
|
+
*
|
|
20703
|
+
* @method GET
|
|
20704
|
+
* @path /cfg/ipc/admin/api/test/load/status/
|
|
20705
|
+
*/
|
|
20706
|
+
declare function useIpcAdminApiTestLoadStatusRetrieve(client?: API): ReturnType<typeof useSWR<LoadTestStatus>>;
|
|
20707
|
+
/**
|
|
20708
|
+
* Stop load test
|
|
20709
|
+
*
|
|
20710
|
+
* @method POST
|
|
20711
|
+
* @path /cfg/ipc/admin/api/test/load/stop/
|
|
20712
|
+
*/
|
|
20713
|
+
declare function useCreateIpcAdminApiTestLoadStopCreate(): (data: TestRPCRequestRequest, client?: API) => Promise<any>;
|
|
20714
|
+
/**
|
|
20715
|
+
* Send test RPC request
|
|
20716
|
+
*
|
|
20717
|
+
* @method POST
|
|
20718
|
+
* @path /cfg/ipc/admin/api/test/send/
|
|
20719
|
+
*/
|
|
20720
|
+
declare function useCreateIpcAdminApiTestSendCreate(): (data: TestRPCRequestRequest, client?: API) => Promise<TestRPCResponse>;
|
|
20721
|
+
/**
|
|
20722
|
+
* Start load test
|
|
20723
|
+
*
|
|
20724
|
+
* @method POST
|
|
20725
|
+
* @path /cfg/ipc/test/load/start/
|
|
20726
|
+
*/
|
|
20727
|
+
declare function useCreateIpcTestLoadStartCreate(): (data: LoadTestRequestRequest, client?: API) => Promise<LoadTestResponse>;
|
|
20728
|
+
/**
|
|
20729
|
+
* Get load test status
|
|
20730
|
+
*
|
|
20731
|
+
* @method GET
|
|
20732
|
+
* @path /cfg/ipc/test/load/status/
|
|
20733
|
+
*/
|
|
20734
|
+
declare function useIpcTestLoadStatusRetrieve(client?: API): ReturnType<typeof useSWR<LoadTestStatus>>;
|
|
20735
|
+
/**
|
|
20736
|
+
* Stop load test
|
|
20737
|
+
*
|
|
20738
|
+
* @method POST
|
|
20739
|
+
* @path /cfg/ipc/test/load/stop/
|
|
20740
|
+
*/
|
|
20741
|
+
declare function useCreateIpcTestLoadStopCreate(): (data: TestRPCRequestRequest, client?: API) => Promise<any>;
|
|
20742
|
+
/**
|
|
20743
|
+
* Send test RPC request
|
|
20744
|
+
*
|
|
20745
|
+
* @method POST
|
|
20746
|
+
* @path /cfg/ipc/test/send/
|
|
20747
|
+
*/
|
|
20748
|
+
declare function useCreateIpcTestSendCreate(): (data: TestRPCRequestRequest, client?: API) => Promise<TestRPCResponse>;
|
|
20749
|
+
|
|
18934
20750
|
/**
|
|
18935
20751
|
* Submit Lead Form
|
|
18936
20752
|
*
|
|
@@ -20029,6 +21845,12 @@ declare const index_useCreateAccountsOtpRequestCreate: typeof useCreateAccountsO
|
|
|
20029
21845
|
declare const index_useCreateAccountsOtpVerifyCreate: typeof useCreateAccountsOtpVerifyCreate;
|
|
20030
21846
|
declare const index_useCreateAccountsProfileAvatarCreate: typeof useCreateAccountsProfileAvatarCreate;
|
|
20031
21847
|
declare const index_useCreateAccountsTokenRefreshCreate: typeof useCreateAccountsTokenRefreshCreate;
|
|
21848
|
+
declare const index_useCreateIpcAdminApiTestLoadStartCreate: typeof useCreateIpcAdminApiTestLoadStartCreate;
|
|
21849
|
+
declare const index_useCreateIpcAdminApiTestLoadStopCreate: typeof useCreateIpcAdminApiTestLoadStopCreate;
|
|
21850
|
+
declare const index_useCreateIpcAdminApiTestSendCreate: typeof useCreateIpcAdminApiTestSendCreate;
|
|
21851
|
+
declare const index_useCreateIpcTestLoadStartCreate: typeof useCreateIpcTestLoadStartCreate;
|
|
21852
|
+
declare const index_useCreateIpcTestLoadStopCreate: typeof useCreateIpcTestLoadStopCreate;
|
|
21853
|
+
declare const index_useCreateIpcTestSendCreate: typeof useCreateIpcTestSendCreate;
|
|
20032
21854
|
declare const index_useCreateKnowbaseAdminChatCreate: typeof useCreateKnowbaseAdminChatCreate;
|
|
20033
21855
|
declare const index_useCreateKnowbaseAdminChatQueryCreate: typeof useCreateKnowbaseAdminChatQueryCreate;
|
|
20034
21856
|
declare const index_useCreateKnowbaseAdminDocumentsCreate: typeof useCreateKnowbaseAdminDocumentsCreate;
|
|
@@ -20073,6 +21895,18 @@ declare const index_useDeleteSupportTicketsMessagesDestroy: typeof useDeleteSupp
|
|
|
20073
21895
|
declare const index_useEndpointsDrfRetrieve: typeof useEndpointsDrfRetrieve;
|
|
20074
21896
|
declare const index_useHealthDrfQuickRetrieve: typeof useHealthDrfQuickRetrieve;
|
|
20075
21897
|
declare const index_useHealthDrfRetrieve: typeof useHealthDrfRetrieve;
|
|
21898
|
+
declare const index_useIpcAdminApiMonitorHealthRetrieve: typeof useIpcAdminApiMonitorHealthRetrieve;
|
|
21899
|
+
declare const index_useIpcAdminApiMonitorMethodsRetrieve: typeof useIpcAdminApiMonitorMethodsRetrieve;
|
|
21900
|
+
declare const index_useIpcAdminApiMonitorNotificationsRetrieve: typeof useIpcAdminApiMonitorNotificationsRetrieve;
|
|
21901
|
+
declare const index_useIpcAdminApiMonitorOverviewRetrieve: typeof useIpcAdminApiMonitorOverviewRetrieve;
|
|
21902
|
+
declare const index_useIpcAdminApiMonitorRequestsRetrieve: typeof useIpcAdminApiMonitorRequestsRetrieve;
|
|
21903
|
+
declare const index_useIpcAdminApiTestLoadStatusRetrieve: typeof useIpcAdminApiTestLoadStatusRetrieve;
|
|
21904
|
+
declare const index_useIpcMonitorHealthRetrieve: typeof useIpcMonitorHealthRetrieve;
|
|
21905
|
+
declare const index_useIpcMonitorMethodsRetrieve: typeof useIpcMonitorMethodsRetrieve;
|
|
21906
|
+
declare const index_useIpcMonitorNotificationsRetrieve: typeof useIpcMonitorNotificationsRetrieve;
|
|
21907
|
+
declare const index_useIpcMonitorOverviewRetrieve: typeof useIpcMonitorOverviewRetrieve;
|
|
21908
|
+
declare const index_useIpcMonitorRequestsRetrieve: typeof useIpcMonitorRequestsRetrieve;
|
|
21909
|
+
declare const index_useIpcTestLoadStatusRetrieve: typeof useIpcTestLoadStatusRetrieve;
|
|
20076
21910
|
declare const index_useKnowbaseAdminChatHistoryRetrieve: typeof useKnowbaseAdminChatHistoryRetrieve;
|
|
20077
21911
|
declare const index_useKnowbaseAdminChatList: typeof useKnowbaseAdminChatList;
|
|
20078
21912
|
declare const index_useKnowbaseAdminChatRetrieve: typeof useKnowbaseAdminChatRetrieve;
|
|
@@ -20148,7 +21982,7 @@ declare const index_useUpdateNewsletterUnsubscribeUpdate: typeof useUpdateNewsle
|
|
|
20148
21982
|
declare const index_useUpdateSupportTicketsMessagesUpdate: typeof useUpdateSupportTicketsMessagesUpdate;
|
|
20149
21983
|
declare const index_useUpdateSupportTicketsUpdate: typeof useUpdateSupportTicketsUpdate;
|
|
20150
21984
|
declare namespace index {
|
|
20151
|
-
export { index_useAccountsProfileRetrieve as useAccountsProfileRetrieve, index_useCreateAccountsOtpRequestCreate as useCreateAccountsOtpRequestCreate, index_useCreateAccountsOtpVerifyCreate as useCreateAccountsOtpVerifyCreate, index_useCreateAccountsProfileAvatarCreate as useCreateAccountsProfileAvatarCreate, index_useCreateAccountsTokenRefreshCreate as useCreateAccountsTokenRefreshCreate, index_useCreateKnowbaseAdminChatCreate as useCreateKnowbaseAdminChatCreate, index_useCreateKnowbaseAdminChatQueryCreate as useCreateKnowbaseAdminChatQueryCreate, index_useCreateKnowbaseAdminDocumentsCreate as useCreateKnowbaseAdminDocumentsCreate, index_useCreateKnowbaseAdminDocumentsReprocessCreate as useCreateKnowbaseAdminDocumentsReprocessCreate, index_useCreateKnowbaseAdminSessionsActivateCreate as useCreateKnowbaseAdminSessionsActivateCreate, index_useCreateKnowbaseAdminSessionsArchiveCreate as useCreateKnowbaseAdminSessionsArchiveCreate, index_useCreateKnowbaseAdminSessionsCreate as useCreateKnowbaseAdminSessionsCreate, index_useCreateKnowbaseSystemArchivesCreate as useCreateKnowbaseSystemArchivesCreate, index_useCreateKnowbaseSystemArchivesRevectorizeCreate as useCreateKnowbaseSystemArchivesRevectorizeCreate, index_useCreateKnowbaseSystemArchivesSearchCreate as useCreateKnowbaseSystemArchivesSearchCreate, index_useCreateKnowbaseSystemChunksCreate as useCreateKnowbaseSystemChunksCreate, index_useCreateKnowbaseSystemChunksVectorizeCreate as useCreateKnowbaseSystemChunksVectorizeCreate, index_useCreateKnowbaseSystemItemsCreate as useCreateKnowbaseSystemItemsCreate, index_useCreateLeadsCreate as useCreateLeadsCreate, index_useCreateLeadsSubmitCreate as useCreateLeadsSubmitCreate, index_useCreateNewsletterBulkCreate as useCreateNewsletterBulkCreate, index_useCreateNewsletterCampaignsCreate as useCreateNewsletterCampaignsCreate, index_useCreateNewsletterCampaignsSendCreate as useCreateNewsletterCampaignsSendCreate, index_useCreateNewsletterSubscribeCreate as useCreateNewsletterSubscribeCreate, index_useCreateNewsletterTestCreate as useCreateNewsletterTestCreate, index_useCreateNewsletterUnsubscribeCreate as useCreateNewsletterUnsubscribeCreate, index_useCreatePaymentsPaymentsConfirmCreate as useCreatePaymentsPaymentsConfirmCreate, index_useCreatePaymentsPaymentsCreateCreate as useCreatePaymentsPaymentsCreateCreate, index_useCreateSupportTicketsCreate as useCreateSupportTicketsCreate, index_useCreateSupportTicketsMessagesCreate as useCreateSupportTicketsMessagesCreate, index_useCreateTasksApiClearCreate as useCreateTasksApiClearCreate, index_useCreateTasksApiClearQueuesCreate as useCreateTasksApiClearQueuesCreate, index_useCreateTasksApiPurgeFailedCreate as useCreateTasksApiPurgeFailedCreate, index_useCreateTasksApiQueuesManageCreate as useCreateTasksApiQueuesManageCreate, index_useCreateTasksApiSimulateCreate as useCreateTasksApiSimulateCreate, index_useCreateTasksApiWorkersManageCreate as useCreateTasksApiWorkersManageCreate, index_useDeleteKnowbaseAdminChatDestroy as useDeleteKnowbaseAdminChatDestroy, index_useDeleteKnowbaseAdminDocumentsDestroy as useDeleteKnowbaseAdminDocumentsDestroy, index_useDeleteKnowbaseAdminSessionsDestroy as useDeleteKnowbaseAdminSessionsDestroy, index_useDeleteKnowbaseSystemArchivesDestroy as useDeleteKnowbaseSystemArchivesDestroy, index_useDeleteKnowbaseSystemChunksDestroy as useDeleteKnowbaseSystemChunksDestroy, index_useDeleteKnowbaseSystemItemsDestroy as useDeleteKnowbaseSystemItemsDestroy, index_useDeleteLeadsDestroy as useDeleteLeadsDestroy, index_useDeleteNewsletterCampaignsDestroy as useDeleteNewsletterCampaignsDestroy, index_useDeleteSupportTicketsDestroy as useDeleteSupportTicketsDestroy, index_useDeleteSupportTicketsMessagesDestroy as useDeleteSupportTicketsMessagesDestroy, index_useEndpointsDrfRetrieve as useEndpointsDrfRetrieve, index_useHealthDrfQuickRetrieve as useHealthDrfQuickRetrieve, index_useHealthDrfRetrieve as useHealthDrfRetrieve, index_useKnowbaseAdminChatHistoryRetrieve as useKnowbaseAdminChatHistoryRetrieve, index_useKnowbaseAdminChatList as useKnowbaseAdminChatList, index_useKnowbaseAdminChatRetrieve as useKnowbaseAdminChatRetrieve, index_useKnowbaseAdminDocumentsList as useKnowbaseAdminDocumentsList, index_useKnowbaseAdminDocumentsRetrieve as useKnowbaseAdminDocumentsRetrieve, index_useKnowbaseAdminDocumentsStatsRetrieve as useKnowbaseAdminDocumentsStatsRetrieve, index_useKnowbaseAdminDocumentsStatusRetrieve as useKnowbaseAdminDocumentsStatusRetrieve, index_useKnowbaseAdminSessionsList as useKnowbaseAdminSessionsList, index_useKnowbaseAdminSessionsRetrieve as useKnowbaseAdminSessionsRetrieve, index_useKnowbaseCategoriesList as useKnowbaseCategoriesList, index_useKnowbaseCategoriesRetrieve as useKnowbaseCategoriesRetrieve, index_useKnowbaseDocumentsList as useKnowbaseDocumentsList, index_useKnowbaseDocumentsRetrieve as useKnowbaseDocumentsRetrieve, index_useKnowbaseSystemArchivesFileTreeRetrieve as useKnowbaseSystemArchivesFileTreeRetrieve, index_useKnowbaseSystemArchivesItemsList as useKnowbaseSystemArchivesItemsList, index_useKnowbaseSystemArchivesList as useKnowbaseSystemArchivesList, index_useKnowbaseSystemArchivesRetrieve as useKnowbaseSystemArchivesRetrieve, index_useKnowbaseSystemArchivesStatisticsRetrieve as useKnowbaseSystemArchivesStatisticsRetrieve, index_useKnowbaseSystemArchivesVectorizationStatsRetrieve as useKnowbaseSystemArchivesVectorizationStatsRetrieve, index_useKnowbaseSystemChunksContextRetrieve as useKnowbaseSystemChunksContextRetrieve, index_useKnowbaseSystemChunksList as useKnowbaseSystemChunksList, index_useKnowbaseSystemChunksRetrieve as useKnowbaseSystemChunksRetrieve, index_useKnowbaseSystemItemsChunksList as useKnowbaseSystemItemsChunksList, index_useKnowbaseSystemItemsContentRetrieve as useKnowbaseSystemItemsContentRetrieve, index_useKnowbaseSystemItemsList as useKnowbaseSystemItemsList, index_useKnowbaseSystemItemsRetrieve as useKnowbaseSystemItemsRetrieve, index_useLeadsList as useLeadsList, index_useLeadsRetrieve as useLeadsRetrieve, index_useNewsletterCampaignsList as useNewsletterCampaignsList, index_useNewsletterCampaignsRetrieve as useNewsletterCampaignsRetrieve, index_useNewsletterLogsList as useNewsletterLogsList, index_useNewsletterNewslettersList as useNewsletterNewslettersList, index_useNewsletterNewslettersRetrieve as useNewsletterNewslettersRetrieve, index_useNewsletterSubscriptionsList as useNewsletterSubscriptionsList, index_usePartialUpdateAccountsProfilePartialPartialUpdate as usePartialUpdateAccountsProfilePartialPartialUpdate, index_usePartialUpdateAccountsProfilePartialUpdate as usePartialUpdateAccountsProfilePartialUpdate, index_usePartialUpdateAccountsProfileUpdatePartialUpdate as usePartialUpdateAccountsProfileUpdatePartialUpdate, index_usePartialUpdateKnowbaseAdminChatPartialUpdate as usePartialUpdateKnowbaseAdminChatPartialUpdate, index_usePartialUpdateKnowbaseAdminDocumentsPartialUpdate as usePartialUpdateKnowbaseAdminDocumentsPartialUpdate, index_usePartialUpdateKnowbaseAdminSessionsPartialUpdate as usePartialUpdateKnowbaseAdminSessionsPartialUpdate, index_usePartialUpdateKnowbaseSystemArchivesPartialUpdate as usePartialUpdateKnowbaseSystemArchivesPartialUpdate, index_usePartialUpdateKnowbaseSystemChunksPartialUpdate as usePartialUpdateKnowbaseSystemChunksPartialUpdate, index_usePartialUpdateKnowbaseSystemItemsPartialUpdate as usePartialUpdateKnowbaseSystemItemsPartialUpdate, index_usePartialUpdateLeadsPartialUpdate as usePartialUpdateLeadsPartialUpdate, index_usePartialUpdateNewsletterCampaignsPartialUpdate as usePartialUpdateNewsletterCampaignsPartialUpdate, index_usePartialUpdateNewsletterUnsubscribePartialUpdate as usePartialUpdateNewsletterUnsubscribePartialUpdate, index_usePartialUpdateSupportTicketsMessagesPartialUpdate as usePartialUpdateSupportTicketsMessagesPartialUpdate, index_usePartialUpdateSupportTicketsPartialUpdate as usePartialUpdateSupportTicketsPartialUpdate, index_usePaymentsBalanceRetrieve as usePaymentsBalanceRetrieve, index_usePaymentsCurrenciesList as usePaymentsCurrenciesList, index_usePaymentsPaymentsList as usePaymentsPaymentsList, index_usePaymentsPaymentsRetrieve as usePaymentsPaymentsRetrieve, index_usePaymentsPaymentsStatusRetrieve as usePaymentsPaymentsStatusRetrieve, index_usePaymentsTransactionsList as usePaymentsTransactionsList, index_useSupportTicketsList as useSupportTicketsList, index_useSupportTicketsMessagesList as useSupportTicketsMessagesList, index_useSupportTicketsMessagesRetrieve as useSupportTicketsMessagesRetrieve, index_useSupportTicketsRetrieve as useSupportTicketsRetrieve, index_useTasksApiQueuesStatusRetrieve as useTasksApiQueuesStatusRetrieve, index_useTasksApiTasksListRetrieve as useTasksApiTasksListRetrieve, index_useTasksApiTasksStatsRetrieve as useTasksApiTasksStatsRetrieve, index_useTasksApiWorkersListRetrieve as useTasksApiWorkersListRetrieve, index_useUpdateAccountsProfileUpdateUpdate as useUpdateAccountsProfileUpdateUpdate, index_useUpdateKnowbaseAdminChatUpdate as useUpdateKnowbaseAdminChatUpdate, index_useUpdateKnowbaseAdminDocumentsUpdate as useUpdateKnowbaseAdminDocumentsUpdate, index_useUpdateKnowbaseAdminSessionsUpdate as useUpdateKnowbaseAdminSessionsUpdate, index_useUpdateKnowbaseSystemArchivesUpdate as useUpdateKnowbaseSystemArchivesUpdate, index_useUpdateKnowbaseSystemChunksUpdate as useUpdateKnowbaseSystemChunksUpdate, index_useUpdateKnowbaseSystemItemsUpdate as useUpdateKnowbaseSystemItemsUpdate, index_useUpdateLeadsUpdate as useUpdateLeadsUpdate, index_useUpdateNewsletterCampaignsUpdate as useUpdateNewsletterCampaignsUpdate, index_useUpdateNewsletterUnsubscribeUpdate as useUpdateNewsletterUnsubscribeUpdate, index_useUpdateSupportTicketsMessagesUpdate as useUpdateSupportTicketsMessagesUpdate, index_useUpdateSupportTicketsUpdate as useUpdateSupportTicketsUpdate };
|
|
21985
|
+
export { index_useAccountsProfileRetrieve as useAccountsProfileRetrieve, index_useCreateAccountsOtpRequestCreate as useCreateAccountsOtpRequestCreate, index_useCreateAccountsOtpVerifyCreate as useCreateAccountsOtpVerifyCreate, index_useCreateAccountsProfileAvatarCreate as useCreateAccountsProfileAvatarCreate, index_useCreateAccountsTokenRefreshCreate as useCreateAccountsTokenRefreshCreate, index_useCreateIpcAdminApiTestLoadStartCreate as useCreateIpcAdminApiTestLoadStartCreate, index_useCreateIpcAdminApiTestLoadStopCreate as useCreateIpcAdminApiTestLoadStopCreate, index_useCreateIpcAdminApiTestSendCreate as useCreateIpcAdminApiTestSendCreate, index_useCreateIpcTestLoadStartCreate as useCreateIpcTestLoadStartCreate, index_useCreateIpcTestLoadStopCreate as useCreateIpcTestLoadStopCreate, index_useCreateIpcTestSendCreate as useCreateIpcTestSendCreate, index_useCreateKnowbaseAdminChatCreate as useCreateKnowbaseAdminChatCreate, index_useCreateKnowbaseAdminChatQueryCreate as useCreateKnowbaseAdminChatQueryCreate, index_useCreateKnowbaseAdminDocumentsCreate as useCreateKnowbaseAdminDocumentsCreate, index_useCreateKnowbaseAdminDocumentsReprocessCreate as useCreateKnowbaseAdminDocumentsReprocessCreate, index_useCreateKnowbaseAdminSessionsActivateCreate as useCreateKnowbaseAdminSessionsActivateCreate, index_useCreateKnowbaseAdminSessionsArchiveCreate as useCreateKnowbaseAdminSessionsArchiveCreate, index_useCreateKnowbaseAdminSessionsCreate as useCreateKnowbaseAdminSessionsCreate, index_useCreateKnowbaseSystemArchivesCreate as useCreateKnowbaseSystemArchivesCreate, index_useCreateKnowbaseSystemArchivesRevectorizeCreate as useCreateKnowbaseSystemArchivesRevectorizeCreate, index_useCreateKnowbaseSystemArchivesSearchCreate as useCreateKnowbaseSystemArchivesSearchCreate, index_useCreateKnowbaseSystemChunksCreate as useCreateKnowbaseSystemChunksCreate, index_useCreateKnowbaseSystemChunksVectorizeCreate as useCreateKnowbaseSystemChunksVectorizeCreate, index_useCreateKnowbaseSystemItemsCreate as useCreateKnowbaseSystemItemsCreate, index_useCreateLeadsCreate as useCreateLeadsCreate, index_useCreateLeadsSubmitCreate as useCreateLeadsSubmitCreate, index_useCreateNewsletterBulkCreate as useCreateNewsletterBulkCreate, index_useCreateNewsletterCampaignsCreate as useCreateNewsletterCampaignsCreate, index_useCreateNewsletterCampaignsSendCreate as useCreateNewsletterCampaignsSendCreate, index_useCreateNewsletterSubscribeCreate as useCreateNewsletterSubscribeCreate, index_useCreateNewsletterTestCreate as useCreateNewsletterTestCreate, index_useCreateNewsletterUnsubscribeCreate as useCreateNewsletterUnsubscribeCreate, index_useCreatePaymentsPaymentsConfirmCreate as useCreatePaymentsPaymentsConfirmCreate, index_useCreatePaymentsPaymentsCreateCreate as useCreatePaymentsPaymentsCreateCreate, index_useCreateSupportTicketsCreate as useCreateSupportTicketsCreate, index_useCreateSupportTicketsMessagesCreate as useCreateSupportTicketsMessagesCreate, index_useCreateTasksApiClearCreate as useCreateTasksApiClearCreate, index_useCreateTasksApiClearQueuesCreate as useCreateTasksApiClearQueuesCreate, index_useCreateTasksApiPurgeFailedCreate as useCreateTasksApiPurgeFailedCreate, index_useCreateTasksApiQueuesManageCreate as useCreateTasksApiQueuesManageCreate, index_useCreateTasksApiSimulateCreate as useCreateTasksApiSimulateCreate, index_useCreateTasksApiWorkersManageCreate as useCreateTasksApiWorkersManageCreate, index_useDeleteKnowbaseAdminChatDestroy as useDeleteKnowbaseAdminChatDestroy, index_useDeleteKnowbaseAdminDocumentsDestroy as useDeleteKnowbaseAdminDocumentsDestroy, index_useDeleteKnowbaseAdminSessionsDestroy as useDeleteKnowbaseAdminSessionsDestroy, index_useDeleteKnowbaseSystemArchivesDestroy as useDeleteKnowbaseSystemArchivesDestroy, index_useDeleteKnowbaseSystemChunksDestroy as useDeleteKnowbaseSystemChunksDestroy, index_useDeleteKnowbaseSystemItemsDestroy as useDeleteKnowbaseSystemItemsDestroy, index_useDeleteLeadsDestroy as useDeleteLeadsDestroy, index_useDeleteNewsletterCampaignsDestroy as useDeleteNewsletterCampaignsDestroy, index_useDeleteSupportTicketsDestroy as useDeleteSupportTicketsDestroy, index_useDeleteSupportTicketsMessagesDestroy as useDeleteSupportTicketsMessagesDestroy, index_useEndpointsDrfRetrieve as useEndpointsDrfRetrieve, index_useHealthDrfQuickRetrieve as useHealthDrfQuickRetrieve, index_useHealthDrfRetrieve as useHealthDrfRetrieve, index_useIpcAdminApiMonitorHealthRetrieve as useIpcAdminApiMonitorHealthRetrieve, index_useIpcAdminApiMonitorMethodsRetrieve as useIpcAdminApiMonitorMethodsRetrieve, index_useIpcAdminApiMonitorNotificationsRetrieve as useIpcAdminApiMonitorNotificationsRetrieve, index_useIpcAdminApiMonitorOverviewRetrieve as useIpcAdminApiMonitorOverviewRetrieve, index_useIpcAdminApiMonitorRequestsRetrieve as useIpcAdminApiMonitorRequestsRetrieve, index_useIpcAdminApiTestLoadStatusRetrieve as useIpcAdminApiTestLoadStatusRetrieve, index_useIpcMonitorHealthRetrieve as useIpcMonitorHealthRetrieve, index_useIpcMonitorMethodsRetrieve as useIpcMonitorMethodsRetrieve, index_useIpcMonitorNotificationsRetrieve as useIpcMonitorNotificationsRetrieve, index_useIpcMonitorOverviewRetrieve as useIpcMonitorOverviewRetrieve, index_useIpcMonitorRequestsRetrieve as useIpcMonitorRequestsRetrieve, index_useIpcTestLoadStatusRetrieve as useIpcTestLoadStatusRetrieve, index_useKnowbaseAdminChatHistoryRetrieve as useKnowbaseAdminChatHistoryRetrieve, index_useKnowbaseAdminChatList as useKnowbaseAdminChatList, index_useKnowbaseAdminChatRetrieve as useKnowbaseAdminChatRetrieve, index_useKnowbaseAdminDocumentsList as useKnowbaseAdminDocumentsList, index_useKnowbaseAdminDocumentsRetrieve as useKnowbaseAdminDocumentsRetrieve, index_useKnowbaseAdminDocumentsStatsRetrieve as useKnowbaseAdminDocumentsStatsRetrieve, index_useKnowbaseAdminDocumentsStatusRetrieve as useKnowbaseAdminDocumentsStatusRetrieve, index_useKnowbaseAdminSessionsList as useKnowbaseAdminSessionsList, index_useKnowbaseAdminSessionsRetrieve as useKnowbaseAdminSessionsRetrieve, index_useKnowbaseCategoriesList as useKnowbaseCategoriesList, index_useKnowbaseCategoriesRetrieve as useKnowbaseCategoriesRetrieve, index_useKnowbaseDocumentsList as useKnowbaseDocumentsList, index_useKnowbaseDocumentsRetrieve as useKnowbaseDocumentsRetrieve, index_useKnowbaseSystemArchivesFileTreeRetrieve as useKnowbaseSystemArchivesFileTreeRetrieve, index_useKnowbaseSystemArchivesItemsList as useKnowbaseSystemArchivesItemsList, index_useKnowbaseSystemArchivesList as useKnowbaseSystemArchivesList, index_useKnowbaseSystemArchivesRetrieve as useKnowbaseSystemArchivesRetrieve, index_useKnowbaseSystemArchivesStatisticsRetrieve as useKnowbaseSystemArchivesStatisticsRetrieve, index_useKnowbaseSystemArchivesVectorizationStatsRetrieve as useKnowbaseSystemArchivesVectorizationStatsRetrieve, index_useKnowbaseSystemChunksContextRetrieve as useKnowbaseSystemChunksContextRetrieve, index_useKnowbaseSystemChunksList as useKnowbaseSystemChunksList, index_useKnowbaseSystemChunksRetrieve as useKnowbaseSystemChunksRetrieve, index_useKnowbaseSystemItemsChunksList as useKnowbaseSystemItemsChunksList, index_useKnowbaseSystemItemsContentRetrieve as useKnowbaseSystemItemsContentRetrieve, index_useKnowbaseSystemItemsList as useKnowbaseSystemItemsList, index_useKnowbaseSystemItemsRetrieve as useKnowbaseSystemItemsRetrieve, index_useLeadsList as useLeadsList, index_useLeadsRetrieve as useLeadsRetrieve, index_useNewsletterCampaignsList as useNewsletterCampaignsList, index_useNewsletterCampaignsRetrieve as useNewsletterCampaignsRetrieve, index_useNewsletterLogsList as useNewsletterLogsList, index_useNewsletterNewslettersList as useNewsletterNewslettersList, index_useNewsletterNewslettersRetrieve as useNewsletterNewslettersRetrieve, index_useNewsletterSubscriptionsList as useNewsletterSubscriptionsList, index_usePartialUpdateAccountsProfilePartialPartialUpdate as usePartialUpdateAccountsProfilePartialPartialUpdate, index_usePartialUpdateAccountsProfilePartialUpdate as usePartialUpdateAccountsProfilePartialUpdate, index_usePartialUpdateAccountsProfileUpdatePartialUpdate as usePartialUpdateAccountsProfileUpdatePartialUpdate, index_usePartialUpdateKnowbaseAdminChatPartialUpdate as usePartialUpdateKnowbaseAdminChatPartialUpdate, index_usePartialUpdateKnowbaseAdminDocumentsPartialUpdate as usePartialUpdateKnowbaseAdminDocumentsPartialUpdate, index_usePartialUpdateKnowbaseAdminSessionsPartialUpdate as usePartialUpdateKnowbaseAdminSessionsPartialUpdate, index_usePartialUpdateKnowbaseSystemArchivesPartialUpdate as usePartialUpdateKnowbaseSystemArchivesPartialUpdate, index_usePartialUpdateKnowbaseSystemChunksPartialUpdate as usePartialUpdateKnowbaseSystemChunksPartialUpdate, index_usePartialUpdateKnowbaseSystemItemsPartialUpdate as usePartialUpdateKnowbaseSystemItemsPartialUpdate, index_usePartialUpdateLeadsPartialUpdate as usePartialUpdateLeadsPartialUpdate, index_usePartialUpdateNewsletterCampaignsPartialUpdate as usePartialUpdateNewsletterCampaignsPartialUpdate, index_usePartialUpdateNewsletterUnsubscribePartialUpdate as usePartialUpdateNewsletterUnsubscribePartialUpdate, index_usePartialUpdateSupportTicketsMessagesPartialUpdate as usePartialUpdateSupportTicketsMessagesPartialUpdate, index_usePartialUpdateSupportTicketsPartialUpdate as usePartialUpdateSupportTicketsPartialUpdate, index_usePaymentsBalanceRetrieve as usePaymentsBalanceRetrieve, index_usePaymentsCurrenciesList as usePaymentsCurrenciesList, index_usePaymentsPaymentsList as usePaymentsPaymentsList, index_usePaymentsPaymentsRetrieve as usePaymentsPaymentsRetrieve, index_usePaymentsPaymentsStatusRetrieve as usePaymentsPaymentsStatusRetrieve, index_usePaymentsTransactionsList as usePaymentsTransactionsList, index_useSupportTicketsList as useSupportTicketsList, index_useSupportTicketsMessagesList as useSupportTicketsMessagesList, index_useSupportTicketsMessagesRetrieve as useSupportTicketsMessagesRetrieve, index_useSupportTicketsRetrieve as useSupportTicketsRetrieve, index_useTasksApiQueuesStatusRetrieve as useTasksApiQueuesStatusRetrieve, index_useTasksApiTasksListRetrieve as useTasksApiTasksListRetrieve, index_useTasksApiTasksStatsRetrieve as useTasksApiTasksStatsRetrieve, index_useTasksApiWorkersListRetrieve as useTasksApiWorkersListRetrieve, index_useUpdateAccountsProfileUpdateUpdate as useUpdateAccountsProfileUpdateUpdate, index_useUpdateKnowbaseAdminChatUpdate as useUpdateKnowbaseAdminChatUpdate, index_useUpdateKnowbaseAdminDocumentsUpdate as useUpdateKnowbaseAdminDocumentsUpdate, index_useUpdateKnowbaseAdminSessionsUpdate as useUpdateKnowbaseAdminSessionsUpdate, index_useUpdateKnowbaseSystemArchivesUpdate as useUpdateKnowbaseSystemArchivesUpdate, index_useUpdateKnowbaseSystemChunksUpdate as useUpdateKnowbaseSystemChunksUpdate, index_useUpdateKnowbaseSystemItemsUpdate as useUpdateKnowbaseSystemItemsUpdate, index_useUpdateLeadsUpdate as useUpdateLeadsUpdate, index_useUpdateNewsletterCampaignsUpdate as useUpdateNewsletterCampaignsUpdate, index_useUpdateNewsletterUnsubscribeUpdate as useUpdateNewsletterUnsubscribeUpdate, index_useUpdateSupportTicketsMessagesUpdate as useUpdateSupportTicketsMessagesUpdate, index_useUpdateSupportTicketsUpdate as useUpdateSupportTicketsUpdate };
|
|
20152
21986
|
}
|
|
20153
21987
|
|
|
20154
21988
|
/**
|
|
@@ -20263,6 +22097,8 @@ declare class API {
|
|
|
20263
22097
|
cfg_auth: CfgAuth;
|
|
20264
22098
|
cfg_bulk_email: CfgBulkEmail;
|
|
20265
22099
|
cfg_campaigns: CfgCampaigns;
|
|
22100
|
+
cfg_ipcrpc_monitoring: CfgIpcrpcMonitoring;
|
|
22101
|
+
cfg_ipcrpc_testing: CfgIpcrpcTesting;
|
|
20266
22102
|
cfg_lead_submission: CfgLeadSubmission;
|
|
20267
22103
|
cfg_logs: CfgLogs;
|
|
20268
22104
|
cfg_newsletters: CfgNewsletters;
|
|
@@ -21344,4 +23180,4 @@ declare function KnowbaseSessionsProvider({ children }: {
|
|
|
21344
23180
|
}): react_jsx_runtime.JSX.Element;
|
|
21345
23181
|
declare function useKnowbaseSessionsContext(): KnowbaseSessionsContextValue;
|
|
21346
23182
|
|
|
21347
|
-
export { API, APIClient, APIError, APILogger, type APIOptions, type AccountsContextValue, AccountsProvider, type ApiKeysContextValue, ApiKeysProvider, ApiKeysService, type ArchiveProcessingResult$1 as ArchiveProcessingResult, type ArchiveStatistics$1 as ArchiveStatistics, AuthService, type BalancesContextValue, BalancesProvider, BaseClient, BulkEmailService, CampaignsService, models$8 as CfgAccountsTypes, models$
|
|
23183
|
+
export { API, APIClient, APIError, APILogger, type APIOptions, type AccountsContextValue, AccountsProvider, type ApiKeysContextValue, ApiKeysProvider, ApiKeysService, type ArchiveProcessingResult$1 as ArchiveProcessingResult, type ArchiveStatistics$1 as ArchiveStatistics, AuthService, type BalancesContextValue, BalancesProvider, BaseClient, BulkEmailService, CampaignsService, models$8 as CfgAccountsTypes, models$j as CfgAuthTypes, models$i as CfgBulkEmailTypes, models$h as CfgCampaignsTypes, models$7 as CfgEndpointsTypes, models$6 as CfgHealthTypes, models$g as CfgIpcrpcMonitoringTypes, models$f as CfgIpcrpcTestingTypes, models$5 as CfgKnowbaseTypes, models$e as CfgLeadSubmissionTypes, models$4 as CfgLeadsTypes, models$d as CfgLogsTypes, models$3 as CfgNewsletterTypes, models$c as CfgNewslettersTypes, models$2 as CfgPaymentsTypes, models$b as CfgSubscriptionsTypes, models$1 as CfgSupportTypes, models as CfgTasksTypes, models$a as CfgTestingTypes, models$9 as CfgUserProfileTypes, type ChatHistory$1 as ChatHistory, type ChatMessage$1 as ChatMessage, type ChatQueryRequest$1 as ChatQueryRequest, type ChatResponse$1 as ChatResponse, type ChatResponseRequest$1 as ChatResponseRequest, type ChatSession$1 as ChatSession, type ChatSessionCreateRequest$1 as ChatSessionCreateRequest, type ChatSessionRequest$1 as ChatSessionRequest, type ChatSource$1 as ChatSource, CookieStorageAdapter, type CurrenciesContextValue, CurrenciesProvider, DEFAULT_RETRY_CONFIG, type Document$1 as Document, type DocumentArchive$1 as DocumentArchive, type DocumentArchiveDetail$1 as DocumentArchiveDetail, type DocumentCreateRequest$1 as DocumentCreateRequest, type DocumentProcessingStatus$1 as DocumentProcessingStatus, type DocumentRequest$1 as DocumentRequest, type DocumentStats$1 as DocumentStats, enums as Enums, type ErrorLog, type FailedAttemptInfo, FetchAdapter, index$1 as Fetchers, index as Hooks, type HttpClientAdapter, type HttpRequest, type HttpResponse, type KnowbaseChatContextValue, KnowbaseChatProvider, type KnowbaseDocumentsContextValue, KnowbaseDocumentsProvider, type KnowbaseSessionsContextValue, KnowbaseSessionsProvider, type LeadsContextValue, LeadsProvider, LeadsService, LocalStorageAdapter, type LoggerConfig, MemoryStorageAdapter, type Message, type MessageCreateRequest, type MessageRequest, NetworkError, type NewsletterContextValue, NewsletterProvider, NewsletterService, NewslettersListService, OPENAPI_SCHEMA, type OTPRequestResponse, type OTPVerifyResponse, type OverviewContextValue, type PaginatedPaymentListList as OverviewPaginatedPaymentListList, type PaymentList as OverviewPaymentList, OverviewProvider, type PaginatedPaymentListList, type PatchedChatResponseRequest$1 as PatchedChatResponseRequest, type PatchedChatSessionRequest$1 as PatchedChatSessionRequest, type PatchedDocumentArchiveRequest$1 as PatchedDocumentArchiveRequest, type PatchedDocumentRequest$1 as PatchedDocumentRequest, type PatchedMessageRequest, type PatchedTicketRequest, type PatchedUserProfileUpdateRequest, PatchedUserProfileUpdateRequestSchema, PaymentDashboardService, type PaymentDetail, type PaymentList, type PaymentsContextValue, PaymentsProvider, PaymentsService, REFRESH_TOKEN_KEY, type RequestLog, type ResponseLog, type RetryConfig, type RootPaymentsContextValue, RootPaymentsProvider, index$2 as Schemas, type StorageAdapter, SubscriptionsService, type SupportContextValue, SupportProvider, SupportService, TOKEN_KEY, TasksService, type Ticket, type TicketRequest, type User, WebhooksService, api, clearAPITokens, configureAPI, createAccountsOtpRequestCreate, createAccountsOtpVerifyCreate, createAccountsProfileAvatarCreate, createAccountsTokenRefreshCreate, createIpcAdminApiTestLoadStartCreate, createIpcAdminApiTestLoadStopCreate, createIpcAdminApiTestSendCreate, createIpcTestLoadStartCreate, createIpcTestLoadStopCreate, createIpcTestSendCreate, createKnowbaseAdminChatCreate, createKnowbaseAdminChatQueryCreate, createKnowbaseAdminDocumentsCreate, createKnowbaseAdminDocumentsReprocessCreate, createKnowbaseAdminSessionsActivateCreate, createKnowbaseAdminSessionsArchiveCreate, createKnowbaseAdminSessionsCreate, createKnowbaseSystemArchivesCreate, createKnowbaseSystemArchivesRevectorizeCreate, createKnowbaseSystemArchivesSearchCreate, createKnowbaseSystemChunksCreate, createKnowbaseSystemChunksVectorizeCreate, createKnowbaseSystemItemsCreate, createLeadsCreate, createLeadsSubmitCreate, createNewsletterBulkCreate, createNewsletterCampaignsCreate, createNewsletterCampaignsSendCreate, createNewsletterSubscribeCreate, createNewsletterTestCreate, createNewsletterUnsubscribeCreate, createPaymentsPaymentsConfirmCreate, createPaymentsPaymentsCreateCreate, createSupportTicketsCreate, createSupportTicketsMessagesCreate, createTasksApiClearCreate, createTasksApiClearQueuesCreate, createTasksApiPurgeFailedCreate, createTasksApiQueuesManageCreate, createTasksApiSimulateCreate, createTasksApiWorkersManageCreate, api as default, deleteKnowbaseAdminChatDestroy, deleteKnowbaseAdminDocumentsDestroy, deleteKnowbaseAdminSessionsDestroy, deleteKnowbaseSystemArchivesDestroy, deleteKnowbaseSystemChunksDestroy, deleteKnowbaseSystemItemsDestroy, deleteLeadsDestroy, deleteNewsletterCampaignsDestroy, deleteSupportTicketsDestroy, deleteSupportTicketsMessagesDestroy, getAPIInstance, getAccountsProfileRetrieve, getEndpointsDrfRetrieve, getHealthDrfQuickRetrieve, getHealthDrfRetrieve, getIpcAdminApiMonitorHealthRetrieve, getIpcAdminApiMonitorMethodsRetrieve, getIpcAdminApiMonitorNotificationsRetrieve, getIpcAdminApiMonitorOverviewRetrieve, getIpcAdminApiMonitorRequestsRetrieve, getIpcAdminApiTestLoadStatusRetrieve, getIpcMonitorHealthRetrieve, getIpcMonitorMethodsRetrieve, getIpcMonitorNotificationsRetrieve, getIpcMonitorOverviewRetrieve, getIpcMonitorRequestsRetrieve, getIpcTestLoadStatusRetrieve, getKnowbaseAdminChatHistoryRetrieve, getKnowbaseAdminChatList, getKnowbaseAdminChatRetrieve, getKnowbaseAdminDocumentsList, getKnowbaseAdminDocumentsRetrieve, getKnowbaseAdminDocumentsStatsRetrieve, getKnowbaseAdminDocumentsStatusRetrieve, getKnowbaseAdminSessionsList, getKnowbaseAdminSessionsRetrieve, getKnowbaseCategoriesList, getKnowbaseCategoriesRetrieve, getKnowbaseDocumentsList, getKnowbaseDocumentsRetrieve, getKnowbaseSystemArchivesFileTreeRetrieve, getKnowbaseSystemArchivesItemsList, getKnowbaseSystemArchivesList, getKnowbaseSystemArchivesRetrieve, getKnowbaseSystemArchivesStatisticsRetrieve, getKnowbaseSystemArchivesVectorizationStatsRetrieve, getKnowbaseSystemChunksContextRetrieve, getKnowbaseSystemChunksList, getKnowbaseSystemChunksRetrieve, getKnowbaseSystemItemsChunksList, getKnowbaseSystemItemsContentRetrieve, getKnowbaseSystemItemsList, getKnowbaseSystemItemsRetrieve, getLeadsList, getLeadsRetrieve, getNewsletterCampaignsList, getNewsletterCampaignsRetrieve, getNewsletterLogsList, getNewsletterNewslettersList, getNewsletterNewslettersRetrieve, getNewsletterSubscriptionsList, getPaymentsBalanceRetrieve, getPaymentsCurrenciesList, getPaymentsPaymentsList, getPaymentsPaymentsRetrieve, getPaymentsPaymentsStatusRetrieve, getPaymentsTransactionsList, getSupportTicketsList, getSupportTicketsMessagesList, getSupportTicketsMessagesRetrieve, getSupportTicketsRetrieve, getTasksApiQueuesStatusRetrieve, getTasksApiTasksListRetrieve, getTasksApiTasksStatsRetrieve, getTasksApiWorkersListRetrieve, isAPIConfigured, partialUpdateAccountsProfilePartialPartialUpdate, partialUpdateAccountsProfilePartialUpdate, partialUpdateAccountsProfileUpdatePartialUpdate, partialUpdateKnowbaseAdminChatPartialUpdate, partialUpdateKnowbaseAdminDocumentsPartialUpdate, partialUpdateKnowbaseAdminSessionsPartialUpdate, partialUpdateKnowbaseSystemArchivesPartialUpdate, partialUpdateKnowbaseSystemChunksPartialUpdate, partialUpdateKnowbaseSystemItemsPartialUpdate, partialUpdateLeadsPartialUpdate, partialUpdateNewsletterCampaignsPartialUpdate, partialUpdateNewsletterUnsubscribePartialUpdate, partialUpdateSupportTicketsMessagesPartialUpdate, partialUpdateSupportTicketsPartialUpdate, reconfigureAPI, resetAPI, shouldRetry, updateAccountsProfileUpdateUpdate, updateKnowbaseAdminChatUpdate, updateKnowbaseAdminDocumentsUpdate, updateKnowbaseAdminSessionsUpdate, updateKnowbaseSystemArchivesUpdate, updateKnowbaseSystemChunksUpdate, updateKnowbaseSystemItemsUpdate, updateLeadsUpdate, updateNewsletterCampaignsUpdate, updateNewsletterUnsubscribeUpdate, updateSupportTicketsMessagesUpdate, updateSupportTicketsUpdate, useAccountsContext, useApiKeysContext, useBalancesContext, useCurrenciesContext, useKnowbaseChatContext, useKnowbaseDocumentsContext, useKnowbaseSessionsContext, useLeadsContext, useNewsletterContext, useOverviewContext, usePaymentsContext, useRootPaymentsContext, useSupportContext, withRetry };
|