@myclub_se/data-access 3.1.17 → 3.1.19

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.
@@ -1,5 +1,8 @@
1
1
  export interface ApiFeatureFlags {
2
- newsletter: boolean;
2
+ extra_distribution: boolean;
3
3
  booking_system: boolean;
4
4
  member_booking: boolean;
5
+ public_booking: boolean;
6
+ section_handle_invoices_rfs: boolean;
7
+ api: boolean;
5
8
  }
@@ -32,6 +32,7 @@ export declare class BookingCalendarApplicationTime {
32
32
  readonly member_name: string | null;
33
33
  readonly member_email: string | null;
34
34
  readonly price: number;
35
+ send_notification: boolean;
35
36
  static asFormGroup(session?: BookingCalendarApplicationTime): FormGroup<{
36
37
  id: FormControl<string | null>;
37
38
  section_id: FormControl<string | null>;
@@ -50,6 +51,7 @@ export declare class BookingCalendarApplicationTime {
50
51
  bookable_zones_taken: FormControl<number | null>;
51
52
  bookable_part_id: FormControl<string | null>;
52
53
  member_id: FormControl<string | null>;
54
+ send_notification: FormControl<boolean | null>;
53
55
  }>;
54
- 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, applicant_comment: string | null, reviewer_comment: string | null, status: string, repeat: boolean, activity_type_id: string | null, color: string | null, slot_start_time: string, slot_end_time: string, slot_day: string, slot_number_of_available_sessions: string, slot_last_repeating_date: string | null, created: string, bookable_zones_taken: number, bookable_zones_taken_display: string, bookable_part_id: string | null, bookable_part_name: string | null, bookable_id: string, bookable_name: string | null, member_id: string | null, member_name: string | null, member_email: string | null, price?: number);
56
+ 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, applicant_comment: string | null, reviewer_comment: string | null, status: string, repeat: boolean, activity_type_id: string | null, color: string | null, slot_start_time: string, slot_end_time: string, slot_day: string, slot_number_of_available_sessions: string, slot_last_repeating_date: string | null, created: string, bookable_zones_taken: number, bookable_zones_taken_display: string, bookable_part_id: string | null, bookable_part_name: string | null, bookable_id: string, bookable_name: string | null, member_id: string | null, member_name: string | null, member_email: string | null, price: number, send_notification: boolean);
55
57
  }
@@ -1,7 +1,10 @@
1
1
  export declare class FeatureFlags {
2
- newsletter: boolean;
2
+ extra_distribution: boolean;
3
3
  booking_system: boolean;
4
4
  member_booking: boolean;
5
- constructor(newsletter: boolean, booking_system: boolean, member_booking: boolean);
5
+ public_booking: boolean;
6
+ section_handle_invoices_rfs: boolean;
7
+ api: boolean;
8
+ constructor(extra_distribution: boolean, booking_system: boolean, member_booking: boolean, public_booking: boolean, section_handle_invoices_rfs: boolean, api: boolean);
6
9
  static defaultValues(): FeatureFlags;
7
10
  }
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.17",
4
+ "version": "3.1.19",
5
5
  "license": "MIT",
6
6
  "main": "src/index.ts",
7
7
  "peerDependencies": {