@forge/manifest 8.4.1 → 8.4.2-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,5 +1,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 8.4.2-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - f93c4d3: Update manifest definitions
8
+
3
9
  ## 8.4.1
4
10
 
5
11
  ### Patch Changes
@@ -13147,6 +13147,40 @@
13147
13147
  }
13148
13148
  ]
13149
13149
  },
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
+ },
13150
13184
  "resourceUploadId": {
13151
13185
  "type": "string",
13152
13186
  "minLength": 1,
@@ -8533,6 +8533,13 @@ 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
+ };
8536
8543
  resourceUploadId?: string;
8537
8544
  key: ModuleKeySchema;
8538
8545
  },
@@ -8556,6 +8563,13 @@ export interface Modules {
8556
8563
  render?: 'default' | 'native';
8557
8564
  [k: string]: unknown;
8558
8565
  };
8566
+ resolver?:
8567
+ | {
8568
+ function: string;
8569
+ }
8570
+ | {
8571
+ endpoint: string;
8572
+ };
8559
8573
  resourceUploadId?: string;
8560
8574
  key: ModuleKeySchema;
8561
8575
  }[]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "8.4.1",
3
+ "version": "8.4.2-next.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {