@tillhub/schemas 6.93.0 → 6.94.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,10 @@
1
+ # [6.94.0](https://github.com/tillhub/schemas/compare/v6.93.0...v6.94.0) (2021-09-27)
2
+
3
+
4
+ ### Features
5
+
6
+ * **transactions:** legacy ([b2b9697](https://github.com/tillhub/schemas/commit/b2b9697))
7
+
1
8
  # [6.93.0](https://github.com/tillhub/schemas/compare/v6.92.0...v6.93.0) (2021-09-27)
2
9
 
3
10
 
@@ -204,6 +204,11 @@ module.exports = {
204
204
  format: 'uuid',
205
205
  description: 'The common identifier of this order process (to be found on all deltas as well -> "order")'
206
206
  },
207
+ number: oneOf({
208
+ type: 'integer',
209
+ example: 34,
210
+ description: 'The counting number of the underlying order'
211
+ }),
207
212
  started_at: {
208
213
  type: 'string',
209
214
  format: 'date-time',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.93.0",
3
+ "version": "6.94.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",