@oxyfoo/whymeet-types 0.0.26 → 0.0.28

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.
@@ -16,6 +16,7 @@ export interface Activity {
16
16
  description: string;
17
17
  category: InterestCategoryKey;
18
18
  dateTime: string | null;
19
+ durationMinutes: number | null;
19
20
  locationName: string;
20
21
  latitude: number;
21
22
  longitude: number;
@@ -43,6 +44,7 @@ export interface ActivitySummary {
43
44
  title: string;
44
45
  category: InterestCategoryKey;
45
46
  dateTime: string | null;
47
+ durationMinutes: number | null;
46
48
  locationName: string;
47
49
  participantCount: number;
48
50
  maxParticipants: number | null;
@@ -59,6 +61,9 @@ export interface ActivitySearchFilters {
59
61
  maxDistance?: number;
60
62
  dateFrom?: string;
61
63
  dateTo?: string;
64
+ timeFromMin?: number;
65
+ timeToMin?: number;
66
+ timezoneOffsetMin?: number;
62
67
  query?: string;
63
68
  tags?: string[];
64
69
  }
@@ -218,6 +218,7 @@ export interface WSRequest_CreateActivity {
218
218
  description: string;
219
219
  category: InterestCategoryKey;
220
220
  dateTime?: string;
221
+ durationMinutes?: number | null;
221
222
  locationName: string;
222
223
  latitude: number;
223
224
  longitude: number;
@@ -235,6 +236,7 @@ export interface WSRequest_UpdateActivity {
235
236
  description?: string;
236
237
  category?: InterestCategoryKey;
237
238
  dateTime?: string | null;
239
+ durationMinutes?: number | null;
238
240
  locationName?: string;
239
241
  latitude?: number;
240
242
  longitude?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oxyfoo/whymeet-types",
3
- "version": "0.0.26",
3
+ "version": "0.0.28",
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",