@malloydata/malloy 0.0.193-dev241001144416 → 0.0.193-dev241001152900

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
@@ -463,6 +463,7 @@ export declare class PreparedResult implements Taggable {
463
463
  */
464
464
  get sql(): string;
465
465
  get dependenciesToMaterialize(): Record<string, QueryToMaterialize> | undefined;
466
+ get materialization(): QueryToMaterialize | undefined;
466
467
  /**
467
468
  * @return The `Explore` representing the data that will be returned by running this query.
468
469
  */
package/dist/malloy.js CHANGED
@@ -801,6 +801,9 @@ class PreparedResult {
801
801
  get dependenciesToMaterialize() {
802
802
  return this.inner.dependenciesToMaterialize;
803
803
  }
804
+ get materialization() {
805
+ return this.inner.materialization;
806
+ }
804
807
  /**
805
808
  * @return The `Explore` representing the data that will be returned by running this query.
806
809
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/malloy",
3
- "version": "0.0.193-dev241001144416",
3
+ "version": "0.0.193-dev241001152900",
4
4
  "license": "MIT",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",