@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 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
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/malloy",
3
- "version": "0.0.109",
3
+ "version": "0.0.110-dev231201203407",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",