@myclub_se/data-access 2.15.0 → 2.15.1

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.
@@ -11,5 +11,5 @@ export interface ApiMemberAttribute {
11
11
  readonly order: number;
12
12
  readonly section_id: string | null;
13
13
  readonly type: AttributeType;
14
- value: string | boolean | null;
14
+ value: string | boolean | null | undefined;
15
15
  }
@@ -12,7 +12,7 @@ export declare class MemberAttribute {
12
12
  order: number;
13
13
  section_id: string | null;
14
14
  type: AttributeType;
15
- value: string | boolean | null;
15
+ value: string | boolean | undefined | null;
16
16
  static asFormGroup(attribute?: MemberAttribute | null): FormGroup<{
17
17
  field_id: FormControl<string | null>;
18
18
  member_id: FormControl<string | null>;
@@ -24,7 +24,7 @@ export declare class MemberAttribute {
24
24
  value: FormControl<string | null>;
25
25
  }>>;
26
26
  type: FormControl<string | null>;
27
- value: FormControl<string | boolean | null>;
27
+ value: FormControl<string | boolean | null | undefined>;
28
28
  }>;
29
- constructor(display_value: string, field_id: string, leader_editable: boolean, member_id: string, member_editable: boolean, name: string, options: Array<OptionInterface>, order: number, section_id: string | null, type: AttributeType, value: string | boolean | null);
29
+ constructor(display_value: string, field_id: string, leader_editable: boolean, member_id: string, member_editable: boolean, name: string, options: Array<OptionInterface>, order: number, section_id: string | null, type: AttributeType, value: string | boolean | undefined | null);
30
30
  }
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": "2.15.0",
4
+ "version": "2.15.1",
5
5
  "license": "MIT",
6
6
  "main": "src/index.ts",
7
7
  "peerDependencies": {