@malloydata/malloy 0.0.102-dev231115025421 → 0.0.102-dev231115033625

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
@@ -1124,6 +1124,7 @@ export declare class Result extends PreparedResult {
1124
1124
  get data(): DataArray;
1125
1125
  get totalRows(): number;
1126
1126
  get runStats(): QueryRunStats | undefined;
1127
+ get profilingUrl(): string | undefined;
1127
1128
  toJSON(): ResultJSON;
1128
1129
  static fromJSON({ queryResult, modelDef }: ResultJSON): Result;
1129
1130
  }
package/dist/malloy.js CHANGED
@@ -250,6 +250,7 @@ class Malloy {
250
250
  // TODO feature-sql-block There is no source explore...
251
251
  sourceExplore: '',
252
252
  sourceFilters: [],
253
+ profilingUrl: data.profilingUrl,
253
254
  }, {
254
255
  name: 'empty_model',
255
256
  exports: [],
@@ -2242,6 +2243,9 @@ class Result extends PreparedResult {
2242
2243
  get runStats() {
2243
2244
  return this.inner.runStats;
2244
2245
  }
2246
+ get profilingUrl() {
2247
+ return this.inner.profilingUrl;
2248
+ }
2245
2249
  toJSON() {
2246
2250
  return { queryResult: this.inner, modelDef: this._modelDef };
2247
2251
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/malloy",
3
- "version": "0.0.102-dev231115025421",
3
+ "version": "0.0.102-dev231115033625",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",