@vendasta/ai-assistants 0.52.0 → 0.53.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.
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +7 -1
- package/fesm2015/vendasta-ai-assistants.mjs +6 -0
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +6 -0
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +2 -0
- package/lib/_internal/objects/api.d.ts +2 -0
- package/package.json +1 -1
|
@@ -3080,6 +3080,9 @@ class DeleteFunctionRequest {
|
|
|
3080
3080
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3081
3081
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3082
3082
|
}
|
|
3083
|
+
if (typeof this.removeFromGoals !== 'undefined') {
|
|
3084
|
+
toReturn['removeFromGoals'] = this.removeFromGoals;
|
|
3085
|
+
}
|
|
3083
3086
|
return toReturn;
|
|
3084
3087
|
}
|
|
3085
3088
|
}
|
|
@@ -3106,6 +3109,9 @@ class DeleteGoalRequest {
|
|
|
3106
3109
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3107
3110
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3108
3111
|
}
|
|
3112
|
+
if (typeof this.removeFromAssistants !== 'undefined') {
|
|
3113
|
+
toReturn['removeFromAssistants'] = this.removeFromAssistants;
|
|
3114
|
+
}
|
|
3109
3115
|
return toReturn;
|
|
3110
3116
|
}
|
|
3111
3117
|
}
|