@malloydata/malloy-connections 0.0.337
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/dist/index.d.ts +6 -0
- package/dist/index.js +16 -0
- package/dist/index.js.map +1 -0
- package/package.json +43 -0
- package/src/index.ts +14 -0
- package/tsconfig.json +17 -0
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*
|
|
3
|
+
* Copyright Contributors to the Malloy project
|
|
4
|
+
* SPDX-License-Identifier: MIT
|
|
5
|
+
*/
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
// Convenience package: importing this registers all supported connection
|
|
8
|
+
// types with the Malloy connection registry. Apps that only need a subset
|
|
9
|
+
// of backends can import individual @malloydata/db-* packages instead.
|
|
10
|
+
require("@malloydata/db-bigquery");
|
|
11
|
+
require("@malloydata/db-duckdb");
|
|
12
|
+
require("@malloydata/db-mysql");
|
|
13
|
+
require("@malloydata/db-postgres");
|
|
14
|
+
require("@malloydata/db-snowflake");
|
|
15
|
+
require("@malloydata/db-trino");
|
|
16
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;AAEH,yEAAyE;AACzE,0EAA0E;AAC1E,uEAAuE;AACvE,mCAAiC;AACjC,iCAA+B;AAC/B,gCAA8B;AAC9B,mCAAiC;AACjC,oCAAkC;AAClC,gCAA8B"}
|
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@malloydata/malloy-connections",
|
|
3
|
+
"version": "0.0.337",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
|
+
"sideEffects": true,
|
|
8
|
+
"engines": {
|
|
9
|
+
"node": ">=20"
|
|
10
|
+
},
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"default": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./package.json": "./package.json"
|
|
17
|
+
},
|
|
18
|
+
"typesVersions": {
|
|
19
|
+
"*": {
|
|
20
|
+
"index": [
|
|
21
|
+
"./dist/index.d.ts"
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"homepage": "https://github.com/malloydata/malloy#readme",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/malloydata/malloy"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "tsc --build",
|
|
32
|
+
"clean": "tsc --build --clean && rm -f tsconfig.tsbuildinfo"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@malloydata/malloy": "0.0.337",
|
|
36
|
+
"@malloydata/db-bigquery": "0.0.337",
|
|
37
|
+
"@malloydata/db-duckdb": "0.0.337",
|
|
38
|
+
"@malloydata/db-mysql": "0.0.337",
|
|
39
|
+
"@malloydata/db-postgres": "0.0.337",
|
|
40
|
+
"@malloydata/db-snowflake": "0.0.337",
|
|
41
|
+
"@malloydata/db-trino": "0.0.337"
|
|
42
|
+
}
|
|
43
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright Contributors to the Malloy project
|
|
3
|
+
* SPDX-License-Identifier: MIT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
// Convenience package: importing this registers all supported connection
|
|
7
|
+
// types with the Malloy connection registry. Apps that only need a subset
|
|
8
|
+
// of backends can import individual @malloydata/db-* packages instead.
|
|
9
|
+
import '@malloydata/db-bigquery';
|
|
10
|
+
import '@malloydata/db-duckdb';
|
|
11
|
+
import '@malloydata/db-mysql';
|
|
12
|
+
import '@malloydata/db-postgres';
|
|
13
|
+
import '@malloydata/db-snowflake';
|
|
14
|
+
import '@malloydata/db-trino';
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../tsconfig.packages.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"rootDir": "src",
|
|
5
|
+
"outDir": "dist",
|
|
6
|
+
"composite": true
|
|
7
|
+
},
|
|
8
|
+
"references": [
|
|
9
|
+
{"path": "../malloy"},
|
|
10
|
+
{"path": "../malloy-db-bigquery"},
|
|
11
|
+
{"path": "../malloy-db-duckdb"},
|
|
12
|
+
{"path": "../malloy-db-mysql"},
|
|
13
|
+
{"path": "../malloy-db-postgres"},
|
|
14
|
+
{"path": "../malloy-db-snowflake"},
|
|
15
|
+
{"path": "../malloy-db-trino"}
|
|
16
|
+
]
|
|
17
|
+
}
|