@tillhub/schemas 6.407.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,11 @@
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
+
1
9
  # [6.407.0](https://github.com/tillhub/schemas/compare/v6.406.0...v6.407.0) (2025-10-24)
2
10
 
3
11
 
@@ -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.407.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",