@myclub_se/data-access 2.2.2 → 2.3.0

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.
Files changed (47) hide show
  1. package/esm2020/lib/api-models/api-booking-calendar-slot-session.mjs +1 -1
  2. package/esm2020/lib/api-models/api-booking-calendar-slot.mjs +1 -1
  3. package/esm2020/lib/api-models/api-booking-settings.mjs +2 -0
  4. package/esm2020/lib/api-models/api-member-public-form-field-option.mjs +2 -0
  5. package/esm2020/lib/api-models/api-member-public-form-field.mjs +2 -0
  6. package/esm2020/lib/api-models/api-member-public-form.mjs +1 -1
  7. package/esm2020/lib/api-models/api-member-team.mjs +1 -1
  8. package/esm2020/lib/api-models/index.mjs +4 -1
  9. package/esm2020/lib/models/booking-calendar-slot-session.mjs +5 -3
  10. package/esm2020/lib/models/booking-calendar-slot.mjs +4 -2
  11. package/esm2020/lib/models/booking-settings.mjs +22 -0
  12. package/esm2020/lib/models/index.mjs +4 -1
  13. package/esm2020/lib/models/member-public-form-field-option.mjs +9 -0
  14. package/esm2020/lib/models/member-public-form-field.mjs +16 -0
  15. package/esm2020/lib/models/member-public-form.mjs +6 -2
  16. package/esm2020/lib/models/member-team.mjs +3 -2
  17. package/esm2020/lib/services/booking-calendar.service.mjs +22 -2
  18. package/esm2020/lib/services/factories/booking-calendar-factory.mjs +2 -2
  19. package/esm2020/lib/services/factories/booking-calendar-slot-factory.mjs +2 -2
  20. package/esm2020/lib/services/factories/booking-calendar-slot-session-factory.mjs +2 -2
  21. package/esm2020/lib/services/factories/booking-settings-factory.mjs +3 -0
  22. package/esm2020/lib/services/factories/member-public-form-factory.mjs +13 -3
  23. package/esm2020/lib/services/factories/member-team-factory.mjs +2 -2
  24. package/fesm2015/myclub_se-data-access.mjs +97 -11
  25. package/fesm2015/myclub_se-data-access.mjs.map +1 -1
  26. package/fesm2020/myclub_se-data-access.mjs +97 -11
  27. package/fesm2020/myclub_se-data-access.mjs.map +1 -1
  28. package/lib/api-models/api-booking-calendar-slot-session.d.ts +1 -0
  29. package/lib/api-models/api-booking-calendar-slot.d.ts +1 -0
  30. package/lib/api-models/api-booking-settings.d.ts +8 -0
  31. package/lib/api-models/api-member-public-form-field-option.d.ts +6 -0
  32. package/lib/api-models/api-member-public-form-field.d.ts +14 -0
  33. package/lib/api-models/api-member-public-form.d.ts +5 -0
  34. package/lib/api-models/api-member-team.d.ts +1 -0
  35. package/lib/api-models/index.d.ts +3 -0
  36. package/lib/models/booking-calendar-slot-session.d.ts +3 -1
  37. package/lib/models/booking-calendar-slot.d.ts +3 -1
  38. package/lib/models/booking-settings.d.ts +18 -0
  39. package/lib/models/index.d.ts +3 -0
  40. package/lib/models/member-public-form-field-option.d.ts +7 -0
  41. package/lib/models/member-public-form-field.d.ts +15 -0
  42. package/lib/models/member-public-form.d.ts +6 -1
  43. package/lib/models/member-team.d.ts +2 -1
  44. package/lib/services/booking-calendar.service.d.ts +4 -2
  45. package/lib/services/factories/booking-calendar-factory.d.ts +2 -2
  46. package/lib/services/factories/booking-settings-factory.d.ts +3 -0
  47. package/package.json +1 -1
@@ -258,7 +258,7 @@ class BookingCalendar {
258
258
  }
259
259
 
