@epam/ai-dial-chat-hooks 1.1.0-dev.430 → 1.1.0-dev.431
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/publish.js +11 -10
- package/catalog.d.ts +20 -0
- package/catalog.js +10 -10
- package/index.d.ts +20 -0
- package/index.js +105 -105
- package/package.json +15 -15
package/catalog/publish.js
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { safeDecodeURIComponent as e } from "../shared/string-utils.js";
|
|
2
|
+
import { CatalogEntityType as t } from "@epam/ai-dial-chat-shared";
|
|
2
3
|
//#region src/catalog/publish.ts
|
|
3
|
-
var
|
|
4
|
-
[
|
|
5
|
-
[
|
|
6
|
-
[
|
|
7
|
-
[
|
|
8
|
-
[
|
|
9
|
-
}, n = (e) => t[
|
|
4
|
+
var n = {
|
|
5
|
+
[t.Model]: "model",
|
|
6
|
+
[t.Toolset]: "toolset",
|
|
7
|
+
[t.Agent]: "application",
|
|
8
|
+
[t.Prompt]: "prompt",
|
|
9
|
+
[t.Skill]: "skill"
|
|
10
|
+
}, r = (e) => n[e], i = "public", a = (e) => e.split("/")[1] === i, o = (t) => a(t) ? t.split("/").slice(2, -1).map(e) : [], s = (e) => ({
|
|
10
11
|
version: e.version,
|
|
11
12
|
publishedAt: Date.parse(e.publishedAt),
|
|
12
13
|
folderPath: e.folderPath.split("/").filter(Boolean)
|
|
13
|
-
}),
|
|
14
|
+
}), c = (e) => ({
|
|
14
15
|
publishedAt: Date.parse(e.publishedAt),
|
|
15
16
|
folderPath: e.folderPath.split("/").filter(Boolean)
|
|
16
17
|
});
|
|
17
18
|
//#endregion
|
|
18
|
-
export {
|
|
19
|
+
export { o as getPublicCatalogEntityFolderPath, a as isPublicCatalogEntityId, c as mapPublishConversationResultDto, s as mapPublishHistoryEntryDto, r as toPublishEntityType };
|
package/catalog.d.ts
CHANGED
|
@@ -370,6 +370,14 @@ export declare const filterHiddenOwnedItems: (items: readonly CatalogItem[], hid
|
|
|
370
370
|
*/
|
|
371
371
|
export declare const findDeploymentByIdOrReference: (deployments: DeploymentItemDto[], idOrReference: string | null | undefined) => DeploymentItemDto | undefined;
|
|
372
372
|
|
|
373
|
+
/**
|
|
374
|
+
* The publish folder a public catalog entity id sits in: the segments between
|
|
375
|
+
* the `public` bucket and the entity name, decoded to the plain text the
|
|
376
|
+
* publish API takes. Empty for a copy published at the public root, and for an
|
|
377
|
+
* id that is not public at all.
|
|
378
|
+
*/
|
|
379
|
+
export declare const getPublicCatalogEntityFolderPath: (entityId: string) => string[];
|
|
380
|
+
|
|
373
381
|
/**
|
|
374
382
|
* Whether a prompt item came from the organisation namespace, which the public
|
|
375
383
|
* prompt endpoints serve. Personal prompts resolve through the caller's own
|
|
@@ -377,6 +385,18 @@ export declare const findDeploymentByIdOrReference: (deployments: DeploymentItem
|
|
|
377
385
|
*/
|
|
378
386
|
export declare const isOrganisationPromptItem: (item: CatalogItem) => boolean;
|
|
379
387
|
|
|
388
|
+
/**
|
|
389
|
+
* Whether a catalog entity id addresses the shared `public` bucket
|
|
390
|
+
* (`{resourceType}/public/{folder…}/{name}`), i.e. the id names a published
|
|
391
|
+
* copy rather than the author's own source item.
|
|
392
|
+
*
|
|
393
|
+
* The bucket is always the second segment, so a personal item that happens to
|
|
394
|
+
* own a folder called `public` (`applications/{bucket}/public/{name}`) is not
|
|
395
|
+
* matched. An id with no bucket segment at all — a plain model id such as
|
|
396
|
+
* `gpt-4` — is not public.
|
|
397
|
+
*/
|
|
398
|
+
export declare const isPublicCatalogEntityId: (entityId: string) => boolean;
|
|
399
|
+
|
|
380
400
|
/**
|
|
381
401
|
* Converts the backend `DeploymentDetailsDto` (model/application/toolset,
|
|
382
402
|
* fetched by id) into the strongly-typed `EntitySpecificDetails` domain model
|
package/catalog.js
CHANGED
|
@@ -10,13 +10,13 @@ import { buildPromptOverview as _, isOrganisationPromptItem as v, mapPromptToCat
|
|
|
10
10
|
import { PUBLIC_SKILL_BUCKET as b, SKILL_LISTING_MAX_PAGES as x, SKILL_LISTING_PAGE_SIZE as S, SKILL_MANIFEST_MAX_BYTES as C, SkillSource as w, parseSkillResourceUrl as T } from "./skill/skill-types.js";
|
|
11
11
|
import { buildSkillContentTree as E, buildSkillOverview as D, mapSkillToCatalogItem as O, readSkillFileBytes as k, readSkillManifest as A, resolveSkillFileDownloadPath as j, resolveSkillManifestFileId as M } from "./catalog/map-skill-to-catalog-item.js";
|
|
12
12
|
import { McpResourceKind as N, buildApplicationMcpUrl as P, buildConnectApi as F, buildToolsetMcpUrl as I, resolveMcpResourceKind as L } from "./catalog/mcp-endpoint-url.js";
|
|
13
|
-
import {
|
|
14
|
-
import { deriveAvailableTabIds as
|
|
15
|
-
import { CatalogPrimaryActionType as
|
|
16
|
-
import { useCatalogEditNavigation as
|
|
17
|
-
import { useCatalogItemDetails as
|
|
18
|
-
import { useCatalogToolsetCredentials as
|
|
19
|
-
import { FavoriteEntityType as
|
|
20
|
-
import { usePublishFolders as
|
|
21
|
-
import { SkillPreviewErrorKind as
|
|
22
|
-
export { s as AuthenticationType,
|
|
13
|
+
import { getPublicCatalogEntityFolderPath as R, isPublicCatalogEntityId as z, mapPublishConversationResultDto as B, mapPublishHistoryEntryDto as V, toPublishEntityType as H } from "./catalog/publish.js";
|
|
14
|
+
import { deriveAvailableTabIds as U, deriveFavoriteItems as W, filterCatalogItemsBySelector as G, filterHiddenOwnedItems as K, reconcileFilterTopics as q } from "./catalog/catalog-derivations.js";
|
|
15
|
+
import { CatalogPrimaryActionType as J, resolveCatalogPrimaryAction as Y } from "./catalog/catalog-primary-action.js";
|
|
16
|
+
import { useCatalogEditNavigation as X } from "./catalog/useCatalogEditNavigation/useCatalogEditNavigation.js";
|
|
17
|
+
import { useCatalogItemDetails as Z } from "./catalog/useCatalogItemDetails.js";
|
|
18
|
+
import { useCatalogToolsetCredentials as Q } from "./catalog/useCatalogToolsetCredentials/useCatalogToolsetCredentials.js";
|
|
19
|
+
import { FavoriteEntityType as $, useFavoriteEntitiesState as ee } from "./catalog/useFavoriteEntitiesState/useFavoriteEntitiesState.js";
|
|
20
|
+
import { usePublishFolders as te } from "./catalog/usePublishFolders/usePublishFolders.js";
|
|
21
|
+
import { SkillPreviewErrorKind as ne, useSkillFilePreview as re } from "./skill/useSkillFilePreview.js";
|
|
22
|
+
export { s as AuthenticationType, J as CatalogPrimaryActionType, $ as FavoriteEntityType, N as McpResourceKind, b as PUBLIC_SKILL_BUCKET, x as SKILL_LISTING_MAX_PAGES, S as SKILL_LISTING_PAGE_SIZE, C as SKILL_MANIFEST_MAX_BYTES, ne as SkillPreviewErrorKind, w as SkillSource, P as buildApplicationMcpUrl, n as buildChatCompletionsUrl, F as buildConnectApi, r as buildDeploymentConnectApi, _ as buildPromptOverview, i as buildResponsesUrl, E as buildSkillContentTree, D as buildSkillOverview, I as buildToolsetMcpUrl, e as createPublishApiClient, U as deriveAvailableTabIds, W as deriveFavoriteItems, a as encodeDeploymentId, G as filterCatalogItemsBySelector, K as filterHiddenOwnedItems, o as findDeploymentByIdOrReference, R as getPublicCatalogEntityFolderPath, v as isOrganisationPromptItem, z as isPublicCatalogEntityId, u as mapDeploymentDetailsDtoToEntityDetails, c as mapDeploymentLimitsDtoToCatalogLimits, l as mapDeploymentLimitsToInput, p as mapDeploymentToCatalogItem, m as mapDeploymentToolsetCredentials, d as mapEntityDetailsToCatalogDetails, y as mapPromptToCatalogItem, B as mapPublishConversationResultDto, V as mapPublishHistoryEntryDto, O as mapSkillToCatalogItem, f as mapToolsetCredentials, h as mapToolsetToCatalogItem, T as parseSkillResourceUrl, k as readSkillFileBytes, A as readSkillManifest, q as reconcileFilterTopics, Y as resolveCatalogPrimaryAction, g as resolveDeploymentFolder, L as resolveMcpResourceKind, j as resolveSkillFileDownloadPath, M as resolveSkillManifestFileId, H as toPublishEntityType, t as toPublishRuleDto, X as useCatalogEditNavigation, Z as useCatalogItemDetails, Q as useCatalogToolsetCredentials, ee as useFavoriteEntitiesState, te as usePublishFolders, re as useSkillFilePreview };
|
package/index.d.ts
CHANGED
|
@@ -1677,6 +1677,14 @@ export declare const getModelIdFromConversationId: (id: string) => string | unde
|
|
|
1677
1677
|
|
|
1678
1678
|
export { getParentFolderPath }
|
|
1679
1679
|
|
|
1680
|
+
/**
|
|
1681
|
+
* The publish folder a public catalog entity id sits in: the segments between
|
|
1682
|
+
* the `public` bucket and the entity name, decoded to the plain text the
|
|
1683
|
+
* publish API takes. Empty for a copy published at the public root, and for an
|
|
1684
|
+
* id that is not public at all.
|
|
1685
|
+
*/
|
|
1686
|
+
export declare const getPublicCatalogEntityFolderPath: (entityId: string) => string[];
|
|
1687
|
+
|
|
1680
1688
|
/** Parses a Quick App's raw `conversationStarters` schema value into starter options. */
|
|
1681
1689
|
export declare const getQuickAppConversationStarters: (conversationStarters: unknown) => QuickAppConversationStartersSettings;
|
|
1682
1690
|
|
|
@@ -1876,6 +1884,18 @@ export declare const isMessageStreaming: (message: Message, messageIndex: number
|
|
|
1876
1884
|
*/
|
|
1877
1885
|
export declare const isOrganisationPromptItem: (item: CatalogItem) => boolean;
|
|
1878
1886
|
|
|
1887
|
+
/**
|
|
1888
|
+
* Whether a catalog entity id addresses the shared `public` bucket
|
|
1889
|
+
* (`{resourceType}/public/{folder…}/{name}`), i.e. the id names a published
|
|
1890
|
+
* copy rather than the author's own source item.
|
|
1891
|
+
*
|
|
1892
|
+
* The bucket is always the second segment, so a personal item that happens to
|
|
1893
|
+
* own a folder called `public` (`applications/{bucket}/public/{name}`) is not
|
|
1894
|
+
* matched. An id with no bucket segment at all — a plain model id such as
|
|
1895
|
+
* `gpt-4` — is not public.
|
|
1896
|
+
*/
|
|
1897
|
+
export declare const isPublicCatalogEntityId: (entityId: string) => boolean;
|
|
1898
|
+
|
|
1879
1899
|
/** Whether a toolset id belongs to the `public` bucket (shared with all users), mirroring the legacy `isEntityIdPublic` check. */
|
|
1880
1900
|
export declare const isPublicToolsetId: (toolsetId: string) => boolean;
|
|
1881
1901
|
|
package/index.js
CHANGED
|
@@ -27,108 +27,108 @@ import { SKILL_FILE_UPLOAD_MAX_BYTES as le, SKILL_MANIFEST_FILE as ue, SKILL_UPL
|
|
|
27
27
|
import { PUBLIC_SKILL_BUCKET as Ce, SKILL_LISTING_MAX_PAGES as we, SKILL_LISTING_PAGE_SIZE as Te, SKILL_MANIFEST_MAX_BYTES as Ee, SkillSource as De, parseSkillResourceUrl as Oe } from "./skill/skill-types.js";
|
|
28
28
|
import { buildSkillContentTree as ke, buildSkillOverview as Ae, mapSkillToCatalogItem as je, readSkillFileBytes as Me, readSkillManifest as Ne, resolveSkillFileDownloadPath as Pe, resolveSkillManifestFileId as Fe } from "./catalog/map-skill-to-catalog-item.js";
|
|
29
29
|
import { McpResourceKind as Ie, buildApplicationMcpUrl as Le, buildConnectApi as Re, buildToolsetMcpUrl as ze, resolveMcpResourceKind as Be } from "./catalog/mcp-endpoint-url.js";
|
|
30
|
-
import {
|
|
31
|
-
import { deriveAvailableTabIds as
|
|
32
|
-
import { CatalogPrimaryActionType as
|
|
33
|
-
import { useCatalogEditNavigation as
|
|
34
|
-
import { parseSkillManifestDocument as
|
|
35
|
-
import { useCatalogItemDetails as
|
|
36
|
-
import { OAuthResourceKind as
|
|
37
|
-
import { emitToolsetLoginSuccess as
|
|
38
|
-
import { getToolsetOAuthChannelName as
|
|
39
|
-
import { buildToolsetAuthorizeUrl as
|
|
40
|
-
import { initiateOAuthLogin as
|
|
41
|
-
import { ToolsetLoginOutcomeType as
|
|
42
|
-
import { useCatalogToolsetCredentials as
|
|
43
|
-
import { FavoriteEntityType as
|
|
44
|
-
import { usePublishFolders as
|
|
45
|
-
import { buildAnnouncementSignature as
|
|
46
|
-
import { createChatStreamApi as
|
|
47
|
-
import { shouldWatchForDisplayNameUpdate as
|
|
48
|
-
import { formatAppVersion as
|
|
49
|
-
import { getModelIdFromConversationId as
|
|
50
|
-
import { getTimeOfDayGreeting as
|
|
51
|
-
import { createDeploymentChangedMessage as
|
|
52
|
-
import { getLastDeploymentId as
|
|
53
|
-
import { toOverlayMessages as
|
|
54
|
-
import { getQuickAppConversationStarters as
|
|
55
|
-
import { getStarterPopulateText as
|
|
56
|
-
import { useOAuthCallbackCompletion as
|
|
57
|
-
import { buildPromptExportEnvelope as
|
|
58
|
-
import { PROMPT_CONTENT_MAX_LENGTH as
|
|
59
|
-
import { usePromptsState as
|
|
60
|
-
import { UnsupportedTriggerReason as
|
|
61
|
-
import { apSchedulerDayToJsDay as
|
|
62
|
-
import { mapFormValuesToCreateBody as
|
|
63
|
-
import { validateSkillFileBatch as
|
|
64
|
-
import { skillFileToAttachment as
|
|
65
|
-
import { SkillEditorLoadState as
|
|
66
|
-
import { useSkillEditorSubmit as
|
|
67
|
-
import { useSkillFileActions as
|
|
68
|
-
import { SkillPreviewErrorKind as
|
|
69
|
-
import { useSkillsState as
|
|
70
|
-
import { RecipientsCountStatus as
|
|
71
|
-
import { deriveConversationRowActionState as
|
|
72
|
-
import { useActiveConversationSync as
|
|
73
|
-
import { useAsyncConfirmDialog as
|
|
74
|
-
import { useConversationLookupMaps as
|
|
75
|
-
import { getConversationSource as
|
|
76
|
-
import { useImportFilePicker as
|
|
77
|
-
import { useAttachmentUpload as
|
|
78
|
-
import { AudioTranscriptionError as
|
|
79
|
-
import { useTranscribeAudio as
|
|
80
|
-
import { DEFAULT_MAX_ARCHIVE_BYTES as
|
|
81
|
-
import { attachmentToDto as
|
|
82
|
-
import { createMessagePair as
|
|
83
|
-
import { hasActiveToolConfig as
|
|
84
|
-
import { getStarterConversationText as
|
|
85
|
-
import { getConversationPath as
|
|
86
|
-
import { useConversationHandlers as
|
|
87
|
-
import { useConversationImport as
|
|
88
|
-
import { useConversationScroll as
|
|
89
|
-
import { isAwaitingGenerationResume as
|
|
90
|
-
import { useConversationStream as
|
|
91
|
-
import { useConversationSources as
|
|
92
|
-
import { DialFilesApiUploadMode as
|
|
93
|
-
import { FileManagerNotificationReason as
|
|
94
|
-
import { COLUMNS_WITHOUT_AUTHOR as
|
|
95
|
-
import { DialFileManagerActionProfile as
|
|
96
|
-
import { buildSharedItemVirtualPath as
|
|
97
|
-
import { getParentFolderPath as
|
|
98
|
-
import { prepareCopyItems as
|
|
99
|
-
import { buildFromCache as
|
|
100
|
-
import { createFilesApiClient as
|
|
101
|
-
import { createUploadFileWithProgress as
|
|
102
|
-
import { openAnnotationAttachment as
|
|
103
|
-
import { annotationToPdfCanvasContent as
|
|
104
|
-
import { getUrlFileName as
|
|
105
|
-
import { annotationToDisplayAttachment as
|
|
106
|
-
import { dialFileToAttachment as
|
|
107
|
-
import { DownloadDestinationType as
|
|
108
|
-
import { prepareDownloadDestination as
|
|
109
|
-
import { sanitizeFileName as
|
|
110
|
-
import { useDialFileListing as
|
|
111
|
-
import { useDialFileMetadata as
|
|
112
|
-
import { useDialFileMutations as
|
|
113
|
-
import { useDialFileSharing as
|
|
114
|
-
import { useDialFileUploadBatch as
|
|
115
|
-
import { useDialFileManager as
|
|
116
|
-
import { useDialFileManagerTabConfig as
|
|
117
|
-
import { isCustomAppSchema as
|
|
118
|
-
import { getBrowserTimezone as
|
|
119
|
-
import { isValidAbsoluteUrl as
|
|
120
|
-
import { buildExternalServiceScopeId as
|
|
121
|
-
import { useChatSettingsFormConfig as
|
|
122
|
-
import { usePageFileDrag as
|
|
123
|
-
import { useViewportWidth as
|
|
124
|
-
import { usePanelMaxWidth as
|
|
125
|
-
import { useShareLink as
|
|
126
|
-
import { useToolsMenu as
|
|
127
|
-
import { useUsageData as
|
|
128
|
-
import { McpAppResourceFetchError as
|
|
129
|
-
import { useMcpAppTools as
|
|
130
|
-
import { useMcpAppHostContext as
|
|
131
|
-
import { useMcpAppHostAdapter as
|
|
132
|
-
import { useOpenMcpAppCanvas as
|
|
133
|
-
import { useGridEditingScroll as
|
|
134
|
-
export { b as AttachmentValidationErrorReason,
|
|
30
|
+
import { getPublicCatalogEntityFolderPath as Ve, isPublicCatalogEntityId as He, mapPublishConversationResultDto as Ue, mapPublishHistoryEntryDto as We, toPublishEntityType as Ge } from "./catalog/publish.js";
|
|
31
|
+
import { deriveAvailableTabIds as Ke, deriveFavoriteItems as qe, filterCatalogItemsBySelector as Je, filterHiddenOwnedItems as Ye, reconcileFilterTopics as Xe } from "./catalog/catalog-derivations.js";
|
|
32
|
+
import { CatalogPrimaryActionType as Ze, resolveCatalogPrimaryAction as Qe } from "./catalog/catalog-primary-action.js";
|
|
33
|
+
import { useCatalogEditNavigation as $e } from "./catalog/useCatalogEditNavigation/useCatalogEditNavigation.js";
|
|
34
|
+
import { parseSkillManifestDocument as et } from "./skill/skill-manifest.js";
|
|
35
|
+
import { useCatalogItemDetails as tt } from "./catalog/useCatalogItemDetails.js";
|
|
36
|
+
import { OAuthResourceKind as nt, TOOLSET_REDIRECT_STATE_KEY as rt, ToolsetAuthStatus as it, ToolsetAuthTypes as at, ToolsetCredentialsLevel as ot, ToolsetOAuthCallbackQuery as st, ToolsetOAuthChannelControlType as ct, ToolsetOAuthFailureReason as lt, ToolsetOAuthInitiationResultType as ut, ToolsetOAuthResultType as dt, WithLogin as ft } from "./oauth/types.js";
|
|
37
|
+
import { emitToolsetLoginSuccess as pt, subscribeToolsetLoginSuccess as mt } from "./shared/toolset-login-events.js";
|
|
38
|
+
import { getToolsetOAuthChannelName as ht, waitForToolsetOAuthResult as gt } from "./oauth/handshake.js";
|
|
39
|
+
import { buildToolsetAuthorizeUrl as _t, getToolsetRedirectUri as vt } from "./oauth/authorize-url.js";
|
|
40
|
+
import { initiateOAuthLogin as yt, navigateToolsetOAuthPopup as bt, openToolsetOAuthPopup as xt } from "./oauth/popup.js";
|
|
41
|
+
import { ToolsetLoginOutcomeType as St, useToolsetLogin as Ct } from "./oauth/useToolsetLogin/useToolsetLogin.js";
|
|
42
|
+
import { useCatalogToolsetCredentials as wt } from "./catalog/useCatalogToolsetCredentials/useCatalogToolsetCredentials.js";
|
|
43
|
+
import { FavoriteEntityType as Tt, useFavoriteEntitiesState as Et } from "./catalog/useFavoriteEntitiesState/useFavoriteEntitiesState.js";
|
|
44
|
+
import { usePublishFolders as Dt } from "./catalog/usePublishFolders/usePublishFolders.js";
|
|
45
|
+
import { buildAnnouncementSignature as Ot, hasAnnouncementContent as kt, hasStructuredAnnouncement as At, sanitizeAnnouncementHtml as jt, sanitizeAnnouncementMessageHtml as Mt } from "./conversation/announcement-message.js";
|
|
46
|
+
import { createChatStreamApi as Nt } from "./conversation/create-chat-stream-api.js";
|
|
47
|
+
import { shouldWatchForDisplayNameUpdate as Pt } from "./conversation/display-name-watch.js";
|
|
48
|
+
import { formatAppVersion as Ft, sanitizeFooterHtml as It } from "./conversation/footer-message.js";
|
|
49
|
+
import { getModelIdFromConversationId as Lt } from "./conversation/get-model-id-from-conversation-id.js";
|
|
50
|
+
import { getTimeOfDayGreeting as Rt } from "./conversation/greeting.js";
|
|
51
|
+
import { createDeploymentChangedMessage as zt } from "./conversation/message-factory.js";
|
|
52
|
+
import { getLastDeploymentId as Bt, getLastUserMessageToolConfiguration as Vt, isMessageStreaming as Ht, messageHasStages as Ut, normalizeResponseFormat as Wt } from "./conversation/message-utils.js";
|
|
53
|
+
import { toOverlayMessages as Gt } from "./conversation/overlay-messages.js";
|
|
54
|
+
import { getQuickAppConversationStarters as Kt } from "./conversation/quick-app-conversation-starters.js";
|
|
55
|
+
import { getStarterPopulateText as qt, getStartersFromSchema as Jt } from "./conversation/starter-option.js";
|
|
56
|
+
import { useOAuthCallbackCompletion as Yt } from "./oauth/useOAuthCallbackCompletion/useOAuthCallbackCompletion.js";
|
|
57
|
+
import { buildPromptExportEnvelope as Xt, buildPromptExportFileName as Zt, serializePromptExport as Qt } from "./prompt/export-prompt.js";
|
|
58
|
+
import { PROMPT_CONTENT_MAX_LENGTH as $t, PROMPT_COUNTER_ANNOUNCE_THRESHOLD as en, PROMPT_DESCRIPTION_MAX_LENGTH as tn, PROMPT_NAME_MAX_LENGTH as nn, PromptFieldError as rn, buildPromptPath as an, getRemainingCharacters as on, validatePromptContent as sn, validatePromptDescription as cn, validatePromptName as ln } from "./prompt/prompt.js";
|
|
59
|
+
import { usePromptsState as un } from "./prompt/usePromptsState/usePromptsState.js";
|
|
60
|
+
import { UnsupportedTriggerReason as dn } from "./scheduled-task/scheduled-task-mapping.js";
|
|
61
|
+
import { apSchedulerDayToJsDay as fn, jsDayToApSchedulerDay as pn } from "./shared/cron-weekday.js";
|
|
62
|
+
import { mapFormValuesToCreateBody as mn, mapFormValuesToUpdateBody as hn, mapScheduledTaskDtoToFormValues as gn } from "./scheduled-task/scheduled-task-trigger.js";
|
|
63
|
+
import { validateSkillFileBatch as _n } from "./skill/skill-file-batch-validation.js";
|
|
64
|
+
import { skillFileToAttachment as vn } from "./skill/skill-file-preview.js";
|
|
65
|
+
import { SkillEditorLoadState as yn, useSkillEditorLoad as bn } from "./skill/useSkillEditorLoad.js";
|
|
66
|
+
import { useSkillEditorSubmit as xn } from "./skill/useSkillEditorSubmit.js";
|
|
67
|
+
import { useSkillFileActions as Sn } from "./skill/useSkillFileActions.js";
|
|
68
|
+
import { SkillPreviewErrorKind as Cn, useSkillFilePreview as wn } from "./skill/useSkillFilePreview.js";
|
|
69
|
+
import { useSkillsState as Tn } from "./skill/useSkillsState/useSkillsState.js";
|
|
70
|
+
import { RecipientsCountStatus as En, useShareRecipientsCount as Dn } from "./useShareRecipientsCount/useShareRecipientsCount.js";
|
|
71
|
+
import { deriveConversationRowActionState as On } from "./conversation/deriveConversationRowActionState/deriveConversationRowActionState.js";
|
|
72
|
+
import { useActiveConversationSync as kn } from "./conversation/useActiveConversationSync/useActiveConversationSync.js";
|
|
73
|
+
import { useAsyncConfirmDialog as An } from "./conversation/useAsyncConfirmDialog/useAsyncConfirmDialog.js";
|
|
74
|
+
import { useConversationLookupMaps as jn } from "./conversation/useConversationLookupMaps/useConversationLookupMaps.js";
|
|
75
|
+
import { getConversationSource as Mn, useConversationPanelItems as Nn } from "./conversation/useConversationPanelItems/useConversationPanelItems.js";
|
|
76
|
+
import { useImportFilePicker as Pn } from "./conversation/useImportFilePicker/useImportFilePicker.js";
|
|
77
|
+
import { useAttachmentUpload as Fn } from "./conversation/useAttachmentUpload/useAttachmentUpload.js";
|
|
78
|
+
import { AudioTranscriptionError as In, AudioTranscriptionErrorReason as Ln } from "./conversation/useTranscribeAudio/audio-transcription-error.js";
|
|
79
|
+
import { useTranscribeAudio as Rn } from "./conversation/useTranscribeAudio/useTranscribeAudio.js";
|
|
80
|
+
import { DEFAULT_MAX_ARCHIVE_BYTES as zn, useConversationExport as Bn } from "./conversation/useConversationExport/useConversationExport.js";
|
|
81
|
+
import { attachmentToDto as Vn, attachmentsToDtos as Hn } from "./conversation/useConversationHandlers/attachment-to-dto.js";
|
|
82
|
+
import { createMessagePair as Un } from "./conversation/useConversationHandlers/message-factory.js";
|
|
83
|
+
import { hasActiveToolConfig as Wn, isMessageChanged as Gn } from "./conversation/useConversationHandlers/message-utils.js";
|
|
84
|
+
import { getStarterConversationText as Kn, getStarterSubmitText as qn } from "./conversation/useConversationHandlers/starter-option.js";
|
|
85
|
+
import { getConversationPath as Jn } from "./conversation/useConversationStream/conversation-path.js";
|
|
86
|
+
import { useConversationHandlers as Yn } from "./conversation/useConversationHandlers/useConversationHandlers.js";
|
|
87
|
+
import { useConversationImport as Xn } from "./conversation/useConversationImport/useConversationImport.js";
|
|
88
|
+
import { useConversationScroll as Zn } from "./conversation/useConversationScroll/useConversationScroll.js";
|
|
89
|
+
import { isAwaitingGenerationResume as Qn } from "./conversation/useConversationStream/generation-resume.js";
|
|
90
|
+
import { useConversationStream as $n } from "./conversation/useConversationStream/useConversationStream.js";
|
|
91
|
+
import { useConversationSources as er } from "./conversation-sources/useConversationSources/useConversationSources.js";
|
|
92
|
+
import { DialFilesApiUploadMode as tr } from "./files/dial-files-api.js";
|
|
93
|
+
import { FileManagerNotificationReason as nr, FileNameValidationErrorReason as rr, FileOperationKind as ir } from "./files/dial-file-manager.types.js";
|
|
94
|
+
import { COLUMNS_WITHOUT_AUTHOR as ar, COLUMNS_WITH_AUTHOR as or, CORE_PERMISSION_MAP as sr, DATE_OPTIONS as cr, PATH_SEPARATOR_REGEXP as lr, RESERVED_MARKER_NAME as ur, UPLOAD_CONCURRENCY as dr } from "./files/dial-file-manager.model.js";
|
|
95
|
+
import { DialFileManagerActionProfile as fr, DialFileManagerVariant as pr, deriveActionProfile as mr } from "./files/file-manager-variant.js";
|
|
96
|
+
import { buildSharedItemVirtualPath as hr, dialCorePathToRelative as gr, findDialFileByPath as _r, findFolderByVirtualPath as vr, formatOperationFolderName as yr, getVirtualPathName as br, hasDialFileWritePermission as xr, hasForbiddenNameSymbols as Sr, isCopyMoveDuplicateAllowed as Cr, isShareActionsAllowed as wr, normalizeVirtualPath as Tr, parseNewFolderVirtualPath as Er, resolveOwnerCoords as Dr } from "./files/dial-file-manager-path.util.js";
|
|
97
|
+
import { getParentFolderPath as Or, resolveDialFileApiPath as kr, virtualPathToApiPath as Ar } from "./files/resolve-dial-file-api-path.js";
|
|
98
|
+
import { prepareCopyItems as jr, prepareMoveRenameItems as Mr } from "./files/dial-file-manager-copy-move.util.js";
|
|
99
|
+
import { buildFromCache as Nr, fetchByTab as Pr, fetchForSearch as Fr, findFirstSuccessfulCopyMoveItem as Ir, mapCorePermissions as Lr, mapFileMetadataToDialFile as Rr, mapSearchItem as zr, mergeCreatedFolderIntoCache as Br, updateEntry as Vr } from "./files/dial-file-manager-mapping.util.js";
|
|
100
|
+
import { createFilesApiClient as Hr } from "./files/create-files-api.js";
|
|
101
|
+
import { createUploadFileWithProgress as Ur } from "./files/create-upload-file-with-progress.js";
|
|
102
|
+
import { openAnnotationAttachment as Wr } from "./files/annotation.js";
|
|
103
|
+
import { annotationToPdfCanvasContent as Gr, clearAttachmentCache as Kr, hasAttachmentTextSource as qr, referenceAttachmentToPdfCanvasContent as Jr, resolveCodeCanvasContent as Yr, resolveHtmlCanvasContent as Xr, resolveImageCanvasContent as Zr, resolveJsonCanvasContent as Qr, resolveMarkdownCanvasContent as $r, resolveOoxmlCanvasContent as ei, resolvePdfCanvasContent as ti, resolveTextCanvasContent as ni, resolveVisualizerCanvasContent as ri } from "./files/attachment-canvas.js";
|
|
104
|
+
import { getUrlFileName as ii, isExternalSourcePreviewable as ai, resolveExternalSourceContentType as oi } from "./files/source-content.js";
|
|
105
|
+
import { annotationToDisplayAttachment as si, attachmentDtoToDisplayAttachment as ci, attachmentDtosToDisplayAttachments as li } from "./files/attachment-dto-to-display.js";
|
|
106
|
+
import { dialFileToAttachment as ui, dialFilesToAttachments as di, dialFolderPathToAttachment as fi } from "./files/dial-file-to-attachment.js";
|
|
107
|
+
import { DownloadDestinationType as pi } from "./files/download-destination.js";
|
|
108
|
+
import { prepareDownloadDestination as mi } from "./files/prepare-download-destination.js";
|
|
109
|
+
import { sanitizeFileName as hi, splitFileNameExtension as gi, trimFileNameToByteLimit as _i } from "./files/file-name.js";
|
|
110
|
+
import { useDialFileListing as vi } from "./files/useDialFileListing/useDialFileListing.js";
|
|
111
|
+
import { useDialFileMetadata as yi } from "./files/useDialFileMetadata/useDialFileMetadata.js";
|
|
112
|
+
import { useDialFileMutations as bi } from "./files/useDialFileMutations/useDialFileMutations.js";
|
|
113
|
+
import { useDialFileSharing as xi } from "./files/useDialFileSharing/useDialFileSharing.js";
|
|
114
|
+
import { useDialFileUploadBatch as Si } from "./files/useDialFileUploadBatch/useDialFileUploadBatch.js";
|
|
115
|
+
import { useDialFileManager as Ci } from "./files/useDialFileManager/useDialFileManager.js";
|
|
116
|
+
import { useDialFileManagerTabConfig as wi } from "./files/useDialFileManagerTabConfig/useDialFileManagerTabConfig.js";
|
|
117
|
+
import { isCustomAppSchema as Ti, isQuickAppSchema as Ei } from "./shared/application-schema.js";
|
|
118
|
+
import { getBrowserTimezone as Di } from "./shared/browser-timezone.js";
|
|
119
|
+
import { isValidAbsoluteUrl as Oi, isValidFeaturesData as ki, parseFeaturesData as Ai } from "./shared/custom-apps.js";
|
|
120
|
+
import { buildExternalServiceScopeId as ji, getExternalServiceFallbackName as Mi, parseExternalServiceUrl as Ni } from "./shared/external-services.js";
|
|
121
|
+
import { useChatSettingsFormConfig as Pi } from "./useChatSettingsFormConfig/useChatSettingsFormConfig.js";
|
|
122
|
+
import { usePageFileDrag as Fi } from "./usePageFileDrag/usePageFileDrag.js";
|
|
123
|
+
import { useViewportWidth as Ii } from "./useViewportWidth/useViewportWidth.js";
|
|
124
|
+
import { usePanelMaxWidth as Li } from "./usePanelMaxWidth/usePanelMaxWidth.js";
|
|
125
|
+
import { useShareLink as Ri } from "./useShareLink/useShareLink.js";
|
|
126
|
+
import { useToolsMenu as zi } from "./useToolsMenu/useToolsMenu.js";
|
|
127
|
+
import { useUsageData as Bi } from "./usage/useUsageData/useUsageData.js";
|
|
128
|
+
import { McpAppResourceFetchError as Vi, createMcpAppsApiClient as Hi } from "./mcp-apps/mcp-apps-api-client.js";
|
|
129
|
+
import { useMcpAppTools as Ui } from "./mcp-apps/useMcpAppTools/useMcpAppTools.js";
|
|
130
|
+
import { useMcpAppHostContext as Wi } from "./mcp-apps/useMcpAppHostContext/useMcpAppHostContext.js";
|
|
131
|
+
import { useMcpAppHostAdapter as Gi } from "./mcp-apps/useMcpAppHostAdapter/useMcpAppHostAdapter.js";
|
|
132
|
+
import { useOpenMcpAppCanvas as Ki } from "./mcp-apps/useOpenMcpAppCanvas/useOpenMcpAppCanvas.js";
|
|
133
|
+
import { useGridEditingScroll as qi } from "@epam/ai-dial-chat-shared";
|
|
134
|
+
export { b as AttachmentValidationErrorReason, In as AudioTranscriptionError, Ln as AudioTranscriptionErrorReason, L as AuthenticationType, ar as COLUMNS_WITHOUT_AUTHOR, or as COLUMNS_WITH_AUTHOR, sr as CORE_PERMISSION_MAP, Ze as CatalogPrimaryActionType, w as ConversationExportMode, T as ConversationTransferErrorCode, E as ConversationTransferWarningCode, cr as DATE_OPTIONS, zn as DEFAULT_MAX_ARCHIVE_BYTES, fr as DialFileManagerActionProfile, pr as DialFileManagerVariant, tr as DialFilesApiUploadMode, pi as DownloadDestinationType, O as EXPORT_APP_NAME, D as ExportFileNameKind, Tt as FavoriteEntityType, nr as FileManagerNotificationReason, rr as FileNameValidationErrorReason, ir as FileOperationKind, Vi as McpAppResourceFetchError, Ie as McpResourceKind, nt as OAuthResourceKind, lr as PATH_SEPARATOR_REGEXP, $t as PROMPT_CONTENT_MAX_LENGTH, en as PROMPT_COUNTER_ANNOUNCE_THRESHOLD, tn as PROMPT_DESCRIPTION_MAX_LENGTH, nn as PROMPT_NAME_MAX_LENGTH, Ce as PUBLIC_SKILL_BUCKET, rn as PromptFieldError, ie as PromptSource, ur as RESERVED_MARKER_NAME, En 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, yn as SkillEditorLoadState, Cn as SkillPreviewErrorKind, De as SkillSource, rt as TOOLSET_REDIRECT_STATE_KEY, it as ToolsetAuthStatus, at as ToolsetAuthTypes, ot as ToolsetCredentialsLevel, St as ToolsetLoginOutcomeType, st as ToolsetOAuthCallbackQuery, ct as ToolsetOAuthChannelControlType, lt as ToolsetOAuthFailureReason, ut as ToolsetOAuthInitiationResultType, dt as ToolsetOAuthResultType, dr as UPLOAD_CONCURRENCY, dn as UnsupportedTriggerReason, ft as WithLogin, si as annotationToDisplayAttachment, Gr as annotationToPdfCanvasContent, fn as apSchedulerDayToJsDay, U as appendLocaleCode, ci as attachmentDtoToDisplayAttachment, li as attachmentDtosToDisplayAttachments, Vn as attachmentToDto, Hn as attachmentsToDtos, W as buildAdditionalLocaleOptions, Ot as buildAnnouncementSignature, Le as buildApplicationMcpUrl, M as buildChatCompletionsUrl, Re as buildConnectApi, N as buildDeploymentConnectApi, ji as buildExternalServiceScopeId, Nr as buildFromCache, Xt as buildPromptExportEnvelope, Zt as buildPromptExportFileName, oe as buildPromptOverview, an as buildPromptPath, P as buildResponsesUrl, hr as buildSharedItemVirtualPath, ke as buildSkillContentTree, pe as buildSkillFilesPayload, me as buildSkillManifest, he as buildSkillManifestForSubmit, ge as buildSkillManifestFromFrontmatter, Ae as buildSkillOverview, _t as buildToolsetAuthorizeUrl, ze as buildToolsetMcpUrl, Kr as clearAttachmentCache, G as composeLocalePayload, Nt as createChatStreamApi, i as createCsrfMiddleware, zt as createDeploymentChangedMessage, Hr as createFilesApiClient, Hi as createMcpAppsApiClient, Un as createMessagePair, A as createPublishApiClient, a as createUnauthorizedMiddleware, Ur as createUploadFileWithProgress, B as decodeToolsetId, K as decomposeLocalizedFields, mr as deriveActionProfile, Ke as deriveAvailableTabIds, On as deriveConversationRowActionState, qe as deriveFavoriteItems, gr as dialCorePathToRelative, ui as dialFileToAttachment, di as dialFilesToAttachments, fi as dialFolderPathToAttachment, p as downloadAttachment, pt as emitToolsetLoginSuccess, F as encodeDeploymentId, V as encodeToolsetId, Pr as fetchByTab, Fr as fetchForSearch, Je as filterCatalogItemsBySelector, Ye as filterHiddenOwnedItems, I as findDeploymentByIdOrReference, _r as findDialFileByPath, Ir as findFirstSuccessfulCopyMoveItem, vr as findFolderByVirtualPath, Ft as formatAppVersion, Y as formatCalendarDate, S as formatDateYM, C as formatDateYMD, yr as formatOperationFolderName, k as formatQuotedNameList, e as getApiErrorDetails, t as getApiErrorMessage, n as getApiErrorStatus, Di as getBrowserTimezone, Jn as getConversationPath, Mn as getConversationSource, Mi as getExternalServiceFallbackName, Bt as getLastDeploymentId, Vt as getLastUserMessageToolConfiguration, Lt as getModelIdFromConversationId, Or as getParentFolderPath, Ve as getPublicCatalogEntityFolderPath, Kt as getQuickAppConversationStarters, on as getRemainingCharacters, Kn as getStarterConversationText, qt as getStarterPopulateText, qn as getStarterSubmitText, Jt as getStartersFromSchema, Rt as getTimeOfDayGreeting, ht as getToolsetOAuthChannelName, vt as getToolsetRedirectUri, ii as getUrlFileName, br as getVirtualPathName, Wn as hasActiveToolConfig, kt as hasAnnouncementContent, qr as hasAttachmentTextSource, xr as hasDialFileWritePermission, Sr as hasForbiddenNameSymbols, At as hasStructuredAnnouncement, o as includesIgnoreCase, yt as initiateOAuthLogin, Qn as isAwaitingGenerationResume, r as isConversationNotFoundError, Cr as isCopyMoveDuplicateAllowed, Ti as isCustomAppSchema, g as isDialFileAcceptType, u as isDialFileId, m as isDownloadableAttachment, ai as isExternalSourcePreviewable, Gn as isMessageChanged, Ht as isMessageStreaming, se as isOrganisationPromptItem, He as isPublicCatalogEntityId, H as isPublicToolsetId, Ei as isQuickAppSchema, wr as isShareActionsAllowed, Oi as isValidAbsoluteUrl, ki as isValidFeaturesData, _e as isValidSkillRelativePath, pn as jsDayToApSchedulerDay, Lr as mapCorePermissions, Z as mapDeploymentDetailsDtoToEntityDetails, R as mapDeploymentLimitsDtoToCatalogLimits, z as mapDeploymentLimitsToInput, ee as mapDeploymentToCatalogItem, te as mapDeploymentToolsetCredentials, Q as mapEntityDetailsToCatalogDetails, Rr as mapFileMetadataToDialFile, mn as mapFormValuesToCreateBody, hn as mapFormValuesToUpdateBody, ce as mapPromptToCatalogItem, Ue as mapPublishConversationResultDto, We as mapPublishHistoryEntryDto, gn as mapScheduledTaskDtoToFormValues, zr as mapSearchItem, je as mapSkillToCatalogItem, $ as mapToolsetCredentials, ne as mapToolsetToCatalogItem, Br as mergeCreatedFolderIntoCache, Ut as messageHasStages, _ as mimeTypesToAttachmentExtensionLabels, v as mimeTypesToDialFileAcceptTypes, y as mimeTypesToFileAccept, ve as nameFromPath, bt as navigateToolsetOAuthPopup, Wt as normalizeResponseFormat, ye as normalizeSkillName, Tr as normalizeVirtualPath, Wr as openAnnotationAttachment, xt as openToolsetOAuthPopup, X as padTwoDigits, Ni as parseExternalServiceUrl, Ai as parseFeaturesData, Er as parseNewFolderVirtualPath, ae as parsePromptResourceUrl, be as parseSkillManifest, et as parseSkillManifestDocument, Oe as parseSkillResourceUrl, jr as prepareCopyItems, mi as prepareDownloadDestination, Mr as prepareMoveRenameItems, Me as readSkillFileBytes, Ne as readSkillManifest, Xe as reconcileFilterTopics, Jr as referenceAttachmentToPdfCanvasContent, Qe as resolveCatalogPrimaryAction, Yr as resolveCodeCanvasContent, re as resolveDeploymentFolder, kr as resolveDialFileApiPath, d as resolveDialFileBucketAndPath, oi as resolveExternalSourceContentType, Xr as resolveHtmlCanvasContent, Zr as resolveImageCanvasContent, Qr as resolveJsonCanvasContent, q as resolveLocalizedText, $r as resolveMarkdownCanvasContent, Be as resolveMcpResourceKind, ei as resolveOoxmlCanvasContent, Dr as resolveOwnerCoords, ti as resolvePdfCanvasContent, f as resolveRelativeDialFilePath, Pe as resolveSkillFileDownloadPath, Fe as resolveSkillManifestFileId, ni as resolveTextCanvasContent, ri as resolveVisualizerCanvasContent, s as safeDecodeURI, c as safeDecodeURIComponent, jt as sanitizeAnnouncementHtml, Mt as sanitizeAnnouncementMessageHtml, hi as sanitizeFileName, It as sanitizeFooterHtml, Qt as serializePromptExport, Pt as shouldWatchForDisplayNameUpdate, xe as skillFileBytesToBlob, vn as skillFileToAttachment, gi as splitFileNameExtension, l as stripSurroundingSlashes, mt as subscribeToolsetLoginSuccess, J as toBaseLocale, Gt as toOverlayMessages, Ge as toPublishEntityType, j as toPublishRuleDto, _i as trimFileNameToByteLimit, Se as unpackSkillArchive, Vr as updateEntry, kn as useActiveConversationSync, An as useAsyncConfirmDialog, h as useAttachmentAction, Fn as useAttachmentUpload, x as useAttachmentValidation, $e as useCatalogEditNavigation, tt as useCatalogItemDetails, wt as useCatalogToolsetCredentials, Pi as useChatSettingsFormConfig, Bn as useConversationExport, Yn as useConversationHandlers, Xn as useConversationImport, jn as useConversationLookupMaps, Nn as useConversationPanelItems, Zn as useConversationScroll, er as useConversationSources, $n as useConversationStream, vi as useDialFileListing, Ci as useDialFileManager, wi as useDialFileManagerTabConfig, yi as useDialFileMetadata, bi as useDialFileMutations, xi as useDialFileSharing, Si as useDialFileUploadBatch, Et as useFavoriteEntitiesState, qi as useGridEditingScroll, Pn as useImportFilePicker, Gi as useMcpAppHostAdapter, Wi as useMcpAppHostContext, Ui as useMcpAppTools, Yt as useOAuthCallbackCompletion, Ki as useOpenMcpAppCanvas, Fi as usePageFileDrag, Li as usePanelMaxWidth, un as usePromptsState, Dt as usePublishFolders, Ri as useShareLink, Dn as useShareRecipientsCount, bn as useSkillEditorLoad, xn as useSkillEditorSubmit, Sn as useSkillFileActions, wn as useSkillFilePreview, Tn as useSkillsState, zi as useToolsMenu, Ct as useToolsetLogin, Rn as useTranscribeAudio, Bi as useUsageData, Ii as useViewportWidth, sn as validatePromptContent, cn as validatePromptDescription, ln as validatePromptName, _n as validateSkillFileBatch, Ar as virtualPathToApiPath, gt 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.431",
|
|
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.431",
|
|
108
|
+
"@epam/ai-dial-attachment-input": "1.1.0-dev.431",
|
|
109
|
+
"@epam/ai-dial-catalog": "1.1.0-dev.431",
|
|
110
|
+
"@epam/ai-dial-chat-api-client": "1.1.0-dev.431",
|
|
111
|
+
"@epam/ai-dial-chat-overlay": "1.1.0-dev.431",
|
|
112
|
+
"@epam/ai-dial-chat-shared": "1.1.0-dev.431",
|
|
113
|
+
"@epam/ai-dial-deployment-creation-form": "1.1.0-dev.431",
|
|
114
|
+
"@epam/ai-dial-mcp-apps": "1.1.0-dev.431",
|
|
115
|
+
"@epam/ai-dial-publish-panel": "1.1.0-dev.431",
|
|
116
|
+
"@epam/ai-dial-quotations": "1.1.0-dev.431",
|
|
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.431",
|
|
119
|
+
"@epam/ai-dial-share": "1.1.0-dev.431",
|
|
120
|
+
"@epam/ai-dial-skill-editor": "1.1.0-dev.431",
|
|
121
|
+
"@epam/ai-dial-source-panel": "1.1.0-dev.431",
|
|
122
122
|
"@epam/ai-dial-ui-kit": "*",
|
|
123
123
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
124
124
|
"@epam/pdf-highlighter-kit": ">=0.0.14",
|