@pc-nexus/manifest 0.8.0-next.11 → 0.8.0-next.13
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 +36 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -3244,12 +3244,30 @@
|
|
|
3244
3244
|
"pce:pjm:workitem:link:added",
|
|
3245
3245
|
"pce:pjm:workitem:link:removed",
|
|
3246
3246
|
"pce:pjm:configuration:workitemtype:created",
|
|
3247
|
+
"pce:pjm:configuration:workitemtype:deleted",
|
|
3248
|
+
"pce:pjm:configuration:workitemtype:updated",
|
|
3247
3249
|
"pce:pjm:project:created",
|
|
3248
3250
|
"pce:pjm:project:updated",
|
|
3249
3251
|
"pce:pjm:project:deleted",
|
|
3252
|
+
"pce:pjm:sprint:created",
|
|
3253
|
+
"pce:pjm:sprint:updated",
|
|
3254
|
+
"pce:pjm:sprint:deleted",
|
|
3255
|
+
"pce:pjm:release:created",
|
|
3256
|
+
"pce:pjm:release:updated",
|
|
3257
|
+
"pce:pjm:release:deleted",
|
|
3250
3258
|
"pce:pjm:configuration:field:created",
|
|
3259
|
+
"pce:pjm:configuration:field:updated",
|
|
3260
|
+
"pce:pjm:configuration:field:deleted",
|
|
3261
|
+
"pce:pjm:board:created",
|
|
3262
|
+
"pce:pjm:board:updated",
|
|
3263
|
+
"pce:pjm:board:deleted",
|
|
3251
3264
|
"pce:testhub:testcase:created",
|
|
3252
|
-
"pce:testhub:testcase:
|
|
3265
|
+
"pce:testhub:testcase:deleted",
|
|
3266
|
+
"pce:testhub:testcase:comment:created",
|
|
3267
|
+
"pce:testhub:testcase:viewed",
|
|
3268
|
+
"pce:testhub:testcase:updated",
|
|
3269
|
+
"pce:testhub:testcase:link:added",
|
|
3270
|
+
"pce:testhub:testcase:link:removed"
|
|
3253
3271
|
]
|
|
3254
3272
|
},
|
|
3255
3273
|
"minItems": 1
|
|
@@ -3628,6 +3646,23 @@
|
|
|
3628
3646
|
}
|
|
3629
3647
|
},
|
|
3630
3648
|
"additionalProperties": false
|
|
3649
|
+
},
|
|
3650
|
+
"environment": {
|
|
3651
|
+
"type": "object",
|
|
3652
|
+
"required": ["variables"],
|
|
3653
|
+
"properties": {
|
|
3654
|
+
"variables": {
|
|
3655
|
+
"type": "array",
|
|
3656
|
+
"items": {
|
|
3657
|
+
"type": "object",
|
|
3658
|
+
"required": ["key", "default"],
|
|
3659
|
+
"properties": { "key": { "type": "string" }, "default": { "type": "string" }, "description": { "type": "string" } }
|
|
3660
|
+
},
|
|
3661
|
+
"uniqueItemProperty": "key",
|
|
3662
|
+
"minItems": 1
|
|
3663
|
+
}
|
|
3664
|
+
},
|
|
3665
|
+
"additionalProperties": false
|
|
3631
3666
|
}
|
|
3632
3667
|
},
|
|
3633
3668
|
"additionalProperties": false,
|