@tillhub/schemas 6.245.0 → 6.246.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,15 @@
1
+ # [6.246.0](https://github.com/tillhub/schemas/compare/v6.245.0...v6.246.0) (2023-08-10)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **pricebook:** comma trailing ([53de471](https://github.com/tillhub/schemas/commit/53de471))
7
+
8
+
9
+ ### Features
10
+
11
+ * **pricebook:** Duplicate the pricebook ([#843](https://github.com/tillhub/schemas/issues/843)) ([700e939](https://github.com/tillhub/schemas/commit/700e939))
12
+
1
13
  # [6.245.0](https://github.com/tillhub/schemas/compare/v6.244.0...v6.245.0) (2023-08-09)
2
14
 
3
15
 
@@ -137,6 +137,24 @@ module.exports.prices = {
137
137
  }
138
138
  }
139
139
  },
140
+ copy: {
141
+ request: {
142
+ $id: 'https://schemas.tillhub.com/v1/products.prices.book.copy.request.schema.json',
143
+ $schema: 'http://json-schema.org/draft-07/schema#',
144
+ additionalProperties: false,
145
+ type: 'object',
146
+ required: ['ids'],
147
+ properties: {
148
+ ids: {
149
+ type: 'array',
150
+ items: {
151
+ type: 'string',
152
+ format: 'uuid'
153
+ }
154
+ }
155
+ }
156
+ }
157
+ },
140
158
  entry: {
141
159
  create: {
142
160
  request: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.245.0",
3
+ "version": "6.246.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",