@elyx-code/project-logic-tree 0.0.6284 → 0.0.6286
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/index.js +2 -2
- package/dist/index.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -69375,11 +69375,11 @@ class Ni {
|
|
|
69375
69375
|
return this.sourceType === "table" ? this.entity : this.sourceType === "query" ? this.query : this.sourceType === "aggregation" ? this.aggregation : null;
|
|
69376
69376
|
}
|
|
69377
69377
|
set as(d) {
|
|
69378
|
-
this.sourceType === "query" && (this.source.as = d);
|
|
69378
|
+
this.sourceType === "query" && this.source && (this.source.as = d);
|
|
69379
69379
|
}
|
|
69380
69380
|
get as() {
|
|
69381
69381
|
var d;
|
|
69382
|
-
return ((d = this.source) == null ? void 0 : d.as) || `"${Gh(this.source.name)}"` || "";
|
|
69382
|
+
return this.source && (((d = this.source) == null ? void 0 : d.as) || `"${Gh(this.source.name)}"`) || "";
|
|
69383
69383
|
}
|
|
69384
69384
|
get columns() {
|
|
69385
69385
|
var d, n, o;
|