@vendasta/ai-assistants 0.40.0 → 0.43.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.
@@ -108,6 +108,7 @@ export interface ListConnectionsRequestFiltersInterface {
108
108
  }
109
109
  export interface ListFunctionRequestFiltersInterface {
110
110
  namespace?: NamespaceInterface;
111
+ namespaces?: NamespaceInterface[];
111
112
  }
112
113
  export interface ListAvailableModelsRequestFiltersInterface {
113
114
  vendor?: e.ModelVendor[];
@@ -14,6 +14,7 @@ export interface GoalInterface {
14
14
  updated?: Date;
15
15
  supportedChannels?: e.GoalChannel[];
16
16
  managed?: boolean;
17
+ overrideOf?: GoalKeyInterface;
17
18
  }
18
19
  export interface GoalKeyInterface {
19
20
  id?: string;
@@ -13,6 +13,8 @@ export interface TestResultCitationInterface {
13
13
  link?: string;
14
14
  reason?: string;
15
15
  fileUrl?: string;
16
+ functionArguments?: string;
17
+ functionContent?: string;
16
18
  }
17
19
  export interface DeleteTestCasesRequestInterface {
18
20
  assistant?: AssistantKeyInterface;
@@ -179,6 +179,7 @@ export declare class ListConnectionsRequestFilters implements i.ListConnectionsR
179
179
  }
180
180
  export declare class ListFunctionRequestFilters implements i.ListFunctionRequestFiltersInterface {
181
181
  namespace: Namespace;
182
+ namespaces: Namespace[];
182
183
  static fromProto(proto: any): ListFunctionRequestFilters;
183
184
  constructor(kwargs?: i.ListFunctionRequestFiltersInterface);
184
185
  toApiJson(): object;
@@ -16,6 +16,7 @@ export declare class Goal implements i.GoalInterface {
16
16
  updated: Date;
17
17
  supportedChannels: e.GoalChannel[];
18
18
  managed: boolean;
19
+ overrideOf: GoalKey;
19
20
  static fromProto(proto: any): Goal;
20
21
  constructor(kwargs?: i.GoalInterface);
21
22
  toApiJson(): object;
@@ -18,6 +18,8 @@ export declare class TestResultCitation implements i.TestResultCitationInterface
18
18
  link: string;
19
19
  reason: string;
20
20
  fileUrl: string;
21
+ functionArguments: string;
22
+ functionContent: string;
21
23
  static fromProto(proto: any): TestResultCitation;
22
24
  constructor(kwargs?: i.TestResultCitationInterface);
23
25
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/ai-assistants",
3
- "version": "0.40.0",
3
+ "version": "0.43.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"