@vendasta/ai-assistants 0.3.0 → 0.5.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/assistant.api.service.mjs +7 -2
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/assistant.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/connection.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +125 -1
- package/esm2020/lib/_internal/objects/assistant.mjs +27 -1
- package/esm2020/lib/_internal/objects/connection.mjs +11 -1
- package/esm2020/lib/_internal/objects/index.mjs +3 -3
- package/esm2020/lib/_internal/prompt.api.service.mjs +7 -2
- package/fesm2015/vendasta-ai-assistants.mjs +224 -55
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +224 -55
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/assistant.api.service.d.ts +3 -2
- package/lib/_internal/interfaces/api.interface.d.ts +17 -0
- package/lib/_internal/interfaces/assistant.interface.d.ts +4 -0
- package/lib/_internal/interfaces/connection.interface.d.ts +3 -0
- package/lib/_internal/interfaces/index.d.ts +2 -2
- package/lib/_internal/objects/api.d.ts +32 -0
- package/lib/_internal/objects/assistant.d.ts +7 -0
- package/lib/_internal/objects/connection.d.ts +3 -0
- package/lib/_internal/objects/index.d.ts +2 -2
- package/lib/_internal/prompt.api.service.d.ts +3 -2
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DeleteAssistantRequest, GenerateChatAnswerRequest, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, ListAssistantRequest, ListAssistantResponse, UpsertAssistantRequest, UpsertAssistantResponse } from './objects/';
|
|
2
|
-
import { DeleteAssistantRequestInterface, GenerateChatAnswerRequestInterface, GetAssistantRequestInterface, GetChatAnswerFunctionExecutionJobRequestInterface, ListAssistantRequestInterface, UpsertAssistantRequestInterface } from './interfaces/';
|
|
1
|
+
import { DeleteAssistantRequest, GenerateChatAnswerRequest, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantResponse, UpsertAssistantRequest, UpsertAssistantResponse } from './objects/';
|
|
2
|
+
import { DeleteAssistantRequestInterface, GenerateChatAnswerRequestInterface, GetAssistantRequestInterface, GetChatAnswerFunctionExecutionJobRequestInterface, ListAllAssistantsAssociatedToConnectionRequestInterface, ListAssistantRequestInterface, UpsertAssistantRequestInterface } from './interfaces/';
|
|
3
3
|
import { HttpResponse } from '@angular/common/http';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -12,6 +12,7 @@ export declare class AssistantApiService {
|
|
|
12
12
|
getAssistant(r: GetAssistantRequest | GetAssistantRequestInterface): Observable<GetAssistantResponse>;
|
|
13
13
|
deleteAssistant(r: DeleteAssistantRequest | DeleteAssistantRequestInterface): Observable<HttpResponse<null>>;
|
|
14
14
|
listAssistant(r: ListAssistantRequest | ListAssistantRequestInterface): Observable<ListAssistantResponse>;
|
|
15
|
+
listAllAssistantsAssociatedToConnection(r: ListAllAssistantsAssociatedToConnectionRequest | ListAllAssistantsAssociatedToConnectionRequestInterface): Observable<ListAllAssistantsAssociatedToConnectionResponse>;
|
|
15
16
|
generateChatAnswer(r: GenerateChatAnswerRequest | GenerateChatAnswerRequestInterface): Observable<GenerateChatAnswerResponse>;
|
|
16
17
|
getChatAnswerFunctionExecutionJob(r: GetChatAnswerFunctionExecutionJobRequest | GetChatAnswerFunctionExecutionJobRequestInterface): Observable<GetChatAnswerFunctionExecutionJobResponse>;
|
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<AssistantApiService, never>;
|
|
@@ -30,6 +30,9 @@ export interface ListAssistantRequestFiltersInterface {
|
|
|
30
30
|
namespace?: NamespaceInterface;
|
|
31
31
|
type?: e.AssistantType;
|
|
32
32
|
}
|
|
33
|
+
export interface ListAllAssistantsAssociatedToConnectionRequestFiltersInterface {
|
|
34
|
+
type?: e.AssistantType;
|
|
35
|
+
}
|
|
33
36
|
export interface ListConnectionsRequestFiltersInterface {
|
|
34
37
|
namespace?: NamespaceInterface;
|
|
35
38
|
}
|
|
@@ -74,6 +77,13 @@ export interface GetDeployedPromptVersionResponseInterface {
|
|
|
74
77
|
prompt?: PromptInterface;
|
|
75
78
|
deployedPromptVersion?: PromptVersionInterface;
|
|
76
79
|
}
|
|
80
|
+
export interface GetMultiDeployedPromptVersionRequestInterface {
|
|
81
|
+
ids?: string[];
|
|
82
|
+
}
|
|
83
|
+
export interface GetMultiDeployedPromptVersionResponseInterface {
|
|
84
|
+
prompts?: PromptInterface[];
|
|
85
|
+
deployedPromptVersions?: PromptVersionInterface[];
|
|
86
|
+
}
|
|
77
87
|
export interface GetPromptRequestInterface {
|
|
78
88
|
id?: string;
|
|
79
89
|
}
|
|
@@ -87,6 +97,13 @@ export interface GetPromptVersionRequestInterface {
|
|
|
87
97
|
export interface GetPromptVersionResponseInterface {
|
|
88
98
|
promptVersion?: PromptVersionInterface;
|
|
89
99
|
}
|
|
100
|
+
export interface ListAllAssistantsAssociatedToConnectionRequestInterface {
|
|
101
|
+
connectionKey?: ConnectionKeyInterface;
|
|
102
|
+
filters?: ListAllAssistantsAssociatedToConnectionRequestFiltersInterface;
|
|
103
|
+
}
|
|
104
|
+
export interface ListAllAssistantsAssociatedToConnectionResponseInterface {
|
|
105
|
+
assistants?: AssistantInterface[];
|
|
106
|
+
}
|
|
90
107
|
export interface ListAssistantRequestInterface {
|
|
91
108
|
filters?: ListAssistantRequestFiltersInterface;
|
|
92
109
|
pagingOptions?: PagedRequestOptionsInterface;
|
|
@@ -8,6 +8,10 @@ export interface AssistantInterface {
|
|
|
8
8
|
avatarUrl?: string;
|
|
9
9
|
config?: ConfigInterface;
|
|
10
10
|
}
|
|
11
|
+
export interface AssistantKeyInterface {
|
|
12
|
+
id?: string;
|
|
13
|
+
namespace?: NamespaceInterface;
|
|
14
|
+
}
|
|
11
15
|
export interface ConfigInterface {
|
|
12
16
|
inboxConfig?: ConfigInboxConfigInterface;
|
|
13
17
|
}
|
|
@@ -1,12 +1,15 @@
|
|
|
1
|
+
import { AssistantKeyInterface } from './assistant.interface';
|
|
1
2
|
import { NamespaceInterface } from './namespace.interface';
|
|
2
3
|
export interface ConnectionInterface {
|
|
3
4
|
id?: string;
|
|
4
5
|
namespace?: NamespaceInterface;
|
|
5
6
|
name?: string;
|
|
6
7
|
configurationUrl?: string;
|
|
8
|
+
assistantKeys?: AssistantKeyInterface[];
|
|
7
9
|
connectionType?: string;
|
|
8
10
|
connectionTypeName?: string;
|
|
9
11
|
iconUrl?: string;
|
|
12
|
+
isConnectionLocked?: boolean;
|
|
10
13
|
}
|
|
11
14
|
export interface ConnectionKeyInterface {
|
|
12
15
|
id?: string;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export { NamespaceAccountGroupNamespaceInterface, NamespaceInterface, NamespacePartnerNamespaceInterface, NamespaceSystemNamespaceInterface, } from './namespace.interface';
|
|
2
|
+
export { AssistantInterface, AssistantKeyInterface, ConfigInterface, ConfigInboxConfigInterface, } from './assistant.interface';
|
|
2
3
|
export { ConnectionInterface, ConnectionKeyInterface, } from './connection.interface';
|
|
3
|
-
export { AssistantInterface, ConfigInterface, ConfigInboxConfigInterface, } from './assistant.interface';
|
|
4
4
|
export { KeyValuePairInterface, } from './common.interface';
|
|
5
5
|
export { ChatAnswerFunctionExecutionJobInterface, ChatAnswerFunctionExecutionJobResultInterface, ChatMessageInterface, ChatUserInfoInterface, } from './answer.interface';
|
|
6
6
|
export { PromptInterface, PromptVersionInterface, } from './prompt.interface';
|
|
7
7
|
export { AccessInterface, } from './annotations.interface';
|
|
8
8
|
export { PagedRequestOptionsInterface, PagedResponseMetadataInterface, } from './paging.interface';
|
|
9
|
-
export { CreatePromptRequestInterface, DeleteAssistantRequestInterface, DeleteConnectionRequestInterface, DeletePromptRequestInterface, DeployPromptRequestInterface, ListAssistantRequestFiltersInterface, ListConnectionsRequestFiltersInterface, GenerateChatAnswerRequestInterface, GenerateChatAnswerResponseInterface, GetAssistantRequestInterface, GetAssistantResponseInterface, GetChatAnswerFunctionExecutionJobRequestInterface, GetChatAnswerFunctionExecutionJobResponseInterface, GetConnectionRequestInterface, GetConnectionResponseInterface, GetDeployedPromptVersionRequestInterface, GetDeployedPromptVersionResponseInterface, GetPromptRequestInterface, GetPromptResponseInterface, GetPromptVersionRequestInterface, GetPromptVersionResponseInterface, ListAssistantRequestInterface, ListAssistantResponseInterface, ListConnectionsRequestInterface, ListConnectionsResponseInterface, ListPromptRequestInterface, ListPromptResponseInterface, ListPromptVersionsRequestInterface, ListPromptVersionsResponseInterface, GenerateChatAnswerRequestOptionsInterface, UpdatePromptRequestInterface, UpsertAssistantRequestInterface, UpsertAssistantResponseInterface, UpsertConnectionRequestInterface, } from './api.interface';
|
|
9
|
+
export { CreatePromptRequestInterface, DeleteAssistantRequestInterface, DeleteConnectionRequestInterface, DeletePromptRequestInterface, DeployPromptRequestInterface, ListAssistantRequestFiltersInterface, ListAllAssistantsAssociatedToConnectionRequestFiltersInterface, ListConnectionsRequestFiltersInterface, GenerateChatAnswerRequestInterface, GenerateChatAnswerResponseInterface, GetAssistantRequestInterface, GetAssistantResponseInterface, GetChatAnswerFunctionExecutionJobRequestInterface, GetChatAnswerFunctionExecutionJobResponseInterface, GetConnectionRequestInterface, GetConnectionResponseInterface, GetDeployedPromptVersionRequestInterface, GetDeployedPromptVersionResponseInterface, GetMultiDeployedPromptVersionRequestInterface, GetMultiDeployedPromptVersionResponseInterface, GetPromptRequestInterface, GetPromptResponseInterface, GetPromptVersionRequestInterface, GetPromptVersionResponseInterface, ListAllAssistantsAssociatedToConnectionRequestInterface, ListAllAssistantsAssociatedToConnectionResponseInterface, ListAssistantRequestInterface, ListAssistantResponseInterface, ListConnectionsRequestInterface, ListConnectionsResponseInterface, ListPromptRequestInterface, ListPromptResponseInterface, ListPromptVersionsRequestInterface, ListPromptVersionsResponseInterface, GenerateChatAnswerRequestOptionsInterface, UpdatePromptRequestInterface, UpsertAssistantRequestInterface, UpsertAssistantResponseInterface, UpsertConnectionRequestInterface, } from './api.interface';
|
|
@@ -50,6 +50,12 @@ export declare class ListAssistantRequestFilters implements i.ListAssistantReque
|
|
|
50
50
|
constructor(kwargs?: i.ListAssistantRequestFiltersInterface);
|
|
51
51
|
toApiJson(): object;
|
|
52
52
|
}
|
|
53
|
+
export declare class ListAllAssistantsAssociatedToConnectionRequestFilters implements i.ListAllAssistantsAssociatedToConnectionRequestFiltersInterface {
|
|
54
|
+
type: e.AssistantType;
|
|
55
|
+
static fromProto(proto: any): ListAllAssistantsAssociatedToConnectionRequestFilters;
|
|
56
|
+
constructor(kwargs?: i.ListAllAssistantsAssociatedToConnectionRequestFiltersInterface);
|
|
57
|
+
toApiJson(): object;
|
|
58
|
+
}
|
|
53
59
|
export declare class ListConnectionsRequestFilters implements i.ListConnectionsRequestFiltersInterface {
|
|
54
60
|
namespace: Namespace;
|
|
55
61
|
static fromProto(proto: any): ListConnectionsRequestFilters;
|
|
@@ -127,6 +133,19 @@ export declare class GetDeployedPromptVersionResponse implements i.GetDeployedPr
|
|
|
127
133
|
constructor(kwargs?: i.GetDeployedPromptVersionResponseInterface);
|
|
128
134
|
toApiJson(): object;
|
|
129
135
|
}
|
|
136
|
+
export declare class GetMultiDeployedPromptVersionRequest implements i.GetMultiDeployedPromptVersionRequestInterface {
|
|
137
|
+
ids: string[];
|
|
138
|
+
static fromProto(proto: any): GetMultiDeployedPromptVersionRequest;
|
|
139
|
+
constructor(kwargs?: i.GetMultiDeployedPromptVersionRequestInterface);
|
|
140
|
+
toApiJson(): object;
|
|
141
|
+
}
|
|
142
|
+
export declare class GetMultiDeployedPromptVersionResponse implements i.GetMultiDeployedPromptVersionResponseInterface {
|
|
143
|
+
prompts: Prompt[];
|
|
144
|
+
deployedPromptVersions: PromptVersion[];
|
|
145
|
+
static fromProto(proto: any): GetMultiDeployedPromptVersionResponse;
|
|
146
|
+
constructor(kwargs?: i.GetMultiDeployedPromptVersionResponseInterface);
|
|
147
|
+
toApiJson(): object;
|
|
148
|
+
}
|
|
130
149
|
export declare class GetPromptRequest implements i.GetPromptRequestInterface {
|
|
131
150
|
id: string;
|
|
132
151
|
static fromProto(proto: any): GetPromptRequest;
|
|
@@ -152,6 +171,19 @@ export declare class GetPromptVersionResponse implements i.GetPromptVersionRespo
|
|
|
152
171
|
constructor(kwargs?: i.GetPromptVersionResponseInterface);
|
|
153
172
|
toApiJson(): object;
|
|
154
173
|
}
|
|
174
|
+
export declare class ListAllAssistantsAssociatedToConnectionRequest implements i.ListAllAssistantsAssociatedToConnectionRequestInterface {
|
|
175
|
+
connectionKey: ConnectionKey;
|
|
176
|
+
filters: ListAllAssistantsAssociatedToConnectionRequestFilters;
|
|
177
|
+
static fromProto(proto: any): ListAllAssistantsAssociatedToConnectionRequest;
|
|
178
|
+
constructor(kwargs?: i.ListAllAssistantsAssociatedToConnectionRequestInterface);
|
|
179
|
+
toApiJson(): object;
|
|
180
|
+
}
|
|
181
|
+
export declare class ListAllAssistantsAssociatedToConnectionResponse implements i.ListAllAssistantsAssociatedToConnectionResponseInterface {
|
|
182
|
+
assistants: Assistant[];
|
|
183
|
+
static fromProto(proto: any): ListAllAssistantsAssociatedToConnectionResponse;
|
|
184
|
+
constructor(kwargs?: i.ListAllAssistantsAssociatedToConnectionResponseInterface);
|
|
185
|
+
toApiJson(): object;
|
|
186
|
+
}
|
|
155
187
|
export declare class ListAssistantRequest implements i.ListAssistantRequestInterface {
|
|
156
188
|
filters: ListAssistantRequestFilters;
|
|
157
189
|
pagingOptions: PagedRequestOptions;
|
|
@@ -13,6 +13,13 @@ export declare class Assistant implements i.AssistantInterface {
|
|
|
13
13
|
constructor(kwargs?: i.AssistantInterface);
|
|
14
14
|
toApiJson(): object;
|
|
15
15
|
}
|
|
16
|
+
export declare class AssistantKey implements i.AssistantKeyInterface {
|
|
17
|
+
id: string;
|
|
18
|
+
namespace: Namespace;
|
|
19
|
+
static fromProto(proto: any): AssistantKey;
|
|
20
|
+
constructor(kwargs?: i.AssistantKeyInterface);
|
|
21
|
+
toApiJson(): object;
|
|
22
|
+
}
|
|
16
23
|
export declare class Config implements i.ConfigInterface {
|
|
17
24
|
inboxConfig: ConfigInboxConfig;
|
|
18
25
|
static fromProto(proto: any): Config;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as i from '../interfaces';
|
|
2
|
+
import { AssistantKey } from './assistant';
|
|
2
3
|
import { Namespace } from './namespace';
|
|
3
4
|
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
4
5
|
export declare class Connection implements i.ConnectionInterface {
|
|
@@ -6,9 +7,11 @@ export declare class Connection implements i.ConnectionInterface {
|
|
|
6
7
|
namespace: Namespace;
|
|
7
8
|
name: string;
|
|
8
9
|
configurationUrl: string;
|
|
10
|
+
assistantKeys: AssistantKey[];
|
|
9
11
|
connectionType: string;
|
|
10
12
|
connectionTypeName: string;
|
|
11
13
|
iconUrl: string;
|
|
14
|
+
isConnectionLocked: boolean;
|
|
12
15
|
static fromProto(proto: any): Connection;
|
|
13
16
|
constructor(kwargs?: i.ConnectionInterface);
|
|
14
17
|
toApiJson(): object;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export { NamespaceAccountGroupNamespace, Namespace, NamespacePartnerNamespace, NamespaceSystemNamespace, } from './namespace';
|
|
2
|
+
export { Assistant, AssistantKey, Config, ConfigInboxConfig, } from './assistant';
|
|
2
3
|
export { Connection, ConnectionKey, } from './connection';
|
|
3
|
-
export { Assistant, Config, ConfigInboxConfig, } from './assistant';
|
|
4
4
|
export { KeyValuePair, } from './common';
|
|
5
5
|
export { ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatMessage, ChatUserInfo, } from './answer';
|
|
6
6
|
export { Prompt, PromptVersion, } from './prompt';
|
|
7
7
|
export { Access, } from './annotations';
|
|
8
8
|
export { PagedRequestOptions, PagedResponseMetadata, } from './paging';
|
|
9
|
-
export { CreatePromptRequest, DeleteAssistantRequest, DeleteConnectionRequest, DeletePromptRequest, DeployPromptRequest, ListAssistantRequestFilters, ListConnectionsRequestFilters, GenerateChatAnswerRequest, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, GetDeployedPromptVersionRequest, GetDeployedPromptVersionResponse, GetPromptRequest, GetPromptResponse, GetPromptVersionRequest, GetPromptVersionResponse, ListAssistantRequest, ListAssistantResponse, ListConnectionsRequest, ListConnectionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, GenerateChatAnswerRequestOptions, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantResponse, UpsertConnectionRequest, } from './api';
|
|
9
|
+
export { CreatePromptRequest, DeleteAssistantRequest, DeleteConnectionRequest, DeletePromptRequest, DeployPromptRequest, ListAssistantRequestFilters, ListAllAssistantsAssociatedToConnectionRequestFilters, ListConnectionsRequestFilters, GenerateChatAnswerRequest, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, GetDeployedPromptVersionRequest, GetDeployedPromptVersionResponse, GetMultiDeployedPromptVersionRequest, GetMultiDeployedPromptVersionResponse, GetPromptRequest, GetPromptResponse, GetPromptVersionRequest, GetPromptVersionResponse, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantResponse, ListConnectionsRequest, ListConnectionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, GenerateChatAnswerRequestOptions, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantResponse, UpsertConnectionRequest, } from './api';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { CreatePromptRequest, DeletePromptRequest, DeployPromptRequest, GetDeployedPromptVersionRequest, GetDeployedPromptVersionResponse, GetPromptRequest, GetPromptResponse, GetPromptVersionRequest, GetPromptVersionResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, UpdatePromptRequest } from './objects/';
|
|
2
|
-
import { CreatePromptRequestInterface, DeletePromptRequestInterface, DeployPromptRequestInterface, GetDeployedPromptVersionRequestInterface, GetPromptRequestInterface, GetPromptVersionRequestInterface, ListPromptRequestInterface, ListPromptVersionsRequestInterface, UpdatePromptRequestInterface } from './interfaces/';
|
|
1
|
+
import { CreatePromptRequest, DeletePromptRequest, DeployPromptRequest, GetDeployedPromptVersionRequest, GetDeployedPromptVersionResponse, GetMultiDeployedPromptVersionRequest, GetMultiDeployedPromptVersionResponse, GetPromptRequest, GetPromptResponse, GetPromptVersionRequest, GetPromptVersionResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, UpdatePromptRequest } from './objects/';
|
|
2
|
+
import { CreatePromptRequestInterface, DeletePromptRequestInterface, DeployPromptRequestInterface, GetDeployedPromptVersionRequestInterface, GetMultiDeployedPromptVersionRequestInterface, GetPromptRequestInterface, GetPromptVersionRequestInterface, ListPromptRequestInterface, ListPromptVersionsRequestInterface, UpdatePromptRequestInterface } from './interfaces/';
|
|
3
3
|
import { HttpResponse } from '@angular/common/http';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -12,6 +12,7 @@ export declare class PromptApiService {
|
|
|
12
12
|
get(r: GetPromptRequest | GetPromptRequestInterface): Observable<GetPromptResponse>;
|
|
13
13
|
getVersion(r: GetPromptVersionRequest | GetPromptVersionRequestInterface): Observable<GetPromptVersionResponse>;
|
|
14
14
|
getDeployedVersion(r: GetDeployedPromptVersionRequest | GetDeployedPromptVersionRequestInterface): Observable<GetDeployedPromptVersionResponse>;
|
|
15
|
+
getMultiDeployedVersion(r: GetMultiDeployedPromptVersionRequest | GetMultiDeployedPromptVersionRequestInterface): Observable<GetMultiDeployedPromptVersionResponse>;
|
|
15
16
|
update(r: UpdatePromptRequest | UpdatePromptRequestInterface): Observable<HttpResponse<null>>;
|
|
16
17
|
deploy(r: DeployPromptRequest | DeployPromptRequestInterface): Observable<HttpResponse<null>>;
|
|
17
18
|
list(r: ListPromptRequest | ListPromptRequestInterface): Observable<ListPromptResponse>;
|