@vendasta/ai-assistants 0.45.0 → 0.45.1

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.
@@ -447,6 +447,9 @@ class Function {
447
447
  if (typeof this.authStrategy !== 'undefined' && this.authStrategy !== null) {
448
448
  toReturn['authStrategy'] = 'toApiJson' in this.authStrategy ? this.authStrategy.toApiJson() : this.authStrategy;
449
449
  }
450
+ if (typeof this.mcpId !== 'undefined') {
451
+ toReturn['mcpId'] = this.mcpId;
452
+ }
450
453
  return toReturn;
451
454
  }
452
455
  }