@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.
@@ -31,5 +31,6 @@ export interface ApiBookingCalendarSlotSession {
31
31
  readonly pay_until: string | null;
32
32
  readonly is_paid: boolean | null;
33
33
  readonly group_id: string | null;
34
+ readonly split_batch_id: string | null;
34
35
  calendar_id: string | null;
35
36
  }
@@ -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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@myclub_se/data-access",
3
3
  "description": "This is the package required to access the api for the MyClub Member API V3 from angular",
4
- "version": "3.7.8",
4
+ "version": "3.7.9",
5
5
  "license": "MIT",
6
6
  "main": "src/index.ts",
7
7
  "peerDependencies": {