wedance-shared 1.0.72 → 1.0.73
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/festivals/user.d.ts +15 -15
- package/package.json +1 -1
|
@@ -34,21 +34,6 @@ export interface UserAttachment {
|
|
|
34
34
|
uploadedAt: Timestamp;
|
|
35
35
|
type: "image" | "pdf";
|
|
36
36
|
}
|
|
37
|
-
export type UserToUserRelation = {
|
|
38
|
-
id: string;
|
|
39
|
-
followerId: string;
|
|
40
|
-
followingId: string;
|
|
41
|
-
createdAt: string;
|
|
42
|
-
updatedAt: string;
|
|
43
|
-
active: boolean;
|
|
44
|
-
snapshotUpdatedAt: string;
|
|
45
|
-
followingDisplayName: string;
|
|
46
|
-
followingAvatar: string;
|
|
47
|
-
followingHandle: string;
|
|
48
|
-
followerDisplayName: string;
|
|
49
|
-
followerAvatar: string;
|
|
50
|
-
followerHandle: string;
|
|
51
|
-
};
|
|
52
37
|
export type UserHandle = {
|
|
53
38
|
userId: string;
|
|
54
39
|
handle: string;
|
|
@@ -56,3 +41,18 @@ export type UserHandle = {
|
|
|
56
41
|
updatedAt: string;
|
|
57
42
|
active: boolean;
|
|
58
43
|
};
|
|
44
|
+
export type UserToEventRelation = {
|
|
45
|
+
id: string;
|
|
46
|
+
userId: string;
|
|
47
|
+
eventId: string;
|
|
48
|
+
type: "going" | "saved";
|
|
49
|
+
createdAt: string;
|
|
50
|
+
deletedAt?: string;
|
|
51
|
+
};
|
|
52
|
+
export type UserToUserRelation = {
|
|
53
|
+
id: string;
|
|
54
|
+
followerId: string;
|
|
55
|
+
followingId: string;
|
|
56
|
+
createdAt: string;
|
|
57
|
+
deletedAt?: string;
|
|
58
|
+
};
|
package/package.json
CHANGED