@liveblocks/core 2.12.3-emails1 → 2.13.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 +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2895,10 +2895,12 @@ declare type ClientOptions<U extends BaseUserMeta = DU> = {
|
|
|
2895
2895
|
resolveMentionSuggestions?: (args: ResolveMentionSuggestionsArgs) => OptionalPromise<string[]>;
|
|
2896
2896
|
/**
|
|
2897
2897
|
* A function that returns user info from user IDs.
|
|
2898
|
+
* You should return a list of user objects of the same size, in the same order.
|
|
2898
2899
|
*/
|
|
2899
2900
|
resolveUsers?: (args: ResolveUsersArgs) => OptionalPromise<(U["info"] | undefined)[] | undefined>;
|
|
2900
2901
|
/**
|
|
2901
2902
|
* A function that returns room info from room IDs.
|
|
2903
|
+
* You should return a list of room info objects of the same size, in the same order.
|
|
2902
2904
|
*/
|
|
2903
2905
|
resolveRoomsInfo?: (args: ResolveRoomsInfoArgs) => OptionalPromise<(DRI | undefined)[] | undefined>;
|
|
2904
2906
|
/**
|
|
@@ -3011,6 +3013,7 @@ declare type StringifyCommentBodyOptions<U extends BaseUserMeta = DU> = {
|
|
|
3011
3013
|
separator?: string;
|
|
3012
3014
|
/**
|
|
3013
3015
|
* A function that returns user info from user IDs.
|
|
3016
|
+
* You should return a list of user objects of the same size, in the same order.
|
|
3014
3017
|
*/
|
|
3015
3018
|
resolveUsers?: (args: ResolveUsersArgs) => OptionalPromise<(U["info"] | undefined)[] | undefined>;
|
|
3016
3019
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -2895,10 +2895,12 @@ declare type ClientOptions<U extends BaseUserMeta = DU> = {
|
|
|
2895
2895
|
resolveMentionSuggestions?: (args: ResolveMentionSuggestionsArgs) => OptionalPromise<string[]>;
|
|
2896
2896
|
/**
|
|
2897
2897
|
* A function that returns user info from user IDs.
|
|
2898
|
+
* You should return a list of user objects of the same size, in the same order.
|
|
2898
2899
|
*/
|
|
2899
2900
|
resolveUsers?: (args: ResolveUsersArgs) => OptionalPromise<(U["info"] | undefined)[] | undefined>;
|
|
2900
2901
|
/**
|
|
2901
2902
|
* A function that returns room info from room IDs.
|
|
2903
|
+
* You should return a list of room info objects of the same size, in the same order.
|
|
2902
2904
|
*/
|
|
2903
2905
|
resolveRoomsInfo?: (args: ResolveRoomsInfoArgs) => OptionalPromise<(DRI | undefined)[] | undefined>;
|
|
2904
2906
|
/**
|
|
@@ -3011,6 +3013,7 @@ declare type StringifyCommentBodyOptions<U extends BaseUserMeta = DU> = {
|
|
|
3011
3013
|
separator?: string;
|
|
3012
3014
|
/**
|
|
3013
3015
|
* A function that returns user info from user IDs.
|
|
3016
|
+
* You should return a list of user objects of the same size, in the same order.
|
|
3014
3017
|
*/
|
|
3015
3018
|
resolveUsers?: (args: ResolveUsersArgs) => OptionalPromise<(U["info"] | undefined)[] | undefined>;
|
|
3016
3019
|
};
|