@tillhub/schemas 6.284.0 → 6.286.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,17 @@
|
|
|
1
|
+
# [6.286.0](https://github.com/tillhub/schemas/compare/v6.285.0...v6.286.0) (2024-02-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **transaction:** added authorizer staff uuid to metadata ([ab7b2ff](https://github.com/tillhub/schemas/commit/ab7b2ff))
|
|
7
|
+
|
|
8
|
+
# [6.285.0](https://github.com/tillhub/schemas/compare/v6.284.0...v6.285.0) (2024-02-08)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **configurations:** make breaks optional ([#917](https://github.com/tillhub/schemas/issues/917)) ([3c01efd](https://github.com/tillhub/schemas/commit/3c01efd))
|
|
14
|
+
|
|
1
15
|
# [6.284.0](https://github.com/tillhub/schemas/compare/v6.283.0...v6.284.0) (2024-02-01)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -105,10 +105,16 @@ module.exports = {
|
|
|
105
105
|
type: 'string'
|
|
106
106
|
},
|
|
107
107
|
break_from: {
|
|
108
|
-
|
|
108
|
+
oneOf: [
|
|
109
|
+
{ type: 'null' },
|
|
110
|
+
{ type: 'string' }
|
|
111
|
+
]
|
|
109
112
|
},
|
|
110
113
|
break_to: {
|
|
111
|
-
|
|
114
|
+
oneOf: [
|
|
115
|
+
{ type: 'null' },
|
|
116
|
+
{ type: 'string' }
|
|
117
|
+
]
|
|
112
118
|
}
|
|
113
119
|
}
|
|
114
120
|
}
|
|
@@ -181,6 +181,12 @@ module.exports = {
|
|
|
181
181
|
example: '5ad2351d-9a67-45f9-ad4f-0abcbefa9037',
|
|
182
182
|
description: 'TODO'
|
|
183
183
|
},
|
|
184
|
+
authorizer_staff_uuid: {
|
|
185
|
+
type: 'string',
|
|
186
|
+
format: 'uuid',
|
|
187
|
+
example: '5ad2351d-9a67-45f9-ad4f-0abcbefa9037',
|
|
188
|
+
description: 'UUID of staff object which initiated transaction'
|
|
189
|
+
},
|
|
184
190
|
origin: {
|
|
185
191
|
type: 'object',
|
|
186
192
|
properties: {
|