@bondsports/types 2.1.34 → 2.1.36
Sign up to get free protection for your applications and to get access to all the features.
@@ -2,7 +2,7 @@ import { CreateOrEditCustomerDto } from '../../customers/dto/createOrEditCustome
|
|
2
2
|
import { Customer } from '../../entity/Customer';
|
3
3
|
import { User } from '../../user/entities/User';
|
4
4
|
export declare class AddImportedCustomerDto extends CreateOrEditCustomerDto {
|
5
|
-
importedId
|
5
|
+
importedId?: string;
|
6
6
|
genderStr: string;
|
7
7
|
importedParentId?: string;
|
8
8
|
importedPartnerId?: string;
|
@@ -21,13 +21,13 @@ export declare class CustomerImportValidationDto {
|
|
21
21
|
}
|
22
22
|
export declare class ExistingCustomerDto {
|
23
23
|
id: number;
|
24
|
-
|
24
|
+
importedId: string;
|
25
25
|
name: string;
|
26
26
|
email: string;
|
27
27
|
}
|
28
28
|
export declare class ExistingUserDto {
|
29
29
|
id: number;
|
30
|
-
|
30
|
+
importedId: string;
|
31
31
|
email: string;
|
32
32
|
}
|
33
33
|
export declare class CustomerImportResponseDto {
|
@@ -22,7 +22,7 @@ export declare class ImportMembershipDto extends CreateMembershipDto {
|
|
22
22
|
}
|
23
23
|
export declare class ImportMembershipMembersDto extends AddImportedCustomerDto {
|
24
24
|
parentId?: number;
|
25
|
-
importedMembershipId
|
25
|
+
importedMembershipId?: string;
|
26
26
|
paymentMethodId?: string;
|
27
27
|
paymentMethodType?: PaymentMethodTypeEnum;
|
28
28
|
}
|