@djangocfg/api 1.2.21 → 1.2.22
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 +5029 -2249
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4267 -278
- package/dist/index.d.ts +4267 -278
- package/dist/index.mjs +4672 -1905
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_config.ts +48 -0
- package/src/cfg/generated/_utils/fetchers/cfg__grpc__grpc_configuration.ts +63 -0
- package/src/cfg/generated/_utils/fetchers/cfg__grpc__grpc_services.ts +77 -0
- package/src/cfg/generated/_utils/fetchers/cfg__grpc__grpc_testing.ts +79 -0
- package/src/cfg/generated/_utils/fetchers/index.ts +4 -0
- package/src/cfg/generated/_utils/hooks/cfg__dashboard__dashboard_config.ts +36 -0
- package/src/cfg/generated/_utils/hooks/cfg__grpc__grpc_configuration.ts +51 -0
- package/src/cfg/generated/_utils/hooks/cfg__grpc__grpc_services.ts +65 -0
- package/src/cfg/generated/_utils/hooks/cfg__grpc__grpc_testing.ts +71 -0
- package/src/cfg/generated/_utils/hooks/index.ts +4 -0
- package/src/cfg/generated/_utils/schemas/CentrifugoConfig.schema.ts +23 -0
- package/src/cfg/generated/_utils/schemas/ConfigData.schema.ts +27 -0
- package/src/cfg/generated/_utils/schemas/ConfigMeta.schema.ts +20 -0
- package/src/cfg/generated/_utils/schemas/ConfigValidation.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/DRFConfig.schema.ts +20 -0
- package/src/cfg/generated/_utils/schemas/DatabaseConfig.schema.ts +31 -0
- package/src/cfg/generated/_utils/schemas/DjangoConfig.schema.ts +86 -0
- package/src/cfg/generated/_utils/schemas/DjangoRQConfig.schema.ts +19 -0
- package/src/cfg/generated/_utils/schemas/EmailConfig.schema.ts +28 -0
- package/src/cfg/generated/_utils/schemas/GRPCCallRequestRequest.schema.ts +23 -0
- package/src/cfg/generated/_utils/schemas/GRPCCallResponse.schema.ts +29 -0
- package/src/cfg/generated/_utils/schemas/GRPCConfig.schema.ts +26 -0
- package/src/cfg/generated/_utils/schemas/GRPCConfigDashboard.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/GRPCExampleSerializer.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/GRPCExamplesList.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/GRPCFeaturesSerializer.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/GRPCFrameworkConfigSerializer.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/GRPCInterceptorInfoSerializer.schema.ts +20 -0
- package/src/cfg/generated/_utils/schemas/GRPCServerConfigSerializer.schema.ts +23 -0
- package/src/cfg/generated/_utils/schemas/GRPCServerInfo.schema.ts +28 -0
- package/src/cfg/generated/_utils/schemas/GRPCServiceInfoSerializer.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/GRPCStatsSerializer.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/GRPCTestLogSerializer.schema.ts +27 -0
- package/src/cfg/generated/_utils/schemas/GRPCTestLogs.schema.ts +23 -0
- package/src/cfg/generated/_utils/schemas/JWTConfig.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/MethodInfoSerializer.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/MethodSummarySerializer.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/PaymentsConfig.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/PaymentsNowPayments.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/RecentErrorSerializer.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/RedisQueueConfig.schema.ts +29 -0
- package/src/cfg/generated/_utils/schemas/ServiceDetail.schema.ts +31 -0
- package/src/cfg/generated/_utils/schemas/ServiceMethods.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/SpectacularConfig.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/index.ts +34 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_config/client.ts +25 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_config/index.ts +2 -0
- package/src/cfg/generated/cfg__dashboard__dashboard_config/models.ts +215 -0
- package/src/cfg/generated/cfg__grpc__grpc_configuration/client.ts +35 -0
- package/src/cfg/generated/cfg__grpc__grpc_configuration/index.ts +2 -0
- package/src/cfg/generated/cfg__grpc__grpc_configuration/models.ts +128 -0
- package/src/cfg/generated/cfg__grpc__grpc_services/client.ts +55 -0
- package/src/cfg/generated/cfg__grpc__grpc_services/index.ts +2 -0
- package/src/cfg/generated/cfg__grpc__grpc_services/models.ts +138 -0
- package/src/cfg/generated/cfg__grpc__grpc_testing/client.ts +68 -0
- package/src/cfg/generated/cfg__grpc__grpc_testing/index.ts +2 -0
- package/src/cfg/generated/cfg__grpc__grpc_testing/models.ts +122 -0
- package/src/cfg/generated/client.ts +12 -0
- package/src/cfg/generated/index.ts +20 -0
- package/src/cfg/generated/schema.ts +7133 -5116
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Detailed information about a service.
|
|
3
|
+
*
|
|
4
|
+
* Response model (includes read-only fields).
|
|
5
|
+
*/
|
|
6
|
+
export interface ServiceDetail {
|
|
7
|
+
/** Service name */
|
|
8
|
+
name: string;
|
|
9
|
+
/** Full service name with package */
|
|
10
|
+
full_name: string;
|
|
11
|
+
/** Package name */
|
|
12
|
+
package: string;
|
|
13
|
+
/** Service description from docstring */
|
|
14
|
+
description?: string;
|
|
15
|
+
/** Path to service file */
|
|
16
|
+
file_path?: string;
|
|
17
|
+
/** Service class name */
|
|
18
|
+
class_name: string;
|
|
19
|
+
/** Base class name */
|
|
20
|
+
base_class?: string;
|
|
21
|
+
/** Service methods */
|
|
22
|
+
methods?: Array<MethodInfoSerializer>;
|
|
23
|
+
stats: Record<string, any>;
|
|
24
|
+
/** Recent errors */
|
|
25
|
+
recent_errors?: Array<RecentErrorSerializer>;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* List of methods for a service.
|
|
30
|
+
*
|
|
31
|
+
* Response model (includes read-only fields).
|
|
32
|
+
*/
|
|
33
|
+
export interface ServiceMethods {
|
|
34
|
+
/** Service name */
|
|
35
|
+
service_name: string;
|
|
36
|
+
/** List of methods */
|
|
37
|
+
methods?: Array<MethodSummarySerializer>;
|
|
38
|
+
/** Total number of methods */
|
|
39
|
+
total_methods: number;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Information about a service method.
|
|
44
|
+
*
|
|
45
|
+
* Response model (includes read-only fields).
|
|
46
|
+
*/
|
|
47
|
+
export interface MethodInfoSerializer {
|
|
48
|
+
/** Method name */
|
|
49
|
+
name: string;
|
|
50
|
+
/** Full method name (/service/method) */
|
|
51
|
+
full_name: string;
|
|
52
|
+
/** Request message type */
|
|
53
|
+
request_type?: string;
|
|
54
|
+
/** Response message type */
|
|
55
|
+
response_type?: string;
|
|
56
|
+
/** Whether method uses streaming */
|
|
57
|
+
streaming?: boolean;
|
|
58
|
+
/** Whether authentication is required */
|
|
59
|
+
auth_required?: boolean;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Statistics for a single gRPC service.
|
|
64
|
+
*
|
|
65
|
+
* Response model (includes read-only fields).
|
|
66
|
+
*/
|
|
67
|
+
export interface ServiceStatsSerializer {
|
|
68
|
+
/** Service name */
|
|
69
|
+
service_name: string;
|
|
70
|
+
/** Total requests */
|
|
71
|
+
total: number;
|
|
72
|
+
/** Successful requests */
|
|
73
|
+
successful: number;
|
|
74
|
+
/** Error requests */
|
|
75
|
+
errors: number;
|
|
76
|
+
/** Average duration */
|
|
77
|
+
avg_duration_ms: number;
|
|
78
|
+
/** Last activity timestamp */
|
|
79
|
+
last_activity_at: string | null;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Recent error information.
|
|
84
|
+
*
|
|
85
|
+
* Response model (includes read-only fields).
|
|
86
|
+
*/
|
|
87
|
+
export interface RecentErrorSerializer {
|
|
88
|
+
/** Method name where error occurred */
|
|
89
|
+
method: string;
|
|
90
|
+
/** Error message */
|
|
91
|
+
error_message: string;
|
|
92
|
+
/** gRPC status code */
|
|
93
|
+
grpc_status_code: string;
|
|
94
|
+
/** When error occurred (ISO timestamp) */
|
|
95
|
+
occurred_at: string;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* Summary information for a method.
|
|
100
|
+
*
|
|
101
|
+
* Response model (includes read-only fields).
|
|
102
|
+
*/
|
|
103
|
+
export interface MethodSummarySerializer {
|
|
104
|
+
/** Method name */
|
|
105
|
+
name: string;
|
|
106
|
+
/** Full method path */
|
|
107
|
+
full_name: string;
|
|
108
|
+
/** Service name */
|
|
109
|
+
service_name: string;
|
|
110
|
+
/** Request message type */
|
|
111
|
+
request_type?: string;
|
|
112
|
+
/** Response message type */
|
|
113
|
+
response_type?: string;
|
|
114
|
+
stats: Record<string, any>;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Statistics for a single gRPC method.
|
|
119
|
+
*
|
|
120
|
+
* Response model (includes read-only fields).
|
|
121
|
+
*/
|
|
122
|
+
export interface MethodStatsSerializer {
|
|
123
|
+
/** Method name */
|
|
124
|
+
method_name: string;
|
|
125
|
+
/** Service name */
|
|
126
|
+
service_name: string;
|
|
127
|
+
/** Total requests */
|
|
128
|
+
total: number;
|
|
129
|
+
/** Successful requests */
|
|
130
|
+
successful: number;
|
|
131
|
+
/** Error requests */
|
|
132
|
+
errors: number;
|
|
133
|
+
/** Average duration */
|
|
134
|
+
avg_duration_ms: number;
|
|
135
|
+
/** Last activity timestamp */
|
|
136
|
+
last_activity_at: string | null;
|
|
137
|
+
}
|
|
138
|
+
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import * as Models from "./models";
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* API endpoints for Grpc Testing.
|
|
6
|
+
*/
|
|
7
|
+
export class CfgGrpcTesting {
|
|
8
|
+
private client: any;
|
|
9
|
+
|
|
10
|
+
constructor(client: any) {
|
|
11
|
+
this.client = client;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Call gRPC method (placeholder)
|
|
16
|
+
*
|
|
17
|
+
* Interactive gRPC method calling. NOTE: This is a placeholder endpoint.
|
|
18
|
+
* Dynamic gRPC invocation is not yet implemented. Use grpcurl or implement
|
|
19
|
+
* Phase 4 for this functionality.
|
|
20
|
+
*/
|
|
21
|
+
async grpcTestCallCreate(data: Models.GRPCCallRequestRequest): Promise<Models.GRPCCallResponse> {
|
|
22
|
+
const response = await this.client.request('POST', "/cfg/grpc/test/call/", { body: data });
|
|
23
|
+
return response;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
async grpcTestExamplesRetrieve(method?: string, service?: string): Promise<Models.GRPCExamplesList[]>;
|
|
27
|
+
async grpcTestExamplesRetrieve(params?: { method?: string; service?: string }): Promise<Models.GRPCExamplesList[]>;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Get example payloads
|
|
31
|
+
*
|
|
32
|
+
* Returns example payloads for testing gRPC methods.
|
|
33
|
+
*/
|
|
34
|
+
async grpcTestExamplesRetrieve(...args: any[]): Promise<Models.GRPCExamplesList[]> {
|
|
35
|
+
const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);
|
|
36
|
+
|
|
37
|
+
let params;
|
|
38
|
+
if (isParamsObject) {
|
|
39
|
+
params = args[0];
|
|
40
|
+
} else {
|
|
41
|
+
params = { method: args[0], service: args[1] };
|
|
42
|
+
}
|
|
43
|
+
const response = await this.client.request('GET', "/cfg/grpc/test/examples/", { params });
|
|
44
|
+
return (response as any).results || [];
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
async grpcTestLogsRetrieve(limit?: number, method?: string, offset?: number, service?: string, status?: string): Promise<Models.GRPCTestLogs>;
|
|
48
|
+
async grpcTestLogsRetrieve(params?: { limit?: number; method?: string; offset?: number; service?: string; status?: string }): Promise<Models.GRPCTestLogs>;
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Get test logs
|
|
52
|
+
*
|
|
53
|
+
* Returns logs from test gRPC calls.
|
|
54
|
+
*/
|
|
55
|
+
async grpcTestLogsRetrieve(...args: any[]): Promise<Models.GRPCTestLogs> {
|
|
56
|
+
const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);
|
|
57
|
+
|
|
58
|
+
let params;
|
|
59
|
+
if (isParamsObject) {
|
|
60
|
+
params = args[0];
|
|
61
|
+
} else {
|
|
62
|
+
params = { limit: args[0], method: args[1], offset: args[2], service: args[3], status: args[4] };
|
|
63
|
+
}
|
|
64
|
+
const response = await this.client.request('GET', "/cfg/grpc/test/logs/", { params });
|
|
65
|
+
return response;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Request to call a gRPC method (for future implementation).
|
|
3
|
+
*
|
|
4
|
+
* Request model (no read-only fields).
|
|
5
|
+
*/
|
|
6
|
+
export interface GRPCCallRequestRequest {
|
|
7
|
+
/** Service name to call */
|
|
8
|
+
service: string;
|
|
9
|
+
/** Method name to call */
|
|
10
|
+
method: string;
|
|
11
|
+
/** Request payload */
|
|
12
|
+
payload: Record<string, any>;
|
|
13
|
+
/** Request metadata (headers) */
|
|
14
|
+
metadata?: Record<string, any>;
|
|
15
|
+
/** Request timeout in milliseconds */
|
|
16
|
+
timeout_ms?: number;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Response from calling a gRPC method.
|
|
21
|
+
*
|
|
22
|
+
* Response model (includes read-only fields).
|
|
23
|
+
*/
|
|
24
|
+
export interface GRPCCallResponse {
|
|
25
|
+
/** Whether call was successful */
|
|
26
|
+
success: boolean;
|
|
27
|
+
/** Request ID for tracking */
|
|
28
|
+
request_id: string;
|
|
29
|
+
/** Service name */
|
|
30
|
+
service: string;
|
|
31
|
+
/** Method name */
|
|
32
|
+
method: string;
|
|
33
|
+
/** Request status */
|
|
34
|
+
status: string;
|
|
35
|
+
/** gRPC status code */
|
|
36
|
+
grpc_status_code: string;
|
|
37
|
+
/** Call duration in milliseconds */
|
|
38
|
+
duration_ms: number;
|
|
39
|
+
/** Response data if successful */
|
|
40
|
+
response?: string | null;
|
|
41
|
+
/** Error details if failed */
|
|
42
|
+
error?: string | null;
|
|
43
|
+
/** Response metadata */
|
|
44
|
+
metadata?: Record<string, any>;
|
|
45
|
+
/** Response timestamp (ISO format) */
|
|
46
|
+
timestamp: string;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* List of examples response.
|
|
51
|
+
*
|
|
52
|
+
* Response model (includes read-only fields).
|
|
53
|
+
*/
|
|
54
|
+
export interface GRPCExamplesList {
|
|
55
|
+
/** List of examples */
|
|
56
|
+
examples?: Array<GRPCExampleSerializer>;
|
|
57
|
+
/** Total number of examples */
|
|
58
|
+
total_examples: number;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* List of test logs response.
|
|
63
|
+
*
|
|
64
|
+
* Response model (includes read-only fields).
|
|
65
|
+
*/
|
|
66
|
+
export interface GRPCTestLogs {
|
|
67
|
+
/** List of test logs */
|
|
68
|
+
logs?: Array<GRPCTestLogSerializer>;
|
|
69
|
+
/** Number of logs returned */
|
|
70
|
+
count: number;
|
|
71
|
+
/** Total logs available */
|
|
72
|
+
total_available: number;
|
|
73
|
+
/** Whether more logs are available */
|
|
74
|
+
has_more?: boolean;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Example payload for a gRPC method.
|
|
79
|
+
*
|
|
80
|
+
* Response model (includes read-only fields).
|
|
81
|
+
*/
|
|
82
|
+
export interface GRPCExampleSerializer {
|
|
83
|
+
/** Service name */
|
|
84
|
+
service: string;
|
|
85
|
+
/** Method name */
|
|
86
|
+
method: string;
|
|
87
|
+
/** Method description */
|
|
88
|
+
description: string;
|
|
89
|
+
/** Example request payload */
|
|
90
|
+
payload_example: Record<string, any>;
|
|
91
|
+
/** Example expected response */
|
|
92
|
+
expected_response: Record<string, any>;
|
|
93
|
+
/** Example metadata (headers) */
|
|
94
|
+
metadata_example?: Record<string, any>;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Single test log entry.
|
|
99
|
+
*
|
|
100
|
+
* Response model (includes read-only fields).
|
|
101
|
+
*/
|
|
102
|
+
export interface GRPCTestLogSerializer {
|
|
103
|
+
/** Request ID */
|
|
104
|
+
request_id: string;
|
|
105
|
+
/** Service name */
|
|
106
|
+
service: string;
|
|
107
|
+
/** Method name */
|
|
108
|
+
method: string;
|
|
109
|
+
/** Request status (success, error, etc.) */
|
|
110
|
+
status: string;
|
|
111
|
+
/** gRPC status code if available */
|
|
112
|
+
grpc_status_code?: string | null;
|
|
113
|
+
/** Error message if failed */
|
|
114
|
+
error_message?: string | null;
|
|
115
|
+
/** Duration in milliseconds */
|
|
116
|
+
duration_ms?: string | null;
|
|
117
|
+
/** Request timestamp (ISO format) */
|
|
118
|
+
created_at: string;
|
|
119
|
+
/** User who made the request */
|
|
120
|
+
user?: string | null;
|
|
121
|
+
}
|
|
122
|
+
|
|
@@ -8,6 +8,7 @@ import { CfgDashboardApiZones } from "./cfg__dashboard__dashboard_api_zones";
|
|
|
8
8
|
import { CfgDashboardActivity } from "./cfg__dashboard__dashboard_activity";
|
|
9
9
|
import { CfgDashboardCharts } from "./cfg__dashboard__dashboard_charts";
|
|
10
10
|
import { CfgDashboardCommands } from "./cfg__dashboard__dashboard_commands";
|
|
11
|
+
import { CfgDashboardConfig } from "./cfg__dashboard__dashboard_config";
|
|
11
12
|
import { CfgDashboardOverview } from "./cfg__dashboard__dashboard_overview";
|
|
12
13
|
import { CfgDashboardStatistics } from "./cfg__dashboard__dashboard_statistics";
|
|
13
14
|
import { CfgDashboardSystem } from "./cfg__dashboard__dashboard_system";
|
|
@@ -27,7 +28,10 @@ import { CfgUserProfile } from "./cfg__accounts__user_profile";
|
|
|
27
28
|
import { CfgAccounts } from "./cfg__accounts";
|
|
28
29
|
import { CfgCentrifugo } from "./cfg__centrifugo";
|
|
29
30
|
import { CfgEndpoints } from "./cfg__endpoints";
|
|
31
|
+
import { CfgGrpcConfiguration } from "./cfg__grpc__grpc_configuration";
|
|
30
32
|
import { CfgGrpcMonitoring } from "./cfg__grpc__grpc_monitoring";
|
|
33
|
+
import { CfgGrpcServices } from "./cfg__grpc__grpc_services";
|
|
34
|
+
import { CfgGrpcTesting } from "./cfg__grpc__grpc_testing";
|
|
31
35
|
import { CfgHealth } from "./cfg__health";
|
|
32
36
|
import { CfgKnowbase } from "./cfg__knowbase";
|
|
33
37
|
import { CfgLeads } from "./cfg__leads";
|
|
@@ -72,6 +76,7 @@ export class APIClient {
|
|
|
72
76
|
public cfg_dashboard_activity: CfgDashboardActivity;
|
|
73
77
|
public cfg_dashboard_charts: CfgDashboardCharts;
|
|
74
78
|
public cfg_dashboard_commands: CfgDashboardCommands;
|
|
79
|
+
public cfg_dashboard_config: CfgDashboardConfig;
|
|
75
80
|
public cfg_dashboard_overview: CfgDashboardOverview;
|
|
76
81
|
public cfg_dashboard_statistics: CfgDashboardStatistics;
|
|
77
82
|
public cfg_dashboard_system: CfgDashboardSystem;
|
|
@@ -91,7 +96,10 @@ export class APIClient {
|
|
|
91
96
|
public cfg_accounts: CfgAccounts;
|
|
92
97
|
public cfg_centrifugo: CfgCentrifugo;
|
|
93
98
|
public cfg_endpoints: CfgEndpoints;
|
|
99
|
+
public cfg_grpc_configuration: CfgGrpcConfiguration;
|
|
94
100
|
public cfg_grpc_monitoring: CfgGrpcMonitoring;
|
|
101
|
+
public cfg_grpc_services: CfgGrpcServices;
|
|
102
|
+
public cfg_grpc_testing: CfgGrpcTesting;
|
|
95
103
|
public cfg_health: CfgHealth;
|
|
96
104
|
public cfg_knowbase: CfgKnowbase;
|
|
97
105
|
public cfg_leads: CfgLeads;
|
|
@@ -131,6 +139,7 @@ export class APIClient {
|
|
|
131
139
|
this.cfg_dashboard_activity = new CfgDashboardActivity(this);
|
|
132
140
|
this.cfg_dashboard_charts = new CfgDashboardCharts(this);
|
|
133
141
|
this.cfg_dashboard_commands = new CfgDashboardCommands(this);
|
|
142
|
+
this.cfg_dashboard_config = new CfgDashboardConfig(this);
|
|
134
143
|
this.cfg_dashboard_overview = new CfgDashboardOverview(this);
|
|
135
144
|
this.cfg_dashboard_statistics = new CfgDashboardStatistics(this);
|
|
136
145
|
this.cfg_dashboard_system = new CfgDashboardSystem(this);
|
|
@@ -150,7 +159,10 @@ export class APIClient {
|
|
|
150
159
|
this.cfg_accounts = new CfgAccounts(this);
|
|
151
160
|
this.cfg_centrifugo = new CfgCentrifugo(this);
|
|
152
161
|
this.cfg_endpoints = new CfgEndpoints(this);
|
|
162
|
+
this.cfg_grpc_configuration = new CfgGrpcConfiguration(this);
|
|
153
163
|
this.cfg_grpc_monitoring = new CfgGrpcMonitoring(this);
|
|
164
|
+
this.cfg_grpc_services = new CfgGrpcServices(this);
|
|
165
|
+
this.cfg_grpc_testing = new CfgGrpcTesting(this);
|
|
154
166
|
this.cfg_health = new CfgHealth(this);
|
|
155
167
|
this.cfg_knowbase = new CfgKnowbase(this);
|
|
156
168
|
this.cfg_leads = new CfgLeads(this);
|
|
@@ -53,6 +53,7 @@ import { CfgDashboardApiZones } from "./cfg__dashboard__dashboard_api_zones/clie
|
|
|
53
53
|
import { CfgDashboardActivity } from "./cfg__dashboard__dashboard_activity/client";
|
|
54
54
|
import { CfgDashboardCharts } from "./cfg__dashboard__dashboard_charts/client";
|
|
55
55
|
import { CfgDashboardCommands } from "./cfg__dashboard__dashboard_commands/client";
|
|
56
|
+
import { CfgDashboardConfig } from "./cfg__dashboard__dashboard_config/client";
|
|
56
57
|
import { CfgDashboardOverview } from "./cfg__dashboard__dashboard_overview/client";
|
|
57
58
|
import { CfgDashboardStatistics } from "./cfg__dashboard__dashboard_statistics/client";
|
|
58
59
|
import { CfgDashboardSystem } from "./cfg__dashboard__dashboard_system/client";
|
|
@@ -72,7 +73,10 @@ import { CfgUserProfile } from "./cfg__accounts__user_profile/client";
|
|
|
72
73
|
import { CfgAccounts } from "./cfg__accounts/client";
|
|
73
74
|
import { CfgCentrifugo } from "./cfg__centrifugo/client";
|
|
74
75
|
import { CfgEndpoints } from "./cfg__endpoints/client";
|
|
76
|
+
import { CfgGrpcConfiguration } from "./cfg__grpc__grpc_configuration/client";
|
|
75
77
|
import { CfgGrpcMonitoring } from "./cfg__grpc__grpc_monitoring/client";
|
|
78
|
+
import { CfgGrpcServices } from "./cfg__grpc__grpc_services/client";
|
|
79
|
+
import { CfgGrpcTesting } from "./cfg__grpc__grpc_testing/client";
|
|
76
80
|
import { CfgHealth } from "./cfg__health/client";
|
|
77
81
|
import { CfgKnowbase } from "./cfg__knowbase/client";
|
|
78
82
|
import { CfgLeads } from "./cfg__leads/client";
|
|
@@ -89,6 +93,7 @@ export * as CfgDashboardApiZonesTypes from "./cfg__dashboard__dashboard_api_zone
|
|
|
89
93
|
export * as CfgDashboardActivityTypes from "./cfg__dashboard__dashboard_activity/models";
|
|
90
94
|
export * as CfgDashboardChartsTypes from "./cfg__dashboard__dashboard_charts/models";
|
|
91
95
|
export * as CfgDashboardCommandsTypes from "./cfg__dashboard__dashboard_commands/models";
|
|
96
|
+
export * as CfgDashboardConfigTypes from "./cfg__dashboard__dashboard_config/models";
|
|
92
97
|
export * as CfgDashboardOverviewTypes from "./cfg__dashboard__dashboard_overview/models";
|
|
93
98
|
export * as CfgDashboardStatisticsTypes from "./cfg__dashboard__dashboard_statistics/models";
|
|
94
99
|
export * as CfgDashboardSystemTypes from "./cfg__dashboard__dashboard_system/models";
|
|
@@ -108,7 +113,10 @@ export * as CfgUserProfileTypes from "./cfg__accounts__user_profile/models";
|
|
|
108
113
|
export * as CfgAccountsTypes from "./cfg__accounts/models";
|
|
109
114
|
export * as CfgCentrifugoTypes from "./cfg__centrifugo/models";
|
|
110
115
|
export * as CfgEndpointsTypes from "./cfg__endpoints/models";
|
|
116
|
+
export * as CfgGrpcConfigurationTypes from "./cfg__grpc__grpc_configuration/models";
|
|
111
117
|
export * as CfgGrpcMonitoringTypes from "./cfg__grpc__grpc_monitoring/models";
|
|
118
|
+
export * as CfgGrpcServicesTypes from "./cfg__grpc__grpc_services/models";
|
|
119
|
+
export * as CfgGrpcTestingTypes from "./cfg__grpc__grpc_testing/models";
|
|
112
120
|
export * as CfgHealthTypes from "./cfg__health/models";
|
|
113
121
|
export * as CfgKnowbaseTypes from "./cfg__knowbase/models";
|
|
114
122
|
export * as CfgLeadsTypes from "./cfg__leads/models";
|
|
@@ -193,6 +201,7 @@ export class API {
|
|
|
193
201
|
public cfg_dashboard_activity!: CfgDashboardActivity;
|
|
194
202
|
public cfg_dashboard_charts!: CfgDashboardCharts;
|
|
195
203
|
public cfg_dashboard_commands!: CfgDashboardCommands;
|
|
204
|
+
public cfg_dashboard_config!: CfgDashboardConfig;
|
|
196
205
|
public cfg_dashboard_overview!: CfgDashboardOverview;
|
|
197
206
|
public cfg_dashboard_statistics!: CfgDashboardStatistics;
|
|
198
207
|
public cfg_dashboard_system!: CfgDashboardSystem;
|
|
@@ -212,7 +221,10 @@ export class API {
|
|
|
212
221
|
public cfg_accounts!: CfgAccounts;
|
|
213
222
|
public cfg_centrifugo!: CfgCentrifugo;
|
|
214
223
|
public cfg_endpoints!: CfgEndpoints;
|
|
224
|
+
public cfg_grpc_configuration!: CfgGrpcConfiguration;
|
|
215
225
|
public cfg_grpc_monitoring!: CfgGrpcMonitoring;
|
|
226
|
+
public cfg_grpc_services!: CfgGrpcServices;
|
|
227
|
+
public cfg_grpc_testing!: CfgGrpcTesting;
|
|
216
228
|
public cfg_health!: CfgHealth;
|
|
217
229
|
public cfg_knowbase!: CfgKnowbase;
|
|
218
230
|
public cfg_leads!: CfgLeads;
|
|
@@ -252,6 +264,7 @@ export class API {
|
|
|
252
264
|
this.cfg_dashboard_activity = this._client.cfg_dashboard_activity;
|
|
253
265
|
this.cfg_dashboard_charts = this._client.cfg_dashboard_charts;
|
|
254
266
|
this.cfg_dashboard_commands = this._client.cfg_dashboard_commands;
|
|
267
|
+
this.cfg_dashboard_config = this._client.cfg_dashboard_config;
|
|
255
268
|
this.cfg_dashboard_overview = this._client.cfg_dashboard_overview;
|
|
256
269
|
this.cfg_dashboard_statistics = this._client.cfg_dashboard_statistics;
|
|
257
270
|
this.cfg_dashboard_system = this._client.cfg_dashboard_system;
|
|
@@ -271,7 +284,10 @@ export class API {
|
|
|
271
284
|
this.cfg_accounts = this._client.cfg_accounts;
|
|
272
285
|
this.cfg_centrifugo = this._client.cfg_centrifugo;
|
|
273
286
|
this.cfg_endpoints = this._client.cfg_endpoints;
|
|
287
|
+
this.cfg_grpc_configuration = this._client.cfg_grpc_configuration;
|
|
274
288
|
this.cfg_grpc_monitoring = this._client.cfg_grpc_monitoring;
|
|
289
|
+
this.cfg_grpc_services = this._client.cfg_grpc_services;
|
|
290
|
+
this.cfg_grpc_testing = this._client.cfg_grpc_testing;
|
|
275
291
|
this.cfg_health = this._client.cfg_health;
|
|
276
292
|
this.cfg_knowbase = this._client.cfg_knowbase;
|
|
277
293
|
this.cfg_leads = this._client.cfg_leads;
|
|
@@ -305,6 +321,7 @@ export class API {
|
|
|
305
321
|
this.cfg_dashboard_activity = this._client.cfg_dashboard_activity;
|
|
306
322
|
this.cfg_dashboard_charts = this._client.cfg_dashboard_charts;
|
|
307
323
|
this.cfg_dashboard_commands = this._client.cfg_dashboard_commands;
|
|
324
|
+
this.cfg_dashboard_config = this._client.cfg_dashboard_config;
|
|
308
325
|
this.cfg_dashboard_overview = this._client.cfg_dashboard_overview;
|
|
309
326
|
this.cfg_dashboard_statistics = this._client.cfg_dashboard_statistics;
|
|
310
327
|
this.cfg_dashboard_system = this._client.cfg_dashboard_system;
|
|
@@ -324,7 +341,10 @@ export class API {
|
|
|
324
341
|
this.cfg_accounts = this._client.cfg_accounts;
|
|
325
342
|
this.cfg_centrifugo = this._client.cfg_centrifugo;
|
|
326
343
|
this.cfg_endpoints = this._client.cfg_endpoints;
|
|
344
|
+
this.cfg_grpc_configuration = this._client.cfg_grpc_configuration;
|
|
327
345
|
this.cfg_grpc_monitoring = this._client.cfg_grpc_monitoring;
|
|
346
|
+
this.cfg_grpc_services = this._client.cfg_grpc_services;
|
|
347
|
+
this.cfg_grpc_testing = this._client.cfg_grpc_testing;
|
|
328
348
|
this.cfg_health = this._client.cfg_health;
|
|
329
349
|
this.cfg_knowbase = this._client.cfg_knowbase;
|
|
330
350
|
this.cfg_leads = this._client.cfg_leads;
|