@bondsports/types 2.2.259 → 2.2.261
Sign up to get free protection for your applications and to get access to all the features.
@@ -24,6 +24,7 @@ export declare class CreatePaymentPlanDto extends PaymentPlanDto {
|
|
24
24
|
}
|
25
25
|
export declare class CalcPaymentPlanDto extends PaymentPlanDto {
|
26
26
|
amountToSplit: number;
|
27
|
+
downpayment?: number;
|
27
28
|
organizationId?: number;
|
28
29
|
}
|
29
30
|
export declare class BasicInstallmentDataDto extends ByOrganizationIdDto {
|
@@ -38,7 +39,7 @@ export declare class CreateScheduledPaymentsDto extends BasicInstallmentDataDto
|
|
38
39
|
}
|
39
40
|
export declare class ScheduledPaymentDto {
|
40
41
|
price: number;
|
41
|
-
plannedDate
|
42
|
+
plannedDate?: Date;
|
42
43
|
originalPlannedDate?: Date;
|
43
44
|
}
|
44
45
|
export declare class FutureInstallmentsIdsDto {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"payment-plan.dto.js","sourceRoot":"","sources":["../../../../src/types/payment/dto/payment-plan.dto.ts"],"names":[],"mappings":";;;AACA,8EAA8E;AAS9E,MAAa,sBAAsB;CAQlC;AARD,wDAQC;AACD,MAAa,cAAc;CAgB1B;AAhBD,wCAgBC;AAED,MAAa,oBAAqB,SAAQ,cAAc;CAEvD;AAFD,oDAEC;AAED,MAAa,kBAAmB,SAAQ,cAAc;
|
1
|
+
{"version":3,"file":"payment-plan.dto.js","sourceRoot":"","sources":["../../../../src/types/payment/dto/payment-plan.dto.ts"],"names":[],"mappings":";;;AACA,8EAA8E;AAS9E,MAAa,sBAAsB;CAQlC;AARD,wDAQC;AACD,MAAa,cAAc;CAgB1B;AAhBD,wCAgBC;AAED,MAAa,oBAAqB,SAAQ,cAAc;CAEvD;AAFD,oDAEC;AAED,MAAa,kBAAmB,SAAQ,cAAc;CAMrD;AAND,gDAMC;AAED,MAAa,uBAAwB,SAAQ,sCAAmB;CAM/D;AAND,0DAMC;AAED,MAAa,0BAA2B,SAAQ,uBAAuB;CAMtE;AAND,gEAMC;AAED,MAAa,mBAAmB;CAM/B;AAND,kDAMC;AAED,MAAa,wBAAwB;CAEpC;AAFD,4DAEC;AAED,MAAa,2BAA4B,SAAQ,wBAAwB;CAIxE;AAJD,kEAIC;AAED,MAAa,0BAA0B;CAYtC;AAZD,gEAYC;AAED,MAAa,kBAAkB;CAI9B;AAJD,gDAIC"}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { SimpleFacilityDto } from '../../dto/facilities.dto';
|
2
2
|
import { IdAndNameDto, PaginationQuery } from '../../dto/general.dto';
|
3
|
-
import { ProductUserFinancialInfoDto } from '../../dto/product-user';
|
3
|
+
import { ProductUserFinancialInfoDto, SimpleProductUserDto } from '../../dto/product-user';
|
4
4
|
import { ByOrganizationIdDto, OptionalOrganizationIdDto } from '../../organization/dto/organization.dto';
|
5
5
|
import { SimpleProductDto } from '../../product-pricing/dto/product.dto';
|
6
6
|
import { SimpleSessionDto } from '../../programs-seasons/dto/program-seasons.dto';
|
@@ -100,7 +100,6 @@ export declare class ProgramInfoDto {
|
|
100
100
|
name: string;
|
101
101
|
isSegment: boolean;
|
102
102
|
userId: number;
|
103
|
-
productUserId: number;
|
104
103
|
registeredOn: Date;
|
105
104
|
sport: SportsEnum;
|
106
105
|
user?: SimpleUserDto;
|
@@ -109,4 +108,5 @@ export declare class ProgramInfoDto {
|
|
109
108
|
resources?: SimpleResourceDto[];
|
110
109
|
facility?: SimpleFacilityDto;
|
111
110
|
financialInfo?: ProductUserFinancialInfoDto;
|
111
|
+
productUser?: SimpleProductUserDto;
|
112
112
|
}
|