@malloydata/malloy
Advanced tools
Comparing version 0.0.7-221109192233 to 0.0.7-221110172722
@@ -1,2 +0,2 @@ | ||
export type { QueryDataRow, ModelDef, Fragment, Query, StructDef, StructRelationship, NamedStructDefs, MalloyQueryData, AtomicFieldType as AtomicFieldTypeInner, DateUnit, ExtractUnit, TimestampUnit, TimeFieldType, QueryData, FieldTypeDef, Expr, DialectFragment, TimeValue, FilterExpression, SQLBlock, FieldDef, FilteredAliasedName, PipeSegment, QueryFieldDef, TurtleDef, SearchValueMapResult, SearchIndexResult, } from "./model"; | ||
export type { QueryDataRow, Fragment, StructDef, StructRelationship, NamedStructDefs, MalloyQueryData, AtomicFieldType as AtomicFieldTypeInner, DateUnit, ExtractUnit, TimestampUnit, TimeFieldType, QueryData, FieldTypeDef, Expr, DialectFragment, TimeValue, FilterExpression, SQLBlock, FieldDef, FilteredAliasedName, PipeSegment, QueryFieldDef, TurtleDef, SearchValueMapResult, SearchIndexResult, ModelDef, Query, NamedQuery, } from "./model"; | ||
export { Segment, isFilteredAliasedName, } from "./model"; | ||
@@ -3,0 +3,0 @@ export { HighlightType, MalloyTranslator, } from "./lang"; |
@@ -5,3 +5,3 @@ /// <reference types="node" /> | ||
import { DocumentHelpContext } from "./lang/parse-tree-walkers/document-help-context-walker"; | ||
import { CompiledQuery, FieldBooleanDef, FieldDateDef, FieldNumberDef, FieldStringDef, FieldTimestampDef, FieldTypeDef, FilterExpression, ModelDef, Query as InternalQuery, QueryData, QueryDataRow, QueryResult, StructDef, TurtleDef, SQLBlock, DocumentReference, DocumentPosition as ModelDocumentPosition, SearchIndexResult, SearchValueMapResult } from "./model"; | ||
import { CompiledQuery, FieldBooleanDef, FieldDateDef, FieldNumberDef, FieldStringDef, FieldTimestampDef, FieldTypeDef, FilterExpression, ModelDef, Query as InternalQuery, QueryData, QueryDataRow, QueryResult, StructDef, TurtleDef, SQLBlock, DocumentReference, DocumentPosition as ModelDocumentPosition, SearchIndexResult, SearchValueMapResult, NamedQuery } from "./model"; | ||
import { LookupConnection, ModelString, ModelURL, QueryString, QueryURL, URLReader, Connection } from "./runtime_types"; | ||
@@ -210,5 +210,5 @@ export interface Loggable { | ||
export declare class PreparedQuery { | ||
private _modelDef; | ||
private _query; | ||
private name?; | ||
_modelDef: ModelDef; | ||
_query: InternalQuery | NamedQuery; | ||
name?: string; | ||
constructor(query: InternalQuery, model: ModelDef, name?: string); | ||
@@ -222,2 +222,6 @@ /** | ||
get dialect(): string; | ||
/** | ||
* Get the flattened version of a query -- one that does not have a `pipeHead`. | ||
*/ | ||
getFlattenedQuery(defaultName: string): PreparedQuery; | ||
} | ||
@@ -224,0 +228,0 @@ export declare function parseTableURI(tableURI: string): { |
{ | ||
"name": "@malloydata/malloy", | ||
"version": "0.0.7-221109192233", | ||
"version": "0.0.7-221110172722", | ||
"license": "GPL-2.0", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1554649
40464