@bondsports/types 1.2.16 → 1.2.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.
@@ -1,6 +1,14 @@
1
1
  import { Customer } from '../../entity/Customer';
2
2
  export declare class CreateFamilyDto {
3
3
  name: string;
4
+ email?: string;
5
+ phoneNumber?: string;
6
+ street?: string;
7
+ city?: string;
8
+ state?: string;
9
+ zip?: string;
10
+ emergencyContactName?: string;
11
+ emergencyContactPhone?: string;
4
12
  }
5
13
  export declare class CreateFamilyResponseDto {
6
14
  data: Customer;
@@ -1 +1 @@
1
- {"version":3,"file":"createFamily.dto.js","sourceRoot":"","sources":["../../../../src/types/customers/dto/createFamily.dto.ts"],"names":[],"mappings":";;;AAEA,MAAa,eAAe;CAE3B;AAFD,0CAEC;AAED,MAAa,uBAAuB;CAGnC;AAHD,0DAGC"}
1
+ {"version":3,"file":"createFamily.dto.js","sourceRoot":"","sources":["../../../../src/types/customers/dto/createFamily.dto.ts"],"names":[],"mappings":";;;AAEA,MAAa,eAAe;CAkB3B;AAlBD,0CAkBC;AAED,MAAa,uBAAuB;CAGnC;AAHD,0DAGC"}
@@ -2,3 +2,8 @@ export interface CustomerFamily {
2
2
  familyCustomerId: number;
3
3
  isAdmin: boolean;
4
4
  }
5
+ export interface CustomerContactDetails {
6
+ phoneNumber: string;
7
+ email: string;
8
+ addressId: number;
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bondsports/types",
3
- "version": "1.2.16",
3
+ "version": "1.2.17",
4
4
  "description": "backend types module for Bond-Sports",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {