@malloydata/malloy-sql 0.0.79-dev230822044438 → 0.0.79
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/types.d.ts +2 -2
- package/dist/types.js +1 -1
- package/dist/types.js.map +1 -1
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -33,7 +33,7 @@ export interface ParsedMalloySQLOtherStatementPart {
|
|
|
33
33
|
text: string;
|
|
34
34
|
range: MalloySQLParseRange;
|
|
35
35
|
}
|
|
36
|
-
export
|
|
36
|
+
export type ParsedMalloySQLStatementPart = ParsedMalloySQLMalloyStatementPart | ParsedMalloySQLOtherStatementPart;
|
|
37
37
|
export interface MalloySQLParseResults {
|
|
38
38
|
initialComments: string;
|
|
39
39
|
statements: ParsedMalloySQLStatement[];
|
|
@@ -80,4 +80,4 @@ export interface MalloySQLSQLStatement extends MalloySQLStatementBase {
|
|
|
80
80
|
export interface MalloySQLMarkdownStatement extends MalloySQLStatementBase {
|
|
81
81
|
type: MalloySQLStatementType.MARKDOWN;
|
|
82
82
|
}
|
|
83
|
-
export
|
|
83
|
+
export type MalloySQLStatement = MalloySQLSQLStatement | MalloySQLMalloyStatement | MalloySQLMarkdownStatement;
|
package/dist/types.js
CHANGED
|
@@ -28,5 +28,5 @@ var MalloySQLStatementType;
|
|
|
28
28
|
MalloySQLStatementType["SQL"] = "sql";
|
|
29
29
|
MalloySQLStatementType["MALLOY"] = "malloy";
|
|
30
30
|
MalloySQLStatementType["MARKDOWN"] = "markdown";
|
|
31
|
-
})(MalloySQLStatementType
|
|
31
|
+
})(MalloySQLStatementType || (exports.MalloySQLStatementType = MalloySQLStatementType = {}));
|
|
32
32
|
//# sourceMappingURL=types.js.map
|
package/dist/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AA+DH,IAAY,sBAIX;AAJD,WAAY,sBAAsB;IAChC,qCAAW,CAAA;IACX,2CAAiB,CAAA;IACjB,+CAAqB,CAAA;AACvB,CAAC,EAJW,sBAAsB,
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AA+DH,IAAY,sBAIX;AAJD,WAAY,sBAAsB;IAChC,qCAAW,CAAA;IACX,2CAAiB,CAAA;IACjB,+CAAqB,CAAA;AACvB,CAAC,EAJW,sBAAsB,sCAAtB,sBAAsB,QAIjC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/malloy-sql",
|
|
3
|
-
"version": "0.0.79
|
|
3
|
+
"version": "0.0.79",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"prepublishOnly": "npm run build"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@malloydata/malloy": "^0.0.79
|
|
24
|
+
"@malloydata/malloy": "^0.0.79"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"peggy": "^3.0.2"
|