screwdriver-data-schema 23.5.0 → 23.5.1

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.
@@ -6,6 +6,7 @@ const Annotations = require('./annotations');
6
6
  const Parameters = require('./parameters');
7
7
  const Template = require('./template');
8
8
  const Regex = require('./regex');
9
+ const WorkflowGraph = require('./workflowGraph');
9
10
 
10
11
  const SCHEMA_CONFIG = Joi.object()
11
12
  .keys({
@@ -15,7 +16,8 @@ const SCHEMA_CONFIG = Joi.object()
15
16
  annotations: Annotations.annotations,
16
17
  cache: BaseSchema.cache,
17
18
  subscribe: BaseSchema.subscribe,
18
- stages: BaseSchema.stages
19
+ stages: BaseSchema.stages,
20
+ workflowGraph: WorkflowGraph.workflowGraph
19
21
  })
20
22
  .unknown(false);
21
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "screwdriver-data-schema",
3
- "version": "23.5.0",
3
+ "version": "23.5.1",
4
4
  "description": "Internal Data Schema of Screwdriver",
5
5
  "main": "index.js",
6
6
  "scripts": {