@malloydata/malloy-sql 0.0.37-dev230525220001 → 0.0.37-dev230526070709
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 +2 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export { MalloySQLParser, MalloySQLParseError } from './malloySQLParser';
|
|
2
2
|
export type { MalloySQLParse } from './malloySQLParser';
|
|
3
|
-
export type { MalloySQLMalloyStatement,
|
|
3
|
+
export type { MalloySQLMalloyStatement, MalloySQLSQLStatement, MalloySQLStatement, MalloySQLParseErrorExpected, } from './types';
|
|
4
|
+
export { MalloySQLStatementType } from './types';
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.MalloySQLParseError = exports.MalloySQLParser = void 0;
|
|
3
|
+
exports.MalloySQLStatementType = exports.MalloySQLParseError = exports.MalloySQLParser = void 0;
|
|
4
4
|
/*
|
|
5
5
|
* Copyright 2023 Google LLC
|
|
6
6
|
*
|
|
@@ -26,4 +26,6 @@ exports.MalloySQLParseError = exports.MalloySQLParser = void 0;
|
|
|
26
26
|
var malloySQLParser_1 = require("./malloySQLParser");
|
|
27
27
|
Object.defineProperty(exports, "MalloySQLParser", { enumerable: true, get: function () { return malloySQLParser_1.MalloySQLParser; } });
|
|
28
28
|
Object.defineProperty(exports, "MalloySQLParseError", { enumerable: true, get: function () { return malloySQLParser_1.MalloySQLParseError; } });
|
|
29
|
+
var types_1 = require("./types");
|
|
30
|
+
Object.defineProperty(exports, "MalloySQLStatementType", { enumerable: true, get: function () { return types_1.MalloySQLStatementType; } });
|
|
29
31
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,qDAAuE;AAA/D,kHAAA,eAAe,OAAA;AAAE,sHAAA,mBAAmB,OAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,qDAAuE;AAA/D,kHAAA,eAAe,OAAA;AAAE,sHAAA,mBAAmB,OAAA;AAQ5C,iCAA+C;AAAvC,+GAAA,sBAAsB,OAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/malloy-sql",
|
|
3
|
-
"version": "0.0.37-
|
|
3
|
+
"version": "0.0.37-dev230526070709",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"prepublishOnly": "npm run build"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@malloydata/malloy": "^0.0.37-
|
|
22
|
+
"@malloydata/malloy": "^0.0.37-dev230526070709"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"md5": "^2.3.0",
|