@tillhub/schemas 6.410.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 CHANGED
@@ -1,3 +1,10 @@
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
+
1
8
  # [6.410.0](https://github.com/tillhub/schemas/compare/v6.409.0...v6.410.0) (2025-11-03)
2
9
 
3
10
 
@@ -1001,7 +1001,12 @@ module.exports = {
1001
1001
  }
1002
1002
  },
1003
1003
  required: ['shop_name']
1004
- }
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
+ })
1005
1010
  }
1006
1011
  }
1007
1012
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.410.0",
3
+ "version": "6.411.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",