@tillhub/schemas 6.105.0 → 6.106.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,16 @@
1
+ # [6.106.0](https://github.com/tillhub/schemas/compare/v6.105.0...v6.106.0) (2021-12-13)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **transactions:** items ([876dc02](https://github.com/tillhub/schemas/commit/876dc02))
7
+
8
+
9
+ ### Features
10
+
11
+ * **transactions:** legacy ([eb5ae77](https://github.com/tillhub/schemas/commit/eb5ae77))
12
+ * **transactions:** legacy ([910471b](https://github.com/tillhub/schemas/commit/910471b))
13
+
1
14
  # [6.105.0](https://github.com/tillhub/schemas/compare/v6.104.0...v6.105.0) (2021-12-13)
2
15
 
3
16
 
@@ -384,7 +384,8 @@ const internalDiscounts = {
384
384
  'sconto',
385
385
  'item',
386
386
  'promotion',
387
- 'voucher'
387
+ 'voucher',
388
+ 'product_voucher'
388
389
  ]
389
390
  },
390
391
  {
@@ -88,7 +88,8 @@ module.exports = {
88
88
  'sconto',
89
89
  'item',
90
90
  'promotion',
91
- 'voucher'
91
+ 'voucher',
92
+ 'product_voucher'
92
93
  ]
93
94
  }),
94
95
  name: {
@@ -132,7 +133,9 @@ module.exports = {
132
133
  'item',
133
134
  'customer',
134
135
  'promotion',
135
- 'sconto'
136
+ 'sconto',
137
+ 'voucher',
138
+ 'product_voucher'
136
139
  ]
137
140
  },
138
141
  {
@@ -123,6 +123,10 @@ module.exports = {
123
123
  maxLength: 2048,
124
124
  description: 'Messages from voucher processing.'
125
125
  },
126
+ creation: oneOf({
127
+ type: 'object',
128
+ description: 'Client specified container to store created abocards and/or vouchers.'
129
+ }),
126
130
  type: {
127
131
  type: 'string',
128
132
  description: 'Mainly legacy support for Fleurop flows.',
@@ -136,7 +140,9 @@ module.exports = {
136
140
  'tillhub_create', // formerly 6
137
141
  'tillhub_recharge', // formerly 7
138
142
  'tillhub_reedeem', // formerly 8
139
- 'tillhub_percentage' // formerly 9
143
+ 'tillhub_percentage', // formerly 9
144
+ 'tillhub_product', // ...
145
+ 'tillhub_abocard_sell' // ...
140
146
  ]
141
147
  },
142
148
  status: {
@@ -285,7 +285,6 @@ module.exports = {
285
285
  })
286
286
  },
287
287
  discounts: {
288
- deprecated: true,
289
288
  ...oneOf({
290
289
  type: 'array',
291
290
  items: {
@@ -306,7 +305,8 @@ module.exports = {
306
305
  'sconto', // originated from rounding currencies that do not use a 0.01 physical unit, e.g. CHF
307
306
  'item', // discounts that can only be used per item
308
307
  'promotion', // originated from applying the outcome of a promotion
309
- 'voucher' // originated from applying a percentage voucher
308
+ 'voucher', // originated from applying a percentage voucher
309
+ 'product_voucher' // originated from applying a voucher bound to a product
310
310
  ],
311
311
  description: 'The group type of discount (type was taken)'
312
312
  },
@@ -410,6 +410,8 @@ module.exports = {
410
410
  'voucher_is_locked', // If is_voucher, indicates the locked state within the API
411
411
  'voucher_message', // If is_voucher, collected messages from voucher processing API calls
412
412
  'voucher_title', // If is_voucher, a currently not used custom title
413
+ 'voucher_linked_product', // If is_voucher and of type product, the id of the affected product
414
+ 'voucher_creation', // If is_voucher and it involves creation of vocuhers or abocards - a stringified JSON of the relevant contents
413
415
  /*
414
416
  the voucher_type enum:
415
417
  [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.105.0",
3
+ "version": "6.106.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",