@epam/ai-dial-chat-hooks 1.1.0-dev.433 → 1.1.0-dev.438
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/catalog/map-entity-details-to-catalog.js +1 -1
- package/conversation/conversation-transfer/import-conversation.js +27 -26
- package/conversation/create-chat-stream-api.js +45 -37
- package/conversation/useConversationHandlers/message-utils.js +6 -2
- package/conversation/useConversationHandlers/useConversationHandlers.js +3 -3
- package/conversation/useConversationImport/useConversationImport.js +1 -1
- package/conversation/useConversationStream/useConversationStream.js +108 -104
- package/conversation.d.ts +39 -1
- package/conversation.js +30 -30
- package/file-manager.d.ts +90 -0
- package/file-manager.js +16 -16
- package/files/attachment-canvas.js +111 -61
- package/files/dial-file-manager.model.js +4 -1
- package/index.d.ts +129 -1
- package/index.js +89 -89
- package/package.json +15 -15
package/index.d.ts
CHANGED
|
@@ -188,6 +188,16 @@ export declare interface AgentSpecification {
|
|
|
188
188
|
/** Maps an annotation's source attachment to the display-only attachment model. */
|
|
189
189
|
export declare const annotationToDisplayAttachment: (annotation: Annotation) => DisplayAttachment | null;
|
|
190
190
|
|
|
191
|
+
/**
|
|
192
|
+
* Builds an `OoxmlCanvasContent` for a DOCX/PPTX/XLSX citation annotation,
|
|
193
|
+
* including highlights for every annotation sharing the clicked one's source
|
|
194
|
+
* document. Returns `null` when the annotation has no source attachment,
|
|
195
|
+
* the source is not a format `@silurus/ooxml` renders as DOCX/XLSX/PPTX (a
|
|
196
|
+
* CSV source returns `null` — citation highlighting targets Office documents
|
|
197
|
+
* only), or no URL resolves.
|
|
198
|
+
*/
|
|
199
|
+
export declare const annotationToOoxmlCanvasContent: (annotation: Annotation, annotations: Annotation[], resolvers: AttachmentCanvasUrlResolvers) => OoxmlCanvasContent | null;
|
|
200
|
+
|
|
191
201
|
/**
|
|
192
202
|
* Builds a `PdfCanvasContent` for a PDF citation annotation, including highlights
|
|
193
203
|
* for the clicked annotation's document within its citation group.
|
|
@@ -995,6 +1005,9 @@ export declare const decodeToolsetId: (id: string) => string;
|
|
|
995
1005
|
*/
|
|
996
1006
|
export declare const decomposeLocalizedFields: (displayName: LocalizedText | undefined, description: LocalizedText | undefined, primaryLocale: string) => DeploymentCreationFormLocaleEntry[];
|
|
997
1007
|
|
|
1008
|
+
/** Fallback text of a {@link GenerationConflictError} when no message is supplied. */
|
|
1009
|
+
export declare const DEFAULT_GENERATION_CONFLICT_MESSAGE = "A response is already being generated in this conversation. Wait for it to finish or stop it before sending another message.";
|
|
1010
|
+
|
|
998
1011
|
/**
|
|
999
1012
|
* Default ceiling on the summed byte length of an export's attachments.
|
|
1000
1013
|
*
|
|
@@ -1598,6 +1611,17 @@ export declare const formatOperationFolderName: (destinationFolder: string, root
|
|
|
1598
1611
|
*/
|
|
1599
1612
|
export declare const formatQuotedNameList: (names: string[]) => string;
|
|
1600
1613
|
|
|
1614
|
+
/**
|
|
1615
|
+
* Reported through `onError` when the backend rejects a completion because
|
|
1616
|
+
* another generation is already active on the same conversation — what a
|
|
1617
|
+
* second browser tab of the same session hits when it submits into a
|
|
1618
|
+
* conversation the first tab is still generating. Distinct from a generic
|
|
1619
|
+
* transport failure so callers can present it as an expected state.
|
|
1620
|
+
*/
|
|
1621
|
+
export declare class GenerationConflictError extends Error {
|
|
1622
|
+
constructor(message?: string);
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1601
1625
|
/** Normalizes any API error into a `{ status?, message, traceId? }` shape. */
|
|
1602
1626
|
export declare const getApiErrorDetails: (error: unknown) => Promise<ApiErrorDetails>;
|
|
1603
1627
|
|
|
@@ -1827,6 +1851,13 @@ export declare const includesIgnoreCase: (str: string, query: string) => boolean
|
|
|
1827
1851
|
*/
|
|
1828
1852
|
export declare const initiateOAuthLogin: (auth: ToolsetOAuthSettings, toolsetId: string, callbackPath: string, credentialsLevel?: ToolsetCredentialsLevel, offlineUsageConsent?: boolean) => ToolsetOAuthInitiationResult;
|
|
1829
1853
|
|
|
1854
|
+
/**
|
|
1855
|
+
* Whether the assistant answer that follows an edited user message is missing
|
|
1856
|
+
* or incomplete: no message at all, a non-assistant message, an answer the
|
|
1857
|
+
* user stopped, or one that ended with a stream error.
|
|
1858
|
+
*/
|
|
1859
|
+
export declare const isAnswerIncomplete: (answer: Message | undefined) => boolean;
|
|
1860
|
+
|
|
1830
1861
|
/**
|
|
1831
1862
|
* True when the conversation's last message is an unresolved assistant
|
|
1832
1863
|
* placeholder: the backend only persists a conversation at generation start
|
|
@@ -2424,6 +2455,34 @@ declare interface OoxmlCanvasContent {
|
|
|
2424
2455
|
url: string;
|
|
2425
2456
|
/** The document format used to select and configure the format-specific renderer. */
|
|
2426
2457
|
format: OoxmlFileType;
|
|
2458
|
+
/** Cited locations to draw over the document. Omitted, never `[]`, when there is nothing to highlight. */
|
|
2459
|
+
highlights?: OoxmlHighlight[];
|
|
2460
|
+
/** Id of the highlight to navigate to and emphasise. Omitted when the clicked citation resolved to no location. */
|
|
2461
|
+
selectedHighlightId?: string;
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2464
|
+
/** A 1-based cell address, matching `@silurus/ooxml`'s own `CellAddress`. */
|
|
2465
|
+
declare interface OoxmlCellAddress {
|
|
2466
|
+
/** 1-based row number. */
|
|
2467
|
+
row: number;
|
|
2468
|
+
/** 1-based column number. */
|
|
2469
|
+
col: number;
|
|
2470
|
+
}
|
|
2471
|
+
|
|
2472
|
+
/** A cited character range inside a DOCX story, addressed by story name and source-tree path. */
|
|
2473
|
+
declare interface OoxmlDocxHighlightLocation {
|
|
2474
|
+
/** Discriminates this location within `OoxmlHighlightLocation`. */
|
|
2475
|
+
kind: OoxmlHighlightKind.DocxTextRange;
|
|
2476
|
+
/** Name of the DOCX story the range lives in, as an opaque string (only `'body'` is confirmed upstream). */
|
|
2477
|
+
story: string;
|
|
2478
|
+
/** Source-tree element indices identifying the paragraph, matched element-wise. */
|
|
2479
|
+
path: number[];
|
|
2480
|
+
/** Inclusive start character offset within the story's matched text. */
|
|
2481
|
+
start: number;
|
|
2482
|
+
/** Exclusive end character offset, already converted from the wire's inclusive `end`. */
|
|
2483
|
+
endExclusive: number;
|
|
2484
|
+
/** The cited text, compared against the text resolved over `[start, endExclusive)`. */
|
|
2485
|
+
text: string;
|
|
2427
2486
|
}
|
|
2428
2487
|
|
|
2429
2488
|
/** Supported document formats rendered by the bundled `@silurus/ooxml` runtime. */
|
|
@@ -2434,6 +2493,58 @@ declare enum OoxmlFileType {
|
|
|
2434
2493
|
Csv = 'csv',
|
|
2435
2494
|
}
|
|
2436
2495
|
|
|
2496
|
+
/** One citation's highlight: the locations it resolved to, under a stable id. */
|
|
2497
|
+
declare interface OoxmlHighlight {
|
|
2498
|
+
/** Stable id, used to mark exactly one highlight selected. */
|
|
2499
|
+
id: string;
|
|
2500
|
+
/** One or more locations — a single citation may carry several selectors. */
|
|
2501
|
+
locations: OoxmlHighlightLocation[];
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
/** Discriminates the Office highlight location descriptors an `OoxmlCanvasContent` can carry. */
|
|
2505
|
+
declare enum OoxmlHighlightKind {
|
|
2506
|
+
/** A character range inside a DOCX story, addressed by story name and source-tree path. */
|
|
2507
|
+
DocxTextRange = 'docxTextRange',
|
|
2508
|
+
/** A character range inside a single PPTX shape on one slide. */
|
|
2509
|
+
PptxTextRange = 'pptxTextRange',
|
|
2510
|
+
/** One cell, or a contiguous same-row cell range, on a named XLSX sheet. */
|
|
2511
|
+
XlsxCellRange = 'xlsxCellRange',
|
|
2512
|
+
}
|
|
2513
|
+
|
|
2514
|
+
/** A cited location inside an Office document, in document coordinates. */
|
|
2515
|
+
declare type OoxmlHighlightLocation =
|
|
2516
|
+
| OoxmlDocxHighlightLocation
|
|
2517
|
+
| OoxmlPptxHighlightLocation
|
|
2518
|
+
| OoxmlXlsxHighlightLocation;
|
|
2519
|
+
|
|
2520
|
+
/** A cited character range inside a single shape on one PPTX slide. */
|
|
2521
|
+
declare interface OoxmlPptxHighlightLocation {
|
|
2522
|
+
/** Discriminates this location within `OoxmlHighlightLocation`. */
|
|
2523
|
+
kind: OoxmlHighlightKind.PptxTextRange;
|
|
2524
|
+
/** 1-based slide number. */
|
|
2525
|
+
slide: number;
|
|
2526
|
+
/** Shape identifier, compared as a string against the run's own `shapeId`. */
|
|
2527
|
+
shapeId: string;
|
|
2528
|
+
/** Inclusive start character offset within the shape's matched text. */
|
|
2529
|
+
start: number;
|
|
2530
|
+
/** Exclusive end character offset, already converted from the wire's inclusive `end`. */
|
|
2531
|
+
endExclusive: number;
|
|
2532
|
+
/** The cited text, compared against the text resolved over `[start, endExclusive)`. */
|
|
2533
|
+
text: string;
|
|
2534
|
+
}
|
|
2535
|
+
|
|
2536
|
+
/** A cited cell, or contiguous same-row cell range, on a named XLSX sheet. */
|
|
2537
|
+
declare interface OoxmlXlsxHighlightLocation {
|
|
2538
|
+
/** Discriminates this location within `OoxmlHighlightLocation`. */
|
|
2539
|
+
kind: OoxmlHighlightKind.XlsxCellRange;
|
|
2540
|
+
/** Sheet name, matched exactly against the workbook's own sheet names. */
|
|
2541
|
+
sheet: string;
|
|
2542
|
+
/** First cell of the range. 1-based, passed to the viewer unconverted. */
|
|
2543
|
+
start: OoxmlCellAddress;
|
|
2544
|
+
/** Last cell of the range, on the same row as `start`. Omitted for a single cell. */
|
|
2545
|
+
end?: OoxmlCellAddress;
|
|
2546
|
+
}
|
|
2547
|
+
|
|
2437
2548
|
/**
|
|
2438
2549
|
* Opens a cited/referenced attachment: triggers a browser download for
|
|
2439
2550
|
* DIAL-hosted files (`files/...` ids) via the injected `resolveDownloadUrl`,
|
|
@@ -2927,6 +3038,16 @@ export declare interface SharedRootMeta {
|
|
|
2927
3038
|
dialCorePath: string;
|
|
2928
3039
|
}
|
|
2929
3040
|
|
|
3041
|
+
/**
|
|
3042
|
+
* Whether submitting an edit has to re-run the generation.
|
|
3043
|
+
*
|
|
3044
|
+
* True whenever the message itself changed, and also when it is unchanged but
|
|
3045
|
+
* its answer never completed — after stopping a generation the user submits
|
|
3046
|
+
* the same message precisely to get a full answer, so treating that as "no
|
|
3047
|
+
* change" would leave the conversation stuck with the partial one.
|
|
3048
|
+
*/
|
|
3049
|
+
export declare const shouldRerunGenerationOnEdit: (messages: Message[], messageIndex: number, newText: string, keptDisplayAttachments: DisplayAttachment[], newAttachments: Attachment[]) => boolean;
|
|
3050
|
+
|
|
2930
3051
|
/** True when the first user/assistant exchange is complete and LLM naming may still run. */
|
|
2931
3052
|
export declare const shouldWatchForDisplayNameUpdate: (conversation: Conversation) => boolean;
|
|
2932
3053
|
|
|
@@ -4253,7 +4374,7 @@ export declare interface UseConversationSourcesResult {
|
|
|
4253
4374
|
* `transport`/`generation`/`channel`/`overlay` capabilities rather than any
|
|
4254
4375
|
* app context or `server-api` import.
|
|
4255
4376
|
*/
|
|
4256
|
-
export declare const useConversationStream: ({ conversationId, state: { setConversation, conversationRef }, transport, generation: { startGeneration, completeGeneration }, channel, overlay, onStopError, }: UseConversationStreamParams) => UseConversationStreamResult;
|
|
4377
|
+
export declare const useConversationStream: ({ conversationId, state: { setConversation, conversationRef }, transport, generation: { startGeneration, completeGeneration }, channel, overlay, onStopError, generationConflictMessage, }: UseConversationStreamParams) => UseConversationStreamResult;
|
|
4257
4378
|
|
|
4258
4379
|
/** Parameters for {@link useConversationStream}. */
|
|
4259
4380
|
export declare interface UseConversationStreamParams {
|
|
@@ -4264,6 +4385,13 @@ export declare interface UseConversationStreamParams {
|
|
|
4264
4385
|
channel?: ConversationStreamChannel;
|
|
4265
4386
|
overlay?: ConversationStreamOverlayNotifier;
|
|
4266
4387
|
onStopError?: (error: Error) => void;
|
|
4388
|
+
/**
|
|
4389
|
+
* Message shown on the message bubble when the backend rejects a completion
|
|
4390
|
+
* because this conversation is already generating — the case a second
|
|
4391
|
+
* browser tab of the same session hits. Defaults to
|
|
4392
|
+
* {@link DEFAULT_GENERATION_CONFLICT_MESSAGE}.
|
|
4393
|
+
*/
|
|
4394
|
+
generationConflictMessage?: string;
|
|
4267
4395
|
}
|
|
4268
4396
|
|
|
4269
4397
|
/** Return value of {@link useConversationStream}. */
|
package/index.js
CHANGED
|
@@ -45,92 +45,92 @@ import { useSkillDetailsPanelData as Dt } from "./catalog/useSkillDetailsPanelDa
|
|
|
45
45
|
import { FavoriteEntityType as Ot, useFavoriteEntitiesState as kt } from "./catalog/useFavoriteEntitiesState/useFavoriteEntitiesState.js";
|
|
46
46
|
import { usePublishFolders as At } from "./catalog/usePublishFolders/usePublishFolders.js";
|
|
47
47
|
import { buildAnnouncementSignature as jt, hasAnnouncementContent as Mt, hasStructuredAnnouncement as Nt, sanitizeAnnouncementHtml as Pt, sanitizeAnnouncementMessageHtml as Ft } from "./conversation/announcement-message.js";
|
|
48
|
-
import {
|
|
49
|
-
import { shouldWatchForDisplayNameUpdate as
|
|
50
|
-
import { formatAppVersion as
|
|
51
|
-
import { getModelIdFromConversationId as
|
|
52
|
-
import { getTimeOfDayGreeting as
|
|
53
|
-
import { createDeploymentChangedMessage as
|
|
54
|
-
import { getLastDeploymentId as
|
|
55
|
-
import { toOverlayMessages as
|
|
56
|
-
import { getQuickAppConversationStarters as
|
|
57
|
-
import { getStarterPopulateText as
|
|
58
|
-
import { useOAuthCallbackCompletion as
|
|
59
|
-
import { buildPromptExportEnvelope as
|
|
60
|
-
import { PROMPT_CONTENT_MAX_LENGTH as
|
|
61
|
-
import { usePromptsState as
|
|
62
|
-
import { UnsupportedTriggerReason as
|
|
63
|
-
import { apSchedulerDayToJsDay as
|
|
64
|
-
import { mapFormValuesToCreateBody as
|
|
65
|
-
import { validateSkillFileBatch as
|
|
66
|
-
import { skillFileToAttachment as
|
|
67
|
-
import { SkillEditorLoadState as
|
|
68
|
-
import { useSkillEditorSubmit as
|
|
69
|
-
import { useSkillFileActions as
|
|
70
|
-
import { SkillPreviewErrorKind as
|
|
71
|
-
import { useSkillsState as
|
|
72
|
-
import { RecipientsCountStatus as
|
|
73
|
-
import { deriveConversationRowActionState as
|
|
74
|
-
import { useActiveConversationSync as
|
|
75
|
-
import { useAsyncConfirmDialog as
|
|
76
|
-
import { useConversationLookupMaps as
|
|
77
|
-
import { getConversationSource as
|
|
78
|
-
import { useImportFilePicker as
|
|
79
|
-
import { useAttachmentUpload as
|
|
80
|
-
import { AudioTranscriptionError as
|
|
81
|
-
import { useTranscribeAudio as
|
|
82
|
-
import { DEFAULT_MAX_ARCHIVE_BYTES as
|
|
83
|
-
import { attachmentToDto as
|
|
84
|
-
import { createMessagePair as
|
|
85
|
-
import { hasActiveToolConfig as
|
|
86
|
-
import { getStarterConversationText as
|
|
87
|
-
import { getConversationPath as
|
|
88
|
-
import { useConversationHandlers as
|
|
89
|
-
import { useConversationImport as
|
|
90
|
-
import { useConversationScroll as
|
|
91
|
-
import { isAwaitingGenerationResume as
|
|
92
|
-
import { useConversationStream as
|
|
93
|
-
import { useConversationSources as
|
|
94
|
-
import { DialFilesApiUploadMode as
|
|
95
|
-
import { FileManagerNotificationReason as
|
|
96
|
-
import { COLUMNS_WITHOUT_AUTHOR as
|
|
97
|
-
import { DialFileManagerActionProfile as
|
|
98
|
-
import { buildSharedItemVirtualPath as
|
|
99
|
-
import { getParentFolderPath as
|
|
100
|
-
import { prepareCopyItems as
|
|
101
|
-
import { buildFromCache as
|
|
102
|
-
import { createFilesApiClient as
|
|
103
|
-
import { createUploadFileWithProgress as
|
|
104
|
-
import { openAnnotationAttachment as
|
|
105
|
-
import { annotationToPdfCanvasContent as
|
|
106
|
-
import { getUrlFileName as
|
|
107
|
-
import { annotationToDisplayAttachment as
|
|
108
|
-
import { dialFileToAttachment as
|
|
109
|
-
import { DownloadDestinationType as
|
|
110
|
-
import { prepareDownloadDestination as
|
|
111
|
-
import { sanitizeFileName as
|
|
112
|
-
import { useDialFileListing as
|
|
113
|
-
import { useDialFileMetadata as
|
|
114
|
-
import { useDialFileMutations as
|
|
115
|
-
import { useDialFileSharing as
|
|
116
|
-
import { useDialFileUploadBatch as
|
|
117
|
-
import { useDialFileManager as
|
|
118
|
-
import { useDialFileManagerTabConfig as
|
|
119
|
-
import { isCustomAppSchema as
|
|
120
|
-
import { getBrowserTimezone as
|
|
121
|
-
import { isValidAbsoluteUrl as
|
|
122
|
-
import { buildExternalServiceScopeId as
|
|
123
|
-
import { useChatSettingsFormConfig as
|
|
124
|
-
import { usePageFileDrag as
|
|
125
|
-
import { useViewportWidth as
|
|
126
|
-
import { usePanelMaxWidth as
|
|
127
|
-
import { useShareLink as
|
|
128
|
-
import { useToolsMenu as
|
|
129
|
-
import { useUsageData as
|
|
130
|
-
import { McpAppResourceFetchError as
|
|
131
|
-
import { useMcpAppTools as
|
|
132
|
-
import { useMcpAppHostContext as
|
|
133
|
-
import { useMcpAppHostAdapter as
|
|
134
|
-
import { useOpenMcpAppCanvas as
|
|
135
|
-
import { useGridEditingScroll as
|
|
136
|
-
export { b as AttachmentValidationErrorReason,
|
|
48
|
+
import { DEFAULT_GENERATION_CONFLICT_MESSAGE as It, GenerationConflictError as Lt, createChatStreamApi as Rt } from "./conversation/create-chat-stream-api.js";
|
|
49
|
+
import { shouldWatchForDisplayNameUpdate as zt } from "./conversation/display-name-watch.js";
|
|
50
|
+
import { formatAppVersion as Bt, sanitizeFooterHtml as Vt } from "./conversation/footer-message.js";
|
|
51
|
+
import { getModelIdFromConversationId as Ht } from "./conversation/get-model-id-from-conversation-id.js";
|
|
52
|
+
import { getTimeOfDayGreeting as Ut } from "./conversation/greeting.js";
|
|
53
|
+
import { createDeploymentChangedMessage as Wt } from "./conversation/message-factory.js";
|
|
54
|
+
import { getLastDeploymentId as Gt, getLastUserMessageToolConfiguration as Kt, isMessageStreaming as qt, messageHasStages as Jt, normalizeResponseFormat as Yt } from "./conversation/message-utils.js";
|
|
55
|
+
import { toOverlayMessages as Xt } from "./conversation/overlay-messages.js";
|
|
56
|
+
import { getQuickAppConversationStarters as Zt } from "./conversation/quick-app-conversation-starters.js";
|
|
57
|
+
import { getStarterPopulateText as Qt, getStartersFromSchema as $t } from "./conversation/starter-option.js";
|
|
58
|
+
import { useOAuthCallbackCompletion as en } from "./oauth/useOAuthCallbackCompletion/useOAuthCallbackCompletion.js";
|
|
59
|
+
import { buildPromptExportEnvelope as tn, buildPromptExportFileName as nn, serializePromptExport as rn } from "./prompt/export-prompt.js";
|
|
60
|
+
import { PROMPT_CONTENT_MAX_LENGTH as an, PROMPT_COUNTER_ANNOUNCE_THRESHOLD as on, PROMPT_DESCRIPTION_MAX_LENGTH as sn, PROMPT_NAME_MAX_LENGTH as cn, PromptFieldError as ln, buildPromptPath as un, getRemainingCharacters as dn, validatePromptContent as fn, validatePromptDescription as pn, validatePromptName as mn } from "./prompt/prompt.js";
|
|
61
|
+
import { usePromptsState as hn } from "./prompt/usePromptsState/usePromptsState.js";
|
|
62
|
+
import { UnsupportedTriggerReason as gn } from "./scheduled-task/scheduled-task-mapping.js";
|
|
63
|
+
import { apSchedulerDayToJsDay as _n, jsDayToApSchedulerDay as vn } from "./shared/cron-weekday.js";
|
|
64
|
+
import { mapFormValuesToCreateBody as yn, mapFormValuesToUpdateBody as bn, mapScheduledTaskDtoToFormValues as xn } from "./scheduled-task/scheduled-task-trigger.js";
|
|
65
|
+
import { validateSkillFileBatch as Sn } from "./skill/skill-file-batch-validation.js";
|
|
66
|
+
import { skillFileToAttachment as Cn } from "./skill/skill-file-preview.js";
|
|
67
|
+
import { SkillEditorLoadState as wn, useSkillEditorLoad as Tn } from "./skill/useSkillEditorLoad.js";
|
|
68
|
+
import { useSkillEditorSubmit as En } from "./skill/useSkillEditorSubmit.js";
|
|
69
|
+
import { useSkillFileActions as Dn } from "./skill/useSkillFileActions.js";
|
|
70
|
+
import { SkillPreviewErrorKind as On, useSkillFilePreview as kn } from "./skill/useSkillFilePreview.js";
|
|
71
|
+
import { useSkillsState as An } from "./skill/useSkillsState/useSkillsState.js";
|
|
72
|
+
import { RecipientsCountStatus as jn, useShareRecipientsCount as Mn } from "./useShareRecipientsCount/useShareRecipientsCount.js";
|
|
73
|
+
import { deriveConversationRowActionState as Nn } from "./conversation/deriveConversationRowActionState/deriveConversationRowActionState.js";
|
|
74
|
+
import { useActiveConversationSync as Pn } from "./conversation/useActiveConversationSync/useActiveConversationSync.js";
|
|
75
|
+
import { useAsyncConfirmDialog as Fn } from "./conversation/useAsyncConfirmDialog/useAsyncConfirmDialog.js";
|
|
76
|
+
import { useConversationLookupMaps as In } from "./conversation/useConversationLookupMaps/useConversationLookupMaps.js";
|
|
77
|
+
import { getConversationSource as Ln, useConversationPanelItems as Rn } from "./conversation/useConversationPanelItems/useConversationPanelItems.js";
|
|
78
|
+
import { useImportFilePicker as zn } from "./conversation/useImportFilePicker/useImportFilePicker.js";
|
|
79
|
+
import { useAttachmentUpload as Bn } from "./conversation/useAttachmentUpload/useAttachmentUpload.js";
|
|
80
|
+
import { AudioTranscriptionError as Vn, AudioTranscriptionErrorReason as Hn } from "./conversation/useTranscribeAudio/audio-transcription-error.js";
|
|
81
|
+
import { useTranscribeAudio as Un } from "./conversation/useTranscribeAudio/useTranscribeAudio.js";
|
|
82
|
+
import { DEFAULT_MAX_ARCHIVE_BYTES as Wn, useConversationExport as Gn } from "./conversation/useConversationExport/useConversationExport.js";
|
|
83
|
+
import { attachmentToDto as Kn, attachmentsToDtos as qn } from "./conversation/useConversationHandlers/attachment-to-dto.js";
|
|
84
|
+
import { createMessagePair as Jn } from "./conversation/useConversationHandlers/message-factory.js";
|
|
85
|
+
import { hasActiveToolConfig as Yn, isAnswerIncomplete as Xn, isMessageChanged as Zn, shouldRerunGenerationOnEdit as Qn } from "./conversation/useConversationHandlers/message-utils.js";
|
|
86
|
+
import { getStarterConversationText as $n, getStarterSubmitText as er } from "./conversation/useConversationHandlers/starter-option.js";
|
|
87
|
+
import { getConversationPath as tr } from "./conversation/useConversationStream/conversation-path.js";
|
|
88
|
+
import { useConversationHandlers as nr } from "./conversation/useConversationHandlers/useConversationHandlers.js";
|
|
89
|
+
import { useConversationImport as rr } from "./conversation/useConversationImport/useConversationImport.js";
|
|
90
|
+
import { useConversationScroll as ir } from "./conversation/useConversationScroll/useConversationScroll.js";
|
|
91
|
+
import { isAwaitingGenerationResume as ar } from "./conversation/useConversationStream/generation-resume.js";
|
|
92
|
+
import { useConversationStream as or } from "./conversation/useConversationStream/useConversationStream.js";
|
|
93
|
+
import { useConversationSources as sr } from "./conversation-sources/useConversationSources/useConversationSources.js";
|
|
94
|
+
import { DialFilesApiUploadMode as cr } from "./files/dial-files-api.js";
|
|
95
|
+
import { FileManagerNotificationReason as lr, FileNameValidationErrorReason as ur, FileOperationKind as dr } from "./files/dial-file-manager.types.js";
|
|
96
|
+
import { COLUMNS_WITHOUT_AUTHOR as fr, COLUMNS_WITH_AUTHOR as pr, CORE_PERMISSION_MAP as mr, DATE_OPTIONS as hr, PATH_SEPARATOR_REGEXP as gr, RESERVED_MARKER_NAME as _r, UPLOAD_CONCURRENCY as vr } from "./files/dial-file-manager.model.js";
|
|
97
|
+
import { DialFileManagerActionProfile as yr, DialFileManagerVariant as br, deriveActionProfile as xr } from "./files/file-manager-variant.js";
|
|
98
|
+
import { buildSharedItemVirtualPath as Sr, dialCorePathToRelative as Cr, findDialFileByPath as wr, findFolderByVirtualPath as Tr, formatOperationFolderName as Er, getVirtualPathName as Dr, hasDialFileWritePermission as Or, hasForbiddenNameSymbols as kr, isCopyMoveDuplicateAllowed as Ar, isShareActionsAllowed as jr, normalizeVirtualPath as Mr, parseNewFolderVirtualPath as Nr, resolveOwnerCoords as Pr } from "./files/dial-file-manager-path.util.js";
|
|
99
|
+
import { getParentFolderPath as Fr, resolveDialFileApiPath as Ir, virtualPathToApiPath as Lr } from "./files/resolve-dial-file-api-path.js";
|
|
100
|
+
import { prepareCopyItems as Rr, prepareMoveRenameItems as zr } from "./files/dial-file-manager-copy-move.util.js";
|
|
101
|
+
import { buildFromCache as Br, fetchByTab as Vr, fetchForSearch as Hr, findFirstSuccessfulCopyMoveItem as Ur, mapCorePermissions as Wr, mapFileMetadataToDialFile as Gr, mapSearchItem as Kr, mergeCreatedFolderIntoCache as qr, updateEntry as Jr } from "./files/dial-file-manager-mapping.util.js";
|
|
102
|
+
import { createFilesApiClient as Yr } from "./files/create-files-api.js";
|
|
103
|
+
import { createUploadFileWithProgress as Xr } from "./files/create-upload-file-with-progress.js";
|
|
104
|
+
import { openAnnotationAttachment as Zr } from "./files/annotation.js";
|
|
105
|
+
import { annotationToOoxmlCanvasContent as Qr, annotationToPdfCanvasContent as $r, clearAttachmentCache as ei, hasAttachmentTextSource as ti, referenceAttachmentToPdfCanvasContent as ni, resolveCodeCanvasContent as ri, resolveHtmlCanvasContent as ii, resolveImageCanvasContent as ai, resolveJsonCanvasContent as oi, resolveMarkdownCanvasContent as si, resolveOoxmlCanvasContent as ci, resolvePdfCanvasContent as li, resolveTextCanvasContent as ui, resolveVisualizerCanvasContent as di } from "./files/attachment-canvas.js";
|
|
106
|
+
import { getUrlFileName as fi, isExternalSourcePreviewable as pi, resolveExternalSourceContentType as mi } from "./files/source-content.js";
|
|
107
|
+
import { annotationToDisplayAttachment as hi, attachmentDtoToDisplayAttachment as gi, attachmentDtosToDisplayAttachments as _i } from "./files/attachment-dto-to-display.js";
|
|
108
|
+
import { dialFileToAttachment as vi, dialFilesToAttachments as yi, dialFolderPathToAttachment as bi } from "./files/dial-file-to-attachment.js";
|
|
109
|
+
import { DownloadDestinationType as xi } from "./files/download-destination.js";
|
|
110
|
+
import { prepareDownloadDestination as Si } from "./files/prepare-download-destination.js";
|
|
111
|
+
import { sanitizeFileName as Ci, splitFileNameExtension as wi, trimFileNameToByteLimit as Ti } from "./files/file-name.js";
|
|
112
|
+
import { useDialFileListing as Ei } from "./files/useDialFileListing/useDialFileListing.js";
|
|
113
|
+
import { useDialFileMetadata as Di } from "./files/useDialFileMetadata/useDialFileMetadata.js";
|
|
114
|
+
import { useDialFileMutations as Oi } from "./files/useDialFileMutations/useDialFileMutations.js";
|
|
115
|
+
import { useDialFileSharing as ki } from "./files/useDialFileSharing/useDialFileSharing.js";
|
|
116
|
+
import { useDialFileUploadBatch as Ai } from "./files/useDialFileUploadBatch/useDialFileUploadBatch.js";
|
|
117
|
+
import { useDialFileManager as ji } from "./files/useDialFileManager/useDialFileManager.js";
|
|
118
|
+
import { useDialFileManagerTabConfig as Mi } from "./files/useDialFileManagerTabConfig/useDialFileManagerTabConfig.js";
|
|
119
|
+
import { isCustomAppSchema as Ni, isQuickAppSchema as Pi } from "./shared/application-schema.js";
|
|
120
|
+
import { getBrowserTimezone as Fi } from "./shared/browser-timezone.js";
|
|
121
|
+
import { isValidAbsoluteUrl as Ii, isValidFeaturesData as Li, parseFeaturesData as Ri } from "./shared/custom-apps.js";
|
|
122
|
+
import { buildExternalServiceScopeId as zi, getExternalServiceFallbackName as Bi, parseExternalServiceUrl as Vi } from "./shared/external-services.js";
|
|
123
|
+
import { useChatSettingsFormConfig as Hi } from "./useChatSettingsFormConfig/useChatSettingsFormConfig.js";
|
|
124
|
+
import { usePageFileDrag as Ui } from "./usePageFileDrag/usePageFileDrag.js";
|
|
125
|
+
import { useViewportWidth as Wi } from "./useViewportWidth/useViewportWidth.js";
|
|
126
|
+
import { usePanelMaxWidth as Gi } from "./usePanelMaxWidth/usePanelMaxWidth.js";
|
|
127
|
+
import { useShareLink as Ki } from "./useShareLink/useShareLink.js";
|
|
128
|
+
import { useToolsMenu as qi } from "./useToolsMenu/useToolsMenu.js";
|
|
129
|
+
import { useUsageData as Ji } from "./usage/useUsageData/useUsageData.js";
|
|
130
|
+
import { McpAppResourceFetchError as Yi, createMcpAppsApiClient as Xi } from "./mcp-apps/mcp-apps-api-client.js";
|
|
131
|
+
import { useMcpAppTools as Zi } from "./mcp-apps/useMcpAppTools/useMcpAppTools.js";
|
|
132
|
+
import { useMcpAppHostContext as Qi } from "./mcp-apps/useMcpAppHostContext/useMcpAppHostContext.js";
|
|
133
|
+
import { useMcpAppHostAdapter as $i } from "./mcp-apps/useMcpAppHostAdapter/useMcpAppHostAdapter.js";
|
|
134
|
+
import { useOpenMcpAppCanvas as ea } from "./mcp-apps/useOpenMcpAppCanvas/useOpenMcpAppCanvas.js";
|
|
135
|
+
import { useGridEditingScroll as ta } from "@epam/ai-dial-chat-shared";
|
|
136
|
+
export { b as AttachmentValidationErrorReason, Vn as AudioTranscriptionError, Hn as AudioTranscriptionErrorReason, L as AuthenticationType, fr as COLUMNS_WITHOUT_AUTHOR, pr as COLUMNS_WITH_AUTHOR, mr as CORE_PERMISSION_MAP, Ze as CatalogPrimaryActionType, w as ConversationExportMode, T as ConversationTransferErrorCode, E as ConversationTransferWarningCode, hr as DATE_OPTIONS, It as DEFAULT_GENERATION_CONFLICT_MESSAGE, Wn as DEFAULT_MAX_ARCHIVE_BYTES, yr as DialFileManagerActionProfile, br as DialFileManagerVariant, cr as DialFilesApiUploadMode, xi as DownloadDestinationType, O as EXPORT_APP_NAME, D as ExportFileNameKind, Ot as FavoriteEntityType, lr as FileManagerNotificationReason, ur as FileNameValidationErrorReason, dr as FileOperationKind, Lt as GenerationConflictError, Yi as McpAppResourceFetchError, Ie as McpResourceKind, it as OAuthResourceKind, gr as PATH_SEPARATOR_REGEXP, an as PROMPT_CONTENT_MAX_LENGTH, on as PROMPT_COUNTER_ANNOUNCE_THRESHOLD, sn as PROMPT_DESCRIPTION_MAX_LENGTH, cn as PROMPT_NAME_MAX_LENGTH, Ce as PUBLIC_SKILL_BUCKET, ln as PromptFieldError, ie as PromptSource, _r as RESERVED_MARKER_NAME, jn as RecipientsCountStatus, le as SKILL_FILE_UPLOAD_MAX_BYTES, we as SKILL_LISTING_MAX_PAGES, Te as SKILL_LISTING_PAGE_SIZE, ue as SKILL_MANIFEST_FILE, Ee as SKILL_MANIFEST_MAX_BYTES, de as SKILL_UPLOAD_MAX_FILES, fe as SKILL_UPLOAD_MAX_TOTAL_BYTES, wn as SkillEditorLoadState, On as SkillPreviewErrorKind, De as SkillSource, at as TOOLSET_REDIRECT_STATE_KEY, ot as ToolsetAuthStatus, st as ToolsetAuthTypes, ct as ToolsetCredentialsLevel, wt as ToolsetLoginOutcomeType, lt as ToolsetOAuthCallbackQuery, ut as ToolsetOAuthChannelControlType, dt as ToolsetOAuthFailureReason, ft as ToolsetOAuthInitiationResultType, pt as ToolsetOAuthResultType, vr as UPLOAD_CONCURRENCY, gn as UnsupportedTriggerReason, mt as WithLogin, hi as annotationToDisplayAttachment, Qr as annotationToOoxmlCanvasContent, $r as annotationToPdfCanvasContent, _n as apSchedulerDayToJsDay, U as appendLocaleCode, gi as attachmentDtoToDisplayAttachment, _i as attachmentDtosToDisplayAttachments, Kn as attachmentToDto, qn as attachmentsToDtos, W as buildAdditionalLocaleOptions, jt as buildAnnouncementSignature, Le as buildApplicationMcpUrl, M as buildChatCompletionsUrl, Re as buildConnectApi, N as buildDeploymentConnectApi, zi as buildExternalServiceScopeId, Br as buildFromCache, tn as buildPromptExportEnvelope, nn as buildPromptExportFileName, oe as buildPromptOverview, un as buildPromptPath, P as buildResponsesUrl, Sr as buildSharedItemVirtualPath, ke as buildSkillContentTree, pe as buildSkillFilesPayload, me as buildSkillManifest, he as buildSkillManifestForSubmit, ge as buildSkillManifestFromFrontmatter, Ae as buildSkillOverview, yt as buildToolsetAuthorizeUrl, ze as buildToolsetMcpUrl, ei as clearAttachmentCache, G as composeLocalePayload, Rt as createChatStreamApi, i as createCsrfMiddleware, Wt as createDeploymentChangedMessage, Yr as createFilesApiClient, Xi as createMcpAppsApiClient, Jn as createMessagePair, A as createPublishApiClient, a as createUnauthorizedMiddleware, Xr as createUploadFileWithProgress, B as decodeToolsetId, K as decomposeLocalizedFields, xr as deriveActionProfile, Ke as deriveAvailableTabIds, Nn as deriveConversationRowActionState, qe as deriveFavoriteItems, Cr as dialCorePathToRelative, vi as dialFileToAttachment, yi as dialFilesToAttachments, bi as dialFolderPathToAttachment, p as downloadAttachment, ht as emitToolsetLoginSuccess, F as encodeDeploymentId, V as encodeToolsetId, Vr as fetchByTab, Hr as fetchForSearch, tt as fetchSkillDescription, Je as filterCatalogItemsBySelector, Ye as filterHiddenOwnedItems, I as findDeploymentByIdOrReference, wr as findDialFileByPath, Ur as findFirstSuccessfulCopyMoveItem, Tr as findFolderByVirtualPath, Bt as formatAppVersion, Y as formatCalendarDate, S as formatDateYM, C as formatDateYMD, Er as formatOperationFolderName, k as formatQuotedNameList, e as getApiErrorDetails, t as getApiErrorMessage, n as getApiErrorStatus, Fi as getBrowserTimezone, tr as getConversationPath, Ln as getConversationSource, Bi as getExternalServiceFallbackName, Gt as getLastDeploymentId, Kt as getLastUserMessageToolConfiguration, Ht as getModelIdFromConversationId, Fr as getParentFolderPath, Ve as getPublicCatalogEntityFolderPath, Zt as getQuickAppConversationStarters, dn as getRemainingCharacters, $n as getStarterConversationText, Qt as getStarterPopulateText, er as getStarterSubmitText, $t as getStartersFromSchema, Ut as getTimeOfDayGreeting, _t as getToolsetOAuthChannelName, bt as getToolsetRedirectUri, fi as getUrlFileName, Dr as getVirtualPathName, Yn as hasActiveToolConfig, Mt as hasAnnouncementContent, ti as hasAttachmentTextSource, Or as hasDialFileWritePermission, kr as hasForbiddenNameSymbols, Nt as hasStructuredAnnouncement, o as includesIgnoreCase, xt as initiateOAuthLogin, Xn as isAnswerIncomplete, ar as isAwaitingGenerationResume, r as isConversationNotFoundError, Ar as isCopyMoveDuplicateAllowed, Ni as isCustomAppSchema, g as isDialFileAcceptType, u as isDialFileId, m as isDownloadableAttachment, pi as isExternalSourcePreviewable, Zn as isMessageChanged, qt as isMessageStreaming, se as isOrganisationPromptItem, He as isPublicCatalogEntityId, H as isPublicToolsetId, Pi as isQuickAppSchema, jr as isShareActionsAllowed, Ii as isValidAbsoluteUrl, Li as isValidFeaturesData, _e as isValidSkillRelativePath, vn as jsDayToApSchedulerDay, Wr as mapCorePermissions, Z as mapDeploymentDetailsDtoToEntityDetails, R as mapDeploymentLimitsDtoToCatalogLimits, z as mapDeploymentLimitsToInput, ee as mapDeploymentToCatalogItem, te as mapDeploymentToolsetCredentials, Q as mapEntityDetailsToCatalogDetails, Gr as mapFileMetadataToDialFile, yn as mapFormValuesToCreateBody, bn as mapFormValuesToUpdateBody, ce as mapPromptToCatalogItem, Ue as mapPublishConversationResultDto, We as mapPublishHistoryEntryDto, xn as mapScheduledTaskDtoToFormValues, Kr as mapSearchItem, je as mapSkillToCatalogItem, $ as mapToolsetCredentials, ne as mapToolsetToCatalogItem, qr as mergeCreatedFolderIntoCache, Jt as messageHasStages, _ as mimeTypesToAttachmentExtensionLabels, v as mimeTypesToDialFileAcceptTypes, y as mimeTypesToFileAccept, ve as nameFromPath, St as navigateToolsetOAuthPopup, Yt as normalizeResponseFormat, ye as normalizeSkillName, Mr as normalizeVirtualPath, Zr as openAnnotationAttachment, Ct as openToolsetOAuthPopup, X as padTwoDigits, Vi as parseExternalServiceUrl, Ri as parseFeaturesData, Nr as parseNewFolderVirtualPath, ae as parsePromptResourceUrl, be as parseSkillManifest, et as parseSkillManifestDocument, Oe as parseSkillResourceUrl, Rr as prepareCopyItems, Si as prepareDownloadDestination, zr as prepareMoveRenameItems, Me as readSkillFileBytes, Ne as readSkillManifest, Xe as reconcileFilterTopics, ni as referenceAttachmentToPdfCanvasContent, Qe as resolveCatalogPrimaryAction, ri as resolveCodeCanvasContent, re as resolveDeploymentFolder, Ir as resolveDialFileApiPath, d as resolveDialFileBucketAndPath, mi as resolveExternalSourceContentType, ii as resolveHtmlCanvasContent, ai as resolveImageCanvasContent, oi as resolveJsonCanvasContent, q as resolveLocalizedText, si as resolveMarkdownCanvasContent, Be as resolveMcpResourceKind, ci as resolveOoxmlCanvasContent, Pr as resolveOwnerCoords, li as resolvePdfCanvasContent, f as resolveRelativeDialFilePath, Pe as resolveSkillFileDownloadPath, Fe as resolveSkillManifestFileId, ui as resolveTextCanvasContent, di as resolveVisualizerCanvasContent, s as safeDecodeURI, c as safeDecodeURIComponent, Pt as sanitizeAnnouncementHtml, Ft as sanitizeAnnouncementMessageHtml, Ci as sanitizeFileName, Vt as sanitizeFooterHtml, rn as serializePromptExport, Qn as shouldRerunGenerationOnEdit, zt as shouldWatchForDisplayNameUpdate, xe as skillFileBytesToBlob, Cn as skillFileToAttachment, wi as splitFileNameExtension, l as stripSurroundingSlashes, gt as subscribeToolsetLoginSuccess, J as toBaseLocale, Xt as toOverlayMessages, Ge as toPublishEntityType, j as toPublishRuleDto, Ti as trimFileNameToByteLimit, Se as unpackSkillArchive, Jr as updateEntry, Pn as useActiveConversationSync, Fn as useAsyncConfirmDialog, h as useAttachmentAction, Bn as useAttachmentUpload, x as useAttachmentValidation, $e as useCatalogEditNavigation, rt as useCatalogItemDetails, Et as useCatalogToolsetCredentials, Hi as useChatSettingsFormConfig, Gn as useConversationExport, nr as useConversationHandlers, rr as useConversationImport, In as useConversationLookupMaps, Rn as useConversationPanelItems, ir as useConversationScroll, sr as useConversationSources, or as useConversationStream, Ei as useDialFileListing, ji as useDialFileManager, Mi as useDialFileManagerTabConfig, Di as useDialFileMetadata, Oi as useDialFileMutations, ki as useDialFileSharing, Ai as useDialFileUploadBatch, kt as useFavoriteEntitiesState, ta as useGridEditingScroll, zn as useImportFilePicker, $i as useMcpAppHostAdapter, Qi as useMcpAppHostContext, Zi as useMcpAppTools, en as useOAuthCallbackCompletion, ea as useOpenMcpAppCanvas, Ui as usePageFileDrag, Gi as usePanelMaxWidth, hn as usePromptsState, At as usePublishFolders, Ki as useShareLink, Mn as useShareRecipientsCount, Dt as useSkillDetailsPanelData, Tn as useSkillEditorLoad, En as useSkillEditorSubmit, Dn as useSkillFileActions, kn as useSkillFilePreview, nt as useSkillItemDetails, An as useSkillsState, qi as useToolsMenu, Tt as useToolsetLogin, Un as useTranscribeAudio, Ji as useUsageData, Wi as useViewportWidth, fn as validatePromptContent, pn as validatePromptDescription, mn as validatePromptName, Sn as validateSkillFileBatch, Lr as virtualPathToApiPath, vt as waitForToolsetOAuthResult };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epam/ai-dial-chat-hooks",
|
|
3
3
|
"description": "Framework-level React hooks extracted from AI DIAL Chat for building custom chat interfaces",
|
|
4
|
-
"version": "1.1.0-dev.
|
|
4
|
+
"version": "1.1.0-dev.438",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./index.js",
|
|
@@ -104,21 +104,21 @@
|
|
|
104
104
|
},
|
|
105
105
|
"peerDependencies": {
|
|
106
106
|
"react": "^19.2.6",
|
|
107
|
-
"@epam/ai-dial-attachment-canvas": "1.1.0-dev.
|
|
108
|
-
"@epam/ai-dial-attachment-input": "1.1.0-dev.
|
|
109
|
-
"@epam/ai-dial-catalog": "1.1.0-dev.
|
|
110
|
-
"@epam/ai-dial-chat-api-client": "1.1.0-dev.
|
|
111
|
-
"@epam/ai-dial-chat-overlay": "1.1.0-dev.
|
|
112
|
-
"@epam/ai-dial-chat-shared": "1.1.0-dev.
|
|
113
|
-
"@epam/ai-dial-deployment-creation-form": "1.1.0-dev.
|
|
114
|
-
"@epam/ai-dial-mcp-apps": "1.1.0-dev.
|
|
115
|
-
"@epam/ai-dial-publish-panel": "1.1.0-dev.
|
|
116
|
-
"@epam/ai-dial-quotations": "1.1.0-dev.
|
|
107
|
+
"@epam/ai-dial-attachment-canvas": "1.1.0-dev.438",
|
|
108
|
+
"@epam/ai-dial-attachment-input": "1.1.0-dev.438",
|
|
109
|
+
"@epam/ai-dial-catalog": "1.1.0-dev.438",
|
|
110
|
+
"@epam/ai-dial-chat-api-client": "1.1.0-dev.438",
|
|
111
|
+
"@epam/ai-dial-chat-overlay": "1.1.0-dev.438",
|
|
112
|
+
"@epam/ai-dial-chat-shared": "1.1.0-dev.438",
|
|
113
|
+
"@epam/ai-dial-deployment-creation-form": "1.1.0-dev.438",
|
|
114
|
+
"@epam/ai-dial-mcp-apps": "1.1.0-dev.438",
|
|
115
|
+
"@epam/ai-dial-publish-panel": "1.1.0-dev.438",
|
|
116
|
+
"@epam/ai-dial-quotations": "1.1.0-dev.438",
|
|
117
117
|
"@epam/ai-dial-react-file-manager": "*",
|
|
118
|
-
"@epam/ai-dial-scheduled-tasks": "1.1.0-dev.
|
|
119
|
-
"@epam/ai-dial-share": "1.1.0-dev.
|
|
120
|
-
"@epam/ai-dial-skill-editor": "1.1.0-dev.
|
|
121
|
-
"@epam/ai-dial-source-panel": "1.1.0-dev.
|
|
118
|
+
"@epam/ai-dial-scheduled-tasks": "1.1.0-dev.438",
|
|
119
|
+
"@epam/ai-dial-share": "1.1.0-dev.438",
|
|
120
|
+
"@epam/ai-dial-skill-editor": "1.1.0-dev.438",
|
|
121
|
+
"@epam/ai-dial-source-panel": "1.1.0-dev.438",
|
|
122
122
|
"@epam/ai-dial-ui-kit": "*",
|
|
123
123
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
124
124
|
"@epam/pdf-highlighter-kit": ">=0.0.14",
|