@bondsports/types 2.1.29 → 2.1.31
Sign up to get free protection for your applications and to get access to all the features.
@@ -11,6 +11,7 @@ exports.AddFamilyDto = AddFamilyDto;
|
|
11
11
|
class CustomerImportValidationDto {
|
12
12
|
}
|
13
13
|
exports.CustomerImportValidationDto = CustomerImportValidationDto;
|
14
|
+
// TODO: Use the DTOs or remove them
|
14
15
|
class ExistingCustomerDto {
|
15
16
|
}
|
16
17
|
exports.ExistingCustomerDto = ExistingCustomerDto;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"customer.dto.js","sourceRoot":"","sources":["../../../../src/types/import/dto/customer.dto.ts"],"names":[],"mappings":";;;AAAA,2FAAuF;AAIvF,MAAa,sBAAuB,SAAQ,kDAAuB;CAgBlE;AAhBD,wDAgBC;AAED,MAAa,YAAY;CAIxB;AAJD,oCAIC;AAED,MAAa,2BAA2B;CAMvC;AAND,kEAMC;AAED,MAAa,mBAAmB;CAQ/B;AARD,kDAQC;AAED,MAAa,eAAe;CAM3B;AAND,0CAMC;AAED,MAAa,yBAAyB;CAIrC;AAJD,8DAIC"}
|
1
|
+
{"version":3,"file":"customer.dto.js","sourceRoot":"","sources":["../../../../src/types/import/dto/customer.dto.ts"],"names":[],"mappings":";;;AAAA,2FAAuF;AAIvF,MAAa,sBAAuB,SAAQ,kDAAuB;CAgBlE;AAhBD,wDAgBC;AAED,MAAa,YAAY;CAIxB;AAJD,oCAIC;AAED,MAAa,2BAA2B;CAMvC;AAND,kEAMC;AAED,oCAAoC;AACpC,MAAa,mBAAmB;CAQ/B;AARD,kDAQC;AAED,MAAa,eAAe;CAM3B;AAND,0CAMC;AAED,MAAa,yBAAyB;CAIrC;AAJD,8DAIC"}
|
@@ -22,11 +22,11 @@ export declare class ImportMembershipDto extends CreateMembershipDto {
|
|
22
22
|
}
|
23
23
|
export declare class ImportMembershipMembersDto extends AddImportedCustomerDto {
|
24
24
|
importedCustomerId: string;
|
25
|
-
userId
|
25
|
+
userId?: number;
|
26
26
|
importedCustomerParentId: string;
|
27
|
-
parentId
|
28
|
-
|
29
|
-
membershipId
|
27
|
+
parentId?: number;
|
28
|
+
importedMembershipId: string;
|
29
|
+
membershipId?: number;
|
30
30
|
paymentMethodId?: string;
|
31
31
|
paymentMethodType?: PaymentMethodTypeEnum;
|
32
32
|
startDate: string;
|