@cofondateurauchomage/libs 1.1.60 → 1.1.61
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/build/db.model.d.ts +7 -2
- package/build/db.model.js +1 -0
- package/package.json +1 -1
package/build/db.model.d.ts
CHANGED
|
@@ -6,7 +6,8 @@ export declare enum Collections {
|
|
|
6
6
|
stats = "stats",
|
|
7
7
|
notifications = "notifications",
|
|
8
8
|
prospects = "prospects",
|
|
9
|
-
reactions = "reactions"
|
|
9
|
+
reactions = "reactions",
|
|
10
|
+
visits = "visits"
|
|
10
11
|
}
|
|
11
12
|
export type TSkill = "Business" | "Design" | "Marketing" | "Produit" | "Tech";
|
|
12
13
|
export type TPlan = "free" | "pro" | "premium";
|
|
@@ -78,7 +79,7 @@ export interface INewsletter {
|
|
|
78
79
|
export interface IStatsAssociation {
|
|
79
80
|
liste: string[];
|
|
80
81
|
}
|
|
81
|
-
export type TNotificationType = "match" | "like" | "new_profil"
|
|
82
|
+
export type TNotificationType = "match" | "like" | "new_profil";
|
|
82
83
|
export interface INotification {
|
|
83
84
|
type: TNotificationType;
|
|
84
85
|
uid: string;
|
|
@@ -98,3 +99,7 @@ export interface IReaction {
|
|
|
98
99
|
status: IReactionStatus;
|
|
99
100
|
createdAt: number;
|
|
100
101
|
}
|
|
102
|
+
export interface IVisit {
|
|
103
|
+
uid: string;
|
|
104
|
+
visits: number;
|
|
105
|
+
}
|
package/build/db.model.js
CHANGED