@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.
- package/esm2020/lib/_internal/interfaces/function.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/function.mjs +4 -1
- package/fesm2015/vendasta-ai-assistants.mjs +3 -0
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +3 -0
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/interfaces/function.interface.d.ts +1 -0
- package/lib/_internal/objects/function.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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
|
}
|