@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.
- package/esm2020/lib/_internal/enums/goal.enum.mjs +5 -4
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/connection.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +7 -1
- package/esm2020/lib/_internal/objects/connection.mjs +8 -1
- package/fesm2015/vendasta-ai-assistants.mjs +16 -3
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +16 -3
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/enums/goal.enum.d.ts +4 -3
- package/lib/_internal/interfaces/api.interface.d.ts +1 -0
- package/lib/_internal/interfaces/connection.interface.d.ts +2 -0
- package/lib/_internal/objects/api.d.ts +1 -0
- package/lib/_internal/objects/connection.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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;
|