@forge/manifest 8.4.1-experimental-147ff14 → 8.4.1-next.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/CHANGELOG.md CHANGED
@@ -1,24 +1,5 @@
1
1
  # @forge/manifest
2
2
 
3
- ## 8.4.1-experimental-147ff14
4
-
5
- ### Patch Changes
6
-
7
- - f93c4d3: Update manifest definitions
8
-
9
- ## 8.4.1
10
-
11
- ### Patch Changes
12
-
13
- - 19c93e7: Update application manifest to support defining a primary product for XPA support
14
- - 1815689: Update manifest definitions
15
-
16
- ## 8.4.1-next.1
17
-
18
- ### Patch Changes
19
-
20
- - 1815689: Update manifest definitions
21
-
22
3
  ## 8.4.1-next.0
23
4
 
24
5
  ### Patch Changes
@@ -46,11 +46,7 @@
46
46
  },
47
47
  "primaryProduct": {
48
48
  "type": "string",
49
- "enum": [
50
- "confluence",
51
- "jira",
52
- "compass"
53
- ],
49
+ "enum": ["confluence", "jira", "compass"],
54
50
  "title": "primaryProduct",
55
51
  "description": "The primary product for cross-product functionality. If not set, app is not a cross-product app."
56
52
  },
@@ -46,11 +46,7 @@
46
46
  },
47
47
  "primaryProduct": {
48
48
  "type": "string",
49
- "enum": [
50
- "confluence",
51
- "jira",
52
- "compass"
53
- ],
49
+ "enum": ["confluence", "jira", "compass"],
54
50
  "title": "primaryProduct",
55
51
  "description": "The primary product for cross-product functionality. If not set, app is not a cross-product app."
56
52
  },
@@ -13147,40 +13143,6 @@
13147
13143
  }
13148
13144
  ]
13149
13145
  },
13150
- "resolver": {
13151
- "anyOf": [
13152
- {
13153
- "additionalProperties": false,
13154
- "type": "object",
13155
- "properties": {
13156
- "function": {
13157
- "type": "string",
13158
- "minLength": 1,
13159
- "maxLength": 255,
13160
- "pattern": "^[a-zA-Z0-9-_]+$"
13161
- }
13162
- },
13163
- "required": [
13164
- "function"
13165
- ]
13166
- },
13167
- {
13168
- "additionalProperties": false,
13169
- "type": "object",
13170
- "properties": {
13171
- "endpoint": {
13172
- "type": "string",
13173
- "minLength": 1,
13174
- "maxLength": 255,
13175
- "pattern": "^[a-zA-Z0-9-_]+$"
13176
- }
13177
- },
13178
- "required": [
13179
- "endpoint"
13180
- ]
13181
- }
13182
- ]
13183
- },
13184
13146
  "resourceUploadId": {
13185
13147
  "type": "string",
13186
13148
  "minLength": 1,
@@ -8533,13 +8533,6 @@ export interface Modules {
8533
8533
  render?: 'default' | 'native';
8534
8534
  [k: string]: unknown;
8535
8535
  };
8536
- resolver?:
8537
- | {
8538
- function: string;
8539
- }
8540
- | {
8541
- endpoint: string;
8542
- };
8543
8536
  resourceUploadId?: string;
8544
8537
  key: ModuleKeySchema;
8545
8538
  },
@@ -8563,13 +8556,6 @@ export interface Modules {
8563
8556
  render?: 'default' | 'native';
8564
8557
  [k: string]: unknown;
8565
8558
  };
8566
- resolver?:
8567
- | {
8568
- function: string;
8569
- }
8570
- | {
8571
- endpoint: string;
8572
- };
8573
8559
  resourceUploadId?: string;
8574
8560
  key: ModuleKeySchema;
8575
8561
  }[]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "8.4.1-experimental-147ff14",
3
+ "version": "8.4.1-next.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {