@forge/manifest 12.8.1-next.1 → 12.8.1-next.2

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
+ ## 12.8.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - b7b1f36: Update manifest definitions
8
+
3
9
  ## 12.8.1-next.1
4
10
 
5
11
  ### Patch Changes
@@ -2456,6 +2456,12 @@
2456
2456
  "maxLength": 47,
2457
2457
  "pattern": "^[a-zA-Z0-9_\\-]{1,23}(/[a-zA-Z0-9_\\-]{1,23})?$"
2458
2458
  },
2459
+ "resolvedResourceEntry": {
2460
+ "type": "string",
2461
+ "minLength": 1,
2462
+ "maxLength": 64,
2463
+ "pattern": "^[a-zA-Z0-9._-]+$"
2464
+ },
2459
2465
  "render": {
2460
2466
  "enum": [
2461
2467
  "native",
@@ -12598,6 +12598,7 @@ export interface Modules {
12598
12598
  | string;
12599
12599
  title__i18n?: string;
12600
12600
  resource: string;
12601
+ resolvedResourceEntry?: string;
12601
12602
  render?: 'native' | 'default';
12602
12603
  renderRuntimeType?: 'webworker' | 'iframe';
12603
12604
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max' | 'fullscreen';
@@ -12731,6 +12732,7 @@ export interface Modules {
12731
12732
  | string;
12732
12733
  title__i18n?: string;
12733
12734
  resource: string;
12735
+ resolvedResourceEntry?: string;
12734
12736
  render?: 'native' | 'default';
12735
12737
  renderRuntimeType?: 'webworker' | 'iframe';
12736
12738
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max' | 'fullscreen';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "12.8.1-next.1",
3
+ "version": "12.8.1-next.2",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {