@forge/manifest 11.4.0-next.1 → 11.4.0-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
+ ## 11.4.0-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - eadb4a6: Update manifest definitions
8
+
3
9
  ## 11.4.0-next.1
4
10
 
5
11
  ### Minor Changes
@@ -5039,6 +5039,11 @@
5039
5039
  "maxLength": 255,
5040
5040
  "pattern": "^[a-z0-9\\-]+$"
5041
5041
  },
5042
+ "icon": {
5043
+ "type": "string",
5044
+ "minLength": 1,
5045
+ "maxLength": 255
5046
+ },
5042
5047
  "resource": {
5043
5048
  "type": "string",
5044
5049
  "minLength": 1,
@@ -5187,6 +5192,11 @@
5187
5192
  "maxLength": 255,
5188
5193
  "pattern": "^[a-z0-9\\-]+$"
5189
5194
  },
5195
+ "icon": {
5196
+ "type": "string",
5197
+ "minLength": 1,
5198
+ "maxLength": 255
5199
+ },
5190
5200
  "key": {
5191
5201
  "$ref": "#/definitions/ModuleKeySchema"
5192
5202
  }
@@ -13832,6 +13832,7 @@ export interface Modules {
13832
13832
  | string;
13833
13833
  title__i18n?: string;
13834
13834
  routePrefix: string;
13835
+ icon?: string;
13835
13836
  resource: string;
13836
13837
  resourceUploadId?: string;
13837
13838
  resolver?:
@@ -13861,6 +13862,7 @@ export interface Modules {
13861
13862
  resourceUploadId?: string;
13862
13863
  render: 'native' | 'default';
13863
13864
  routePrefix: string;
13865
+ icon?: string;
13864
13866
  key: ModuleKeySchema;
13865
13867
  }
13866
13868
  ),
@@ -13873,6 +13875,7 @@ export interface Modules {
13873
13875
  | string;
13874
13876
  title__i18n?: string;
13875
13877
  routePrefix: string;
13878
+ icon?: string;
13876
13879
  resource: string;
13877
13880
  resourceUploadId?: string;
13878
13881
  resolver?:
@@ -13902,6 +13905,7 @@ export interface Modules {
13902
13905
  resourceUploadId?: string;
13903
13906
  render: 'native' | 'default';
13904
13907
  routePrefix: string;
13908
+ icon?: string;
13905
13909
  key: ModuleKeySchema;
13906
13910
  }
13907
13911
  )[]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "11.4.0-next.1",
3
+ "version": "11.4.0-next.2",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {