@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 +6 -0
- package/out/schema/manifest-schema.json +10 -0
- package/out/schema/manifest.d.ts +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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
|
}
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -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
|
)[]
|