@kong-ui-public/entities-plugins 9.78.0 → 9.79.0
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/entities-plugins.es.js +6894 -6594
- package/dist/entities-plugins.umd.js +35 -35
- package/dist/style.css +1 -1
- package/dist/types/components/free-form/Datakit/CodeEditor.vue.d.ts.map +1 -1
- package/dist/types/components/free-form/Datakit/DatakitForm.vue.d.ts.map +1 -1
- package/dist/types/components/free-form/Datakit/constants.d.ts +3 -11
- package/dist/types/components/free-form/Datakit/constants.d.ts.map +1 -1
- package/dist/types/components/free-form/Datakit/flow-editor/FlowEditor.vue.d.ts +114 -2
- package/dist/types/components/free-form/Datakit/flow-editor/FlowEditor.vue.d.ts.map +1 -1
- package/dist/types/components/free-form/Datakit/flow-editor/composables/useNodeForm.d.ts +1 -1
- package/dist/types/components/free-form/Datakit/flow-editor/node-forms/InputsField.vue.d.ts +8 -8
- package/dist/types/components/free-form/Datakit/flow-editor/node-forms/InputsMapField.vue.d.ts +8 -8
- package/dist/types/components/free-form/Datakit/flow-editor/node-forms/InputsRecordField.vue.d.ts +3 -3
- package/dist/types/components/free-form/Datakit/flow-editor/node-forms/InputsRecordField.vue.d.ts.map +1 -1
- package/dist/types/components/free-form/Datakit/flow-editor/node-forms/OutputValueField.vue.d.ts +8 -8
- package/dist/types/components/free-form/Datakit/flow-editor/store/flow.d.ts +3 -3
- package/dist/types/components/free-form/Datakit/flow-editor/store/flow.d.ts.map +1 -1
- package/dist/types/components/free-form/Datakit/flow-editor/store/init.d.ts.map +1 -1
- package/dist/types/components/free-form/Datakit/flow-editor/store/store.d.ts +56 -3
- package/dist/types/components/free-form/Datakit/flow-editor/store/store.d.ts.map +1 -1
- package/dist/types/components/free-form/Datakit/flow-editor/store/validation.d.ts.map +1 -1
- package/dist/types/components/free-form/Datakit/schema/compat.d.ts +80 -0
- package/dist/types/components/free-form/Datakit/schema/compat.d.ts.map +1 -0
- package/dist/types/components/free-form/Datakit/schema/shared.d.ts +12 -0
- package/dist/types/components/free-form/Datakit/schema/shared.d.ts.map +1 -0
- package/dist/types/components/free-form/Datakit/schema/strict.d.ts +314 -0
- package/dist/types/components/free-form/Datakit/schema/strict.d.ts.map +1 -0
- package/dist/types/components/free-form/Datakit/types.d.ts +2 -250
- package/dist/types/components/free-form/Datakit/types.d.ts.map +1 -1
- package/package.json +10 -9
|
@@ -1,15 +1,10 @@
|
|
|
1
1
|
import type { Component } from 'vue';
|
|
2
2
|
import type { ButtonProps } from '@kong/kongponents';
|
|
3
3
|
import type { FreeFormPluginData } from '../../../types/plugins/free-form';
|
|
4
|
-
import type { HttpMethod } from './
|
|
5
|
-
export type { HttpMethod };
|
|
4
|
+
import type { DatakitConfig, HttpMethod, ConfigNode, ConfigNodeType, ImplicitNodeType, NodeType, ImplicitNodeName, ConfigNodeName, NodeName, FieldName, NameConnection, CallNode, ExitNode, JqNode, PropertyNode, StaticNode } from './schema/strict';
|
|
6
5
|
type RequireAtLeastOne<T, Keys extends keyof T = keyof T> = Keys extends any ? Omit<T, Keys> & {
|
|
7
6
|
[K in Keys]-?: T[K];
|
|
8
7
|
} : never;
|
|
9
|
-
declare const brand: unique symbol;
|
|
10
|
-
type Brand<T, Brand extends string> = T & {
|
|
11
|
-
[brand]: Brand;
|
|
12
|
-
};
|
|
13
8
|
export type EditorMode = 'code' | 'flow';
|
|
14
9
|
interface EditorModalNavItemBase {
|
|
15
10
|
label: string;
|
|
@@ -21,23 +16,11 @@ export type EditorModalNavItem = RequireAtLeastOne<EditorModalNavItemBase, 'to'
|
|
|
21
16
|
/************************************************
|
|
22
17
|
* Node meta types *
|
|
23
18
|
************************************************/
|
|
24
|
-
/**
|
|
25
|
-
* All explicit node types recognised by Datakit.
|
|
26
|
-
*/
|
|
27
|
-
export type ConfigNodeType = 'call' | 'jq' | 'exit' | 'property' | 'static';
|
|
28
|
-
export type ImplicitNodeType = 'request' | 'service_request' | 'service_response' | 'response';
|
|
29
|
-
export type NodeType = ConfigNodeType | ImplicitNodeType;
|
|
30
19
|
export interface FieldMeta {
|
|
31
20
|
name: FieldName;
|
|
32
21
|
}
|
|
33
22
|
export interface IOMeta {
|
|
34
|
-
/**
|
|
35
|
-
* Well-known I/O fields for the node.
|
|
36
|
-
*/
|
|
37
23
|
fields: FieldMeta[];
|
|
38
|
-
/**
|
|
39
|
-
* Wether users can configure the I/O fields.
|
|
40
|
-
*/
|
|
41
24
|
configurable?: boolean;
|
|
42
25
|
}
|
|
43
26
|
export interface NodeMeta {
|
|
@@ -45,12 +28,6 @@ export interface NodeMeta {
|
|
|
45
28
|
summary?: string;
|
|
46
29
|
description?: string;
|
|
47
30
|
icon?: Component;
|
|
48
|
-
/**
|
|
49
|
-
* I/O fields configuration for the node type.
|
|
50
|
-
* * If not provided, the node type has no corresponding I/O fields.
|
|
51
|
-
* * If provided empty array as fields, the node type only offers `inputs` or `outputs` as a whole.
|
|
52
|
-
* * If provided with `input` and/or `output` fields, the node type has individual I/O fields.
|
|
53
|
-
*/
|
|
54
31
|
io?: {
|
|
55
32
|
input?: IOMeta;
|
|
56
33
|
output?: IOMeta;
|
|
@@ -60,23 +37,7 @@ export interface NodeMeta {
|
|
|
60
37
|
* Plugin config types *
|
|
61
38
|
************************************************/
|
|
62
39
|
export type DatakitPlugin = FreeFormPluginData<DatakitConfig>;
|
|
63
|
-
|
|
64
|
-
* Datakit plugin configuration.
|
|
65
|
-
*/
|
|
66
|
-
export interface DatakitConfig {
|
|
67
|
-
/**
|
|
68
|
-
* Datakit nodes.
|
|
69
|
-
*
|
|
70
|
-
* * Must contain at least one element.
|
|
71
|
-
*/
|
|
72
|
-
nodes: ConfigNode[];
|
|
73
|
-
/**
|
|
74
|
-
* Enable verbose debug logging.
|
|
75
|
-
*
|
|
76
|
-
* @default false
|
|
77
|
-
*/
|
|
78
|
-
debug?: boolean;
|
|
79
|
-
}
|
|
40
|
+
export type { DatakitConfig, ConfigNode, ConfigNodeType, ImplicitNodeType, NodeType, ImplicitNodeName, ConfigNodeName, NodeName, FieldName, NameConnection, CallNode, ExitNode, JqNode, PropertyNode, StaticNode, HttpMethod, };
|
|
80
41
|
/**
|
|
81
42
|
* UI data that stores layout data for Datakit nodes.
|
|
82
43
|
*
|
|
@@ -88,219 +49,12 @@ export interface DatakitUIData {
|
|
|
88
49
|
*/
|
|
89
50
|
nodes: UINode[];
|
|
90
51
|
}
|
|
91
|
-
/**
|
|
92
|
-
* Runtime-reserved implicit node names that must not be reused.
|
|
93
|
-
*/
|
|
94
|
-
export type ImplicitNodeName = 'request' | 'service_request' | 'service_response' | 'response';
|
|
95
|
-
/**
|
|
96
|
-
* A label that uniquely identifies the node within the plugin
|
|
97
|
-
* configuration so that it can be used for input/output connections.
|
|
98
|
-
* Must be valid `snake_case` or `kebab-case`.
|
|
99
|
-
*
|
|
100
|
-
* * 1–255 characters
|
|
101
|
-
* * Starts with a letter or “_”
|
|
102
|
-
* * Contains only letters, digits, “_” or “-”
|
|
103
|
-
* * Must not clash with implicit node names
|
|
104
|
-
*
|
|
105
|
-
* @example 'snake_case'
|
|
106
|
-
* @example 'SCREAMING_SNAKE_CASE'
|
|
107
|
-
* @example 'kebab-case'
|
|
108
|
-
* @example 'KEBAB-CASE'
|
|
109
|
-
* @example 'set-property'
|
|
110
|
-
* @example 'get-property'
|
|
111
|
-
* @example 'send_api_request'
|
|
112
|
-
* @example 'filter_01'
|
|
113
|
-
* @example 'filter_02'
|
|
114
|
-
*/
|
|
115
|
-
export type ConfigNodeName = Brand<string, 'ConfigNodeName'>;
|
|
116
|
-
export type NodeName = ConfigNodeName | ImplicitNodeName;
|
|
117
52
|
/**
|
|
118
53
|
* The phase of the node in the request/response cycle.
|
|
119
54
|
*
|
|
120
55
|
* Note: Phases of implicit nodes are hardcoded and cannot be changed.
|
|
121
56
|
*/
|
|
122
57
|
export type NodePhase = 'request' | 'response';
|
|
123
|
-
/**
|
|
124
|
-
* Base shape shared by every concrete node type.
|
|
125
|
-
*/
|
|
126
|
-
export interface BaseConfigNode {
|
|
127
|
-
/**
|
|
128
|
-
* Unique label for referencing the node in connections.
|
|
129
|
-
*/
|
|
130
|
-
name: NodeName;
|
|
131
|
-
/**
|
|
132
|
-
* The type of the node.
|
|
133
|
-
*/
|
|
134
|
-
type: NodeType;
|
|
135
|
-
/**
|
|
136
|
-
* node input (`NODE` or `NODE.FIELD`)
|
|
137
|
-
*/
|
|
138
|
-
input?: NameConnection | null;
|
|
139
|
-
/**
|
|
140
|
-
* node inputs
|
|
141
|
-
*/
|
|
142
|
-
inputs?: Record<FieldName, NameConnection | null>;
|
|
143
|
-
/**
|
|
144
|
-
* node output (`NODE` or `NODE.FIELD`)
|
|
145
|
-
*/
|
|
146
|
-
output?: NameConnection | null;
|
|
147
|
-
/**
|
|
148
|
-
* node inputs
|
|
149
|
-
*/
|
|
150
|
-
outputs?: Record<FieldName, NameConnection | null>;
|
|
151
|
-
}
|
|
152
|
-
/**
|
|
153
|
-
* Make an external HTTP request.
|
|
154
|
-
*/
|
|
155
|
-
export interface CallNode extends BaseConfigNode {
|
|
156
|
-
type: 'call';
|
|
157
|
-
/**
|
|
158
|
-
* A string representing an HTTP method, such as GET, POST, PUT, or
|
|
159
|
-
* DELETE. The string must contain only uppercase letters.
|
|
160
|
-
*
|
|
161
|
-
* @default 'GET'
|
|
162
|
-
*/
|
|
163
|
-
method?: HttpMethod;
|
|
164
|
-
/**
|
|
165
|
-
* A string representing an SNI (server name indication) value for TLS.
|
|
166
|
-
*/
|
|
167
|
-
ssl_server_name?: string;
|
|
168
|
-
/**
|
|
169
|
-
* An integer representing a timeout in milliseconds. Must be between
|
|
170
|
-
* 0 and 2^31-2.
|
|
171
|
-
*/
|
|
172
|
-
timeout?: number;
|
|
173
|
-
/**
|
|
174
|
-
* A string representing a URL, such as
|
|
175
|
-
* `https://example.com/path/to/resource?q=search`.
|
|
176
|
-
*/
|
|
177
|
-
url: string;
|
|
178
|
-
/** call node input (`NODE` or `NODE.FIELD`) */
|
|
179
|
-
input?: NameConnection | null;
|
|
180
|
-
/**
|
|
181
|
-
* call node inputs
|
|
182
|
-
*/
|
|
183
|
-
inputs?: {
|
|
184
|
-
/** HTTP request body (`NODE` or `NODE.FIELD`) */
|
|
185
|
-
body?: NameConnection | null;
|
|
186
|
-
/** HTTP request headers (`NODE` or `NODE.FIELD`) */
|
|
187
|
-
headers?: NameConnection | null;
|
|
188
|
-
/** HTTP request query (`NODE` or `NODE.FIELD`) */
|
|
189
|
-
query?: NameConnection | null;
|
|
190
|
-
};
|
|
191
|
-
/** call node output (`NODE` or `NODE.FIELD`) */
|
|
192
|
-
output?: NameConnection | null;
|
|
193
|
-
/**
|
|
194
|
-
* call node outputs
|
|
195
|
-
*/
|
|
196
|
-
outputs?: {
|
|
197
|
-
/** HTTP response body (`NODE` or `NODE.FIELD`) */
|
|
198
|
-
body?: NameConnection | null;
|
|
199
|
-
/** HTTP response headers (`NODE` or `NODE.FIELD`) */
|
|
200
|
-
headers?: NameConnection | null;
|
|
201
|
-
/** HTTP response status code (`NODE` or `NODE.FIELD`) */
|
|
202
|
-
status?: NameConnection | null;
|
|
203
|
-
};
|
|
204
|
-
}
|
|
205
|
-
/**
|
|
206
|
-
* Terminate the request and send a response to the client.
|
|
207
|
-
*/
|
|
208
|
-
export interface ExitNode extends BaseConfigNode {
|
|
209
|
-
type: 'exit';
|
|
210
|
-
/**
|
|
211
|
-
* HTTP status code.
|
|
212
|
-
* * 200–599
|
|
213
|
-
*
|
|
214
|
-
* @default 200
|
|
215
|
-
*/
|
|
216
|
-
status?: number;
|
|
217
|
-
/**
|
|
218
|
-
* When `true`, warn if headers have been sent already.
|
|
219
|
-
*/
|
|
220
|
-
warn_headers_sent?: boolean;
|
|
221
|
-
/** exit node input (`NODE` or `NODE.FIELD`) */
|
|
222
|
-
input?: NameConnection | null;
|
|
223
|
-
/**
|
|
224
|
-
* exit node inputs
|
|
225
|
-
*/
|
|
226
|
-
inputs?: {
|
|
227
|
-
/** HTTP response body (`NODE` or `NODE.FIELD`) */
|
|
228
|
-
body?: NameConnection | null;
|
|
229
|
-
/** HTTP response headers (`NODE` or `NODE.FIELD`) */
|
|
230
|
-
headers?: NameConnection | null;
|
|
231
|
-
};
|
|
232
|
-
}
|
|
233
|
-
/**
|
|
234
|
-
* Process data using `jq` syntax.
|
|
235
|
-
*/
|
|
236
|
-
export interface JqNode extends BaseConfigNode {
|
|
237
|
-
type: 'jq';
|
|
238
|
-
/**
|
|
239
|
-
* The jq filter text. Refer to https://jqlang.org/manual/ for full
|
|
240
|
-
* documentation.
|
|
241
|
-
*
|
|
242
|
-
* * 1–10240 characters
|
|
243
|
-
*/
|
|
244
|
-
jq: string;
|
|
245
|
-
/** filter input (`NODE` or `NODE.FIELD`) */
|
|
246
|
-
input?: NameConnection | null;
|
|
247
|
-
/**
|
|
248
|
-
* filter input(s)
|
|
249
|
-
*/
|
|
250
|
-
inputs?: Record<FieldName, NameConnection | null>;
|
|
251
|
-
/** filter output (`NODE` or `NODE.FIELD`) */
|
|
252
|
-
output?: NameConnection | null;
|
|
253
|
-
}
|
|
254
|
-
/**
|
|
255
|
-
* Get or set a property.
|
|
256
|
-
*/
|
|
257
|
-
export interface PropertyNode extends BaseConfigNode {
|
|
258
|
-
type: 'property';
|
|
259
|
-
/**
|
|
260
|
-
* The expected MIME type of the property value. When set to
|
|
261
|
-
* `application/json`, SET operations JSON-encode input data before
|
|
262
|
-
* writing it, and GET operations JSON-decode output data after reading
|
|
263
|
-
* it. Otherwise, this setting has no effect.
|
|
264
|
-
*/
|
|
265
|
-
content_type?: 'application/json' | 'text/plain' | 'application/octet-stream';
|
|
266
|
-
/**
|
|
267
|
-
* The property name to get/set.
|
|
268
|
-
*/
|
|
269
|
-
property: string;
|
|
270
|
-
/**
|
|
271
|
-
* Property input source. When connected, this node operates in SET
|
|
272
|
-
* mode and writes input data to the property. Otherwise, the node
|
|
273
|
-
* operates in GET mode and reads the property.
|
|
274
|
-
*/
|
|
275
|
-
input?: NameConnection | null;
|
|
276
|
-
/**
|
|
277
|
-
* Property output. This can be connected regardless of whether the
|
|
278
|
-
* node is operating in GET mode or SET mode.
|
|
279
|
-
*/
|
|
280
|
-
output?: NameConnection | null;
|
|
281
|
-
}
|
|
282
|
-
/**
|
|
283
|
-
* Produce reusable outputs from statically-configured values.
|
|
284
|
-
*/
|
|
285
|
-
export interface StaticNode extends BaseConfigNode {
|
|
286
|
-
type: 'static';
|
|
287
|
-
/**
|
|
288
|
-
* An object with string keys and free-form values.
|
|
289
|
-
*/
|
|
290
|
-
values: Record<string, unknown>;
|
|
291
|
-
/**
|
|
292
|
-
* The entire `.values` map (`NODE` or `NODE.FIELD`).
|
|
293
|
-
*/
|
|
294
|
-
output?: NameConnection | null;
|
|
295
|
-
/**
|
|
296
|
-
* Individual items from `.values`, referenced by key.
|
|
297
|
-
*/
|
|
298
|
-
outputs?: Record<FieldName, NameConnection | null>;
|
|
299
|
-
}
|
|
300
|
-
/**
|
|
301
|
-
* Discriminated union of all node types.
|
|
302
|
-
*/
|
|
303
|
-
export type ConfigNode = CallNode | ExitNode | JqNode | PropertyNode | StaticNode;
|
|
304
58
|
/************************************************
|
|
305
59
|
* Editor global store *
|
|
306
60
|
************************************************/
|
|
@@ -308,8 +62,6 @@ export type NodeId = `node:${number}`;
|
|
|
308
62
|
export type EdgeId = `edge:${number}`;
|
|
309
63
|
export type FieldId = `field:${number}`;
|
|
310
64
|
export type IdConnection = NodeId | `${NodeId}.${FieldId}`;
|
|
311
|
-
export type NameConnection = NodeName | `${NodeName}.${FieldName}`;
|
|
312
|
-
export type FieldName = Brand<string, 'FieldName'>;
|
|
313
65
|
export interface NodeField {
|
|
314
66
|
id: FieldId;
|
|
315
67
|
name: FieldName;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/components/free-form/Datakit/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/components/free-form/Datakit/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kong-ui-public/entities-plugins",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.79.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/entities-plugins.umd.js",
|
|
6
6
|
"module": "./dist/entities-plugins.es.js",
|
|
@@ -32,9 +32,10 @@
|
|
|
32
32
|
"axios": "^1.11.0",
|
|
33
33
|
"vue": ">= 3.3.13 < 4",
|
|
34
34
|
"vue-router": "^4.4.5",
|
|
35
|
+
"zod": "^4.0.17",
|
|
35
36
|
"@kong-ui-public/entities-plugins-icon": "^1.3.0",
|
|
36
|
-
"@kong-ui-public/
|
|
37
|
-
"@kong-ui-public/
|
|
37
|
+
"@kong-ui-public/i18n": "^2.4.4",
|
|
38
|
+
"@kong-ui-public/entities-shared": "^3.27.7"
|
|
38
39
|
},
|
|
39
40
|
"devDependencies": {
|
|
40
41
|
"@dagrejs/dagre": "^1.1.5",
|
|
@@ -49,9 +50,10 @@
|
|
|
49
50
|
"axios": "^1.7.7",
|
|
50
51
|
"vue": "^3.5.13",
|
|
51
52
|
"vue-router": "^4.4.5",
|
|
53
|
+
"zod": "^4.0.17",
|
|
52
54
|
"@kong-ui-public/entities-plugins-icon": "^1.3.0",
|
|
53
|
-
"@kong-ui-public/entities-shared": "^3.27.7",
|
|
54
55
|
"@kong-ui-public/entities-vaults": "^3.23.8",
|
|
56
|
+
"@kong-ui-public/entities-shared": "^3.27.7",
|
|
55
57
|
"@kong-ui-public/i18n": "^2.4.4"
|
|
56
58
|
},
|
|
57
59
|
"repository": {
|
|
@@ -69,18 +71,17 @@
|
|
|
69
71
|
"errorLimit": "2.8MB"
|
|
70
72
|
},
|
|
71
73
|
"dependencies": {
|
|
72
|
-
"focus-trap": "^7.6.5",
|
|
73
74
|
"lodash-es": "^4.17.21",
|
|
74
75
|
"marked": "^14.1.4",
|
|
75
76
|
"monaco-editor": "0.52.2",
|
|
76
|
-
"@kong-ui-public/entities-consumer-groups": "^4.1.7",
|
|
77
77
|
"@kong-ui-public/entities-consumers": "^4.1.7",
|
|
78
|
-
"@kong-ui-public/entities-
|
|
78
|
+
"@kong-ui-public/entities-plugins-metadata": "^1.8.0",
|
|
79
79
|
"@kong-ui-public/entities-redis-configurations": "^1.3.12",
|
|
80
|
+
"@kong-ui-public/forms": "^4.16.0",
|
|
80
81
|
"@kong-ui-public/entities-routes": "^3.15.12",
|
|
81
82
|
"@kong-ui-public/entities-vaults": "^3.23.8",
|
|
82
|
-
"@kong-ui-public/entities-
|
|
83
|
-
"@kong-ui-public/
|
|
83
|
+
"@kong-ui-public/entities-consumer-groups": "^4.1.7",
|
|
84
|
+
"@kong-ui-public/entities-gateway-services": "^3.12.8"
|
|
84
85
|
},
|
|
85
86
|
"scripts": {
|
|
86
87
|
"dev": "cross-env USE_SANDBOX=true vite",
|