@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
|
@@ -3079,6 +3079,9 @@ class DeleteFunctionRequest {
|
|
|
3079
3079
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3080
3080
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3081
3081
|
}
|
|
3082
|
+
if (typeof this.removeFromGoals !== 'undefined') {
|
|
3083
|
+
toReturn['removeFromGoals'] = this.removeFromGoals;
|
|
3084
|
+
}
|
|
3082
3085
|
return toReturn;
|
|
3083
3086
|
}
|
|
3084
3087
|
}
|
|
@@ -3105,6 +3108,9 @@ class DeleteGoalRequest {
|
|
|
3105
3108
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3106
3109
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3107
3110
|
}
|
|
3111
|
+
if (typeof this.removeFromAssistants !== 'undefined') {
|
|
3112
|
+
toReturn['removeFromAssistants'] = this.removeFromAssistants;
|
|
3113
|
+
}
|
|
3108
3114
|
return toReturn;
|
|
3109
3115
|
}
|
|
3110
3116
|
}
|