@myclub_se/data-access 3.7.8 → 3.7.9
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/esm2022/lib/api-models/api-booking-calendar-slot-session.mjs +1 -1
- package/esm2022/lib/models/booking-calendar-slot-session.mjs +4 -2
- package/esm2022/lib/models/booking-calendar.mjs +3 -3
- package/esm2022/lib/services/booking-calendar.service.mjs +15 -1
- package/esm2022/lib/services/factories/booking-calendar-slot-session-factory.mjs +2 -2
- package/fesm2022/myclub_se-data-access.mjs +20 -4
- package/fesm2022/myclub_se-data-access.mjs.map +1 -1
- package/lib/api-models/api-booking-calendar-slot-session.d.ts +1 -0
- package/lib/models/booking-calendar-slot-session.d.ts +2 -1
- package/lib/services/booking-calendar.service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -33,6 +33,7 @@ export declare class BookingCalendarSlotSession {
|
|
|
33
33
|
readonly pay_until: string | null;
|
|
34
34
|
readonly is_paid: boolean | null;
|
|
35
35
|
readonly group_id: string | null;
|
|
36
|
+
readonly split_batch_id: string | null;
|
|
36
37
|
calendar_id: string | null;
|
|
37
38
|
static asFormGroup(session?: BookingCalendarSlotSession): FormGroup<{
|
|
38
39
|
id: FormControl<string | null>;
|
|
@@ -54,5 +55,5 @@ export declare class BookingCalendarSlotSession {
|
|
|
54
55
|
bookable_part_id: FormControl<string | null>;
|
|
55
56
|
member_id: FormControl<string | null>;
|
|
56
57
|
}>;
|
|
57
|
-
constructor(id: string, section_id: string | null, slot_id: string, team_id: string | null, title: string, end_time: string, section_name: string | null, start_time: string, team_name: string | null, is_overbooked: boolean, last_repeating_date: string | null, type: string, slot_index: number, comment: string | null, day: string, activity_type_id: string | null, color: string | null, update_dates: string[] | null, bookable_zones_taken: number, bookable_zones_taken_display: string, bookable_part_id: string | null, bookable_part_name: string | null, bookable_name: string | null, bookable_id: string, member_id: string | null, member_name: string | null, member_email: string | null, price: number, payment_order_id: string | null, pay_until: string | null, is_paid: boolean | null, group_id: string | null, calendar_id: string | null);
|
|
58
|
+
constructor(id: string, section_id: string | null, slot_id: string, team_id: string | null, title: string, end_time: string, section_name: string | null, start_time: string, team_name: string | null, is_overbooked: boolean, last_repeating_date: string | null, type: string, slot_index: number, comment: string | null, day: string, activity_type_id: string | null, color: string | null, update_dates: string[] | null, bookable_zones_taken: number, bookable_zones_taken_display: string, bookable_part_id: string | null, bookable_part_name: string | null, bookable_name: string | null, bookable_id: string, member_id: string | null, member_name: string | null, member_email: string | null, price: number, payment_order_id: string | null, pay_until: string | null, is_paid: boolean | null, group_id: string | null, split_batch_id: string | null, calendar_id: string | null);
|
|
58
59
|
}
|
|
@@ -102,6 +102,8 @@ export declare class BookingCalendarService {
|
|
|
102
102
|
private getSectionSessionGroupItems;
|
|
103
103
|
private getTeamSessionGroupItems;
|
|
104
104
|
private getMemberSessionGroupItems;
|
|
105
|
+
deleteSplitBatch(role: Role, itemId: string, id: string, sendNotification?: boolean): import("rxjs").Observable<boolean>;
|
|
106
|
+
private deleteMemberSplitBatch;
|
|
105
107
|
getBookingSettings(role: Role, itemId: string): import("rxjs").Observable<BookingSettings>;
|
|
106
108
|
private getClubBookingSettings;
|
|
107
109
|
private getSectionBookingSettings;
|
package/package.json
CHANGED