@tillhub/schemas 6.339.0 → 6.340.1

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,17 @@
1
+ ## [6.340.1](https://github.com/tillhub/schemas/compare/v6.340.0...v6.340.1) (2024-09-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **build:** only trigger ([#1000](https://github.com/tillhub/schemas/issues/1000)) ([5018ebc](https://github.com/tillhub/schemas/commit/5018ebc))
7
+
8
+ # [6.340.0](https://github.com/tillhub/schemas/compare/v6.339.0...v6.340.0) (2024-09-12)
9
+
10
+
11
+ ### Features
12
+
13
+ * **reminder-notification:** add reminder_notification_enabled flag to customers ([#996](https://github.com/tillhub/schemas/issues/996)) ([2dfd154](https://github.com/tillhub/schemas/commit/2dfd154))
14
+
1
15
  # [6.339.0](https://github.com/tillhub/schemas/compare/v6.338.0...v6.339.0) (2024-09-09)
2
16
 
3
17
 
package/README.md CHANGED
@@ -64,3 +64,4 @@ Feel free to edit any files you need and don't forget to add the custom properti
64
64
  ## License
65
65
 
66
66
  Apache-2.0
67
+
@@ -434,5 +434,11 @@ module.exports = {
434
434
  type: 'string',
435
435
  format: 'uuid'
436
436
  })
437
+ },
438
+ reminder_notification_enabled: {
439
+ description: 'The flag indicate whether the customer can receive reminder notification',
440
+ example: 'true',
441
+ type: 'boolean',
442
+ default: true
437
443
  }
438
444
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.339.0",
3
+ "version": "6.340.1",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",