@gravitee/ui-policy-studio-angular 17.3.0 → 17.4.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/fesm2022/gravitee-ui-policy-studio-angular-testing.mjs +144 -5
- package/fesm2022/gravitee-ui-policy-studio-angular-testing.mjs.map +1 -1
- package/fesm2022/gravitee-ui-policy-studio-angular.mjs +164 -84
- package/fesm2022/gravitee-ui-policy-studio-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/testing/index.d.ts +5 -1
package/package.json
CHANGED
package/testing/index.d.ts
CHANGED
|
@@ -109,6 +109,7 @@ declare function fakeConditionedHttpFlow(modifier?: Partial<Flow> | ((baseApi: F
|
|
|
109
109
|
declare function fakeNativeFlow(modifier?: Partial<Flow> | ((baseApi: Flow) => Flow)): Flow;
|
|
110
110
|
declare function fakeMcpFlow(modifier?: Partial<Flow> | ((baseApi: Flow) => Flow)): Flow;
|
|
111
111
|
declare function fakeLlmFlow(modifier?: Partial<Flow> | ((baseApi: Flow) => Flow)): Flow;
|
|
112
|
+
declare function fakeA2aFlow(modifier?: Partial<Flow> | ((baseApi: Flow) => Flow)): Flow;
|
|
112
113
|
|
|
113
114
|
/**
|
|
114
115
|
* API's flow mode.
|
|
@@ -187,6 +188,9 @@ declare function fakeMCPProxyEntrypoint(modifier?: Partial<ConnectorInfo> | ((ba
|
|
|
187
188
|
declare function fakeMCPProxyEndpoint(modifier?: Partial<ConnectorInfo> | ((base: ConnectorInfo) => ConnectorInfo)): ConnectorInfo;
|
|
188
189
|
declare function fakeLlmProxyEntrypoint(modifier?: Partial<ConnectorInfo> | ((base: ConnectorInfo) => ConnectorInfo)): ConnectorInfo;
|
|
189
190
|
declare function fakeLlmProxyEndpoint(modifier?: Partial<ConnectorInfo> | ((base: ConnectorInfo) => ConnectorInfo)): ConnectorInfo;
|
|
191
|
+
declare function fakeA2aProxyConnector(modifier?: Partial<ConnectorInfo> | ((base: ConnectorInfo) => ConnectorInfo)): ConnectorInfo;
|
|
192
|
+
declare const fakeA2aProxyEntrypoint: typeof fakeA2aProxyConnector;
|
|
193
|
+
declare const fakeA2aProxyEndpoint: typeof fakeA2aProxyConnector;
|
|
190
194
|
|
|
191
195
|
type GioPolicyStudioDetailsPhaseStepHarnessFilters = BaseHarnessFilters;
|
|
192
196
|
declare class GioPolicyStudioDetailsPhaseStepHarness extends ComponentHarness {
|
|
@@ -377,4 +381,4 @@ declare class GioPolicyGroupStudioHarness extends ComponentHarness {
|
|
|
377
381
|
} & StepForm): Promise<void>;
|
|
378
382
|
}
|
|
379
383
|
|
|
380
|
-
export { GioPolicyGroupStudioHarness, GioPolicyStudioHarness, POLICIES_V4_UNREGISTERED_ICON, fakeAllPolicies, fakeBestMatchFlowExecution, fakeChannelFlow, fakeConditionedChannelFlow, fakeConditionedHttpFlow, fakeDefaultFlowExecution, fakeHTTPGetMessageEntrypoint, fakeHTTPPostMessageEntrypoint, fakeHTTPProxyEndpoint, fakeHTTPProxyEntrypoint, fakeHttpFlow, fakeJsonToXmlStep, fakeKafkaMessageEndpoint, fakeKafkaNativeEndpoint, fakeKafkaNativeEntrypoint, fakeLlmFlow, fakeLlmProxyEndpoint, fakeLlmProxyEntrypoint, fakeMCPProxyEndpoint, fakeMCPProxyEntrypoint, fakeMcpFlow, fakeMockMessageEndpoint, fakeNativeFlow, fakePlan, fakeRateLimitStep, fakeSSEMessageEntrypoint, fakeSharedPolicyGroupPolicyStep, fakeTestPolicy, fakeTestPolicyStep, fakeWebhookMessageEntrypoint, fakeWebsocketMessageEntrypoint };
|
|
384
|
+
export { GioPolicyGroupStudioHarness, GioPolicyStudioHarness, POLICIES_V4_UNREGISTERED_ICON, fakeA2aFlow, fakeA2aProxyConnector, fakeA2aProxyEndpoint, fakeA2aProxyEntrypoint, fakeAllPolicies, fakeBestMatchFlowExecution, fakeChannelFlow, fakeConditionedChannelFlow, fakeConditionedHttpFlow, fakeDefaultFlowExecution, fakeHTTPGetMessageEntrypoint, fakeHTTPPostMessageEntrypoint, fakeHTTPProxyEndpoint, fakeHTTPProxyEntrypoint, fakeHttpFlow, fakeJsonToXmlStep, fakeKafkaMessageEndpoint, fakeKafkaNativeEndpoint, fakeKafkaNativeEntrypoint, fakeLlmFlow, fakeLlmProxyEndpoint, fakeLlmProxyEntrypoint, fakeMCPProxyEndpoint, fakeMCPProxyEntrypoint, fakeMcpFlow, fakeMockMessageEndpoint, fakeNativeFlow, fakePlan, fakeRateLimitStep, fakeSSEMessageEntrypoint, fakeSharedPolicyGroupPolicyStep, fakeTestPolicy, fakeTestPolicyStep, fakeWebhookMessageEntrypoint, fakeWebsocketMessageEntrypoint };
|