@pc-nexus/manifest 0.8.0-next.12 → 0.8.0-next.14
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 +4 -0
- package/package.json +1 -1
- package/schema/manifest.schema.json +22 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -3267,7 +3267,10 @@
|
|
|
3267
3267
|
"pce:testhub:testcase:viewed",
|
|
3268
3268
|
"pce:testhub:testcase:updated",
|
|
3269
3269
|
"pce:testhub:testcase:link:added",
|
|
3270
|
-
"pce:testhub:testcase:link:removed"
|
|
3270
|
+
"pce:testhub:testcase:link:removed",
|
|
3271
|
+
"pce:wiki:space:created",
|
|
3272
|
+
"pce:wiki:space:updated",
|
|
3273
|
+
"pce:wiki:space:deleted"
|
|
3271
3274
|
]
|
|
3272
3275
|
},
|
|
3273
3276
|
"minItems": 1
|
|
@@ -3646,6 +3649,24 @@
|
|
|
3646
3649
|
}
|
|
3647
3650
|
},
|
|
3648
3651
|
"additionalProperties": false
|
|
3652
|
+
},
|
|
3653
|
+
"environment": {
|
|
3654
|
+
"type": "object",
|
|
3655
|
+
"required": ["variables"],
|
|
3656
|
+
"properties": {
|
|
3657
|
+
"variables": {
|
|
3658
|
+
"type": "array",
|
|
3659
|
+
"items": {
|
|
3660
|
+
"type": "object",
|
|
3661
|
+
"required": ["key", "default"],
|
|
3662
|
+
"properties": { "key": { "type": "string" }, "default": { "type": "string" }, "description": { "type": "string" } },
|
|
3663
|
+
"additionalProperties": false
|
|
3664
|
+
},
|
|
3665
|
+
"uniqueItemProperty": "key",
|
|
3666
|
+
"minItems": 1
|
|
3667
|
+
}
|
|
3668
|
+
},
|
|
3669
|
+
"additionalProperties": false
|
|
3649
3670
|
}
|
|
3650
3671
|
},
|
|
3651
3672
|
"additionalProperties": false,
|