@bondsports/types 0.0.113 → 0.0.115
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 +169 -165
- 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
|
@@ -2,6 +2,13 @@ import { BaseEntity } from 'typeorm';
|
|
|
2
2
|
import { Stripe } from 'stripe';
|
|
3
3
|
import moment from 'moment';
|
|
4
4
|
export { TypesProvider } from './provider';
|
|
5
|
+
export declare class BasicActivityTimesDto {
|
|
6
|
+
dayOfWeek: number;
|
|
7
|
+
close: string;
|
|
8
|
+
open: string;
|
|
9
|
+
availabilityStartDate?: string;
|
|
10
|
+
availabilityEndDate?: string;
|
|
11
|
+
}
|
|
5
12
|
export declare class QuestionAnswersDto {
|
|
6
13
|
questionId: number;
|
|
7
14
|
value: any;
|
|
@@ -284,13 +291,6 @@ export declare class GetGlCodeDto {
|
|
|
284
291
|
createdAt: Date;
|
|
285
292
|
updatedAt: Date;
|
|
286
293
|
}
|
|
287
|
-
export declare class BasicActivityTimesDto {
|
|
288
|
-
dayOfWeek: number;
|
|
289
|
-
close: string;
|
|
290
|
-
open: string;
|
|
291
|
-
availabilityStartDate?: string;
|
|
292
|
-
availabilityEndDate?: string;
|
|
293
|
-
}
|
|
294
294
|
export declare class CreateMembershipDto {
|
|
295
295
|
organizationId: number;
|
|
296
296
|
name: string;
|
|
@@ -462,6 +462,24 @@ export declare class MoveTeamOrMemberDto implements IMoveSeason {
|
|
|
462
462
|
export declare class MoveTeamOrMembersByCsvDTO {
|
|
463
463
|
fileName: string;
|
|
464
464
|
}
|
|
465
|
+
export declare class CreateUpdateVariantsDto {
|
|
466
|
+
organizationId: number;
|
|
467
|
+
parentProductId: number;
|
|
468
|
+
variantTitles: VariantTitleDto[];
|
|
469
|
+
variants: VariantDto[];
|
|
470
|
+
}
|
|
471
|
+
export declare class VariantTitleDto {
|
|
472
|
+
titleName: string;
|
|
473
|
+
titleId: number;
|
|
474
|
+
}
|
|
475
|
+
export declare class VariantDto {
|
|
476
|
+
name: string;
|
|
477
|
+
price: number;
|
|
478
|
+
variantId: number;
|
|
479
|
+
currency: CurrencyEnum;
|
|
480
|
+
startDate: Date;
|
|
481
|
+
endDate: Date;
|
|
482
|
+
}
|
|
465
483
|
export declare class FindByProductIdDto {
|
|
466
484
|
productId: number;
|
|
467
485
|
}
|
|
@@ -683,24 +701,6 @@ export declare class createResourceDto {
|
|
|
683
701
|
export declare class archiveDto {
|
|
684
702
|
isArchive: boolean;
|
|
685
703
|
}
|
|
686
|
-
export declare class CreateUpdateVariantsDto {
|
|
687
|
-
organizationId: number;
|
|
688
|
-
parentProductId: number;
|
|
689
|
-
variantTitles: VariantTitleDto[];
|
|
690
|
-
variants: VariantDto[];
|
|
691
|
-
}
|
|
692
|
-
export declare class VariantTitleDto {
|
|
693
|
-
titleName: string;
|
|
694
|
-
titleId: number;
|
|
695
|
-
}
|
|
696
|
-
export declare class VariantDto {
|
|
697
|
-
name: string;
|
|
698
|
-
price: number;
|
|
699
|
-
variantId: number;
|
|
700
|
-
currency: CurrencyEnum;
|
|
701
|
-
startDate: Date;
|
|
702
|
-
endDate: Date;
|
|
703
|
-
}
|
|
704
704
|
export declare class FindProgramSeasonsByProgramIdDto {
|
|
705
705
|
programId: number;
|
|
706
706
|
}
|
|
@@ -1017,6 +1017,25 @@ export declare class ResourceDto {
|
|
|
1017
1017
|
type: ResourceNameTypeEnum;
|
|
1018
1018
|
id: number;
|
|
1019
1019
|
}
|
|
1020
|
+
export declare class StripeCustomerIdDto {
|
|
1021
|
+
userId: number;
|
|
1022
|
+
}
|
|
1023
|
+
export declare class StripeCustomerPaymentMathodDto extends StripeCustomerIdDto {
|
|
1024
|
+
paymentMethodId: string;
|
|
1025
|
+
}
|
|
1026
|
+
export declare class AddACHTokenToCustomerDto {
|
|
1027
|
+
publicToken: string;
|
|
1028
|
+
accountId: string;
|
|
1029
|
+
}
|
|
1030
|
+
export declare class FindByUserIdDto {
|
|
1031
|
+
userId: number;
|
|
1032
|
+
}
|
|
1033
|
+
export declare class FindByFamilyAccountIdDto {
|
|
1034
|
+
familyAccountId?: number;
|
|
1035
|
+
}
|
|
1036
|
+
export declare class FindByUserAndOrganizationDto extends FindByUserIdDto {
|
|
1037
|
+
organizationId: number;
|
|
1038
|
+
}
|
|
1020
1039
|
export declare class SpaceByIdDto {
|
|
1021
1040
|
spaceId: number;
|
|
1022
1041
|
}
|
|
@@ -1073,25 +1092,6 @@ export declare class FindResourcesOptionsDto extends PaginationQuery {
|
|
|
1073
1092
|
types?: string;
|
|
1074
1093
|
resourcesIds?: string;
|
|
1075
1094
|
}
|
|
1076
|
-
export declare class StripeCustomerIdDto {
|
|
1077
|
-
userId: number;
|
|
1078
|
-
}
|
|
1079
|
-
export declare class StripeCustomerPaymentMathodDto extends StripeCustomerIdDto {
|
|
1080
|
-
paymentMethodId: string;
|
|
1081
|
-
}
|
|
1082
|
-
export declare class AddACHTokenToCustomerDto {
|
|
1083
|
-
publicToken: string;
|
|
1084
|
-
accountId: string;
|
|
1085
|
-
}
|
|
1086
|
-
export declare class FindByUserIdDto {
|
|
1087
|
-
userId: number;
|
|
1088
|
-
}
|
|
1089
|
-
export declare class FindByFamilyAccountIdDto {
|
|
1090
|
-
familyAccountId?: number;
|
|
1091
|
-
}
|
|
1092
|
-
export declare class FindByUserAndOrganizationDto extends FindByUserIdDto {
|
|
1093
|
-
organizationId: number;
|
|
1094
|
-
}
|
|
1095
1095
|
export declare class ActivityLogRecord extends BondBaseEntity {
|
|
1096
1096
|
entityType: ResourceNameTypeEnum;
|
|
1097
1097
|
entityId: number;
|
|
@@ -1407,22 +1407,6 @@ export declare class FutureInstallment extends OrganizationConnectionBaseEntity
|
|
|
1407
1407
|
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1408
1408
|
code: string;
|
|
1409
1409
|
}
|
|
1410
|
-
export declare class Group extends BondBaseEntity {
|
|
1411
|
-
name: string;
|
|
1412
|
-
description?: string;
|
|
1413
|
-
status: GroupStatusEnum;
|
|
1414
|
-
maxCapacity?: number;
|
|
1415
|
-
mainMediaId?: number;
|
|
1416
|
-
minAgeYears?: number;
|
|
1417
|
-
maxAgeYears?: number;
|
|
1418
|
-
gender: GenderEnum;
|
|
1419
|
-
levelOfPlay?: LevelOfPlayEnum[];
|
|
1420
|
-
sports: SportsEnum[];
|
|
1421
|
-
questionnaires?: number[];
|
|
1422
|
-
captainUserId?: number;
|
|
1423
|
-
members: ISeasonAttendeeInfo[];
|
|
1424
|
-
users: User[];
|
|
1425
|
-
}
|
|
1426
1410
|
export declare class GroupItemsPricing extends OrganizationConnectionBaseEntity {
|
|
1427
1411
|
groupId: number;
|
|
1428
1412
|
itemId: number;
|
|
@@ -1441,6 +1425,22 @@ export declare class GroupsInDivisions extends BondBaseEntity {
|
|
|
1441
1425
|
divisionId: number;
|
|
1442
1426
|
deletedAt?: Date;
|
|
1443
1427
|
}
|
|
1428
|
+
export declare class Group extends BondBaseEntity {
|
|
1429
|
+
name: string;
|
|
1430
|
+
description?: string;
|
|
1431
|
+
status: GroupStatusEnum;
|
|
1432
|
+
maxCapacity?: number;
|
|
1433
|
+
mainMediaId?: number;
|
|
1434
|
+
minAgeYears?: number;
|
|
1435
|
+
maxAgeYears?: number;
|
|
1436
|
+
gender: GenderEnum;
|
|
1437
|
+
levelOfPlay?: LevelOfPlayEnum[];
|
|
1438
|
+
sports: SportsEnum[];
|
|
1439
|
+
questionnaires?: number[];
|
|
1440
|
+
captainUserId?: number;
|
|
1441
|
+
members: ISeasonAttendeeInfo[];
|
|
1442
|
+
users: User[];
|
|
1443
|
+
}
|
|
1444
1444
|
export declare class Invoice extends BondBaseEntity {
|
|
1445
1445
|
invoiceId: string | null;
|
|
1446
1446
|
price: number | null;
|
|
@@ -2099,38 +2099,6 @@ export declare class RegistrationConstraint extends OrganizationConnectionBaseEn
|
|
|
2099
2099
|
closeTime?: string;
|
|
2100
2100
|
deletedAt?: Date;
|
|
2101
2101
|
}
|
|
2102
|
-
export declare class Reservations extends OrganizationConnectionBaseEntity {
|
|
2103
|
-
name?: string;
|
|
2104
|
-
description?: string;
|
|
2105
|
-
color?: string;
|
|
2106
|
-
status?: string;
|
|
2107
|
-
privacySetting?: string;
|
|
2108
|
-
reservationType?: string;
|
|
2109
|
-
invoiceId?: string;
|
|
2110
|
-
customerId?: number;
|
|
2111
|
-
length?: number;
|
|
2112
|
-
price?: number;
|
|
2113
|
-
sessions?: number;
|
|
2114
|
-
percentage?: number;
|
|
2115
|
-
paymentStatus?: number;
|
|
2116
|
-
paymentId?: number;
|
|
2117
|
-
startTime?: string;
|
|
2118
|
-
dayOfWeek?: number;
|
|
2119
|
-
resourcePackageId?: number;
|
|
2120
|
-
resourcePackageAmount?: number;
|
|
2121
|
-
startDate?: Date;
|
|
2122
|
-
endDate?: Date;
|
|
2123
|
-
originalReservationId?: number;
|
|
2124
|
-
creatorId?: number;
|
|
2125
|
-
creatorType?: string;
|
|
2126
|
-
userCreatorId?: number;
|
|
2127
|
-
ownerId?: number;
|
|
2128
|
-
sportType?: number;
|
|
2129
|
-
participantType?: string;
|
|
2130
|
-
deletedAt?: Date;
|
|
2131
|
-
publicNotes?: string;
|
|
2132
|
-
slots?: Slot[];
|
|
2133
|
-
}
|
|
2134
2102
|
export declare class Resource extends OrganizationConnectionBaseEntity {
|
|
2135
2103
|
name: string;
|
|
2136
2104
|
resourceType: ResourceTypeEnum;
|
|
@@ -2166,6 +2134,38 @@ export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
|
2166
2134
|
childrenSlotIds: number[];
|
|
2167
2135
|
deletedAt?: Date;
|
|
2168
2136
|
}
|
|
2137
|
+
export declare class Reservations extends OrganizationConnectionBaseEntity {
|
|
2138
|
+
name?: string;
|
|
2139
|
+
description?: string;
|
|
2140
|
+
color?: string;
|
|
2141
|
+
status?: string;
|
|
2142
|
+
privacySetting?: string;
|
|
2143
|
+
reservationType?: string;
|
|
2144
|
+
invoiceId?: string;
|
|
2145
|
+
customerId?: number;
|
|
2146
|
+
length?: number;
|
|
2147
|
+
price?: number;
|
|
2148
|
+
sessions?: number;
|
|
2149
|
+
percentage?: number;
|
|
2150
|
+
paymentStatus?: number;
|
|
2151
|
+
paymentId?: number;
|
|
2152
|
+
startTime?: string;
|
|
2153
|
+
dayOfWeek?: number;
|
|
2154
|
+
resourcePackageId?: number;
|
|
2155
|
+
resourcePackageAmount?: number;
|
|
2156
|
+
startDate?: Date;
|
|
2157
|
+
endDate?: Date;
|
|
2158
|
+
originalReservationId?: number;
|
|
2159
|
+
creatorId?: number;
|
|
2160
|
+
creatorType?: string;
|
|
2161
|
+
userCreatorId?: number;
|
|
2162
|
+
ownerId?: number;
|
|
2163
|
+
sportType?: number;
|
|
2164
|
+
participantType?: string;
|
|
2165
|
+
deletedAt?: Date;
|
|
2166
|
+
publicNotes?: string;
|
|
2167
|
+
slots?: Slot[];
|
|
2168
|
+
}
|
|
2169
2169
|
export declare class School extends BondBaseEntity {
|
|
2170
2170
|
name: string | null;
|
|
2171
2171
|
alias: string[] | null;
|
|
@@ -2372,12 +2372,6 @@ export declare class VariantTitle extends OrganizationConnectionBaseEntity {
|
|
|
2372
2372
|
name: string;
|
|
2373
2373
|
variants: Variant[];
|
|
2374
2374
|
}
|
|
2375
|
-
export declare class Variant extends OrganizationConnectionBaseEntity {
|
|
2376
|
-
name: string;
|
|
2377
|
-
variantTitleId: number;
|
|
2378
|
-
variantTitle: VariantTitle;
|
|
2379
|
-
deletedAt?: Date;
|
|
2380
|
-
}
|
|
2381
2375
|
export declare class WebflowOrganizationConfiguration extends OrganizationConnectionBaseEntity {
|
|
2382
2376
|
projectToken: string;
|
|
2383
2377
|
programTypesCollectionId?: string;
|
|
@@ -2386,6 +2380,12 @@ export declare class WebflowOrganizationConfiguration extends OrganizationConnec
|
|
|
2386
2380
|
membershipCollectionId?: string;
|
|
2387
2381
|
programsCollectionId?: string;
|
|
2388
2382
|
}
|
|
2383
|
+
export declare class Variant extends OrganizationConnectionBaseEntity {
|
|
2384
|
+
name: string;
|
|
2385
|
+
variantTitleId: number;
|
|
2386
|
+
variantTitle: VariantTitle;
|
|
2387
|
+
deletedAt?: Date;
|
|
2388
|
+
}
|
|
2389
2389
|
export declare enum EntitlementTermsTypesEnum {
|
|
2390
2390
|
QUESTION = "question",
|
|
2391
2391
|
CITY = "city",
|
|
@@ -3544,6 +3544,49 @@ export declare class OrganizationUsers extends BondBaseEntity {
|
|
|
3544
3544
|
organisationId: number | null;
|
|
3545
3545
|
userId: number | null;
|
|
3546
3546
|
}
|
|
3547
|
+
export interface PaymentResult {
|
|
3548
|
+
paymentMethodId: string;
|
|
3549
|
+
paymentMethodType: PaymentMethodTypeEnum;
|
|
3550
|
+
amount: number;
|
|
3551
|
+
receiptId?: number;
|
|
3552
|
+
paymentMethod4Digits?: string;
|
|
3553
|
+
errorMessage?: string;
|
|
3554
|
+
wasSuccessful: boolean;
|
|
3555
|
+
}
|
|
3556
|
+
export interface PaymentsResults {
|
|
3557
|
+
success: PaymentResult[];
|
|
3558
|
+
failed: PaymentResult[];
|
|
3559
|
+
}
|
|
3560
|
+
export interface InvoicePaymentSum {
|
|
3561
|
+
priceSum: number;
|
|
3562
|
+
paidSum: number;
|
|
3563
|
+
}
|
|
3564
|
+
export interface ExtendedLineItems {
|
|
3565
|
+
memberships: LineItems[];
|
|
3566
|
+
programs: LineItems[];
|
|
3567
|
+
leagues: LineItems[];
|
|
3568
|
+
rentals: LineItems[];
|
|
3569
|
+
products: LineItems[];
|
|
3570
|
+
events: LineItems[];
|
|
3571
|
+
}
|
|
3572
|
+
export declare class ByPaymentFilter extends PaginationQuery {
|
|
3573
|
+
paymentType?: string;
|
|
3574
|
+
paymentStatus?: string;
|
|
3575
|
+
}
|
|
3576
|
+
export declare class FindPayments extends ByPaymentFilter {
|
|
3577
|
+
id?: number;
|
|
3578
|
+
months?: string;
|
|
3579
|
+
}
|
|
3580
|
+
export interface RefundResult extends PaymentsResults {
|
|
3581
|
+
successfulLineItems: RefundLineItemAmountDto[];
|
|
3582
|
+
failedLineItems: RefundLineItemAmountDto[];
|
|
3583
|
+
invoice?: Invoice;
|
|
3584
|
+
}
|
|
3585
|
+
export interface RefundResultWithLineItemsDict extends PaymentsResults {
|
|
3586
|
+
successfulLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3587
|
+
failedLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3588
|
+
totalAmountProcessed: number;
|
|
3589
|
+
}
|
|
3547
3590
|
export declare class CustomerIdDto {
|
|
3548
3591
|
customerId: number;
|
|
3549
3592
|
}
|
|
@@ -3572,12 +3615,6 @@ export declare class DiscountDto {
|
|
|
3572
3615
|
export declare class LineItemIdDto {
|
|
3573
3616
|
lineItemId: number;
|
|
3574
3617
|
}
|
|
3575
|
-
export declare class ByPaymentFilter extends PaginationQuery {
|
|
3576
|
-
paymentType?: string;
|
|
3577
|
-
paymentStatus?: string;
|
|
3578
|
-
}
|
|
3579
|
-
export declare class FindPayments extends ByPaymentFilter {
|
|
3580
|
-
}
|
|
3581
3618
|
export declare class BasicInstallmentDataDto extends ByOrganizationIdAndInvoiceIdDto {
|
|
3582
3619
|
userId: number;
|
|
3583
3620
|
}
|
|
@@ -3692,59 +3729,6 @@ export declare class VoidLineItemDto {
|
|
|
3692
3729
|
isEdit?: boolean;
|
|
3693
3730
|
amount?: number;
|
|
3694
3731
|
}
|
|
3695
|
-
export interface PaymentResult {
|
|
3696
|
-
paymentMethodId: string;
|
|
3697
|
-
paymentMethodType: PaymentMethodTypeEnum;
|
|
3698
|
-
amount: number;
|
|
3699
|
-
receiptId?: number;
|
|
3700
|
-
paymentMethod4Digits?: string;
|
|
3701
|
-
errorMessage?: string;
|
|
3702
|
-
wasSuccessful: boolean;
|
|
3703
|
-
}
|
|
3704
|
-
export interface PaymentsResults {
|
|
3705
|
-
success: PaymentResult[];
|
|
3706
|
-
failed: PaymentResult[];
|
|
3707
|
-
}
|
|
3708
|
-
export interface InvoicePaymentSum {
|
|
3709
|
-
priceSum: number;
|
|
3710
|
-
paidSum: number;
|
|
3711
|
-
}
|
|
3712
|
-
export interface ExtendedLineItems {
|
|
3713
|
-
memberships: LineItems[];
|
|
3714
|
-
programs: LineItems[];
|
|
3715
|
-
leagues: LineItems[];
|
|
3716
|
-
rentals: LineItems[];
|
|
3717
|
-
products: LineItems[];
|
|
3718
|
-
events: LineItems[];
|
|
3719
|
-
}
|
|
3720
|
-
export interface RefundResult extends PaymentsResults {
|
|
3721
|
-
successfulLineItems: RefundLineItemAmountDto[];
|
|
3722
|
-
failedLineItems: RefundLineItemAmountDto[];
|
|
3723
|
-
invoice?: Invoice;
|
|
3724
|
-
}
|
|
3725
|
-
export interface RefundResultWithLineItemsDict extends PaymentsResults {
|
|
3726
|
-
successfulLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3727
|
-
failedLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3728
|
-
totalAmountProcessed: number;
|
|
3729
|
-
}
|
|
3730
|
-
export declare class AddonDto extends ProductPricesDto {
|
|
3731
|
-
id?: number;
|
|
3732
|
-
}
|
|
3733
|
-
export declare class AddAddonsDto {
|
|
3734
|
-
addons: AddonDto[];
|
|
3735
|
-
}
|
|
3736
|
-
export declare class EditAddonsDto {
|
|
3737
|
-
addons: EditAddonDto[];
|
|
3738
|
-
}
|
|
3739
|
-
export declare class EditReservationAddonsDto extends EditAddonsDto {
|
|
3740
|
-
refundMeta?: EditItemsRefundMetaDto;
|
|
3741
|
-
}
|
|
3742
|
-
export declare class EditAddonDto {
|
|
3743
|
-
id: number;
|
|
3744
|
-
quantity: number;
|
|
3745
|
-
totalPrice: number;
|
|
3746
|
-
unitPrice?: number;
|
|
3747
|
-
}
|
|
3748
3732
|
export declare class InvoiceDto {
|
|
3749
3733
|
invoiceId?: string | null;
|
|
3750
3734
|
organizationId: number;
|
|
@@ -3819,14 +3803,6 @@ export declare class MaintenanceDto {
|
|
|
3819
3803
|
maintenanceDurationdurationType: DurationUnitTypesEnum;
|
|
3820
3804
|
maintenanceTiming: MaintenanceTimingEnum;
|
|
3821
3805
|
}
|
|
3822
|
-
export declare class PurchasedResourceDto {
|
|
3823
|
-
resourceId?: number;
|
|
3824
|
-
resourceType: ResourceNameTypeEnum;
|
|
3825
|
-
startDate?: string;
|
|
3826
|
-
startTime?: string;
|
|
3827
|
-
endDate?: string;
|
|
3828
|
-
endTime?: string;
|
|
3829
|
-
}
|
|
3830
3806
|
export declare class ReservationDto {
|
|
3831
3807
|
id?: number;
|
|
3832
3808
|
organizationId?: number;
|
|
@@ -3971,6 +3947,14 @@ export declare class EditReservationDetailsDto {
|
|
|
3971
3947
|
export declare class ValidateEditSlotsDto extends UpdateSlotsDto {
|
|
3972
3948
|
updateAddons?: boolean;
|
|
3973
3949
|
}
|
|
3950
|
+
export declare class PurchasedResourceDto {
|
|
3951
|
+
resourceId?: number;
|
|
3952
|
+
resourceType: ResourceNameTypeEnum;
|
|
3953
|
+
startDate?: string;
|
|
3954
|
+
startTime?: string;
|
|
3955
|
+
endDate?: string;
|
|
3956
|
+
endTime?: string;
|
|
3957
|
+
}
|
|
3974
3958
|
export declare class SegmentDto {
|
|
3975
3959
|
id?: number;
|
|
3976
3960
|
title: string;
|
|
@@ -4114,6 +4098,24 @@ export declare class BookingV1Dto {
|
|
|
4114
4098
|
cashPayment: boolean;
|
|
4115
4099
|
requestOnly: boolean;
|
|
4116
4100
|
}
|
|
4101
|
+
export declare class AddonDto extends ProductPricesDto {
|
|
4102
|
+
id?: number;
|
|
4103
|
+
}
|
|
4104
|
+
export declare class AddAddonsDto {
|
|
4105
|
+
addons: AddonDto[];
|
|
4106
|
+
}
|
|
4107
|
+
export declare class EditAddonsDto {
|
|
4108
|
+
addons: EditAddonDto[];
|
|
4109
|
+
}
|
|
4110
|
+
export declare class EditReservationAddonsDto extends EditAddonsDto {
|
|
4111
|
+
refundMeta?: EditItemsRefundMetaDto;
|
|
4112
|
+
}
|
|
4113
|
+
export declare class EditAddonDto {
|
|
4114
|
+
id: number;
|
|
4115
|
+
quantity: number;
|
|
4116
|
+
totalPrice: number;
|
|
4117
|
+
unitPrice?: number;
|
|
4118
|
+
}
|
|
4117
4119
|
export declare class Addon extends OrganizationConnectionBaseEntity {
|
|
4118
4120
|
parentId: number;
|
|
4119
4121
|
parentType: AddonParentTypeEnum;
|
|
@@ -4266,6 +4268,8 @@ export declare class Slot extends OrganizationConnectionBaseEntity {
|
|
|
4266
4268
|
price: number;
|
|
4267
4269
|
};
|
|
4268
4270
|
slotDurationType: string;
|
|
4271
|
+
previousProductUsersIds?: number[];
|
|
4272
|
+
previousProductUsers?: ProductsUsers[];
|
|
4269
4273
|
changeLineItemIds?: number[];
|
|
4270
4274
|
changeLineItems?: LineItems[];
|
|
4271
4275
|
updatedLineItem?: LineItems;
|