@vendasta/ai-assistants 0.41.0 → 0.43.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.
@@ -2706,6 +2706,9 @@ class ListFunctionRequestFilters {
2706
2706
  if (proto.namespace) {
2707
2707
  m.namespace = Namespace.fromProto(proto.namespace);
2708
2708
  }
2709
+ if (proto.namespaces) {
2710
+ m.namespaces = proto.namespaces.map(Namespace.fromProto);
2711
+ }
2709
2712
  return m;
2710
2713
  }
2711
2714
  constructor(kwargs) {
@@ -2719,6 +2722,9 @@ class ListFunctionRequestFilters {
2719
2722
  if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
2720
2723
  toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
2721
2724
  }
2725
+ if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
2726
+ toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
2727
+ }
2722
2728
  return toReturn;
2723
2729
  }
2724
2730
  }