@exulu/backend 1.23.0 → 1.23.1
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/CHANGELOG.md +3 -3
- package/dist/index.cjs +0 -2
- package/dist/index.js +0 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
## [1.23.1](https://github.com/Qventu/exulu-backend/compare/v1.23.0...v1.23.1) (2025-09-09)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* remove redundant console logs ([6eda051](https://github.com/Qventu/exulu-backend/commit/6eda05147e3a75eb47547d3c07f6de8060e743f8))
|
package/dist/index.cjs
CHANGED
|
@@ -1277,7 +1277,6 @@ var rbacSchema = {
|
|
|
1277
1277
|
};
|
|
1278
1278
|
var addRBACfields = (schema) => {
|
|
1279
1279
|
if (schema.RBAC) {
|
|
1280
|
-
console.log(`[EXULU] Adding rights_mode field to ${schema.name.plural} table.`);
|
|
1281
1280
|
schema.fields.push({
|
|
1282
1281
|
name: "rights_mode",
|
|
1283
1282
|
type: "text",
|
|
@@ -2852,7 +2851,6 @@ function createSDL(tables, contexts, agents, tools) {
|
|
|
2852
2851
|
const tableNamePlural = table.name.plural.toLowerCase();
|
|
2853
2852
|
const tableNameSingular = table.name.singular.toLowerCase();
|
|
2854
2853
|
const tableNameSingularUpperCaseFirst = table.name.singular.charAt(0).toUpperCase() + table.name.singular.slice(1);
|
|
2855
|
-
console.log("[EXULU] Adding table >>>>>", tableNamePlural);
|
|
2856
2854
|
typeDefs += `
|
|
2857
2855
|
${tableNameSingular}ById(id: ID!): ${tableNameSingular}
|
|
2858
2856
|
${tableNameSingular}ByIds(ids: [ID!]!): [${tableNameSingular}]!
|
package/dist/index.js
CHANGED
|
@@ -1230,7 +1230,6 @@ var rbacSchema = {
|
|
|
1230
1230
|
};
|
|
1231
1231
|
var addRBACfields = (schema) => {
|
|
1232
1232
|
if (schema.RBAC) {
|
|
1233
|
-
console.log(`[EXULU] Adding rights_mode field to ${schema.name.plural} table.`);
|
|
1234
1233
|
schema.fields.push({
|
|
1235
1234
|
name: "rights_mode",
|
|
1236
1235
|
type: "text",
|
|
@@ -2805,7 +2804,6 @@ function createSDL(tables, contexts, agents, tools) {
|
|
|
2805
2804
|
const tableNamePlural = table.name.plural.toLowerCase();
|
|
2806
2805
|
const tableNameSingular = table.name.singular.toLowerCase();
|
|
2807
2806
|
const tableNameSingularUpperCaseFirst = table.name.singular.charAt(0).toUpperCase() + table.name.singular.slice(1);
|
|
2808
|
-
console.log("[EXULU] Adding table >>>>>", tableNamePlural);
|
|
2809
2807
|
typeDefs += `
|
|
2810
2808
|
${tableNameSingular}ById(id: ID!): ${tableNameSingular}
|
|
2811
2809
|
${tableNameSingular}ByIds(ids: [ID!]!): [${tableNameSingular}]!
|