@liveblocks/core 1.2.2-comments2 → 1.2.2-comments3
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 +11 -368
- package/dist/index.d.ts +11 -368
- package/dist/index.js +48 -449
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -407
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -570,11 +570,6 @@ declare type CustomAuthenticationResult = {
|
|
|
570
570
|
reason: string;
|
|
571
571
|
};
|
|
572
572
|
|
|
573
|
-
declare type BaseUserInfo = {
|
|
574
|
-
[key: string]: Json | undefined;
|
|
575
|
-
name?: string;
|
|
576
|
-
avatar?: string;
|
|
577
|
-
};
|
|
578
573
|
/**
|
|
579
574
|
* This type is used by clients to define the metadata for a user.
|
|
580
575
|
*/
|
|
@@ -587,160 +582,9 @@ declare type BaseUserMeta = {
|
|
|
587
582
|
/**
|
|
588
583
|
* Additional user information that has been set in the authentication endpoint.
|
|
589
584
|
*/
|
|
590
|
-
info?:
|
|
591
|
-
};
|
|
592
|
-
|
|
593
|
-
declare enum Permission {
|
|
594
|
-
Read = "room:read",
|
|
595
|
-
Write = "room:write",
|
|
596
|
-
PresenceWrite = "room:presence:write",
|
|
597
|
-
CommentsWrite = "comments:write",
|
|
598
|
-
CommentsRead = "comments:read"
|
|
599
|
-
}
|
|
600
|
-
declare type LiveblocksPermissions = Record<string, Permission[]>;
|
|
601
|
-
declare enum TokenKind {
|
|
602
|
-
SECRET_LEGACY = "sec-legacy",
|
|
603
|
-
ACCESS_TOKEN = "acc",
|
|
604
|
-
ID_TOKEN = "id"
|
|
605
|
-
}
|
|
606
|
-
declare type JwtMeta = {
|
|
607
|
-
iat: number;
|
|
608
|
-
exp: number;
|
|
609
|
-
};
|
|
610
|
-
/**
|
|
611
|
-
* Legacy Secret Token.
|
|
612
|
-
*/
|
|
613
|
-
declare type LegacySecretToken = {
|
|
614
|
-
k: TokenKind.SECRET_LEGACY;
|
|
615
|
-
roomId: string;
|
|
616
|
-
scopes: string[];
|
|
617
|
-
id?: string;
|
|
618
|
-
info?: BaseUserInfo;
|
|
619
|
-
[other: string]: Json | undefined;
|
|
620
|
-
} & JwtMeta;
|
|
621
|
-
/**
|
|
622
|
-
* New authorization Access Token.
|
|
623
|
-
*/
|
|
624
|
-
declare type AccessToken = {
|
|
625
|
-
k: TokenKind.ACCESS_TOKEN;
|
|
626
|
-
pid: string;
|
|
627
|
-
uid: string;
|
|
628
|
-
perms: LiveblocksPermissions;
|
|
629
|
-
ui?: BaseUserInfo;
|
|
630
|
-
} & JwtMeta;
|
|
631
|
-
/**
|
|
632
|
-
* New authorization ID Token.
|
|
633
|
-
*/
|
|
634
|
-
declare type IDToken = {
|
|
635
|
-
k: TokenKind.ID_TOKEN;
|
|
636
|
-
pid: string;
|
|
637
|
-
uid: string;
|
|
638
|
-
gids?: string[];
|
|
639
|
-
ui?: BaseUserInfo;
|
|
640
|
-
} & JwtMeta;
|
|
641
|
-
declare type AuthToken = AccessToken | IDToken | LegacySecretToken;
|
|
642
|
-
declare type ParsedAuthToken = {
|
|
643
|
-
readonly raw: string;
|
|
644
|
-
readonly parsed: AuthToken;
|
|
645
|
-
};
|
|
646
|
-
|
|
647
|
-
declare type AuthValue = {
|
|
648
|
-
type: "secret";
|
|
649
|
-
token: ParsedAuthToken;
|
|
650
|
-
} | {
|
|
651
|
-
type: "public";
|
|
652
|
-
publicApiKey: string;
|
|
653
|
-
};
|
|
654
|
-
|
|
655
|
-
declare type BaseMetadata = Record<string, string | boolean | number>;
|
|
656
|
-
|
|
657
|
-
declare type CommentBodyBlockElement = CommentBodyParagraph;
|
|
658
|
-
declare type CommentBodyInlineElement = CommentBodyText | CommentBodyMention;
|
|
659
|
-
declare type CommentBodyElement = CommentBodyBlockElement | CommentBodyInlineElement;
|
|
660
|
-
declare type CommentBodyParagraph = {
|
|
661
|
-
type: "paragraph";
|
|
662
|
-
children: CommentBodyInlineElement[];
|
|
663
|
-
};
|
|
664
|
-
declare type CommentBodyMention = {
|
|
665
|
-
type: "mention";
|
|
666
|
-
id: string;
|
|
667
|
-
};
|
|
668
|
-
declare type CommentBodyText = {
|
|
669
|
-
bold?: boolean;
|
|
670
|
-
italic?: boolean;
|
|
671
|
-
strikethrough?: boolean;
|
|
672
|
-
code?: boolean;
|
|
673
|
-
text: string;
|
|
674
|
-
};
|
|
675
|
-
declare type CommentBody = {
|
|
676
|
-
version: 1;
|
|
677
|
-
content: CommentBodyBlockElement[];
|
|
678
|
-
};
|
|
679
|
-
|
|
680
|
-
/**
|
|
681
|
-
* Represents a comment.
|
|
682
|
-
*/
|
|
683
|
-
declare type CommentData = {
|
|
684
|
-
type: "comment";
|
|
685
|
-
id: string;
|
|
686
|
-
threadId: string;
|
|
687
|
-
roomId: string;
|
|
688
|
-
userId: string;
|
|
689
|
-
createdAt: string;
|
|
690
|
-
editedAt?: string;
|
|
691
|
-
} & ({
|
|
692
|
-
body: CommentBody;
|
|
693
|
-
deletedAt?: never;
|
|
694
|
-
} | {
|
|
695
|
-
body?: never;
|
|
696
|
-
deletedAt: string;
|
|
697
|
-
});
|
|
698
|
-
|
|
699
|
-
/**
|
|
700
|
-
* Represents a thread of comments.
|
|
701
|
-
*/
|
|
702
|
-
declare type ThreadData<ThreadMetadata extends BaseMetadata = never> = {
|
|
703
|
-
type: "thread";
|
|
704
|
-
id: string;
|
|
705
|
-
roomId: string;
|
|
706
|
-
createdAt: string;
|
|
707
|
-
updatedAt?: string;
|
|
708
|
-
comments: CommentData[];
|
|
709
|
-
metadata: [ThreadMetadata] extends [never] ? Record<string, never> : ThreadMetadata;
|
|
585
|
+
info?: Json;
|
|
710
586
|
};
|
|
711
587
|
|
|
712
|
-
declare type Options = {
|
|
713
|
-
serverEndpoint: string;
|
|
714
|
-
};
|
|
715
|
-
declare type CommentsApi<ThreadMetadata extends BaseMetadata> = {
|
|
716
|
-
getThreads(): Promise<ThreadData<ThreadMetadata>[]>;
|
|
717
|
-
createThread(options: {
|
|
718
|
-
threadId: string;
|
|
719
|
-
commentId: string;
|
|
720
|
-
metadata: ThreadMetadata | undefined;
|
|
721
|
-
body: CommentBody;
|
|
722
|
-
}): Promise<ThreadData<ThreadMetadata>>;
|
|
723
|
-
editThreadMetadata(options: {
|
|
724
|
-
metadata: Partial<ThreadMetadata>;
|
|
725
|
-
threadId: string;
|
|
726
|
-
}): Promise<ThreadData<ThreadMetadata>>;
|
|
727
|
-
createComment(options: {
|
|
728
|
-
threadId: string;
|
|
729
|
-
commentId: string;
|
|
730
|
-
body: CommentBody;
|
|
731
|
-
}): Promise<CommentData>;
|
|
732
|
-
editComment(options: {
|
|
733
|
-
threadId: string;
|
|
734
|
-
commentId: string;
|
|
735
|
-
body: CommentBody;
|
|
736
|
-
}): Promise<CommentData>;
|
|
737
|
-
deleteComment(options: {
|
|
738
|
-
threadId: string;
|
|
739
|
-
commentId: string;
|
|
740
|
-
}): Promise<void>;
|
|
741
|
-
};
|
|
742
|
-
declare function createCommentsApi<ThreadMetadata extends BaseMetadata>(roomId: string, getAuthValue: () => Promise<AuthValue>, { serverEndpoint }: Options): CommentsApi<ThreadMetadata>;
|
|
743
|
-
|
|
744
588
|
declare type Callback<T> = (event: T) => void;
|
|
745
589
|
declare type UnsubscribeCallback = () => void;
|
|
746
590
|
declare type Observable<T> = {
|
|
@@ -762,59 +606,6 @@ declare type Observable<T> = {
|
|
|
762
606
|
*/
|
|
763
607
|
waitUntil(predicate?: (event: T) => boolean): Promise<T>;
|
|
764
608
|
};
|
|
765
|
-
declare type EventSource<T> = Observable<T> & {
|
|
766
|
-
/**
|
|
767
|
-
* Notify all subscribers about the event.
|
|
768
|
-
*/
|
|
769
|
-
notify(event: T): void;
|
|
770
|
-
/**
|
|
771
|
-
* Clear all registered event listeners. None of the registered functions
|
|
772
|
-
* will ever get called again. Be careful when using this API, because the
|
|
773
|
-
* subscribers may not have any idea they won't be notified anymore.
|
|
774
|
-
*/
|
|
775
|
-
clear(): void;
|
|
776
|
-
/**
|
|
777
|
-
* Returns the number of active subscribers.
|
|
778
|
-
*/
|
|
779
|
-
count(): number;
|
|
780
|
-
/**
|
|
781
|
-
* Pauses event delivery until unpaused. Any .notify() calls made while
|
|
782
|
-
* paused will get buffered into memory and emitted later.
|
|
783
|
-
*/
|
|
784
|
-
pause(): void;
|
|
785
|
-
/**
|
|
786
|
-
* Emits all in-memory buffered events, and unpauses. Any .notify() calls
|
|
787
|
-
* made after this will be synchronously delivered again.
|
|
788
|
-
*/
|
|
789
|
-
unpause(): void;
|
|
790
|
-
/**
|
|
791
|
-
* Observable instance, which can be used to subscribe to this event source
|
|
792
|
-
* in a readonly fashion. Safe to publicly expose.
|
|
793
|
-
*/
|
|
794
|
-
observable: Observable<T>;
|
|
795
|
-
};
|
|
796
|
-
/**
|
|
797
|
-
* makeEventSource allows you to generate a subscribe/notify pair of functions
|
|
798
|
-
* to make subscribing easy and to get notified about events.
|
|
799
|
-
*
|
|
800
|
-
* The events are anonymous, so you can use it to define events, like so:
|
|
801
|
-
*
|
|
802
|
-
* const event1 = makeEventSource();
|
|
803
|
-
* const event2 = makeEventSource();
|
|
804
|
-
*
|
|
805
|
-
* event1.subscribe(foo);
|
|
806
|
-
* event1.subscribe(bar);
|
|
807
|
-
* event2.subscribe(qux);
|
|
808
|
-
*
|
|
809
|
-
* // Unsubscription is pretty standard
|
|
810
|
-
* const unsub = event2.subscribe(foo);
|
|
811
|
-
* unsub();
|
|
812
|
-
*
|
|
813
|
-
* event1.notify(); // Now foo and bar will get called
|
|
814
|
-
* event2.notify(); // Now qux will get called (but foo will not, since it's unsubscribed)
|
|
815
|
-
*
|
|
816
|
-
*/
|
|
817
|
-
declare function makeEventSource<T>(): EventSource<T>;
|
|
818
609
|
|
|
819
610
|
interface IWebSocketEvent {
|
|
820
611
|
type: string;
|
|
@@ -969,41 +760,12 @@ declare enum ServerMsgCode {
|
|
|
969
760
|
INITIAL_STORAGE_STATE = 200,
|
|
970
761
|
UPDATE_STORAGE = 201,
|
|
971
762
|
REJECT_STORAGE_OP = 299,
|
|
972
|
-
UPDATE_YDOC = 300
|
|
973
|
-
THREAD_CREATED = 400,
|
|
974
|
-
THREAD_METADATA_UPDATED = 401,
|
|
975
|
-
COMMENT_CREATED = 402,
|
|
976
|
-
COMMENT_EDITED = 403,
|
|
977
|
-
COMMENT_DELETED = 404
|
|
763
|
+
UPDATE_YDOC = 300
|
|
978
764
|
}
|
|
979
765
|
/**
|
|
980
766
|
* Messages that can be sent from the server to the client.
|
|
981
767
|
*/
|
|
982
|
-
declare type ServerMsg<TPresence extends JsonObject, TUserMeta extends BaseUserMeta, TRoomEvent extends Json> = UpdatePresenceServerMsg<TPresence> | UserJoinServerMsg<TUserMeta> | UserLeftServerMsg | BroadcastedEventServerMsg<TRoomEvent> | RoomStateServerMsg<TUserMeta> | InitialDocumentStateServerMsg | UpdateStorageServerMsg | RejectedStorageOpServerMsg | YDocUpdate
|
|
983
|
-
declare type CommentsEventServerMsg = ThreadCreatedEvent | ThreadMetadataUpdatedEvent | CommentCreatedEvent | CommentEditedEvent | CommentDeletedEvent;
|
|
984
|
-
declare type ThreadCreatedEvent = {
|
|
985
|
-
type: ServerMsgCode.THREAD_CREATED;
|
|
986
|
-
threadId: string;
|
|
987
|
-
};
|
|
988
|
-
declare type ThreadMetadataUpdatedEvent = {
|
|
989
|
-
type: ServerMsgCode.THREAD_METADATA_UPDATED;
|
|
990
|
-
threadId: string;
|
|
991
|
-
};
|
|
992
|
-
declare type CommentCreatedEvent = {
|
|
993
|
-
type: ServerMsgCode.COMMENT_CREATED;
|
|
994
|
-
threadId: string;
|
|
995
|
-
commentId: string;
|
|
996
|
-
};
|
|
997
|
-
declare type CommentEditedEvent = {
|
|
998
|
-
type: ServerMsgCode.COMMENT_EDITED;
|
|
999
|
-
threadId: string;
|
|
1000
|
-
commentId: string;
|
|
1001
|
-
};
|
|
1002
|
-
declare type CommentDeletedEvent = {
|
|
1003
|
-
type: ServerMsgCode.COMMENT_DELETED;
|
|
1004
|
-
threadId: string;
|
|
1005
|
-
commentId: string;
|
|
1006
|
-
};
|
|
768
|
+
declare type ServerMsg<TPresence extends JsonObject, TUserMeta extends BaseUserMeta, TRoomEvent extends Json> = UpdatePresenceServerMsg<TPresence> | UserJoinServerMsg<TUserMeta> | UserLeftServerMsg | BroadcastedEventServerMsg<TRoomEvent> | RoomStateServerMsg<TUserMeta> | InitialDocumentStateServerMsg | UpdateStorageServerMsg | RejectedStorageOpServerMsg | YDocUpdate;
|
|
1007
769
|
/**
|
|
1008
770
|
* Sent by the WebSocket server and broadcasted to all clients to announce that
|
|
1009
771
|
* a User updated their presence. For example, when a user moves their cursor.
|
|
@@ -1210,10 +972,6 @@ declare type User<TPresence extends JsonObject, TUserMeta extends BaseUserMeta>
|
|
|
1210
972
|
* can only read but not mutate it.
|
|
1211
973
|
*/
|
|
1212
974
|
readonly canWrite: boolean;
|
|
1213
|
-
/**
|
|
1214
|
-
* True if the user can comment on a thread
|
|
1215
|
-
*/
|
|
1216
|
-
readonly canComment: boolean;
|
|
1217
975
|
};
|
|
1218
976
|
|
|
1219
977
|
/**
|
|
@@ -1481,7 +1239,7 @@ declare type SubscribeFn<TPresence extends JsonObject, _TStorage extends LsonObj
|
|
|
1481
1239
|
*/
|
|
1482
1240
|
(type: "storage-status", listener: Callback<StorageStatus>): () => void;
|
|
1483
1241
|
};
|
|
1484
|
-
declare type Room<TPresence extends JsonObject, TStorage extends LsonObject, TUserMeta extends BaseUserMeta, TRoomEvent extends Json> =
|
|
1242
|
+
declare type Room<TPresence extends JsonObject, TStorage extends LsonObject, TUserMeta extends BaseUserMeta, TRoomEvent extends Json> = {
|
|
1485
1243
|
/**
|
|
1486
1244
|
* The id of the room.
|
|
1487
1245
|
*/
|
|
@@ -1626,7 +1384,6 @@ declare type Room<TPresence extends JsonObject, TStorage extends LsonObject, TUs
|
|
|
1626
1384
|
readonly storageDidLoad: Observable<void>;
|
|
1627
1385
|
readonly storageStatus: Observable<StorageStatus>;
|
|
1628
1386
|
readonly ydoc: Observable<YDocUpdate>;
|
|
1629
|
-
readonly comments: Observable<CommentsEventServerMsg>;
|
|
1630
1387
|
};
|
|
1631
1388
|
/**
|
|
1632
1389
|
* Batches modifications made during the given function.
|
|
@@ -1812,93 +1569,6 @@ declare function assert(condition: boolean, errmsg: string): asserts condition;
|
|
|
1812
1569
|
*/
|
|
1813
1570
|
declare function nn<T>(value: T, errmsg?: string): NonNullable<T>;
|
|
1814
1571
|
|
|
1815
|
-
declare type AsyncFunction<T, A extends any[] = any[]> = (...args: A) => Promise<T>;
|
|
1816
|
-
declare type AsyncCacheOptions<T, E> = {
|
|
1817
|
-
isStateEqual?: (a: AsyncState<T, E>, b: AsyncState<T, E>) => boolean;
|
|
1818
|
-
};
|
|
1819
|
-
declare type AsyncStateInitial = {
|
|
1820
|
-
readonly isLoading: false;
|
|
1821
|
-
readonly data?: never;
|
|
1822
|
-
readonly error?: never;
|
|
1823
|
-
};
|
|
1824
|
-
declare type AsyncStateLoading<T> = {
|
|
1825
|
-
readonly isLoading: true;
|
|
1826
|
-
readonly data?: T;
|
|
1827
|
-
readonly error?: never;
|
|
1828
|
-
};
|
|
1829
|
-
declare type AsyncStateSuccess<T> = {
|
|
1830
|
-
readonly isLoading: false;
|
|
1831
|
-
readonly data: T;
|
|
1832
|
-
readonly error?: never;
|
|
1833
|
-
};
|
|
1834
|
-
declare type AsyncStateError<T, E> = {
|
|
1835
|
-
readonly isLoading: false;
|
|
1836
|
-
readonly data?: T;
|
|
1837
|
-
readonly error: E;
|
|
1838
|
-
};
|
|
1839
|
-
declare type AsyncState<T, E> = AsyncStateInitial | AsyncStateLoading<T> | AsyncStateSuccess<T> | AsyncStateError<T, E>;
|
|
1840
|
-
declare type AsyncStateResolved<T, E> = AsyncStateSuccess<T> | AsyncStateError<T, E>;
|
|
1841
|
-
declare type AsyncCacheItem<T, E> = Observable<AsyncState<T, E>> & {
|
|
1842
|
-
setAsyncFunction(asyncFunction: AsyncFunction<T, [string]>): void;
|
|
1843
|
-
get(): Promise<AsyncStateResolved<T, E>>;
|
|
1844
|
-
getState(): AsyncState<T, E>;
|
|
1845
|
-
revalidate(): Promise<AsyncStateResolved<T, E>>;
|
|
1846
|
-
};
|
|
1847
|
-
declare type AsyncCache<T, E> = {
|
|
1848
|
-
/**
|
|
1849
|
-
* @private
|
|
1850
|
-
*
|
|
1851
|
-
* Creates a key in the cache.
|
|
1852
|
-
*
|
|
1853
|
-
* @param key The key to create.
|
|
1854
|
-
* @param asyncFunction Override the cache's function for this key.
|
|
1855
|
-
*/
|
|
1856
|
-
create(key: string, asyncFunction?: AsyncFunction<T, [string]>): AsyncCacheItem<T, E>;
|
|
1857
|
-
/**
|
|
1858
|
-
* Returns a promise which resolves with the state of the key.
|
|
1859
|
-
*
|
|
1860
|
-
* @param key The key to get.
|
|
1861
|
-
*/
|
|
1862
|
-
get(key: string): Promise<AsyncStateResolved<T, E>>;
|
|
1863
|
-
/**
|
|
1864
|
-
* Returns the current state of the key synchronously.
|
|
1865
|
-
*
|
|
1866
|
-
* @param key The key to get the state of.
|
|
1867
|
-
*/
|
|
1868
|
-
getState(key: string): AsyncState<T, E> | undefined;
|
|
1869
|
-
/**
|
|
1870
|
-
* Revalidates the key.
|
|
1871
|
-
*
|
|
1872
|
-
* @param key The key to revalidate.
|
|
1873
|
-
*/
|
|
1874
|
-
revalidate(key: string): Promise<AsyncStateResolved<T, E>>;
|
|
1875
|
-
/**
|
|
1876
|
-
* Subscribes to the key's changes.
|
|
1877
|
-
*
|
|
1878
|
-
* @param key The key to subscribe to.
|
|
1879
|
-
* @param callback The function invoked on every change.
|
|
1880
|
-
*/
|
|
1881
|
-
subscribe(key: string, callback: Callback<AsyncState<T, E>>): UnsubscribeCallback;
|
|
1882
|
-
/**
|
|
1883
|
-
* Subscribes to the key's changes once.
|
|
1884
|
-
*
|
|
1885
|
-
* @param key The key to subscribe to.
|
|
1886
|
-
* @param callback The function invoked on every change.
|
|
1887
|
-
*/
|
|
1888
|
-
subscribeOnce(key: string, callback: Callback<AsyncState<T, E>>): UnsubscribeCallback;
|
|
1889
|
-
/**
|
|
1890
|
-
* Returns whether a key already exists in the cache.
|
|
1891
|
-
*
|
|
1892
|
-
* @param key The key to look for.
|
|
1893
|
-
*/
|
|
1894
|
-
has(key: string): boolean;
|
|
1895
|
-
/**
|
|
1896
|
-
* Clears all keys.
|
|
1897
|
-
*/
|
|
1898
|
-
clear(): void;
|
|
1899
|
-
};
|
|
1900
|
-
declare function createAsyncCache<T, E>(asyncFunction: AsyncFunction<T, [string]>, options?: AsyncCacheOptions<T, E>): AsyncCache<T, E>;
|
|
1901
|
-
|
|
1902
1572
|
/**
|
|
1903
1573
|
* Displays a deprecation warning in the dev console. Only in dev mode, and
|
|
1904
1574
|
* only once per message/key. In production, this is a no-op.
|
|
@@ -1925,39 +1595,12 @@ declare function throwUsageError(message: string): void;
|
|
|
1925
1595
|
*/
|
|
1926
1596
|
declare function errorIf(condition: unknown, message: string): void;
|
|
1927
1597
|
|
|
1928
|
-
declare const warn: (message: string, ...args: readonly unknown[]) => void;
|
|
1929
|
-
declare const error: (message: string, ...args: readonly unknown[]) => void;
|
|
1930
|
-
declare const warnWithTitle: (title: string, message: string, ...args: readonly unknown[]) => void;
|
|
1931
|
-
declare const errorWithTitle: (title: string, message: string, ...args: readonly unknown[]) => void;
|
|
1932
|
-
|
|
1933
|
-
declare const fancyConsole_error: typeof error;
|
|
1934
|
-
declare const fancyConsole_errorWithTitle: typeof errorWithTitle;
|
|
1935
|
-
declare const fancyConsole_warn: typeof warn;
|
|
1936
|
-
declare const fancyConsole_warnWithTitle: typeof warnWithTitle;
|
|
1937
|
-
declare namespace fancyConsole {
|
|
1938
|
-
export {
|
|
1939
|
-
fancyConsole_error as error,
|
|
1940
|
-
fancyConsole_errorWithTitle as errorWithTitle,
|
|
1941
|
-
fancyConsole_warn as warn,
|
|
1942
|
-
fancyConsole_warnWithTitle as warnWithTitle,
|
|
1943
|
-
};
|
|
1944
|
-
}
|
|
1945
|
-
|
|
1946
1598
|
/**
|
|
1947
1599
|
* Freezes the given argument, but only in development builds. In production
|
|
1948
1600
|
* builds, this is a no-op for performance reasons.
|
|
1949
1601
|
*/
|
|
1950
1602
|
declare const freeze: typeof Object.freeze;
|
|
1951
1603
|
|
|
1952
|
-
declare type Poller = {
|
|
1953
|
-
start(interval: number): void;
|
|
1954
|
-
restart(interval: number): void;
|
|
1955
|
-
pause(): void;
|
|
1956
|
-
resume(): void;
|
|
1957
|
-
stop(): void;
|
|
1958
|
-
};
|
|
1959
|
-
declare function makePoller(callback: () => void): Poller;
|
|
1960
|
-
|
|
1961
1604
|
declare const brand: unique symbol;
|
|
1962
1605
|
declare type Brand<T, TBrand extends string> = T & {
|
|
1963
1606
|
[brand]: TBrand;
|
|
@@ -2157,15 +1800,15 @@ declare type TreeNode = LsonTreeNode | UserTreeNode;
|
|
|
2157
1800
|
type DevToolsTreeNode_JsonTreeNode = JsonTreeNode;
|
|
2158
1801
|
type DevToolsTreeNode_LiveTreeNode<TName extends `Live${string}` = `Live${string}`> = LiveTreeNode<TName>;
|
|
2159
1802
|
type DevToolsTreeNode_LsonTreeNode = LsonTreeNode;
|
|
2160
|
-
type DevToolsTreeNode_TreeNode = TreeNode;
|
|
2161
1803
|
type DevToolsTreeNode_UserTreeNode = UserTreeNode;
|
|
1804
|
+
type DevToolsTreeNode_TreeNode = TreeNode;
|
|
2162
1805
|
declare namespace DevToolsTreeNode {
|
|
2163
1806
|
export {
|
|
2164
1807
|
DevToolsTreeNode_JsonTreeNode as JsonTreeNode,
|
|
2165
1808
|
DevToolsTreeNode_LiveTreeNode as LiveTreeNode,
|
|
2166
1809
|
DevToolsTreeNode_LsonTreeNode as LsonTreeNode,
|
|
2167
|
-
DevToolsTreeNode_TreeNode as TreeNode,
|
|
2168
1810
|
DevToolsTreeNode_UserTreeNode as UserTreeNode,
|
|
1811
|
+
DevToolsTreeNode_TreeNode as TreeNode,
|
|
2169
1812
|
};
|
|
2170
1813
|
}
|
|
2171
1814
|
|
|
@@ -2265,16 +1908,16 @@ declare type FullClientToPanelMessage = ClientToPanelMessage & {
|
|
|
2265
1908
|
source: "liveblocks-devtools-client";
|
|
2266
1909
|
};
|
|
2267
1910
|
|
|
1911
|
+
type protocol_PanelToClientMessage = PanelToClientMessage;
|
|
2268
1912
|
type protocol_ClientToPanelMessage = ClientToPanelMessage;
|
|
2269
|
-
type protocol_FullClientToPanelMessage = FullClientToPanelMessage;
|
|
2270
1913
|
type protocol_FullPanelToClientMessage = FullPanelToClientMessage;
|
|
2271
|
-
type
|
|
1914
|
+
type protocol_FullClientToPanelMessage = FullClientToPanelMessage;
|
|
2272
1915
|
declare namespace protocol {
|
|
2273
1916
|
export {
|
|
1917
|
+
protocol_PanelToClientMessage as PanelToClientMessage,
|
|
2274
1918
|
protocol_ClientToPanelMessage as ClientToPanelMessage,
|
|
2275
|
-
protocol_FullClientToPanelMessage as FullClientToPanelMessage,
|
|
2276
1919
|
protocol_FullPanelToClientMessage as FullPanelToClientMessage,
|
|
2277
|
-
|
|
1920
|
+
protocol_FullClientToPanelMessage as FullClientToPanelMessage,
|
|
2278
1921
|
};
|
|
2279
1922
|
}
|
|
2280
1923
|
|
|
@@ -2290,4 +1933,4 @@ declare type EnsureJson<T> = [
|
|
|
2290
1933
|
[K in keyof T]: EnsureJson<T[K]>;
|
|
2291
1934
|
};
|
|
2292
1935
|
|
|
2293
|
-
export { AckOp,
|
|
1936
|
+
export { AckOp, BaseAuthResult, BaseUserMeta, BroadcastEventClientMsg, BroadcastOptions, BroadcastedEventServerMsg, Client, ClientMsg, ClientMsgCode, CrdtType, CreateChildOp, CreateListOp, CreateMapOp, CreateObjectOp, CreateOp, CreateRegisterOp, CreateRootObjectOp, CustomAuthenticationResult, Delegates, DeleteCrdtOp, DeleteObjectKeyOp, DevToolsTreeNode as DevTools, protocol as DevToolsMsg, EnsureJson, FetchStorageClientMsg, FetchYDocClientMsg, History, IWebSocket, IWebSocketCloseEvent, IWebSocketEvent, IWebSocketInstance, IWebSocketMessageEvent, IdTuple, Immutable, InitialDocumentStateServerMsg, Json, JsonArray, JsonObject, JsonScalar, LegacyConnectionStatus, LiveList, LiveListUpdate, LiveMap, LiveMapUpdate, LiveNode, LiveObject, LiveObjectUpdate, LiveStructure, LostConnectionEvent, Lson, LsonObject, NodeMap, Op, OpCode, Others, ParentToChildNodeMap, PlainLson, PlainLsonFields, PlainLsonList, PlainLsonMap, PlainLsonObject, RejectedStorageOpServerMsg, Resolve, Room, RoomInitializers, RoomStateServerMsg, SerializedChild, SerializedCrdt, SerializedList, SerializedMap, SerializedObject, SerializedRegister, SerializedRootObject, ServerMsg, ServerMsgCode, SetParentKeyOp, Status, StorageStatus, StorageUpdate, ToImmutable, ToJson, UpdateObjectOp, UpdatePresenceClientMsg, UpdatePresenceServerMsg, UpdateStorageClientMsg, UpdateStorageServerMsg, UpdateYDocClientMsg, User, UserJoinServerMsg, UserLeftServerMsg, WebsocketCloseCodes, asArrayWithLegacyMethods, asPos, assert, assertNever, b64decode, createClient, deprecate, deprecateIf, detectDupes, errorIf, freeze, isChildCrdt, isJsonArray, isJsonObject, isJsonScalar, isPlainObject, isRootCrdt, legacy_patchImmutableObject, lsonToJson, makePosition, nn, patchLiveObjectKey, shallow, throwUsageError, toPlainLson, tryParseJson, withTimeout };
|