@tillhub/schemas 6.409.0 → 6.411.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 +14 -0
- package/lib/v1/configurations/items/settings.js +60 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [6.411.0](https://github.com/tillhub/schemas/compare/v6.410.0...v6.411.0) (2025-11-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **configurations:** add hide_empty_fields setting to support hiding empty field values ([362c4e8](https://github.com/tillhub/schemas/commit/362c4e8))
|
|
7
|
+
|
|
8
|
+
# [6.410.0](https://github.com/tillhub/schemas/compare/v6.409.0...v6.410.0) (2025-11-03)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **PAYODEV-15411:** extend payment link branding schema with url fields ([8ac549e](https://github.com/tillhub/schemas/commit/8ac549e))
|
|
14
|
+
|
|
1
15
|
# [6.409.0](https://github.com/tillhub/schemas/compare/v6.408.0...v6.409.0) (2025-10-31)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -944,10 +944,69 @@ 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']
|
|
950
|
-
}
|
|
1004
|
+
},
|
|
1005
|
+
hide_empty_fields: oneOf({
|
|
1006
|
+
description: 'When enabled, fields with empty values will be hidden from view on Order and Transaction pages.',
|
|
1007
|
+
type: 'boolean',
|
|
1008
|
+
default: true
|
|
1009
|
+
})
|
|
951
1010
|
}
|
|
952
1011
|
}
|
|
953
1012
|
]
|