heartraite 1.0.188 → 1.0.190
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/enum/user.enum.d.ts
CHANGED
package/dist/enum/user.enum.js
CHANGED
|
@@ -4,6 +4,9 @@ exports.UserDeletionType = exports.UserDeletionReason = exports.UserPlan = expor
|
|
|
4
4
|
var UserLanguage;
|
|
5
5
|
(function (UserLanguage) {
|
|
6
6
|
UserLanguage["SWEDISH"] = "sv";
|
|
7
|
+
UserLanguage["NORWEGIAN"] = "no";
|
|
8
|
+
UserLanguage["DANISH"] = "da";
|
|
9
|
+
UserLanguage["FINNISH"] = "fi";
|
|
7
10
|
})(UserLanguage || (exports.UserLanguage = UserLanguage = {}));
|
|
8
11
|
var UserClaim;
|
|
9
12
|
(function (UserClaim) {
|
|
@@ -16,6 +16,10 @@ export type MatchFeedback = {
|
|
|
16
16
|
metEligible: boolean;
|
|
17
17
|
hasSubmittedMet: boolean;
|
|
18
18
|
};
|
|
19
|
+
export type MatchEligibility = {
|
|
20
|
+
canLike: boolean;
|
|
21
|
+
reason?: string;
|
|
22
|
+
};
|
|
19
23
|
export type MatchableUser = {
|
|
20
24
|
userId: string;
|
|
21
25
|
matchId?: string;
|
|
@@ -24,6 +28,7 @@ export type MatchableUser = {
|
|
|
24
28
|
matchStatus: MatchStatus;
|
|
25
29
|
matchAttributes: MatchAttributes;
|
|
26
30
|
matchFeedback?: MatchFeedback;
|
|
31
|
+
matchEligibility?: MatchEligibility;
|
|
27
32
|
};
|
|
28
33
|
export type MatchStatus = {
|
|
29
34
|
isMatch: boolean;
|
package/package.json
CHANGED
package/src/enum/user.enum.ts
CHANGED
|
@@ -20,6 +20,11 @@ export type MatchFeedback = {
|
|
|
20
20
|
hasSubmittedMet: boolean;
|
|
21
21
|
};
|
|
22
22
|
|
|
23
|
+
export type MatchEligibility = {
|
|
24
|
+
canLike: boolean;
|
|
25
|
+
reason?: string;
|
|
26
|
+
};
|
|
27
|
+
|
|
23
28
|
export type MatchableUser = {
|
|
24
29
|
userId: string;
|
|
25
30
|
matchId?: string;
|
|
@@ -28,6 +33,7 @@ export type MatchableUser = {
|
|
|
28
33
|
matchStatus: MatchStatus;
|
|
29
34
|
matchAttributes: MatchAttributes;
|
|
30
35
|
matchFeedback?: MatchFeedback;
|
|
36
|
+
matchEligibility?: MatchEligibility;
|
|
31
37
|
};
|
|
32
38
|
|
|
33
39
|
export type MatchStatus = {
|