react-semaphor 0.0.547 → 0.0.549
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/chunks/{dashboard-plus-BWib9L7x.js → dashboard-plus-B8vcdh4C.js} +77 -77
- package/dist/chunks/{dashboard-plus-Duz1z2Cc.js → dashboard-plus-CTzt60G8.js} +2760 -2703
- package/dist/chunks/{index-DjrkyZr5.js → index-CEWweOR2.js} +5 -2
- package/dist/chunks/{index-N4c87NYQ.js → index-DIFWt1VS.js} +2 -2
- package/dist/dashboard/index.cjs +1 -1
- package/dist/dashboard/index.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +48 -29
- package/dist/surfboard/index.cjs +1 -1
- package/dist/surfboard/index.js +1 -1
- package/dist/types/dashboard.d.ts +1 -1
- package/dist/types/main.d.ts +4 -1
- package/dist/types/surfboard.d.ts +1 -1
- package/dist/types/types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -26864,7 +26864,7 @@ function Iie(e) {
|
|
|
26864
26864
|
);
|
|
26865
26865
|
}
|
|
26866
26866
|
function Aie(e) {
|
|
26867
|
-
if (e.type === "table" || e.type === "view") {
|
|
26867
|
+
if (e.type === "table" || e.type === "view" || e.type === "dataset") {
|
|
26868
26868
|
if (e.database && e.schema)
|
|
26869
26869
|
return `${e.database}.${e.schema}.${e.name}`;
|
|
26870
26870
|
if (e.database)
|
|
@@ -79241,6 +79241,7 @@ function Q4e({
|
|
|
79241
79241
|
else {
|
|
79242
79242
|
const S = {
|
|
79243
79243
|
id: b.id,
|
|
79244
|
+
datasetType: b.type,
|
|
79244
79245
|
name: b.name || b.table,
|
|
79245
79246
|
label: b.label,
|
|
79246
79247
|
domainId: b.domainId,
|
|
@@ -79249,7 +79250,9 @@ function Q4e({
|
|
|
79249
79250
|
schema: b.schema,
|
|
79250
79251
|
type: "dataset",
|
|
79251
79252
|
connectionId: b.connectionId,
|
|
79252
|
-
connectionType: b.connectionType
|
|
79253
|
+
connectionType: b.connectionType,
|
|
79254
|
+
datamodelId: b.datamodelId,
|
|
79255
|
+
sql: b.sql
|
|
79253
79256
|
};
|
|
79254
79257
|
x = [...y, S];
|
|
79255
79258
|
}
|