@oxyfoo/whymeet-types 0.0.6 → 0.0.7

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
  }
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oxyfoo/whymeet-types",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "WhyMeet Types - Shared TypeScript types for the WhyMeet project.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",