@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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/ai-assistants",
3
- "version": "0.52.0",
3
+ "version": "0.53.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"