@tillhub/schemas 6.407.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 +15 -0
- package/lib/v1/configurations/items/settings.js +103 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
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
|
+
|
|
8
|
+
# [6.408.0](https://github.com/tillhub/schemas/compare/v6.407.0...v6.408.0) (2025-10-30)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **PAYODEV-15411:** add payment link branding schema ([7e4c296](https://github.com/tillhub/schemas/commit/7e4c296))
|
|
14
|
+
* **PAYODEV-15411:** add payment link branding schema ([d376aab](https://github.com/tillhub/schemas/commit/d376aab))
|
|
15
|
+
|
|
1
16
|
# [6.407.0](https://github.com/tillhub/schemas/compare/v6.406.0...v6.407.0) (2025-10-24)
|
|
2
17
|
|
|
3
18
|
|
|
@@ -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
|
}
|