@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
|
@@ -70,10 +70,12 @@ export interface DeleteConnectionRequestInterface {
|
|
|
70
70
|
export interface DeleteFunctionRequestInterface {
|
|
71
71
|
id?: string;
|
|
72
72
|
namespace?: NamespaceInterface;
|
|
73
|
+
removeFromGoals?: boolean;
|
|
73
74
|
}
|
|
74
75
|
export interface DeleteGoalRequestInterface {
|
|
75
76
|
id?: string;
|
|
76
77
|
namespace?: NamespaceInterface;
|
|
78
|
+
removeFromAssistants?: boolean;
|
|
77
79
|
}
|
|
78
80
|
export interface DeletePromptModuleRequestInterface {
|
|
79
81
|
id?: string;
|
|
@@ -111,6 +111,7 @@ export declare class DeleteConnectionRequest implements i.DeleteConnectionReques
|
|
|
111
111
|
export declare class DeleteFunctionRequest implements i.DeleteFunctionRequestInterface {
|
|
112
112
|
id: string;
|
|
113
113
|
namespace: Namespace;
|
|
114
|
+
removeFromGoals: boolean;
|
|
114
115
|
static fromProto(proto: any): DeleteFunctionRequest;
|
|
115
116
|
constructor(kwargs?: i.DeleteFunctionRequestInterface);
|
|
116
117
|
toApiJson(): object;
|
|
@@ -118,6 +119,7 @@ export declare class DeleteFunctionRequest implements i.DeleteFunctionRequestInt
|
|
|
118
119
|
export declare class DeleteGoalRequest implements i.DeleteGoalRequestInterface {
|
|
119
120
|
id: string;
|
|
120
121
|
namespace: Namespace;
|
|
122
|
+
removeFromAssistants: boolean;
|
|
121
123
|
static fromProto(proto: any): DeleteGoalRequest;
|
|
122
124
|
constructor(kwargs?: i.DeleteGoalRequestInterface);
|
|
123
125
|
toApiJson(): object;
|