@tillhub/schemas 6.300.0 → 6.301.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.301.0](https://github.com/tillhub/schemas/compare/v6.300.0...v6.301.0) (2024-04-11)
2
+
3
+
4
+ ### Features
5
+
6
+ * **configurations:** add map address field ([#930](https://github.com/tillhub/schemas/issues/930)) ([a4532a3](https://github.com/tillhub/schemas/commit/a4532a3))
7
+
1
8
  # [6.300.0](https://github.com/tillhub/schemas/compare/v6.299.0...v6.300.0) (2024-04-11)
2
9
 
3
10
 
@@ -368,6 +368,19 @@ module.exports = {
368
368
  type: 'null'
369
369
  }
370
370
  ]
371
+ },
372
+ reservations_google_maps_address: {
373
+ description: 'The location of the branch on Google Maps',
374
+ example: 'https://maps.app.goo.gl/tpF7EMsEC7Wy5hmd6',
375
+ pattern: '^https:\\/\\/maps\\.app\\.goo\\.gl\\/[A-Za-z]*$',
376
+ oneOf: [
377
+ {
378
+ type: 'string'
379
+ },
380
+ {
381
+ type: 'null'
382
+ }
383
+ ]
371
384
  }
372
385
  },
373
386
  required: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.300.0",
3
+ "version": "6.301.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",