@budibase/backend-core 2.29.2 → 2.29.3
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 +14 -14
- package/dist/index.js.map +3 -3
- package/dist/index.js.meta.json +1 -1
- package/dist/package.json +4 -4
- package/dist/plugins.js.map +1 -1
- package/dist/plugins.js.meta.json +1 -1
- package/dist/src/db/constants.d.ts +3 -1
- package/dist/src/db/constants.js +13 -4
- package/dist/src/db/constants.js.map +1 -1
- package/package.json +4 -4
- package/src/db/constants.ts +14 -5
package/dist/index.js
CHANGED
|
@@ -54739,20 +54739,6 @@ var SWITCHABLE_TYPES = {
|
|
|
54739
54739
|
["number" /* NUMBER */]: ["number" /* NUMBER */, "boolean" /* BOOLEAN */]
|
|
54740
54740
|
};
|
|
54741
54741
|
|
|
54742
|
-
// ../shared-core/src/constants/rows.ts
|
|
54743
|
-
var CONSTANT_INTERNAL_ROW_COLS = [
|
|
54744
|
-
"_id",
|
|
54745
|
-
"_rev",
|
|
54746
|
-
"type",
|
|
54747
|
-
"createdAt",
|
|
54748
|
-
"updatedAt",
|
|
54749
|
-
"tableId"
|
|
54750
|
-
];
|
|
54751
|
-
var CONSTANT_EXTERNAL_ROW_COLS = ["_id", "_rev", "tableId"];
|
|
54752
|
-
function isInternalColumnName(name) {
|
|
54753
|
-
return CONSTANT_INTERNAL_ROW_COLS.includes(name);
|
|
54754
|
-
}
|
|
54755
|
-
|
|
54756
54742
|
// ../shared-core/src/constants/index.ts
|
|
54757
54743
|
var OperatorOptions = {
|
|
54758
54744
|
Equals: {
|
|
@@ -56747,6 +56733,20 @@ var DatabaseImpl = class _DatabaseImpl {
|
|
|
56747
56733
|
}
|
|
56748
56734
|
};
|
|
56749
56735
|
|
|
56736
|
+
// src/db/constants.ts
|
|
56737
|
+
var CONSTANT_INTERNAL_ROW_COLS = [
|
|
56738
|
+
"_id",
|
|
56739
|
+
"_rev",
|
|
56740
|
+
"type",
|
|
56741
|
+
"createdAt",
|
|
56742
|
+
"updatedAt",
|
|
56743
|
+
"tableId"
|
|
56744
|
+
];
|
|
56745
|
+
var CONSTANT_EXTERNAL_ROW_COLS = ["_id", "_rev", "tableId"];
|
|
56746
|
+
function isInternalColumnName(name) {
|
|
56747
|
+
return CONSTANT_INTERNAL_ROW_COLS.includes(name);
|
|
56748
|
+
}
|
|
56749
|
+
|
|
56750
56750
|
// src/db/db.ts
|
|
56751
56751
|
function getDB(dbName, opts) {
|
|
56752
56752
|
return new DDInstrumentedDatabase(new DatabaseImpl(dbName, opts));
|