@vendasta/ai-assistants 0.33.0 → 0.34.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 +1 -0
- package/lib/_internal/objects/api.d.ts +1 -0
- package/package.json +1 -1
|
@@ -119,6 +119,7 @@ export interface ListGoalsRequestFiltersInterface {
|
|
|
119
119
|
namespace?: NamespaceInterface;
|
|
120
120
|
type?: e.GoalType;
|
|
121
121
|
supportedChannels?: e.GoalChannel[];
|
|
122
|
+
namespaces?: NamespaceInterface[];
|
|
122
123
|
}
|
|
123
124
|
export interface GenerateChatAnswerRequestInterface {
|
|
124
125
|
connectionKey?: ConnectionKeyInterface;
|
|
@@ -167,6 +167,7 @@ export declare class ListGoalsRequestFilters implements i.ListGoalsRequestFilter
|
|
|
167
167
|
namespace: Namespace;
|
|
168
168
|
type: e.GoalType;
|
|
169
169
|
supportedChannels: e.GoalChannel[];
|
|
170
|
+
namespaces: Namespace[];
|
|
170
171
|
static fromProto(proto: any): ListGoalsRequestFilters;
|
|
171
172
|
constructor(kwargs?: i.ListGoalsRequestFiltersInterface);
|
|
172
173
|
toApiJson(): object;
|