screwdriver-data-schema 22.4.2 → 22.4.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.
Files changed (2) hide show
  1. package/models/stage.js +3 -1
  2. package/package.json +1 -1
package/models/stage.js CHANGED
@@ -61,7 +61,9 @@ module.exports = {
61
61
  * @property update
62
62
  * @type {Joi}
63
63
  */
64
- update: Joi.object(mutate(MODEL, [], ['jobIds', 'description', 'setup', 'teardown'])).label('Update Stage'),
64
+ update: Joi.object(mutate(MODEL, [], ['jobIds', 'description', 'setup', 'teardown', 'archived'])).label(
65
+ 'Update Stage'
66
+ ),
65
67
 
66
68
  /**
67
69
  * List of fields that determine a unique row
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "screwdriver-data-schema",
3
- "version": "22.4.2",
3
+ "version": "22.4.3",
4
4
  "description": "Internal Data Schema of Screwdriver",
5
5
  "main": "index.js",
6
6
  "scripts": {