codify-schemas 1.0.17 → 1.0.18

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.
@@ -4,6 +4,6 @@
4
4
  "title": "Config file Schema",
5
5
  "type": "array",
6
6
  "items": {
7
- "$ref": "resource-schema.json"
7
+ "allOf": [{ "$ref": "resource-schema.json" }]
8
8
  }
9
9
  }
package/dist/index.d.ts CHANGED
@@ -5,7 +5,9 @@ declare const ConfigFileSchema: {
5
5
  title: string;
6
6
  type: string;
7
7
  items: {
8
- $ref: string;
8
+ allOf: {
9
+ $ref: string;
10
+ }[];
9
11
  };
10
12
  };
11
13
  };
@@ -141,7 +143,9 @@ declare const PlanRequestDataSchema: {
141
143
  $schema: string;
142
144
  $id: string;
143
145
  title: string;
144
- $ref: string;
146
+ allOf: {
147
+ $ref: string;
148
+ }[];
145
149
  };
146
150
  };
147
151
  declare const PlanResponseDataSchema: {
@@ -209,7 +213,9 @@ declare const ValidateRequestDataSchema: {
209
213
  configs: {
210
214
  type: string;
211
215
  items: {
212
- $ref: string;
216
+ allOf: {
217
+ $ref: string;
218
+ }[];
213
219
  };
214
220
  };
215
221
  };
@@ -2,5 +2,5 @@
2
2
  "$schema": "http://json-schema.org/draft-07/schema",
3
3
  "$id": "https://www.codify.com/plan-request-data-schema.json",
4
4
  "title": "Plan Request Schema Data",
5
- "$ref": "resource-schema.json"
5
+ "allOf": [{ "$ref": "resource-schema.json" }]
6
6
  }
@@ -7,7 +7,7 @@
7
7
  "configs": {
8
8
  "type": "array",
9
9
  "items": {
10
- "$ref": "resource-schema.json"
10
+ "allOf": [{ "$ref": "resource-schema.json" }]
11
11
  }
12
12
  }
13
13
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codify-schemas",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -4,6 +4,6 @@
4
4
  "title": "Config file Schema",
5
5
  "type": "array",
6
6
  "items": {
7
- "$ref": "resource-schema.json"
7
+ "allOf": [ { "$ref": "resource-schema.json" } ]
8
8
  }
9
9
  }
@@ -10,7 +10,7 @@
10
10
  "type": "object",
11
11
  "properties": {
12
12
  "type": {
13
- "$ref": "resource-schema.json#/properties/type"
13
+ "allOf": [ { "$ref": "resource-schema.json#/properties/type" } ]
14
14
  },
15
15
  "dependencies": {
16
16
  "type": "array",
@@ -2,5 +2,5 @@
2
2
  "$schema": "http://json-schema.org/draft-07/schema",
3
3
  "$id": "https://www.codify.com/plan-request-data-schema.json",
4
4
  "title": "Plan Request Schema Data",
5
- "$ref": "resource-schema.json"
5
+ "allOf": [ { "$ref": "resource-schema.json" } ]
6
6
  }
@@ -7,7 +7,7 @@
7
7
  "configs": {
8
8
  "type": "array",
9
9
  "items": {
10
- "$ref": "resource-schema.json"
10
+ "allOf": [ { "$ref": "resource-schema.json" } ]
11
11
  }
12
12
  }
13
13
  },