@forge/manifest 7.9.0-next.13 → 7.9.0-next.14

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
+ ## 7.9.0-next.14
4
+
5
+ ### Patch Changes
6
+
7
+ - 2920f46: Update manifest definitions
8
+
3
9
  ## 7.9.0-next.13
4
10
 
5
11
  ### Patch Changes
@@ -1697,40 +1697,6 @@
1697
1697
  "type": "string",
1698
1698
  "default": "default"
1699
1699
  },
1700
- "resolver": {
1701
- "anyOf": [
1702
- {
1703
- "additionalProperties": false,
1704
- "type": "object",
1705
- "properties": {
1706
- "function": {
1707
- "type": "string",
1708
- "minLength": 1,
1709
- "maxLength": 255,
1710
- "pattern": "^[a-zA-Z0-9-_]+$"
1711
- }
1712
- },
1713
- "required": [
1714
- "function"
1715
- ]
1716
- },
1717
- {
1718
- "additionalProperties": false,
1719
- "type": "object",
1720
- "properties": {
1721
- "endpoint": {
1722
- "type": "string",
1723
- "minLength": 1,
1724
- "maxLength": 255,
1725
- "pattern": "^[a-zA-Z0-9-_]+$"
1726
- }
1727
- },
1728
- "required": [
1729
- "endpoint"
1730
- ]
1731
- }
1732
- ]
1733
- },
1734
1700
  "viewportSize": {
1735
1701
  "type": "string",
1736
1702
  "minLength": 1,
@@ -1422,13 +1422,6 @@ export interface Modules {
1422
1422
  title__i18n?: string;
1423
1423
  resource: string;
1424
1424
  render?: 'native' | 'default';
1425
- resolver?:
1426
- | {
1427
- function: string;
1428
- }
1429
- | {
1430
- endpoint: string;
1431
- };
1432
1425
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
1433
1426
  };
1434
1427
  data?: {
@@ -1516,13 +1509,6 @@ export interface Modules {
1516
1509
  title__i18n?: string;
1517
1510
  resource: string;
1518
1511
  render?: 'native' | 'default';
1519
- resolver?:
1520
- | {
1521
- function: string;
1522
- }
1523
- | {
1524
- endpoint: string;
1525
- };
1526
1512
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
1527
1513
  };
1528
1514
  data?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "7.9.0-next.13",
3
+ "version": "7.9.0-next.14",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {