@bondsports/types 2.4.69-a-2 → 2.4.69-a-3

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.
@@ -13,8 +13,8 @@ export declare class CreateFacilityDto {
13
13
  name: string;
14
14
  sports: number[];
15
15
  description?: string;
16
- email?: string;
17
- phone?: string;
16
+ email?: string | null;
17
+ phone?: string | null;
18
18
  longDescription?: string;
19
19
  info?: string;
20
20
  address: AddressDto;
@@ -26,8 +26,8 @@ export declare class FacilityDto {
26
26
  id: number;
27
27
  name: string;
28
28
  description?: string;
29
- email?: string;
30
- phone?: string;
29
+ email?: string | null;
30
+ phone?: string | null;
31
31
  address: AddressDto;
32
32
  amenities: number[];
33
33
  timezone: string;
@@ -50,8 +50,8 @@ export declare class FacilityDto {
50
50
  export declare class UpdateFacilityDetailsDto {
51
51
  name?: string;
52
52
  description?: string;
53
- email?: string;
54
- phone?: string;
53
+ email?: string | null;
54
+ phone?: string | null;
55
55
  longDescription?: string;
56
56
  info?: string;
57
57
  address?: AddressDto;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bondsports/types",
3
- "version": "2.4.69-a-2",
3
+ "version": "2.4.69-a-3",
4
4
  "description": "backend types module for Bond-Sports",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {