@kong-ui-public/entities-plugins 9.194.3 → 9.194.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/endpoints/plugins-endpoints.d.ts +0 -1
- package/dist/types/components/free-form/plugins/acl/index.d.ts +1 -1
- package/dist/types/components/free-form/plugins/ai-custom-guardrail.d.ts +1 -1
- package/dist/types/components/free-form/plugins/ai-mcp-proxy/index.d.ts +1 -1
- package/dist/types/components/free-form/plugins/cors.d.ts +1 -1
- package/dist/types/components/free-form/plugins/datakit/flow-editor/composables/useBranchNodeForm.d.ts +1 -1
- package/dist/types/components/free-form/plugins/datakit/flow-editor/store/flow.d.ts +15 -15
- package/dist/types/components/free-form/plugins/datakit/index.d.ts +1 -1
- package/dist/types/components/free-form/plugins/exit-transformer.d.ts +1 -1
- package/dist/types/components/free-form/plugins/file-log.d.ts +1 -1
- package/dist/types/components/free-form/plugins/http-log.d.ts +1 -1
- package/dist/types/components/free-form/plugins/key-auth/index.d.ts +1 -1
- package/dist/types/components/free-form/plugins/metering-and-billing/index.d.ts +1 -1
- package/dist/types/components/free-form/plugins/opentelemetry.d.ts +1 -1
- package/dist/types/components/free-form/plugins/proxy-cache-advanced.d.ts +1 -1
- package/dist/types/components/free-form/plugins/proxy-cache.d.ts +1 -1
- package/dist/types/components/free-form/plugins/request-callout/index.d.ts +1 -1
- package/dist/types/components/free-form/plugins/response-transformer-advanced.d.ts +1 -1
- package/dist/types/components/free-form/plugins/response-transformer.d.ts +1 -1
- package/dist/types/components/free-form/plugins/service-protection/index.d.ts +1 -1
- package/dist/types/components/free-form/plugins/solace-consume.d.ts +1 -1
- package/dist/types/components/free-form/plugins/solace-log.d.ts +1 -1
- package/dist/types/components/free-form/plugins/solace-upstream.d.ts +1 -1
- package/dist/types/components/free-form/plugins/upstream-oauth.d.ts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +9 -9
- package/dist/endpoints/plugins-endpoints.d.ts.map +0 -1
|
@@ -30,7 +30,7 @@ export declare function useBranchNodeForm<T extends BaseFormData = BaseFormData>
|
|
|
30
30
|
removeFieldByName: (io: "input" | "output", fieldName: import("../../types").FieldName) => void;
|
|
31
31
|
setInputs: (fieldName: import("../../types").FieldName, fieldValue: import("../../types").IdConnection | null) => Promise<void>;
|
|
32
32
|
setInput: (value: import("../../types").IdConnection | null) => Promise<void>;
|
|
33
|
-
nameValidator: import("./validation").ValidatorFn<string>;
|
|
33
|
+
nameValidator: import("./validation/basic.ts").ValidatorFn<string>;
|
|
34
34
|
fieldNameValidator: (io: "input" | "output", oldFieldName: import("../../types").FieldName, newFieldName: import("../../types").FieldName) => string | undefined;
|
|
35
35
|
toggleNodeValid: (isValid: boolean) => void;
|
|
36
36
|
};
|
|
@@ -288,11 +288,11 @@ declare const provideFlowStore: (options: UseFlowOptions) => {
|
|
|
288
288
|
} | undefined;
|
|
289
289
|
getMembers: (ownerId: NodeId, branch: import("../../types").BranchName) => NodeId[];
|
|
290
290
|
wouldCreateCycle: (ownerId: NodeId, memberId: NodeId) => boolean;
|
|
291
|
-
setMembers: (ownerId: NodeId, branch: import("../../types").BranchName, members: readonly NodeId[], options?: import("./branch-groups").CommitOptions) => boolean;
|
|
291
|
+
setMembers: (ownerId: NodeId, branch: import("../../types").BranchName, members: readonly NodeId[], options?: import("./branch-groups.ts").CommitOptions) => boolean;
|
|
292
292
|
prepareMembers: (ownerId: NodeId, branch: import("../../types").BranchName, candidates: readonly NodeId[]) => NodeId[];
|
|
293
|
-
addMember: (ownerId: NodeId, branch: import("../../types").BranchName, memberId: NodeId, options?: import("./branch-groups").CommitOptions) => boolean;
|
|
294
|
-
removeMember: (memberId: NodeId, options?: import("./branch-groups").CommitOptions) => boolean;
|
|
295
|
-
clear: (ownerId: NodeId, options?: import("./branch-groups").CommitOptions) => boolean;
|
|
293
|
+
addMember: (ownerId: NodeId, branch: import("../../types").BranchName, memberId: NodeId, options?: import("./branch-groups.ts").CommitOptions) => boolean;
|
|
294
|
+
removeMember: (memberId: NodeId, options?: import("./branch-groups.ts").CommitOptions) => boolean;
|
|
295
|
+
clear: (ownerId: NodeId, options?: import("./branch-groups.ts").CommitOptions) => boolean;
|
|
296
296
|
getNodeDepth: (nodeId: NodeId) => number;
|
|
297
297
|
getGroupDepth: (groupId: GroupId) => number;
|
|
298
298
|
isGroupId: (id?: string) => id is GroupId;
|
|
@@ -327,7 +327,7 @@ declare const provideFlowStore: (options: UseFlowOptions) => {
|
|
|
327
327
|
target?: string | null;
|
|
328
328
|
targetHandle?: string | null;
|
|
329
329
|
}) => boolean;
|
|
330
|
-
validateGraph: () => import("./validation").ValidationResult;
|
|
330
|
+
validateGraph: () => import("./validation.ts").ValidationResult;
|
|
331
331
|
clearPendingLayout: () => void;
|
|
332
332
|
setPendingFitView: (isPending?: boolean) => void;
|
|
333
333
|
};
|
|
@@ -602,11 +602,11 @@ declare const provideFlowStore: (options: UseFlowOptions) => {
|
|
|
602
602
|
} | undefined;
|
|
603
603
|
getMembers: (ownerId: NodeId, branch: import("../../types").BranchName) => NodeId[];
|
|
604
604
|
wouldCreateCycle: (ownerId: NodeId, memberId: NodeId) => boolean;
|
|
605
|
-
setMembers: (ownerId: NodeId, branch: import("../../types").BranchName, members: readonly NodeId[], options?: import("./branch-groups").CommitOptions) => boolean;
|
|
605
|
+
setMembers: (ownerId: NodeId, branch: import("../../types").BranchName, members: readonly NodeId[], options?: import("./branch-groups.ts").CommitOptions) => boolean;
|
|
606
606
|
prepareMembers: (ownerId: NodeId, branch: import("../../types").BranchName, candidates: readonly NodeId[]) => NodeId[];
|
|
607
|
-
addMember: (ownerId: NodeId, branch: import("../../types").BranchName, memberId: NodeId, options?: import("./branch-groups").CommitOptions) => boolean;
|
|
608
|
-
removeMember: (memberId: NodeId, options?: import("./branch-groups").CommitOptions) => boolean;
|
|
609
|
-
clear: (ownerId: NodeId, options?: import("./branch-groups").CommitOptions) => boolean;
|
|
607
|
+
addMember: (ownerId: NodeId, branch: import("../../types").BranchName, memberId: NodeId, options?: import("./branch-groups.ts").CommitOptions) => boolean;
|
|
608
|
+
removeMember: (memberId: NodeId, options?: import("./branch-groups.ts").CommitOptions) => boolean;
|
|
609
|
+
clear: (ownerId: NodeId, options?: import("./branch-groups.ts").CommitOptions) => boolean;
|
|
610
610
|
getNodeDepth: (nodeId: NodeId) => number;
|
|
611
611
|
getGroupDepth: (groupId: GroupId) => number;
|
|
612
612
|
isGroupId: (id?: string) => id is GroupId;
|
|
@@ -641,7 +641,7 @@ declare const provideFlowStore: (options: UseFlowOptions) => {
|
|
|
641
641
|
target?: string | null;
|
|
642
642
|
targetHandle?: string | null;
|
|
643
643
|
}) => boolean;
|
|
644
|
-
validateGraph: () => import("./validation").ValidationResult;
|
|
644
|
+
validateGraph: () => import("./validation.ts").ValidationResult;
|
|
645
645
|
clearPendingLayout: () => void;
|
|
646
646
|
setPendingFitView: (isPending?: boolean) => void;
|
|
647
647
|
};
|
|
@@ -918,11 +918,11 @@ export declare function useFlowStore(): {
|
|
|
918
918
|
} | undefined;
|
|
919
919
|
getMembers: (ownerId: NodeId, branch: import("../../types").BranchName) => NodeId[];
|
|
920
920
|
wouldCreateCycle: (ownerId: NodeId, memberId: NodeId) => boolean;
|
|
921
|
-
setMembers: (ownerId: NodeId, branch: import("../../types").BranchName, members: readonly NodeId[], options?: import("./branch-groups").CommitOptions) => boolean;
|
|
921
|
+
setMembers: (ownerId: NodeId, branch: import("../../types").BranchName, members: readonly NodeId[], options?: import("./branch-groups.ts").CommitOptions) => boolean;
|
|
922
922
|
prepareMembers: (ownerId: NodeId, branch: import("../../types").BranchName, candidates: readonly NodeId[]) => NodeId[];
|
|
923
|
-
addMember: (ownerId: NodeId, branch: import("../../types").BranchName, memberId: NodeId, options?: import("./branch-groups").CommitOptions) => boolean;
|
|
924
|
-
removeMember: (memberId: NodeId, options?: import("./branch-groups").CommitOptions) => boolean;
|
|
925
|
-
clear: (ownerId: NodeId, options?: import("./branch-groups").CommitOptions) => boolean;
|
|
923
|
+
addMember: (ownerId: NodeId, branch: import("../../types").BranchName, memberId: NodeId, options?: import("./branch-groups.ts").CommitOptions) => boolean;
|
|
924
|
+
removeMember: (memberId: NodeId, options?: import("./branch-groups.ts").CommitOptions) => boolean;
|
|
925
|
+
clear: (ownerId: NodeId, options?: import("./branch-groups.ts").CommitOptions) => boolean;
|
|
926
926
|
getNodeDepth: (nodeId: NodeId) => number;
|
|
927
927
|
getGroupDepth: (groupId: GroupId) => number;
|
|
928
928
|
isGroupId: (id?: string) => id is GroupId;
|
|
@@ -957,7 +957,7 @@ export declare function useFlowStore(): {
|
|
|
957
957
|
target?: string | null;
|
|
958
958
|
targetHandle?: string | null;
|
|
959
959
|
}) => boolean;
|
|
960
|
-
validateGraph: () => import("./validation").ValidationResult;
|
|
960
|
+
validateGraph: () => import("./validation.ts").ValidationResult;
|
|
961
961
|
clearPendingLayout: () => void;
|
|
962
962
|
setPendingFitView: (isPending?: boolean) => void;
|
|
963
963
|
};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ declare const usePluginMetaData: () => {
|
|
|
12
12
|
credentialMetaData: Record<string, any>;
|
|
13
13
|
credentialSchemas: Record<string, any>;
|
|
14
14
|
getDisplayName: (name: string) => string;
|
|
15
|
-
}, useProvideExperimentalFreeForms: typeof import("./composables/useExperimentalFreeForms.
|
|
15
|
+
}, useProvideExperimentalFreeForms: typeof import("./composables/useExperimentalFreeForms.ts").useProvideExperimentalFreeForms;
|
|
16
16
|
export { CustomPluginForm, PluginForm, PluginList, PluginSelect, PluginCatalog, PluginSelectGrid, PluginSelectCard, PluginConfigCard, usePluginMetaData, useProvideExperimentalFreeForms, };
|
|
17
17
|
export * from './types';
|
|
18
18
|
export { pluginEndpoints };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kong-ui-public/entities-plugins",
|
|
3
|
-
"version": "9.194.
|
|
3
|
+
"version": "9.194.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/entities-plugins.umd.js",
|
|
6
6
|
"module": "./dist/entities-plugins.es.js",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"vue": ">= 3.3.13 < 4",
|
|
51
51
|
"vue-router": "^4.6.4",
|
|
52
52
|
"zod": ">= 4.1.3 < 5",
|
|
53
|
-
"@kong-ui-public/i18n": "^2.4.6",
|
|
54
53
|
"@kong-ui-public/entities-shared": "^3.42.1",
|
|
55
|
-
"@kong-ui-public/monaco-editor": "^0.22.2"
|
|
54
|
+
"@kong-ui-public/monaco-editor": "^0.22.2",
|
|
55
|
+
"@kong-ui-public/i18n": "^2.4.6"
|
|
56
56
|
},
|
|
57
57
|
"peerDependenciesMeta": {
|
|
58
58
|
"@playwright/test": {
|
|
@@ -88,8 +88,8 @@
|
|
|
88
88
|
"zod": "^4.3.6",
|
|
89
89
|
"@kong-ui-public/entities-vaults": "^4.4.17",
|
|
90
90
|
"@kong-ui-public/i18n": "^2.4.6",
|
|
91
|
-
"@kong-ui-public/
|
|
92
|
-
"@kong-ui-public/
|
|
91
|
+
"@kong-ui-public/monaco-editor": "^0.22.2",
|
|
92
|
+
"@kong-ui-public/entities-shared": "^3.42.1"
|
|
93
93
|
},
|
|
94
94
|
"repository": {
|
|
95
95
|
"type": "git",
|
|
@@ -108,15 +108,15 @@
|
|
|
108
108
|
"dependencies": {
|
|
109
109
|
"lodash-es": "^4.18.1",
|
|
110
110
|
"marked": "^14.1.4",
|
|
111
|
-
"@kong-ui-public/entities-
|
|
111
|
+
"@kong-ui-public/entities-consumer-groups": "^4.3.15",
|
|
112
112
|
"@kong-ui-public/entities-gateway-services": "^3.19.1",
|
|
113
113
|
"@kong-ui-public/entities-plugins-icon": "^1.6.4",
|
|
114
|
-
"@kong-ui-public/entities-
|
|
114
|
+
"@kong-ui-public/entities-consumers": "^4.3.15",
|
|
115
115
|
"@kong-ui-public/entities-plugins-metadata": "^1.13.3",
|
|
116
116
|
"@kong-ui-public/entities-redis-configurations": "^1.14.20",
|
|
117
117
|
"@kong-ui-public/entities-routes": "^3.21.20",
|
|
118
|
-
"@kong-ui-public/
|
|
119
|
-
"@kong-ui-public/
|
|
118
|
+
"@kong-ui-public/entities-vaults": "^4.4.17",
|
|
119
|
+
"@kong-ui-public/forms": "^4.23.19"
|
|
120
120
|
},
|
|
121
121
|
"scripts": {
|
|
122
122
|
"dev": "cross-env USE_SANDBOX=true vite",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"plugins-endpoints.d.ts","sourceRoot":"","sources":["../../src/plugins-endpoints.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGA,wBA0EC"}
|