@tillhub/schemas 6.394.1 → 6.395.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.395.0](https://github.com/tillhub/schemas/compare/v6.394.1...v6.395.0) (2025-07-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **configurations:** gastro ([e578bc7](https://github.com/tillhub/schemas/commit/e578bc7))
|
|
7
|
+
|
|
1
8
|
## [6.394.1](https://github.com/tillhub/schemas/compare/v6.394.0...v6.394.1) (2025-06-24)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -83,6 +83,17 @@ module.exports = {
|
|
|
83
83
|
default: 25
|
|
84
84
|
})
|
|
85
85
|
}
|
|
86
|
+
}),
|
|
87
|
+
history: oneOf({
|
|
88
|
+
type: 'object',
|
|
89
|
+
description: 'Defines data on the Orderpro history view',
|
|
90
|
+
properties: {
|
|
91
|
+
transactions: oneOf({
|
|
92
|
+
description: 'Specifies if Orderpro should fetch transactions to potentially process cancellations and refunds',
|
|
93
|
+
type: 'boolean',
|
|
94
|
+
default: false
|
|
95
|
+
})
|
|
96
|
+
}
|
|
86
97
|
})
|
|
87
98
|
}
|
|
88
99
|
}),
|