@vendasta/mission-control 3.6.0 → 3.7.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
|
@@ -866,6 +866,9 @@ class AppConfig {
|
|
|
866
866
|
if (typeof this.deliveryMethods !== 'undefined' && this.deliveryMethods !== null) {
|
|
867
867
|
toReturn['deliveryMethods'] = 'toApiJson' in this.deliveryMethods ? this.deliveryMethods.toApiJson() : this.deliveryMethods;
|
|
868
868
|
}
|
|
869
|
+
if (typeof this.customEnvName !== 'undefined') {
|
|
870
|
+
toReturn['customEnvName'] = this.customEnvName;
|
|
871
|
+
}
|
|
869
872
|
return toReturn;
|
|
870
873
|
}
|
|
871
874
|
}
|