@vendasta/ai-assistants 0.49.0 → 0.51.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.
@@ -0,0 +1,11 @@
1
+ export declare enum StreamingGenerateChatAnswerResponseContentType {
2
+ CONTENT_TYPE_UNSPECIFIED = 0,
3
+ REASONING = 1,
4
+ ANSWER = 2,
5
+ ACTION_DESCRIPTION = 3,
6
+ WORKING = 4
7
+ }
8
+ export declare enum ListGoalsRequestSortingOrder {
9
+ GOAL_SORTING_ORDER_ASCENDING = 0,
10
+ GOAL_SORTING_ORDER_DESCENDING = 1
11
+ }
@@ -7,3 +7,4 @@ export { ModelType, ModelVendor, } from './model.enum';
7
7
  export { VendorModel, } from './assistant.enum';
8
8
  export { ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatMessageRole, } from './answer.enum';
9
9
  export { SortDirection, } from './integration-tests.enum';
10
+ export { StreamingGenerateChatAnswerResponseContentType, ListGoalsRequestSortingOrder, } from './api.enum';
@@ -116,6 +116,8 @@ export interface ListGoalsRequestFiltersInterface {
116
116
  supportedChannels?: e.GoalChannel[];
117
117
  namespaces?: NamespaceInterface[];
118
118
  constraintFilters?: ConstraintFilterInterface[];
119
+ searchTerm?: string;
120
+ sortOptions?: ListGoalsRequestSortOptionsInterface[];
119
121
  }
