@tillhub/schemas 6.279.0 → 6.279.2
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.279.2](https://github.com/tillhub/schemas/compare/v6.279.1...v6.279.2) (2024-01-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **reports:** Change report format from excel to xls ([#912](https://github.com/tillhub/schemas/issues/912)) ([c55d7a9](https://github.com/tillhub/schemas/commit/c55d7a9))
|
|
7
|
+
|
|
8
|
+
## [6.279.1](https://github.com/tillhub/schemas/compare/v6.279.0...v6.279.1) (2024-01-08)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Add string format to signing configuration auth in base branch ([e96eb62](https://github.com/tillhub/schemas/commit/e96eb62))
|
|
14
|
+
|
|
1
15
|
# [6.279.0](https://github.com/tillhub/schemas/compare/v6.278.1...v6.279.0) (2024-01-08)
|
|
2
16
|
|
|
3
17
|
|
package/lib/v0/branches/base.js
CHANGED
|
@@ -408,16 +408,25 @@ module.exports = {
|
|
|
408
408
|
]
|
|
409
409
|
},
|
|
410
410
|
auth: {
|
|
411
|
-
description: 'Keeping auth data for the branch
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
type: '
|
|
411
|
+
description: 'Keeping auth data for the branch',
|
|
412
|
+
anyOf: [
|
|
413
|
+
{
|
|
414
|
+
description: 'Auth data for at_fiskaly: object format',
|
|
415
|
+
type: 'object',
|
|
416
|
+
properties: {
|
|
417
|
+
key: {
|
|
418
|
+
type: 'string'
|
|
419
|
+
},
|
|
420
|
+
secret: {
|
|
421
|
+
type: 'string'
|
|
422
|
+
}
|
|
423
|
+
}
|
|
416
424
|
},
|
|
417
|
-
|
|
425
|
+
{
|
|
426
|
+
description: 'Auth data for fiskaltrust: string format',
|
|
418
427
|
type: 'string'
|
|
419
428
|
}
|
|
420
|
-
|
|
429
|
+
]
|
|
421
430
|
},
|
|
422
431
|
resource: {
|
|
423
432
|
description: 'In case of at_fiskaly its organization_id',
|