@forge/manifest 13.3.0-next.6 → 13.3.0-next.7

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 13.3.0-next.7
4
+
5
+ ### Patch Changes
6
+
7
+ - 89ccb1e: Update manifest definitions
8
+
3
9
  ## 13.3.0-next.6
4
10
 
5
11
  ### Patch Changes
@@ -31752,9 +31752,19 @@
31752
31752
  "type": "object",
31753
31753
  "additionalProperties": false,
31754
31754
  "required": [
31755
- "jsonRpcTransport"
31755
+ "jsonRpcTransport",
31756
+ "version"
31756
31757
  ],
31757
31758
  "properties": {
31759
+ "version": {
31760
+ "type": "string",
31761
+ "title": "version",
31762
+ "description": "The A2A protocol version this agent implements. Determines the shape of the AgentCard returned by web-triggers and the message format enforced at invocation time. Supported values: '0.3', '1.0'. This field is required. Early EAP apps deployed before this field existed may be exempt via the xls-a2a-legacy-version-exempt feature gate.",
31763
+ "enum": [
31764
+ "0.3",
31765
+ "1.0"
31766
+ ]
31767
+ },
31758
31768
  "jsonRpcTransport": {
31759
31769
  "$ref": "#/definitions/protocolEndpoint",
31760
31770
  "description": "Enables Agent2Agent protocol over JSON-RPC 2.0 transport."
@@ -31848,7 +31858,7 @@
31848
31858
  "description": "The human-readable name of the MCP server.",
31849
31859
  "type": "string",
31850
31860
  "minLength": 1,
31851
- "maxLength": 255
31861
+ "maxLength": 30
31852
31862
  },
31853
31863
  "tools": {
31854
31864
  "description": "A list of actions that will be exposed by the MCP server.",
@@ -31858,7 +31868,7 @@
31858
31868
  "uniqueItems": true,
31859
31869
  "items": {
31860
31870
  "description": "The key of an action extension in your manifest.",
31861
- "maxLength": 255,
31871
+ "maxLength": 64,
31862
31872
  "minLength": 1,
31863
31873
  "pattern": "^[a-zA-Z0-9-._]+$",
31864
31874
  "title": "ActionExtensionKey",
@@ -511,6 +511,10 @@ export type ActionExtensionKey1 = string;
511
511
  * The key for a rovo:skill module in your descriptor / manifest.
512
512
  */
513
513
  export type RovoSkillModuleKey = string;
514
+ /**
515
+ * The A2A protocol version this agent implements. Determines the shape of the AgentCard returned by web-triggers and the message format enforced at invocation time. Supported values: '0.3', '1.0'. This field is required. Early EAP apps deployed before this field existed may be exempt via the xls-a2a-legacy-version-exempt feature gate.
516
+ */
517
+ export type Version = '0.3' | '1.0';
514
518
  /**
515
519
  * The key of the endpoint that should be invoked.
516
520
  */
@@ -26259,6 +26263,7 @@ export interface Modules {
26259
26263
  */
26260
26264
  protocols: {
26261
26265
  agent2Agent: {
26266
+ version: Version;
26262
26267
  /**
26263
26268
  * Enables Agent2Agent protocol over JSON-RPC 2.0 transport.
26264
26269
  */
@@ -26306,6 +26311,7 @@ export interface Modules {
26306
26311
  */
26307
26312
  protocols: {
26308
26313
  agent2Agent: {
26314
+ version: Version;
26309
26315
  /**
26310
26316
  * Enables Agent2Agent protocol over JSON-RPC 2.0 transport.
26311
26317
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "13.3.0-next.6",
3
+ "version": "13.3.0-next.7",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {