@myclub_se/data-access 3.1.16 → 3.1.17

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.
@@ -32,4 +32,5 @@ export interface ApiBookingCalendarSlotSession {
32
32
  readonly payment_order_id: string | null;
33
33
  readonly pay_until: string | null;
34
34
  readonly is_paid: boolean | null;
35
+ readonly group_id: string | null;
35
36
  }
@@ -34,6 +34,7 @@ export declare class BookingCalendarSlotSession {
34
34
  readonly payment_order_id: string | null;
35
35
  readonly pay_until: string | null;
36
36
  readonly is_paid: boolean | null;
37
+ readonly group_id: string | null;
37
38
  static asFormGroup(session?: BookingCalendarSlotSession): FormGroup<{
38
39
  id: FormControl<string | null>;
39
40
  section_id: FormControl<string | null>;
@@ -56,5 +57,5 @@ export declare class BookingCalendarSlotSession {
56
57
  bookable_part_id: FormControl<string | null>;
57
58
  member_id: FormControl<string | null>;
58
59
  }>;
59
- 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, repeat: boolean, activity_type_id: string | null, color: string | null, update_repeating: boolean, update_until_date: 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);
60
+ 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, repeat: boolean, activity_type_id: string | null, color: string | null, update_repeating: boolean, update_until_date: 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);
60
61
  }
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.1.16",
4
+ "version": "3.1.17",
5
5
  "license": "MIT",
6
6
  "main": "src/index.ts",
7
7
  "peerDependencies": {