@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.
@@ -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
  }