@malloydata/malloy 0.0.43-dev230616164521 → 0.0.43-dev230620232755

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.
@@ -1,4 +1,26 @@
1
1
  "use strict";
2
+ /*
3
+ * Copyright 2023 Google LLC
4
+ *
5
+ * Permission is hereby granted, free of charge, to any person obtaining
6
+ * a copy of this software and associated documentation files
7
+ * (the "Software"), to deal in the Software without restriction,
8
+ * including without limitation the rights to use, copy, modify, merge,
9
+ * publish, distribute, sublicense, and/or sell copies of the Software,
10
+ * and to permit persons to whom the Software is furnished to do so,
11
+ * subject to the following conditions:
12
+ *
13
+ * The above copyright notice and this permission notice shall be
14
+ * included in all copies or substantial portions of the Software.
15
+ *
16
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
+ */
2
24
  Object.defineProperty(exports, "__esModule", { value: true });
3
25
  exports.FunctionMap = void 0;
4
26
  class FunctionMap {
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-dev230620232755",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",