@vendasta/ai-assistants 0.8.0 → 0.9.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.
@@ -1,6 +1,7 @@
1
1
  export declare enum GoalType {
2
2
  GOAL_TYPE_INVALID = 0,
3
- GOAL_TYPE_KNOWLEDGE = 1,
4
- GOAL_TYPE_PERSONALITY = 2,
5
- GOAL_TYPE_CUSTOM = 3
3
+ GOAL_TYPE_OBJECTIVE = 1,
4
+ GOAL_TYPE_KNOWLEDGE = 2,
5
+ GOAL_TYPE_PERSONALITY = 3,
6
+ GOAL_TYPE_CUSTOM = 4
6
7
  }
@@ -63,6 +63,7 @@ export interface ListFunctionRequestFiltersInterface {
63
63
  }
64
64
  export interface ListConnectionsRequestFiltersInterface {
65
65
  namespace?: NamespaceInterface;
66
+ assistantType?: e.AssistantType;
66
67
  }
67
68
  export interface ListAssistantRequestFiltersInterface {
68
69
  namespace?: NamespaceInterface;
@@ -1,5 +1,6 @@
1
1
  import { AssistantKeyInterface } from './assistant.interface';
2
2
  import { NamespaceInterface } from './namespace.interface';
3
+ import * as e from '../enums';
3
4
  export interface ConnectionInterface {
4
5
  id?: string;
5
6
  namespace?: NamespaceInterface;
@@ -10,6 +11,7 @@ export interface ConnectionInterface {
10
11
  connectionTypeName?: string;
11
12
  iconUrl?: string;
12
13
  isConnectionLocked?: boolean;
14
+ supportedAssistantTypes?: e.AssistantType[];
13
15
  }
14
16
  export interface ConnectionKeyInterface {
15
17
  id?: string;
@@ -104,6 +104,7 @@ export declare class ListFunctionRequestFilters implements i.ListFunctionRequest
104
104
  }
105
105
  export declare class ListConnectionsRequestFilters implements i.ListConnectionsRequestFiltersInterface {
106
106
  namespace: Namespace;
107
+ assistantType: e.AssistantType;
107
108
  static fromProto(proto: any): ListConnectionsRequestFilters;
108
109
  constructor(kwargs?: i.ListConnectionsRequestFiltersInterface);
109
110
  toApiJson(): object;
@@ -1,6 +1,7 @@
1
1
  import * as i from '../interfaces';
2
2
  import { AssistantKey } from './assistant';
3
3
  import { Namespace } from './namespace';
4
+ import * as e from '../enums';
4
5
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
5
6
  export declare class Connection implements i.ConnectionInterface {
6
7
  id: string;
@@ -12,6 +13,7 @@ export declare class Connection implements i.ConnectionInterface {
12
13
  connectionTypeName: string;
13
14
  iconUrl: string;
14
15
  isConnectionLocked: boolean;
16
+ supportedAssistantTypes: e.AssistantType[];
15
17
  static fromProto(proto: any): Connection;
16
18
  constructor(kwargs?: i.ConnectionInterface);
17
19
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/ai-assistants",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"