@malloydata/malloy 0.0.103 → 0.0.104-dev231116200719
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/malloy.d.ts +1 -0
- package/dist/malloy.js +3 -0
- package/package.json +1 -1
package/dist/malloy.d.ts
CHANGED
|
@@ -537,6 +537,7 @@ export declare class Explore extends Entity {
|
|
|
537
537
|
constructor(structDef: StructDef, parentExplore?: Explore, source?: Explore);
|
|
538
538
|
get source(): Explore | undefined;
|
|
539
539
|
isIntrinsic(): boolean;
|
|
540
|
+
isExploreField(): this is ExploreField;
|
|
540
541
|
private parsedModelTag?;
|
|
541
542
|
get modelTag(): Tag;
|
|
542
543
|
/**
|
package/dist/malloy.js
CHANGED
|
@@ -949,6 +949,9 @@ class Explore extends Entity {
|
|
|
949
949
|
isIntrinsic() {
|
|
950
950
|
return (0, model_1.FieldIsIntrinsic)(this._structDef);
|
|
951
951
|
}
|
|
952
|
+
isExploreField() {
|
|
953
|
+
return false;
|
|
954
|
+
}
|
|
952
955
|
get modelTag() {
|
|
953
956
|
this.parsedModelTag || (this.parsedModelTag = tags_1.Tag.annotationToTag(this._structDef.modelAnnotation).tag);
|
|
954
957
|
return this.parsedModelTag;
|