@gravitee/ui-policy-studio-angular 16.1.0-apim-11657-adapt-ui-for-llm-0fe54b1 → 16.1.0-apim-11657-adapt-ui-for-llm-cc5d274
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 +16 -16
- package/fesm2022/gravitee-ui-policy-studio-angular-testing.mjs.map +1 -1
- package/fesm2022/gravitee-ui-policy-studio-angular.mjs +7 -22
- 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 +3 -3
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'
|
|
11
|
+
type BaseSelectorTypeEnum = 'HTTP' | 'CHANNEL' | 'CONDITION' | 'MCP';
|
|
12
12
|
interface BaseSelector {
|
|
13
13
|
/**
|
|
14
14
|
* Selector type.
|
package/package.json
CHANGED
package/testing/index.d.ts
CHANGED
|
@@ -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'
|
|
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
|
|
306
|
+
editFlowConfig(flowName: string, flow: Partial<Flow>, apiType: string): Promise<void>;
|
|
307
307
|
/**
|
|
308
308
|
* Delete a flow
|
|
309
309
|
*
|