@neo4j-labs/experimental-query-api-wrapper 0.0.1-alpha14 → 0.0.1-alpha15

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.
@@ -16,10 +16,6 @@
16
16
  * limitations under the License.
17
17
  */
18
18
  Object.defineProperty(exports, "__esModule", { value: true });
19
- exports.TransformStreamDefaultController = exports.TextDecoderStream = exports.TransformStream = void 0;
20
- // @ts-ignore
21
- exports.TransformStream = window.TransformStream;
22
- // @ts-ignore
23
- exports.TextDecoderStream = window.TextDecoderStream;
24
- // @ts-ignore
25
- exports.TransformStreamDefaultController = window.TransformStreamDefaultController;
19
+ exports.TransformStream = TransformStream;
20
+ exports.TextDecoderStream = TextDecoderStream;
21
+ exports.TransformStreamDefaultController = TransformStreamDefaultController;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neo4j-labs/experimental-query-api-wrapper",
3
- "version": "0.0.1-alpha14",
3
+ "version": "0.0.1-alpha15",
4
4
  "description": "Experimental wrapper library to access Neo4j Database using Query API with a neo4j-driver-like interface.",
5
5
  "main": "lib/index.js",
6
6
  "types": "types/index.d.ts",
@@ -2,5 +2,6 @@
2
2
  "extends": "./tsconfig.json",
3
3
  "include": [
4
4
  "src/**/*.ts",
5
+ "src/http-connection/browser/stream.js"
5
6
  ]
6
7
  }
package/tsconfig.json CHANGED
@@ -11,10 +11,12 @@
11
11
  "outDir": "lib",
12
12
  "declaration": true,
13
13
  "declarationDir": "types",
14
- "isolatedModules": true
14
+ "isolatedModules": true,
15
+ "allowJs": true
15
16
  },
16
17
  "include": [
17
18
  "src/**/*.ts",
18
- "test/**/*.ts"
19
- ]
19
+ "test/**/*.ts",
20
+ "src/http-connection/browser/stream.js"
21
+ ]
20
22
  }
@@ -1,19 +1,2 @@
1
- /**
2
- * Copyright (c) "Neo4j"
3
- * Neo4j Sweden AB [https://neo4j.com]
4
- *
5
- * Licensed under the Apache License, Version 2.0 (the "License");
6
- * you may not use this file except in compliance with the License.
7
- * You may obtain a copy of the License at
8
- *
9
- * http://www.apache.org/licenses/LICENSE-2.0
10
- *
11
- * Unless required by applicable law or agreed to in writing, software
12
- * distributed under the License is distributed on an "AS IS" BASIS,
13
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- * See the License for the specific language governing permissions and
15
- * limitations under the License.
16
- */
17
- export declare const TransformStream: any;
18
- export declare const TextDecoderStream: any;
19
- export declare const TransformStreamDefaultController: any;
1
+ export const __esModule: boolean;
2
+ export { unknown as TransformStream, unknown as TextDecoderStream, unknown as TransformStreamDefaultController };