@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;
|
|
@@ -1062,18 +1074,26 @@ class MemberActivityInvite {
|
|
|
1062
1074
|
}
|
|
1063
1075
|
|
|
1064
1076
|
class MemberPublicForm {
|
|
1065
|
-
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) {
|
|
1077
|
+
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) {
|
|
1066
1078
|
this.id = id;
|
|
1067
1079
|
this.active_form = active_form;
|
|
1068
1080
|
this.active_to = active_to;
|
|
1069
1081
|
this.userToken = userToken;
|
|
1070
1082
|
this.comment = comment;
|
|
1083
|
+
this.dataprotection_policy_choice = dataprotection_policy_choice;
|
|
1084
|
+
this.dataprotection_policy_url = dataprotection_policy_url;
|
|
1071
1085
|
this.fields = fields;
|
|
1072
1086
|
this.full_text = full_text;
|
|
1087
|
+
this.has_nationality_field = has_nationality_field;
|
|
1088
|
+
this.max_members_per_team = max_members_per_team;
|
|
1073
1089
|
this.max_registered_in_form_total = max_registered_in_form_total;
|
|
1074
1090
|
this.member_types = member_types;
|
|
1091
|
+
this.member_type_help_text = member_type_help_text;
|
|
1075
1092
|
this.name = name;
|
|
1093
|
+
this.num_chars_birth_date = num_chars_birth_date;
|
|
1076
1094
|
this.num_registered = num_registered;
|
|
1095
|
+
this.role_help_text = role_help_text;
|
|
1096
|
+
this.roles = roles;
|
|
1077
1097
|
this.team_help_text = team_help_text;
|
|
1078
1098
|
this.teams = teams;
|
|
1079
1099
|
this.url = url;
|
|
@@ -1317,6 +1337,9 @@ class ApiService {
|
|
|
1317
1337
|
postResource(factory, role, path, pathParams = {}, data, options = {}) {
|
|
1318
1338
|
return this.post(role, path, pathParams, data, options).pipe(map((apiResource) => factory(apiResource)));
|
|
1319
1339
|
}
|
|
1340
|
+
postResourceNoResponse(role, path, pathParams = {}, data, options = {}) {
|
|
1341
|
+
return this.postEmptyResponse(role, path, pathParams, data, options).pipe(map((response) => response.status === 200));
|
|
1342
|
+
}
|
|
1320
1343
|
updateResource(responseFactory, role, path, pathParams = {}, data, options = {}) {
|
|
1321
1344
|
return this.patch(role, path, pathParams, data, options).pipe(map((apiResource) => responseFactory(apiResource)));
|
|
1322
1345
|
}
|
|
@@ -1352,6 +1375,9 @@ class ApiService {
|
|
|
1352
1375
|
post(role, path, pathParams, data, options) {
|
|
1353
1376
|
return this.http.post(this.url(this.path(role, path, pathParams)), data, options);
|
|
1354
1377
|
}
|
|
1378
|
+
postEmptyResponse(role, path, pathParams, data, options) {
|
|
1379
|
+
return this.http.post(this.url(this.path(role, path, pathParams)), data, Object.assign(Object.assign({}, options), { observe: 'response' }));
|
|
1380
|
+
}
|
|
1355
1381
|
url(path) {
|
|
1356
1382
|
return this.domain + API_PATH + path;
|
|
1357
1383
|
}
|
|
@@ -1412,6 +1438,14 @@ const authTeamFactory = (apiAuthTeam) => new AuthTeam(apiAuthTeam.id, apiAuthTea
|
|
|
1412
1438
|
|
|
1413
1439
|
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);
|
|
1414
1440
|
|
|
1441
|
+
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);
|
|
1442
|
+
|
|
1443
|
+
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);
|
|
1444
|
+
|
|
1445
|
+
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);
|
|
1446
|
+
|
|
1447
|
+
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);
|
|
1448
|
+
|
|
1415
1449
|
const imageUrlsFactory = (apiImageUrls) => new ImageUrls(apiImageUrls.lg, apiImageUrls.md, apiImageUrls.raw, apiImageUrls.sm, apiImageUrls.xs);
|
|
1416
1450
|
|
|
1417
1451
|
const generalImageFactory = (image) => image ? new GeneralImage(image.id, image.name, imageUrlsFactory(image.urls)) : null;
|
|
@@ -1454,6 +1488,8 @@ const externalLinkFactory = (apiExternalLink) => new ExternalLink(apiExternalLin
|
|
|
1454
1488
|
|
|
1455
1489
|
const giroFactory = (apiGiro) => new Giro(apiGiro.club_id, apiGiro.section_id, apiGiro.giro_type, apiGiro.name, apiGiro.number, apiGiro.ocr);
|
|
1456
1490
|
|
|
1491
|
+
const groupRoleFactory = (apiGroupRole) => new GroupRole(apiGroupRole.id, apiGroupRole.club_id, apiGroupRole.section_id, apiGroupRole.created, apiGroupRole.name, apiGroupRole.updated);
|
|
1492
|
+
|
|
1457
1493
|
const memberCardFactory = (apiMemberCard) => new MemberCard(apiMemberCard.id, cardFactory(apiMemberCard.card), apiMemberCard.header_2, apiMemberCard.member_name, apiMemberCard.membership_text, apiMemberCard.name, apiMemberCard.pdf_url);
|
|
1458
1494
|
|
|
1459
1495
|
const memberFeeFactory = (apiMemberFee) => new MemberFee(apiMemberFee.id, apiMemberFee.club_id, apiMemberFee.section_id, apiMemberFee.name);
|
|
@@ -1464,7 +1500,7 @@ const zimplerFactory = (apiZimpler) => new Zimpler(apiZimpler.club_id, apiZimple
|
|
|
1464
1500
|
|
|
1465
1501
|
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);
|
|
1466
1502
|
|
|
1467
|
-
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);
|
|
1503
|
+
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);
|
|
1468
1504
|
|
|
1469
1505
|
const sectionFactory = (apiSection) => new Section(apiSection.id, apiSection.name);
|
|
1470
1506
|
|
|
@@ -1485,8 +1521,9 @@ const memberPublicFormFactory = (apiMemberPublicForm) => {
|
|
|
1485
1521
|
fields.set(key, memberPublicFormFieldFactory(field));
|
|
1486
1522
|
});
|
|
1487
1523
|
}
|
|
1488
|
-
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 ?
|
|
1489
|
-
apiMemberPublicForm.member_types.map((memberType) => memberTypeFactory(memberType)) : [], apiMemberPublicForm.name, apiMemberPublicForm.num_registered, apiMemberPublicForm.
|
|
1524
|
+
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 ?
|
|
1525
|
+
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
|
|
1526
|
+
? apiMemberPublicForm.roles.map((role) => groupRoleFactory(role)) : [], apiMemberPublicForm.team_help_text, apiMemberPublicForm.teams && apiMemberPublicForm.teams.length
|
|
1490
1527
|
? apiMemberPublicForm.teams.map((team) => searchTeamFactory(team)) : [], apiMemberPublicForm.url);
|
|
1491
1528
|
};
|
|
1492
1529
|
|
|
@@ -1821,17 +1858,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
1821
1858
|
}]
|
|
1822
1859
|
}], ctorParameters: function () { return [{ type: ApiService }]; } });
|
|
1823
1860
|
|
|
1824
|
-
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);
|
|
1825
|
-
|
|
1826
|
-
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);
|
|
1827
|
-
|
|
1828
|
-
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);
|
|
1829
|
-
|
|
1830
|
-
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);
|
|
1831
|
-
|
|
1832
1861
|
const CLUB_BOOKING_CALENDARS_PATH = ':clubId/activities/calendars/';
|
|
1833
1862
|
const CLUB_BOOKING_CALENDAR_PATH = ':clubId/activities/calendars/:id/';
|
|
1834
1863
|
const CLUB_BOOKING_CALENDAR_SLOTS_PATH = ':clubId/activities/slots/';
|
|
1864
|
+
const CLUB_BOOKING_CALENDAR_SLOTS_COPY_PATH = ':clubId/activities/slots/copy/';
|
|
1835
1865
|
const CLUB_BOOKING_CALENDAR_SLOT_PATH = ':clubId/activities/slots/:id/';
|
|
1836
1866
|
const CLUB_BOOKING_CALENDAR_REPEATABLE_SLOT_PATH = ':clubId/activities/slots/:id/all/';
|
|
1837
1867
|
const CLUB_BOOKING_CALENDAR_SLOT_SESSIONS_PATH = ':clubId/activities/sessions/';
|
|
@@ -1911,6 +1941,33 @@ class BookingCalendarService {
|
|
|
1911
1941
|
params
|
|
1912
1942
|
});
|
|
1913
1943
|
}
|
|
1944
|
+
copyClubBookingCalendarSlots(clubId, weekRelativeIndexes, startDate = null, endDate = null, calendarIds = null, locationIds = null, teamIds = null, hasOpenSessions = null) {
|
|
1945
|
+
const params = { limit: 'null' };
|
|
1946
|
+
if (startDate) {
|
|
1947
|
+
params['day__gte'] = startDate;
|
|
1948
|
+
}
|
|
1949
|
+
if (endDate) {
|
|
1950
|
+
params['day__lte'] = endDate;
|
|
1951
|
+
}
|
|
1952
|
+
if (calendarIds && calendarIds.length) {
|
|
1953
|
+
params['calendar_id'] = calendarIds.join(',');
|
|
1954
|
+
}
|
|
1955
|
+
if (locationIds && locationIds.length) {
|
|
1956
|
+
params['location_id'] = locationIds.join(',');
|
|
1957
|
+
}
|
|
1958
|
+
if (teamIds && teamIds.length) {
|
|
1959
|
+
params['team_id'] = teamIds.join(',');
|
|
1960
|
+
}
|
|
1961
|
+
if (typeof hasOpenSessions === 'boolean') {
|
|
1962
|
+
params['has_open_sessions'] = String(hasOpenSessions);
|
|
1963
|
+
}
|
|
1964
|
+
return this.apiService
|
|
1965
|
+
.postResourceNoResponse(Role.ClubAdmin, CLUB_BOOKING_CALENDAR_SLOTS_COPY_PATH, { clubId }, {
|
|
1966
|
+
week_relative_indexes: weekRelativeIndexes,
|
|
1967
|
+
}, {
|
|
1968
|
+
params
|
|
1969
|
+
});
|
|
1970
|
+
}
|
|
1914
1971
|
getClubBookingCalendarSlot(clubId, id) {
|
|
1915
1972
|
return this.apiService
|
|
1916
1973
|
.getResource(bookingCalendarSlotFactory, Role.ClubAdmin, CLUB_BOOKING_CALENDAR_SLOT_PATH, { clubId, id });
|
|
@@ -3047,5 +3104,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
3047
3104
|
* Generated bundle index. Do not edit.
|
|
3048
3105
|
*/
|
|
3049
3106
|
|
|
3050
|
-
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 };
|
|
3107
|
+
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 };
|
|
3051
3108
|
//# sourceMappingURL=myclub_se-data-access.mjs.map
|