@forge/manifest 12.8.0-next.7-experimental-2e302e1 → 12.8.0-next.9
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 +7 -17
- package/out/schema/manifest-schema.json +56 -0
- package/out/schema/manifest.d.ts +16 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,26 +1,16 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
-
## 12.8.0-next.
|
|
3
|
+
## 12.8.0-next.9
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
- cf7000f: rovo:skill validation
|
|
9
|
-
- d660fb0: Update action validation
|
|
10
|
-
- e7b0684: support scaling containers to zero
|
|
11
|
-
- 8d90f4f: Add entry map support to hosted resources schema and enhance validation
|
|
12
|
-
- f80e7b3: Added first-class rovo:skill support to the forge-manifest package
|
|
7
|
+
- e5b5031: Update manifest definitions
|
|
13
8
|
|
|
14
|
-
|
|
9
|
+
## 12.8.0-next.8
|
|
15
10
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
-
|
|
19
|
-
- ef0434d: Added support for multi-entry resources in UI Kit applications, enabling developers to define multiple entry points within a single resource.
|
|
20
|
-
- 55991a3: Update manifest definitions
|
|
21
|
-
- 2e44a71: Update manifest definitions
|
|
22
|
-
- c775d3d: Update manifest definitions
|
|
23
|
-
- c99451e: Update manifest definitions
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- bf76c3c: allow overrides for services
|
|
24
14
|
|
|
25
15
|
## 12.8.0-next.7
|
|
26
16
|
|
|
@@ -33099,6 +33099,58 @@
|
|
|
33099
33099
|
}
|
|
33100
33100
|
}
|
|
33101
33101
|
},
|
|
33102
|
+
"ManifestOverridesSchema": {
|
|
33103
|
+
"type": "array",
|
|
33104
|
+
"items": {
|
|
33105
|
+
"type": "object",
|
|
33106
|
+
"additionalProperties": false,
|
|
33107
|
+
"required": [
|
|
33108
|
+
"applyTo",
|
|
33109
|
+
"value"
|
|
33110
|
+
],
|
|
33111
|
+
"properties": {
|
|
33112
|
+
"applyTo": {
|
|
33113
|
+
"type": "object",
|
|
33114
|
+
"additionalProperties": false,
|
|
33115
|
+
"minProperties": 1,
|
|
33116
|
+
"properties": {
|
|
33117
|
+
"environmentTypes": {
|
|
33118
|
+
"type": "array",
|
|
33119
|
+
"minItems": 1,
|
|
33120
|
+
"items": {
|
|
33121
|
+
"type": "string",
|
|
33122
|
+
"enum": [
|
|
33123
|
+
"DEVELOPMENT",
|
|
33124
|
+
"STAGING",
|
|
33125
|
+
"PRODUCTION"
|
|
33126
|
+
]
|
|
33127
|
+
}
|
|
33128
|
+
},
|
|
33129
|
+
"shards": {
|
|
33130
|
+
"type": "array",
|
|
33131
|
+
"minItems": 1,
|
|
33132
|
+
"items": {
|
|
33133
|
+
"type": "string",
|
|
33134
|
+
"maxLength": 32,
|
|
33135
|
+
"pattern": "^[a-zA-Z0-9_:-]+$"
|
|
33136
|
+
}
|
|
33137
|
+
}
|
|
33138
|
+
}
|
|
33139
|
+
},
|
|
33140
|
+
"value": {
|
|
33141
|
+
"type": "object",
|
|
33142
|
+
"additionalProperties": false,
|
|
33143
|
+
"minProperties": 1,
|
|
33144
|
+
"properties": {
|
|
33145
|
+
"services": {
|
|
33146
|
+
"$ref": "#/definitions/ServicesSchema",
|
|
33147
|
+
"title": "OverriddenServices"
|
|
33148
|
+
}
|
|
33149
|
+
}
|
|
33150
|
+
}
|
|
33151
|
+
}
|
|
33152
|
+
}
|
|
33153
|
+
},
|
|
33102
33154
|
"OAuth2ScopeName": {
|
|
33103
33155
|
"type": "string",
|
|
33104
33156
|
"pattern": "^[^\\s]+$"
|
|
@@ -36210,6 +36262,10 @@
|
|
|
36210
36262
|
"services": {
|
|
36211
36263
|
"$ref": "#/definitions/ServicesSchema",
|
|
36212
36264
|
"title": "services"
|
|
36265
|
+
},
|
|
36266
|
+
"overrides": {
|
|
36267
|
+
"$ref": "#/definitions/ManifestOverridesSchema",
|
|
36268
|
+
"title": "ManifestOverrides"
|
|
36213
36269
|
}
|
|
36214
36270
|
},
|
|
36215
36271
|
"required": [
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -802,6 +802,21 @@ export type Services = {
|
|
|
802
802
|
scaling?: Scaling;
|
|
803
803
|
tunnel?: ServiceTunnelConfig;
|
|
804
804
|
}[];
|
|
805
|
+
export type OverriddenServices = {
|
|
806
|
+
key: string;
|
|
807
|
+
containers: Containers;
|
|
808
|
+
scaling?: Scaling;
|
|
809
|
+
tunnel?: ServiceTunnelConfig;
|
|
810
|
+
}[];
|
|
811
|
+
export type ManifestOverrides = {
|
|
812
|
+
applyTo: {
|
|
813
|
+
environmentTypes?: ['DEVELOPMENT' | 'STAGING' | 'PRODUCTION', ...('DEVELOPMENT' | 'STAGING' | 'PRODUCTION')[]];
|
|
814
|
+
shards?: [string, ...string[]];
|
|
815
|
+
};
|
|
816
|
+
value: {
|
|
817
|
+
services?: OverriddenServices;
|
|
818
|
+
};
|
|
819
|
+
}[];
|
|
805
820
|
|
|
806
821
|
export interface ManifestSchema {
|
|
807
822
|
app: App;
|
|
@@ -814,6 +829,7 @@ export interface ManifestSchema {
|
|
|
814
829
|
environment?: Environment;
|
|
815
830
|
translations?: Translations;
|
|
816
831
|
services?: Services;
|
|
832
|
+
overrides?: ManifestOverrides;
|
|
817
833
|
}
|
|
818
834
|
export interface App {
|
|
819
835
|
description?: Description;
|