n8n-nodes-soar 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.
- package/dist/common/asset.js +6 -3
- package/package.json +1 -1
package/dist/common/asset.js
CHANGED
@@ -81,7 +81,8 @@ class Asset {
|
|
81
81
|
basic: {
|
82
82
|
host: n
|
83
83
|
},
|
84
|
-
metadata: this.metadata
|
84
|
+
metadata: this.metadata,
|
85
|
+
success: true
|
85
86
|
});
|
86
87
|
})
|
87
88
|
];
|
@@ -102,7 +103,8 @@ class Asset {
|
|
102
103
|
domain: this.basic.domain,
|
103
104
|
ip: n
|
104
105
|
},
|
105
|
-
metadata: this.metadata
|
106
|
+
metadata: this.metadata,
|
107
|
+
success: true
|
106
108
|
});
|
107
109
|
});
|
108
110
|
} else {
|
@@ -120,7 +122,8 @@ class Asset {
|
|
120
122
|
port: n.port,
|
121
123
|
protocol: n.protocol
|
122
124
|
},
|
123
|
-
metadata: this.metadata
|
125
|
+
metadata: this.metadata,
|
126
|
+
success: true
|
124
127
|
});
|
125
128
|
});
|
126
129
|
} else {
|