@bondsports/types 0.0.32 → 0.0.35
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 +177 -176
- 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
|
@@ -27,6 +27,64 @@ export declare class FindBookingTypeSettingDto {
|
|
|
27
27
|
bookingDate: string;
|
|
28
28
|
bookingTime: string;
|
|
29
29
|
}
|
|
30
|
+
export declare class FindByMembershipIdDto extends ByOrganizationIdDto {
|
|
31
|
+
membershipId: number;
|
|
32
|
+
}
|
|
33
|
+
export declare class ImportProductsFromDB {
|
|
34
|
+
buDate: string;
|
|
35
|
+
}
|
|
36
|
+
export declare class ImportCustomerFromCSV {
|
|
37
|
+
fileName: string;
|
|
38
|
+
startIndex?: number;
|
|
39
|
+
}
|
|
40
|
+
export declare class ImportProgramsFileDto extends ImportCustomerFromCSV {
|
|
41
|
+
resolveInvoices: string;
|
|
42
|
+
}
|
|
43
|
+
export declare class ImportDashCustomerDto extends ImportCustomerFromCSV {
|
|
44
|
+
membershipId: number;
|
|
45
|
+
onlyDashIds: string;
|
|
46
|
+
}
|
|
47
|
+
export declare class ImportRentalsFromCSV extends ImportCustomerFromCSV {
|
|
48
|
+
facilityId: number;
|
|
49
|
+
}
|
|
50
|
+
export declare class ByOrganizationIdCustomerIdDto extends ByOrganizationIdDto {
|
|
51
|
+
customerId: number;
|
|
52
|
+
}
|
|
53
|
+
export declare class FindCustomersByOrganizationIdFiltersDto extends PaginationQuery {
|
|
54
|
+
nameSearch?: string;
|
|
55
|
+
fuzzy?: string;
|
|
56
|
+
customerType?: CustomerTypeEnum;
|
|
57
|
+
customersIds?: string;
|
|
58
|
+
}
|
|
59
|
+
export declare class AddCustomerNotesDto {
|
|
60
|
+
customerNotes: CustomerNoteDto[];
|
|
61
|
+
}
|
|
62
|
+
export declare class CustomerNoteDto {
|
|
63
|
+
id?: number;
|
|
64
|
+
description: string;
|
|
65
|
+
pinToTop?: boolean;
|
|
66
|
+
}
|
|
67
|
+
export declare class AddEditCustomerDto {
|
|
68
|
+
firstName?: string;
|
|
69
|
+
lastName?: string;
|
|
70
|
+
entityId?: number;
|
|
71
|
+
entityType?: CustomerTypeEnum;
|
|
72
|
+
email?: string;
|
|
73
|
+
color?: string;
|
|
74
|
+
street?: string;
|
|
75
|
+
city?: string;
|
|
76
|
+
state?: string;
|
|
77
|
+
zip?: string;
|
|
78
|
+
phoneNumber?: string;
|
|
79
|
+
mainMediaId?: number;
|
|
80
|
+
creatorId?: number;
|
|
81
|
+
creatorType?: ResourceNameTypeEnum;
|
|
82
|
+
userCreatorId?: number;
|
|
83
|
+
gender?: GenderEnum;
|
|
84
|
+
birthDate?: string;
|
|
85
|
+
emergencyContactName?: string;
|
|
86
|
+
emergencyContactPhone?: string;
|
|
87
|
+
}
|
|
30
88
|
export declare class FindEventByIdDto {
|
|
31
89
|
eventId: number;
|
|
32
90
|
organizationId: number;
|
|
@@ -171,64 +229,6 @@ export declare class UpdateFacilityAmenitiesDto {
|
|
|
171
229
|
export declare class FindFacilitiesOptionsDto extends PaginationQuery {
|
|
172
230
|
nameSearch?: string;
|
|
173
231
|
}
|
|
174
|
-
export declare class FindByMembershipIdDto extends ByOrganizationIdDto {
|
|
175
|
-
membershipId: number;
|
|
176
|
-
}
|
|
177
|
-
export declare class ImportProductsFromDB {
|
|
178
|
-
buDate: string;
|
|
179
|
-
}
|
|
180
|
-
export declare class ImportCustomerFromCSV {
|
|
181
|
-
fileName: string;
|
|
182
|
-
startIndex?: number;
|
|
183
|
-
}
|
|
184
|
-
export declare class ImportProgramsFileDto extends ImportCustomerFromCSV {
|
|
185
|
-
resolveInvoices: string;
|
|
186
|
-
}
|
|
187
|
-
export declare class ImportDashCustomerDto extends ImportCustomerFromCSV {
|
|
188
|
-
membershipId: number;
|
|
189
|
-
onlyDashIds: string;
|
|
190
|
-
}
|
|
191
|
-
export declare class ImportRentalsFromCSV extends ImportCustomerFromCSV {
|
|
192
|
-
facilityId: number;
|
|
193
|
-
}
|
|
194
|
-
export declare class ByOrganizationIdCustomerIdDto extends ByOrganizationIdDto {
|
|
195
|
-
customerId: number;
|
|
196
|
-
}
|
|
197
|
-
export declare class FindCustomersByOrganizationIdFiltersDto extends PaginationQuery {
|
|
198
|
-
nameSearch?: string;
|
|
199
|
-
fuzzy?: string;
|
|
200
|
-
customerType?: CustomerTypeEnum;
|
|
201
|
-
customersIds?: string;
|
|
202
|
-
}
|
|
203
|
-
export declare class AddCustomerNotesDto {
|
|
204
|
-
customerNotes: CustomerNoteDto[];
|
|
205
|
-
}
|
|
206
|
-
export declare class CustomerNoteDto {
|
|
207
|
-
id?: number;
|
|
208
|
-
description: string;
|
|
209
|
-
pinToTop?: boolean;
|
|
210
|
-
}
|
|
211
|
-
export declare class AddEditCustomerDto {
|
|
212
|
-
firstName?: string;
|
|
213
|
-
lastName?: string;
|
|
214
|
-
entityId?: number;
|
|
215
|
-
entityType?: CustomerTypeEnum;
|
|
216
|
-
email?: string;
|
|
217
|
-
color?: string;
|
|
218
|
-
street?: string;
|
|
219
|
-
city?: string;
|
|
220
|
-
state?: string;
|
|
221
|
-
zip?: string;
|
|
222
|
-
phoneNumber?: string;
|
|
223
|
-
mainMediaId?: number;
|
|
224
|
-
creatorId?: number;
|
|
225
|
-
creatorType?: ResourceNameTypeEnum;
|
|
226
|
-
userCreatorId?: number;
|
|
227
|
-
gender?: GenderEnum;
|
|
228
|
-
birthDate?: string;
|
|
229
|
-
emergencyContactName?: string;
|
|
230
|
-
emergencyContactPhone?: string;
|
|
231
|
-
}
|
|
232
232
|
export declare class FindFamilyAccountsDto {
|
|
233
233
|
userId: number;
|
|
234
234
|
}
|
|
@@ -1074,6 +1074,19 @@ export declare class FindByFamilyAccountIdDto {
|
|
|
1074
1074
|
export declare class FindByUserAndOrganizationDto extends FindByUserIdDto {
|
|
1075
1075
|
organizationId: number;
|
|
1076
1076
|
}
|
|
1077
|
+
export declare class ActivityLogRecord extends BondBaseEntity {
|
|
1078
|
+
entityType: ResourceNameTypeEnum;
|
|
1079
|
+
entityId: number;
|
|
1080
|
+
organizationId?: number;
|
|
1081
|
+
userId?: number;
|
|
1082
|
+
customerId?: number;
|
|
1083
|
+
performingUserId: number;
|
|
1084
|
+
description: string;
|
|
1085
|
+
actionType: ActionTypesEnum;
|
|
1086
|
+
sourcePlatform: ActionSourcePlatformEnum;
|
|
1087
|
+
oldValue?: any;
|
|
1088
|
+
newValue?: any;
|
|
1089
|
+
}
|
|
1077
1090
|
export declare class ActivityTimes extends BondBaseEntity {
|
|
1078
1091
|
parentType: ResourceNameTypeEnum | ProductTypesEnum;
|
|
1079
1092
|
parentId: number;
|
|
@@ -1117,6 +1130,11 @@ export declare class AnswerTitle extends OrganizationConnectionBaseEntity {
|
|
|
1117
1130
|
answers: Answer[];
|
|
1118
1131
|
questionnaire: Questionnaires;
|
|
1119
1132
|
}
|
|
1133
|
+
export declare class Athlete extends BondBaseEntity {
|
|
1134
|
+
userId: number | null;
|
|
1135
|
+
metadata: object | null;
|
|
1136
|
+
athleteSports: AthleteSports[];
|
|
1137
|
+
}
|
|
1120
1138
|
export declare class AthleteSports extends BondBaseEntity {
|
|
1121
1139
|
athleteId: number | null;
|
|
1122
1140
|
sports: number | null;
|
|
@@ -1130,11 +1148,6 @@ export declare class BlockedDate extends BondBaseEntity {
|
|
|
1130
1148
|
endDate: Date;
|
|
1131
1149
|
deletedAt?: Date;
|
|
1132
1150
|
}
|
|
1133
|
-
export declare class Athlete extends BondBaseEntity {
|
|
1134
|
-
userId: number | null;
|
|
1135
|
-
metadata: object | null;
|
|
1136
|
-
athleteSports: AthleteSports[];
|
|
1137
|
-
}
|
|
1138
1151
|
export declare class BondBaseEntity extends BaseEntity {
|
|
1139
1152
|
id: number;
|
|
1140
1153
|
createdAt: Date;
|
|
@@ -1173,19 +1186,6 @@ export declare class Configuration extends BondBaseEntity {
|
|
|
1173
1186
|
key: string;
|
|
1174
1187
|
value: string;
|
|
1175
1188
|
}
|
|
1176
|
-
export declare class ActivityLogRecord extends BondBaseEntity {
|
|
1177
|
-
entityType: ResourceNameTypeEnum;
|
|
1178
|
-
entityId: number;
|
|
1179
|
-
organizationId?: number;
|
|
1180
|
-
userId?: number;
|
|
1181
|
-
customerId?: number;
|
|
1182
|
-
performingUserId: number;
|
|
1183
|
-
description: string;
|
|
1184
|
-
actionType: ActionTypesEnum;
|
|
1185
|
-
sourcePlatform: ActionSourcePlatformEnum;
|
|
1186
|
-
oldValue?: any;
|
|
1187
|
-
newValue?: any;
|
|
1188
|
-
}
|
|
1189
1189
|
export declare class Connection extends BondBaseEntity {
|
|
1190
1190
|
connType: number | null;
|
|
1191
1191
|
from: number | null;
|
|
@@ -1388,6 +1388,22 @@ export declare class FutureInstallment extends OrganizationConnectionBaseEntity
|
|
|
1388
1388
|
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1389
1389
|
code: string;
|
|
1390
1390
|
}
|
|
1391
|
+
export declare class Group extends BondBaseEntity {
|
|
1392
|
+
name: string;
|
|
1393
|
+
description?: string;
|
|
1394
|
+
status: GroupStatusEnum;
|
|
1395
|
+
maxCapacity?: number;
|
|
1396
|
+
mainMediaId?: number;
|
|
1397
|
+
minAgeYears?: number;
|
|
1398
|
+
maxAgeYears?: number;
|
|
1399
|
+
gender: GenderEnum;
|
|
1400
|
+
levelOfPlay?: LevelOfPlayEnum[];
|
|
1401
|
+
sports: SportsEnum[];
|
|
1402
|
+
questionnaires?: number[];
|
|
1403
|
+
captainUserId?: number;
|
|
1404
|
+
members: ISeasonAttendeeInfo[];
|
|
1405
|
+
users: User[];
|
|
1406
|
+
}
|
|
1391
1407
|
export declare class GroupItemsPricing extends OrganizationConnectionBaseEntity {
|
|
1392
1408
|
groupId: number;
|
|
1393
1409
|
itemId: number;
|
|
@@ -1406,22 +1422,6 @@ export declare class GroupsInDivisions extends BondBaseEntity {
|
|
|
1406
1422
|
divisionId: number;
|
|
1407
1423
|
deletedAt?: Date;
|
|
1408
1424
|
}
|
|
1409
|
-
export declare class Group extends BondBaseEntity {
|
|
1410
|
-
name: string;
|
|
1411
|
-
description?: string;
|
|
1412
|
-
status: GroupStatusEnum;
|
|
1413
|
-
maxCapacity?: number;
|
|
1414
|
-
mainMediaId?: number;
|
|
1415
|
-
minAgeYears?: number;
|
|
1416
|
-
maxAgeYears?: number;
|
|
1417
|
-
gender: GenderEnum;
|
|
1418
|
-
levelOfPlay?: LevelOfPlayEnum[];
|
|
1419
|
-
sports: SportsEnum[];
|
|
1420
|
-
questionnaires?: number[];
|
|
1421
|
-
captainUserId?: number;
|
|
1422
|
-
members: ISeasonAttendeeInfo[];
|
|
1423
|
-
users: User[];
|
|
1424
|
-
}
|
|
1425
1425
|
export declare class Invoice extends OrganizationConnectionBaseEntity {
|
|
1426
1426
|
price: number;
|
|
1427
1427
|
paymentProcessorId: string;
|
|
@@ -1563,6 +1563,7 @@ export declare class LineItems extends BondBaseEntity {
|
|
|
1563
1563
|
productUserId?: number;
|
|
1564
1564
|
ordinal: number | null;
|
|
1565
1565
|
entitlementGroupId?: number;
|
|
1566
|
+
entitlementGroups: EntitlementGroup;
|
|
1566
1567
|
price: number;
|
|
1567
1568
|
originalPrice?: number;
|
|
1568
1569
|
paidAmount?: number;
|
|
@@ -1685,12 +1686,6 @@ export declare class MembershipMember extends OrganizationConnectionBaseEntity {
|
|
|
1685
1686
|
cancellationStatus?: CancellationStatusEnum;
|
|
1686
1687
|
isImported?: boolean;
|
|
1687
1688
|
}
|
|
1688
|
-
export declare class NotificationSubscriptions extends OrganizationConnectionBaseEntity {
|
|
1689
|
-
email: string | null;
|
|
1690
|
-
notificationType: NotificationTypeEnum | null;
|
|
1691
|
-
resourceId: number | null;
|
|
1692
|
-
resourceType: string | null;
|
|
1693
|
-
}
|
|
1694
1689
|
export declare class OpeningTime extends OrganizationConnectionBaseEntity {
|
|
1695
1690
|
id: number;
|
|
1696
1691
|
dayOfWeek: number;
|
|
@@ -1769,6 +1764,12 @@ export declare class PasswordReset extends BondBaseEntity {
|
|
|
1769
1764
|
validUntil: Date | null;
|
|
1770
1765
|
active: boolean | null;
|
|
1771
1766
|
}
|
|
1767
|
+
export declare class PaymentPlanSchedule extends OrganizationConnectionBaseEntity {
|
|
1768
|
+
paymentPlanId: number;
|
|
1769
|
+
paymentDate: Date;
|
|
1770
|
+
deletedAt?: Date;
|
|
1771
|
+
paymentPlan: ProductPaymentPlan;
|
|
1772
|
+
}
|
|
1772
1773
|
export declare class PaymentV1 extends BondBaseEntity {
|
|
1773
1774
|
userId: number | null;
|
|
1774
1775
|
ownerId: number | null;
|
|
@@ -1787,12 +1788,6 @@ export declare class PaymentV1 extends BondBaseEntity {
|
|
|
1787
1788
|
installmentId: number | null;
|
|
1788
1789
|
orderId: string | null;
|
|
1789
1790
|
}
|
|
1790
|
-
export declare class PaymentPlanSchedule extends OrganizationConnectionBaseEntity {
|
|
1791
|
-
paymentPlanId: number;
|
|
1792
|
-
paymentDate: Date;
|
|
1793
|
-
deletedAt?: Date;
|
|
1794
|
-
paymentPlan: ProductPaymentPlan;
|
|
1795
|
-
}
|
|
1796
1791
|
export declare class Price extends OrganizationConnectionBaseEntity {
|
|
1797
1792
|
productId: number;
|
|
1798
1793
|
product: Product;
|
|
@@ -1898,6 +1893,10 @@ export declare class ProductToVariantTitle extends OrganizationConnectionBaseEnt
|
|
|
1898
1893
|
productId: number;
|
|
1899
1894
|
variantTitleId: number;
|
|
1900
1895
|
}
|
|
1896
|
+
export declare class ProductToVariant extends OrganizationConnectionBaseEntity {
|
|
1897
|
+
productId: number;
|
|
1898
|
+
variantId: number;
|
|
1899
|
+
}
|
|
1901
1900
|
export declare class ProductsReservedForCustomers extends OrganizationConnectionBaseEntity {
|
|
1902
1901
|
productId: number;
|
|
1903
1902
|
customerId: number;
|
|
@@ -1952,10 +1951,6 @@ export declare class ProgramHighlights extends BondBaseEntity {
|
|
|
1952
1951
|
program: Program;
|
|
1953
1952
|
deletedAt?: Date;
|
|
1954
1953
|
}
|
|
1955
|
-
export declare class ProductToVariant extends OrganizationConnectionBaseEntity {
|
|
1956
|
-
productId: number;
|
|
1957
|
-
variantId: number;
|
|
1958
|
-
}
|
|
1959
1954
|
export declare class ProgramSeason extends BondBaseEntity {
|
|
1960
1955
|
programId: number;
|
|
1961
1956
|
name: string;
|
|
@@ -2345,6 +2340,12 @@ export declare class WebflowOrganizationConfiguration extends OrganizationConnec
|
|
|
2345
2340
|
membershipCollectionId?: string;
|
|
2346
2341
|
programsCollectionId?: string;
|
|
2347
2342
|
}
|
|
2343
|
+
export declare class NotificationSubscriptions extends OrganizationConnectionBaseEntity {
|
|
2344
|
+
email: string | null;
|
|
2345
|
+
notificationType: NotificationTypeEnum | null;
|
|
2346
|
+
resourceId: number | null;
|
|
2347
|
+
resourceType: string | null;
|
|
2348
|
+
}
|
|
2348
2349
|
export declare enum EntitlementTermsTypesEnum {
|
|
2349
2350
|
QUESTION = "question",
|
|
2350
2351
|
CITY = "city",
|
|
@@ -3368,12 +3369,6 @@ export declare class Matches extends BondBaseEntity {
|
|
|
3368
3369
|
status: number | null;
|
|
3369
3370
|
excludeStandings: boolean | null;
|
|
3370
3371
|
}
|
|
3371
|
-
export declare class SeasonRounds extends BondBaseEntity {
|
|
3372
|
-
seasonId: number;
|
|
3373
|
-
ordinal?: number;
|
|
3374
|
-
divisionId?: number;
|
|
3375
|
-
name: string;
|
|
3376
|
-
}
|
|
3377
3372
|
export declare class RoundEvents extends BaseEntity {
|
|
3378
3373
|
roundId: number;
|
|
3379
3374
|
eventId: number;
|
|
@@ -3381,6 +3376,12 @@ export declare class RoundEvents extends BaseEntity {
|
|
|
3381
3376
|
createdAt: Date;
|
|
3382
3377
|
updatedAt: Date;
|
|
3383
3378
|
}
|
|
3379
|
+
export declare class SeasonRounds extends BondBaseEntity {
|
|
3380
|
+
seasonId: number;
|
|
3381
|
+
ordinal?: number;
|
|
3382
|
+
divisionId?: number;
|
|
3383
|
+
name: string;
|
|
3384
|
+
}
|
|
3384
3385
|
export declare class TeamEvents extends BondBaseEntity {
|
|
3385
3386
|
teamId: number | null;
|
|
3386
3387
|
eventId: number | null;
|
|
@@ -3462,6 +3463,9 @@ export declare class OrganizationBranding extends OrganizationConnectionBaseEnti
|
|
|
3462
3463
|
version: number;
|
|
3463
3464
|
organization: Organization;
|
|
3464
3465
|
}
|
|
3466
|
+
export declare class OrganizationSettings extends OrganizationConnectionBaseEntity {
|
|
3467
|
+
mainAdminUserId?: number;
|
|
3468
|
+
}
|
|
3465
3469
|
export declare class OrganizationUsers extends BondBaseEntity {
|
|
3466
3470
|
organisationId: number | null;
|
|
3467
3471
|
userId: number | null;
|
|
@@ -3641,13 +3645,12 @@ export declare class LineItemDto {
|
|
|
3641
3645
|
unitTaxPrice?: number;
|
|
3642
3646
|
parentOrdinal?: number;
|
|
3643
3647
|
}
|
|
3644
|
-
export declare class
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
endTime?: string;
|
|
3648
|
+
export declare class MaintenanceDto {
|
|
3649
|
+
id?: number;
|
|
3650
|
+
title: string;
|
|
3651
|
+
durationValue: number;
|
|
3652
|
+
maintenanceDurationdurationType: DurationUnitTypesEnum;
|
|
3653
|
+
maintenanceTiming: MaintenanceTimingEnum;
|
|
3651
3654
|
}
|
|
3652
3655
|
export declare class OrderDto {
|
|
3653
3656
|
orderId?: string | null;
|
|
@@ -3690,12 +3693,13 @@ export declare class AddSlotsDto extends UpdateInvoiceDto {
|
|
|
3690
3693
|
export declare class AddSegmentsDto extends UpdateInvoiceDto {
|
|
3691
3694
|
segments: SegmentDto[];
|
|
3692
3695
|
}
|
|
3693
|
-
export declare class
|
|
3694
|
-
|
|
3695
|
-
|
|
3696
|
-
|
|
3697
|
-
|
|
3698
|
-
|
|
3696
|
+
export declare class PurchasedResourceDto {
|
|
3697
|
+
resourceId?: number;
|
|
3698
|
+
resourceType: ResourceNameTypeEnum;
|
|
3699
|
+
startDate?: string;
|
|
3700
|
+
startTime?: string;
|
|
3701
|
+
endDate?: string;
|
|
3702
|
+
endTime?: string;
|
|
3699
3703
|
}
|
|
3700
3704
|
export declare class ReservationDto {
|
|
3701
3705
|
id?: number;
|
|
@@ -3837,17 +3841,6 @@ export declare class ValidateEditSlotsDto extends UpdateSlotsDto {
|
|
|
3837
3841
|
export declare class AddAddonsDto {
|
|
3838
3842
|
addons: ProductPricesDto[];
|
|
3839
3843
|
}
|
|
3840
|
-
export declare class SegmentDto {
|
|
3841
|
-
id?: number;
|
|
3842
|
-
title: string;
|
|
3843
|
-
isPrivate: boolean;
|
|
3844
|
-
resourceIds: number[];
|
|
3845
|
-
sportId?: number;
|
|
3846
|
-
series: SeriesDto[];
|
|
3847
|
-
addonIds?: number[];
|
|
3848
|
-
publicNotesForSlots?: string;
|
|
3849
|
-
privateNotesForSlots?: string;
|
|
3850
|
-
}
|
|
3851
3844
|
export declare class SeriesDto {
|
|
3852
3845
|
id?: number;
|
|
3853
3846
|
startDate: string;
|
|
@@ -3928,6 +3921,17 @@ export declare class SlotDto extends SlotDateTimeAndSpace {
|
|
|
3928
3921
|
slotDurationType: SlotDurationTypeEnum;
|
|
3929
3922
|
addonsIds?: number[];
|
|
3930
3923
|
}
|
|
3924
|
+
export declare class SegmentDto {
|
|
3925
|
+
id?: number;
|
|
3926
|
+
title: string;
|
|
3927
|
+
isPrivate: boolean;
|
|
3928
|
+
resourceIds: number[];
|
|
3929
|
+
sportId?: number;
|
|
3930
|
+
series: SeriesDto[];
|
|
3931
|
+
addonIds?: number[];
|
|
3932
|
+
publicNotesForSlots?: string;
|
|
3933
|
+
privateNotesForSlots?: string;
|
|
3934
|
+
}
|
|
3931
3935
|
declare class AnswerDto {
|
|
3932
3936
|
questionId: number;
|
|
3933
3937
|
value: any;
|
|
@@ -3965,6 +3969,24 @@ export declare class BookingV1Dto {
|
|
|
3965
3969
|
cashPayment: boolean;
|
|
3966
3970
|
requestOnly: boolean;
|
|
3967
3971
|
}
|
|
3972
|
+
export declare class Addon extends OrganizationConnectionBaseEntity {
|
|
3973
|
+
parentId: number;
|
|
3974
|
+
parentType: AddonParentTypeEnum;
|
|
3975
|
+
productId: number;
|
|
3976
|
+
product?: Product;
|
|
3977
|
+
quantity: number;
|
|
3978
|
+
unitPrice: number;
|
|
3979
|
+
totalPrice: number;
|
|
3980
|
+
approvalStatus: ReservationStatusEnum;
|
|
3981
|
+
paymentStatus: ReservationPaymentStatusEnum;
|
|
3982
|
+
level?: ProductPackageLevelEnum;
|
|
3983
|
+
resourceId?: number;
|
|
3984
|
+
resource?: Resource;
|
|
3985
|
+
orderId?: number;
|
|
3986
|
+
order?: Order;
|
|
3987
|
+
productUserId?: number;
|
|
3988
|
+
productUser?: ProductsUsers;
|
|
3989
|
+
}
|
|
3968
3990
|
export declare class InvoicedSlots extends OrganizationConnectionBaseEntity {
|
|
3969
3991
|
deletedAt?: Date;
|
|
3970
3992
|
reservationId: number;
|
|
@@ -4010,38 +4032,6 @@ export declare class Reservation extends OrganizationConnectionBaseEntity {
|
|
|
4010
4032
|
targetGlobalPrice?: number;
|
|
4011
4033
|
slots: Slot[];
|
|
4012
4034
|
}
|
|
4013
|
-
export declare class Addon extends OrganizationConnectionBaseEntity {
|
|
4014
|
-
parentId: number;
|
|
4015
|
-
parentType: AddonParentTypeEnum;
|
|
4016
|
-
productId: number;
|
|
4017
|
-
product?: Product;
|
|
4018
|
-
quantity: number;
|
|
4019
|
-
unitPrice: number;
|
|
4020
|
-
totalPrice: number;
|
|
4021
|
-
approvalStatus: ReservationStatusEnum;
|
|
4022
|
-
paymentStatus: ReservationPaymentStatusEnum;
|
|
4023
|
-
level?: ProductPackageLevelEnum;
|
|
4024
|
-
resourceId?: number;
|
|
4025
|
-
resource?: Resource;
|
|
4026
|
-
orderId?: number;
|
|
4027
|
-
order?: Order;
|
|
4028
|
-
productUserId?: number;
|
|
4029
|
-
productUser?: ProductsUsers;
|
|
4030
|
-
}
|
|
4031
|
-
export declare class Segment extends OrganizationConnectionBaseEntity {
|
|
4032
|
-
deletedAt?: Date;
|
|
4033
|
-
reservationId: number;
|
|
4034
|
-
title: string;
|
|
4035
|
-
isPrivate: boolean;
|
|
4036
|
-
resourceIds?: number[];
|
|
4037
|
-
sportId: number;
|
|
4038
|
-
reservation?: Reservation;
|
|
4039
|
-
series?: Series[];
|
|
4040
|
-
addonIds?: number[] | null;
|
|
4041
|
-
publicNotesForSlots?: string;
|
|
4042
|
-
privateNotesForSlots?: string;
|
|
4043
|
-
slots?: Slot[];
|
|
4044
|
-
}
|
|
4045
4035
|
export declare class Series extends OrganizationConnectionBaseEntity {
|
|
4046
4036
|
deletedAt?: Date;
|
|
4047
4037
|
segmentId: number;
|
|
@@ -4061,6 +4051,20 @@ export declare class Series extends OrganizationConnectionBaseEntity {
|
|
|
4061
4051
|
numberOccurrences?: number;
|
|
4062
4052
|
resources?: Resource[];
|
|
4063
4053
|
}
|
|
4054
|
+
export declare class Segment extends OrganizationConnectionBaseEntity {
|
|
4055
|
+
deletedAt?: Date;
|
|
4056
|
+
reservationId: number;
|
|
4057
|
+
title: string;
|
|
4058
|
+
isPrivate: boolean;
|
|
4059
|
+
resourceIds?: number[];
|
|
4060
|
+
sportId: number;
|
|
4061
|
+
reservation?: Reservation;
|
|
4062
|
+
series?: Series[];
|
|
4063
|
+
addonIds?: number[] | null;
|
|
4064
|
+
publicNotesForSlots?: string;
|
|
4065
|
+
privateNotesForSlots?: string;
|
|
4066
|
+
slots?: Slot[];
|
|
4067
|
+
}
|
|
4064
4068
|
export declare class Slot extends OrganizationConnectionBaseEntity {
|
|
4065
4069
|
constructor();
|
|
4066
4070
|
defineIsReverted(): void;
|
|
@@ -4154,6 +4158,9 @@ export declare class UserRole extends OrganizationConnectionBaseEntity {
|
|
|
4154
4158
|
export declare class CloseShiftDto {
|
|
4155
4159
|
closingCashAmount: number;
|
|
4156
4160
|
}
|
|
4161
|
+
export declare class FindShiftsByIdsDto {
|
|
4162
|
+
shiftIds: number[];
|
|
4163
|
+
}
|
|
4157
4164
|
export declare class FindShiftsFiltersDto {
|
|
4158
4165
|
statuses?: string;
|
|
4159
4166
|
stationIds?: string;
|
|
@@ -4214,9 +4221,3 @@ export declare class Shift extends OrganizationConnectionBaseEntity {
|
|
|
4214
4221
|
closingManager?: User;
|
|
4215
4222
|
reconcilingUser?: User;
|
|
4216
4223
|
}
|
|
4217
|
-
export declare class FindShiftsByIdsDto {
|
|
4218
|
-
shiftIds: number[];
|
|
4219
|
-
}
|
|
4220
|
-
export declare class OrganizationSettings extends OrganizationConnectionBaseEntity {
|
|
4221
|
-
mainAdminUserId?: number;
|
|
4222
|
-
}
|