@forge/manifest 13.5.0-next.7 → 13.5.0-next.8

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.5.0-next.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 3a75c6a: Update manifest definitions
8
+
3
9
  ## 13.5.0-next.7
4
10
 
5
11
  ### Minor Changes
@@ -32062,7 +32062,8 @@
32062
32062
  "items": {
32063
32063
  "type": "string",
32064
32064
  "enum": [
32065
- "jira"
32065
+ "jira",
32066
+ "confluence"
32066
32067
  ]
32067
32068
  }
32068
32069
  },
@@ -26545,7 +26545,7 @@ export interface Modules {
26545
26545
  /**
26546
26546
  * Declares which Atlassian products the agent is designed to operate within.
26547
26547
  */
26548
- productContexts: ['jira', ...'jira'[]];
26548
+ productContexts: ['jira' | 'confluence', ...('jira' | 'confluence')[]];
26549
26549
  /**
26550
26550
  * Defines how your agent communicates with other agents and systems. It specifies the protocols and transport mechanisms available for interactions with your remote agent.
26551
26551
  */
@@ -26593,7 +26593,7 @@ export interface Modules {
26593
26593
  /**
26594
26594
  * Declares which Atlassian products the agent is designed to operate within.
26595
26595
  */
26596
- productContexts: ['jira', ...'jira'[]];
26596
+ productContexts: ['jira' | 'confluence', ...('jira' | 'confluence')[]];
26597
26597
  /**
26598
26598
  * Defines how your agent communicates with other agents and systems. It specifies the protocols and transport mechanisms available for interactions with your remote agent.
26599
26599
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "13.5.0-next.7",
3
+ "version": "13.5.0-next.8",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {