@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.
|
|
20
|
-
|
|
21
|
-
exports.
|
|
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-
|
|
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",
|
package/tsconfig.build.json
CHANGED
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
|
-
|
|
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 };
|