screwdriver-data-schema 21.22.1 → 21.22.2

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.
@@ -116,11 +116,15 @@ const SCHEMA_PROVIDER = Joi.object().keys({
116
116
  .optional()
117
117
  .default('BUILD_GENERAL1_SMALL')
118
118
  .description('CodeBuild compute type'),
119
- environment: Joi.string()
119
+ environmentType: Joi.string()
120
120
  .optional()
121
121
  .valid('ARM_CONTAINER', 'LINUX_CONTAINER', 'LINUX_GPU_CONTAINER')
122
122
  .default('LINUX_CONTAINER')
123
- .description('CodeBuild environment type')
123
+ .description('CodeBuild environment type'),
124
+ debugSession: Joi.boolean()
125
+ .optional()
126
+ .default(false)
127
+ .description('Enable debug session inside build container')
124
128
  });
125
129
 
126
130
  module.exports = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "screwdriver-data-schema",
3
- "version": "21.22.1",
3
+ "version": "21.22.2",
4
4
  "description": "Internal Data Schema of Screwdriver",
5
5
  "main": "index.js",
6
6
  "scripts": {