@tstdl/base 0.92.6 → 0.92.8

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.
@@ -167,7 +167,6 @@ async function writeResponseBody(response, httpResponse) {
167
167
  if (!httpResponse.hasHeader('Content-Length')) {
168
168
  httpResponse.setHeader('Content-Length', bytes.byteLength);
169
169
  }
170
- null.getWriter().closed;
171
170
  await write(httpResponse, bytes);
172
171
  }
173
172
  else if (isDefined(streamData)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tstdl/base",
3
- "version": "0.92.6",
3
+ "version": "0.92.8",
4
4
  "author": "Patrick Hein",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -84,6 +84,7 @@
84
84
  "./rpc/endpoints": "./rpc/endpoints/index.js",
85
85
  "./rxjs": "./rxjs-utils/index.js",
86
86
  "./schema": "./schema/index.js",
87
+ "./schema/converters": "./schema/converters/index.js",
87
88
  "./search-index": "./search-index/index.js",
88
89
  "./search-index/elastic": "./search-index/elastic/index.js",
89
90
  "./search-index/memory": "./search-index/memory/index.js",
@@ -80,6 +80,7 @@ function convertToOpenApiSchemaBase(schema) {
80
80
  }
81
81
  return {
82
82
  type: hasString ? 'string' : 'number',
83
+ format: 'enum',
83
84
  enum: schema.allowedValues
84
85
  };
85
86
  }