260
260
  class BookingCalendarSlot {
261
- constructor(id, calendar_id, location_id, color, day, end_time, group_id, location_name, number_of_available_sessions, sessions, open_sessions, start_time, type, repeat, update_repeating, reserved_time_enabled, repeat_num, repeat_to_day, repeat_type, reserved_time, reserved_time_type, reserved_time_position) {
261
+ constructor(id, calendar_id, location_id, color, day, end_time, group_id, location_name, number_of_available_sessions, sessions, open_sessions, start_time, type, repeat, update_repeating, reserved_time_enabled, available_location_zones, repeat_num, repeat_to_day, repeat_type, reserved_time, reserved_time_type, reserved_time_position) {
262
262
  this.id = id;
263
263
  this.calendar_id = calendar_id;
264
264
  this.location_id = location_id;
@@ -275,6 +275,7 @@ class BookingCalendarSlot {
275
275
  this.repeat = repeat;
276
276
  this.update_repeating = update_repeating;
277
277
  this.reserved_time_enabled = reserved_time_enabled;
278
+ this.available_location_zones = available_location_zones;
278
279
  this.repeat_num = repeat_num;
279
280
  this.repeat_to_day = repeat_to_day;
280
281
  this.repeat_type = repeat_type;
@@ -302,12 +303,13 @@ class BookingCalendarSlot {
302
303
  reserved_time: new FormControl((slot === null || slot === void 0 ? void 0 : slot.reserved_time) || '00:00'),
303
304
  reserved_time_type: new FormControl((slot === null || slot === void 0 ? void 0 : slot.reserved_time_type) || ''),
304
305
  reserved_time_position: new FormControl((slot === null || slot === void 0 ? void 0 : slot.reserved_time_position) || ''),
306
+ available_location_zones: new FormControl((slot === null || slot === void 0 ? void 0 : slot.available_location_zones) || 1, [Validators.min(1), Validators.required]),
305
307
  });
306
308
  }
307
309
  }
308
310
 
309
311
  class BookingCalendarSlotSession {
310
- constructor(id, section_id, slot_id, team_id, end_time, section_name, start_time, team_name, is_overbooked, type) {
312
+ constructor(id, section_id, slot_id, team_id, end_time, section_name, start_time, team_name, is_overbooked, type, location_zones_taken) {
311
313
  this.id = id;
312
314
  this.section_id = section_id;
313
315
  this.slot_id = slot_id;
@@ -318,6 +320,7 @@ class BookingCalendarSlotSession {
318
320
  this.team_name = team_name;
319
321
  this.is_overbooked = is_overbooked;
320
322
  this.type = type;
323
+ this.location_zones_taken = location_zones_taken;
321
324
  }
322
325
  static asFormGroup(session) {
323
326
  return new FormGroup({
@@ -330,7 +333,29 @@ class BookingCalendarSlotSession {
330
333
  start_time: new FormControl((session === null || session === void 0 ? void 0 : session.start_time) || '', Validators.required),
331
334
  team_name: new FormControl((session === null || session === void 0 ? void 0 : session.team_name) || ''),
332
335
  is_overbooked: new FormControl((session === null || session === void 0 ? void 0 : session.is_overbooked) || false),
333
- type: new FormControl((session === null || session === void 0 ? void 0 : session.type) || '')
336
+ type: new FormControl((session === null || session === void 0 ? void 0 : session.type) || ''),
337
+ location_zones_taken: new FormControl((session === null || session === void 0 ? void 0 : session.location_zones_taken) || 1, [Validators.min(1), Validators.required])
338
+ });
339
+ }
340
+ }
341
+
342
+ class BookingSettings {
343
+ constructor(id, club_id, calendar_step, calendar_min_time, calendar_max_time, require_team_on_closed_session) {
344
+ this.id = id;
345
+ this.club_id = club_id;
346
+ this.calendar_step = calendar_step;
347
+ this.calendar_min_time = calendar_min_time;
348
+ this.calendar_max_time = calendar_max_time;
349
+ this.require_team_on_closed_session = require_team_on_closed_session;
350
+ }
351
+ static asFormGroup(settings) {
352
+ return new FormGroup({
353
+ id: new FormControl((settings === null || settings === void 0 ? void 0 : settings.id) || ''),
354
+ club_id: new FormControl((settings === null || settings === void 0 ? void 0 : settings.club_id) || ''),
355
+ calendar_step: new FormControl((settings === null || settings === void 0 ? void 0 : settings.calendar_step) || '01:00:00', [Validators.required]),
356
+ calendar_min_time: new FormControl((settings === null || settings === void 0 ? void 0 : settings.calendar_min_time) || '00:00:00', [Validators.required]),
357
+ calendar_max_time: new FormControl((settings === null || settings === void 0 ? void 0 : settings.calendar_max_time) || '23:00:00', [Validators.required]),
358
+ require_team_on_closed_session: new FormControl((settings === null || settings === void 0 ? void 0 : settings.require_team_on_closed_session) || false),
334
359
  });
335
360
  }
336
361
  }
@@ -1037,22 +1062,52 @@ class MemberActivityInvite {
1037
1062
  }
1038
1063
 
1039
1064
  class MemberPublicForm {
1040
- constructor(id, active_form, active_to, userToken, name, url) {
1065
+ constructor(id, active_form, active_to, userToken, comment, fields, max_registered_in_form_total, name, num_registered, url) {
1041
1066
  this.id = id;
1042
1067
  this.active_form = active_form;
1043
1068
  this.active_to = active_to;
1044
1069
  this.userToken = userToken;
1070
+ this.comment = comment;
1071
+ this.fields = fields;
1072
+ this.max_registered_in_form_total = max_registered_in_form_total;
1045
1073
  this.name = name;
1074
+ this.num_registered = num_registered;
1046
1075
  this.url = url;
1047
1076
  }
1048
1077
  }
1049
1078
 
1079
+ class MemberPublicFormField {
1080
+ constructor(all_choice_options, divider, familys, field_id, field_name, field_order, header, help_text, required, type, value) {
1081
+ this.all_choice_options = all_choice_options;
1082
+ this.divider = divider;
1083
+ this.familys = familys;
1084
+ this.field_id = field_id;
1085
+ this.field_name = field_name;
1086
+ this.field_order = field_order;
1087
+ this.header = header;
1088
+ this.help_text = help_text;
1089
+ this.required = required;
1090
+ this.type = type;
1091
+ this.value = value;
1092
+ }
1093
+ }
1094
+
1095
+ class MemberPublicFormFieldOption {
1096
+ constructor(id, name, selected, defaultValue) {
1097
+ this.id = id;
1098
+ this.name = name;
1099
+ this.selected = selected;
1100
+ this.defaultValue = defaultValue;
1101
+ }
1102
+ }
1103
+
1050
1104
  class MemberTeam {
1051
- constructor(club, section, id, email, name, phone, section_name) {
1105
+ constructor(club, section, id, email, has_extra_members, name, phone, section_name) {
1052
1106
  this.club = club;
1053
1107
  this.section = section;
1054
1108
  this.id = id;
1055
1109
  this.email = email;
1110
+ this.has_extra_members = has_extra_members;
1056
1111
  this.name = name;
1057
1112
  this.phone = phone;
1058
1113
  this.section_name = section_name;
@@ -1398,11 +1453,21 @@ const memberInvoiceRowFactory = (apiMemberInvoiceRow) => new MemberInvoiceRow(ap
1398
1453
 
1399
1454
  const memberInvoiceFactory = (apiMemberInvoice) => new MemberInvoice(apiMemberInvoice.id, apiMemberInvoice.amount, apiMemberInvoice.amount_paid, apiMemberInvoice.balance, apiMemberInvoice.club_bill_id, apiMemberInvoice.club_name, apiMemberInvoice.credit_card ? creditCardFactory(apiMemberInvoice.credit_card) : null, apiMemberInvoice.date_paid, apiMemberInvoice.due_date, apiMemberInvoice.giro ? giroFactory(apiMemberInvoice.giro) : null, apiMemberInvoice.invoice_rows.map((row) => memberInvoiceRowFactory(row)), apiMemberInvoice.invoice_text, apiMemberInvoice.is_paid, apiMemberInvoice.member_id, apiMemberInvoice.payee, apiMemberInvoice.payment_url, apiMemberInvoice.reference, apiMemberInvoice.swish ? swishFactory(apiMemberInvoice.swish) : null, apiMemberInvoice.zimpler ? zimplerFactory(apiMemberInvoice.zimpler) : null);
1400
1455
 
1401
- const memberPublicFormFactory = (apiMemberPublicForm) => new MemberPublicForm(apiMemberPublicForm.id, apiMemberPublicForm.active_from, apiMemberPublicForm.active_to, apiMemberPublicForm.user_token, apiMemberPublicForm.name, apiMemberPublicForm.url);
1456
+ const memberPublicFormFactory = (apiMemberPublicForm) => {
1457
+ const fields = new Map();
1458
+ if (apiMemberPublicForm.fields) {
1459
+ Object.entries(apiMemberPublicForm.fields)
1460
+ .forEach(([key, field]) => {
1461
+ fields.set(key, new MemberPublicFormField(field.all_choice_options && field.all_choice_options.length ?
1462
+ field.all_choice_options.map((option) => new MemberPublicFormFieldOption(option.id, option.name, option.selected, option.default)) : [], field.divider, field.familys, field.field_id, field.field_name, field.field_order, field.header, field.help_text, field.required, field.type, field.value));
1463
+ });
1464
+ }
1465
+ return new MemberPublicForm(apiMemberPublicForm.id, apiMemberPublicForm.active_from, apiMemberPublicForm.active_to, apiMemberPublicForm.user_token, apiMemberPublicForm.comment, fields, apiMemberPublicForm.max_registered_in_form_total, apiMemberPublicForm.name, apiMemberPublicForm.num_registered, apiMemberPublicForm.url);
1466
+ };
1402
1467
 
1403
1468
  const sectionFactory = (apiSection) => new Section(apiSection.id, apiSection.name);
1404
1469
 
1405
- const memberTeamFactory = (apiMemberTeam) => new MemberTeam(clubFactory(apiMemberTeam.club), apiMemberTeam.section ? sectionFactory(apiMemberTeam.section) : null, apiMemberTeam.id, apiMemberTeam.email, apiMemberTeam.name, apiMemberTeam.phone, apiMemberTeam.section_name);
1470
+ const memberTeamFactory = (apiMemberTeam) => new MemberTeam(clubFactory(apiMemberTeam.club), apiMemberTeam.section ? sectionFactory(apiMemberTeam.section) : null, apiMemberTeam.id, apiMemberTeam.email, apiMemberTeam.has_extra_members, apiMemberTeam.name, apiMemberTeam.phone, apiMemberTeam.section_name);
1406
1471
 
1407
1472
  const memberTeamThroughFactory = (apiMemberTeamThrough) => new MemberTeamThrough(apiMemberTeamThrough.id, apiMemberTeamThrough.created, apiMemberTeamThrough.date_hidden, apiMemberTeamThrough.image, apiMemberTeamThrough.leader, memberFactory(apiMemberTeamThrough.member), apiMemberTeamThrough.role_id, apiMemberTeamThrough.show_on_web, apiMemberTeamThrough.updated);
1408
1473
 
@@ -1735,9 +1800,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
1735
1800
 
1736
1801
  const bookingCalendarFactory = (apiBookingCalendar) => new BookingCalendar(apiBookingCalendar.id, apiBookingCalendar.club_id, apiBookingCalendar.section_id, apiBookingCalendar.team_id, apiBookingCalendar.club_name, apiBookingCalendar.color, apiBookingCalendar.name, apiBookingCalendar.section_name, apiBookingCalendar.team_name);
1737
1802
 
1738
- const bookingCalendarSlotSessionFactory = (apiBookingSlotSession) => new BookingCalendarSlotSession(apiBookingSlotSession.id, apiBookingSlotSession.section_id, apiBookingSlotSession.slot_id, apiBookingSlotSession.team_id, apiBookingSlotSession.end_time, apiBookingSlotSession.section_name, apiBookingSlotSession.start_time, apiBookingSlotSession.team_name, apiBookingSlotSession.is_overbooked, apiBookingSlotSession.type);
1803
+ const bookingCalendarSlotSessionFactory = (apiBookingSlotSession) => new BookingCalendarSlotSession(apiBookingSlotSession.id, apiBookingSlotSession.section_id, apiBookingSlotSession.slot_id, apiBookingSlotSession.team_id, apiBookingSlotSession.end_time, apiBookingSlotSession.section_name, apiBookingSlotSession.start_time, apiBookingSlotSession.team_name, apiBookingSlotSession.is_overbooked, apiBookingSlotSession.type, apiBookingSlotSession.location_zones_taken);
1804
+
1805
+ const bookingCalendarSlotFactory = (apiBookingSlot) => new BookingCalendarSlot(apiBookingSlot.id, apiBookingSlot.calendar_id, apiBookingSlot.location_id, apiBookingSlot.color, apiBookingSlot.day, apiBookingSlot.end_time, apiBookingSlot.group_id, apiBookingSlot.location_name, apiBookingSlot.number_of_available_sessions, apiBookingSlot.sessions && apiBookingSlot.sessions.length ? apiBookingSlot.sessions.map((apiBookingSlotSession) => bookingCalendarSlotSessionFactory(apiBookingSlotSession)) : [], apiBookingSlot.open_sessions && apiBookingSlot.open_sessions.length ? apiBookingSlot.open_sessions.map((apiBookingSlotSession) => bookingCalendarSlotSessionFactory(apiBookingSlotSession)) : [], apiBookingSlot.start_time, apiBookingSlot.type, 'none', false, false, apiBookingSlot.available_location_zones, 6, format(new Date(), 'yyyy-MM-dd'), 'repeat_until', apiBookingSlot.reserved_time, apiBookingSlot.reserved_time_type, apiBookingSlot.reserved_time_position);
1739
1806
 
1740
- const bookingCalendarSlotFactory = (apiBookingSlot) => new BookingCalendarSlot(apiBookingSlot.id, apiBookingSlot.calendar_id, apiBookingSlot.location_id, apiBookingSlot.color, apiBookingSlot.day, apiBookingSlot.end_time, apiBookingSlot.group_id, apiBookingSlot.location_name, apiBookingSlot.number_of_available_sessions, apiBookingSlot.sessions && apiBookingSlot.sessions.length ? apiBookingSlot.sessions.map((apiBookingSlotSession) => bookingCalendarSlotSessionFactory(apiBookingSlotSession)) : [], apiBookingSlot.open_sessions && apiBookingSlot.open_sessions.length ? apiBookingSlot.open_sessions.map((apiBookingSlotSession) => bookingCalendarSlotSessionFactory(apiBookingSlotSession)) : [], apiBookingSlot.start_time, apiBookingSlot.type, 'none', false, false, 6, format(new Date(), 'yyyy-MM-dd'), 'repeat_until', apiBookingSlot.reserved_time, apiBookingSlot.reserved_time_type, apiBookingSlot.reserved_time_position);
1807
+ const bookingSettingsFactory = (apiBookingSettings) => new BookingSettings(apiBookingSettings.id, apiBookingSettings.club_id, apiBookingSettings.calendar_step, apiBookingSettings.calendar_min_time, apiBookingSettings.calendar_max_time, apiBookingSettings.require_team_on_closed_session);
1741
1808
 
1742
1809
  const CLUB_BOOKING_CALENDARS_PATH = ':clubId/activities/calendars/';
1743
1810
  const CLUB_BOOKING_CALENDAR_PATH = ':clubId/activities/calendars/:id/';
@@ -1746,6 +1813,7 @@ const CLUB_BOOKING_CALENDAR_SLOT_PATH = ':clubId/activities/slots/:id/';
1746
1813
  const CLUB_BOOKING_CALENDAR_REPEATABLE_SLOT_PATH = ':clubId/activities/slots/:id/all/';
1747
1814
  const CLUB_BOOKING_CALENDAR_SLOT_SESSIONS_PATH = ':clubId/activities/sessions/';
1748
1815
  const CLUB_BOOKING_CALENDAR_SLOT_SESSION_PATH = ':clubId/activities/sessions/:id/';
1816
+ const CLUB_BOOKING_SETTINGS_PATH = ':clubId/activities/booking-settings/';
1749
1817
  class BookingCalendarService {
1750
1818
  constructor(apiService) {
1751
1819
  this.apiService = apiService;
@@ -1795,7 +1863,7 @@ class BookingCalendarService {
1795
1863
  clubId,
1796
1864
  }, slot);
1797
1865
  }
1798
- getClubBookingCalendarSlots(clubId, startDate = null, endDate = null, calendarIds = null, locationIds = null) {
1866
+ getClubBookingCalendarSlots(clubId, startDate = null, endDate = null, calendarIds = null, locationIds = null, teamIds = null, hasOpenSessions = null) {
1799
1867
  const params = { limit: 'null' };
1800
1868
  if (startDate) {
1801
1869
  params['day__gte'] = startDate;
@@ -1809,6 +1877,12 @@ class BookingCalendarService {
1809
1877
  if (locationIds && locationIds.length) {
1810
1878
  params['location_id'] = locationIds.join(',');
1811
1879
  }
1880
+ if (teamIds && teamIds.length) {
1881
+ params['team_id'] = teamIds.join(',');
1882
+ }
1883
+ if (typeof hasOpenSessions === 'boolean') {
1884
+ params['has_open_sessions'] = String(hasOpenSessions);
1885
+ }
1812
1886
  return this.apiService
1813
1887
  .getCollection(bookingCalendarSlotFactory, Role.ClubAdmin, CLUB_BOOKING_CALENDAR_SLOTS_PATH, { clubId }, {
1814
1888
  params
@@ -1879,6 +1953,18 @@ class BookingCalendarService {
1879
1953
  id
1880
1954
  });
1881
1955
  }
1956
+ // endregion
1957
+ // region Booking Setting
1958
+ getClubBookingSettings(clubId) {
1959
+ return this.apiService
1960
+ .getResource(bookingSettingsFactory, Role.ClubAdmin, CLUB_BOOKING_SETTINGS_PATH, { clubId });
1961
+ }
1962
+ updateClubBookingSettings(clubId, bookingSettings) {
1963
+ return this.apiService
1964
+ .updateResource(bookingSettingsFactory, Role.ClubAdmin, CLUB_BOOKING_SETTINGS_PATH, {
1965
+ clubId,
1966
+ }, bookingSettings);
1967
+ }
1882
1968
  }
1883
1969
  BookingCalendarService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.11", ngImport: i0, type: BookingCalendarService, deps: [{ token: ApiService }], target: i0.ɵɵFactoryTarget.Injectable });
1884
1970
  BookingCalendarService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.11", ngImport: i0, type: BookingCalendarService, providedIn: 'root' });
@@ -2940,5 +3026,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
2940
3026
  * Generated bundle index. Do not edit.
2941
3027
  */
2942
3028
 
2943
- export { APP, Activity, ActivityExtraMember, ActivityInvite, ActivityLocation, ActivityLocationGroup, ActivityService, ActivitySettings, ActivityType, Auth, AuthMember, AuthSection, AuthService, AuthTeam, AuthTeamSection, AuthenticatedGuard, Authentication, AuthenticationInterceptor, AuthenticationService, BookingCalendar, BookingCalendarService, BookingCalendarSlot, BookingCalendarSlotSession, Calendar, CalendarEvent, Card, CardDeal, CardLogo, CardLogoUrls, CardMemberTicket, CardTheme, CardTicket, CardTicketLocation, Club, ClubImage, ClubSection, ClubService, Collection, ConstantService, Contact, CreditCard, DataAccessModule, Directory, Email, EmailService, Event, ExternalLink, ExternalLinkService, FileObject, FileService, GeneralImage, Giro, HandleGrantTokenGuard, HomeTeam, ImageUrls, InvoiceService, Member, MemberActivityInvite, MemberAttribute, MemberCard, MemberCardService, MemberContact, MemberFee, MemberFunction, MemberInvoice, MemberInvoiceRow, MemberPublicForm, MemberPublicFormService, MemberService, MemberTeam, MemberTeamThrough, MemberValidationSettings, News, NewsService, Partner, PaymentAttempt, PaymentAttemptService, Role, SearchClub, SearchMember, SearchMemberCard, SearchMemberInvoice, SearchTeam, Section, SectionService, Swish, SwishQrCode, TeamService, Token, TokenService, USER_NOTIFICATIONS_PATH, UnpaidMemberInvoice, User, UserNotification, UserNotificationService, UserService, Zimpler };
3029
+ export { APP, Activity, ActivityExtraMember, ActivityInvite, ActivityLocation, ActivityLocationGroup, ActivityService, ActivitySettings, ActivityType, Auth, AuthMember, AuthSection, AuthService, AuthTeam, AuthTeamSection, AuthenticatedGuard, Authentication, AuthenticationInterceptor, AuthenticationService, BookingCalendar, BookingCalendarService, BookingCalendarSlot, BookingCalendarSlotSession, BookingSettings, Calendar, CalendarEvent, Card, CardDeal, CardLogo, CardLogoUrls, CardMemberTicket, CardTheme, CardTicket, CardTicketLocation, Club, ClubImage, ClubSection, ClubService, Collection, ConstantService, Contact, CreditCard, DataAccessModule, Directory, Email, EmailService, Event, ExternalLink, ExternalLinkService, FileObject, FileService, GeneralImage, Giro, HandleGrantTokenGuard, HomeTeam, ImageUrls, InvoiceService, Member, MemberActivityInvite, MemberAttribute, MemberCard, MemberCardService, MemberContact, MemberFee, MemberFunction, MemberInvoice, MemberInvoiceRow, MemberPublicForm, MemberPublicFormField, MemberPublicFormFieldOption, MemberPublicFormService, MemberService, MemberTeam, MemberTeamThrough, MemberValidationSettings, News, NewsService, Partner, PaymentAttempt, PaymentAttemptService, Role, SearchClub, SearchMember, SearchMemberCard, SearchMemberInvoice, SearchTeam, Section, SectionService, Swish, SwishQrCode, TeamService, Token, TokenService, USER_NOTIFICATIONS_PATH, UnpaidMemberInvoice, User, UserNotification, UserNotificationService, UserService, Zimpler };
2944
3030
  //# sourceMappingURL=myclub_se-data-access.mjs.map