uranio 0.1.20 → 0.1.21

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.
@@ -28,6 +28,6 @@
28
28
  "typescript": "^5.2.2"
29
29
  },
30
30
  "dependencies": {
31
- "uranio": "0.1.20"
31
+ "uranio": "0.1.21"
32
32
  }
33
33
  }
package/dist/bin.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uranio",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
4
4
  "description": "Uranio is a type-safe ODM for MongoDB",
5
5
  "main": "dist/index.js",
6
6
  "repository": {
@@ -126,6 +126,7 @@ function _get_uranio_extended_interfaces(params: GenerateParams) {
126
126
  }
127
127
  }
128
128
  // log.trace(uranio_extended_interfaces);
129
+ _debug_interfaces(uranio_extended_interfaces);
129
130
  return uranio_extended_interfaces;
130
131
  }
131
132
 
@@ -238,3 +239,9 @@ function _first_letter_lowercase(str: string): string {
238
239
  }
239
240
  return str.charAt(0).toLowerCase() + str.slice(1);
240
241
  }
242
+
243
+ function _debug_interfaces(uranio_extended_interfaces: plutonio.Interfaces){
244
+ for(let [key, _value] of Object.entries(uranio_extended_interfaces)){
245
+ log.info(`Processing Interface: ${key}`);
246
+ }
247
+ }