@oxyfoo/whymeet-types 0.0.6 → 0.0.8
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.
|
@@ -32,6 +32,7 @@ export interface Activity {
|
|
|
32
32
|
isParticipant: boolean;
|
|
33
33
|
isHost: boolean;
|
|
34
34
|
targetGenders: Gender[];
|
|
35
|
+
targetAgeRange: [number, number];
|
|
35
36
|
distance?: string;
|
|
36
37
|
distanceKm?: number;
|
|
37
38
|
createdAt: string;
|
|
@@ -48,6 +49,7 @@ export interface ActivitySummary {
|
|
|
48
49
|
photoKey: string | null;
|
|
49
50
|
hostName: string;
|
|
50
51
|
targetGenders: Gender[];
|
|
52
|
+
targetAgeRange: [number, number];
|
|
51
53
|
distance?: string;
|
|
52
54
|
distanceKm?: number;
|
|
53
55
|
}
|
package/dist/Models/Profile.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export type SocialVibe = 'reserved' | 'calm' | 'balanced' | 'outgoing' | 'very_s
|
|
|
6
6
|
export declare const SOCIAL_VIBES: readonly SocialVibe[];
|
|
7
7
|
export interface Profile extends User {
|
|
8
8
|
bio: string;
|
|
9
|
+
birthDateLastChangedAt: string | null;
|
|
9
10
|
interests: Tag[];
|
|
10
11
|
skills: Tag[];
|
|
11
12
|
socialVibe: SocialVibe;
|
package/dist/WS/Request.d.ts
CHANGED
|
@@ -219,6 +219,7 @@ export interface WSRequest_CreateActivity {
|
|
|
219
219
|
longitude?: number;
|
|
220
220
|
maxParticipants?: number;
|
|
221
221
|
targetGenders?: Gender[];
|
|
222
|
+
targetAgeRange?: [number, number];
|
|
222
223
|
};
|
|
223
224
|
}
|
|
224
225
|
export interface WSRequest_UpdateActivity {
|
|
@@ -235,6 +236,7 @@ export interface WSRequest_UpdateActivity {
|
|
|
235
236
|
longitude?: number | null;
|
|
236
237
|
maxParticipants?: number | null;
|
|
237
238
|
targetGenders?: Gender[];
|
|
239
|
+
targetAgeRange?: [number, number];
|
|
238
240
|
};
|
|
239
241
|
};
|
|
240
242
|
}
|