@malloydata/malloy-tests 0.0.81 → 0.0.82-dev230912221500
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/runtimes.d.ts +1 -1
- package/package.json +6 -6
- package/src/runtimes.ts +1 -1
package/dist/runtimes.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export declare function rows(qr: Result): QueryDataRow[];
|
|
|
21
21
|
export declare function runtimeFor(dbName: string): SingleConnectionRuntime;
|
|
22
22
|
export declare function testRuntimeFor(connection: Connection): SingleConnectionRuntime<Connection>;
|
|
23
23
|
export declare const allDatabases: string[];
|
|
24
|
-
type RuntimeDatabaseNames = typeof allDatabases[number];
|
|
24
|
+
type RuntimeDatabaseNames = (typeof allDatabases)[number];
|
|
25
25
|
export declare class RuntimeList {
|
|
26
26
|
runtimeMap: Map<string, SingleConnectionRuntime<Connection>>;
|
|
27
27
|
runtimeList: Array<[string, SingleConnectionRuntime]>;
|
package/package.json
CHANGED
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@jest/globals": "^29.4.3",
|
|
21
|
-
"@malloydata/db-bigquery": "^0.0.
|
|
22
|
-
"@malloydata/db-duckdb": "^0.0.
|
|
23
|
-
"@malloydata/db-postgres": "^0.0.
|
|
24
|
-
"@malloydata/malloy": "^0.0.
|
|
25
|
-
"@malloydata/render": "^0.0.
|
|
21
|
+
"@malloydata/db-bigquery": "^0.0.82-dev230912221500",
|
|
22
|
+
"@malloydata/db-duckdb": "^0.0.82-dev230912221500",
|
|
23
|
+
"@malloydata/db-postgres": "^0.0.82-dev230912221500",
|
|
24
|
+
"@malloydata/malloy": "^0.0.82-dev230912221500",
|
|
25
|
+
"@malloydata/render": "^0.0.82-dev230912221500",
|
|
26
26
|
"jsdom": "^22.1.0",
|
|
27
27
|
"luxon": "^1.26.4",
|
|
28
28
|
"madge": "^6.0.0"
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"@types/jsdom": "^21.1.1",
|
|
32
32
|
"@types/luxon": "^1.26.4"
|
|
33
33
|
},
|
|
34
|
-
"version": "0.0.
|
|
34
|
+
"version": "0.0.82-dev230912221500"
|
|
35
35
|
}
|
package/src/runtimes.ts
CHANGED
|
@@ -147,7 +147,7 @@ export function testRuntimeFor(connection: Connection) {
|
|
|
147
147
|
}
|
|
148
148
|
|
|
149
149
|
export const allDatabases = ['postgres', 'bigquery', 'duckdb', 'duckdb_wasm'];
|
|
150
|
-
type RuntimeDatabaseNames = typeof allDatabases[number];
|
|
150
|
+
type RuntimeDatabaseNames = (typeof allDatabases)[number];
|
|
151
151
|
|
|
152
152
|
export class RuntimeList {
|
|
153
153
|
runtimeMap = new Map<string, SingleConnectionRuntime>();
|