@gravitee/ui-policy-studio-angular 16.1.0-apim-11657-adapt-ui-for-llm-a5b7b44 → 16.1.0-apim-11657-adapt-ui-for-llm-02958f3

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
@@ -8,7 +8,7 @@ declare const toHttpMethod: (value: string) => HttpMethod | undefined;
8
8
 
9
9
  type Operation = 'PUBLISH' | 'SUBSCRIBE';
10
10
  type Operator = 'EQUALS' | 'STARTS_WITH';
11
- type BaseSelectorTypeEnum = 'HTTP' | 'CHANNEL' | 'CONDITION' | 'MCP' | 'LLM';
11
+ type BaseSelectorTypeEnum = 'HTTP' | 'CHANNEL' | 'CONDITION' | 'MCP';
12
12
  interface BaseSelector {
13
13
  /**
14
14
  * Selector type.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravitee/ui-policy-studio-angular",
3
- "version": "16.1.0-apim-11657-adapt-ui-for-llm-a5b7b44",
3
+ "version": "16.1.0-apim-11657-adapt-ui-for-llm-02958f3",
4
4
  "description": "Gravitee.io - UI Policy Studio Angular",
5
5
  "repository": {
6
6
  "type": "git",
@@ -6,7 +6,7 @@ type HttpMethod = (typeof HttpMethods)[number];
6
6
 
7
7
  type Operation = 'PUBLISH' | 'SUBSCRIBE';
8
8
  type Operator = 'EQUALS' | 'STARTS_WITH';
9
- type BaseSelectorTypeEnum = 'HTTP' | 'CHANNEL' | 'CONDITION' | 'MCP' | 'LLM';
9
+ type BaseSelectorTypeEnum = 'HTTP' | 'CHANNEL' | 'CONDITION' | 'MCP';
10
10
  interface BaseSelector {
11
11
  /**
12
12
  * Selector type.
@@ -296,14 +296,14 @@ declare class GioPolicyStudioHarness extends ComponentHarness {
296
296
  * @param groupName Plan name where to add the flow. You also can define "Common flows" to add a flow to this group.
297
297
  * @param flow Flow to add
298
298
  */
299
- addFlow(groupName: string, flow: Flow): Promise<void>;
299
+ addFlow(groupName: string, flow: Flow, apiType: string): Promise<void>;
300
300
  /**
301
301
  * Edit a flow configuration
302
302
  *
303
303
  * @param flowName Flow name to edit
304
304
  * @param flow
305
305
  */
306
- editFlowConfig(flowName: string, flow: Partial<Flow>): Promise<void>;
306
+ editFlowConfig(flowName: string, flow: Partial<Flow>, apiType: string): Promise<void>;
307
307
  /**
308
308
  * Delete a flow
309
309
  *