@gravitee/ui-policy-studio-angular 16.1.0-apim-11657-adapt-ui-for-llm-5119b8f → 16.1.0-renovate-digests-pin-e7fea2f
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/fesm2022/gravitee-ui-policy-studio-angular-testing.mjs +1 -54
- package/fesm2022/gravitee-ui-policy-studio-angular-testing.mjs.map +1 -1
- package/fesm2022/gravitee-ui-policy-studio-angular.mjs +31 -198
- package/fesm2022/gravitee-ui-policy-studio-angular.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +1 -1
- package/testing/index.d.ts +2 -5
|
@@ -152,28 +152,6 @@ function fakeMcpFlow(modifier) {
|
|
|
152
152
|
...modifier,
|
|
153
153
|
};
|
|
154
154
|
}
|
|
155
|
-
function fakeLlmFlow(modifier) {
|
|
156
|
-
const httpSelector = {
|
|
157
|
-
type: 'HTTP',
|
|
158
|
-
path: '/path',
|
|
159
|
-
pathOperator: 'EQUALS',
|
|
160
|
-
methods: ['GET'],
|
|
161
|
-
};
|
|
162
|
-
const base = {
|
|
163
|
-
name: 'Flow name',
|
|
164
|
-
selectors: [httpSelector],
|
|
165
|
-
request: [],
|
|
166
|
-
response: [],
|
|
167
|
-
enabled: true,
|
|
168
|
-
};
|
|
169
|
-
if (isFunction(modifier)) {
|
|
170
|
-
return modifier(base);
|
|
171
|
-
}
|
|
172
|
-
return {
|
|
173
|
-
...base,
|
|
174
|
-
...modifier,
|
|
175
|
-
};
|
|
176
|
-
}
|
|
177
155
|
|
|
178
156
|
/*
|
|
179
157
|
* Copyright (C) 2023 The Gravitee team (http://gravitee.io)
|
|
@@ -351,7 +329,6 @@ function fakeTestPolicy(modifier) {
|
|
|
351
329
|
flowPhaseCompatibility: {
|
|
352
330
|
HTTP_PROXY: ['REQUEST', 'RESPONSE'],
|
|
353
331
|
HTTP_MCP_PROXY: ['REQUEST', 'RESPONSE'],
|
|
354
|
-
HTTP_LLM_PROXY: ['REQUEST', 'RESPONSE'],
|
|
355
332
|
HTTP_MESSAGE: ['REQUEST', 'RESPONSE', 'SUBSCRIBE', 'PUBLISH'],
|
|
356
333
|
NATIVE_KAFKA: ['CONNECT', 'INTERACT', 'PUBLISH', 'SUBSCRIBE'],
|
|
357
334
|
},
|
|
@@ -790,36 +767,6 @@ function fakeMCPProxyEndpoint(modifier) {
|
|
|
790
767
|
...modifier,
|
|
791
768
|
};
|
|
792
769
|
}
|
|
793
|
-
function fakeLlmProxyEntrypoint(modifier) {
|
|
794
|
-
const base = {
|
|
795
|
-
type: 'llm-proxy',
|
|
796
|
-
name: 'LLM Proxy',
|
|
797
|
-
supportedModes: ['REQUEST_RESPONSE'],
|
|
798
|
-
icon: 'gio:language',
|
|
799
|
-
};
|
|
800
|
-
if (isFunction(modifier)) {
|
|
801
|
-
return modifier(base);
|
|
802
|
-
}
|
|
803
|
-
return {
|
|
804
|
-
...base,
|
|
805
|
-
...modifier,
|
|
806
|
-
};
|
|
807
|
-
}
|
|
808
|
-
function fakeLlmProxyEndpoint(modifier) {
|
|
809
|
-
const base = {
|
|
810
|
-
type: 'llm-proxy',
|
|
811
|
-
name: 'LLM Proxy',
|
|
812
|
-
supportedModes: ['REQUEST_RESPONSE'],
|
|
813
|
-
icon: 'gio:language',
|
|
814
|
-
};
|
|
815
|
-
if (isFunction(modifier)) {
|
|
816
|
-
return modifier(base);
|
|
817
|
-
}
|
|
818
|
-
return {
|
|
819
|
-
...base,
|
|
820
|
-
...modifier,
|
|
821
|
-
};
|
|
822
|
-
}
|
|
823
770
|
|
|
824
771
|
/*
|
|
825
772
|
* Copyright (C) 2022 The Gravitee team (http://gravitee.io)
|
|
@@ -2034,5 +1981,5 @@ class GioPolicyGroupStudioHarness extends ComponentHarness {
|
|
|
2034
1981
|
* Generated bundle index. Do not edit.
|
|
2035
1982
|
*/
|
|
2036
1983
|
|
|
2037
|
-
export { GioPolicyGroupStudioHarness, GioPolicyStudioHarness, POLICIES_V4_UNREGISTERED_ICON, fakeAllPolicies, fakeBestMatchFlowExecution, fakeChannelFlow, fakeConditionedChannelFlow, fakeConditionedHttpFlow, fakeDefaultFlowExecution, fakeHTTPGetMessageEntrypoint, fakeHTTPPostMessageEntrypoint, fakeHTTPProxyEndpoint, fakeHTTPProxyEntrypoint, fakeHttpFlow, fakeJsonToXmlStep, fakeKafkaMessageEndpoint, fakeKafkaNativeEndpoint, fakeKafkaNativeEntrypoint,
|
|
1984
|
+
export { GioPolicyGroupStudioHarness, GioPolicyStudioHarness, POLICIES_V4_UNREGISTERED_ICON, fakeAllPolicies, fakeBestMatchFlowExecution, fakeChannelFlow, fakeConditionedChannelFlow, fakeConditionedHttpFlow, fakeDefaultFlowExecution, fakeHTTPGetMessageEntrypoint, fakeHTTPPostMessageEntrypoint, fakeHTTPProxyEndpoint, fakeHTTPProxyEntrypoint, fakeHttpFlow, fakeJsonToXmlStep, fakeKafkaMessageEndpoint, fakeKafkaNativeEndpoint, fakeKafkaNativeEntrypoint, fakeMCPProxyEndpoint, fakeMCPProxyEntrypoint, fakeMcpFlow, fakeMockMessageEndpoint, fakeNativeFlow, fakePlan, fakeRateLimitStep, fakeSSEMessageEntrypoint, fakeSharedPolicyGroupPolicyStep, fakeTestPolicy, fakeTestPolicyStep, fakeWebhookMessageEntrypoint, fakeWebsocketMessageEntrypoint };
|
|
2038
1985
|
//# sourceMappingURL=gravitee-ui-policy-studio-angular-testing.mjs.map
|