@gravitee/ui-policy-studio-angular 17.8.0 → 17.9.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/index.d.ts CHANGED
@@ -122,7 +122,7 @@ interface Plan {
122
122
  flows: Flow[];
123
123
  }
124
124
 
125
- type ApiProtocolType = 'A2A_PROXY' | 'HTTP_MESSAGE' | 'HTTP_PROXY' | 'LLM_PROXY' | 'MCP_PROXY' | 'NATIVE_KAFKA';
125
+ type ApiProtocolType = 'A2A_PROXY' | 'HTTP_MESSAGE' | 'HTTP_PROXY' | 'LLM_PROXY' | 'MCP_PROXY' | 'MCP_STUDIO' | 'NATIVE_KAFKA';
126
126
 
127
127
  type FlowPhase = 'REQUEST' | 'RESPONSE' | 'INTERACT' | 'PUBLISH' | 'SUBSCRIBE' | 'ENTRYPOINT_CONNECT';
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 = 'A2A_PROXY' | 'LLM_PROXY' | 'MCP_PROXY' | 'MESSAGE' | 'NATIVE' | 'PROXY';
155
+ type ApiType = 'A2A_PROXY' | 'LLM_PROXY' | 'MCP_PROXY' | 'MCP_STUDIO' | 'MESSAGE' | 'NATIVE' | 'PROXY';
156
156
 
157
157
  type SharedPolicyGroupPolicy = {
158
158
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravitee/ui-policy-studio-angular",
3
- "version": "17.8.0",
3
+ "version": "17.9.0",
4
4
  "description": "Gravitee.io - UI Policy Studio Angular",
5
5
  "repository": {
6
6
  "type": "git",
@@ -139,7 +139,7 @@ interface Plan {
139
139
 
140
140
  declare function fakePlan(modifier?: Partial<Plan> | ((base: Plan) => Plan)): Plan;
141
141
 
142
- type ApiProtocolType = 'A2A_PROXY' | 'HTTP_MESSAGE' | 'HTTP_PROXY' | 'LLM_PROXY' | 'MCP_PROXY' | 'NATIVE_KAFKA';
142
+ type ApiProtocolType = 'A2A_PROXY' | 'HTTP_MESSAGE' | 'HTTP_PROXY' | 'LLM_PROXY' | 'MCP_PROXY' | 'MCP_STUDIO' | 'NATIVE_KAFKA';
143
143
 
144
144
  type FlowPhase = 'REQUEST' | 'RESPONSE' | 'INTERACT' | 'PUBLISH' | 'SUBSCRIBE' | 'ENTRYPOINT_CONNECT';
145
145
  interface Policy {