@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
|
@@ -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",
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -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';
|