@forge/manifest 4.5.3-next.0 → 4.5.3
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 +13 -0
- package/out/schema/manifest-schema.json +22 -11
- package/out/schema/manifest.d.ts +7 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 4.5.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4ac7253: Update manifest definitions
|
|
8
|
+
- 8f01fae: Update manifest definitions
|
|
9
|
+
|
|
10
|
+
## 4.5.3-next.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 8f01fae: Update manifest definitions
|
|
15
|
+
|
|
3
16
|
## 4.5.3-next.0
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -172,6 +172,11 @@
|
|
|
172
172
|
"title": "function",
|
|
173
173
|
"type": "string"
|
|
174
174
|
},
|
|
175
|
+
"filter": {
|
|
176
|
+
"$ref": "#/definitions/ProductEventsFilter",
|
|
177
|
+
"title": "filter",
|
|
178
|
+
"type": "object"
|
|
179
|
+
},
|
|
175
180
|
"key": {
|
|
176
181
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
177
182
|
}
|
|
@@ -12836,6 +12841,21 @@
|
|
|
12836
12841
|
"type": "string"
|
|
12837
12842
|
}
|
|
12838
12843
|
},
|
|
12844
|
+
"ProductEventsFilter": {
|
|
12845
|
+
"additionalProperties": false,
|
|
12846
|
+
"title": "ProductEventsFilter",
|
|
12847
|
+
"type": "object",
|
|
12848
|
+
"properties": {
|
|
12849
|
+
"ignoreSelf": {
|
|
12850
|
+
"title": "ignoreSelf",
|
|
12851
|
+
"description": "The app will ignore events generated by itself",
|
|
12852
|
+
"type": "boolean"
|
|
12853
|
+
}
|
|
12854
|
+
},
|
|
12855
|
+
"required": [
|
|
12856
|
+
"ignoreSelf"
|
|
12857
|
+
]
|
|
12858
|
+
},
|
|
12839
12859
|
"FilteredProductEvents": {
|
|
12840
12860
|
"title": "FilteredProductEvents",
|
|
12841
12861
|
"type": "array",
|
|
@@ -12847,18 +12867,9 @@
|
|
|
12847
12867
|
"type": "string"
|
|
12848
12868
|
},
|
|
12849
12869
|
"filter": {
|
|
12870
|
+
"$ref": "#/definitions/ProductEventsFilter",
|
|
12850
12871
|
"title": "filter",
|
|
12851
|
-
"type": "object"
|
|
12852
|
-
"properties": {
|
|
12853
|
-
"ignoreSelf": {
|
|
12854
|
-
"title": "ignoreSelf",
|
|
12855
|
-
"description": "The app will ignore events generated by itself",
|
|
12856
|
-
"type": "boolean"
|
|
12857
|
-
}
|
|
12858
|
-
},
|
|
12859
|
-
"required": [
|
|
12860
|
-
"ignoreSelf"
|
|
12861
|
-
]
|
|
12872
|
+
"type": "object"
|
|
12862
12873
|
}
|
|
12863
12874
|
},
|
|
12864
12875
|
"required": [
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -274,11 +274,13 @@ export interface Modules {
|
|
|
274
274
|
{
|
|
275
275
|
events: Events;
|
|
276
276
|
function: Function;
|
|
277
|
+
filter?: Filter1;
|
|
277
278
|
key: ModuleKeySchema;
|
|
278
279
|
},
|
|
279
280
|
...{
|
|
280
281
|
events: Events;
|
|
281
282
|
function: Function;
|
|
283
|
+
filter?: Filter1;
|
|
282
284
|
key: ModuleKeySchema;
|
|
283
285
|
}[]
|
|
284
286
|
];
|
|
@@ -5437,7 +5439,11 @@ export interface Modules {
|
|
|
5437
5439
|
[k: string]: unknown;
|
|
5438
5440
|
}
|
|
5439
5441
|
export interface Filter {
|
|
5440
|
-
ignoreSelf
|
|
5442
|
+
ignoreSelf?: IgnoreSelf;
|
|
5443
|
+
[k: string]: unknown;
|
|
5444
|
+
}
|
|
5445
|
+
export interface Filter1 {
|
|
5446
|
+
ignoreSelf?: IgnoreSelf;
|
|
5441
5447
|
[k: string]: unknown;
|
|
5442
5448
|
}
|
|
5443
5449
|
/**
|