@kong-ui-public/entities-plugins 9.194.3 → 9.195.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/endpoints/plugins-endpoints.d.ts +18 -1
- package/dist/endpoints/plugins-endpoints.js +20 -0
- package/dist/entities-plugins.es.js +10231 -10041
- package/dist/entities-plugins.umd.js +114 -114
- package/dist/style.css +1 -1
- package/dist/types/components/CustomPluginForm.vue.d.ts +21 -12
- package/dist/types/components/CustomPluginForm.vue.d.ts.map +1 -1
- package/dist/types/components/PluginForm.vue.d.ts +1 -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/composables/index.d.ts +2 -0
- package/dist/types/composables/index.d.ts.map +1 -1
- package/dist/types/composables/useCustomPluginApi.d.ts +34 -0
- package/dist/types/composables/useCustomPluginApi.d.ts.map +1 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/types/plugins-endpoints.d.ts +18 -0
- package/dist/types/plugins-endpoints.d.ts.map +1 -1
- package/dist/types/types/custom-plugin-form.d.ts +26 -22
- package/dist/types/types/custom-plugin-form.d.ts.map +1 -1
- package/package.json +13 -13
- package/dist/endpoints/plugins-endpoints.d.ts.map +0 -1
|
@@ -60,6 +60,24 @@ declare const _default: {
|
|
|
60
60
|
entityGetAll: string;
|
|
61
61
|
};
|
|
62
62
|
};
|
|
63
|
+
customPlugin: {
|
|
64
|
+
konnect: {
|
|
65
|
+
installed: {
|
|
66
|
+
create: string;
|
|
67
|
+
edit: string;
|
|
68
|
+
};
|
|
69
|
+
streamed: {
|
|
70
|
+
create: string;
|
|
71
|
+
edit: string;
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
kongManager: {
|
|
75
|
+
streamed: {
|
|
76
|
+
create: string;
|
|
77
|
+
edit: string;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
};
|
|
63
81
|
item: {
|
|
64
82
|
konnect: {
|
|
65
83
|
all: string;
|
|
@@ -72,4 +90,3 @@ declare const _default: {
|
|
|
72
90
|
};
|
|
73
91
|
};
|
|
74
92
|
export default _default;
|
|
75
|
-
//# sourceMappingURL=plugins-endpoints.d.ts.map
|
|
@@ -64,6 +64,26 @@ export default {
|
|
|
64
64
|
entityGetAll: "".concat(KMBaseApiUrl, "/{entity}"),
|
|
65
65
|
},
|
|
66
66
|
},
|
|
67
|
+
customPlugin: {
|
|
68
|
+
konnect: {
|
|
69
|
+
installed: {
|
|
70
|
+
create: "".concat(konnectBaseApiUrl, "/plugin-schemas"),
|
|
71
|
+
edit: "".concat(konnectBaseApiUrl, "/plugin-schemas/{pluginId}"),
|
|
72
|
+
},
|
|
73
|
+
streamed: {
|
|
74
|
+
create: "".concat(konnectBaseApiUrl, "/custom-plugins"),
|
|
75
|
+
edit: "".concat(konnectBaseApiUrl, "/custom-plugins/{pluginId}"),
|
|
76
|
+
},
|
|
77
|
+
// todo: cloned
|
|
78
|
+
},
|
|
79
|
+
kongManager: {
|
|
80
|
+
streamed: {
|
|
81
|
+
create: "".concat(KMBaseApiUrl, "/custom-plugins"),
|
|
82
|
+
edit: "".concat(KMBaseApiUrl, "/custom-plugins/{pluginId}"),
|
|
83
|
+
},
|
|
84
|
+
// todo: cloned
|
|
85
|
+
},
|
|
86
|
+
},
|
|
67
87
|
item: {
|
|
68
88
|
konnect: {
|
|
69
89
|
all: "".concat(konnectBaseApiUrl, "/plugins/{id}"),
|