@forge/manifest 9.4.0-next.3 → 9.4.0-next.4
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 +37 -0
- package/out/schema/manifest.d.ts +10326 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1671,6 +1671,43 @@
|
|
|
1671
1671
|
},
|
|
1672
1672
|
"minItems": 1
|
|
1673
1673
|
},
|
|
1674
|
+
"event": {
|
|
1675
|
+
"type": "array",
|
|
1676
|
+
"items": {
|
|
1677
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
1678
|
+
"additionalProperties": false,
|
|
1679
|
+
"properties": {
|
|
1680
|
+
"name": {
|
|
1681
|
+
"type": "string",
|
|
1682
|
+
"description": "The name of the event."
|
|
1683
|
+
},
|
|
1684
|
+
"allowedRecipients": {
|
|
1685
|
+
"type": "array",
|
|
1686
|
+
"uniqueItems": true,
|
|
1687
|
+
"maxItems": 100,
|
|
1688
|
+
"items": {
|
|
1689
|
+
"type": "string"
|
|
1690
|
+
},
|
|
1691
|
+
"description": "The list of apps that can received this event. \nIt can contain either app ARIs (in the following format: `ari:cloud:ecosystem::app/<UUID>`),\nor the special wildcard value `*`, which enables anyone to listen to the event.\nThe empty array means that only your app can receive the event.\n"
|
|
1692
|
+
},
|
|
1693
|
+
"key": {
|
|
1694
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
1695
|
+
}
|
|
1696
|
+
},
|
|
1697
|
+
"required": [
|
|
1698
|
+
"name",
|
|
1699
|
+
"allowedRecipients",
|
|
1700
|
+
"key"
|
|
1701
|
+
],
|
|
1702
|
+
"type": "object",
|
|
1703
|
+
"not": {
|
|
1704
|
+
"required": [
|
|
1705
|
+
"unlicensedAccess"
|
|
1706
|
+
]
|
|
1707
|
+
}
|
|
1708
|
+
},
|
|
1709
|
+
"minItems": 1
|
|
1710
|
+
},
|
|
1674
1711
|
"macro": {
|
|
1675
1712
|
"type": "array",
|
|
1676
1713
|
"items": {
|