heartraite 1.0.156 → 1.0.157
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CAStatus, Gender } from "../enum";
|
|
1
|
+
import { CAStatus, Gender, MatchmakingMode } from "../enum";
|
|
2
2
|
import { CompatibilitySummary } from "./matchmaking.types";
|
|
3
3
|
type UserId = string;
|
|
4
4
|
export declare enum EventAccess {
|
|
@@ -34,6 +34,7 @@ export type EventParticipation = {
|
|
|
34
34
|
interestedIn: Gender[];
|
|
35
35
|
role: "attendee" | "host" | "admin";
|
|
36
36
|
status: "confirmed" | "pending" | "cancelled";
|
|
37
|
+
mode: MatchmakingMode;
|
|
37
38
|
};
|
|
38
39
|
export type FullParticipant = EventParticipation & {
|
|
39
40
|
firstName: string;
|
package/package.json
CHANGED
package/src/types/event.types.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CAStatus, Gender } from "../enum";
|
|
1
|
+
import { CAStatus, Gender, MatchmakingMode } from "../enum";
|
|
2
2
|
import { CompatibilitySummary } from "./matchmaking.types";
|
|
3
3
|
|
|
4
4
|
type UserId = string;
|
|
@@ -38,6 +38,7 @@ export type EventParticipation = {
|
|
|
38
38
|
interestedIn: Gender[];
|
|
39
39
|
role: "attendee" | "host" | "admin";
|
|
40
40
|
status: "confirmed" | "pending" | "cancelled";
|
|
41
|
+
mode: MatchmakingMode;
|
|
41
42
|
};
|
|
42
43
|
|
|
43
44
|
export type FullParticipant = EventParticipation & {
|