@liveblocks/core 2.10.2 → 2.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +43 -2
- package/dist/index.d.ts +43 -2
- package/dist/index.js +60 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +59 -14
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1549,6 +1549,10 @@ declare type InternalOthersEvent<P extends JsonObject, U extends BaseUserMeta> =
|
|
|
1549
1549
|
declare type OthersEvent<P extends JsonObject = DP, U extends BaseUserMeta = DU> = Resolve<InternalOthersEvent<P, U> & {
|
|
1550
1550
|
others: readonly User<P, U>[];
|
|
1551
1551
|
}>;
|
|
1552
|
+
declare enum TextEditorType {
|
|
1553
|
+
Lexical = "lexical",
|
|
1554
|
+
TipTap = "tiptap"
|
|
1555
|
+
}
|
|
1552
1556
|
|
|
1553
1557
|
declare type OptionalKeys<T> = {
|
|
1554
1558
|
[K in keyof T]-?: undefined extends T[K] ? K : never;
|
|
@@ -2277,7 +2281,7 @@ declare type PrivateRoomApi = {
|
|
|
2277
2281
|
onProviderUpdate: Observable<void>;
|
|
2278
2282
|
getSelf_forDevTools(): UserTreeNode | null;
|
|
2279
2283
|
getOthers_forDevTools(): readonly UserTreeNode[];
|
|
2280
|
-
reportTextEditor(editor:
|
|
2284
|
+
reportTextEditor(editor: TextEditorType, rootKey: string): Promise<void>;
|
|
2281
2285
|
createTextMention(userId: string, mentionId: string): Promise<void>;
|
|
2282
2286
|
deleteTextMention(mentionId: string): Promise<void>;
|
|
2283
2287
|
listTextVersions(): Promise<{
|
|
@@ -2734,16 +2738,44 @@ declare type StringifyCommentBodyOptions<U extends BaseUserMeta = DU> = {
|
|
|
2734
2738
|
*/
|
|
2735
2739
|
resolveUsers?: (args: ResolveUsersArgs) => OptionalPromise<(U["info"] | undefined)[] | undefined>;
|
|
2736
2740
|
};
|
|
2741
|
+
declare function isCommentBodyText(element: CommentBodyElement): element is CommentBodyText;
|
|
2742
|
+
declare function isCommentBodyMention(element: CommentBodyElement): element is CommentBodyMention;
|
|
2743
|
+
declare function isCommentBodyLink(element: CommentBodyElement): element is CommentBodyLink;
|
|
2737
2744
|
/**
|
|
2738
2745
|
* Get an array of each user's ID that has been mentioned in a `CommentBody`.
|
|
2739
2746
|
*/
|
|
2740
2747
|
declare function getMentionedIdsFromCommentBody(body: CommentBody): string[];
|
|
2748
|
+
declare function resolveUsersInCommentBody<U extends BaseUserMeta>(body: CommentBody, resolveUsers?: (args: ResolveUsersArgs) => OptionalPromise<(U["info"] | undefined)[] | undefined>): Promise<Map<string, U["info"]>>;
|
|
2749
|
+
declare function htmlSafe(value: string): HtmlSafeString;
|
|
2750
|
+
declare class HtmlSafeString {
|
|
2751
|
+
private _strings;
|
|
2752
|
+
private _values;
|
|
2753
|
+
constructor(strings: readonly string[], values: readonly (string | string[] | HtmlSafeString | HtmlSafeString[])[]);
|
|
2754
|
+
toString(): string;
|
|
2755
|
+
}
|
|
2756
|
+
/**
|
|
2757
|
+
* Build an HTML string from a template literal where the values are escaped.
|
|
2758
|
+
* Nested calls are supported and won't be escaped.
|
|
2759
|
+
*/
|
|
2760
|
+
declare function html(strings: TemplateStringsArray, ...values: (string | string[] | HtmlSafeString | HtmlSafeString[])[]): string;
|
|
2761
|
+
/**
|
|
2762
|
+
* Helper function to convert a URL (relative or absolute) to an absolute URL.
|
|
2763
|
+
*
|
|
2764
|
+
* @param url The URL to convert to an absolute URL (relative or absolute).
|
|
2765
|
+
* @returns The absolute URL or undefined if the URL is invalid.
|
|
2766
|
+
*/
|
|
2767
|
+
declare function toAbsoluteUrl(url: string): string | undefined;
|
|
2741
2768
|
/**
|
|
2742
2769
|
* Convert a `CommentBody` into either a plain string,
|
|
2743
2770
|
* Markdown, HTML, or a custom format.
|
|
2744
2771
|
*/
|
|
2745
2772
|
declare function stringifyCommentBody(body: CommentBody, options?: StringifyCommentBodyOptions<BaseUserMeta>): Promise<string>;
|
|
2746
2773
|
|
|
2774
|
+
declare function generateCommentUrl({ roomUrl, commentId, }: {
|
|
2775
|
+
roomUrl: string;
|
|
2776
|
+
commentId: string;
|
|
2777
|
+
}): string;
|
|
2778
|
+
|
|
2747
2779
|
/**
|
|
2748
2780
|
* Converts a plain comment data object (usually returned by the API) to a comment data object that can be used by the client.
|
|
2749
2781
|
* This is necessary because the plain data object stores dates as ISO strings, but the client expects them as Date objects.
|
|
@@ -2859,6 +2891,15 @@ declare function autoRetry<T>(promiseFn: () => Promise<T>, maxTries: number, bac
|
|
|
2859
2891
|
|
|
2860
2892
|
declare function chunk<T>(array: T[], size: number): T[][];
|
|
2861
2893
|
|
|
2894
|
+
/**
|
|
2895
|
+
* Drop-in replacement for the ES2024 Promise.withResolvers() API.
|
|
2896
|
+
*/
|
|
2897
|
+
declare function Promise_withResolvers<T>(): {
|
|
2898
|
+
promise: Promise<T>;
|
|
2899
|
+
resolve: (value: T) => void;
|
|
2900
|
+
reject: (reason: unknown) => void;
|
|
2901
|
+
};
|
|
2902
|
+
|
|
2862
2903
|
declare function createThreadId(): string;
|
|
2863
2904
|
declare function createCommentId(): string;
|
|
2864
2905
|
declare function createInboxNotificationId(): string;
|
|
@@ -3321,4 +3362,4 @@ declare const CommentsApiError: typeof HttpError;
|
|
|
3321
3362
|
/** @deprecated Use HttpError instead. */
|
|
3322
3363
|
declare const NotificationsApiError: typeof HttpError;
|
|
3323
3364
|
|
|
3324
|
-
export { type AckOp, type ActivityData, type AsyncError, type AsyncLoading, type AsyncResult, type AsyncSuccess, type BaseActivitiesData, type BaseAuthResult, type BaseMetadata, type BaseRoomInfo, type BaseUserMeta, type Brand, type BroadcastEventClientMsg, type BroadcastOptions, type BroadcastedEventServerMsg, type Client, type ClientMsg, ClientMsgCode, type ClientOptions, type CommentAttachment, type CommentBody, type CommentBodyBlockElement, type CommentBodyElement, type CommentBodyInlineElement, type CommentBodyLink, type CommentBodyLinkElementArgs, type CommentBodyMention, type CommentBodyMentionElementArgs, type CommentBodyParagraph, type CommentBodyParagraphElementArgs, type CommentBodyText, type CommentBodyTextElementArgs, type CommentData, type CommentDataPlain, type CommentLocalAttachment, type CommentMixedAttachment, type CommentReaction, type CommentUserReaction, type CommentUserReactionPlain, CommentsApiError, type CommentsEventServerMsg, CrdtType, type CreateListOp, type CreateMapOp, type CreateObjectOp, type CreateOp, type CreateRegisterOp, type CustomAuthenticationResult, type DAD, type DE, type DM, type DP, type DRI, type DS, type DU, type Delegates, type DeleteCrdtOp, type DeleteObjectKeyOp, DevToolsTreeNode as DevTools, protocol as DevToolsMsg, type DistributiveOmit, type EnsureJson, type EnterOptions, type EventSource, type FetchStorageClientMsg, type FetchYDocClientMsg, type GetThreadsOptions, type GetUserThreadsOptions, type History, type HistoryVersion, HttpError, type IUserInfo, type IWebSocket, type IWebSocketCloseEvent, type IWebSocketEvent, type IWebSocketInstance, type IWebSocketMessageEvent, type IdTuple, type Immutable, type InboxNotificationCustomData, type InboxNotificationCustomDataPlain, type InboxNotificationData, type InboxNotificationDataPlain, type InboxNotificationDeleteInfo, type InboxNotificationTextMentionData, type InboxNotificationTextMentionDataPlain, type InboxNotificationThreadData, type InboxNotificationThreadDataPlain, type InitialDocumentStateServerMsg, type Json, type JsonArray, type JsonObject, type JsonScalar, type KDAD, LiveList, type LiveListUpdate, LiveMap, type LiveMapUpdate, type LiveNode, LiveObject, type LiveObjectUpdate, type LiveStructure, LiveblocksError, type LostConnectionEvent, type Lson, type LsonObject, type NoInfr, type NodeMap, NotificationsApiError, type Observable, type Op, OpCode, type OpaqueClient, type OpaqueRoom, type OptionalPromise, type OptionalTupleUnless, type OthersEvent, type ParentToChildNodeMap, type PartialUnless, type Patchable, type PlainLson, type PlainLsonFields, type PlainLsonList, type PlainLsonMap, type PlainLsonObject, type Poller, type PrivateClientApi, type PrivateRoomApi, type QueryMetadata, type QueryParams, type RejectedStorageOpServerMsg, type Resolve, type ResolveMentionSuggestionsArgs, type ResolveRoomsInfoArgs, type ResolveUsersArgs, type Room, type RoomEventMessage, type RoomNotificationSettings, type RoomStateServerMsg, type SerializedChild, type SerializedCrdt, type SerializedList, type SerializedMap, type SerializedObject, type SerializedRegister, type SerializedRootObject, type ServerMsg, ServerMsgCode, type SetParentKeyOp, SortedList, type Status, type StorageStatus, type StorageUpdate, type Store, type StringifyCommentBodyElements, type StringifyCommentBodyOptions, type ThreadData, type ThreadDataPlain, type ThreadDataWithDeleteInfo, type ThreadDeleteInfo, type ToImmutable, type ToJson, type URLSafeString, type UnsubscribeCallback, type UpdateObjectOp, type UpdatePresenceClientMsg, type UpdatePresenceServerMsg, type UpdateStorageClientMsg, type UpdateStorageServerMsg, type UpdateYDocClientMsg, type UploadAttachmentOptions, type User, type UserJoinServerMsg, type UserLeftServerMsg, WebsocketCloseCodes, type YDocUpdateServerMsg, ackOp, asPos, assert, assertNever, autoRetry, b64decode, chunk, cloneLson, compactObject, fancyConsole as console, convertToCommentData, convertToCommentUserReaction, convertToInboxNotificationData, convertToThreadData, createClient, createCommentId, createInboxNotificationId, createStore, createThreadId, deprecate, deprecateIf, detectDupes, errorIf, freeze, getMentionedIdsFromCommentBody, isChildCrdt, isJsonArray, isJsonObject, isJsonScalar, isLiveNode, isPlainObject, isRootCrdt, kInternal, legacy_patchImmutableObject, lsonToJson, makeEventSource, makePoller, makePosition, mapValues, memoizeOnSuccess, nanoid, nn, objectToQuery, patchLiveObjectKey, raise, shallow, stringify, stringifyCommentBody, throwUsageError, toPlainLson, tryParseJson, url, urljoin, wait, withTimeout };
|
|
3365
|
+
export { type AckOp, type ActivityData, type AsyncError, type AsyncLoading, type AsyncResult, type AsyncSuccess, type BaseActivitiesData, type BaseAuthResult, type BaseMetadata, type BaseRoomInfo, type BaseUserMeta, type Brand, type BroadcastEventClientMsg, type BroadcastOptions, type BroadcastedEventServerMsg, type Client, type ClientMsg, ClientMsgCode, type ClientOptions, type CommentAttachment, type CommentBody, type CommentBodyBlockElement, type CommentBodyElement, type CommentBodyInlineElement, type CommentBodyLink, type CommentBodyLinkElementArgs, type CommentBodyMention, type CommentBodyMentionElementArgs, type CommentBodyParagraph, type CommentBodyParagraphElementArgs, type CommentBodyText, type CommentBodyTextElementArgs, type CommentData, type CommentDataPlain, type CommentLocalAttachment, type CommentMixedAttachment, type CommentReaction, type CommentUserReaction, type CommentUserReactionPlain, CommentsApiError, type CommentsEventServerMsg, CrdtType, type CreateListOp, type CreateMapOp, type CreateObjectOp, type CreateOp, type CreateRegisterOp, type CustomAuthenticationResult, type DAD, type DE, type DM, type DP, type DRI, type DS, type DU, type Delegates, type DeleteCrdtOp, type DeleteObjectKeyOp, DevToolsTreeNode as DevTools, protocol as DevToolsMsg, type DistributiveOmit, type EnsureJson, type EnterOptions, type EventSource, type FetchStorageClientMsg, type FetchYDocClientMsg, type GetThreadsOptions, type GetUserThreadsOptions, type History, type HistoryVersion, HttpError, type IUserInfo, type IWebSocket, type IWebSocketCloseEvent, type IWebSocketEvent, type IWebSocketInstance, type IWebSocketMessageEvent, type IdTuple, type Immutable, type InboxNotificationCustomData, type InboxNotificationCustomDataPlain, type InboxNotificationData, type InboxNotificationDataPlain, type InboxNotificationDeleteInfo, type InboxNotificationTextMentionData, type InboxNotificationTextMentionDataPlain, type InboxNotificationThreadData, type InboxNotificationThreadDataPlain, type InitialDocumentStateServerMsg, type Json, type JsonArray, type JsonObject, type JsonScalar, type KDAD, LiveList, type LiveListUpdate, LiveMap, type LiveMapUpdate, type LiveNode, LiveObject, type LiveObjectUpdate, type LiveStructure, LiveblocksError, type LostConnectionEvent, type Lson, type LsonObject, type NoInfr, type NodeMap, NotificationsApiError, type Observable, type Op, OpCode, type OpaqueClient, type OpaqueRoom, type OptionalPromise, type OptionalTupleUnless, type OthersEvent, type ParentToChildNodeMap, type PartialUnless, type Patchable, type PlainLson, type PlainLsonFields, type PlainLsonList, type PlainLsonMap, type PlainLsonObject, type Poller, type PrivateClientApi, type PrivateRoomApi, Promise_withResolvers, type QueryMetadata, type QueryParams, type RejectedStorageOpServerMsg, type Resolve, type ResolveMentionSuggestionsArgs, type ResolveRoomsInfoArgs, type ResolveUsersArgs, type Room, type RoomEventMessage, type RoomNotificationSettings, type RoomStateServerMsg, type SerializedChild, type SerializedCrdt, type SerializedList, type SerializedMap, type SerializedObject, type SerializedRegister, type SerializedRootObject, type ServerMsg, ServerMsgCode, type SetParentKeyOp, SortedList, type Status, type StorageStatus, type StorageUpdate, type Store, type StringifyCommentBodyElements, type StringifyCommentBodyOptions, TextEditorType, type ThreadData, type ThreadDataPlain, type ThreadDataWithDeleteInfo, type ThreadDeleteInfo, type ToImmutable, type ToJson, type URLSafeString, type UnsubscribeCallback, type UpdateObjectOp, type UpdatePresenceClientMsg, type UpdatePresenceServerMsg, type UpdateStorageClientMsg, type UpdateStorageServerMsg, type UpdateYDocClientMsg, type UploadAttachmentOptions, type User, type UserJoinServerMsg, type UserLeftServerMsg, WebsocketCloseCodes, type YDocUpdateServerMsg, ackOp, asPos, assert, assertNever, autoRetry, b64decode, chunk, cloneLson, compactObject, fancyConsole as console, convertToCommentData, convertToCommentUserReaction, convertToInboxNotificationData, convertToThreadData, createClient, createCommentId, createInboxNotificationId, createStore, createThreadId, deprecate, deprecateIf, detectDupes, errorIf, freeze, generateCommentUrl, getMentionedIdsFromCommentBody, html, htmlSafe, isChildCrdt, isCommentBodyLink, isCommentBodyMention, isCommentBodyText, isJsonArray, isJsonObject, isJsonScalar, isLiveNode, isPlainObject, isRootCrdt, kInternal, legacy_patchImmutableObject, lsonToJson, makeEventSource, makePoller, makePosition, mapValues, memoizeOnSuccess, nanoid, nn, objectToQuery, patchLiveObjectKey, raise, resolveUsersInCommentBody, shallow, stringify, stringifyCommentBody, throwUsageError, toAbsoluteUrl, toPlainLson, tryParseJson, url, urljoin, wait, withTimeout };
|
package/dist/index.d.ts
CHANGED
|
@@ -1549,6 +1549,10 @@ declare type InternalOthersEvent<P extends JsonObject, U extends BaseUserMeta> =
|
|
|
1549
1549
|
declare type OthersEvent<P extends JsonObject = DP, U extends BaseUserMeta = DU> = Resolve<InternalOthersEvent<P, U> & {
|
|
1550
1550
|
others: readonly User<P, U>[];
|
|
1551
1551
|
}>;
|
|
1552
|
+
declare enum TextEditorType {
|
|
1553
|
+
Lexical = "lexical",
|
|
1554
|
+
TipTap = "tiptap"
|
|
1555
|
+
}
|
|
1552
1556
|
|
|
1553
1557
|
declare type OptionalKeys<T> = {
|
|
1554
1558
|
[K in keyof T]-?: undefined extends T[K] ? K : never;
|
|
@@ -2277,7 +2281,7 @@ declare type PrivateRoomApi = {
|
|
|
2277
2281
|
onProviderUpdate: Observable<void>;
|
|
2278
2282
|
getSelf_forDevTools(): UserTreeNode | null;
|
|
2279
2283
|
getOthers_forDevTools(): readonly UserTreeNode[];
|
|
2280
|
-
reportTextEditor(editor:
|
|
2284
|
+
reportTextEditor(editor: TextEditorType, rootKey: string): Promise<void>;
|
|
2281
2285
|
createTextMention(userId: string, mentionId: string): Promise<void>;
|
|
2282
2286
|
deleteTextMention(mentionId: string): Promise<void>;
|
|
2283
2287
|
listTextVersions(): Promise<{
|
|
@@ -2734,16 +2738,44 @@ declare type StringifyCommentBodyOptions<U extends BaseUserMeta = DU> = {
|
|
|
2734
2738
|
*/
|
|
2735
2739
|
resolveUsers?: (args: ResolveUsersArgs) => OptionalPromise<(U["info"] | undefined)[] | undefined>;
|
|
2736
2740
|
};
|
|
2741
|
+
declare function isCommentBodyText(element: CommentBodyElement): element is CommentBodyText;
|
|
2742
|
+
declare function isCommentBodyMention(element: CommentBodyElement): element is CommentBodyMention;
|
|
2743
|
+
declare function isCommentBodyLink(element: CommentBodyElement): element is CommentBodyLink;
|
|
2737
2744
|
/**
|
|
2738
2745
|
* Get an array of each user's ID that has been mentioned in a `CommentBody`.
|
|
2739
2746
|
*/
|
|
2740
2747
|
declare function getMentionedIdsFromCommentBody(body: CommentBody): string[];
|
|
2748
|
+
declare function resolveUsersInCommentBody<U extends BaseUserMeta>(body: CommentBody, resolveUsers?: (args: ResolveUsersArgs) => OptionalPromise<(U["info"] | undefined)[] | undefined>): Promise<Map<string, U["info"]>>;
|
|
2749
|
+
declare function htmlSafe(value: string): HtmlSafeString;
|
|
2750
|
+
declare class HtmlSafeString {
|
|
2751
|
+
private _strings;
|
|
2752
|
+
private _values;
|
|
2753
|
+
constructor(strings: readonly string[], values: readonly (string | string[] | HtmlSafeString | HtmlSafeString[])[]);
|
|
2754
|
+
toString(): string;
|
|
2755
|
+
}
|
|
2756
|
+
/**
|
|
2757
|
+
* Build an HTML string from a template literal where the values are escaped.
|
|
2758
|
+
* Nested calls are supported and won't be escaped.
|
|
2759
|
+
*/
|
|
2760
|
+
declare function html(strings: TemplateStringsArray, ...values: (string | string[] | HtmlSafeString | HtmlSafeString[])[]): string;
|
|
2761
|
+
/**
|
|
2762
|
+
* Helper function to convert a URL (relative or absolute) to an absolute URL.
|
|
2763
|
+
*
|
|
2764
|
+
* @param url The URL to convert to an absolute URL (relative or absolute).
|
|
2765
|
+
* @returns The absolute URL or undefined if the URL is invalid.
|
|
2766
|
+
*/
|
|
2767
|
+
declare function toAbsoluteUrl(url: string): string | undefined;
|
|
2741
2768
|
/**
|
|
2742
2769
|
* Convert a `CommentBody` into either a plain string,
|
|
2743
2770
|
* Markdown, HTML, or a custom format.
|
|
2744
2771
|
*/
|
|
2745
2772
|
declare function stringifyCommentBody(body: CommentBody, options?: StringifyCommentBodyOptions<BaseUserMeta>): Promise<string>;
|
|
2746
2773
|
|
|
2774
|
+
declare function generateCommentUrl({ roomUrl, commentId, }: {
|
|
2775
|
+
roomUrl: string;
|
|
2776
|
+
commentId: string;
|
|
2777
|
+
}): string;
|
|
2778
|
+
|
|
2747
2779
|
/**
|
|
2748
2780
|
* Converts a plain comment data object (usually returned by the API) to a comment data object that can be used by the client.
|
|
2749
2781
|
* This is necessary because the plain data object stores dates as ISO strings, but the client expects them as Date objects.
|
|
@@ -2859,6 +2891,15 @@ declare function autoRetry<T>(promiseFn: () => Promise<T>, maxTries: number, bac
|
|
|
2859
2891
|
|
|
2860
2892
|
declare function chunk<T>(array: T[], size: number): T[][];
|
|
2861
2893
|
|
|
2894
|
+
/**
|
|
2895
|
+
* Drop-in replacement for the ES2024 Promise.withResolvers() API.
|
|
2896
|
+
*/
|
|
2897
|
+
declare function Promise_withResolvers<T>(): {
|
|
2898
|
+
promise: Promise<T>;
|
|
2899
|
+
resolve: (value: T) => void;
|
|
2900
|
+
reject: (reason: unknown) => void;
|
|
2901
|
+
};
|
|
2902
|
+
|
|
2862
2903
|
declare function createThreadId(): string;
|
|
2863
2904
|
declare function createCommentId(): string;
|
|
2864
2905
|
declare function createInboxNotificationId(): string;
|
|
@@ -3321,4 +3362,4 @@ declare const CommentsApiError: typeof HttpError;
|
|
|
3321
3362
|
/** @deprecated Use HttpError instead. */
|
|
3322
3363
|
declare const NotificationsApiError: typeof HttpError;
|
|
3323
3364
|
|
|
3324
|
-
export { type AckOp, type ActivityData, type AsyncError, type AsyncLoading, type AsyncResult, type AsyncSuccess, type BaseActivitiesData, type BaseAuthResult, type BaseMetadata, type BaseRoomInfo, type BaseUserMeta, type Brand, type BroadcastEventClientMsg, type BroadcastOptions, type BroadcastedEventServerMsg, type Client, type ClientMsg, ClientMsgCode, type ClientOptions, type CommentAttachment, type CommentBody, type CommentBodyBlockElement, type CommentBodyElement, type CommentBodyInlineElement, type CommentBodyLink, type CommentBodyLinkElementArgs, type CommentBodyMention, type CommentBodyMentionElementArgs, type CommentBodyParagraph, type CommentBodyParagraphElementArgs, type CommentBodyText, type CommentBodyTextElementArgs, type CommentData, type CommentDataPlain, type CommentLocalAttachment, type CommentMixedAttachment, type CommentReaction, type CommentUserReaction, type CommentUserReactionPlain, CommentsApiError, type CommentsEventServerMsg, CrdtType, type CreateListOp, type CreateMapOp, type CreateObjectOp, type CreateOp, type CreateRegisterOp, type CustomAuthenticationResult, type DAD, type DE, type DM, type DP, type DRI, type DS, type DU, type Delegates, type DeleteCrdtOp, type DeleteObjectKeyOp, DevToolsTreeNode as DevTools, protocol as DevToolsMsg, type DistributiveOmit, type EnsureJson, type EnterOptions, type EventSource, type FetchStorageClientMsg, type FetchYDocClientMsg, type GetThreadsOptions, type GetUserThreadsOptions, type History, type HistoryVersion, HttpError, type IUserInfo, type IWebSocket, type IWebSocketCloseEvent, type IWebSocketEvent, type IWebSocketInstance, type IWebSocketMessageEvent, type IdTuple, type Immutable, type InboxNotificationCustomData, type InboxNotificationCustomDataPlain, type InboxNotificationData, type InboxNotificationDataPlain, type InboxNotificationDeleteInfo, type InboxNotificationTextMentionData, type InboxNotificationTextMentionDataPlain, type InboxNotificationThreadData, type InboxNotificationThreadDataPlain, type InitialDocumentStateServerMsg, type Json, type JsonArray, type JsonObject, type JsonScalar, type KDAD, LiveList, type LiveListUpdate, LiveMap, type LiveMapUpdate, type LiveNode, LiveObject, type LiveObjectUpdate, type LiveStructure, LiveblocksError, type LostConnectionEvent, type Lson, type LsonObject, type NoInfr, type NodeMap, NotificationsApiError, type Observable, type Op, OpCode, type OpaqueClient, type OpaqueRoom, type OptionalPromise, type OptionalTupleUnless, type OthersEvent, type ParentToChildNodeMap, type PartialUnless, type Patchable, type PlainLson, type PlainLsonFields, type PlainLsonList, type PlainLsonMap, type PlainLsonObject, type Poller, type PrivateClientApi, type PrivateRoomApi, type QueryMetadata, type QueryParams, type RejectedStorageOpServerMsg, type Resolve, type ResolveMentionSuggestionsArgs, type ResolveRoomsInfoArgs, type ResolveUsersArgs, type Room, type RoomEventMessage, type RoomNotificationSettings, type RoomStateServerMsg, type SerializedChild, type SerializedCrdt, type SerializedList, type SerializedMap, type SerializedObject, type SerializedRegister, type SerializedRootObject, type ServerMsg, ServerMsgCode, type SetParentKeyOp, SortedList, type Status, type StorageStatus, type StorageUpdate, type Store, type StringifyCommentBodyElements, type StringifyCommentBodyOptions, type ThreadData, type ThreadDataPlain, type ThreadDataWithDeleteInfo, type ThreadDeleteInfo, type ToImmutable, type ToJson, type URLSafeString, type UnsubscribeCallback, type UpdateObjectOp, type UpdatePresenceClientMsg, type UpdatePresenceServerMsg, type UpdateStorageClientMsg, type UpdateStorageServerMsg, type UpdateYDocClientMsg, type UploadAttachmentOptions, type User, type UserJoinServerMsg, type UserLeftServerMsg, WebsocketCloseCodes, type YDocUpdateServerMsg, ackOp, asPos, assert, assertNever, autoRetry, b64decode, chunk, cloneLson, compactObject, fancyConsole as console, convertToCommentData, convertToCommentUserReaction, convertToInboxNotificationData, convertToThreadData, createClient, createCommentId, createInboxNotificationId, createStore, createThreadId, deprecate, deprecateIf, detectDupes, errorIf, freeze, getMentionedIdsFromCommentBody, isChildCrdt, isJsonArray, isJsonObject, isJsonScalar, isLiveNode, isPlainObject, isRootCrdt, kInternal, legacy_patchImmutableObject, lsonToJson, makeEventSource, makePoller, makePosition, mapValues, memoizeOnSuccess, nanoid, nn, objectToQuery, patchLiveObjectKey, raise, shallow, stringify, stringifyCommentBody, throwUsageError, toPlainLson, tryParseJson, url, urljoin, wait, withTimeout };
|
|
3365
|
+
export { type AckOp, type ActivityData, type AsyncError, type AsyncLoading, type AsyncResult, type AsyncSuccess, type BaseActivitiesData, type BaseAuthResult, type BaseMetadata, type BaseRoomInfo, type BaseUserMeta, type Brand, type BroadcastEventClientMsg, type BroadcastOptions, type BroadcastedEventServerMsg, type Client, type ClientMsg, ClientMsgCode, type ClientOptions, type CommentAttachment, type CommentBody, type CommentBodyBlockElement, type CommentBodyElement, type CommentBodyInlineElement, type CommentBodyLink, type CommentBodyLinkElementArgs, type CommentBodyMention, type CommentBodyMentionElementArgs, type CommentBodyParagraph, type CommentBodyParagraphElementArgs, type CommentBodyText, type CommentBodyTextElementArgs, type CommentData, type CommentDataPlain, type CommentLocalAttachment, type CommentMixedAttachment, type CommentReaction, type CommentUserReaction, type CommentUserReactionPlain, CommentsApiError, type CommentsEventServerMsg, CrdtType, type CreateListOp, type CreateMapOp, type CreateObjectOp, type CreateOp, type CreateRegisterOp, type CustomAuthenticationResult, type DAD, type DE, type DM, type DP, type DRI, type DS, type DU, type Delegates, type DeleteCrdtOp, type DeleteObjectKeyOp, DevToolsTreeNode as DevTools, protocol as DevToolsMsg, type DistributiveOmit, type EnsureJson, type EnterOptions, type EventSource, type FetchStorageClientMsg, type FetchYDocClientMsg, type GetThreadsOptions, type GetUserThreadsOptions, type History, type HistoryVersion, HttpError, type IUserInfo, type IWebSocket, type IWebSocketCloseEvent, type IWebSocketEvent, type IWebSocketInstance, type IWebSocketMessageEvent, type IdTuple, type Immutable, type InboxNotificationCustomData, type InboxNotificationCustomDataPlain, type InboxNotificationData, type InboxNotificationDataPlain, type InboxNotificationDeleteInfo, type InboxNotificationTextMentionData, type InboxNotificationTextMentionDataPlain, type InboxNotificationThreadData, type InboxNotificationThreadDataPlain, type InitialDocumentStateServerMsg, type Json, type JsonArray, type JsonObject, type JsonScalar, type KDAD, LiveList, type LiveListUpdate, LiveMap, type LiveMapUpdate, type LiveNode, LiveObject, type LiveObjectUpdate, type LiveStructure, LiveblocksError, type LostConnectionEvent, type Lson, type LsonObject, type NoInfr, type NodeMap, NotificationsApiError, type Observable, type Op, OpCode, type OpaqueClient, type OpaqueRoom, type OptionalPromise, type OptionalTupleUnless, type OthersEvent, type ParentToChildNodeMap, type PartialUnless, type Patchable, type PlainLson, type PlainLsonFields, type PlainLsonList, type PlainLsonMap, type PlainLsonObject, type Poller, type PrivateClientApi, type PrivateRoomApi, Promise_withResolvers, type QueryMetadata, type QueryParams, type RejectedStorageOpServerMsg, type Resolve, type ResolveMentionSuggestionsArgs, type ResolveRoomsInfoArgs, type ResolveUsersArgs, type Room, type RoomEventMessage, type RoomNotificationSettings, type RoomStateServerMsg, type SerializedChild, type SerializedCrdt, type SerializedList, type SerializedMap, type SerializedObject, type SerializedRegister, type SerializedRootObject, type ServerMsg, ServerMsgCode, type SetParentKeyOp, SortedList, type Status, type StorageStatus, type StorageUpdate, type Store, type StringifyCommentBodyElements, type StringifyCommentBodyOptions, TextEditorType, type ThreadData, type ThreadDataPlain, type ThreadDataWithDeleteInfo, type ThreadDeleteInfo, type ToImmutable, type ToJson, type URLSafeString, type UnsubscribeCallback, type UpdateObjectOp, type UpdatePresenceClientMsg, type UpdatePresenceServerMsg, type UpdateStorageClientMsg, type UpdateStorageServerMsg, type UpdateYDocClientMsg, type UploadAttachmentOptions, type User, type UserJoinServerMsg, type UserLeftServerMsg, WebsocketCloseCodes, type YDocUpdateServerMsg, ackOp, asPos, assert, assertNever, autoRetry, b64decode, chunk, cloneLson, compactObject, fancyConsole as console, convertToCommentData, convertToCommentUserReaction, convertToInboxNotificationData, convertToThreadData, createClient, createCommentId, createInboxNotificationId, createStore, createThreadId, deprecate, deprecateIf, detectDupes, errorIf, freeze, generateCommentUrl, getMentionedIdsFromCommentBody, html, htmlSafe, isChildCrdt, isCommentBodyLink, isCommentBodyMention, isCommentBodyText, isJsonArray, isJsonObject, isJsonScalar, isLiveNode, isPlainObject, isRootCrdt, kInternal, legacy_patchImmutableObject, lsonToJson, makeEventSource, makePoller, makePosition, mapValues, memoizeOnSuccess, nanoid, nn, objectToQuery, patchLiveObjectKey, raise, resolveUsersInCommentBody, shallow, stringify, stringifyCommentBody, throwUsageError, toAbsoluteUrl, toPlainLson, tryParseJson, url, urljoin, wait, withTimeout };
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ var __export = (target, all) => {
|
|
|
6
6
|
|
|
7
7
|
// src/version.ts
|
|
8
8
|
var PKG_NAME = "@liveblocks/core";
|
|
9
|
-
var PKG_VERSION = "2.
|
|
9
|
+
var PKG_VERSION = "2.11.0";
|
|
10
10
|
var PKG_FORMAT = "cjs";
|
|
11
11
|
|
|
12
12
|
// src/dupe-detection.ts
|
|
@@ -6599,19 +6599,31 @@ ${Array.from(traces).join("\n\n")}`
|
|
|
6599
6599
|
query = objectToQuery(options2.query);
|
|
6600
6600
|
}
|
|
6601
6601
|
const PAGE_SIZE = 50;
|
|
6602
|
-
|
|
6603
|
-
|
|
6604
|
-
|
|
6605
|
-
|
|
6606
|
-
|
|
6607
|
-
|
|
6608
|
-
|
|
6609
|
-
|
|
6610
|
-
|
|
6611
|
-
|
|
6612
|
-
|
|
6613
|
-
|
|
6614
|
-
|
|
6602
|
+
try {
|
|
6603
|
+
const result = await httpClient2.get(url`/v2/c/rooms/${config.roomId}/threads`, {
|
|
6604
|
+
cursor: _optionalChain([options2, 'optionalAccess', _145 => _145.cursor]),
|
|
6605
|
+
query,
|
|
6606
|
+
limit: PAGE_SIZE
|
|
6607
|
+
});
|
|
6608
|
+
return {
|
|
6609
|
+
threads: result.data.map(convertToThreadData),
|
|
6610
|
+
inboxNotifications: result.inboxNotifications.map(
|
|
6611
|
+
convertToInboxNotificationData
|
|
6612
|
+
),
|
|
6613
|
+
nextCursor: result.meta.nextCursor,
|
|
6614
|
+
requestedAt: new Date(result.meta.requestedAt)
|
|
6615
|
+
};
|
|
6616
|
+
} catch (err) {
|
|
6617
|
+
if (err instanceof HttpError && err.status === 404) {
|
|
6618
|
+
return {
|
|
6619
|
+
threads: [],
|
|
6620
|
+
inboxNotifications: [],
|
|
6621
|
+
nextCursor: null,
|
|
6622
|
+
requestedAt: /* @__PURE__ */ new Date()
|
|
6623
|
+
};
|
|
6624
|
+
}
|
|
6625
|
+
throw err;
|
|
6626
|
+
}
|
|
6615
6627
|
}
|
|
6616
6628
|
async function getThread(threadId) {
|
|
6617
6629
|
const response = await httpClient2.rawGet(
|
|
@@ -7690,6 +7702,22 @@ async function stringifyCommentBody(body, options) {
|
|
|
7690
7702
|
return blocks.join(separator);
|
|
7691
7703
|
}
|
|
7692
7704
|
|
|
7705
|
+
// src/comments/comment-url.ts
|
|
7706
|
+
var PLACEHOLDER_BASE_URL = "https://localhost:9999";
|
|
7707
|
+
var ABSOLUTE_URL_REGEX = /^[a-zA-Z][a-zA-Z\d+\-.]*?:/;
|
|
7708
|
+
function generateCommentUrl({
|
|
7709
|
+
roomUrl,
|
|
7710
|
+
commentId
|
|
7711
|
+
}) {
|
|
7712
|
+
const isAbsolute = ABSOLUTE_URL_REGEX.test(roomUrl);
|
|
7713
|
+
const urlObject = new URL(
|
|
7714
|
+
roomUrl,
|
|
7715
|
+
isAbsolute ? void 0 : PLACEHOLDER_BASE_URL
|
|
7716
|
+
);
|
|
7717
|
+
urlObject.hash = `#${commentId}`;
|
|
7718
|
+
return isAbsolute ? urlObject.href : urlObject.href.replace(PLACEHOLDER_BASE_URL, "");
|
|
7719
|
+
}
|
|
7720
|
+
|
|
7693
7721
|
// src/crdts/utils.ts
|
|
7694
7722
|
function toPlainLson(lson) {
|
|
7695
7723
|
if (lson instanceof LiveObject) {
|
|
@@ -8263,6 +8291,13 @@ var SortedList = class _SortedList {
|
|
|
8263
8291
|
}
|
|
8264
8292
|
};
|
|
8265
8293
|
|
|
8294
|
+
// src/types/Others.ts
|
|
8295
|
+
var TextEditorType = /* @__PURE__ */ ((TextEditorType2) => {
|
|
8296
|
+
TextEditorType2["Lexical"] = "lexical";
|
|
8297
|
+
TextEditorType2["TipTap"] = "tiptap";
|
|
8298
|
+
return TextEditorType2;
|
|
8299
|
+
})(TextEditorType || {});
|
|
8300
|
+
|
|
8266
8301
|
// src/index.ts
|
|
8267
8302
|
detectDupes(PKG_NAME, PKG_VERSION, PKG_FORMAT);
|
|
8268
8303
|
var CommentsApiError = HttpError;
|
|
@@ -8335,5 +8370,15 @@ var NotificationsApiError = HttpError;
|
|
|
8335
8370
|
|
|
8336
8371
|
|
|
8337
8372
|
|
|
8338
|
-
|
|
8373
|
+
|
|
8374
|
+
|
|
8375
|
+
|
|
8376
|
+
|
|
8377
|
+
|
|
8378
|
+
|
|
8379
|
+
|
|
8380
|
+
|
|
8381
|
+
|
|
8382
|
+
|
|
8383
|
+
exports.ClientMsgCode = ClientMsgCode; exports.CommentsApiError = CommentsApiError; exports.CrdtType = CrdtType; exports.HttpError = HttpError; exports.LiveList = LiveList; exports.LiveMap = LiveMap; exports.LiveObject = LiveObject; exports.NotificationsApiError = NotificationsApiError; exports.OpCode = OpCode; exports.Promise_withResolvers = Promise_withResolvers; exports.ServerMsgCode = ServerMsgCode; exports.SortedList = SortedList; exports.TextEditorType = TextEditorType; exports.WebsocketCloseCodes = WebsocketCloseCodes; exports.ackOp = ackOp; exports.asPos = asPos; exports.assert = assert; exports.assertNever = assertNever; exports.autoRetry = autoRetry; exports.b64decode = b64decode; exports.chunk = chunk; exports.cloneLson = cloneLson; exports.compactObject = compactObject; exports.console = fancy_console_exports; exports.convertToCommentData = convertToCommentData; exports.convertToCommentUserReaction = convertToCommentUserReaction; exports.convertToInboxNotificationData = convertToInboxNotificationData; exports.convertToThreadData = convertToThreadData; exports.createClient = createClient; exports.createCommentId = createCommentId; exports.createInboxNotificationId = createInboxNotificationId; exports.createStore = createStore; exports.createThreadId = createThreadId; exports.deprecate = deprecate; exports.deprecateIf = deprecateIf; exports.detectDupes = detectDupes; exports.errorIf = errorIf; exports.freeze = freeze; exports.generateCommentUrl = generateCommentUrl; exports.getMentionedIdsFromCommentBody = getMentionedIdsFromCommentBody; exports.html = html; exports.htmlSafe = htmlSafe; exports.isChildCrdt = isChildCrdt; exports.isCommentBodyLink = isCommentBodyLink; exports.isCommentBodyMention = isCommentBodyMention; exports.isCommentBodyText = isCommentBodyText; exports.isJsonArray = isJsonArray; exports.isJsonObject = isJsonObject; exports.isJsonScalar = isJsonScalar; exports.isLiveNode = isLiveNode; exports.isPlainObject = isPlainObject; exports.isRootCrdt = isRootCrdt; exports.kInternal = kInternal; exports.legacy_patchImmutableObject = legacy_patchImmutableObject; exports.lsonToJson = lsonToJson; exports.makeEventSource = makeEventSource; exports.makePoller = makePoller; exports.makePosition = makePosition; exports.mapValues = mapValues; exports.memoizeOnSuccess = memoizeOnSuccess; exports.nanoid = nanoid; exports.nn = nn; exports.objectToQuery = objectToQuery; exports.patchLiveObjectKey = patchLiveObjectKey; exports.raise = raise; exports.resolveUsersInCommentBody = resolveUsersInCommentBody; exports.shallow = shallow; exports.stringify = stringify; exports.stringifyCommentBody = stringifyCommentBody; exports.throwUsageError = throwUsageError; exports.toAbsoluteUrl = toAbsoluteUrl; exports.toPlainLson = toPlainLson; exports.tryParseJson = tryParseJson; exports.url = url; exports.urljoin = urljoin; exports.wait = wait; exports.withTimeout = withTimeout;
|
|
8339
8384
|
//# sourceMappingURL=index.js.map
|