@tillhub/schemas 6.117.1 → 6.118.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,12 @@
1
+ # [6.118.0](https://github.com/tillhub/schemas/compare/v6.117.1...v6.118.0) (2022-02-10)
2
+
3
+
4
+ ### Features
5
+
6
+ * **configurations:** features ([d9ad71d](https://github.com/tillhub/schemas/commit/d9ad71d))
7
+ * **configurations:** gastro ([d977675](https://github.com/tillhub/schemas/commit/d977675))
8
+ * **configurations:** gastro ([71126be](https://github.com/tillhub/schemas/commit/71126be))
9
+
1
10
  ## [6.117.1](https://github.com/tillhub/schemas/compare/v6.117.0...v6.117.1) (2022-02-09)
2
11
 
3
12
 
@@ -119,6 +119,18 @@ module.exports = oneOf({
119
119
  example: 'Regiondo',
120
120
  minLength: 2,
121
121
  maxLength: 24
122
+ },
123
+ log_level: {
124
+ description: 'defines the granularity of the web api logging.',
125
+ type: 'string',
126
+ enum: [
127
+ 'error',
128
+ 'warning',
129
+ 'info',
130
+ 'debug',
131
+ 'verbose' // request/response bodies
132
+ ],
133
+ default: 'info'
122
134
  }
123
135
  }
124
136
  })
@@ -46,6 +46,18 @@ module.exports = {
46
46
  minimum: 0,
47
47
  maximum: 3600,
48
48
  default: 25
49
+ },
50
+ log_level: {
51
+ description: 'defines the granularity of the local server logging.',
52
+ type: 'string',
53
+ enum: [
54
+ 'error',
55
+ 'warning',
56
+ 'info', // basic server info
57
+ 'debug', // basic request/response info
58
+ 'verbose' // request/response bodies
59
+ ],
60
+ default: 'info'
49
61
  }
50
62
  }
51
63
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.117.1",
3
+ "version": "6.118.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",