@malloydata/malloy 0.0.192 → 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 +1 -0
- package/dist/malloy.js +3 -0
- package/package.json +1 -1
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
|
*/
|