@myclub_se/data-access 2.4.0 → 2.5.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.
- package/esm2020/lib/api-models/api-group-role.mjs +2 -0
- package/esm2020/lib/api-models/api-invoice/api-member-invoice.mjs +1 -1
- package/esm2020/lib/api-models/api-member-public-form.mjs +1 -1
- package/esm2020/lib/api-models/index.mjs +2 -1
- package/esm2020/lib/models/group-role.mjs +11 -0
- package/esm2020/lib/models/index.mjs +2 -1
- package/esm2020/lib/models/invoice/member-invoice.mjs +3 -2
- package/esm2020/lib/models/member-public-form.mjs +10 -2
- package/esm2020/lib/services/api.service.mjs +7 -1
- package/esm2020/lib/services/booking-calendar.service.mjs +30 -5
- package/esm2020/lib/services/factories/group-role-factory.mjs +3 -0
- package/esm2020/lib/services/factories/index.mjs +6 -1
- package/esm2020/lib/services/factories/member-invoice-factory.mjs +2 -2
- package/esm2020/lib/services/factories/member-public-form-factory.mjs +5 -3
- package/fesm2015/myclub_se-data-access.mjs +71 -14
- package/fesm2015/myclub_se-data-access.mjs.map +1 -1
- package/fesm2020/myclub_se-data-access.mjs +71 -14
- package/fesm2020/myclub_se-data-access.mjs.map +1 -1
- package/lib/api-models/api-group-role.d.ts +8 -0
- package/lib/api-models/api-invoice/api-member-invoice.d.ts +1 -0
- package/lib/api-models/api-member-public-form.d.ts +9 -0
- package/lib/api-models/index.d.ts +1 -0
- package/lib/models/group-role.d.ts +9 -0
- package/lib/models/index.d.ts +1 -0
- package/lib/models/invoice/member-invoice.d.ts +2 -1
- package/lib/models/member-public-form.d.ts +10 -1
- package/lib/services/api.service.d.ts +2 -0
- package/lib/services/booking-calendar.service.d.ts +1 -0
- package/lib/services/factories/group-role-factory.d.ts +3 -0
- package/lib/services/factories/index.d.ts +5 -0
- package/package.json +1 -1
|
@@ -692,6 +692,17 @@ class GeneralImage {
|
|
|
692
692
|
}
|
|
693
693
|
}
|
|
694
694
|
|
|
695
|
+
class GroupRole {
|
|
696
|
+
constructor(id, club_id, section_id, created, name, updated) {
|
|
697
|
+
this.id = id;
|
|
698
|
+
this.club_id = club_id;
|
|
699
|
+
this.section_id = section_id;
|
|
700
|
+
this.created = created;
|
|
701
|
+
this.name = name;
|
|
702
|
+
this.updated = updated;
|
|
703
|
+
}
|
|
704
|
+
}
|
|
705
|
+
|
|
695
706
|
class ImageUrls {
|
|
696
707
|
constructor(lg, md, raw, sm, xs) {
|
|
697
708
|
this.lg = lg;
|
|
@@ -712,7 +723,7 @@ class MemberFee {
|
|
|
712
723
|
}
|
|
713
724
|
|
|
714
725
|
class MemberInvoice {
|
|
715
|
-
constructor(id, amount, amountPaid, balance, clubBillId, clubName, creditCard, datePaid, dueDate, giro, invoiceRows, invoiceText, isPaid, memberId, payee, paymentUrl, reference, swish, zimpler) {
|
|
726
|
+
constructor(id, amount, amountPaid, balance, clubBillId, clubName, creditCard, datePaid, dueDate, giro, invoiceRows, invoiceText, isPaid, memberId, organisationName, payee, paymentUrl, reference, swish, zimpler) {
|
|
716
727
|
this.id = id;
|
|
717
728
|
this.amount = amount;
|
|
718
729
|
this.amountPaid = amountPaid;
|
|
@@ -727,6 +738,7 @@ class MemberInvoice {
|
|
|
727
738
|
this.invoiceText = invoiceText;
|
|
728
739
|
this.isPaid = isPaid;
|
|
729
740
|
this.memberId = memberId;
|
|
741
|
+
this.organisationName = organisationName;
|
|
730
742
|
this.payee = payee;
|
|
731
743
|
this.paymentUrl = paymentUrl;
|
|
732
744
|
this.reference = reference;
|
|
@@ -1061,18 +1073,26 @@ class MemberActivityInvite {
|
|
|
1061
1073
|
}
|
|
1062
1074
|
|
|
1063
1075
|
class MemberPublicForm {
|
|
1064
|
-
constructor(id, active_form, active_to, userToken, comment, fields, full_text, max_registered_in_form_total, member_types, name, num_registered, team_help_text, teams, url) {
|
|
1076
|
+
constructor(id, active_form, active_to, userToken, comment, dataprotection_policy_choice, dataprotection_policy_url, fields, full_text, has_nationality_field, max_members_per_team, max_registered_in_form_total, member_types, member_type_help_text, name, num_chars_birth_date, num_registered, role_help_text, roles, team_help_text, teams, url) {
|
|
1065
1077
|
this.id = id;
|
|
1066
1078
|
this.active_form = active_form;
|
|
1067
1079
|
this.active_to = active_to;
|
|
1068
1080
|
this.userToken = userToken;
|
|
1069
1081
|
this.comment = comment;
|
|
1082
|
+
this.dataprotection_policy_choice = dataprotection_policy_choice;
|
|
1083
|
+
this.dataprotection_policy_url = dataprotection_policy_url;
|
|
1070
1084
|
this.fields = fields;
|
|
1071
1085
|
this.full_text = full_text;
|
|
1086
|
+
this.has_nationality_field = has_nationality_field;
|
|
1087
|
+
this.max_members_per_team = max_members_per_team;
|
|
1072
1088
|
this.max_registered_in_form_total = max_registered_in_form_total;
|
|
1073
1089
|
this.member_types = member_types;
|
|
1090
|
+
this.member_type_help_text = member_type_help_text;
|
|
1074
1091
|
this.name = name;
|
|
1092
|
+
this.num_chars_birth_date = num_chars_birth_date;
|
|
1075
1093
|
this.num_registered = num_registered;
|
|
1094
|
+
this.role_help_text = role_help_text;
|
|
1095
|
+
this.roles = roles;
|
|
1076
1096
|
this.team_help_text = team_help_text;
|
|
1077
1097
|
this.teams = teams;
|
|
1078
1098
|
this.url = url;
|
|
@@ -1316,6 +1336,9 @@ class ApiService {
|
|
|
1316
1336
|
postResource(factory, role, path, pathParams = {}, data, options = {}) {
|
|
1317
1337
|
return this.post(role, path, pathParams, data, options).pipe(map((apiResource) => factory(apiResource)));
|
|
1318
1338
|
}
|
|
1339
|
+
postResourceNoResponse(role, path, pathParams = {}, data, options = {}) {
|
|
1340
|
+
return this.postEmptyResponse(role, path, pathParams, data, options).pipe(map((response) => response.status === 200));
|
|
1341
|
+
}
|
|
1319
1342
|
updateResource(responseFactory, role, path, pathParams = {}, data, options = {}) {
|
|
1320
1343
|
return this.patch(role, path, pathParams, data, options).pipe(map((apiResource) => responseFactory(apiResource)));
|
|
1321
1344
|
}
|
|
@@ -1351,6 +1374,9 @@ class ApiService {
|
|
|
1351
1374
|
post(role, path, pathParams, data, options) {
|
|
1352
1375
|
return this.http.post(this.url(this.path(role, path, pathParams)), data, options);
|
|
1353
1376
|
}
|
|
1377
|
+
postEmptyResponse(role, path, pathParams, data, options) {
|
|
1378
|
+
return this.http.post(this.url(this.path(role, path, pathParams)), data, { ...options, observe: 'response' });
|
|
1379
|
+
}
|
|
1354
1380
|
url(path) {
|
|
1355
1381
|
return this.domain + API_PATH + path;
|
|
1356
1382
|
}
|
|
@@ -1409,6 +1435,14 @@ const authTeamFactory = (apiAuthTeam) => new AuthTeam(apiAuthTeam.id, apiAuthTea
|
|
|
1409
1435
|
|
|
1410
1436
|
const authFactory = (apiAuth) => new Auth(apiAuth.id, apiAuth.name, apiAuth.club_admin, apiAuth.is_section_club, apiAuth.members.map((apiAuthMember) => authMemberFactory(apiAuthMember)), apiAuth.registration_enabled, apiAuth.sections.map((apiAuthSection) => authSectionFactory(apiAuthSection)), apiAuth.site_enabled, apiAuth.teams.map((apiAuthTeam) => authTeamFactory(apiAuthTeam)), apiAuth.user_name);
|
|
1411
1437
|
|
|
1438
|
+
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);
|
|
1439
|
+
|
|
1440
|
+
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);
|
|
1441
|
+
|
|
1442
|
+
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);
|
|
1443
|
+
|
|
1444
|
+
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);
|
|
1445
|
+
|
|
1412
1446
|
const imageUrlsFactory = (apiImageUrls) => new ImageUrls(apiImageUrls.lg, apiImageUrls.md, apiImageUrls.raw, apiImageUrls.sm, apiImageUrls.xs);
|
|
1413
1447
|
|
|
1414
1448
|
const generalImageFactory = (image) => image ? new GeneralImage(image.id, image.name, imageUrlsFactory(image.urls)) : null;
|
|
@@ -1451,6 +1485,8 @@ const externalLinkFactory = (apiExternalLink) => new ExternalLink(apiExternalLin
|
|
|
1451
1485
|
|
|
1452
1486
|
const giroFactory = (apiGiro) => new Giro(apiGiro.club_id, apiGiro.section_id, apiGiro.giro_type, apiGiro.name, apiGiro.number, apiGiro.ocr);
|
|
1453
1487
|
|
|
1488
|
+
const groupRoleFactory = (apiGroupRole) => new GroupRole(apiGroupRole.id, apiGroupRole.club_id, apiGroupRole.section_id, apiGroupRole.created, apiGroupRole.name, apiGroupRole.updated);
|
|
1489
|
+
|
|
1454
1490
|
const memberCardFactory = (apiMemberCard) => new MemberCard(apiMemberCard.id, cardFactory(apiMemberCard.card), apiMemberCard.header_2, apiMemberCard.member_name, apiMemberCard.membership_text, apiMemberCard.name, apiMemberCard.pdf_url);
|
|
1455
1491
|
|
|
1456
1492
|
const memberFeeFactory = (apiMemberFee) => new MemberFee(apiMemberFee.id, apiMemberFee.club_id, apiMemberFee.section_id, apiMemberFee.name);
|
|
@@ -1461,7 +1497,7 @@ const zimplerFactory = (apiZimpler) => new Zimpler(apiZimpler.club_id, apiZimple
|
|
|
1461
1497
|
|
|
1462
1498
|
const memberInvoiceRowFactory = (apiMemberInvoiceRow) => new MemberInvoiceRow(apiMemberInvoiceRow.id, apiMemberInvoiceRow.amount, apiMemberInvoiceRow.amount_paid, apiMemberInvoiceRow.balance, apiMemberInvoiceRow.created, apiMemberInvoiceRow.date_paid, memberFeeFactory(apiMemberInvoiceRow.fee), apiMemberInvoiceRow.has_credit_type, apiMemberInvoiceRow.invoice, apiMemberInvoiceRow.is_credit, apiMemberInvoiceRow.is_paid, apiMemberInvoiceRow.updated);
|
|
1463
1499
|
|
|
1464
|
-
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);
|
|
1500
|
+
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.organisation_name, apiMemberInvoice.payee, apiMemberInvoice.payment_url, apiMemberInvoice.reference, apiMemberInvoice.swish ? swishFactory(apiMemberInvoice.swish) : null, apiMemberInvoice.zimpler ? zimplerFactory(apiMemberInvoice.zimpler) : null);
|
|
1465
1501
|
|
|
1466
1502
|
const sectionFactory = (apiSection) => new Section(apiSection.id, apiSection.name);
|
|
1467
1503
|
|
|
@@ -1482,8 +1518,9 @@ const memberPublicFormFactory = (apiMemberPublicForm) => {
|
|
|
1482
1518
|
fields.set(key, memberPublicFormFieldFactory(field));
|
|
1483
1519
|
});
|
|
1484
1520
|
}
|
|
1485
|
-
return new MemberPublicForm(apiMemberPublicForm.id, apiMemberPublicForm.active_from, apiMemberPublicForm.active_to, apiMemberPublicForm.user_token, apiMemberPublicForm.comment, fields, apiMemberPublicForm.full_text, apiMemberPublicForm.max_registered_in_form_total, apiMemberPublicForm.member_types && apiMemberPublicForm.member_types.length ?
|
|
1486
|
-
apiMemberPublicForm.member_types.map((memberType) => memberTypeFactory(memberType)) : [], apiMemberPublicForm.name, apiMemberPublicForm.num_registered, apiMemberPublicForm.
|
|
1521
|
+
return new MemberPublicForm(apiMemberPublicForm.id, apiMemberPublicForm.active_from, apiMemberPublicForm.active_to, apiMemberPublicForm.user_token, apiMemberPublicForm.comment, apiMemberPublicForm.dataprotection_policy_choice, apiMemberPublicForm.dataprotection_policy_url, fields, apiMemberPublicForm.full_text, apiMemberPublicForm.has_nationality_field, apiMemberPublicForm.max_members_per_team, apiMemberPublicForm.max_registered_in_form_total, apiMemberPublicForm.member_types && apiMemberPublicForm.member_types.length ?
|
|
1522
|
+
apiMemberPublicForm.member_types.map((memberType) => memberTypeFactory(memberType)) : [], apiMemberPublicForm.member_type_help_text, apiMemberPublicForm.name, apiMemberPublicForm.num_chars_birth_date, apiMemberPublicForm.num_registered, apiMemberPublicForm.role_help_text, apiMemberPublicForm.roles && apiMemberPublicForm.roles.length
|
|
1523
|
+
? apiMemberPublicForm.roles.map((role) => groupRoleFactory(role)) : [], apiMemberPublicForm.team_help_text, apiMemberPublicForm.teams && apiMemberPublicForm.teams.length
|
|
1487
1524
|
? apiMemberPublicForm.teams.map((team) => searchTeamFactory(team)) : [], apiMemberPublicForm.url);
|
|
1488
1525
|
};
|
|
1489
1526
|
|
|
@@ -1817,17 +1854,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
1817
1854
|
}]
|
|
1818
1855
|
}], ctorParameters: function () { return [{ type: ApiService }]; } });
|
|
1819
1856
|
|
|
1820
|
-
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);
|
|
1821
|
-
|
|
1822
|
-
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);
|
|
1823
|
-
|
|
1824
|
-
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);
|
|
1825
|
-
|
|
1826
|
-
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);
|
|
1827
|
-
|
|
1828
1857
|
const CLUB_BOOKING_CALENDARS_PATH = ':clubId/activities/calendars/';
|
|
1829
1858
|
const CLUB_BOOKING_CALENDAR_PATH = ':clubId/activities/calendars/:id/';
|
|
1830
1859
|
const CLUB_BOOKING_CALENDAR_SLOTS_PATH = ':clubId/activities/slots/';
|
|
1860
|
+
const CLUB_BOOKING_CALENDAR_SLOTS_COPY_PATH = ':clubId/activities/slots/copy/';
|
|
1831
1861
|
const CLUB_BOOKING_CALENDAR_SLOT_PATH = ':clubId/activities/slots/:id/';
|
|
1832
1862
|
const CLUB_BOOKING_CALENDAR_REPEATABLE_SLOT_PATH = ':clubId/activities/slots/:id/all/';
|
|
1833
1863
|
const CLUB_BOOKING_CALENDAR_SLOT_SESSIONS_PATH = ':clubId/activities/sessions/';
|
|
@@ -1907,6 +1937,33 @@ class BookingCalendarService {
|
|
|
1907
1937
|
params
|
|
1908
1938
|
});
|
|
1909
1939
|
}
|
|
1940
|
+
copyClubBookingCalendarSlots(clubId, weekRelativeIndexes, startDate = null, endDate = null, calendarIds = null, locationIds = null, teamIds = null, hasOpenSessions = null) {
|
|
1941
|
+
const params = { limit: 'null' };
|
|
1942
|
+
if (startDate) {
|
|
1943
|
+
params['day__gte'] = startDate;
|
|
1944
|
+
}
|
|
1945
|
+
if (endDate) {
|
|
1946
|
+
params['day__lte'] = endDate;
|
|
1947
|
+
}
|
|
1948
|
+
if (calendarIds && calendarIds.length) {
|
|
1949
|
+
params['calendar_id'] = calendarIds.join(',');
|
|
1950
|
+
}
|
|
1951
|
+
if (locationIds && locationIds.length) {
|
|
1952
|
+
params['location_id'] = locationIds.join(',');
|
|
1953
|
+
}
|
|
1954
|
+
if (teamIds && teamIds.length) {
|
|
1955
|
+
params['team_id'] = teamIds.join(',');
|
|
1956
|
+
}
|
|
1957
|
+
if (typeof hasOpenSessions === 'boolean') {
|
|
1958
|
+
params['has_open_sessions'] = String(hasOpenSessions);
|
|
1959
|
+
}
|
|
1960
|
+
return this.apiService
|
|
1961
|
+
.postResourceNoResponse(Role.ClubAdmin, CLUB_BOOKING_CALENDAR_SLOTS_COPY_PATH, { clubId }, {
|
|
1962
|
+
week_relative_indexes: weekRelativeIndexes,
|
|
1963
|
+
}, {
|
|
1964
|
+
params
|
|
1965
|
+
});
|
|
1966
|
+
}
|
|
1910
1967
|
getClubBookingCalendarSlot(clubId, id) {
|
|
1911
1968
|
return this.apiService
|
|
1912
1969
|
.getResource(bookingCalendarSlotFactory, Role.ClubAdmin, CLUB_BOOKING_CALENDAR_SLOT_PATH, { clubId, id });
|
|
@@ -3043,5 +3100,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
3043
3100
|
* Generated bundle index. Do not edit.
|
|
3044
3101
|
*/
|
|
3045
3102
|
|
|
3046
|
-
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, MemberType, 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 };
|
|
3103
|
+
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, GroupRole, HandleGrantTokenGuard, HomeTeam, ImageUrls, InvoiceService, Member, MemberActivityInvite, MemberAttribute, MemberCard, MemberCardService, MemberContact, MemberFee, MemberFunction, MemberInvoice, MemberInvoiceRow, MemberPublicForm, MemberPublicFormField, MemberPublicFormFieldOption, MemberPublicFormService, MemberService, MemberTeam, MemberTeamThrough, MemberType, 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 };
|
|
3047
3104
|
//# sourceMappingURL=myclub_se-data-access.mjs.map
|