@palbase/backend 25.0.3 → 25.0.4
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/bin/palbase-backend.cjs +19 -3
- package/dist/bin/palbase-backend.cjs.map +1 -1
- package/dist/bin/palbase-backend.js +3 -3
- package/dist/{chunk-WH2EV2LT.js → chunk-AILPKEK5.js} +5 -5
- package/dist/chunk-AILPKEK5.js.map +1 -0
- package/dist/{chunk-P2Q27SGP.js → chunk-CJSKYY76.js} +182 -2
- package/dist/chunk-CJSKYY76.js.map +1 -0
- package/dist/{chunk-XJ2RSHEU.js → chunk-CRQKCRGF.js} +16 -2
- package/dist/chunk-CRQKCRGF.js.map +1 -0
- package/dist/{chunk-7JSEN7UR.js → chunk-G4R6BTLV.js} +3 -182
- package/dist/chunk-G4R6BTLV.js.map +1 -0
- package/dist/db/index.cjs +1 -1
- package/dist/db/index.cjs.map +1 -1
- package/dist/db/index.js +2 -2
- package/dist/engine/index.cjs +19 -3
- package/dist/engine/index.cjs.map +1 -1
- package/dist/engine/index.js +3 -3
- package/dist/index.cjs +15 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -6
- package/package.json +1 -1
- package/dist/chunk-7JSEN7UR.js.map +0 -1
- package/dist/chunk-P2Q27SGP.js.map +0 -1
- package/dist/chunk-WH2EV2LT.js.map +0 -1
- package/dist/chunk-XJ2RSHEU.js.map +0 -1
|
@@ -3,10 +3,10 @@ import {
|
|
|
3
3
|
BootRefused,
|
|
4
4
|
createApp,
|
|
5
5
|
loadConfig
|
|
6
|
-
} from "../chunk-
|
|
7
|
-
import "../chunk-
|
|
6
|
+
} from "../chunk-AILPKEK5.js";
|
|
7
|
+
import "../chunk-CRQKCRGF.js";
|
|
8
8
|
import "../chunk-XABBC7JP.js";
|
|
9
|
-
import "../chunk-
|
|
9
|
+
import "../chunk-CJSKYY76.js";
|
|
10
10
|
import {
|
|
11
11
|
getRegisteredControllers
|
|
12
12
|
} from "../chunk-35PNTIRN.js";
|
|
@@ -2,11 +2,14 @@ import {
|
|
|
2
2
|
__requestALS,
|
|
3
3
|
__runStartHooks,
|
|
4
4
|
__runWithRuntime
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-CRQKCRGF.js";
|
|
6
6
|
import {
|
|
7
7
|
assertUsableFilter,
|
|
8
8
|
assertUsableWriteValues
|
|
9
9
|
} from "./chunk-XABBC7JP.js";
|
|
10
|
+
import {
|
|
11
|
+
qualifiedTableKey
|
|
12
|
+
} from "./chunk-CJSKYY76.js";
|
|
10
13
|
import {
|
|
11
14
|
UniqueViolation,
|
|
12
15
|
assertZeroArgConstructor,
|
|
@@ -1491,9 +1494,6 @@ function setSchema(schemas) {
|
|
|
1491
1494
|
}
|
|
1492
1495
|
currentSchema = { tables };
|
|
1493
1496
|
}
|
|
1494
|
-
function qualifiedTableKey(schema, table) {
|
|
1495
|
-
return schema === "" || schema === "public" ? table : `${schema}.${table}`;
|
|
1496
|
-
}
|
|
1497
1497
|
function withTables(ops, schema = currentSchema) {
|
|
1498
1498
|
const bind = (key) => ({
|
|
1499
1499
|
insert: (data) => ops.insert(key, data),
|
|
@@ -2465,4 +2465,4 @@ export {
|
|
|
2465
2465
|
installEgressFence,
|
|
2466
2466
|
createApp
|
|
2467
2467
|
};
|
|
2468
|
-
//# sourceMappingURL=chunk-
|
|
2468
|
+
//# sourceMappingURL=chunk-AILPKEK5.js.map
|