@forge/manifest 9.2.0-next.1 → 9.2.0-next.2-experimental-93876a6
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 +17 -0
- package/out/schema/manifest-schema.json +12 -3
- package/out/schema/manifest.d.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 9.2.0-next.2-experimental-93876a6
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 6c0dcee: Added manifest support for container health objects
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 298487b: Update manifest definitions
|
|
12
|
+
- 615d023: Update manifest definitions
|
|
13
|
+
|
|
14
|
+
## 9.2.0-next.2
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 298487b: Update manifest definitions
|
|
19
|
+
|
|
3
20
|
## 9.2.0-next.1
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -669,6 +669,11 @@
|
|
|
669
669
|
"method"
|
|
670
670
|
]
|
|
671
671
|
},
|
|
672
|
+
"crossVersion": {
|
|
673
|
+
"title": "crossVersion",
|
|
674
|
+
"description": "Enables consumption of events originating from previous app versions.",
|
|
675
|
+
"type": "boolean"
|
|
676
|
+
},
|
|
672
677
|
"key": {
|
|
673
678
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
674
679
|
}
|
|
@@ -27199,17 +27204,21 @@
|
|
|
27199
27204
|
"properties": {
|
|
27200
27205
|
"type": {
|
|
27201
27206
|
"type": "string",
|
|
27202
|
-
"enum": [
|
|
27207
|
+
"enum": [
|
|
27208
|
+
"http"
|
|
27209
|
+
]
|
|
27203
27210
|
},
|
|
27204
27211
|
"route": {
|
|
27205
27212
|
"type": "object",
|
|
27206
|
-
"required": [
|
|
27213
|
+
"required": [
|
|
27214
|
+
"path"
|
|
27215
|
+
],
|
|
27207
27216
|
"additionalProperties": false,
|
|
27208
27217
|
"properties": {
|
|
27209
27218
|
"path": {
|
|
27210
27219
|
"type": "string",
|
|
27211
27220
|
"description": "The path to the health check endpoint",
|
|
27212
|
-
"pattern": "^((
|
|
27221
|
+
"pattern": "^((/[a-zA-Z0-9-_]+)+|/)$"
|
|
27213
27222
|
}
|
|
27214
27223
|
}
|
|
27215
27224
|
}
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -163,6 +163,10 @@ export type ResponseOptions = {
|
|
|
163
163
|
[k: string]: unknown;
|
|
164
164
|
};
|
|
165
165
|
export type Queue = string;
|
|
166
|
+
/**
|
|
167
|
+
* Enables consumption of events originating from previous app versions.
|
|
168
|
+
*/
|
|
169
|
+
export type CrossVersion = boolean;
|
|
166
170
|
export type Foo = string;
|
|
167
171
|
/**
|
|
168
172
|
* The key of the function that should be invoked for this scheduledTrigger.
|
|
@@ -1035,6 +1039,7 @@ export interface Modules {
|
|
|
1035
1039
|
function: string;
|
|
1036
1040
|
method: string;
|
|
1037
1041
|
};
|
|
1042
|
+
crossVersion?: CrossVersion;
|
|
1038
1043
|
key: ModuleKeySchema;
|
|
1039
1044
|
},
|
|
1040
1045
|
...{
|
|
@@ -1043,6 +1048,7 @@ export interface Modules {
|
|
|
1043
1048
|
function: string;
|
|
1044
1049
|
method: string;
|
|
1045
1050
|
};
|
|
1051
|
+
crossVersion?: CrossVersion;
|
|
1046
1052
|
key: ModuleKeySchema;
|
|
1047
1053
|
}[]
|
|
1048
1054
|
];
|