hububb-models 1.0.38 → 1.0.39

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hububb-models",
3
- "version": "1.0.38",
3
+ "version": "1.0.39",
4
4
  "description": "Models for Hububb application",
5
5
  "main": "index.js",
6
6
  "types": "./src/index.d.ts",
@@ -1,6 +1,6 @@
1
1
  import { Timestamp } from '@firebase/firestore-types';
2
2
  import { ChatMember } from './thread';
3
- declare type SeenBy = Record<string, number>;
3
+ declare type SeenBy = Record<string, Timestamp>;
4
4
  export interface ChatMessage {
5
5
  id: string;
6
6
  createdAt: Timestamp;
@@ -1,7 +1,7 @@
1
1
  import { Timestamp } from '@firebase/firestore-types';
2
2
  import { ChatMember } from './thread';
3
3
 
4
- declare type SeenBy = Record<string, number>;
4
+ declare type SeenBy = Record<string, Timestamp>;
5
5
 
6
6
  export interface ChatMessage {
7
7
  id: string;