@vendasta/ai-assistants 0.50.0 → 0.51.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.
@@ -826,6 +826,9 @@ class FunctionParameter {
826
826
  if (typeof this.required !== 'undefined') {
827
827
  toReturn['required'] = this.required;
828
828
  }
829
+ if (typeof this.enumValues !== 'undefined') {
830
+ toReturn['enumValues'] = this.enumValues;
831
+ }
829
832
  return toReturn;
830
833
  }
831
834
  }