heartraite 1.0.73 → 1.0.75
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/constants/index.d.ts +1 -0
- package/dist/constants/index.js +1 -0
- package/dist/constants/matchmaking.constants.d.ts +2 -0
- package/dist/constants/matchmaking.constants.js +5 -0
- package/dist/enum/index.d.ts +1 -0
- package/dist/enum/index.js +1 -0
- package/dist/enum/matchmaking.enum.d.ts +4 -0
- package/dist/enum/matchmaking.enum.js +8 -0
- package/dist/types/response.types.d.ts +2 -2
- package/package.json +1 -1
- package/src/constants/index.ts +1 -0
- package/src/constants/matchmaking.constants.ts +5 -0
- package/src/enum/index.ts +1 -0
- package/src/enum/matchmaking.enum.ts +4 -0
- package/src/types/response.types.ts +2 -2
package/dist/constants/index.js
CHANGED
package/dist/enum/index.d.ts
CHANGED
package/dist/enum/index.js
CHANGED
|
@@ -26,5 +26,6 @@ __exportStar(require("./gender.enum"), exports);
|
|
|
26
26
|
__exportStar(require("./pls.enum"), exports);
|
|
27
27
|
__exportStar(require("./provider.enum"), exports);
|
|
28
28
|
__exportStar(require("./state.enum"), exports);
|
|
29
|
+
__exportStar(require("./matchmaking.enum"), exports);
|
|
29
30
|
__exportStar(require("./notification.enum"), exports);
|
|
30
31
|
__exportStar(require("./user.enum"), exports);
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MatchmakingVisibility = void 0;
|
|
4
|
+
var MatchmakingVisibility;
|
|
5
|
+
(function (MatchmakingVisibility) {
|
|
6
|
+
MatchmakingVisibility["VISIBLE"] = "visible";
|
|
7
|
+
MatchmakingVisibility["HIDDEN"] = "hidden";
|
|
8
|
+
})(MatchmakingVisibility || (exports.MatchmakingVisibility = MatchmakingVisibility = {}));
|
|
@@ -4,7 +4,7 @@ import { MatchableUser, MatchCheck } from "./matchmaking.types";
|
|
|
4
4
|
import { Message } from "./message.types";
|
|
5
5
|
import { StripeProduct } from "./stripe.types";
|
|
6
6
|
import { User } from "./user.types";
|
|
7
|
-
import {
|
|
7
|
+
import { IncomingLike } from "./like.types";
|
|
8
8
|
import { CA } from "./ca.types";
|
|
9
9
|
import { SelfAwareness } from "./sa.types";
|
|
10
10
|
import { PLSScore } from "./pls.types";
|
|
@@ -39,7 +39,7 @@ export type GetMatchesResponse = UserMatch[];
|
|
|
39
39
|
export type GetMatchableUserResponse = MatchableUser;
|
|
40
40
|
export type GetMatchableUsersResponse = MatchableUser[];
|
|
41
41
|
export type CreateLikeResponse = void;
|
|
42
|
-
export type GetLikesResponse =
|
|
42
|
+
export type GetLikesResponse = IncomingLike[];
|
|
43
43
|
export type HandleLikeSeenResponse = void;
|
|
44
44
|
export type SubmitPLSDemographicsResponse = void;
|
|
45
45
|
export type CreatePLSInputResponse = void;
|
package/package.json
CHANGED
package/src/constants/index.ts
CHANGED
package/src/enum/index.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { MatchableUser, MatchCheck } from "./matchmaking.types";
|
|
|
4
4
|
import { Message } from "./message.types";
|
|
5
5
|
import { StripeProduct } from "./stripe.types";
|
|
6
6
|
import { User } from "./user.types";
|
|
7
|
-
import {
|
|
7
|
+
import { IncomingLike } from "./like.types";
|
|
8
8
|
import { CA } from "./ca.types";
|
|
9
9
|
import { SelfAwareness } from "./sa.types";
|
|
10
10
|
import { PLSScore } from "./pls.types";
|
|
@@ -52,7 +52,7 @@ export type GetMatchableUsersResponse = MatchableUser[];
|
|
|
52
52
|
|
|
53
53
|
// like
|
|
54
54
|
export type CreateLikeResponse = void;
|
|
55
|
-
export type GetLikesResponse =
|
|
55
|
+
export type GetLikesResponse = IncomingLike[];
|
|
56
56
|
export type HandleLikeSeenResponse = void;
|
|
57
57
|
|
|
58
58
|
// pls
|