@gravitee/ui-policy-studio-angular 16.1.0 → 16.2.0-renovate-angular-875b892

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/index.d.ts CHANGED
@@ -122,7 +122,7 @@ interface Plan {
122
122
  flows: Flow[];
123
123
  }
124
124
 
125
- type ApiProtocolType = 'HTTP_MESSAGE' | 'HTTP_PROXY' | 'HTTP_MCP_PROXY' | 'NATIVE_KAFKA';
125
+ type ApiProtocolType = 'HTTP_MESSAGE' | 'HTTP_PROXY' | 'HTTP_MCP_PROXY' | 'HTTP_LLM_PROXY' | 'NATIVE_KAFKA';
126
126
 
127
127
  type FlowPhase = 'REQUEST' | 'RESPONSE' | 'INTERACT' | 'CONNECT' | 'PUBLISH' | 'SUBSCRIBE';
128
128
  interface Policy {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravitee/ui-policy-studio-angular",
3
- "version": "16.1.0",
3
+ "version": "16.2.0-renovate-angular-875b892",
4
4
  "description": "Gravitee.io - UI Policy Studio Angular",
5
5
  "repository": {
6
6
  "type": "git",
@@ -108,6 +108,7 @@ declare function fakeHttpFlow(modifier?: Partial<Flow> | ((baseApi: Flow) => Flo
108
108
  declare function fakeConditionedHttpFlow(modifier?: Partial<Flow> | ((baseApi: Flow) => Flow)): Flow;
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
+ declare function fakeLlmFlow(modifier?: Partial<Flow> | ((baseApi: Flow) => Flow)): Flow;
111
112
 
112
113
  /**
113
114
  * API's flow mode.
@@ -137,7 +138,7 @@ interface Plan {
137
138
 
138
139
  declare function fakePlan(modifier?: Partial<Plan> | ((base: Plan) => Plan)): Plan;
139
140
 
140
- type ApiProtocolType = 'HTTP_MESSAGE' | 'HTTP_PROXY' | 'HTTP_MCP_PROXY' | 'NATIVE_KAFKA';
141
+ type ApiProtocolType = 'HTTP_MESSAGE' | 'HTTP_PROXY' | 'HTTP_MCP_PROXY' | 'HTTP_LLM_PROXY' | 'NATIVE_KAFKA';
141
142
 
142
143
  type FlowPhase = 'REQUEST' | 'RESPONSE' | 'INTERACT' | 'CONNECT' | 'PUBLISH' | 'SUBSCRIBE';
143
144
  interface Policy {
@@ -184,6 +185,8 @@ declare function fakeKafkaNativeEntrypoint(modifier?: Partial<ConnectorInfo> | (
184
185
  declare function fakeKafkaNativeEndpoint(modifier?: Partial<ConnectorInfo> | ((base: ConnectorInfo) => ConnectorInfo)): ConnectorInfo;
185
186
  declare function fakeMCPProxyEntrypoint(modifier?: Partial<ConnectorInfo> | ((base: ConnectorInfo) => ConnectorInfo)): ConnectorInfo;
186
187
  declare function fakeMCPProxyEndpoint(modifier?: Partial<ConnectorInfo> | ((base: ConnectorInfo) => ConnectorInfo)): ConnectorInfo;
188
+ declare function fakeLlmProxyEntrypoint(modifier?: Partial<ConnectorInfo> | ((base: ConnectorInfo) => ConnectorInfo)): ConnectorInfo;
189
+ declare function fakeLlmProxyEndpoint(modifier?: Partial<ConnectorInfo> | ((base: ConnectorInfo) => ConnectorInfo)): ConnectorInfo;
187
190
 
188
191
  type GioPolicyStudioDetailsPhaseStepHarnessFilters = BaseHarnessFilters;
189
192
  declare class GioPolicyStudioDetailsPhaseStepHarness extends ComponentHarness {
@@ -374,4 +377,4 @@ declare class GioPolicyGroupStudioHarness extends ComponentHarness {
374
377
  } & StepForm): Promise<void>;
375
378
  }
376
379
 
377
- 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 };
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 };