@bondsports/types 0.0.156 → 0.0.158
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 +162 -162
- 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
|
@@ -9,17 +9,6 @@ export declare class BasicActivityTimesDto {
|
|
|
9
9
|
availabilityStartDate?: string;
|
|
10
10
|
availabilityEndDate?: string;
|
|
11
11
|
}
|
|
12
|
-
export declare class QuestionAnswersDto {
|
|
13
|
-
questionId: number;
|
|
14
|
-
value: any;
|
|
15
|
-
}
|
|
16
|
-
export declare class UserAnswersDto {
|
|
17
|
-
userId: number;
|
|
18
|
-
answers: QuestionAnswersDto[];
|
|
19
|
-
}
|
|
20
|
-
export declare class GetByQuestionnaireIdsDto {
|
|
21
|
-
questionnaireIds: string;
|
|
22
|
-
}
|
|
23
12
|
export declare class FindBookingTypeSettingDto {
|
|
24
13
|
organizationId: number;
|
|
25
14
|
facilityId: number;
|
|
@@ -27,13 +16,6 @@ export declare class FindBookingTypeSettingDto {
|
|
|
27
16
|
bookingDate: string;
|
|
28
17
|
bookingTime: string;
|
|
29
18
|
}
|
|
30
|
-
export declare enum EConfigurationKeys {
|
|
31
|
-
MAX_ALLOWED_PM_FAILURE = "max_allowed_pm_failure"
|
|
32
|
-
}
|
|
33
|
-
export declare enum EFailedPaymentReasons {
|
|
34
|
-
CARD_BLOCKED = "card_blocked_by_bond",
|
|
35
|
-
UNKNOWN = "unknown"
|
|
36
|
-
}
|
|
37
19
|
export declare class FindByMembershipIdDto extends ByOrganizationIdDto {
|
|
38
20
|
membershipId: number;
|
|
39
21
|
}
|
|
@@ -238,6 +220,13 @@ export declare class UpdateFacilityAmenitiesDto {
|
|
|
238
220
|
export declare class FindFacilitiesOptionsDto extends PaginationQuery {
|
|
239
221
|
nameSearch?: string;
|
|
240
222
|
}
|
|
223
|
+
export declare enum EConfigurationKeys {
|
|
224
|
+
MAX_ALLOWED_PM_FAILURE = "max_allowed_pm_failure"
|
|
225
|
+
}
|
|
226
|
+
export declare enum EFailedPaymentReasons {
|
|
227
|
+
CARD_BLOCKED = "card_blocked_by_bond",
|
|
228
|
+
UNKNOWN = "unknown"
|
|
229
|
+
}
|
|
241
230
|
export declare class FindFamilyAccountsDto {
|
|
242
231
|
userId: number;
|
|
243
232
|
}
|
|
@@ -292,6 +281,17 @@ export declare class GetGlCodeDto {
|
|
|
292
281
|
createdAt: Date;
|
|
293
282
|
updatedAt: Date;
|
|
294
283
|
}
|
|
284
|
+
export declare class QuestionAnswersDto {
|
|
285
|
+
questionId: number;
|
|
286
|
+
value: any;
|
|
287
|
+
}
|
|
288
|
+
export declare class UserAnswersDto {
|
|
289
|
+
userId: number;
|
|
290
|
+
answers: QuestionAnswersDto[];
|
|
291
|
+
}
|
|
292
|
+
export declare class GetByQuestionnaireIdsDto {
|
|
293
|
+
questionnaireIds: string;
|
|
294
|
+
}
|
|
295
295
|
export declare class FindByProgramSeasonIdDto {
|
|
296
296
|
seasonId: number;
|
|
297
297
|
}
|
|
@@ -463,6 +463,24 @@ export declare class CreateGroupPricingWithProduct {
|
|
|
463
463
|
discountValue?: number;
|
|
464
464
|
discountMethod?: DiscountMethodsEnum;
|
|
465
465
|
}
|
|
466
|
+
export declare class CreateUpdateVariantsDto {
|
|
467
|
+
organizationId: number;
|
|
468
|
+
parentProductId: number;
|
|
469
|
+
variantTitles: VariantTitleDto[];
|
|
470
|
+
variants: VariantDto[];
|
|
471
|
+
}
|
|
472
|
+
export declare class VariantTitleDto {
|
|
473
|
+
titleName: string;
|
|
474
|
+
titleId: number;
|
|
475
|
+
}
|
|
476
|
+
export declare class VariantDto {
|
|
477
|
+
name: string;
|
|
478
|
+
price: number;
|
|
479
|
+
variantId: number;
|
|
480
|
+
currency: CurrencyEnum;
|
|
481
|
+
startDate: Date;
|
|
482
|
+
endDate: Date;
|
|
483
|
+
}
|
|
466
484
|
export declare class FindByProductIdDto {
|
|
467
485
|
productId: number;
|
|
468
486
|
}
|
|
@@ -684,24 +702,6 @@ export declare class createResourceDto {
|
|
|
684
702
|
export declare class archiveDto {
|
|
685
703
|
isArchive: boolean;
|
|
686
704
|
}
|
|
687
|
-
export declare class CreateUpdateVariantsDto {
|
|
688
|
-
organizationId: number;
|
|
689
|
-
parentProductId: number;
|
|
690
|
-
variantTitles: VariantTitleDto[];
|
|
691
|
-
variants: VariantDto[];
|
|
692
|
-
}
|
|
693
|
-
export declare class VariantTitleDto {
|
|
694
|
-
titleName: string;
|
|
695
|
-
titleId: number;
|
|
696
|
-
}
|
|
697
|
-
export declare class VariantDto {
|
|
698
|
-
name: string;
|
|
699
|
-
price: number;
|
|
700
|
-
variantId: number;
|
|
701
|
-
currency: CurrencyEnum;
|
|
702
|
-
startDate: Date;
|
|
703
|
-
endDate: Date;
|
|
704
|
-
}
|
|
705
705
|
export declare class FindProgramSeasonsByProgramIdDto {
|
|
706
706
|
programId: number;
|
|
707
707
|
}
|
|
@@ -892,50 +892,6 @@ export declare class MoveParticipantDto {
|
|
|
892
892
|
resourceId: number;
|
|
893
893
|
invoiceId: number;
|
|
894
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
895
|
export declare class PurchasePaymentDto {
|
|
940
896
|
token: string;
|
|
941
897
|
type: PaymentMethodTypeEnum;
|
|
@@ -1017,6 +973,50 @@ export declare class CreateResourceGroupDto {
|
|
|
1017
973
|
}
|
|
1018
974
|
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
1019
975
|
}
|
|
976
|
+
export declare class FindProgramsByOrganizationIdDto {
|
|
977
|
+
organizationId: number;
|
|
978
|
+
programType?: ProgramTypesEnum;
|
|
979
|
+
}
|
|
980
|
+
export declare class FindProgramByIdDto {
|
|
981
|
+
programId: number;
|
|
982
|
+
}
|
|
983
|
+
export declare class FindProgramByOrgIdAndIdDto {
|
|
984
|
+
programId: number;
|
|
985
|
+
organizationId: number;
|
|
986
|
+
}
|
|
987
|
+
export declare class BaseProgramDto {
|
|
988
|
+
type: ProgramTypesEnum;
|
|
989
|
+
name: string;
|
|
990
|
+
sport: SportsEnum;
|
|
991
|
+
minAge: string;
|
|
992
|
+
maxAge: string;
|
|
993
|
+
gender: GenderEnum;
|
|
994
|
+
level?: LevelOfPlayEnum[];
|
|
995
|
+
description?: string;
|
|
996
|
+
GL?: string;
|
|
997
|
+
status: PublishingStatusEnum;
|
|
998
|
+
organizationId: number;
|
|
999
|
+
userCreatorId: number;
|
|
1000
|
+
highlights: ProgramHighlights[];
|
|
1001
|
+
longDescription?: string;
|
|
1002
|
+
requiredProductIds: number[];
|
|
1003
|
+
}
|
|
1004
|
+
export declare class CreateProgramDto extends BaseProgramDto {
|
|
1005
|
+
}
|
|
1006
|
+
export declare class UpdateProgramDto extends BaseProgramDto {
|
|
1007
|
+
programId: number;
|
|
1008
|
+
mainMediaId: number;
|
|
1009
|
+
}
|
|
1010
|
+
export declare class UpdateProgramStatusDto {
|
|
1011
|
+
programId: number;
|
|
1012
|
+
status: PublishingStatusEnum;
|
|
1013
|
+
}
|
|
1014
|
+
export declare class ProgramHighlightDto {
|
|
1015
|
+
data: string;
|
|
1016
|
+
ordinal: number;
|
|
1017
|
+
type: ProgramHighlightTypeEnum;
|
|
1018
|
+
title: string;
|
|
1019
|
+
}
|
|
1020
1020
|
export declare class ResourceDto {
|
|
1021
1021
|
type: ResourceNameTypeEnum;
|
|
1022
1022
|
id: number;
|
|
@@ -1122,17 +1122,6 @@ export declare class ActivityTimes extends BondBaseEntity {
|
|
|
1122
1122
|
proudct: Product;
|
|
1123
1123
|
event: Event;
|
|
1124
1124
|
}
|
|
1125
|
-
export declare class Address extends BondBaseEntity {
|
|
1126
|
-
city?: string;
|
|
1127
|
-
street?: string;
|
|
1128
|
-
streetNum?: string;
|
|
1129
|
-
aptNum?: string;
|
|
1130
|
-
zip?: string;
|
|
1131
|
-
country?: string;
|
|
1132
|
-
state?: string;
|
|
1133
|
-
geo: any;
|
|
1134
|
-
deletedAt?: Date;
|
|
1135
|
-
}
|
|
1136
1125
|
export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
1137
1126
|
questionId: number;
|
|
1138
1127
|
question?: Questions;
|
|
@@ -1162,6 +1151,17 @@ export declare class AthleteSports extends BondBaseEntity {
|
|
|
1162
1151
|
sports: number | null;
|
|
1163
1152
|
levelOfPlay: LevelOfPlayEnum | null;
|
|
1164
1153
|
}
|
|
1154
|
+
export declare class Address extends BondBaseEntity {
|
|
1155
|
+
city?: string;
|
|
1156
|
+
street?: string;
|
|
1157
|
+
streetNum?: string;
|
|
1158
|
+
aptNum?: string;
|
|
1159
|
+
zip?: string;
|
|
1160
|
+
country?: string;
|
|
1161
|
+
state?: string;
|
|
1162
|
+
geo: any;
|
|
1163
|
+
deletedAt?: Date;
|
|
1164
|
+
}
|
|
1165
1165
|
export declare class BlockedDate extends BondBaseEntity {
|
|
1166
1166
|
entityType: ResourceNameTypeEnum;
|
|
1167
1167
|
entityId: number;
|
|
@@ -1175,6 +1175,16 @@ export declare class BondBaseEntity extends BaseEntity {
|
|
|
1175
1175
|
createdAt: Date;
|
|
1176
1176
|
updatedAt: Date;
|
|
1177
1177
|
}
|
|
1178
|
+
export declare class BookingTypeSetting extends OrganizationConnectionBaseEntity {
|
|
1179
|
+
parentId: number;
|
|
1180
|
+
parentType: ResourceNameTypeEnum;
|
|
1181
|
+
startDate: Date;
|
|
1182
|
+
endDate: Date;
|
|
1183
|
+
dayOfWeek: number;
|
|
1184
|
+
startTimeInDay: string;
|
|
1185
|
+
endTimeInDay: string;
|
|
1186
|
+
directBookingFor: DirectBookingTypesEnum;
|
|
1187
|
+
}
|
|
1178
1188
|
export declare class BookedSessions extends BondBaseEntity {
|
|
1179
1189
|
reservationId?: number;
|
|
1180
1190
|
color?: string;
|
|
@@ -1193,16 +1203,6 @@ export declare class BookedSessions extends BondBaseEntity {
|
|
|
1193
1203
|
publicNotes?: string;
|
|
1194
1204
|
slotType?: SlotTypeEnum;
|
|
1195
1205
|
}
|
|
1196
|
-
export declare class BookingTypeSetting extends OrganizationConnectionBaseEntity {
|
|
1197
|
-
parentId: number;
|
|
1198
|
-
parentType: ResourceNameTypeEnum;
|
|
1199
|
-
startDate: Date;
|
|
1200
|
-
endDate: Date;
|
|
1201
|
-
dayOfWeek: number;
|
|
1202
|
-
startTimeInDay: string;
|
|
1203
|
-
endTimeInDay: string;
|
|
1204
|
-
directBookingFor: DirectBookingTypesEnum;
|
|
1205
|
-
}
|
|
1206
1206
|
export declare class Configuration extends BondBaseEntity {
|
|
1207
1207
|
area: string;
|
|
1208
1208
|
key: string;
|
|
@@ -1635,22 +1635,6 @@ export declare class LineItems extends BondBaseEntity {
|
|
|
1635
1635
|
displayUnitPrice?: number;
|
|
1636
1636
|
displayQuantity?: number;
|
|
1637
1637
|
}
|
|
1638
|
-
export declare class LinkedAccounts extends BondBaseEntity {
|
|
1639
|
-
id: number;
|
|
1640
|
-
provider: string;
|
|
1641
|
-
providerId: string | null;
|
|
1642
|
-
parentId: number | null;
|
|
1643
|
-
parentType: string | null;
|
|
1644
|
-
status: number | null;
|
|
1645
|
-
token: string | null;
|
|
1646
|
-
refreshToken: string | null;
|
|
1647
|
-
tokenCreatedAt: Date | null;
|
|
1648
|
-
tokenValidUpTo: Date | null;
|
|
1649
|
-
createdAt: Date;
|
|
1650
|
-
updatedAt: Date;
|
|
1651
|
-
user: User;
|
|
1652
|
-
userId: number | null;
|
|
1653
|
-
}
|
|
1654
1638
|
export declare class Media extends BondBaseEntity {
|
|
1655
1639
|
url: string;
|
|
1656
1640
|
name: string | null;
|
|
@@ -1724,6 +1708,22 @@ export declare class NotificationSubscriptions extends OrganizationConnectionBas
|
|
|
1724
1708
|
resourceId: number | null;
|
|
1725
1709
|
resourceType: string | null;
|
|
1726
1710
|
}
|
|
1711
|
+
export declare class LinkedAccounts extends BondBaseEntity {
|
|
1712
|
+
id: number;
|
|
1713
|
+
provider: string;
|
|
1714
|
+
providerId: string | null;
|
|
1715
|
+
parentId: number | null;
|
|
1716
|
+
parentType: string | null;
|
|
1717
|
+
status: number | null;
|
|
1718
|
+
token: string | null;
|
|
1719
|
+
refreshToken: string | null;
|
|
1720
|
+
tokenCreatedAt: Date | null;
|
|
1721
|
+
tokenValidUpTo: Date | null;
|
|
1722
|
+
createdAt: Date;
|
|
1723
|
+
updatedAt: Date;
|
|
1724
|
+
user: User;
|
|
1725
|
+
userId: number | null;
|
|
1726
|
+
}
|
|
1727
1727
|
export declare class OpeningTime extends OrganizationConnectionBaseEntity {
|
|
1728
1728
|
id: number;
|
|
1729
1729
|
dayOfWeek: number;
|
|
@@ -2072,10 +2072,6 @@ export declare class PurchasedResource extends OrganizationConnectionBaseEntity
|
|
|
2072
2072
|
product?: Product;
|
|
2073
2073
|
event?: Event;
|
|
2074
2074
|
}
|
|
2075
|
-
export declare class Questionnaires extends OrganizationConnectionBaseEntity {
|
|
2076
|
-
title: string | null;
|
|
2077
|
-
answerTitle: AnswerTitle;
|
|
2078
|
-
}
|
|
2079
2075
|
export declare class Questions extends BondBaseEntity {
|
|
2080
2076
|
questionType: string | null;
|
|
2081
2077
|
ordinal: number | null;
|
|
@@ -2090,6 +2086,10 @@ export declare class Questions extends BondBaseEntity {
|
|
|
2090
2086
|
ownerId: number | null;
|
|
2091
2087
|
questionnaireId: number | null;
|
|
2092
2088
|
}
|
|
2089
|
+
export declare class Questionnaires extends OrganizationConnectionBaseEntity {
|
|
2090
|
+
title: string | null;
|
|
2091
|
+
answerTitle: AnswerTitle;
|
|
2092
|
+
}
|
|
2093
2093
|
export declare class RefundReason extends OrganizationConnectionBaseEntity {
|
|
2094
2094
|
reason: string;
|
|
2095
2095
|
ordinal: number;
|
|
@@ -2375,10 +2375,6 @@ export declare class UsersInGroup extends BondBaseEntity {
|
|
|
2375
2375
|
userId: number;
|
|
2376
2376
|
deletedAt?: Date;
|
|
2377
2377
|
}
|
|
2378
|
-
export declare class VariantTitle extends OrganizationConnectionBaseEntity {
|
|
2379
|
-
name: string;
|
|
2380
|
-
variants: Variant[];
|
|
2381
|
-
}
|
|
2382
2378
|
export declare class Variant extends OrganizationConnectionBaseEntity {
|
|
2383
2379
|
name: string;
|
|
2384
2380
|
variantTitleId: number;
|
|
@@ -2393,6 +2389,10 @@ export declare class WebflowOrganizationConfiguration extends OrganizationConnec
|
|
|
2393
2389
|
membershipCollectionId?: string;
|
|
2394
2390
|
programsCollectionId?: string;
|
|
2395
2391
|
}
|
|
2392
|
+
export declare class VariantTitle extends OrganizationConnectionBaseEntity {
|
|
2393
|
+
name: string;
|
|
2394
|
+
variants: Variant[];
|
|
2395
|
+
}
|
|
2396
2396
|
export declare enum EntitlementTermsTypesEnum {
|
|
2397
2397
|
QUESTION = "question",
|
|
2398
2398
|
CITY = "city",
|
|
@@ -3297,11 +3297,6 @@ export interface IReservationCreatorData {
|
|
|
3297
3297
|
endDate: string;
|
|
3298
3298
|
sportId: number;
|
|
3299
3299
|
}
|
|
3300
|
-
export declare class ColumnNumericTransformer {
|
|
3301
|
-
to(data: number): number;
|
|
3302
|
-
from(data: string): number;
|
|
3303
|
-
}
|
|
3304
|
-
export declare function convertToNumber(data: string): number;
|
|
3305
3300
|
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3306
3301
|
name?: string;
|
|
3307
3302
|
genderStr?: string;
|
|
@@ -3360,6 +3355,11 @@ export declare class ProductImportDto {
|
|
|
3360
3355
|
resourceIds: number[];
|
|
3361
3356
|
oldId: number;
|
|
3362
3357
|
}
|
|
3358
|
+
export declare class ColumnNumericTransformer {
|
|
3359
|
+
to(data: number): number;
|
|
3360
|
+
from(data: string): number;
|
|
3361
|
+
}
|
|
3362
|
+
export declare function convertToNumber(data: string): number;
|
|
3363
3363
|
export declare class PunchPassDto {
|
|
3364
3364
|
CustomerID: string;
|
|
3365
3365
|
QuantityLeft: number;
|
|
@@ -3485,11 +3485,6 @@ 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
|
-
}
|
|
3493
3488
|
export declare class NotifyTracker extends BondBaseEntity {
|
|
3494
3489
|
userId: number;
|
|
3495
3490
|
organizationId: number;
|
|
@@ -3583,6 +3578,11 @@ export declare class OrganizationUsers extends BondBaseEntity {
|
|
|
3583
3578
|
organisationId: number | null;
|
|
3584
3579
|
userId: number | null;
|
|
3585
3580
|
}
|
|
3581
|
+
export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
|
|
3582
|
+
facilityId: number;
|
|
3583
|
+
code: string;
|
|
3584
|
+
config?: any;
|
|
3585
|
+
}
|
|
3586
3586
|
export interface UnallocatedEventsFilters {
|
|
3587
3587
|
programsIds?: number[];
|
|
3588
3588
|
sessionsIds?: number[];
|
|
@@ -3777,33 +3777,6 @@ export interface RefundResultWithLineItemsDict extends PaymentsResults {
|
|
|
3777
3777
|
failedLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3778
3778
|
totalAmountProcessed: number;
|
|
3779
3779
|
}
|
|
3780
|
-
export declare class AddonDto {
|
|
3781
|
-
productId: number;
|
|
3782
|
-
id?: number;
|
|
3783
|
-
unitPrice?: number;
|
|
3784
|
-
quantity?: number;
|
|
3785
|
-
totalPrice?: number;
|
|
3786
|
-
product?: Product;
|
|
3787
|
-
parentProduct?: Product;
|
|
3788
|
-
displayTotalWithTax?: number;
|
|
3789
|
-
displayTotalPrice?: number;
|
|
3790
|
-
displayUnitTax?: number;
|
|
3791
|
-
}
|
|
3792
|
-
export declare class AddAddonsDto {
|
|
3793
|
-
addons: AddonDto[];
|
|
3794
|
-
}
|
|
3795
|
-
export declare class EditAddonsDto {
|
|
3796
|
-
addons: EditAddonDto[];
|
|
3797
|
-
}
|
|
3798
|
-
export declare class EditReservationAddonsDto extends EditAddonsDto {
|
|
3799
|
-
refundMeta?: EditItemsRefundMetaDto;
|
|
3800
|
-
}
|
|
3801
|
-
export declare class EditAddonDto {
|
|
3802
|
-
id: number;
|
|
3803
|
-
quantity: number;
|
|
3804
|
-
totalPrice: number;
|
|
3805
|
-
unitPrice?: number;
|
|
3806
|
-
}
|
|
3807
3780
|
export declare class InvoiceDto {
|
|
3808
3781
|
invoiceId?: string | null;
|
|
3809
3782
|
organizationId: number;
|
|
@@ -3878,6 +3851,33 @@ export declare class MaintenanceDto {
|
|
|
3878
3851
|
maintenanceDurationdurationType: DurationUnitTypesEnum;
|
|
3879
3852
|
maintenanceTiming: MaintenanceTimingEnum;
|
|
3880
3853
|
}
|
|
3854
|
+
export declare class AddonDto {
|
|
3855
|
+
productId: number;
|
|
3856
|
+
id?: number;
|
|
3857
|
+
unitPrice?: number;
|
|
3858
|
+
quantity?: number;
|
|
3859
|
+
totalPrice?: number;
|
|
3860
|
+
product?: Product;
|
|
3861
|
+
parentProduct?: Product;
|
|
3862
|
+
displayTotalWithTax?: number;
|
|
3863
|
+
displayTotalPrice?: number;
|
|
3864
|
+
displayUnitTax?: number;
|
|
3865
|
+
}
|
|
3866
|
+
export declare class AddAddonsDto {
|
|
3867
|
+
addons: AddonDto[];
|
|
3868
|
+
}
|
|
3869
|
+
export declare class EditAddonsDto {
|
|
3870
|
+
addons: EditAddonDto[];
|
|
3871
|
+
}
|
|
3872
|
+
export declare class EditReservationAddonsDto extends EditAddonsDto {
|
|
3873
|
+
refundMeta?: EditItemsRefundMetaDto;
|
|
3874
|
+
}
|
|
3875
|
+
export declare class EditAddonDto {
|
|
3876
|
+
id: number;
|
|
3877
|
+
quantity: number;
|
|
3878
|
+
totalPrice: number;
|
|
3879
|
+
unitPrice?: number;
|
|
3880
|
+
}
|
|
3881
3881
|
export declare class PurchasedResourceDto {
|
|
3882
3882
|
resourceId?: number;
|
|
3883
3883
|
resourceType: ResourceNameTypeEnum;
|