@spytecgps/nova-orm 1.3.1-rc4 → 1.3.1-rc5
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 +8 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9658,11 +9658,17 @@ class NovaDataSource {
|
|
|
9658
9658
|
this.logger = logger;
|
|
9659
9659
|
const entities = [];
|
|
9660
9660
|
for (const key in Entities) {
|
|
9661
|
-
if (
|
|
9661
|
+
// if (Entities.hasOwnProperty(key)) {
|
|
9662
|
+
const entity = Entities[key];
|
|
9663
|
+
entities.push(entity);
|
|
9664
|
+
// }
|
|
9662
9665
|
}
|
|
9663
9666
|
const subscribers = [];
|
|
9664
9667
|
for (const key in Subscribers) {
|
|
9665
|
-
if (
|
|
9668
|
+
// if (Subscribers.hasOwnProperty(key)) {
|
|
9669
|
+
const subscriber = Subscribers[key];
|
|
9670
|
+
subscribers.push(subscriber);
|
|
9671
|
+
// }
|
|
9666
9672
|
}
|
|
9667
9673
|
const baseConfig = {
|
|
9668
9674
|
host: 'aws.connect.psdb.cloud',
|