@vendasta/mission-control 3.2.0 → 3.3.0
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/esm2020/lib/_internal/interfaces/mission-control.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/mission-control.mjs +4 -1
- package/fesm2015/vendasta-mission-control.mjs +3 -0
- package/fesm2015/vendasta-mission-control.mjs.map +1 -1
- package/fesm2020/vendasta-mission-control.mjs +3 -0
- package/fesm2020/vendasta-mission-control.mjs.map +1 -1
- package/lib/_internal/interfaces/mission-control.interface.d.ts +1 -0
- package/lib/_internal/objects/mission-control.d.ts +1 -0
- package/package.json +3 -3
|
@@ -1409,6 +1409,9 @@ class Event {
|
|
|
1409
1409
|
if (typeof this.triggerName !== 'undefined') {
|
|
1410
1410
|
toReturn['triggerName'] = this.triggerName;
|
|
1411
1411
|
}
|
|
1412
|
+
if (typeof this.buildLogUrl !== 'undefined') {
|
|
1413
|
+
toReturn['buildLogUrl'] = this.buildLogUrl;
|
|
1414
|
+
}
|
|
1412
1415
|
return toReturn;
|
|
1413
1416
|
}
|
|
1414
1417
|
}
|