@vendasta/ai-assistants 0.1.0 → 0.2.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/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +7 -1
- package/fesm2015/vendasta-ai-assistants.mjs +6 -0
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +6 -0
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +1 -0
- package/lib/_internal/objects/api.d.ts +1 -0
- package/package.json +1 -1
|
@@ -102,6 +102,7 @@ export interface ListPromptRequestInterface {
|
|
|
102
102
|
}
|
|
103
103
|
export interface ListPromptResponseInterface {
|
|
104
104
|
prompts?: PromptInterface[];
|
|
105
|
+
deployedPromptVersions?: PromptVersionInterface[];
|
|
105
106
|
metadata?: PagedResponseMetadataInterface;
|
|
106
107
|
}
|
|
107
108
|
export interface ListPromptVersionsRequestInterface {
|
|
@@ -176,6 +176,7 @@ export declare class ListPromptRequest implements i.ListPromptRequestInterface {
|
|
|
176
176
|
}
|
|
177
177
|
export declare class ListPromptResponse implements i.ListPromptResponseInterface {
|
|
178
178
|
prompts: Prompt[];
|
|
179
|
+
deployedPromptVersions: PromptVersion[];
|
|
179
180
|
metadata: PagedResponseMetadata;
|
|
180
181
|
static fromProto(proto: any): ListPromptResponse;
|
|
181
182
|
constructor(kwargs?: i.ListPromptResponseInterface);
|