@vendasta/ai-assistants 0.64.0 → 0.66.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.
@@ -57,6 +57,7 @@ var AssistantType;
57
57
  AssistantType[AssistantType["ASSISTANT_TYPE_CUSTOM"] = 5] = "ASSISTANT_TYPE_CUSTOM";
58
58
  AssistantType[AssistantType["ASSISTANT_TYPE_SALES_COACH"] = 6] = "ASSISTANT_TYPE_SALES_COACH";
59
59
  AssistantType[AssistantType["ASSISTANT_TYPE_REPUTATION_MANAGEMENT_REVIEW_AGENT"] = 7] = "ASSISTANT_TYPE_REPUTATION_MANAGEMENT_REVIEW_AGENT";
60
+ AssistantType[AssistantType["ASSISTANT_TYPE_MARKETER"] = 8] = "ASSISTANT_TYPE_MARKETER";
60
61
  })(AssistantType || (AssistantType = {}));
61
62
 
62
63
  // *********************************
@@ -2307,6 +2308,9 @@ class ConfigVoiceConfig {
2307
2308
  if (typeof this.modelConfig !== 'undefined' && this.modelConfig !== null) {
2308
2309
  toReturn['modelConfig'] = 'toApiJson' in this.modelConfig ? this.modelConfig.toApiJson() : this.modelConfig;
2309
2310
  }
2311
+ if (typeof this.preGreetingMessage !== 'undefined') {
2312
+ toReturn['preGreetingMessage'] = this.preGreetingMessage;
2313
+ }
2310
2314
  return toReturn;
2311
2315
  }
2312
2316
  }