@smartspace/chat-ui 1.13.1-pr.248.687fcf2 → 1.13.1-pr.250.fae775f
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/dist/index.d.ts +18 -1
- package/dist/index.js +10 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1019,6 +1019,23 @@ declare function unmarkDraftThreadId(threadId: string): void;
|
|
|
1019
1019
|
declare function isDraftThreadId(threadId?: string | null): boolean;
|
|
1020
1020
|
declare function createDraftThreadId(): string;
|
|
1021
1021
|
|
|
1022
|
+
/**
|
|
1023
|
+
* Treat an API date string as UTC even when it lacks a trailing "Z".
|
|
1024
|
+
* If already a Date, returns it as-is (Date stores UTC internally).
|
|
1025
|
+
*/
|
|
1026
|
+
declare function utcDate(value: string | Date): Date;
|
|
1027
|
+
/**
|
|
1028
|
+
* Zod schema that coerces a Date, ISO string, or numeric timestamp
|
|
1029
|
+
* from the API into a Date object, ensuring timezone-less strings
|
|
1030
|
+
* are treated as UTC.
|
|
1031
|
+
*/
|
|
1032
|
+
declare const DateFromApi: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedDate<unknown>>;
|
|
1033
|
+
|
|
1034
|
+
declare function parseDateTime(date: Date | string, customFormat?: string): string;
|
|
1035
|
+
declare function parseDateTimeHuman(date: Date | string): string;
|
|
1036
|
+
|
|
1037
|
+
declare function getUserPhotoUrl(userId: string | null | undefined): string | undefined;
|
|
1038
|
+
|
|
1022
1039
|
declare const messagesKeys: {
|
|
1023
1040
|
all: readonly ["messages"];
|
|
1024
1041
|
lists: () => readonly ["messages", "list"];
|
|
@@ -1305,4 +1322,4 @@ declare function useModels({ search, take, skip, }?: {
|
|
|
1305
1322
|
total: number;
|
|
1306
1323
|
}, Error>;
|
|
1307
1324
|
|
|
1308
|
-
export { type ChatContextIds, type ChatIdentity, ChatProvider, type ChatProviderProps, type ChatService, ChatVariablesForm, DRAFT_THREAD_PREFIX, type FileInfo$1 as FileInfo, type FileScope, type FlowRunVariables, MarkdownEditor, type MarkdownEditorHandle, type MentionUser, type Message, MessageComposer, type MessageComposerProps, type MessageContentItem, type MessageError, MessageList, type MessageListProps, MessageListSkeleton, MessageMarkdown, type MessageThread, type MessageValue, MessageValueType, type Model, type ModelProperty, NEW_THREAD_ID, THREAD_LIST_PAGE_SIZE, type ThreadsResponse, type Variables, type Workspace, applyDeltaToMessage, applyThreadToCache, createDraftThreadId, createThreadId, downloadFileBlobOptions, filesKeys, flowRunsKeys, getModelIcon, getThreadPlaceholderFromListCache, invalidateWorkspaceThreadLists, isDraftThreadId, mapFileInfoDtoToModel, mapMentionUserDtoToModel, mapMessageDtoToModel, mapMessageErrorDtoToModel, mapMessageValueDtoToModel, mapMessagesDtoToModels, mapSignalRThreadSummaryToModel, mapThreadDtoToModel, mapThreadsResponseDtoToModel, mapWorkspaceDtoToModel, mapWorkspacesDtoToModels, markDraftThreadId, messagesKeys, messagesListOptions, messagesMutationsKeys, modelsKeys, setThreadOptimisticRunning, setThreadRunningInLists, taggableUsersOptions, threadDetailOptions, threadsKeys, unmarkDraftThreadId, useAddInputToMessage, useChatContext, useChatIdentity, useChatService, useDownloadFileBlobQuery, useFileMutations, useFlowRunVariables, useMessages, useModels, useSendMessage, useTaggableWorkspaceUsers, useThread, useThreadIsRunning, useUpdateFlowRunVariable, useWorkspace, workspaceDetailOptions, workspaceKeys };
|
|
1325
|
+
export { type ChatContextIds, type ChatIdentity, ChatProvider, type ChatProviderProps, type ChatService, ChatVariablesForm, DRAFT_THREAD_PREFIX, DateFromApi, type FileInfo$1 as FileInfo, type FileScope, type FlowRunVariables, MarkdownEditor, type MarkdownEditorHandle, type MentionUser, type Message, MessageComposer, type MessageComposerProps, type MessageContentItem, type MessageError, MessageList, type MessageListProps, MessageListSkeleton, MessageMarkdown, type MessageThread, type MessageValue, MessageValueType, type Model, type ModelProperty, NEW_THREAD_ID, THREAD_LIST_PAGE_SIZE, type ThreadsResponse, type Variables, type Workspace, applyDeltaToMessage, applyThreadToCache, createDraftThreadId, createThreadId, downloadFileBlobOptions, filesKeys, flowRunsKeys, getModelIcon, getThreadPlaceholderFromListCache, getUserPhotoUrl, invalidateWorkspaceThreadLists, isDraftThreadId, mapFileInfoDtoToModel, mapMentionUserDtoToModel, mapMessageDtoToModel, mapMessageErrorDtoToModel, mapMessageValueDtoToModel, mapMessagesDtoToModels, mapSignalRThreadSummaryToModel, mapThreadDtoToModel, mapThreadsResponseDtoToModel, mapWorkspaceDtoToModel, mapWorkspacesDtoToModels, markDraftThreadId, messagesKeys, messagesListOptions, messagesMutationsKeys, modelsKeys, parseDateTime, parseDateTimeHuman, setThreadOptimisticRunning, setThreadRunningInLists, taggableUsersOptions, threadDetailOptions, threadsKeys, unmarkDraftThreadId, useAddInputToMessage, useChatContext, useChatIdentity, useChatService, useDownloadFileBlobQuery, useFileMutations, useFlowRunVariables, useMessages, useModels, useSendMessage, useTaggableWorkspaceUsers, useThread, useThreadIsRunning, useUpdateFlowRunVariable, useWorkspace, utcDate, workspaceDetailOptions, workspaceKeys };
|
package/dist/index.js
CHANGED
|
@@ -3310,7 +3310,7 @@ function utcDate(value) {
|
|
|
3310
3310
|
}
|
|
3311
3311
|
return new Date(value);
|
|
3312
3312
|
}
|
|
3313
|
-
z.preprocess((val) => {
|
|
3313
|
+
var DateFromApi = z.preprocess((val) => {
|
|
3314
3314
|
if (typeof val === "string" && !hasTimezone(val)) {
|
|
3315
3315
|
return val + "Z";
|
|
3316
3316
|
}
|
|
@@ -19083,14 +19083,20 @@ dayjs.extend(relativeTime);
|
|
|
19083
19083
|
dayjs.extend(advancedFormat);
|
|
19084
19084
|
function parseDateTime(date, customFormat) {
|
|
19085
19085
|
const d = dayjs.utc(date).local();
|
|
19086
|
-
return d.
|
|
19086
|
+
if (customFormat === "X") return Math.floor(d.valueOf() / 1e3).toString();
|
|
19087
|
+
if (customFormat === "x") return d.valueOf().toString();
|
|
19088
|
+
return d.format(customFormat ?? "YYYY-MM-DD HH:mm:ss");
|
|
19089
|
+
}
|
|
19090
|
+
function parseDateTimeHuman(date) {
|
|
19091
|
+
return dayjs.utc(date).local().fromNow();
|
|
19087
19092
|
}
|
|
19088
19093
|
|
|
19089
19094
|
// src/shared/utils/userPhoto.ts
|
|
19090
19095
|
function getChatApiBaseUrl() {
|
|
19091
19096
|
try {
|
|
19092
19097
|
const w = window;
|
|
19093
|
-
const
|
|
19098
|
+
const env2 = import.meta.env;
|
|
19099
|
+
const cfg = w?.ssconfig?.Chat_Api_Uri ?? env2?.VITE_CHAT_API_URI;
|
|
19094
19100
|
return typeof cfg === "string" && cfg.trim() ? cfg.trim() : "";
|
|
19095
19101
|
} catch {
|
|
19096
19102
|
return "";
|
|
@@ -20143,6 +20149,6 @@ function mapWorkspaceDtoToModel(dto) {
|
|
|
20143
20149
|
}
|
|
20144
20150
|
var mapWorkspacesDtoToModels = (arr) => arr.map(mapWorkspaceDtoToModel);
|
|
20145
20151
|
|
|
20146
|
-
export { ChatProvider, ChatVariablesForm, DRAFT_THREAD_PREFIX, MarkdownEditor, MessageComposer, MessageList, MessageListSkeleton, MessageMarkdown, MessageValueType, NEW_THREAD_ID, THREAD_LIST_PAGE_SIZE, applyDeltaToMessage, applyThreadToCache, createDraftThreadId, createThreadId, downloadFileBlobOptions, filesKeys, flowRunsKeys, getModelIcon, getThreadPlaceholderFromListCache, invalidateWorkspaceThreadLists, isDraftThreadId, mapFileInfoDtoToModel, mapMentionUserDtoToModel, mapMessageDtoToModel, mapMessageErrorDtoToModel, mapMessageValueDtoToModel, mapMessagesDtoToModels, mapSignalRThreadSummaryToModel, mapThreadDtoToModel, mapThreadsResponseDtoToModel, mapWorkspaceDtoToModel, mapWorkspacesDtoToModels, markDraftThreadId, messagesKeys, messagesListOptions, messagesMutationsKeys, modelsKeys, setThreadOptimisticRunning, setThreadRunningInLists, taggableUsersOptions, threadDetailOptions, threadsKeys, unmarkDraftThreadId, useAddInputToMessage, useChatContext, useChatIdentity, useChatService, useDownloadFileBlobQuery, useFileMutations, useFlowRunVariables, useMessages, useModels, useSendMessage, useTaggableWorkspaceUsers, useThread, useThreadIsRunning, useUpdateFlowRunVariable, useWorkspace, workspaceDetailOptions, workspaceKeys };
|
|
20152
|
+
export { ChatProvider, ChatVariablesForm, DRAFT_THREAD_PREFIX, DateFromApi, MarkdownEditor, MessageComposer, MessageList, MessageListSkeleton, MessageMarkdown, MessageValueType, NEW_THREAD_ID, THREAD_LIST_PAGE_SIZE, applyDeltaToMessage, applyThreadToCache, createDraftThreadId, createThreadId, downloadFileBlobOptions, filesKeys, flowRunsKeys, getModelIcon, getThreadPlaceholderFromListCache, getUserPhotoUrl, invalidateWorkspaceThreadLists, isDraftThreadId, mapFileInfoDtoToModel, mapMentionUserDtoToModel, mapMessageDtoToModel, mapMessageErrorDtoToModel, mapMessageValueDtoToModel, mapMessagesDtoToModels, mapSignalRThreadSummaryToModel, mapThreadDtoToModel, mapThreadsResponseDtoToModel, mapWorkspaceDtoToModel, mapWorkspacesDtoToModels, markDraftThreadId, messagesKeys, messagesListOptions, messagesMutationsKeys, modelsKeys, parseDateTime, parseDateTimeHuman, setThreadOptimisticRunning, setThreadRunningInLists, taggableUsersOptions, threadDetailOptions, threadsKeys, unmarkDraftThreadId, useAddInputToMessage, useChatContext, useChatIdentity, useChatService, useDownloadFileBlobQuery, useFileMutations, useFlowRunVariables, useMessages, useModels, useSendMessage, useTaggableWorkspaceUsers, useThread, useThreadIsRunning, useUpdateFlowRunVariable, useWorkspace, utcDate, workspaceDetailOptions, workspaceKeys };
|
|
20147
20153
|
//# sourceMappingURL=index.js.map
|
|
20148
20154
|
//# sourceMappingURL=index.js.map
|