120
122
  export interface ListAvailableModelsRequestFiltersInterface {
121
123
  vendor?: e.ModelVendor[];
@@ -353,30 +355,34 @@ export interface ListPromptVersionsResponseInterface {
353
355
  promptVersions?: PromptVersionInterface[];
354
356
  metadata?: PagedResponseMetadataInterface;
355
357
  }
356
- export interface CreatePromptModuleVersionRequestOptionsInterface {
357
- shouldDeploy?: boolean;
358
- }
359
- export interface GetAssistantRequestOptionsInterface {
360
- skipGoalsHydration?: boolean;
361
- }
362
358
  export interface GenerateChatAnswerRequestOptionsInterface {
363
359
  includeAllCitations?: boolean;
364
360
  enableAsyncFunctions?: boolean;
365
361
  maxTokens?: number;
366
362
  }
363
+ export interface GetMultiAssistantRequestOptionsInterface {
364
+ skipGoalsHydration?: boolean;
365
+ }
366
+ export interface CreatePromptModuleVersionRequestOptionsInterface {
367
+ shouldDeploy?: boolean;
368
+ }
367
369
  export interface UpsertAssistantRequestOptionsInterface {
368
370
  applyDefaults?: boolean;
369
371
  }
370
372
  export interface CreateAssistantRequestOptionsInterface {
371
373
  applyDefaults?: boolean;
372
374
  }
373
- export interface GetMultiAssistantRequestOptionsInterface {
375
+ export interface GetAssistantRequestOptionsInterface {
374
376
  skipGoalsHydration?: boolean;
375
377
  }
376
378
  export interface SetAssistantConnectionsRequestInterface {
377
379
  associationStates?: SetAssistantConnectionsRequestConnectionStateInterface[];
378
380
  assistantKey?: AssistantKeyInterface;
379
381
  }
382
+ export interface ListGoalsRequestSortOptionsInterface {
383
+ field?: string;
384
+ order?: e.ListGoalsRequestSortingOrder;
385
+ }
380
386
  export interface UpdateAssistantRequestInterface {
381
387
  assistant?: AssistantInterface;
382
388
  fieldMask?: FieldMaskInterface;
@@ -55,6 +55,7 @@ export interface FunctionParameterInterface {
55
55
  value?: string;
56
56
  location?: e.FunctionParameterParameterLocation;
57
57
  required?: boolean;
58
+ enumValues?: string[];
58
59
  }
59
60
  export interface ListMCPToolsRequestInterface {
60
61
  namespace?: NamespaceInterface;
@@ -12,4 +12,4 @@ export { ChatAnswerFunctionExecutionJobInterface, ChatAnswerFunctionExecutionJob
12
12
  export { CancelTestRunRequestInterface, TestResultCitationInterface, DeleteTestCasesRequestInterface, GetTestRunRequestInterface, GetTestRunResponseInterface, ListTestCasesByAssistantRequestInterface, ListTestCasesByAssistantResponseInterface, ListTestRunsByAssistantRequestInterface, ListTestRunsByAssistantResponseInterface, RunTestsRequestInterface, RunTestsResponseInterface, SortOptionsInterface, TestCaseInterface, TestResultInterface, TestRunInterface, UpsertTestCasesRequestInterface, } from './integration-tests.interface';
13
13
  export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
14
14
  export { FieldMaskInterface, } from './field-mask.interface';
15
- export { BuildDefaultAssistantRequestInterface, BuildDefaultAssistantResponseInterface, SetAssistantConnectionsRequestConnectionStateInterface, CreateAssistantRequestInterface, CreateAssistantResponseInterface, CreateGoalRequestInterface, CreateGoalResponseInterface, CreatePromptModuleRequestInterface, CreatePromptModuleResponseInterface, CreatePromptModuleVersionRequestInterface, CreatePromptRequestInterface, DeleteAssistantRequestInterface, DeleteConnectionRequestInterface, DeleteFunctionRequestInterface, DeleteGoalRequestInterface, DeletePromptModuleRequestInterface, DeletePromptRequestInterface, DeployPromptModuleRequestInterface, DeployPromptRequestInterface, ExecuteFunctionRequestInterface, ExecuteFunctionResponseInterface, ListAllAssistantsAssociatedToConnectionRequestFiltersInterface, ListConnectionsRequestFiltersInterface, ListPromptModuleRequestFiltersInterface, ListGoalsRequestFiltersInterface, ListAvailableModelsRequestFiltersInterface, ListFunctionRequestFiltersInterface, ListAssistantRequestFiltersInterface, GenerateChatAnswerRequestInterface, GenerateChatAnswerResponseInterface, GetAssistantRequestInterface, GetAssistantResponseInterface, GetChatAnswerFunctionExecutionJobRequestInterface, GetChatAnswerFunctionExecutionJobResponseInterface, GetConnectionRequestInterface, GetConnectionResponseInterface, GetDeployedPromptModuleVersionRequestInterface, GetDeployedPromptModuleVersionResponseInterface, GetDeployedPromptVersionRequestInterface, GetDeployedPromptVersionResponseInterface, GetFunctionRequestInterface, GetFunctionResponseInterface, GetGoalRequestInterface, GetGoalResponseInterface, GetHydratedDeployedPromptModuleVersionRequestInterface, GetHydratedDeployedPromptModuleVersionResponseInterface, GetMultiAssistantRequestInterface, GetMultiAssistantResponseInterface, GetMultiDeployedPromptVersionRequestInterface, GetMultiDeployedPromptVersionResponseInterface, GetMultiFunctionRequestInterface, GetMultiFunctionResponseInterface, GetMultiGoalRequestInterface, GetMultiGoalResponseInterface, GetMultiHydratedDeployedPromptModuleVersionRequestInterface, GetMultiHydratedDeployedPromptModuleVersionResponseInterface, GetPromptModuleRequestInterface, GetPromptModuleResponseInterface, GetPromptModuleVersionRequestInterface, GetPromptModuleVersionResponseInterface, GetPromptRequestInterface, GetPromptResponseInterface, GetPromptVersionRequestInterface, GetPromptVersionResponseInterface, GoalsDisabledForAccountGroupRequestInterface, GoalsDisabledForAccountGroupResponseInterface, ListAllAssistantsAssociatedToConnectionRequestInterface, ListAllAssistantsAssociatedToConnectionResponseInterface, ListAssistantRequestInterface, ListAssistantResponseInterface, ListAvailableModelsRequestInterface, ListAvailableModelsResponseInterface, ListConnectionsRequestInterface, ListConnectionsResponseInterface, ListFunctionRequestInterface, ListFunctionResponseInterface, ListGoalsRequestInterface, ListGoalsResponseInterface, ListPromptModuleRequestInterface, ListPromptModuleResponseInterface, ListPromptModuleVersionsRequestInterface, ListPromptModuleVersionsResponseInterface, ListPromptRequestInterface, ListPromptResponseInterface, ListPromptVersionsRequestInterface, ListPromptVersionsResponseInterface, CreatePromptModuleVersionRequestOptionsInterface, GetAssistantRequestOptionsInterface, GenerateChatAnswerRequestOptionsInterface, UpsertAssistantRequestOptionsInterface, CreateAssistantRequestOptionsInterface, GetMultiAssistantRequestOptionsInterface, SetAssistantConnectionsRequestInterface, UpdateAssistantRequestInterface, UpdateGoalRequestInterface, UpdatePromptModuleRequestInterface, UpdatePromptRequestInterface, UpsertAssistantRequestInterface, UpsertAssistantResponseInterface, UpsertConnectionRequestInterface, UpsertFunctionRequestInterface, UpsertGoalRequestInterface, ValidatePromptModuleRequestInterface, ValidatePromptModuleResponseInterface, } from './api.interface';
15
+ export { BuildDefaultAssistantRequestInterface, BuildDefaultAssistantResponseInterface, SetAssistantConnectionsRequestConnectionStateInterface, CreateAssistantRequestInterface, CreateAssistantResponseInterface, CreateGoalRequestInterface, CreateGoalResponseInterface, CreatePromptModuleRequestInterface, CreatePromptModuleResponseInterface, CreatePromptModuleVersionRequestInterface, CreatePromptRequestInterface, DeleteAssistantRequestInterface, DeleteConnectionRequestInterface, DeleteFunctionRequestInterface, DeleteGoalRequestInterface, DeletePromptModuleRequestInterface, DeletePromptRequestInterface, DeployPromptModuleRequestInterface, DeployPromptRequestInterface, ExecuteFunctionRequestInterface, ExecuteFunctionResponseInterface, ListAllAssistantsAssociatedToConnectionRequestFiltersInterface, ListConnectionsRequestFiltersInterface, ListPromptModuleRequestFiltersInterface, ListGoalsRequestFiltersInterface, ListAvailableModelsRequestFiltersInterface, ListFunctionRequestFiltersInterface, ListAssistantRequestFiltersInterface, GenerateChatAnswerRequestInterface, GenerateChatAnswerResponseInterface, GetAssistantRequestInterface, GetAssistantResponseInterface, GetChatAnswerFunctionExecutionJobRequestInterface, GetChatAnswerFunctionExecutionJobResponseInterface, GetConnectionRequestInterface, GetConnectionResponseInterface, GetDeployedPromptModuleVersionRequestInterface, GetDeployedPromptModuleVersionResponseInterface, GetDeployedPromptVersionRequestInterface, GetDeployedPromptVersionResponseInterface, GetFunctionRequestInterface, GetFunctionResponseInterface, GetGoalRequestInterface, GetGoalResponseInterface, GetHydratedDeployedPromptModuleVersionRequestInterface, GetHydratedDeployedPromptModuleVersionResponseInterface, GetMultiAssistantRequestInterface, GetMultiAssistantResponseInterface, GetMultiDeployedPromptVersionRequestInterface, GetMultiDeployedPromptVersionResponseInterface, GetMultiFunctionRequestInterface, GetMultiFunctionResponseInterface, GetMultiGoalRequestInterface, GetMultiGoalResponseInterface, GetMultiHydratedDeployedPromptModuleVersionRequestInterface, GetMultiHydratedDeployedPromptModuleVersionResponseInterface, GetPromptModuleRequestInterface, GetPromptModuleResponseInterface, GetPromptModuleVersionRequestInterface, GetPromptModuleVersionResponseInterface, GetPromptRequestInterface, GetPromptResponseInterface, GetPromptVersionRequestInterface, GetPromptVersionResponseInterface, GoalsDisabledForAccountGroupRequestInterface, GoalsDisabledForAccountGroupResponseInterface, ListAllAssistantsAssociatedToConnectionRequestInterface, ListAllAssistantsAssociatedToConnectionResponseInterface, ListAssistantRequestInterface, ListAssistantResponseInterface, ListAvailableModelsRequestInterface, ListAvailableModelsResponseInterface, ListConnectionsRequestInterface, ListConnectionsResponseInterface, ListFunctionRequestInterface, ListFunctionResponseInterface, ListGoalsRequestInterface, ListGoalsResponseInterface, ListPromptModuleRequestInterface, ListPromptModuleResponseInterface, ListPromptModuleVersionsRequestInterface, ListPromptModuleVersionsResponseInterface, ListPromptRequestInterface, ListPromptResponseInterface, ListPromptVersionsRequestInterface, ListPromptVersionsResponseInterface, GenerateChatAnswerRequestOptionsInterface, GetMultiAssistantRequestOptionsInterface, CreatePromptModuleVersionRequestOptionsInterface, UpsertAssistantRequestOptionsInterface, CreateAssistantRequestOptionsInterface, GetAssistantRequestOptionsInterface, SetAssistantConnectionsRequestInterface, ListGoalsRequestSortOptionsInterface, UpdateAssistantRequestInterface, UpdateGoalRequestInterface, UpdatePromptModuleRequestInterface, UpdatePromptRequestInterface, UpsertAssistantRequestInterface, UpsertAssistantResponseInterface, UpsertConnectionRequestInterface, UpsertFunctionRequestInterface, UpsertGoalRequestInterface, ValidatePromptModuleRequestInterface, ValidatePromptModuleResponseInterface, } from './api.interface';
@@ -190,6 +190,8 @@ export declare class ListGoalsRequestFilters implements i.ListGoalsRequestFilter
190
190
  supportedChannels: e.GoalChannel[];
191
191
  namespaces: Namespace[];
192
192
  constraintFilters: ConstraintFilter[];
193
+ searchTerm: string;
194
+ sortOptions: ListGoalsRequestSortOptions[];
193
195
  static fromProto(proto: any): ListGoalsRequestFilters;
194
196
  constructor(kwargs?: i.ListGoalsRequestFiltersInterface);
195
197
  toApiJson(): object;
@@ -613,18 +615,6 @@ export declare class ListPromptVersionsResponse implements i.ListPromptVersionsR
613
615
  constructor(kwargs?: i.ListPromptVersionsResponseInterface);
614
616
  toApiJson(): object;
615
617
  }
616
- export declare class CreatePromptModuleVersionRequestOptions implements i.CreatePromptModuleVersionRequestOptionsInterface {
617
- shouldDeploy: boolean;
618
- static fromProto(proto: any): CreatePromptModuleVersionRequestOptions;
619
- constructor(kwargs?: i.CreatePromptModuleVersionRequestOptionsInterface);
620
- toApiJson(): object;
621
- }
622
- export declare class GetAssistantRequestOptions implements i.GetAssistantRequestOptionsInterface {
623
- skipGoalsHydration: boolean;
624
- static fromProto(proto: any): GetAssistantRequestOptions;
625
- constructor(kwargs?: i.GetAssistantRequestOptionsInterface);
626
- toApiJson(): object;
627
- }
628
618
  export declare class GenerateChatAnswerRequestOptions implements i.GenerateChatAnswerRequestOptionsInterface {
629
619
  includeAllCitations: boolean;
630
620
  enableAsyncFunctions: boolean;
@@ -633,6 +623,18 @@ export declare class GenerateChatAnswerRequestOptions implements i.GenerateChatA
633
623
  constructor(kwargs?: i.GenerateChatAnswerRequestOptionsInterface);
634
624
  toApiJson(): object;
635
625
  }
626
+ export declare class GetMultiAssistantRequestOptions implements i.GetMultiAssistantRequestOptionsInterface {
627
+ skipGoalsHydration: boolean;
628
+ static fromProto(proto: any): GetMultiAssistantRequestOptions;
629
+ constructor(kwargs?: i.GetMultiAssistantRequestOptionsInterface);
630
+ toApiJson(): object;
631
+ }
632
+ export declare class CreatePromptModuleVersionRequestOptions implements i.CreatePromptModuleVersionRequestOptionsInterface {
633
+ shouldDeploy: boolean;
634
+ static fromProto(proto: any): CreatePromptModuleVersionRequestOptions;
635
+ constructor(kwargs?: i.CreatePromptModuleVersionRequestOptionsInterface);
636
+ toApiJson(): object;
637
+ }
636
638
  export declare class UpsertAssistantRequestOptions implements i.UpsertAssistantRequestOptionsInterface {
637
639
  applyDefaults: boolean;
638
640
  static fromProto(proto: any): UpsertAssistantRequestOptions;
@@ -645,10 +647,10 @@ export declare class CreateAssistantRequestOptions implements i.CreateAssistantR
645
647
  constructor(kwargs?: i.CreateAssistantRequestOptionsInterface);
646
648
  toApiJson(): object;
647
649
  }
648
- export declare class GetMultiAssistantRequestOptions implements i.GetMultiAssistantRequestOptionsInterface {
650
+ export declare class GetAssistantRequestOptions implements i.GetAssistantRequestOptionsInterface {
649
651
  skipGoalsHydration: boolean;
650
- static fromProto(proto: any): GetMultiAssistantRequestOptions;
651
- constructor(kwargs?: i.GetMultiAssistantRequestOptionsInterface);
652
+ static fromProto(proto: any): GetAssistantRequestOptions;
653
+ constructor(kwargs?: i.GetAssistantRequestOptionsInterface);
652
654
  toApiJson(): object;
653
655
  }
654
656
  export declare class SetAssistantConnectionsRequest implements i.SetAssistantConnectionsRequestInterface {
@@ -658,6 +660,13 @@ export declare class SetAssistantConnectionsRequest implements i.SetAssistantCon
658
660
  constructor(kwargs?: i.SetAssistantConnectionsRequestInterface);
659
661
  toApiJson(): object;
660
662
  }
663
+ export declare class ListGoalsRequestSortOptions implements i.ListGoalsRequestSortOptionsInterface {
664
+ field: string;
665
+ order: e.ListGoalsRequestSortingOrder;
666
+ static fromProto(proto: any): ListGoalsRequestSortOptions;
667
+ constructor(kwargs?: i.ListGoalsRequestSortOptionsInterface);
668
+ toApiJson(): object;
669
+ }
661
670
  export declare class UpdateAssistantRequest implements i.UpdateAssistantRequestInterface {
662
671
  assistant: Assistant;
663
672
  fieldMask: FieldMask;
@@ -81,6 +81,7 @@ export declare class FunctionParameter implements i.FunctionParameterInterface {
81
81
  value: string;
82
82
  location: e.FunctionParameterParameterLocation;
83
83
  required: boolean;
84
+ enumValues: string[];
84
85
  static fromProto(proto: any): FunctionParameter;
85
86
  constructor(kwargs?: i.FunctionParameterInterface);
86
87
  toApiJson(): object;
@@ -12,4 +12,4 @@ export { ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, C
12
12
  export { CancelTestRunRequest, TestResultCitation, DeleteTestCasesRequest, GetTestRunRequest, GetTestRunResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, RunTestsRequest, RunTestsResponse, SortOptions, TestCase, TestResult, TestRun, UpsertTestCasesRequest, } from './integration-tests';
13
13
  export { Access, MCPOptions, } from './annotations';
14
14
  export { FieldMask, } from './field-mask';
15
- export { BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, SetAssistantConnectionsRequestConnectionState, CreateAssistantRequest, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptRequest, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, ExecuteFunctionRequest, ExecuteFunctionResponse, ListAllAssistantsAssociatedToConnectionRequestFilters, ListConnectionsRequestFilters, ListPromptModuleRequestFilters, ListGoalsRequestFilters, ListAvailableModelsRequestFilters, ListFunctionRequestFilters, ListAssistantRequestFilters, GenerateChatAnswerRequest, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, GetDeployedPromptModuleVersionRequest, GetDeployedPromptModuleVersionResponse, GetDeployedPromptVersionRequest, GetDeployedPromptVersionResponse, GetFunctionRequest, GetFunctionResponse, GetGoalRequest, GetGoalResponse, GetHydratedDeployedPromptModuleVersionRequest, GetHydratedDeployedPromptModuleVersionResponse, GetMultiAssistantRequest, GetMultiAssistantResponse, GetMultiDeployedPromptVersionRequest, GetMultiDeployedPromptVersionResponse, GetMultiFunctionRequest, GetMultiFunctionResponse, GetMultiGoalRequest, GetMultiGoalResponse, GetMultiHydratedDeployedPromptModuleVersionRequest, GetMultiHydratedDeployedPromptModuleVersionResponse, GetPromptModuleRequest, GetPromptModuleResponse, GetPromptModuleVersionRequest, GetPromptModuleVersionResponse, GetPromptRequest, GetPromptResponse, GetPromptVersionRequest, GetPromptVersionResponse, GoalsDisabledForAccountGroupRequest, GoalsDisabledForAccountGroupResponse, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantResponse, ListAvailableModelsRequest, ListAvailableModelsResponse, ListConnectionsRequest, ListConnectionsResponse, ListFunctionRequest, ListFunctionResponse, ListGoalsRequest, ListGoalsResponse, ListPromptModuleRequest, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, CreatePromptModuleVersionRequestOptions, GetAssistantRequestOptions, GenerateChatAnswerRequestOptions, UpsertAssistantRequestOptions, CreateAssistantRequestOptions, GetMultiAssistantRequestOptions, SetAssistantConnectionsRequest, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, ValidatePromptModuleRequest, ValidatePromptModuleResponse, } from './api';
15
+ export { BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, SetAssistantConnectionsRequestConnectionState, CreateAssistantRequest, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptRequest, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, ExecuteFunctionRequest, ExecuteFunctionResponse, ListAllAssistantsAssociatedToConnectionRequestFilters, ListConnectionsRequestFilters, ListPromptModuleRequestFilters, ListGoalsRequestFilters, ListAvailableModelsRequestFilters, ListFunctionRequestFilters, ListAssistantRequestFilters, GenerateChatAnswerRequest, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, GetDeployedPromptModuleVersionRequest, GetDeployedPromptModuleVersionResponse, GetDeployedPromptVersionRequest, GetDeployedPromptVersionResponse, GetFunctionRequest, GetFunctionResponse, GetGoalRequest, GetGoalResponse, GetHydratedDeployedPromptModuleVersionRequest, GetHydratedDeployedPromptModuleVersionResponse, GetMultiAssistantRequest, GetMultiAssistantResponse, GetMultiDeployedPromptVersionRequest, GetMultiDeployedPromptVersionResponse, GetMultiFunctionRequest, GetMultiFunctionResponse, GetMultiGoalRequest, GetMultiGoalResponse, GetMultiHydratedDeployedPromptModuleVersionRequest, GetMultiHydratedDeployedPromptModuleVersionResponse, GetPromptModuleRequest, GetPromptModuleResponse, GetPromptModuleVersionRequest, GetPromptModuleVersionResponse, GetPromptRequest, GetPromptResponse, GetPromptVersionRequest, GetPromptVersionResponse, GoalsDisabledForAccountGroupRequest, GoalsDisabledForAccountGroupResponse, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantResponse, ListAvailableModelsRequest, ListAvailableModelsResponse, ListConnectionsRequest, ListConnectionsResponse, ListFunctionRequest, ListFunctionResponse, ListGoalsRequest, ListGoalsResponse, ListPromptModuleRequest, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, GenerateChatAnswerRequestOptions, GetMultiAssistantRequestOptions, CreatePromptModuleVersionRequestOptions, UpsertAssistantRequestOptions, CreateAssistantRequestOptions, GetAssistantRequestOptions, SetAssistantConnectionsRequest, ListGoalsRequestSortOptions, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, ValidatePromptModuleRequest, ValidatePromptModuleResponse, } from './api';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/ai-assistants",
3
- "version": "0.49.0",
3
+ "version": "0.51.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"