@liveblocks/core 3.15.0-feeds1 → 3.15.0-feeds2
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2670,7 +2670,7 @@ type FetchFeedsClientMsg = {
|
|
|
2670
2670
|
readonly cursor?: string;
|
|
2671
2671
|
readonly since?: number;
|
|
2672
2672
|
readonly limit?: number;
|
|
2673
|
-
readonly metadata?: Record<string,
|
|
2673
|
+
readonly metadata?: Record<string, Json>;
|
|
2674
2674
|
};
|
|
2675
2675
|
type FetchFeedMessagesClientMsg = {
|
|
2676
2676
|
readonly type: ClientMsgCode.FETCH_FEED_MESSAGES;
|
|
@@ -3478,7 +3478,7 @@ type Room<P extends JsonObject = DP, S extends LsonObject = DS, U extends BaseUs
|
|
|
3478
3478
|
cursor?: string;
|
|
3479
3479
|
since?: number;
|
|
3480
3480
|
limit?: number;
|
|
3481
|
-
metadata?: Record<string,
|
|
3481
|
+
metadata?: Record<string, Json>;
|
|
3482
3482
|
}): Promise<{
|
|
3483
3483
|
feeds: Feed<SM>[];
|
|
3484
3484
|
nextCursor?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2670,7 +2670,7 @@ type FetchFeedsClientMsg = {
|
|
|
2670
2670
|
readonly cursor?: string;
|
|
2671
2671
|
readonly since?: number;
|
|
2672
2672
|
readonly limit?: number;
|
|
2673
|
-
readonly metadata?: Record<string,
|
|
2673
|
+
readonly metadata?: Record<string, Json>;
|
|
2674
2674
|
};
|
|
2675
2675
|
type FetchFeedMessagesClientMsg = {
|
|
2676
2676
|
readonly type: ClientMsgCode.FETCH_FEED_MESSAGES;
|
|
@@ -3478,7 +3478,7 @@ type Room<P extends JsonObject = DP, S extends LsonObject = DS, U extends BaseUs
|
|
|
3478
3478
|
cursor?: string;
|
|
3479
3479
|
since?: number;
|
|
3480
3480
|
limit?: number;
|
|
3481
|
-
metadata?: Record<string,
|
|
3481
|
+
metadata?: Record<string, Json>;
|
|
3482
3482
|
}): Promise<{
|
|
3483
3483
|
feeds: Feed<SM>[];
|
|
3484
3484
|
nextCursor?: string;
|