@tillhub/schemas 6.408.0 → 6.409.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.409.0](https://github.com/tillhub/schemas/compare/v6.408.0...v6.409.0) (2025-10-31)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **PAYODEV-15411:** add payment link branding schema ([8c242a4](https://github.com/tillhub/schemas/commit/8c242a4))
|
|
7
|
+
|
|
1
8
|
# [6.408.0](https://github.com/tillhub/schemas/compare/v6.407.0...v6.408.0) (2025-10-30)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -364,13 +364,5 @@ 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')
|
|
368
|
-
payment_link_branding: {
|
|
369
|
-
oneOf: [
|
|
370
|
-
{
|
|
371
|
-
type: 'null'
|
|
372
|
-
},
|
|
373
|
-
require('./items/payment_link_branding')
|
|
374
|
-
]
|
|
375
|
-
}
|
|
367
|
+
reports: require('./items/reports')
|
|
376
368
|
}
|
|
@@ -844,6 +844,109 @@ module.exports = {
|
|
|
844
844
|
description: 'Defines if the branch and register selection UI is enabled in the POS settings.',
|
|
845
845
|
type: 'boolean',
|
|
846
846
|
default: false
|
|
847
|
+
},
|
|
848
|
+
payment_link_branding: {
|
|
849
|
+
description: 'Payment link branding settings (used for unzer payment pages)',
|
|
850
|
+
type: 'object',
|
|
851
|
+
additionalProperties: false,
|
|
852
|
+
properties: {
|
|
853
|
+
shop_name: {
|
|
854
|
+
type: 'string'
|
|
855
|
+
},
|
|
856
|
+
favicon_url: {
|
|
857
|
+
oneOf: [
|
|
858
|
+
{ type: 'null' },
|
|
859
|
+
{ type: 'string' }
|
|
860
|
+
]
|
|
861
|
+
},
|
|
862
|
+
brand_color: {
|
|
863
|
+
oneOf: [
|
|
864
|
+
{ type: 'null' },
|
|
865
|
+
{ type: 'string' }
|
|
866
|
+
]
|
|
867
|
+
},
|
|
868
|
+
background_color: {
|
|
869
|
+
oneOf: [
|
|
870
|
+
{ type: 'null' },
|
|
871
|
+
{ type: 'string' }
|
|
872
|
+
]
|
|
873
|
+
},
|
|
874
|
+
text_color: {
|
|
875
|
+
oneOf: [
|
|
876
|
+
{ type: 'null' },
|
|
877
|
+
{ type: 'string' }
|
|
878
|
+
]
|
|
879
|
+
},
|
|
880
|
+
payment_form_background_color: {
|
|
881
|
+
oneOf: [
|
|
882
|
+
{ type: 'null' },
|
|
883
|
+
{ type: 'string' }
|
|
884
|
+
]
|
|
885
|
+
},
|
|
886
|
+
basket_background_color: {
|
|
887
|
+
oneOf: [
|
|
888
|
+
{ type: 'null' },
|
|
889
|
+
{ type: 'string' }
|
|
890
|
+
]
|
|
891
|
+
},
|
|
892
|
+
link_color: {
|
|
893
|
+
oneOf: [
|
|
894
|
+
{ type: 'null' },
|
|
895
|
+
{ type: 'string' }
|
|
896
|
+
]
|
|
897
|
+
},
|
|
898
|
+
font_style: {
|
|
899
|
+
oneOf: [
|
|
900
|
+
{ type: 'null' },
|
|
901
|
+
{ type: 'string' }
|
|
902
|
+
]
|
|
903
|
+
},
|
|
904
|
+
form_style: {
|
|
905
|
+
oneOf: [
|
|
906
|
+
{ type: 'null' },
|
|
907
|
+
{ type: 'string' }
|
|
908
|
+
]
|
|
909
|
+
},
|
|
910
|
+
shadows: {
|
|
911
|
+
oneOf: [
|
|
912
|
+
{ type: 'null' },
|
|
913
|
+
{ type: 'boolean' }
|
|
914
|
+
]
|
|
915
|
+
},
|
|
916
|
+
unzer_logo_in_footer: {
|
|
917
|
+
oneOf: [
|
|
918
|
+
{ type: 'null' },
|
|
919
|
+
{ type: 'boolean' }
|
|
920
|
+
]
|
|
921
|
+
},
|
|
922
|
+
shop_logo: {
|
|
923
|
+
oneOf: [
|
|
924
|
+
{ type: 'null' },
|
|
925
|
+
{
|
|
926
|
+
type: 'object',
|
|
927
|
+
properties: {
|
|
928
|
+
original: { type: 'string' },
|
|
929
|
+
'1x': { type: 'string' }
|
|
930
|
+
},
|
|
931
|
+
required: ['original']
|
|
932
|
+
}
|
|
933
|
+
]
|
|
934
|
+
},
|
|
935
|
+
background_image: {
|
|
936
|
+
oneOf: [
|
|
937
|
+
{ type: 'null' },
|
|
938
|
+
{
|
|
939
|
+
type: 'object',
|
|
940
|
+
properties: {
|
|
941
|
+
original: { type: 'string' },
|
|
942
|
+
'1x': { type: 'string' }
|
|
943
|
+
},
|
|
944
|
+
required: ['original']
|
|
945
|
+
}
|
|
946
|
+
]
|
|
947
|
+
}
|
|
948
|
+
},
|
|
949
|
+
required: ['shop_name']
|
|
847
950
|
}
|
|
848
951
|
}
|
|
849
952
|
}
|
package/package.json
CHANGED
|
@@ -1,101 +0,0 @@
|
|
|
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
|
-
}
|