@bondsports/types 0.0.89 → 0.0.92
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 +180 -180
- 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
|
@@ -186,38 +186,6 @@ export declare class FindEventAttendeeOptionsDto extends PaginationRangeQuery {
|
|
|
186
186
|
isWaiverSigned?: string;
|
|
187
187
|
statuses?: string;
|
|
188
188
|
}
|
|
189
|
-
export declare class FindFamilyAccountsDto {
|
|
190
|
-
userId: number;
|
|
191
|
-
}
|
|
192
|
-
export declare class FindFamilyAccountsCustomerDto {
|
|
193
|
-
customerId: number;
|
|
194
|
-
organizationId: number;
|
|
195
|
-
}
|
|
196
|
-
export declare class FindUsersInFamilyAccountDto {
|
|
197
|
-
familyAccountId: number;
|
|
198
|
-
}
|
|
199
|
-
export declare class CreateFamilyAccountDto {
|
|
200
|
-
familyName: string;
|
|
201
|
-
userId: number;
|
|
202
|
-
}
|
|
203
|
-
export declare class UpdateFamilyAccountNameDto {
|
|
204
|
-
familyName: string;
|
|
205
|
-
familyAccountId: number;
|
|
206
|
-
}
|
|
207
|
-
export declare class AddUserToFamilyAccountDto {
|
|
208
|
-
familyAccountId: number;
|
|
209
|
-
isUserAdmin: boolean;
|
|
210
|
-
firstName: string;
|
|
211
|
-
lastName: string;
|
|
212
|
-
gender: GenderEnum;
|
|
213
|
-
birthDate: string;
|
|
214
|
-
sports?: number[];
|
|
215
|
-
email?: string;
|
|
216
|
-
}
|
|
217
|
-
export declare class RemoveUserFromFamilyAccountDto {
|
|
218
|
-
userId: number;
|
|
219
|
-
familyAccountId: number;
|
|
220
|
-
}
|
|
221
189
|
export declare class AddressDto {
|
|
222
190
|
city: string;
|
|
223
191
|
state: string;
|
|
@@ -261,6 +229,38 @@ export declare class UpdateFacilityAmenitiesDto {
|
|
|
261
229
|
export declare class FindFacilitiesOptionsDto extends PaginationQuery {
|
|
262
230
|
nameSearch?: string;
|
|
263
231
|
}
|
|
232
|
+
export declare class FindFamilyAccountsDto {
|
|
233
|
+
userId: number;
|
|
234
|
+
}
|
|
235
|
+
export declare class FindFamilyAccountsCustomerDto {
|
|
236
|
+
customerId: number;
|
|
237
|
+
organizationId: number;
|
|
238
|
+
}
|
|
239
|
+
export declare class FindUsersInFamilyAccountDto {
|
|
240
|
+
familyAccountId: number;
|
|
241
|
+
}
|
|
242
|
+
export declare class CreateFamilyAccountDto {
|
|
243
|
+
familyName: string;
|
|
244
|
+
userId: number;
|
|
245
|
+
}
|
|
246
|
+
export declare class UpdateFamilyAccountNameDto {
|
|
247
|
+
familyName: string;
|
|
248
|
+
familyAccountId: number;
|
|
249
|
+
}
|
|
250
|
+
export declare class AddUserToFamilyAccountDto {
|
|
251
|
+
familyAccountId: number;
|
|
252
|
+
isUserAdmin: boolean;
|
|
253
|
+
firstName: string;
|
|
254
|
+
lastName: string;
|
|
255
|
+
gender: GenderEnum;
|
|
256
|
+
birthDate: string;
|
|
257
|
+
sports?: number[];
|
|
258
|
+
email?: string;
|
|
259
|
+
}
|
|
260
|
+
export declare class RemoveUserFromFamilyAccountDto {
|
|
261
|
+
userId: number;
|
|
262
|
+
familyAccountId: number;
|
|
263
|
+
}
|
|
264
264
|
export declare class FindOneParams {
|
|
265
265
|
id: number;
|
|
266
266
|
}
|
|
@@ -1114,6 +1114,19 @@ export declare class Address extends BondBaseEntity {
|
|
|
1114
1114
|
geo: any;
|
|
1115
1115
|
deletedAt?: Date;
|
|
1116
1116
|
}
|
|
1117
|
+
export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
1118
|
+
questionId: number;
|
|
1119
|
+
question?: Questions;
|
|
1120
|
+
parentId: number;
|
|
1121
|
+
parentType: ResourceNameTypeEnum;
|
|
1122
|
+
answerValue: any;
|
|
1123
|
+
creatorId: number;
|
|
1124
|
+
creatorType: ResourceNameTypeEnum;
|
|
1125
|
+
answerTitleId: number;
|
|
1126
|
+
answerTitle: AnswerTitle;
|
|
1127
|
+
metaData: any | null;
|
|
1128
|
+
questionText: string | null;
|
|
1129
|
+
}
|
|
1117
1130
|
export declare class AnswerTitle extends OrganizationConnectionBaseEntity {
|
|
1118
1131
|
questionnaireId: number;
|
|
1119
1132
|
userId?: number;
|
|
@@ -1161,19 +1174,6 @@ export declare class BookedSessions extends BondBaseEntity {
|
|
|
1161
1174
|
publicNotes?: string;
|
|
1162
1175
|
slotType?: SlotTypeEnum;
|
|
1163
1176
|
}
|
|
1164
|
-
export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
1165
|
-
questionId: number;
|
|
1166
|
-
question?: Questions;
|
|
1167
|
-
parentId: number;
|
|
1168
|
-
parentType: ResourceNameTypeEnum;
|
|
1169
|
-
answerValue: any;
|
|
1170
|
-
creatorId: number;
|
|
1171
|
-
creatorType: ResourceNameTypeEnum;
|
|
1172
|
-
answerTitleId: number;
|
|
1173
|
-
answerTitle: AnswerTitle;
|
|
1174
|
-
metaData: any | null;
|
|
1175
|
-
questionText: string | null;
|
|
1176
|
-
}
|
|
1177
1177
|
export declare class BookingTypeSetting extends OrganizationConnectionBaseEntity {
|
|
1178
1178
|
parentId: number;
|
|
1179
1179
|
parentType: ResourceNameTypeEnum;
|
|
@@ -1388,6 +1388,25 @@ export declare class FutureInstallment extends OrganizationConnectionBaseEntity
|
|
|
1388
1388
|
plannedDate: Date;
|
|
1389
1389
|
chargedAt?: Date;
|
|
1390
1390
|
}
|
|
1391
|
+
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1392
|
+
code: string;
|
|
1393
|
+
}
|
|
1394
|
+
export declare class Group extends BondBaseEntity {
|
|
1395
|
+
name: string;
|
|
1396
|
+
description?: string;
|
|
1397
|
+
status: GroupStatusEnum;
|
|
1398
|
+
maxCapacity?: number;
|
|
1399
|
+
mainMediaId?: number;
|
|
1400
|
+
minAgeYears?: number;
|
|
1401
|
+
maxAgeYears?: number;
|
|
1402
|
+
gender: GenderEnum;
|
|
1403
|
+
levelOfPlay?: LevelOfPlayEnum[];
|
|
1404
|
+
sports: SportsEnum[];
|
|
1405
|
+
questionnaires?: number[];
|
|
1406
|
+
captainUserId?: number;
|
|
1407
|
+
members: ISeasonAttendeeInfo[];
|
|
1408
|
+
users: User[];
|
|
1409
|
+
}
|
|
1391
1410
|
export declare class GroupItemsPricing extends OrganizationConnectionBaseEntity {
|
|
1392
1411
|
groupId: number;
|
|
1393
1412
|
itemId: number;
|
|
@@ -2196,8 +2215,13 @@ export declare class StationToSubcategory extends OrganizationConnectionBaseEnti
|
|
|
2196
2215
|
station: Station;
|
|
2197
2216
|
subcategory: Subcategory;
|
|
2198
2217
|
}
|
|
2199
|
-
export declare class
|
|
2200
|
-
|
|
2218
|
+
export declare class Subcategory extends OrganizationConnectionBaseEntity {
|
|
2219
|
+
productType: ProductTypesEnum;
|
|
2220
|
+
name: string;
|
|
2221
|
+
ordinal?: number;
|
|
2222
|
+
deletedAt?: Date;
|
|
2223
|
+
stationToSubcategories: StationToSubcategory[];
|
|
2224
|
+
stations: Station[];
|
|
2201
2225
|
}
|
|
2202
2226
|
export declare class Team extends BondBaseEntity {
|
|
2203
2227
|
name: string | null;
|
|
@@ -2327,22 +2351,6 @@ export declare class WebflowOrganizationConfiguration extends OrganizationConnec
|
|
|
2327
2351
|
membershipCollectionId?: string;
|
|
2328
2352
|
programsCollectionId?: string;
|
|
2329
2353
|
}
|
|
2330
|
-
export declare class Group extends BondBaseEntity {
|
|
2331
|
-
name: string;
|
|
2332
|
-
description?: string;
|
|
2333
|
-
status: GroupStatusEnum;
|
|
2334
|
-
maxCapacity?: number;
|
|
2335
|
-
mainMediaId?: number;
|
|
2336
|
-
minAgeYears?: number;
|
|
2337
|
-
maxAgeYears?: number;
|
|
2338
|
-
gender: GenderEnum;
|
|
2339
|
-
levelOfPlay?: LevelOfPlayEnum[];
|
|
2340
|
-
sports: SportsEnum[];
|
|
2341
|
-
questionnaires?: number[];
|
|
2342
|
-
captainUserId?: number;
|
|
2343
|
-
members: ISeasonAttendeeInfo[];
|
|
2344
|
-
users: User[];
|
|
2345
|
-
}
|
|
2346
2354
|
export declare enum EntitlementTermsTypesEnum {
|
|
2347
2355
|
QUESTION = "question",
|
|
2348
2356
|
CITY = "city",
|
|
@@ -3230,14 +3238,6 @@ export interface IReservationCreatorData {
|
|
|
3230
3238
|
endDate: string;
|
|
3231
3239
|
sportId: number;
|
|
3232
3240
|
}
|
|
3233
|
-
export declare class Subcategory extends OrganizationConnectionBaseEntity {
|
|
3234
|
-
productType: ProductTypesEnum;
|
|
3235
|
-
name: string;
|
|
3236
|
-
ordinal?: number;
|
|
3237
|
-
deletedAt?: Date;
|
|
3238
|
-
stationToSubcategories: StationToSubcategory[];
|
|
3239
|
-
stations: Station[];
|
|
3240
|
-
}
|
|
3241
3241
|
export declare class ColumnNumericTransformer {
|
|
3242
3242
|
to(data: number): number;
|
|
3243
3243
|
from(data: string): number;
|
|
@@ -3359,9 +3359,9 @@ export declare class ImportedReservationDto {
|
|
|
3359
3359
|
slots?: ImportedSlotDto[];
|
|
3360
3360
|
addons?: ImportedSlotProductDto[];
|
|
3361
3361
|
}
|
|
3362
|
-
export declare class
|
|
3363
|
-
|
|
3364
|
-
|
|
3362
|
+
export declare class GameSlots extends BondBaseEntity {
|
|
3363
|
+
entityType: string;
|
|
3364
|
+
entityId: number;
|
|
3365
3365
|
}
|
|
3366
3366
|
export declare class MatchParticipants extends BondBaseEntity {
|
|
3367
3367
|
matchId: number | null;
|
|
@@ -3395,6 +3395,10 @@ export declare class TeamEvents extends BondBaseEntity {
|
|
|
3395
3395
|
eventId: number | null;
|
|
3396
3396
|
status: number | null;
|
|
3397
3397
|
}
|
|
3398
|
+
export declare class Lock extends BondBaseEntity {
|
|
3399
|
+
name: string;
|
|
3400
|
+
locked?: Date;
|
|
3401
|
+
}
|
|
3398
3402
|
export interface ValidatedMonthAndDay {
|
|
3399
3403
|
valid: boolean;
|
|
3400
3404
|
month?: number;
|
|
@@ -3416,10 +3420,6 @@ export interface PaymentStatusesDict {
|
|
|
3416
3420
|
export interface PaymentStatusDict {
|
|
3417
3421
|
[id: number]: ReservationPaymentStatusEnum;
|
|
3418
3422
|
}
|
|
3419
|
-
export declare class GameSlots extends BondBaseEntity {
|
|
3420
|
-
entityType: string;
|
|
3421
|
-
entityId: number;
|
|
3422
|
-
}
|
|
3423
3423
|
export declare class CreateMonitorConfigDto {
|
|
3424
3424
|
facilityId: number;
|
|
3425
3425
|
name: string;
|
|
@@ -3720,6 +3720,47 @@ export declare class MaintenanceDto {
|
|
|
3720
3720
|
maintenanceDurationdurationType: DurationUnitTypesEnum;
|
|
3721
3721
|
maintenanceTiming: MaintenanceTimingEnum;
|
|
3722
3722
|
}
|
|
3723
|
+
export declare class OrderDto {
|
|
3724
|
+
orderId?: string | null;
|
|
3725
|
+
organizationId: number;
|
|
3726
|
+
price: number | null;
|
|
3727
|
+
totalTax?: number;
|
|
3728
|
+
totalWithoutTax?: number;
|
|
3729
|
+
status?: OrderStatusEnum;
|
|
3730
|
+
lineItems: LineItemDto[];
|
|
3731
|
+
paymentStatus?: PaymentStatusEnum;
|
|
3732
|
+
currency: CurrencyEnum;
|
|
3733
|
+
creatingUserId?: number;
|
|
3734
|
+
platform?: PlatformsEnum;
|
|
3735
|
+
}
|
|
3736
|
+
export declare class BaseInvoiceDto {
|
|
3737
|
+
platform: PlatformsEnum;
|
|
3738
|
+
shiftId?: number;
|
|
3739
|
+
}
|
|
3740
|
+
export declare class InvoiceSlotsDto extends BaseInvoiceDto {
|
|
3741
|
+
purchasingUserId: number;
|
|
3742
|
+
slots: number[];
|
|
3743
|
+
}
|
|
3744
|
+
export declare class SaveSlotToSegmenResultDto extends AddSlotToSegmenResultDto {
|
|
3745
|
+
reservationTotalPrice: number;
|
|
3746
|
+
}
|
|
3747
|
+
export declare class UpdateInvoiceOptionsDto {
|
|
3748
|
+
basicInfoData?: BaseInvoiceDto;
|
|
3749
|
+
addToOrderId?: number;
|
|
3750
|
+
}
|
|
3751
|
+
export declare class UpdateInvoiceDto extends UpdateInvoiceOptionsDto {
|
|
3752
|
+
isInvoiced: boolean;
|
|
3753
|
+
}
|
|
3754
|
+
export declare class InvoiceReservationItemsDto extends UpdateInvoiceOptionsDto {
|
|
3755
|
+
slotsIds?: number[];
|
|
3756
|
+
addonsIds?: number[];
|
|
3757
|
+
}
|
|
3758
|
+
export declare class AddSlotsDto extends UpdateInvoiceDto {
|
|
3759
|
+
slots: SlotDto[];
|
|
3760
|
+
}
|
|
3761
|
+
export declare class AddSegmentsDto extends UpdateInvoiceDto {
|
|
3762
|
+
segments: SegmentDto[];
|
|
3763
|
+
}
|
|
3723
3764
|
export declare class PurchasedResourceDto {
|
|
3724
3765
|
resourceId?: number;
|
|
3725
3766
|
resourceType: ResourceNameTypeEnum;
|
|
@@ -3906,67 +3947,6 @@ export declare class SeriesDto {
|
|
|
3906
3947
|
maintenance?: MaintenanceDto[];
|
|
3907
3948
|
slots?: SlotDto[];
|
|
3908
3949
|
}
|
|
3909
|
-
declare class AnswerDto {
|
|
3910
|
-
questionId: number;
|
|
3911
|
-
value: any;
|
|
3912
|
-
}
|
|
3913
|
-
export declare class BookedSessionDto {
|
|
3914
|
-
startDate: string;
|
|
3915
|
-
endDate: string;
|
|
3916
|
-
timezone: string;
|
|
3917
|
-
spaceId: number;
|
|
3918
|
-
}
|
|
3919
|
-
declare class AddonDto {
|
|
3920
|
-
resourcePackageId: number;
|
|
3921
|
-
resourcePackageAmount: number;
|
|
3922
|
-
resourcePackagePrice: number;
|
|
3923
|
-
}
|
|
3924
|
-
export declare class ReservationV1Dto {
|
|
3925
|
-
organizationId: number;
|
|
3926
|
-
name: string;
|
|
3927
|
-
dayOfWeek: number;
|
|
3928
|
-
startTime: string;
|
|
3929
|
-
description: string;
|
|
3930
|
-
sport: number;
|
|
3931
|
-
price: number;
|
|
3932
|
-
resourcePackageId: number;
|
|
3933
|
-
resourcePackageAmount: number;
|
|
3934
|
-
bookedSessions: BookedSessionDto[];
|
|
3935
|
-
addons: AddonDto[];
|
|
3936
|
-
}
|
|
3937
|
-
export declare class BookingV1Dto {
|
|
3938
|
-
organizationId: number;
|
|
3939
|
-
reservations: ReservationV1Dto[];
|
|
3940
|
-
answers: AnswerDto[];
|
|
3941
|
-
paymentData: PurchasePaymentDto;
|
|
3942
|
-
skipPayment: boolean;
|
|
3943
|
-
cashPayment: boolean;
|
|
3944
|
-
requestOnly: boolean;
|
|
3945
|
-
}
|
|
3946
|
-
export declare class Addon extends OrganizationConnectionBaseEntity {
|
|
3947
|
-
parentId: number;
|
|
3948
|
-
parentType: AddonParentTypeEnum;
|
|
3949
|
-
productId: number;
|
|
3950
|
-
product?: Product;
|
|
3951
|
-
quantity: number;
|
|
3952
|
-
unitPrice: number;
|
|
3953
|
-
totalPrice: number;
|
|
3954
|
-
approvalStatus: ReservationStatusEnum;
|
|
3955
|
-
paymentStatus: ReservationPaymentStatusEnum;
|
|
3956
|
-
level?: ProductPackageLevelEnum;
|
|
3957
|
-
resourceId?: number;
|
|
3958
|
-
resource?: Resource;
|
|
3959
|
-
orderId?: number;
|
|
3960
|
-
order?: Order;
|
|
3961
|
-
productUserId?: number;
|
|
3962
|
-
productUser?: ProductsUsers;
|
|
3963
|
-
}
|
|
3964
|
-
export declare class InvoicedSlots extends OrganizationConnectionBaseEntity {
|
|
3965
|
-
deletedAt?: Date;
|
|
3966
|
-
reservationId: number;
|
|
3967
|
-
invoiceId: number;
|
|
3968
|
-
slotId: number;
|
|
3969
|
-
}
|
|
3970
3950
|
export declare class SlotDateTimeAndSpace {
|
|
3971
3951
|
startDate: string;
|
|
3972
3952
|
startTime?: string;
|
|
@@ -4030,6 +4010,67 @@ export declare class SlotDto extends SlotDateTimeAndSpace {
|
|
|
4030
4010
|
slotDurationType: SlotDurationTypeEnum;
|
|
4031
4011
|
addonsIds?: number[];
|
|
4032
4012
|
}
|
|
4013
|
+
declare class AnswerDto {
|
|
4014
|
+
questionId: number;
|
|
4015
|
+
value: any;
|
|
4016
|
+
}
|
|
4017
|
+
export declare class BookedSessionDto {
|
|
4018
|
+
startDate: string;
|
|
4019
|
+
endDate: string;
|
|
4020
|
+
timezone: string;
|
|
4021
|
+
spaceId: number;
|
|
4022
|
+
}
|
|
4023
|
+
declare class AddonDto {
|
|
4024
|
+
resourcePackageId: number;
|
|
4025
|
+
resourcePackageAmount: number;
|
|
4026
|
+
resourcePackagePrice: number;
|
|
4027
|
+
}
|
|
4028
|
+
export declare class ReservationV1Dto {
|
|
4029
|
+
organizationId: number;
|
|
4030
|
+
name: string;
|
|
4031
|
+
dayOfWeek: number;
|
|
4032
|
+
startTime: string;
|
|
4033
|
+
description: string;
|
|
4034
|
+
sport: number;
|
|
4035
|
+
price: number;
|
|
4036
|
+
resourcePackageId: number;
|
|
4037
|
+
resourcePackageAmount: number;
|
|
4038
|
+
bookedSessions: BookedSessionDto[];
|
|
4039
|
+
addons: AddonDto[];
|
|
4040
|
+
}
|
|
4041
|
+
export declare class BookingV1Dto {
|
|
4042
|
+
organizationId: number;
|
|
4043
|
+
reservations: ReservationV1Dto[];
|
|
4044
|
+
answers: AnswerDto[];
|
|
4045
|
+
paymentData: PurchasePaymentDto;
|
|
4046
|
+
skipPayment: boolean;
|
|
4047
|
+
cashPayment: boolean;
|
|
4048
|
+
requestOnly: boolean;
|
|
4049
|
+
}
|
|
4050
|
+
export declare class Addon extends OrganizationConnectionBaseEntity {
|
|
4051
|
+
parentId: number;
|
|
4052
|
+
parentType: AddonParentTypeEnum;
|
|
4053
|
+
productId: number;
|
|
4054
|
+
product?: Product;
|
|
4055
|
+
quantity: number;
|
|
4056
|
+
unitPrice: number;
|
|
4057
|
+
totalPrice: number;
|
|
4058
|
+
approvalStatus: ReservationStatusEnum;
|
|
4059
|
+
paymentStatus: ReservationPaymentStatusEnum;
|
|
4060
|
+
level?: ProductPackageLevelEnum;
|
|
4061
|
+
resourceId?: number;
|
|
4062
|
+
resource?: Resource;
|
|
4063
|
+
orderId?: number;
|
|
4064
|
+
order?: Order;
|
|
4065
|
+
productUserId?: number;
|
|
4066
|
+
productUser?: ProductsUsers;
|
|
4067
|
+
}
|
|
4068
|
+
export declare class InvoicedSlots extends OrganizationConnectionBaseEntity {
|
|
4069
|
+
deletedAt?: Date;
|
|
4070
|
+
reservationId: number;
|
|
4071
|
+
invoiceId: number;
|
|
4072
|
+
slotId: number;
|
|
4073
|
+
}
|
|
4033
4074
|
export declare class Reservation extends OrganizationConnectionBaseEntity {
|
|
4034
4075
|
name?: string;
|
|
4035
4076
|
description?: string;
|
|
@@ -4472,44 +4513,3 @@ export declare class Shift extends OrganizationConnectionBaseEntity {
|
|
|
4472
4513
|
closingManager?: User;
|
|
4473
4514
|
reconcilingUser?: User;
|
|
4474
4515
|
}
|
|
4475
|
-
export declare class OrderDto {
|
|
4476
|
-
orderId?: string | null;
|
|
4477
|
-
organizationId: number;
|
|
4478
|
-
price: number | null;
|
|
4479
|
-
totalTax?: number;
|
|
4480
|
-
totalWithoutTax?: number;
|
|
4481
|
-
status?: OrderStatusEnum;
|
|
4482
|
-
lineItems: LineItemDto[];
|
|
4483
|
-
paymentStatus?: PaymentStatusEnum;
|
|
4484
|
-
currency: CurrencyEnum;
|
|
4485
|
-
creatingUserId?: number;
|
|
4486
|
-
platform?: PlatformsEnum;
|
|
4487
|
-
}
|
|
4488
|
-
export declare class BaseInvoiceDto {
|
|
4489
|
-
platform: PlatformsEnum;
|
|
4490
|
-
shiftId?: number;
|
|
4491
|
-
}
|
|
4492
|
-
export declare class InvoiceSlotsDto extends BaseInvoiceDto {
|
|
4493
|
-
purchasingUserId: number;
|
|
4494
|
-
slots: number[];
|
|
4495
|
-
}
|
|
4496
|
-
export declare class SaveSlotToSegmenResultDto extends AddSlotToSegmenResultDto {
|
|
4497
|
-
reservationTotalPrice: number;
|
|
4498
|
-
}
|
|
4499
|
-
export declare class UpdateInvoiceOptionsDto {
|
|
4500
|
-
basicInfoData?: BaseInvoiceDto;
|
|
4501
|
-
addToOrderId?: number;
|
|
4502
|
-
}
|
|
4503
|
-
export declare class UpdateInvoiceDto extends UpdateInvoiceOptionsDto {
|
|
4504
|
-
isInvoiced: boolean;
|
|
4505
|
-
}
|
|
4506
|
-
export declare class InvoiceReservationItemsDto extends UpdateInvoiceOptionsDto {
|
|
4507
|
-
slotsIds?: number[];
|
|
4508
|
-
addonsIds?: number[];
|
|
4509
|
-
}
|
|
4510
|
-
export declare class AddSlotsDto extends UpdateInvoiceDto {
|
|
4511
|
-
slots: SlotDto[];
|
|
4512
|
-
}
|
|
4513
|
-
export declare class AddSegmentsDto extends UpdateInvoiceDto {
|
|
4514
|
-
segments: SegmentDto[];
|
|
4515
|
-
}
|