@tillhub/schemas 6.409.0 → 6.410.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.410.0](https://github.com/tillhub/schemas/compare/v6.409.0...v6.410.0) (2025-11-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **PAYODEV-15411:** extend payment link branding schema with url fields ([8ac549e](https://github.com/tillhub/schemas/commit/8ac549e))
|
|
7
|
+
|
|
1
8
|
# [6.409.0](https://github.com/tillhub/schemas/compare/v6.408.0...v6.409.0) (2025-10-31)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -944,6 +944,60 @@ module.exports = {
|
|
|
944
944
|
required: ['original']
|
|
945
945
|
}
|
|
946
946
|
]
|
|
947
|
+
},
|
|
948
|
+
terms_and_conditions_url: {
|
|
949
|
+
oneOf: [
|
|
950
|
+
{ type: 'null' },
|
|
951
|
+
{ type: 'string' }
|
|
952
|
+
]
|
|
953
|
+
},
|
|
954
|
+
privacy_policy_url: {
|
|
955
|
+
oneOf: [
|
|
956
|
+
{ type: 'null' },
|
|
957
|
+
{ type: 'string' }
|
|
958
|
+
]
|
|
959
|
+
},
|
|
960
|
+
imprint_url: {
|
|
961
|
+
oneOf: [
|
|
962
|
+
{ type: 'null' },
|
|
963
|
+
{ type: 'string' }
|
|
964
|
+
]
|
|
965
|
+
},
|
|
966
|
+
help_url: {
|
|
967
|
+
oneOf: [
|
|
968
|
+
{ type: 'null' },
|
|
969
|
+
{ type: 'string' }
|
|
970
|
+
]
|
|
971
|
+
},
|
|
972
|
+
contact_url: {
|
|
973
|
+
oneOf: [
|
|
974
|
+
{ type: 'null' },
|
|
975
|
+
{ type: 'string' }
|
|
976
|
+
]
|
|
977
|
+
},
|
|
978
|
+
success_page_url: {
|
|
979
|
+
oneOf: [
|
|
980
|
+
{ type: 'null' },
|
|
981
|
+
{ type: 'string' }
|
|
982
|
+
]
|
|
983
|
+
},
|
|
984
|
+
failure_page_url: {
|
|
985
|
+
oneOf: [
|
|
986
|
+
{ type: 'null' },
|
|
987
|
+
{ type: 'string' }
|
|
988
|
+
]
|
|
989
|
+
},
|
|
990
|
+
pending_page_url: {
|
|
991
|
+
oneOf: [
|
|
992
|
+
{ type: 'null' },
|
|
993
|
+
{ type: 'string' }
|
|
994
|
+
]
|
|
995
|
+
},
|
|
996
|
+
cancel_page_url: {
|
|
997
|
+
oneOf: [
|
|
998
|
+
{ type: 'null' },
|
|
999
|
+
{ type: 'string' }
|
|
1000
|
+
]
|
|
947
1001
|
}
|
|
948
1002
|
},
|
|
949
1003
|
required: ['shop_name']
|