@tillhub/schemas 6.116.0 → 6.117.0

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 CHANGED
@@ -1,3 +1,12 @@
1
+ # [6.117.0](https://github.com/tillhub/schemas/compare/v6.116.0...v6.117.0) (2022-02-08)
2
+
3
+
4
+ ### Features
5
+
6
+ * **carts:** customers ([abb5a1e](https://github.com/tillhub/schemas/commit/abb5a1e))
7
+ * **carts:** patch ([b370fac](https://github.com/tillhub/schemas/commit/b370fac))
8
+ * **delivery notes:** customer ([b8aedeb](https://github.com/tillhub/schemas/commit/b8aedeb))
9
+
1
10
  # [6.116.0](https://github.com/tillhub/schemas/compare/v6.115.0...v6.116.0) (2022-01-25)
2
11
 
3
12
 
@@ -204,6 +204,17 @@ module.exports = {
204
204
  }
205
205
  ]
206
206
  },
207
+ customer_number: {
208
+ oneOf: [
209
+ {
210
+ type: 'string',
211
+ maxLength: 128
212
+ },
213
+ {
214
+ type: 'null'
215
+ }
216
+ ]
217
+ },
207
218
  name: {
208
219
  oneOf: [
209
220
  {
@@ -196,6 +196,17 @@ module.exports = {
196
196
  }
197
197
  ]
198
198
  },
199
+ customer_number: {
200
+ oneOf: [
201
+ {
202
+ type: 'string',
203
+ maxLength: 128
204
+ },
205
+ {
206
+ type: 'null'
207
+ }
208
+ ]
209
+ },
199
210
  name: {
200
211
  oneOf: [
201
212
  {
@@ -168,6 +168,17 @@ module.exports = {
168
168
  }
169
169
  ]
170
170
  },
171
+ customer_number: {
172
+ oneOf: [
173
+ {
174
+ type: 'string',
175
+ maxLength: 128
176
+ },
177
+ {
178
+ type: 'null'
179
+ }
180
+ ]
181
+ },
171
182
  name: {
172
183
  oneOf: [
173
184
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.116.0",
3
+ "version": "6.117.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",