@gravitee/ui-policy-studio-angular 16.2.5 → 16.3.0-renovate-digests-pin-a67a2bd
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 +3 -2
- package/fesm2022/gravitee-ui-policy-studio-angular-testing.mjs.map +1 -1
- package/fesm2022/gravitee-ui-policy-studio-angular.mjs +26 -36
- package/fesm2022/gravitee-ui-policy-studio-angular.mjs.map +1 -1
- package/index.d.ts +2 -2
- package/package.json +1 -1
- package/testing/index.d.ts +1 -1
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' | '
|
|
125
|
+
type ApiProtocolType = 'A2A_PROXY' | 'HTTP_MESSAGE' | 'HTTP_PROXY' | 'LLM_PROXY' | 'MCP_PROXY' | 'NATIVE_KAFKA';
|
|
126
126
|
|
|
127
127
|
type FlowPhase = 'REQUEST' | 'RESPONSE' | 'INTERACT' | 'CONNECT' | 'PUBLISH' | 'SUBSCRIBE';
|
|
128
128
|
interface Policy {
|
|
@@ -152,7 +152,7 @@ declare const fromPolicyInput: (policy: PolicyInput | Policy) => Policy;
|
|
|
152
152
|
*/
|
|
153
153
|
declare const fromExecutionPhase: (phase: ExecutionPhase | FlowPhase) => FlowPhase;
|
|
154
154
|
|
|
155
|
-
type ApiType = '
|
|
155
|
+
type ApiType = 'A2A_PROXY' | 'LLM_PROXY' | 'MCP_PROXY' | 'MESSAGE' | 'NATIVE' | 'PROXY';
|
|
156
156
|
|
|
157
157
|
type SharedPolicyGroupPolicy = {
|
|
158
158
|
id: string;
|
package/package.json
CHANGED
package/testing/index.d.ts
CHANGED
|
@@ -138,7 +138,7 @@ interface Plan {
|
|
|
138
138
|
|
|
139
139
|
declare function fakePlan(modifier?: Partial<Plan> | ((base: Plan) => Plan)): Plan;
|
|
140
140
|
|
|
141
|
-
type ApiProtocolType = 'HTTP_MESSAGE' | 'HTTP_PROXY' | '
|
|
141
|
+
type ApiProtocolType = 'A2A_PROXY' | 'HTTP_MESSAGE' | 'HTTP_PROXY' | 'LLM_PROXY' | 'MCP_PROXY' | 'NATIVE_KAFKA';
|
|
142
142
|
|
|
143
143
|
type FlowPhase = 'REQUEST' | 'RESPONSE' | 'INTERACT' | 'CONNECT' | 'PUBLISH' | 'SUBSCRIBE';
|
|
144
144
|
interface Policy {
|