@malloydata/malloy 0.0.43-dev230616164521 → 0.0.43-dev230616201638

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
@@ -500,6 +500,7 @@ export declare class Explore extends Entity {
500
500
  get filters(): FilterExpression[];
501
501
  get limit(): number | undefined;
502
502
  get structDef(): StructDef;
503
+ get queryTimezone(): string | undefined;
503
504
  toJSON(): SerializedExplore;
504
505
  static fromJSON(main_explore: SerializedExplore): Explore;
505
506
  }
package/dist/malloy.js CHANGED
@@ -999,6 +999,9 @@ class Explore extends Entity {
999
999
  get structDef() {
1000
1000
  return this._structDef;
1001
1001
  }
1002
+ get queryTimezone() {
1003
+ return this.structDef.queryTimezone;
1004
+ }
1002
1005
  toJSON() {
1003
1006
  var _a, _b;
1004
1007
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/malloy",
3
- "version": "0.0.43-dev230616164521",
3
+ "version": "0.0.43-dev230616201638",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",