@forge/manifest 10.8.0-next.5-experimental-ab371ba → 10.8.0
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 +8 -1
- package/out/schema/manifest-schema.json +14 -0
- package/out/schema/manifest.d.ts +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
-
## 10.8.0
|
|
3
|
+
## 10.8.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -14,6 +14,13 @@
|
|
|
14
14
|
- 94243f1: Split development and contribution guidelines
|
|
15
15
|
- 0ef937d: Update manifest definitions
|
|
16
16
|
- dcd46a4: Update manifest definitions
|
|
17
|
+
- 8ec0d92: Update manifest definitions
|
|
18
|
+
|
|
19
|
+
## 10.8.0-next.6
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- 8ec0d92: Update manifest definitions
|
|
17
24
|
|
|
18
25
|
## 10.8.0-next.5
|
|
19
26
|
|
|
@@ -4853,6 +4853,12 @@
|
|
|
4853
4853
|
"maxLength": 300,
|
|
4854
4854
|
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
4855
4855
|
},
|
|
4856
|
+
"routePrefix": {
|
|
4857
|
+
"type": "string",
|
|
4858
|
+
"minLength": 1,
|
|
4859
|
+
"maxLength": 255,
|
|
4860
|
+
"pattern": "^[a-z0-9\\-]+$"
|
|
4861
|
+
},
|
|
4856
4862
|
"function": {
|
|
4857
4863
|
"type": "string",
|
|
4858
4864
|
"minLength": 1,
|
|
@@ -4865,6 +4871,7 @@
|
|
|
4865
4871
|
},
|
|
4866
4872
|
"required": [
|
|
4867
4873
|
"function",
|
|
4874
|
+
"routePrefix",
|
|
4868
4875
|
"key"
|
|
4869
4876
|
]
|
|
4870
4877
|
},
|
|
@@ -4955,12 +4962,19 @@
|
|
|
4955
4962
|
"type": "string",
|
|
4956
4963
|
"default": "default"
|
|
4957
4964
|
},
|
|
4965
|
+
"routePrefix": {
|
|
4966
|
+
"type": "string",
|
|
4967
|
+
"minLength": 1,
|
|
4968
|
+
"maxLength": 255,
|
|
4969
|
+
"pattern": "^[a-z0-9\\-]+$"
|
|
4970
|
+
},
|
|
4958
4971
|
"key": {
|
|
4959
4972
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
4960
4973
|
}
|
|
4961
4974
|
},
|
|
4962
4975
|
"required": [
|
|
4963
4976
|
"resource",
|
|
4977
|
+
"routePrefix",
|
|
4964
4978
|
"key"
|
|
4965
4979
|
]
|
|
4966
4980
|
}
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -13551,6 +13551,7 @@ export interface Modules {
|
|
|
13551
13551
|
}
|
|
13552
13552
|
| string;
|
|
13553
13553
|
title__i18n?: string;
|
|
13554
|
+
routePrefix: string;
|
|
13554
13555
|
function: string;
|
|
13555
13556
|
key: ModuleKeySchema;
|
|
13556
13557
|
}
|
|
@@ -13571,6 +13572,7 @@ export interface Modules {
|
|
|
13571
13572
|
resource: string;
|
|
13572
13573
|
resourceUploadId?: string;
|
|
13573
13574
|
render?: 'native' | 'default';
|
|
13575
|
+
routePrefix: string;
|
|
13574
13576
|
key: ModuleKeySchema;
|
|
13575
13577
|
}
|
|
13576
13578
|
),
|
|
@@ -13582,6 +13584,7 @@ export interface Modules {
|
|
|
13582
13584
|
}
|
|
13583
13585
|
| string;
|
|
13584
13586
|
title__i18n?: string;
|
|
13587
|
+
routePrefix: string;
|
|
13585
13588
|
function: string;
|
|
13586
13589
|
key: ModuleKeySchema;
|
|
13587
13590
|
}
|
|
@@ -13602,6 +13605,7 @@ export interface Modules {
|
|
|
13602
13605
|
resource: string;
|
|
13603
13606
|
resourceUploadId?: string;
|
|
13604
13607
|
render?: 'native' | 'default';
|
|
13608
|
+
routePrefix: string;
|
|
13605
13609
|
key: ModuleKeySchema;
|
|
13606
13610
|
}
|
|
13607
13611
|
)[]
|