@bondsports/types 0.0.173 → 0.0.174
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.
- package/build/index.d.ts +187 -187
- package/build/index.es.js.map +1 -1
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -702,50 +702,6 @@ export declare class VariantDto {
|
|
|
702
702
|
startDate: Date;
|
|
703
703
|
endDate: Date;
|
|
704
704
|
}
|
|
705
|
-
export declare class FindProgramsByOrganizationIdDto {
|
|
706
|
-
organizationId: number;
|
|
707
|
-
programType?: ProgramTypesEnum;
|
|
708
|
-
}
|
|
709
|
-
export declare class FindProgramByIdDto {
|
|
710
|
-
programId: number;
|
|
711
|
-
}
|
|
712
|
-
export declare class FindProgramByOrgIdAndIdDto {
|
|
713
|
-
programId: number;
|
|
714
|
-
organizationId: number;
|
|
715
|
-
}
|
|
716
|
-
export declare class BaseProgramDto {
|
|
717
|
-
type: ProgramTypesEnum;
|
|
718
|
-
name: string;
|
|
719
|
-
sport: SportsEnum;
|
|
720
|
-
minAge: string;
|
|
721
|
-
maxAge: string;
|
|
722
|
-
gender: GenderEnum;
|
|
723
|
-
level?: LevelOfPlayEnum[];
|
|
724
|
-
description?: string;
|
|
725
|
-
GL?: string;
|
|
726
|
-
status: PublishingStatusEnum;
|
|
727
|
-
organizationId: number;
|
|
728
|
-
userCreatorId: number;
|
|
729
|
-
highlights: ProgramHighlights[];
|
|
730
|
-
longDescription?: string;
|
|
731
|
-
requiredProductIds: number[];
|
|
732
|
-
}
|
|
733
|
-
export declare class CreateProgramDto extends BaseProgramDto {
|
|
734
|
-
}
|
|
735
|
-
export declare class UpdateProgramDto extends BaseProgramDto {
|
|
736
|
-
programId: number;
|
|
737
|
-
mainMediaId: number;
|
|
738
|
-
}
|
|
739
|
-
export declare class UpdateProgramStatusDto {
|
|
740
|
-
programId: number;
|
|
741
|
-
status: PublishingStatusEnum;
|
|
742
|
-
}
|
|
743
|
-
export declare class ProgramHighlightDto {
|
|
744
|
-
data: string;
|
|
745
|
-
ordinal: number;
|
|
746
|
-
type: ProgramHighlightTypeEnum;
|
|
747
|
-
title: string;
|
|
748
|
-
}
|
|
749
705
|
export declare class FindProgramSeasonsByProgramIdDto {
|
|
750
706
|
programId: number;
|
|
751
707
|
}
|
|
@@ -936,6 +892,50 @@ export declare class MoveParticipantDto {
|
|
|
936
892
|
resourceId: number;
|
|
937
893
|
invoiceId: number;
|
|
938
894
|
}
|
|
895
|
+
export declare class FindProgramsByOrganizationIdDto {
|
|
896
|
+
organizationId: number;
|
|
897
|
+
programType?: ProgramTypesEnum;
|
|
898
|
+
}
|
|
899
|
+
export declare class FindProgramByIdDto {
|
|
900
|
+
programId: number;
|
|
901
|
+
}
|
|
902
|
+
export declare class FindProgramByOrgIdAndIdDto {
|
|
903
|
+
programId: number;
|
|
904
|
+
organizationId: number;
|
|
905
|
+
}
|
|
906
|
+
export declare class BaseProgramDto {
|
|
907
|
+
type: ProgramTypesEnum;
|
|
908
|
+
name: string;
|
|
909
|
+
sport: SportsEnum;
|
|
910
|
+
minAge: string;
|
|
911
|
+
maxAge: string;
|
|
912
|
+
gender: GenderEnum;
|
|
913
|
+
level?: LevelOfPlayEnum[];
|
|
914
|
+
description?: string;
|
|
915
|
+
GL?: string;
|
|
916
|
+
status: PublishingStatusEnum;
|
|
917
|
+
organizationId: number;
|
|
918
|
+
userCreatorId: number;
|
|
919
|
+
highlights: ProgramHighlights[];
|
|
920
|
+
longDescription?: string;
|
|
921
|
+
requiredProductIds: number[];
|
|
922
|
+
}
|
|
923
|
+
export declare class CreateProgramDto extends BaseProgramDto {
|
|
924
|
+
}
|
|
925
|
+
export declare class UpdateProgramDto extends BaseProgramDto {
|
|
926
|
+
programId: number;
|
|
927
|
+
mainMediaId: number;
|
|
928
|
+
}
|
|
929
|
+
export declare class UpdateProgramStatusDto {
|
|
930
|
+
programId: number;
|
|
931
|
+
status: PublishingStatusEnum;
|
|
932
|
+
}
|
|
933
|
+
export declare class ProgramHighlightDto {
|
|
934
|
+
data: string;
|
|
935
|
+
ordinal: number;
|
|
936
|
+
type: ProgramHighlightTypeEnum;
|
|
937
|
+
title: string;
|
|
938
|
+
}
|
|
939
939
|
export declare class PurchasePaymentDto {
|
|
940
940
|
token: string;
|
|
941
941
|
type: PaymentMethodTypeEnum;
|
|
@@ -1096,19 +1096,6 @@ export declare class FindByFamilyAccountIdDto {
|
|
|
1096
1096
|
export declare class FindByUserAndOrganizationDto extends FindByUserIdDto {
|
|
1097
1097
|
organizationId: number;
|
|
1098
1098
|
}
|
|
1099
|
-
export declare class ActivityTimes extends BondBaseEntity {
|
|
1100
|
-
parentType: ResourceNameTypeEnum | ProductTypesEnum;
|
|
1101
|
-
parentId: number;
|
|
1102
|
-
dayOfWeek: number;
|
|
1103
|
-
open: string;
|
|
1104
|
-
close: string;
|
|
1105
|
-
deletedAt?: Date;
|
|
1106
|
-
program: ProgramSeason;
|
|
1107
|
-
availabilityStartDate: string;
|
|
1108
|
-
availabilityEndDate: string;
|
|
1109
|
-
proudct: Product;
|
|
1110
|
-
event: Event;
|
|
1111
|
-
}
|
|
1112
1099
|
export declare class ActivityLogRecord extends BondBaseEntity {
|
|
1113
1100
|
entityType: ResourceNameTypeEnum;
|
|
1114
1101
|
entityId: number;
|
|
@@ -1122,6 +1109,19 @@ export declare class ActivityLogRecord extends BondBaseEntity {
|
|
|
1122
1109
|
oldValue?: any;
|
|
1123
1110
|
newValue?: any;
|
|
1124
1111
|
}
|
|
1112
|
+
export declare class ActivityTimes extends BondBaseEntity {
|
|
1113
|
+
parentType: ResourceNameTypeEnum | ProductTypesEnum;
|
|
1114
|
+
parentId: number;
|
|
1115
|
+
dayOfWeek: number;
|
|
1116
|
+
open: string;
|
|
1117
|
+
close: string;
|
|
1118
|
+
deletedAt?: Date;
|
|
1119
|
+
program: ProgramSeason;
|
|
1120
|
+
availabilityStartDate: string;
|
|
1121
|
+
availabilityEndDate: string;
|
|
1122
|
+
proudct: Product;
|
|
1123
|
+
event: Event;
|
|
1124
|
+
}
|
|
1125
1125
|
export declare class Address extends BondBaseEntity {
|
|
1126
1126
|
city?: string;
|
|
1127
1127
|
street?: string;
|
|
@@ -1948,6 +1948,23 @@ export declare class ProductsReservedForCustomers extends OrganizationConnection
|
|
|
1948
1948
|
deletedAt?: Date;
|
|
1949
1949
|
product: Product;
|
|
1950
1950
|
}
|
|
1951
|
+
export declare class ProductsUsers extends OrganizationConnectionBaseEntity {
|
|
1952
|
+
productId: number;
|
|
1953
|
+
userId: number;
|
|
1954
|
+
user?: User;
|
|
1955
|
+
paymentStatus: PaymentStatusEnum;
|
|
1956
|
+
productName: string;
|
|
1957
|
+
productPrice: number;
|
|
1958
|
+
productQuantity: number;
|
|
1959
|
+
productQuantityLeft: number;
|
|
1960
|
+
productPriceCurrency: CurrencyEnum;
|
|
1961
|
+
ordinal?: number;
|
|
1962
|
+
purchasedResources: PurchasedResource[];
|
|
1963
|
+
product: Product;
|
|
1964
|
+
lineItem: LineItems;
|
|
1965
|
+
slots?: Slot[];
|
|
1966
|
+
addons?: Addon[];
|
|
1967
|
+
}
|
|
1951
1968
|
export declare class Program extends BondBaseEntity {
|
|
1952
1969
|
type: ProgramTypesEnum;
|
|
1953
1970
|
name: string;
|
|
@@ -1970,23 +1987,6 @@ export declare class Program extends BondBaseEntity {
|
|
|
1970
1987
|
programSeason: ProgramSeason[];
|
|
1971
1988
|
purchasedResources: PurchasedResource[];
|
|
1972
1989
|
}
|
|
1973
|
-
export declare class ProductsUsers extends OrganizationConnectionBaseEntity {
|
|
1974
|
-
productId: number;
|
|
1975
|
-
userId: number;
|
|
1976
|
-
user?: User;
|
|
1977
|
-
paymentStatus: PaymentStatusEnum;
|
|
1978
|
-
productName: string;
|
|
1979
|
-
productPrice: number;
|
|
1980
|
-
productQuantity: number;
|
|
1981
|
-
productQuantityLeft: number;
|
|
1982
|
-
productPriceCurrency: CurrencyEnum;
|
|
1983
|
-
ordinal?: number;
|
|
1984
|
-
purchasedResources: PurchasedResource[];
|
|
1985
|
-
product: Product;
|
|
1986
|
-
lineItem: LineItems;
|
|
1987
|
-
slots?: Slot[];
|
|
1988
|
-
addons?: Addon[];
|
|
1989
|
-
}
|
|
1990
1990
|
export declare class ProgramHighlights extends BondBaseEntity {
|
|
1991
1991
|
type: ProgramHighlightTypeEnum;
|
|
1992
1992
|
ordinal: number | null;
|
|
@@ -2166,6 +2166,13 @@ export declare class Resource extends OrganizationConnectionBaseEntity {
|
|
|
2166
2166
|
purchasedResources: PurchasedResource[];
|
|
2167
2167
|
linkSEO: string;
|
|
2168
2168
|
}
|
|
2169
|
+
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2170
|
+
name: string;
|
|
2171
|
+
facilityId: number;
|
|
2172
|
+
parentSlotId: number;
|
|
2173
|
+
childrenSlotIds: number[];
|
|
2174
|
+
deletedAt?: Date;
|
|
2175
|
+
}
|
|
2169
2176
|
export declare class School extends BondBaseEntity {
|
|
2170
2177
|
name: string | null;
|
|
2171
2178
|
alias: string[] | null;
|
|
@@ -2209,13 +2216,6 @@ export declare class SeasonPool extends BondBaseEntity {
|
|
|
2209
2216
|
purchasedResource: PurchasedResource;
|
|
2210
2217
|
season: LeagueSeason;
|
|
2211
2218
|
}
|
|
2212
|
-
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2213
|
-
name: string;
|
|
2214
|
-
facilityId: number;
|
|
2215
|
-
parentSlotId: number;
|
|
2216
|
-
childrenSlotIds: number[];
|
|
2217
|
-
deletedAt?: Date;
|
|
2218
|
-
}
|
|
2219
2219
|
export declare class SeasonTeam extends BondBaseEntity {
|
|
2220
2220
|
seasonId: number | null;
|
|
2221
2221
|
teamId: number | null;
|
|
@@ -3449,6 +3449,11 @@ export declare class SeasonRounds extends BondBaseEntity {
|
|
|
3449
3449
|
divisionId?: number;
|
|
3450
3450
|
name: string;
|
|
3451
3451
|
}
|
|
3452
|
+
export declare class TeamEvents extends BondBaseEntity {
|
|
3453
|
+
teamId: number | null;
|
|
3454
|
+
eventId: number | null;
|
|
3455
|
+
status: number | null;
|
|
3456
|
+
}
|
|
3452
3457
|
export declare class Lock extends BondBaseEntity {
|
|
3453
3458
|
name: string;
|
|
3454
3459
|
locked?: Date;
|
|
@@ -3462,11 +3467,6 @@ export interface ValidationReason {
|
|
|
3462
3467
|
valid: boolean;
|
|
3463
3468
|
reason?: string;
|
|
3464
3469
|
}
|
|
3465
|
-
export declare class TeamEvents extends BondBaseEntity {
|
|
3466
|
-
teamId: number | null;
|
|
3467
|
-
eventId: number | null;
|
|
3468
|
-
status: number | null;
|
|
3469
|
-
}
|
|
3470
3470
|
export interface PaymentStatus {
|
|
3471
3471
|
parentId: number;
|
|
3472
3472
|
paymentStatus: ReservationPaymentStatusEnum;
|
|
@@ -3485,6 +3485,11 @@ export declare class CreateMonitorConfigDto {
|
|
|
3485
3485
|
code: string;
|
|
3486
3486
|
config: any;
|
|
3487
3487
|
}
|
|
3488
|
+
export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
|
|
3489
|
+
facilityId: number;
|
|
3490
|
+
code: string;
|
|
3491
|
+
config?: any;
|
|
3492
|
+
}
|
|
3488
3493
|
export declare class NotifyTracker extends BondBaseEntity {
|
|
3489
3494
|
userId: number;
|
|
3490
3495
|
organizationId: number;
|
|
@@ -3492,10 +3497,102 @@ export declare class NotifyTracker extends BondBaseEntity {
|
|
|
3492
3497
|
notfiyMethodtype: NotifyMethodEnum;
|
|
3493
3498
|
destination: string;
|
|
3494
3499
|
}
|
|
3495
|
-
export declare class
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3500
|
+
export declare class ByOrganizationIdDto {
|
|
3501
|
+
organizationId: number;
|
|
3502
|
+
}
|
|
3503
|
+
export declare class OptionalFindByOrganizationIdDto {
|
|
3504
|
+
organizationId?: number;
|
|
3505
|
+
}
|
|
3506
|
+
export declare class FindUnallocatedEventsIdsFiltersDto {
|
|
3507
|
+
programsIds?: string;
|
|
3508
|
+
sessionsIds?: string;
|
|
3509
|
+
segmentsIds?: string;
|
|
3510
|
+
startDate?: string;
|
|
3511
|
+
endDate?: string;
|
|
3512
|
+
months?: string;
|
|
3513
|
+
dow?: string;
|
|
3514
|
+
}
|
|
3515
|
+
export declare class FindUnallocatedEventsFiltersDto extends PaginationQuery {
|
|
3516
|
+
programsIds?: string;
|
|
3517
|
+
sessionsIds?: string;
|
|
3518
|
+
segmentsIds?: string;
|
|
3519
|
+
startDate?: string;
|
|
3520
|
+
endDate?: string;
|
|
3521
|
+
months?: string;
|
|
3522
|
+
dow?: string;
|
|
3523
|
+
}
|
|
3524
|
+
export declare class Organization extends BondBaseEntity {
|
|
3525
|
+
name: string | null;
|
|
3526
|
+
email: string | null;
|
|
3527
|
+
twitter: string | null;
|
|
3528
|
+
facebook: string | null;
|
|
3529
|
+
instagram: string | null;
|
|
3530
|
+
website: string | null;
|
|
3531
|
+
blog: string | null;
|
|
3532
|
+
phoneNumber: string | null;
|
|
3533
|
+
waiverDoc: string | null;
|
|
3534
|
+
about: string | null;
|
|
3535
|
+
tagline: string | null;
|
|
3536
|
+
status: number | null;
|
|
3537
|
+
addressId: number | null;
|
|
3538
|
+
merchantId: number | null;
|
|
3539
|
+
userCreatorId: number | null;
|
|
3540
|
+
parentId: number | null;
|
|
3541
|
+
paymentSettings: object | null;
|
|
3542
|
+
settings: object | null;
|
|
3543
|
+
isClaimed: boolean | null;
|
|
3544
|
+
sports: number[] | null;
|
|
3545
|
+
mainMediaId: number | null;
|
|
3546
|
+
deletedAt: Date | null;
|
|
3547
|
+
organizationActivityTypes: number[] | null;
|
|
3548
|
+
organizationTypes: number[] | null;
|
|
3549
|
+
organizationAudienceTypes: number[] | null;
|
|
3550
|
+
organizationGenders: number[] | null;
|
|
3551
|
+
questionnaireId: number | null;
|
|
3552
|
+
membershipQuestionnaireId: number | null;
|
|
3553
|
+
feeRate: number;
|
|
3554
|
+
feeAddDollarRate: number;
|
|
3555
|
+
achFeeRate: number;
|
|
3556
|
+
achFeeAddDollarRate: number;
|
|
3557
|
+
maxAchFee: number;
|
|
3558
|
+
cashFeeRate: number;
|
|
3559
|
+
cashFeeAddDollarRate: number;
|
|
3560
|
+
terminalFeeRate: number;
|
|
3561
|
+
terminalFeeAddDollarRate: number;
|
|
3562
|
+
checkFeeRate: number;
|
|
3563
|
+
checkFeeAddDollarRate: number;
|
|
3564
|
+
otherFeeRate: number;
|
|
3565
|
+
otherFeeAddDollarRate: number;
|
|
3566
|
+
balanceFeeRate: number;
|
|
3567
|
+
balanceFeeAddDollarRate: number;
|
|
3568
|
+
address: Address;
|
|
3569
|
+
mainMedia: Media;
|
|
3570
|
+
brandings: OrganizationBranding[];
|
|
3571
|
+
brandingsV2?: OrganizationBranding[];
|
|
3572
|
+
}
|
|
3573
|
+
export declare class OrganizationBranding extends OrganizationConnectionBaseEntity {
|
|
3574
|
+
key?: string;
|
|
3575
|
+
vaule?: string;
|
|
3576
|
+
version: number;
|
|
3577
|
+
organization: Organization;
|
|
3578
|
+
}
|
|
3579
|
+
export declare class OrganizationSettings extends OrganizationConnectionBaseEntity {
|
|
3580
|
+
mainAdminUserId?: number;
|
|
3581
|
+
}
|
|
3582
|
+
export declare class OrganizationUsers extends BondBaseEntity {
|
|
3583
|
+
organisationId: number | null;
|
|
3584
|
+
userId: number | null;
|
|
3585
|
+
}
|
|
3586
|
+
export interface UnallocatedEventsFilters {
|
|
3587
|
+
programsIds?: number[];
|
|
3588
|
+
sessionsIds?: number[];
|
|
3589
|
+
segmentsIds?: number[];
|
|
3590
|
+
durations?: Duration[];
|
|
3591
|
+
daysOfWeek?: number[];
|
|
3592
|
+
}
|
|
3593
|
+
export interface Duration {
|
|
3594
|
+
startDate: string;
|
|
3595
|
+
endDate: string;
|
|
3499
3596
|
}
|
|
3500
3597
|
export declare class CustomerIdDto {
|
|
3501
3598
|
customerId: number;
|
|
@@ -3686,103 +3783,6 @@ export interface RefundResultWithLineItemsDict extends PaymentsResults {
|
|
|
3686
3783
|
failedLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3687
3784
|
totalAmountProcessed: number;
|
|
3688
3785
|
}
|
|
3689
|
-
export declare class ByOrganizationIdDto {
|
|
3690
|
-
organizationId: number;
|
|
3691
|
-
}
|
|
3692
|
-
export declare class OptionalFindByOrganizationIdDto {
|
|
3693
|
-
organizationId?: number;
|
|
3694
|
-
}
|
|
3695
|
-
export declare class FindUnallocatedEventsIdsFiltersDto {
|
|
3696
|
-
programsIds?: string;
|
|
3697
|
-
sessionsIds?: string;
|
|
3698
|
-
segmentsIds?: string;
|
|
3699
|
-
startDate?: string;
|
|
3700
|
-
endDate?: string;
|
|
3701
|
-
months?: string;
|
|
3702
|
-
dow?: string;
|
|
3703
|
-
}
|
|
3704
|
-
export declare class FindUnallocatedEventsFiltersDto extends PaginationQuery {
|
|
3705
|
-
programsIds?: string;
|
|
3706
|
-
sessionsIds?: string;
|
|
3707
|
-
segmentsIds?: string;
|
|
3708
|
-
startDate?: string;
|
|
3709
|
-
endDate?: string;
|
|
3710
|
-
months?: string;
|
|
3711
|
-
dow?: string;
|
|
3712
|
-
}
|
|
3713
|
-
export declare class Organization extends BondBaseEntity {
|
|
3714
|
-
name: string | null;
|
|
3715
|
-
email: string | null;
|
|
3716
|
-
twitter: string | null;
|
|
3717
|
-
facebook: string | null;
|
|
3718
|
-
instagram: string | null;
|
|
3719
|
-
website: string | null;
|
|
3720
|
-
blog: string | null;
|
|
3721
|
-
phoneNumber: string | null;
|
|
3722
|
-
waiverDoc: string | null;
|
|
3723
|
-
about: string | null;
|
|
3724
|
-
tagline: string | null;
|
|
3725
|
-
status: number | null;
|
|
3726
|
-
addressId: number | null;
|
|
3727
|
-
merchantId: number | null;
|
|
3728
|
-
userCreatorId: number | null;
|
|
3729
|
-
parentId: number | null;
|
|
3730
|
-
paymentSettings: object | null;
|
|
3731
|
-
settings: object | null;
|
|
3732
|
-
isClaimed: boolean | null;
|
|
3733
|
-
sports: number[] | null;
|
|
3734
|
-
mainMediaId: number | null;
|
|
3735
|
-
deletedAt: Date | null;
|
|
3736
|
-
organizationActivityTypes: number[] | null;
|
|
3737
|
-
organizationTypes: number[] | null;
|
|
3738
|
-
organizationAudienceTypes: number[] | null;
|
|
3739
|
-
organizationGenders: number[] | null;
|
|
3740
|
-
questionnaireId: number | null;
|
|
3741
|
-
membershipQuestionnaireId: number | null;
|
|
3742
|
-
feeRate: number;
|
|
3743
|
-
feeAddDollarRate: number;
|
|
3744
|
-
achFeeRate: number;
|
|
3745
|
-
achFeeAddDollarRate: number;
|
|
3746
|
-
maxAchFee: number;
|
|
3747
|
-
cashFeeRate: number;
|
|
3748
|
-
cashFeeAddDollarRate: number;
|
|
3749
|
-
terminalFeeRate: number;
|
|
3750
|
-
terminalFeeAddDollarRate: number;
|
|
3751
|
-
checkFeeRate: number;
|
|
3752
|
-
checkFeeAddDollarRate: number;
|
|
3753
|
-
otherFeeRate: number;
|
|
3754
|
-
otherFeeAddDollarRate: number;
|
|
3755
|
-
balanceFeeRate: number;
|
|
3756
|
-
balanceFeeAddDollarRate: number;
|
|
3757
|
-
address: Address;
|
|
3758
|
-
mainMedia: Media;
|
|
3759
|
-
brandings: OrganizationBranding[];
|
|
3760
|
-
brandingsV2?: OrganizationBranding[];
|
|
3761
|
-
}
|
|
3762
|
-
export declare class OrganizationBranding extends OrganizationConnectionBaseEntity {
|
|
3763
|
-
key?: string;
|
|
3764
|
-
vaule?: string;
|
|
3765
|
-
version: number;
|
|
3766
|
-
organization: Organization;
|
|
3767
|
-
}
|
|
3768
|
-
export declare class OrganizationSettings extends OrganizationConnectionBaseEntity {
|
|
3769
|
-
mainAdminUserId?: number;
|
|
3770
|
-
}
|
|
3771
|
-
export declare class OrganizationUsers extends BondBaseEntity {
|
|
3772
|
-
organisationId: number | null;
|
|
3773
|
-
userId: number | null;
|
|
3774
|
-
}
|
|
3775
|
-
export interface UnallocatedEventsFilters {
|
|
3776
|
-
programsIds?: number[];
|
|
3777
|
-
sessionsIds?: number[];
|
|
3778
|
-
segmentsIds?: number[];
|
|
3779
|
-
durations?: Duration[];
|
|
3780
|
-
daysOfWeek?: number[];
|
|
3781
|
-
}
|
|
3782
|
-
export interface Duration {
|
|
3783
|
-
startDate: string;
|
|
3784
|
-
endDate: string;
|
|
3785
|
-
}
|
|
3786
3786
|
export declare class AddonDto {
|
|
3787
3787
|
productId: number;
|
|
3788
3788
|
id?: number;
|