@xpert-ai/contracts 3.9.1 → 3.9.2
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/index.cjs.js +6 -3
- package/index.esm.js +3 -2
- package/package.json +2 -2
- package/src/ai/chat-event.model.d.ts +1 -10
- package/src/ai/chat-message.model.d.ts +3 -47
- package/src/ai/index.d.ts +1 -0
package/index.cjs.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var ShortUniqueId = require('short-unique-id');
|
|
4
|
+
var chatkitTypes = require('@xpert-ai/chatkit-types');
|
|
4
5
|
|
|
5
6
|
function _array_like_to_array$7(arr, len) {
|
|
6
7
|
if (len == null || len > arr.length) len = arr.length;
|
|
@@ -1920,7 +1921,6 @@ function _object_spread$7(target) {
|
|
|
1920
1921
|
}
|
|
1921
1922
|
var CHAT_EVENT_TYPE_THREAD_CONTEXT_USAGE = "thread_context_usage";
|
|
1922
1923
|
var CHAT_EVENT_TYPE_CONVERSATION_TITLE_SUMMARY = "conversation_title_summary";
|
|
1923
|
-
var CHAT_EVENT_TYPE_FOLLOW_UP_CONSUMED = "follow_up_consumed";
|
|
1924
1924
|
function createConversationTitleSummaryEvent(event) {
|
|
1925
1925
|
return _object_spread$7({
|
|
1926
1926
|
type: CHAT_EVENT_TYPE_CONVERSATION_TITLE_SUMMARY
|
|
@@ -1928,7 +1928,7 @@ function createConversationTitleSummaryEvent(event) {
|
|
|
1928
1928
|
}
|
|
1929
1929
|
function createFollowUpConsumedEvent(event) {
|
|
1930
1930
|
return _object_spread$7({
|
|
1931
|
-
type: CHAT_EVENT_TYPE_FOLLOW_UP_CONSUMED
|
|
1931
|
+
type: chatkitTypes.CHAT_EVENT_TYPE_FOLLOW_UP_CONSUMED
|
|
1932
1932
|
}, event);
|
|
1933
1933
|
}
|
|
1934
1934
|
|
|
@@ -5403,11 +5403,14 @@ var PLUGIN_LOAD_STATUS = {
|
|
|
5403
5403
|
FAILED: "failed"
|
|
5404
5404
|
};
|
|
5405
5405
|
|
|
5406
|
+
Object.defineProperty(exports, "CHAT_EVENT_TYPE_FOLLOW_UP_CONSUMED", {
|
|
5407
|
+
enumerable: true,
|
|
5408
|
+
get: function () { return chatkitTypes.CHAT_EVENT_TYPE_FOLLOW_UP_CONSUMED; }
|
|
5409
|
+
});
|
|
5406
5410
|
exports.AI_MODEL_TYPE_VARIABLE = AI_MODEL_TYPE_VARIABLE;
|
|
5407
5411
|
exports.API_PRINCIPAL_USER_ID_HEADER = API_PRINCIPAL_USER_ID_HEADER;
|
|
5408
5412
|
exports.Attachment_Type_Options = Attachment_Type_Options;
|
|
5409
5413
|
exports.CHAT_EVENT_TYPE_CONVERSATION_TITLE_SUMMARY = CHAT_EVENT_TYPE_CONVERSATION_TITLE_SUMMARY;
|
|
5410
|
-
exports.CHAT_EVENT_TYPE_FOLLOW_UP_CONSUMED = CHAT_EVENT_TYPE_FOLLOW_UP_CONSUMED;
|
|
5411
5414
|
exports.CHAT_EVENT_TYPE_THREAD_CONTEXT_USAGE = CHAT_EVENT_TYPE_THREAD_CONTEXT_USAGE;
|
|
5412
5415
|
exports.CONTEXT_COMPRESSION_COMPONENT_TYPE = CONTEXT_COMPRESSION_COMPONENT_TYPE;
|
|
5413
5416
|
exports.CONTEXT_COMPRESSION_MIDDLEWARE_NAME = CONTEXT_COMPRESSION_MIDDLEWARE_NAME;
|
package/index.esm.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import ShortUniqueId from 'short-unique-id';
|
|
2
|
+
import { CHAT_EVENT_TYPE_FOLLOW_UP_CONSUMED } from '@xpert-ai/chatkit-types';
|
|
3
|
+
export { CHAT_EVENT_TYPE_FOLLOW_UP_CONSUMED } from '@xpert-ai/chatkit-types';
|
|
2
4
|
|
|
3
5
|
function _array_like_to_array$7(arr, len) {
|
|
4
6
|
if (len == null || len > arr.length) len = arr.length;
|
|
@@ -1918,7 +1920,6 @@ function _object_spread$7(target) {
|
|
|
1918
1920
|
}
|
|
1919
1921
|
var CHAT_EVENT_TYPE_THREAD_CONTEXT_USAGE = "thread_context_usage";
|
|
1920
1922
|
var CHAT_EVENT_TYPE_CONVERSATION_TITLE_SUMMARY = "conversation_title_summary";
|
|
1921
|
-
var CHAT_EVENT_TYPE_FOLLOW_UP_CONSUMED = "follow_up_consumed";
|
|
1922
1923
|
function createConversationTitleSummaryEvent(event) {
|
|
1923
1924
|
return _object_spread$7({
|
|
1924
1925
|
type: CHAT_EVENT_TYPE_CONVERSATION_TITLE_SUMMARY
|
|
@@ -5401,4 +5402,4 @@ var PLUGIN_LOAD_STATUS = {
|
|
|
5401
5402
|
FAILED: "failed"
|
|
5402
5403
|
};
|
|
5403
5404
|
|
|
5404
|
-
export { AIPermissionsEnum, AI_MODEL_TYPE_VARIABLE, API_PRINCIPAL_USER_ID_HEADER, AccessEnum, AgentEventType, AgentType, AiBusinessRole, AiFeatureEnum, AiModelTypeEnum, AiProtocol, AiProvider, AiProviderRole, AlignmentOptions, AnalyticsFeatures, AnalyticsPermissionsEnum, ApiAuthType, ApiKeyBindingType, ApiProviderSchemaType, ApprovalPolicyTypesEnum, ApprovalPolicyTypesStringEnum, AssistantBindingScope, AssistantBindingSourceScope, AssistantCode, Attachment_Type_Options, AuthenticationEnum, BIInterruptMessageType, BonusTypeEnum, BusinessAreaRole, BusinessType, CHAT_EVENT_TYPE_CONVERSATION_TITLE_SUMMARY,
|
|
5405
|
+
export { AIPermissionsEnum, AI_MODEL_TYPE_VARIABLE, API_PRINCIPAL_USER_ID_HEADER, AccessEnum, AgentEventType, AgentType, AiBusinessRole, AiFeatureEnum, AiModelTypeEnum, AiProtocol, AiProvider, AiProviderRole, AlignmentOptions, AnalyticsFeatures, AnalyticsPermissionsEnum, ApiAuthType, ApiKeyBindingType, ApiProviderSchemaType, ApprovalPolicyTypesEnum, ApprovalPolicyTypesStringEnum, AssistantBindingScope, AssistantBindingSourceScope, AssistantCode, Attachment_Type_Options, AuthenticationEnum, BIInterruptMessageType, BonusTypeEnum, BusinessAreaRole, BusinessType, CHAT_EVENT_TYPE_CONVERSATION_TITLE_SUMMARY, CHAT_EVENT_TYPE_THREAD_CONTEXT_USAGE, CONTEXT_COMPRESSION_COMPONENT_TYPE, CONTEXT_COMPRESSION_MIDDLEWARE_NAME, CONTEXT_VARIABLE_CURRENTSTATE, ChatDashboardMessageType, ChatGatewayEvent, ChatMessageEventTypeEnum, ChatMessageFeedbackRatingEnum, ChatMessageStepCategory, ChatMessageTypeEnum, ClientFocusEnum, ConfigurateMethod, ContactOrganizationInviteStatus, ContactType, CredentialFormTypeEnum, CredentialsType, CrudActionEnum, CurrenciesEnum, CurrencyPosition, DEFAULT_CURRENCIES, DEFAULT_DATE_FORMATS, DEFAULT_INTEGRATION_PAID_FILTERS, DEFAULT_INVITE_EXPIRY_PERIOD, DEFAULT_PROFIT_BASED_BONUS, DEFAULT_REVENUE_BASED_BONUS, DEFAULT_SYSTEM_ROLES, DEFAULT_TENANT, DEFAULT_TIME_FORMATS, DEFAULT_TYPE, DEFAULT_XPERT_AGENT_RECURSION_LIMIT, DataSourceProtocolEnum, DataSourceSyntaxEnum, DataSourceTypeEnum, DefaultValueDateTypeEnum, DocumentSourceProviderCategoryEnum, DocumentTypeEnum, EmailTemplateEnum, EmailTemplateNameEnum, EmbeddingStatusEnum, FILE_VARIABLES, FeatureEnum, FeatureStatusEnum, FeedTypeEnum, FetchFrom, FileStorageProviderEnum, GRAPH_NODE_SUMMARIZE_CONVERSATION, GRAPH_NODE_TITLE_CONVERSATION, HttpStatus, IFeatureToggleTypeEnum, INTEGRATION_PROVIDERS, ImportHistoryStatusEnum, ImportTypeEnum, IndicatorDraftFields, IndicatorOptionFields, IndicatorStatusEnum, IndicatorTagEnum, IndicatorType, IntegrationEnum, IntegrationFeatureEnum, IntegrationFilterEnum, IntegrationGitHubProvider, IntegrationLarkProvider, InterruptMessageType, InvitationExpirationEnum, InvitationTypeEnum, InviteStatusEnum, IteratingIndexParameterName, IteratingItemParameterName, IteratorIndexParameterName, IteratorItemParameterName, KBDocumentCategoryEnum, KBDocumentStatusEnum, KDocumentSourceType, KDocumentWebTypeEnum, KDocumentWebTypeOptions, KNOWLEDGE_DOCUMENTS_NAME, KNOWLEDGE_FOLDER_ID_NAME, KNOWLEDGE_SOURCES_NAME, KNOWLEDGE_STAGE_NAME, KnowledgeProviderEnum, KnowledgeStructureEnum, KnowledgeTask, KnowledgebaseChannel, KnowledgebasePermission, KnowledgebaseTypeEnum, LEGACY_SANDBOX_COMPRESSION_MIDDLEWARE_NAME, LanguagesEnum, LanguagesMap, ListsInputTypeEnum, LocalAgentType, LongTermMemoryTypeEnum, MCPServerType, schema as MDX, MEMORY_PROFILE_PROMPT, MEMORY_QA_PROMPT, MinimumProjectSizeEnum, ModelEntityType, ModelFeature, ModelPropertyKey, ModelTypeEnum, OllamaEmbeddingsProviders, OpenAIEmbeddingsProviders, OrderTypeEnum, OrganizationContactBudgetTypeEnum, OrganizationDemoNetworkEnum, OrganizationPermissionsEnum, OrganizationProjectBudgetTypeEnum, OrganizationSelectInput, PLUGIN_CONFIGURATION_STATUS, PLUGIN_LEVEL, PLUGIN_LOAD_STATUS, PLUGIN_SOURCE, ParameterType, ParameterTypeEnum, PayPeriodEnum, PermissionApprovalStatus, PermissionApprovalStatusTypesEnum, PermissionGroups, PermissionsEnum, PriceType, ProjectBillingEnum, ProjectOwnerEnum, ProjectStatusEnum, ProviderEnum, ProviderType, QueryStatusEnum, RegionsEnum, RequestMethodEnum, RequestScopeLevel, RoleTypeEnum, RolesEnum, SANDBOX_MANAGED_SERVICE_STATUSES, SANDBOX_MANAGED_SERVICE_TRANSPORT_MODES, SANDBOX_TERMINAL_NAMESPACE, SANDBOX_WORK_FOR_TYPES, SMTPSecureEnum, STANDARD_METADATA_FIELDS, STATE_SYS_THREAD_ID, STATE_SYS_VOLUME, STATE_SYS_WORKSPACE_PATH, STATE_SYS_WORKSPACE_URL, STATE_VARIABLE_FILES, STATE_VARIABLE_HUMAN, STATE_VARIABLE_INPUT, STATE_VARIABLE_SYS, STATE_VARIABLE_TITLE_CHANNEL, SandboxManagedServiceErrorCode, SandboxTerminalClientEvent, SandboxTerminalClosedReason, SandboxTerminalErrorCode, SandboxTerminalServerEvent, ScheduleTaskStatus, SemanticModelStatusEnum, StoryStatusEnum, StoryTemplateType, SubscriptionType, TASK_DESCRIPTION_PREFIX, TASK_DESCRIPTION_SUFFIX, TENANT_AGENT_LOCAL_URL, TOOL_NAME_REGEX, TagCategoryEnum, TaskFrequency, TaskListTypeEnum, TimeGranularity, ToolParameterForm, ToolParameterType, ToolTagEnum, TranslationLanguageMap, USAGE_HOUR_FORMAT, UserType, VariableOperationEnum, VariableOperations, VectorTypeEnum, Visibility, VisitEntityEnum, VisitTypeEnum, WORKSPACE_PUBLIC_SKILL_REPOSITORY_NAME, WORKSPACE_PUBLIC_SKILL_SOURCE_PROVIDER, WeekDaysEnum, WorkflowComparisonOperator, WorkflowLogicalOperator, WorkflowNodeTypeEnum, XpertAgentExecutionStatusEnum, XpertParameterTypeEnum, XpertTableStatus, XpertToolsetCategoryEnum, XpertTypeEnum, agentLabel, agentUniqueName, allChannels, appendMessageContent, appendMessagePlainText, buildChunkTree, channelName, classificateDocumentCategory, collectTreeLeaves, configurableStoreNamespace, convertToUrlPath, createAgentConnections, createConversationTitleSummaryEvent, createFollowUpConsumedEvent, createMessageAppendContextTracker, createXpertGraph, createXpertNodes, embeddingCubeCollectionName, ensureAssistantBindingSkillWorkspacePreference, extractSemanticModelDraft, figureOutXpert, filterAssistantBindingDisabledSkillIds, filterAssistantBindingDisabledTools, filterMessageText, findStartNodes, genJSONParseKey, genJSONStringifyKey, genListOperatorKey, genPipelineChunkerKey, genPipelineKnowledgeBaseKey, genPipelineProcessorKey, genPipelineSourceKey, genPipelineUnderstandingKey, genVariableAggregatorKey, genXpertDBDeleteKey, genXpertDBInsertKey, genXpertDBQueryKey, genXpertDBSqlKey, genXpertDBUpdateKey, genXpertIteratorKey, genXpertMiddlewareKey, genXpertSkillKey, genXpertStartKey, genXpertTriggerKey, generateCronExpression, getAgentMiddlewareNodes, getAgentVarGroup, getAssistantBindingDisabledSkillIds, getAssistantBindingDisabledTools, getAssistantManagement, getCurrentGraph, getEnabledTools, getStoreNamespace, getSwarmPartners, getToolCallFromConfig, getToolCallIdFromConfig, getToolLabel, getVariableSchema, getWorkflowTriggers, getWorkspaceFromRunnable, getXpertAgentRecursionLimit, getXpertWorkspaceVisibility, inferMessageAppendContext, isAgentKey, isAssistantBindingSkillEnabled, isAssistantBindingToolEnabled, isAssistantBindingToolPreferencesEmpty, isAudioType, isContextCompressionComponentData, isDocumentSheet, isEnableTool, isImageType, isInterruptMessage, isIteratingKey, isIteratorKey, isMessageGroup, isMiddlewareToolEnabled, isRouterKey, isSystemManagedAssistant, isTenantSharedXpertWorkspace, isToolEnabled, isUserManagedAssistant, isVideoType, isXpertNodeType, letterStartSUID, locateNodes, mapTranslationLanguage, mergeMessageContentForDisplay, messageContentText, normalizeAssistantBindingToolPreferences, normalizeMiddlewareNode, normalizeMiddlewareNodes, normalizeMiddlewareProvider, normalizeXpertAgentConfig, omitXpertRelations, replaceAgentInDraft, resolveMessageAppendContext, setStateVariable, shortTitle, stringifyMessageContent, transformInstallation, updateAssistantBindingSkillPreferences, updateAssistantBindingToolPreferences, uuid, workflowNodeIdentifier, xpertLabel };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xpert-ai/contracts",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.2",
|
|
4
4
|
"license": "AGPL-3.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"module": "./index.esm.js",
|
|
20
20
|
"main": "./index.cjs.js",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@xpert-ai/chatkit-types": "^0.
|
|
22
|
+
"@xpert-ai/chatkit-types": "^0.2.1"
|
|
23
23
|
},
|
|
24
24
|
"types": "./index.d.ts"
|
|
25
25
|
}
|
|
@@ -1,18 +1,9 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type TFollowUpConsumedEvent, type TChatEventMessage } from '@xpert-ai/chatkit-types';
|
|
2
2
|
export declare const CHAT_EVENT_TYPE_THREAD_CONTEXT_USAGE: "thread_context_usage";
|
|
3
3
|
export declare const CHAT_EVENT_TYPE_CONVERSATION_TITLE_SUMMARY: "conversation_title_summary";
|
|
4
|
-
export declare const CHAT_EVENT_TYPE_FOLLOW_UP_CONSUMED: "follow_up_consumed";
|
|
5
4
|
export type TConversationTitleSummaryEvent = TChatEventMessage & {
|
|
6
5
|
id?: string;
|
|
7
6
|
type: typeof CHAT_EVENT_TYPE_CONVERSATION_TITLE_SUMMARY;
|
|
8
7
|
};
|
|
9
|
-
export type TFollowUpConsumedEvent = TChatEventMessage & {
|
|
10
|
-
type: typeof CHAT_EVENT_TYPE_FOLLOW_UP_CONSUMED;
|
|
11
|
-
mode: 'queue' | 'steer';
|
|
12
|
-
messageIds: string[];
|
|
13
|
-
clientMessageIds?: string[];
|
|
14
|
-
executionId?: string | null;
|
|
15
|
-
visibleAt?: string | null;
|
|
16
|
-
};
|
|
17
8
|
export declare function createConversationTitleSummaryEvent(event: Omit<TConversationTitleSummaryEvent, 'type'>): TConversationTitleSummaryEvent;
|
|
18
9
|
export declare function createFollowUpConsumedEvent(event: Omit<TFollowUpConsumedEvent, 'type'>): TFollowUpConsumedEvent;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MessageType } from '@langchain/core/messages';
|
|
2
|
-
import type { TChatMessageStep, TMessageContent, TMessageContentReasoning } from '@xpert-ai/chatkit-types';
|
|
2
|
+
import type { ChatKitReference, ChatKitReferenceBase, TChatMessageStep, TMessageContent, TMessageContentReasoning } from '@xpert-ai/chatkit-types';
|
|
3
3
|
import { IBasePerTenantAndOrganizationEntityModel } from '../base-entity.model';
|
|
4
4
|
import { IChatConversation } from './chat.model';
|
|
5
5
|
import { LongTermMemoryTypeEnum } from './xpert.model';
|
|
@@ -12,50 +12,6 @@ export type TSummaryJob = Record<LongTermMemoryTypeEnum, {
|
|
|
12
12
|
progress?: number;
|
|
13
13
|
memoryKey?: string;
|
|
14
14
|
}>;
|
|
15
|
-
/**
|
|
16
|
-
* @deprecated Temporary duplicate of `ChatKitReferenceBase` from `@xpert-ai/chatkit-types`.
|
|
17
|
-
* Use the shared chatkit type once that package release is available to contracts.
|
|
18
|
-
*/
|
|
19
|
-
export type TChatReferenceBase = {
|
|
20
|
-
id?: string;
|
|
21
|
-
label?: string;
|
|
22
|
-
text: string;
|
|
23
|
-
};
|
|
24
|
-
/**
|
|
25
|
-
* @deprecated Temporary duplicate of `ChatKitCodeReference` from `@xpert-ai/chatkit-types`.
|
|
26
|
-
* Use the shared chatkit type once that package release is available to contracts.
|
|
27
|
-
*/
|
|
28
|
-
export type TChatCodeReference = TChatReferenceBase & {
|
|
29
|
-
type: 'code';
|
|
30
|
-
path: string;
|
|
31
|
-
startLine: number;
|
|
32
|
-
endLine: number;
|
|
33
|
-
language?: string;
|
|
34
|
-
taskId?: string;
|
|
35
|
-
};
|
|
36
|
-
/**
|
|
37
|
-
* @deprecated Temporary duplicate of `ChatKitQuoteReference` from `@xpert-ai/chatkit-types`.
|
|
38
|
-
* Use the shared chatkit type once that package release is available to contracts.
|
|
39
|
-
*/
|
|
40
|
-
export type TChatQuoteReference = TChatReferenceBase & {
|
|
41
|
-
type: 'quote';
|
|
42
|
-
messageId?: string;
|
|
43
|
-
source?: string;
|
|
44
|
-
};
|
|
45
|
-
/**
|
|
46
|
-
* @deprecated Temporary duplicate of `ChatKitImageReference` from `@xpert-ai/chatkit-types`.
|
|
47
|
-
* Use the shared chatkit type once that package release is available to contracts.
|
|
48
|
-
*/
|
|
49
|
-
export type TChatImageReference = TChatReferenceBase & {
|
|
50
|
-
type: 'image';
|
|
51
|
-
fileId?: string;
|
|
52
|
-
url?: string;
|
|
53
|
-
mimeType?: string;
|
|
54
|
-
name?: string;
|
|
55
|
-
size?: number;
|
|
56
|
-
width?: number;
|
|
57
|
-
height?: number;
|
|
58
|
-
};
|
|
59
15
|
export type TChatElementAttribute = {
|
|
60
16
|
name: string;
|
|
61
17
|
value: string;
|
|
@@ -73,10 +29,10 @@ export type TChatElementReferenceFields = {
|
|
|
73
29
|
export type TChatElementReferenceCandidateFields = {
|
|
74
30
|
[Property in keyof TChatElementReferenceFields]?: unknown;
|
|
75
31
|
};
|
|
76
|
-
export type TChatElementReference =
|
|
32
|
+
export type TChatElementReference = ChatKitReferenceBase & TChatElementReferenceFields & {
|
|
77
33
|
type: 'element';
|
|
78
34
|
};
|
|
79
|
-
export type TChatReference =
|
|
35
|
+
export type TChatReference = ChatKitReference | TChatElementReference;
|
|
80
36
|
/**
|
|
81
37
|
* Chat message entity type
|
|
82
38
|
*/
|
package/src/ai/index.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export declare enum ChatMessageStepCategory {
|
|
|
34
34
|
Knowledges = "knowledges"
|
|
35
35
|
}
|
|
36
36
|
export type * from '@xpert-ai/chatkit-types';
|
|
37
|
+
export { CHAT_EVENT_TYPE_FOLLOW_UP_CONSUMED } from '@xpert-ai/chatkit-types';
|
|
37
38
|
export type { TChatRequest } from './xpert-chat.model';
|
|
38
39
|
export * from './assistant-binding.model';
|
|
39
40
|
export * from './ai-model.model';
|