@vendasta/mission-control 3.9.0 → 3.10.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 +1 -1
|
@@ -1226,6 +1226,9 @@ class Delivery {
|
|
|
1226
1226
|
if (typeof this.buildId !== 'undefined') {
|
|
1227
1227
|
toReturn['buildId'] = this.buildId;
|
|
1228
1228
|
}
|
|
1229
|
+
if (typeof this.vulnerabilityRiskOverrideReason !== 'undefined') {
|
|
1230
|
+
toReturn['vulnerabilityRiskOverrideReason'] = this.vulnerabilityRiskOverrideReason;
|
|
1231
|
+
}
|
|
1229
1232
|
return toReturn;
|
|
1230
1233
|
}
|
|
1231
1234
|
}
|