@malloydata/malloy 0.0.109 → 0.0.110-dev231201203407
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
|
@@ -433,6 +433,7 @@ export declare class PreparedResult implements Taggable {
|
|
|
433
433
|
getTaglines(prefix?: RegExp): string[];
|
|
434
434
|
get annotation(): Annotation | undefined;
|
|
435
435
|
get modelAnnotation(): Annotation | undefined;
|
|
436
|
+
get modelTag(): Tag;
|
|
436
437
|
/**
|
|
437
438
|
* @return The name of the connection this query should be run against.
|
|
438
439
|
*/
|
package/dist/malloy.js
CHANGED
|
@@ -761,6 +761,9 @@ class PreparedResult {
|
|
|
761
761
|
get modelAnnotation() {
|
|
762
762
|
return this.modelDef.annotation;
|
|
763
763
|
}
|
|
764
|
+
get modelTag() {
|
|
765
|
+
return tags_1.Tag.annotationToTag(this.modelDef.annotation).tag;
|
|
766
|
+
}
|
|
764
767
|
/**
|
|
765
768
|
* @return The name of the connection this query should be run against.
|
|
766
769
|
*/
|