@ttt-productions/chat-core 0.4.1 → 0.4.3
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/types.d.ts +2 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Firestore } from "firebase/firestore";
|
|
2
2
|
import type { FirebaseStorage } from "firebase/storage";
|
|
3
|
-
import type {
|
|
3
|
+
import type { TTTMediaOriginEntry } from "@ttt-productions/media-contracts";
|
|
4
4
|
export type ChatAttachmentStatus = "pending" | "processing" | "completed" | "failed" | "rejected";
|
|
5
5
|
export type ChatAttachment = {
|
|
6
6
|
id: string;
|
|
@@ -52,7 +52,7 @@ export type ChatCoreConfig = {
|
|
|
52
52
|
pageSize?: number;
|
|
53
53
|
};
|
|
54
54
|
export type ChatAttachmentConfig = {
|
|
55
|
-
attachmentSpec:
|
|
55
|
+
attachmentSpec: TTTMediaOriginEntry;
|
|
56
56
|
storage: FirebaseStorage;
|
|
57
57
|
/**
|
|
58
58
|
* The current user's auth uid. chat-core builds the canonical
|
package/package.json
CHANGED