RubyGems
npm
PyPI
Organizations
Log in
Sign up
npm
hububb-models
Versions diffs
1.0.22 → 1.0.23
hububb-models 1.0.22 → 1.0.23
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (5)
hide
show
package/package.json
+1
-1
package/src/models/thread/message.d.ts
+1
-0
package/src/models/thread/message.ts
+1
-0
package/src/models/thread/thread.d.ts
+1
-0
package/src/models/thread/thread.ts
+1
-0
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "hububb-models",
3
-
"version": "1.0.
22
",
3
+
"version": "1.0.
23
",
4
4
"description": "Models for Hububb application",
5
5
"main": "index.js",
6
6
"types": "./src/index.d.ts",
package/src/models/thread/message.d.ts
CHANGED
Viewed
@@ -1,6 +1,7 @@
1
1
import { Timestamp } from "@firebase/firestore-types";
2
2
3
3
export interface Message {
4
+
id?:string,
4
5
attachments?:any,
5
6
authorId?:string,
6
7
body?:string,
package/src/models/thread/message.ts
CHANGED
Viewed
@@ -1,6 +1,7 @@
1
1
import { Timestamp } from "@firebase/firestore-types";
2
2
3
3
export interface Message {
4
+
id?:string,
4
5
attachments?:any,
5
6
authorId?:string,
6
7
body?:string,
package/src/models/thread/thread.d.ts
CHANGED
Viewed
@@ -1,6 +1,7 @@
1
1
import { Timestamp } from "@firebase/firestore-types"
2
2
3
3
export interface Thread {
4
+
id?:string,
4
5
lastMessage?:LastMessage,
5
6
participantIds?:string[],
6
7
type: "ONE_TO_ONE",
package/src/models/thread/thread.ts
CHANGED
Viewed
@@ -1,6 +1,7 @@
1
1
import { Timestamp } from "@firebase/firestore-types"
2
2
3
3
export interface Thread {
4
+
id?:string,
4
5
lastMessage?:LastMessage,
5
6
participantIds?:string[],
6
7
type: "ONE_TO_ONE",