@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 CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ # 0.8.0-next.14 (2026-09-15)
6
+
7
+ # 0.8.0-next.13 (2026-09-11)
8
+
5
9
  # 0.8.0-next.12 (2026-09-10)
6
10
 
7
11
  # 0.8.0-next.11 (2026-09-02)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pc-nexus/manifest",
3
- "version": "0.8.0-next.12",
3
+ "version": "0.8.0-next.14",
4
4
  "description": "JSON Schema for Nexus app manifests",
5
5
  "main": "schema/manifest.schema.json",
6
6
  "scripts": {
@@ -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,