@vendasta/ai-assistants 0.64.0 → 0.65.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.
@@ -2307,6 +2307,9 @@ class ConfigVoiceConfig {
2307
2307
  if (typeof this.modelConfig !== 'undefined' && this.modelConfig !== null) {
2308
2308
  toReturn['modelConfig'] = 'toApiJson' in this.modelConfig ? this.modelConfig.toApiJson() : this.modelConfig;
2309
2309
  }
2310
+ if (typeof this.preGreetingMessage !== 'undefined') {
2311
+ toReturn['preGreetingMessage'] = this.preGreetingMessage;
2312
+ }
2310
2313
  return toReturn;
2311
2314
  }
2312
2315
  }