@tillhub/schemas 6.406.0 → 6.408.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,18 @@
1
+ # [6.408.0](https://github.com/tillhub/schemas/compare/v6.407.0...v6.408.0) (2025-10-30)
2
+
3
+
4
+ ### Features
5
+
6
+ * **PAYODEV-15411:** add payment link branding schema ([7e4c296](https://github.com/tillhub/schemas/commit/7e4c296))
7
+ * **PAYODEV-15411:** add payment link branding schema ([d376aab](https://github.com/tillhub/schemas/commit/d376aab))
8
+
9
+ # [6.407.0](https://github.com/tillhub/schemas/compare/v6.406.0...v6.407.0) (2025-10-24)
10
+
11
+
12
+ ### Features
13
+
14
+ * **client_accounts:** feature flags ([8550c57](https://github.com/tillhub/schemas/commit/8550c57))
15
+
1
16
  # [6.406.0](https://github.com/tillhub/schemas/compare/v6.405.0...v6.406.0) (2025-10-20)
2
17
 
3
18
 
@@ -107,5 +107,20 @@ module.exports = {
107
107
  flat_pos: {
108
108
  type: 'boolean',
109
109
  default: false
110
+ },
111
+ gastro_basic: {
112
+ description: 'indicates usage of table managemnt and availability of v1 gastro tables',
113
+ type: 'boolean',
114
+ default: false
115
+ },
116
+ gastro_table_reservations: {
117
+ description: 'enables gastro table reservations and triggers gastro basic and the required migrations to v1 tables',
118
+ type: 'boolean',
119
+ default: false
120
+ },
121
+ gastro_table_reservations_sms_reminders: {
122
+ description: 'enables sms reminders for gastro table reservations',
123
+ type: 'boolean',
124
+ default: false
110
125
  }
111
126
  }
@@ -364,5 +364,13 @@ module.exports = {
364
364
  warehub: require('./items/warehub'),
365
365
  tenant: require('./items/tenant'),
366
366
  onboarding: require('./items/onboarding'),
367
- reports: require('./items/reports')
367
+ reports: require('./items/reports'),
368
+ payment_link_branding: {
369
+ oneOf: [
370
+ {
371
+ type: 'null'
372
+ },
373
+ require('./items/payment_link_branding')
374
+ ]
375
+ }
368
376
  }
@@ -0,0 +1,101 @@
1
+ module.exports = {
2
+ type: 'object',
3
+ properties: {
4
+ shop_name: {
5
+ type: 'string'
6
+ },
7
+ favicon_url: {
8
+ oneOf: [
9
+ { type: 'null' },
10
+ { type: 'string' }
11
+ ]
12
+ },
13
+ brand_color: {
14
+ oneOf: [
15
+ { type: 'null' },
16
+ { type: 'string' }
17
+ ]
18
+ },
19
+ background_color: {
20
+ oneOf: [
21
+ { type: 'null' },
22
+ { type: 'string' }
23
+ ]
24
+ },
25
+ text_color: {
26
+ oneOf: [
27
+ { type: 'null' },
28
+ { type: 'string' }
29
+ ]
30
+ },
31
+ payment_form_background_color: {
32
+ oneOf: [
33
+ { type: 'null' },
34
+ { type: 'string' }
35
+ ]
36
+ },
37
+ basket_background_color: {
38
+ oneOf: [
39
+ { type: 'null' },
40
+ { type: 'string' }
41
+ ]
42
+ },
43
+ link_color: {
44
+ oneOf: [
45
+ { type: 'null' },
46
+ { type: 'string' }
47
+ ]
48
+ },
49
+ font_style: {
50
+ oneOf: [
51
+ { type: 'null' },
52
+ { type: 'string' }
53
+ ]
54
+ },
55
+ form_style: {
56
+ oneOf: [
57
+ { type: 'null' },
58
+ { type: 'string' }
59
+ ]
60
+ },
61
+ shadows: {
62
+ oneOf: [
63
+ { type: 'null' },
64
+ { type: 'boolean' }
65
+ ]
66
+ },
67
+ unzer_logo_in_footer: {
68
+ oneOf: [
69
+ { type: 'null' },
70
+ { type: 'boolean' }
71
+ ]
72
+ },
73
+ shop_logo: {
74
+ oneOf: [
75
+ { type: 'null' },
76
+ {
77
+ type: 'object',
78
+ properties: {
79
+ original: { type: 'string' },
80
+ '1x': { type: 'string' }
81
+ },
82
+ required: ['original']
83
+ }
84
+ ]
85
+ },
86
+ background_image: {
87
+ oneOf: [
88
+ { type: 'null' },
89
+ {
90
+ type: 'object',
91
+ properties: {
92
+ original: { type: 'string' },
93
+ '1x': { type: 'string' }
94
+ },
95
+ required: ['original']
96
+ }
97
+ ]
98
+ }
99
+ },
100
+ required: ['shop_name']
101
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.406.0",
3
+ "version": "6.408.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",