@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
 
@@ -408,16 +408,25 @@ module.exports = {
408
408
  ]
409
409
  },
410
410
  auth: {
411
- description: 'Keeping auth data for the branch, in this case just for at_fiskaly',
412
- type: 'object',
413
- properties: {
414
- key: {
415
- type: 'string'
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
- secret: {
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',
@@ -14,7 +14,7 @@ module.exports = {
14
14
  format: anyOf({
15
15
  type: 'string',
16
16
  description: 'The format of the Report file',
17
- enum: ['csv', 'excel']
17
+ enum: ['csv', 'xls']
18
18
  }),
19
19
  enclosure: anyOf({
20
20
  type: 'string',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.279.0",
3
+ "version": "6.279.2",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",