@ttt-productions/chat-core 0.4.2 → 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.
Files changed (2) hide show
  1. package/dist/types.d.ts +2 -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 { MediaProcessingSpec } from "@ttt-productions/media-contracts";
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: MediaProcessingSpec;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttt-productions/chat-core",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "Shared Firestore chat core (realtime newest window + infinite older pagination) for TTT Productions apps",
5
5
  "repository": {
6
6
  "type": "git",