@bondsports/types 0.0.1 → 0.0.4
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/README.md +5 -4
- package/build/index.d.ts +2387 -2388
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -1,6 +1,175 @@
|
|
|
1
1
|
import { BaseEntity } from 'typeorm';
|
|
2
2
|
import { Stripe } from 'stripe';
|
|
3
3
|
import moment from 'moment';
|
|
4
|
+
export declare class BasicActivityTimesDto {
|
|
5
|
+
dayOfWeek: number;
|
|
6
|
+
close: string;
|
|
7
|
+
open: string;
|
|
8
|
+
availabilityStartDate?: string;
|
|
9
|
+
availabilityEndDate?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare class QuestionAnswersDto {
|
|
12
|
+
questionId: number;
|
|
13
|
+
value: any;
|
|
14
|
+
}
|
|
15
|
+
export declare class UserAnswersDto {
|
|
16
|
+
userId: number;
|
|
17
|
+
answers: QuestionAnswersDto[];
|
|
18
|
+
}
|
|
19
|
+
export declare class GetByQuestionnaireIdsDto {
|
|
20
|
+
questionnaireIds: string;
|
|
21
|
+
}
|
|
22
|
+
export declare class FindBookingTypeSettingDto {
|
|
23
|
+
organizationId: number;
|
|
24
|
+
facilityId: number;
|
|
25
|
+
spaceId: number;
|
|
26
|
+
bookingDate: string;
|
|
27
|
+
bookingTime: string;
|
|
28
|
+
}
|
|
29
|
+
export declare class FindEventByIdDto {
|
|
30
|
+
eventId: number;
|
|
31
|
+
organizationId: number;
|
|
32
|
+
}
|
|
33
|
+
export declare class UpdateEventDto {
|
|
34
|
+
name: string;
|
|
35
|
+
startDate: string;
|
|
36
|
+
endDate: string;
|
|
37
|
+
startTime: string;
|
|
38
|
+
endTime: string;
|
|
39
|
+
spacesIds?: number[];
|
|
40
|
+
publicNotes?: string;
|
|
41
|
+
privateNotes?: string;
|
|
42
|
+
isInformAttendees?: boolean;
|
|
43
|
+
minutesBeforeSlot?: number;
|
|
44
|
+
minutesAfterSlot?: number;
|
|
45
|
+
}
|
|
46
|
+
export declare class AddEventToSessionDto {
|
|
47
|
+
eventsData: UpdateEventDto[];
|
|
48
|
+
}
|
|
49
|
+
export declare class EventsIdsQueryDto {
|
|
50
|
+
eventsIds: string;
|
|
51
|
+
}
|
|
52
|
+
export declare class UpdateMultipleEventsDto {
|
|
53
|
+
eventsIds: number[];
|
|
54
|
+
name?: string;
|
|
55
|
+
startTime?: string;
|
|
56
|
+
endTime?: string;
|
|
57
|
+
spacesIds?: number[];
|
|
58
|
+
publicNotes?: string;
|
|
59
|
+
privateNotes?: string;
|
|
60
|
+
isInformAttendees?: boolean;
|
|
61
|
+
minutesBeforeSlot?: number;
|
|
62
|
+
minutesAfterSlot?: number;
|
|
63
|
+
}
|
|
64
|
+
export declare class FindByFacilityIdDto {
|
|
65
|
+
facilityId: number;
|
|
66
|
+
}
|
|
67
|
+
export declare class FindByFacilityIdAndOrganizationIdDto extends FindByFacilityIdDto {
|
|
68
|
+
organizationId: number;
|
|
69
|
+
}
|
|
70
|
+
export declare class FacilityEventsScheduleQueryParams {
|
|
71
|
+
programsIds?: string;
|
|
72
|
+
startDate?: string;
|
|
73
|
+
endDate?: string;
|
|
74
|
+
}
|
|
75
|
+
export declare class ProgramLandingPageDto {
|
|
76
|
+
programId: number;
|
|
77
|
+
}
|
|
78
|
+
export declare class ProgramLandingPageQueryDto {
|
|
79
|
+
futureLimit?: number;
|
|
80
|
+
}
|
|
81
|
+
export declare class ProgramSessionLandingPageDto {
|
|
82
|
+
programId: number;
|
|
83
|
+
sessionId: number;
|
|
84
|
+
}
|
|
85
|
+
export interface IEventOfSessionDetails {
|
|
86
|
+
id: number;
|
|
87
|
+
name: string;
|
|
88
|
+
programId: number;
|
|
89
|
+
programType: ProgramTypesEnum;
|
|
90
|
+
sessionId: number;
|
|
91
|
+
sessionName: string;
|
|
92
|
+
isPublic: boolean;
|
|
93
|
+
startDate: Date;
|
|
94
|
+
endDate: Date;
|
|
95
|
+
startTime: string;
|
|
96
|
+
endTime: string;
|
|
97
|
+
resources: IBasicSpaceAndSlotCreator[];
|
|
98
|
+
attenedanceCount: number;
|
|
99
|
+
checkedInCount: number;
|
|
100
|
+
missingPaymentCount: number;
|
|
101
|
+
publicNotes: string;
|
|
102
|
+
privateNotes: string;
|
|
103
|
+
}
|
|
104
|
+
export interface IAttendeeOfEvent {
|
|
105
|
+
eventId: number;
|
|
106
|
+
userId: number;
|
|
107
|
+
lastName: string;
|
|
108
|
+
firstName: string;
|
|
109
|
+
birthDate: string;
|
|
110
|
+
mediaURL: string;
|
|
111
|
+
signedWaiver: string;
|
|
112
|
+
entryStatus: EntryStatusEnum;
|
|
113
|
+
paymentStatus: PaymentStatusEnum;
|
|
114
|
+
addOns: {
|
|
115
|
+
productId: number;
|
|
116
|
+
productName: string;
|
|
117
|
+
}[];
|
|
118
|
+
totalPasses?: number;
|
|
119
|
+
leftPasses?: number;
|
|
120
|
+
addonProductUserIds: number[];
|
|
121
|
+
}
|
|
122
|
+
export declare class FindEventAttendeeOptionsDto extends PaginationRangeQuery {
|
|
123
|
+
nameSearch?: string;
|
|
124
|
+
isCheckedIn?: string;
|
|
125
|
+
isNotCheckedIn?: string;
|
|
126
|
+
hasAddons?: string;
|
|
127
|
+
isWaiverSigned?: string;
|
|
128
|
+
statuses?: string;
|
|
129
|
+
}
|
|
130
|
+
export declare class AddressDto {
|
|
131
|
+
city: string;
|
|
132
|
+
state: string;
|
|
133
|
+
country: string;
|
|
134
|
+
geo: number[];
|
|
135
|
+
}
|
|
136
|
+
export declare class OpeningTimeDto {
|
|
137
|
+
open: string;
|
|
138
|
+
close: string;
|
|
139
|
+
dayOfWeek: number;
|
|
140
|
+
}
|
|
141
|
+
export declare class CreateFacilityDto {
|
|
142
|
+
name: string;
|
|
143
|
+
sports: number[];
|
|
144
|
+
description?: string;
|
|
145
|
+
longDescription?: string;
|
|
146
|
+
info?: string;
|
|
147
|
+
address: AddressDto;
|
|
148
|
+
timezone: string;
|
|
149
|
+
amenities: number[];
|
|
150
|
+
openingTimes: OpeningTimeDto[];
|
|
151
|
+
resourcesIds?: number[];
|
|
152
|
+
}
|
|
153
|
+
export declare class UpdateFacilityDetailsDto {
|
|
154
|
+
name?: string;
|
|
155
|
+
description?: string;
|
|
156
|
+
longDescription?: string;
|
|
157
|
+
info?: string;
|
|
158
|
+
address?: AddressDto;
|
|
159
|
+
timezone?: string;
|
|
160
|
+
}
|
|
161
|
+
export declare class UpdateFacilityOpeningTimesDto {
|
|
162
|
+
openingTimes: OpeningTimeDto[];
|
|
163
|
+
}
|
|
164
|
+
export declare class UpdateFacilitySportsDto {
|
|
165
|
+
sports: number[];
|
|
166
|
+
}
|
|
167
|
+
export declare class UpdateFacilityAmenitiesDto {
|
|
168
|
+
amenities: number[];
|
|
169
|
+
}
|
|
170
|
+
export declare class FindFacilitiesOptionsDto extends PaginationQuery {
|
|
171
|
+
nameSearch?: string;
|
|
172
|
+
}
|
|
4
173
|
export declare class FindByMembershipIdDto extends ByOrganizationIdDto {
|
|
5
174
|
membershipId: number;
|
|
6
175
|
}
|
|
@@ -59,49 +228,6 @@ export declare class AddEditCustomerDto {
|
|
|
59
228
|
emergencyContactName?: string;
|
|
60
229
|
emergencyContactPhone?: string;
|
|
61
230
|
}
|
|
62
|
-
export declare class AddressDto {
|
|
63
|
-
city: string;
|
|
64
|
-
state: string;
|
|
65
|
-
country: string;
|
|
66
|
-
geo: number[];
|
|
67
|
-
}
|
|
68
|
-
export declare class OpeningTimeDto {
|
|
69
|
-
open: string;
|
|
70
|
-
close: string;
|
|
71
|
-
dayOfWeek: number;
|
|
72
|
-
}
|
|
73
|
-
export declare class CreateFacilityDto {
|
|
74
|
-
name: string;
|
|
75
|
-
sports: number[];
|
|
76
|
-
description?: string;
|
|
77
|
-
longDescription?: string;
|
|
78
|
-
info?: string;
|
|
79
|
-
address: AddressDto;
|
|
80
|
-
timezone: string;
|
|
81
|
-
amenities: number[];
|
|
82
|
-
openingTimes: OpeningTimeDto[];
|
|
83
|
-
resourcesIds?: number[];
|
|
84
|
-
}
|
|
85
|
-
export declare class UpdateFacilityDetailsDto {
|
|
86
|
-
name?: string;
|
|
87
|
-
description?: string;
|
|
88
|
-
longDescription?: string;
|
|
89
|
-
info?: string;
|
|
90
|
-
address?: AddressDto;
|
|
91
|
-
timezone?: string;
|
|
92
|
-
}
|
|
93
|
-
export declare class UpdateFacilityOpeningTimesDto {
|
|
94
|
-
openingTimes: OpeningTimeDto[];
|
|
95
|
-
}
|
|
96
|
-
export declare class UpdateFacilitySportsDto {
|
|
97
|
-
sports: number[];
|
|
98
|
-
}
|
|
99
|
-
export declare class UpdateFacilityAmenitiesDto {
|
|
100
|
-
amenities: number[];
|
|
101
|
-
}
|
|
102
|
-
export declare class FindFacilitiesOptionsDto extends PaginationQuery {
|
|
103
|
-
nameSearch?: string;
|
|
104
|
-
}
|
|
105
231
|
export declare class FindFamilyAccountsDto {
|
|
106
232
|
userId: number;
|
|
107
233
|
}
|
|
@@ -146,6 +272,16 @@ export declare class PaginationRangeQuery {
|
|
|
146
272
|
endPage: number;
|
|
147
273
|
itemsPerPage: number;
|
|
148
274
|
}
|
|
275
|
+
export declare class FindGlCodeByOrganizationIdDto {
|
|
276
|
+
organizationId: number;
|
|
277
|
+
}
|
|
278
|
+
export declare class GetGlCodeDto {
|
|
279
|
+
id: number;
|
|
280
|
+
organizationId: number;
|
|
281
|
+
code: string;
|
|
282
|
+
createdAt: Date;
|
|
283
|
+
updatedAt: Date;
|
|
284
|
+
}
|
|
149
285
|
export declare class FindByProgramSeasonIdDto {
|
|
150
286
|
seasonId: number;
|
|
151
287
|
}
|
|
@@ -219,17 +355,6 @@ export declare class MoveTeamOrMemberDto implements IMoveSeason {
|
|
|
219
355
|
export declare class MoveTeamOrMembersByCsvDTO {
|
|
220
356
|
fileName: string;
|
|
221
357
|
}
|
|
222
|
-
export declare class QuestionAnswersDto {
|
|
223
|
-
questionId: number;
|
|
224
|
-
value: any;
|
|
225
|
-
}
|
|
226
|
-
export declare class UserAnswersDto {
|
|
227
|
-
userId: number;
|
|
228
|
-
answers: QuestionAnswersDto[];
|
|
229
|
-
}
|
|
230
|
-
export declare class GetByQuestionnaireIdsDto {
|
|
231
|
-
questionnaireIds: string;
|
|
232
|
-
}
|
|
233
358
|
export declare class CreateMembershipDto {
|
|
234
359
|
organizationId: number;
|
|
235
360
|
name: string;
|
|
@@ -328,186 +453,13 @@ export declare class CreateGroupPricingWithProduct {
|
|
|
328
453
|
discountValue?: number;
|
|
329
454
|
discountMethod?: DiscountMethodsEnum;
|
|
330
455
|
}
|
|
331
|
-
export declare class
|
|
332
|
-
|
|
333
|
-
parentProductId: number;
|
|
334
|
-
variantTitles: VariantTitleDto[];
|
|
335
|
-
variants: VariantDto[];
|
|
336
|
-
}
|
|
337
|
-
export declare class VariantTitleDto {
|
|
338
|
-
titleName: string;
|
|
339
|
-
titleId: number;
|
|
456
|
+
export declare class FindByProductIdDto {
|
|
457
|
+
productId: number;
|
|
340
458
|
}
|
|
341
|
-
export declare class
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
currency: CurrencyEnum;
|
|
346
|
-
startDate: Date;
|
|
347
|
-
endDate: Date;
|
|
348
|
-
}
|
|
349
|
-
export declare class PurchasePaymentDto {
|
|
350
|
-
token: string;
|
|
351
|
-
type: PaymentMethodTypeEnum;
|
|
352
|
-
}
|
|
353
|
-
export declare class ChargeRentalsReuqestDto {
|
|
354
|
-
organizationId: number;
|
|
355
|
-
userId?: number;
|
|
356
|
-
customerId?: number;
|
|
357
|
-
orderId: number;
|
|
358
|
-
paymentData: PurchasePaymentDto;
|
|
359
|
-
amountToPay: number;
|
|
360
|
-
total: number;
|
|
361
|
-
platform: PlatformsEnum;
|
|
362
|
-
shiftId?: number;
|
|
363
|
-
}
|
|
364
|
-
export declare class PurchaseRequestDto {
|
|
365
|
-
purchasingUserId: number;
|
|
366
|
-
customerId?: number;
|
|
367
|
-
products: PurchaseProductDto[];
|
|
368
|
-
paymentData: PurchasePaymentDto;
|
|
369
|
-
answers: UserAnswersDto[];
|
|
370
|
-
amountToPay: number;
|
|
371
|
-
parentPurchasedType?: ResourceNameTypeEnum;
|
|
372
|
-
parentPurchasedId?: number;
|
|
373
|
-
isPartialPayment: boolean;
|
|
374
|
-
existingOrderToken?: string;
|
|
375
|
-
installments?: ScheduledPaymentDto[];
|
|
376
|
-
shiftId?: number;
|
|
377
|
-
orderId?: number;
|
|
378
|
-
}
|
|
379
|
-
export declare class PurchaseResourceDto extends ResourceDto {
|
|
380
|
-
}
|
|
381
|
-
export declare class PurchaseProductDto {
|
|
382
|
-
id: number;
|
|
383
|
-
resources?: PurchaseResourceDto[];
|
|
384
|
-
userId?: number;
|
|
385
|
-
paymentStatus?: PaymentStatusEnum;
|
|
386
|
-
amountToPay?: number;
|
|
387
|
-
ordinal?: number;
|
|
388
|
-
startDate?: Date;
|
|
389
|
-
quantity?: number;
|
|
390
|
-
}
|
|
391
|
-
export declare class PartialPaymentRequestDto {
|
|
392
|
-
orderId: number;
|
|
393
|
-
amountToPay: number;
|
|
394
|
-
organizationId: number;
|
|
395
|
-
payingUserId: number;
|
|
396
|
-
paymentMethodData: PurchasePaymentDto;
|
|
397
|
-
shiftId?: number;
|
|
398
|
-
}
|
|
399
|
-
export declare class RedeemPunchCardRequestDto {
|
|
400
|
-
products: PurchaseProductDto[];
|
|
401
|
-
answersTitlesIds: number[];
|
|
402
|
-
organizationId: number;
|
|
403
|
-
purchasingUserId: number;
|
|
404
|
-
}
|
|
405
|
-
export declare class OrderIdDto extends ByOrganizationIdDto {
|
|
406
|
-
orderId: number;
|
|
407
|
-
}
|
|
408
|
-
export declare class AddItemsDto {
|
|
409
|
-
products: PurchaseProductDto[];
|
|
410
|
-
allocateResource: boolean;
|
|
411
|
-
skipMail: boolean;
|
|
412
|
-
}
|
|
413
|
-
export declare class PartialPaymentAsUserDto {
|
|
414
|
-
orderId: any;
|
|
415
|
-
organizationId: any;
|
|
416
|
-
amountToPay: any;
|
|
417
|
-
paymentMethodData: any;
|
|
418
|
-
}
|
|
419
|
-
export declare class FindProgramsByOrganizationIdDto {
|
|
420
|
-
organizationId: number;
|
|
421
|
-
programType?: ProgramTypesEnum;
|
|
422
|
-
}
|
|
423
|
-
export declare class FindProgramByIdDto {
|
|
424
|
-
programId: number;
|
|
425
|
-
}
|
|
426
|
-
export declare class FindProgramByOrgIdAndIdDto {
|
|
427
|
-
programId: number;
|
|
428
|
-
organizationId: number;
|
|
429
|
-
}
|
|
430
|
-
export declare class BaseProgramDto {
|
|
431
|
-
type: ProgramTypesEnum;
|
|
432
|
-
name: string;
|
|
433
|
-
sport: SportsEnum;
|
|
434
|
-
minAge: string;
|
|
435
|
-
maxAge: string;
|
|
436
|
-
gender: GenderEnum;
|
|
437
|
-
level?: LevelOfPlayEnum[];
|
|
438
|
-
description?: string;
|
|
439
|
-
GL?: string;
|
|
440
|
-
status: PublishingStatusEnum;
|
|
441
|
-
organizationId: number;
|
|
442
|
-
userCreatorId: number;
|
|
443
|
-
highlights: ProgramHighlights[];
|
|
444
|
-
longDescription?: string;
|
|
445
|
-
requiredProductIds: number[];
|
|
446
|
-
}
|
|
447
|
-
export declare class CreateProgramDto extends BaseProgramDto {
|
|
448
|
-
}
|
|
449
|
-
export declare class UpdateProgramDto extends BaseProgramDto {
|
|
450
|
-
programId: number;
|
|
451
|
-
mainMediaId: number;
|
|
452
|
-
}
|
|
453
|
-
export declare class UpdateProgramStatusDto {
|
|
454
|
-
programId: number;
|
|
455
|
-
status: PublishingStatusEnum;
|
|
456
|
-
}
|
|
457
|
-
export declare class ProgramHighlightDto {
|
|
458
|
-
data: string;
|
|
459
|
-
ordinal: number;
|
|
460
|
-
type: ProgramHighlightTypeEnum;
|
|
461
|
-
title: string;
|
|
462
|
-
}
|
|
463
|
-
export declare class ResourceDto {
|
|
464
|
-
type: ResourceNameTypeEnum;
|
|
465
|
-
id: number;
|
|
466
|
-
}
|
|
467
|
-
export declare class BasicActivityTimesDto {
|
|
468
|
-
dayOfWeek: number;
|
|
469
|
-
close: string;
|
|
470
|
-
open: string;
|
|
471
|
-
availabilityStartDate?: string;
|
|
472
|
-
availabilityEndDate?: string;
|
|
473
|
-
}
|
|
474
|
-
export declare class FindGlCodeByOrganizationIdDto {
|
|
475
|
-
organizationId: number;
|
|
476
|
-
}
|
|
477
|
-
export declare class GetGlCodeDto {
|
|
478
|
-
id: number;
|
|
479
|
-
organizationId: number;
|
|
480
|
-
code: string;
|
|
481
|
-
createdAt: Date;
|
|
482
|
-
updatedAt: Date;
|
|
483
|
-
}
|
|
484
|
-
export declare class StripeCustomerIdDto {
|
|
485
|
-
userId: number;
|
|
486
|
-
}
|
|
487
|
-
export declare class AddACHTokenToCustomerDto {
|
|
488
|
-
publicToken: string;
|
|
489
|
-
accountId: string;
|
|
490
|
-
}
|
|
491
|
-
export declare class ActivityTimes extends BondBaseEntity {
|
|
492
|
-
parentType: ResourceNameTypeEnum | ProductTypesEnum;
|
|
493
|
-
parentId: number;
|
|
494
|
-
dayOfWeek: number;
|
|
495
|
-
open: string;
|
|
496
|
-
close: string;
|
|
497
|
-
deletedAt?: Date;
|
|
498
|
-
program: ProgramSeason;
|
|
499
|
-
availabilityStartDate: string;
|
|
500
|
-
availabilityEndDate: string;
|
|
501
|
-
proudct: Product;
|
|
502
|
-
event: Event;
|
|
503
|
-
}
|
|
504
|
-
export declare class FindByProductIdDto {
|
|
505
|
-
productId: number;
|
|
506
|
-
}
|
|
507
|
-
export declare class FindPriceOfProductDto {
|
|
508
|
-
id: number;
|
|
509
|
-
userId: number;
|
|
510
|
-
resources: ResourceDto[];
|
|
459
|
+
export declare class FindPriceOfProductDto {
|
|
460
|
+
id: number;
|
|
461
|
+
userId: number;
|
|
462
|
+
resources: ResourceDto[];
|
|
511
463
|
}
|
|
512
464
|
export declare class FindPricesOfProductsDto {
|
|
513
465
|
products: FindPriceOfProductDto[];
|
|
@@ -721,1395 +673,996 @@ export declare class createResourceDto {
|
|
|
721
673
|
export declare class archiveDto {
|
|
722
674
|
isArchive: boolean;
|
|
723
675
|
}
|
|
724
|
-
export declare class
|
|
676
|
+
export declare class CreateUpdateVariantsDto {
|
|
725
677
|
organizationId: number;
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
bookingTime: string;
|
|
730
|
-
}
|
|
731
|
-
export declare class CreateResourceGroupDto {
|
|
732
|
-
name: string;
|
|
733
|
-
parentSlotId: number;
|
|
734
|
-
facilityId: number;
|
|
735
|
-
childrenSlotIds: number[];
|
|
736
|
-
}
|
|
737
|
-
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
678
|
+
parentProductId: number;
|
|
679
|
+
variantTitles: VariantTitleDto[];
|
|
680
|
+
variants: VariantDto[];
|
|
738
681
|
}
|
|
739
|
-
export declare class
|
|
740
|
-
|
|
682
|
+
export declare class VariantTitleDto {
|
|
683
|
+
titleName: string;
|
|
684
|
+
titleId: number;
|
|
741
685
|
}
|
|
742
|
-
export declare class
|
|
686
|
+
export declare class VariantDto {
|
|
743
687
|
name: string;
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
properties: SpacePropertiesEnum;
|
|
750
|
-
width?: number;
|
|
751
|
-
length?: number;
|
|
752
|
-
surface?: SurfacesEnum;
|
|
753
|
-
ages?: ResourceAgesEnum;
|
|
754
|
-
amenities: number[];
|
|
755
|
-
activityTimes: BasicActivityTimesDto[];
|
|
756
|
-
facilitiesIds: number[];
|
|
757
|
-
resourceGroupId?: number;
|
|
758
|
-
blockedResourcesIds?: number[];
|
|
688
|
+
price: number;
|
|
689
|
+
variantId: number;
|
|
690
|
+
currency: CurrencyEnum;
|
|
691
|
+
startDate: Date;
|
|
692
|
+
endDate: Date;
|
|
759
693
|
}
|
|
760
|
-
export declare class
|
|
761
|
-
|
|
762
|
-
description?: string;
|
|
763
|
-
longDescription?: string;
|
|
764
|
-
isAddon?: boolean;
|
|
765
|
-
facilitiesIds: number[];
|
|
694
|
+
export declare class FindProgramSeasonsByProgramIdDto {
|
|
695
|
+
programId: number;
|
|
766
696
|
}
|
|
767
|
-
export declare class
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
length?: number;
|
|
771
|
-
surface?: SurfacesEnum;
|
|
772
|
-
ages?: ResourceAgesEnum;
|
|
697
|
+
export declare class FindSessionsFiltersDto {
|
|
698
|
+
status?: PublishingStatusEnum;
|
|
699
|
+
isFullFetch?: boolean;
|
|
773
700
|
}
|
|
774
|
-
export declare class
|
|
775
|
-
|
|
701
|
+
export declare class FindSessionsByProgramAndOrganizationDto extends FindProgramSeasonsByProgramIdDto {
|
|
702
|
+
organizationId: number;
|
|
776
703
|
}
|
|
777
|
-
export declare class
|
|
778
|
-
|
|
779
|
-
blockedResourcesIds?: number[];
|
|
704
|
+
export declare class DeleteEventAttendeesDto {
|
|
705
|
+
eventAttendeeIds: string;
|
|
780
706
|
}
|
|
781
|
-
export declare class
|
|
782
|
-
|
|
783
|
-
parentSpaceId?: number;
|
|
707
|
+
export declare class FindProgramSeasonByIdQueryDto {
|
|
708
|
+
includeResources?: boolean;
|
|
784
709
|
}
|
|
785
|
-
export declare class
|
|
786
|
-
|
|
787
|
-
futureHoursLimit?: number;
|
|
710
|
+
export declare class FindProgramSeasonByIdDto extends OptionalFindByOrganizationIdDto {
|
|
711
|
+
seasonId: number;
|
|
788
712
|
}
|
|
789
|
-
export declare class
|
|
790
|
-
|
|
791
|
-
facilitiesIds?: string;
|
|
792
|
-
types?: string;
|
|
793
|
-
resourcesIds?: string;
|
|
713
|
+
export declare class DeleteProgramSeasonByIDDto extends ByOrganizationIdDto {
|
|
714
|
+
seasonId: number;
|
|
794
715
|
}
|
|
795
|
-
export declare class
|
|
716
|
+
export declare class DeleteProductDto {
|
|
717
|
+
deleteProduct?: boolean;
|
|
718
|
+
}
|
|
719
|
+
export declare class FindRegisteredUserDto extends FindProgramSeasonByIdDto {
|
|
796
720
|
userId: number;
|
|
797
721
|
}
|
|
798
|
-
export declare class
|
|
799
|
-
|
|
722
|
+
export declare class FindRegisteredUsersOptionsDto extends PaginationQuery {
|
|
723
|
+
isFreeAgentsOnly?: boolean;
|
|
724
|
+
isPunchCardUsers?: boolean;
|
|
725
|
+
nameEmailSearch?: string;
|
|
800
726
|
}
|
|
801
|
-
export declare class
|
|
727
|
+
export declare class BaseProgramSeasonDto {
|
|
728
|
+
programId: number;
|
|
729
|
+
name: string;
|
|
730
|
+
status: PublishingStatusEnum;
|
|
731
|
+
seasonType: ProgramSeasonTypesEnum;
|
|
732
|
+
startDate: Date;
|
|
733
|
+
endDate: Date;
|
|
734
|
+
description?: string;
|
|
735
|
+
GL?: string;
|
|
736
|
+
parentSeasonId?: number;
|
|
737
|
+
questionnaires?: number[];
|
|
738
|
+
maxParticipants?: number;
|
|
739
|
+
maxMaleParticipants?: number;
|
|
740
|
+
maxFemaleParticipants?: number;
|
|
741
|
+
maxWaitlist?: number;
|
|
742
|
+
maxMaleWaitlist?: number;
|
|
743
|
+
maxFemaleWaitlist?: number;
|
|
744
|
+
facilityId?: number;
|
|
745
|
+
addressId?: number;
|
|
746
|
+
blockedDated?: blockedDatesDto[];
|
|
747
|
+
activityTimes: ActivityTimesDto[];
|
|
748
|
+
longDescription?: string;
|
|
749
|
+
isPunchCard?: boolean;
|
|
802
750
|
organizationId: number;
|
|
751
|
+
sport: SportsEnum;
|
|
752
|
+
minAge: string;
|
|
753
|
+
maxAge: string;
|
|
754
|
+
gender: GenderEnum;
|
|
755
|
+
level?: LevelOfPlayEnum[];
|
|
756
|
+
requiredProductIds?: number[];
|
|
803
757
|
}
|
|
804
|
-
export declare class
|
|
805
|
-
|
|
806
|
-
entityId: number;
|
|
807
|
-
organizationId?: number;
|
|
808
|
-
userId?: number;
|
|
809
|
-
customerId?: number;
|
|
810
|
-
performingUserId: number;
|
|
811
|
-
description: string;
|
|
812
|
-
actionType: ActionTypesEnum;
|
|
813
|
-
sourcePlatform: ActionSourcePlatformEnum;
|
|
814
|
-
oldValue?: any;
|
|
815
|
-
newValue?: any;
|
|
758
|
+
export declare class CreateProgramSeasonDto extends BaseProgramSeasonDto {
|
|
759
|
+
subSeasons?: SubSeasonBasicInfo[];
|
|
816
760
|
}
|
|
817
|
-
export declare class
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
creatorId: number;
|
|
824
|
-
creatorType: ResourceNameTypeEnum;
|
|
825
|
-
answerTitleId: number;
|
|
826
|
-
answerTitle: AnswerTitle;
|
|
827
|
-
metaData: any | null;
|
|
828
|
-
questionText: string | null;
|
|
761
|
+
export declare class CreateSessionScheduleDto {
|
|
762
|
+
startDate: Date;
|
|
763
|
+
endDate: Date;
|
|
764
|
+
activityTimes: ActivityTimesDto[];
|
|
765
|
+
blockedDated?: blockedDatesDto[];
|
|
766
|
+
subSeasons?: SubSeasonBasicInfo[];
|
|
829
767
|
}
|
|
830
|
-
export declare class
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
768
|
+
export declare class SubSeasonBasicInfo {
|
|
769
|
+
name: string;
|
|
770
|
+
startDate: Date;
|
|
771
|
+
endDate: Date;
|
|
772
|
+
activityTimes?: ActivityTimesDto[];
|
|
834
773
|
}
|
|
835
|
-
export declare class
|
|
836
|
-
|
|
837
|
-
|
|
774
|
+
export declare class UpdateProgramSeasonDto extends BaseProgramSeasonDto {
|
|
775
|
+
seasonId: number;
|
|
776
|
+
}
|
|
777
|
+
export declare class UpdateProgramSeasonStatusDto {
|
|
778
|
+
seasonId: number;
|
|
779
|
+
status: PublishingStatusEnum;
|
|
780
|
+
}
|
|
781
|
+
export declare class blockedDatesDto {
|
|
838
782
|
name: string;
|
|
839
783
|
startDate: Date;
|
|
840
784
|
endDate: Date;
|
|
841
|
-
deletedAt?: Date;
|
|
842
785
|
}
|
|
843
|
-
export declare class
|
|
786
|
+
export declare class ActivityTimesDto {
|
|
787
|
+
dayOfWeek: number;
|
|
788
|
+
open: string;
|
|
789
|
+
close: string;
|
|
790
|
+
}
|
|
791
|
+
export declare class ShallowUpdateProgramSeasonDto {
|
|
792
|
+
seasonId: number;
|
|
793
|
+
name: string;
|
|
794
|
+
description?: string;
|
|
795
|
+
questionnaires?: number[];
|
|
796
|
+
maxParticipants?: number;
|
|
797
|
+
maxMaleParticipants?: number;
|
|
798
|
+
maxFemaleParticipants?: number;
|
|
799
|
+
maxWaitlist?: number;
|
|
800
|
+
maxMaleWaitlist?: number;
|
|
801
|
+
maxFemaleWaitlist?: number;
|
|
802
|
+
facilityId?: number;
|
|
803
|
+
addressId?: number;
|
|
804
|
+
sport?: SportsEnum;
|
|
805
|
+
minAge?: string;
|
|
806
|
+
maxAge?: string;
|
|
807
|
+
gender?: GenderEnum;
|
|
808
|
+
level?: LevelOfPlayEnum[];
|
|
809
|
+
requiredProductIds?: number[];
|
|
810
|
+
subSeasons?: ShallowUpdateSubSeasonDto[];
|
|
811
|
+
}
|
|
812
|
+
export declare class ShallowUpdateSubSeasonDto {
|
|
844
813
|
id: number;
|
|
845
|
-
|
|
846
|
-
updatedAt: Date;
|
|
814
|
+
name: string;
|
|
847
815
|
}
|
|
848
|
-
export declare class
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
816
|
+
export declare class SpaceResourcePairDto {
|
|
817
|
+
resourceType: ResourceNameTypeEnum;
|
|
818
|
+
resourceId: number;
|
|
819
|
+
spacesIds: number[];
|
|
820
|
+
publicNotes?: string;
|
|
821
|
+
privateNotes?: string;
|
|
822
|
+
minutesBeforeSlot?: number;
|
|
823
|
+
minutesAfterSlot?: number;
|
|
824
|
+
}
|
|
825
|
+
export declare class BulkSpaceResourceAllocationDto {
|
|
826
|
+
spaceResourcePairs: SpaceResourcePairDto[];
|
|
827
|
+
organizationId: number;
|
|
828
|
+
}
|
|
829
|
+
export declare class SingleSpaceAllocationByTimesDto {
|
|
830
|
+
date: string;
|
|
831
|
+
startTime: string;
|
|
832
|
+
endTime: string;
|
|
833
|
+
spaceId: number;
|
|
863
834
|
publicNotes?: string;
|
|
864
835
|
slotType?: SlotTypeEnum;
|
|
865
836
|
}
|
|
866
|
-
export declare class
|
|
867
|
-
|
|
868
|
-
metadata: object | null;
|
|
869
|
-
athleteSports: AthleteSports[];
|
|
837
|
+
export declare class SpaceAllocationsByTimesDto {
|
|
838
|
+
spaceAllocations: SingleSpaceAllocationByTimesDto[];
|
|
870
839
|
}
|
|
871
|
-
export declare class
|
|
872
|
-
parentId: number;
|
|
873
|
-
parentType: ResourceNameTypeEnum;
|
|
840
|
+
export declare class UpdateSeasonDatesDto {
|
|
874
841
|
startDate: Date;
|
|
875
842
|
endDate: Date;
|
|
876
|
-
dayOfWeek: number;
|
|
877
|
-
startTimeInDay: string;
|
|
878
|
-
endTimeInDay: string;
|
|
879
|
-
directBookingFor: DirectBookingTypesEnum;
|
|
880
843
|
}
|
|
881
|
-
export declare class
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
844
|
+
export declare class MoveAttendeeDto {
|
|
845
|
+
userId: number;
|
|
846
|
+
resourceType: ResourceNameTypeEnum;
|
|
847
|
+
fromResourceIds: number[];
|
|
848
|
+
toResourceIds: number[];
|
|
886
849
|
}
|
|
887
|
-
export declare class
|
|
888
|
-
|
|
889
|
-
key: string;
|
|
890
|
-
value: string;
|
|
850
|
+
export declare class UpdateSeasonRegistrationDatesDto {
|
|
851
|
+
registrationPeriods: UpdateSeasonDatesDto[];
|
|
891
852
|
}
|
|
892
|
-
export declare class
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
state?: string;
|
|
900
|
-
geo: any;
|
|
901
|
-
deletedAt?: Date;
|
|
853
|
+
export declare class RegistrationDatesDto {
|
|
854
|
+
registrationStartDate: Date;
|
|
855
|
+
registrationEndDate: Date;
|
|
856
|
+
earlyRegistrationStartDate?: Date;
|
|
857
|
+
earlyRegistrationEndDate?: Date;
|
|
858
|
+
lateRegistrationStartDate?: Date;
|
|
859
|
+
lateRegistrationEndDate?: Date;
|
|
902
860
|
}
|
|
903
|
-
export declare class
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
creatorType: string | null;
|
|
912
|
-
userCreatorId: number | null;
|
|
913
|
-
ownerId: number | null;
|
|
861
|
+
export declare class RegistrationSettingsDto extends RegistrationDatesDto {
|
|
862
|
+
closeRegistrationPeriodValue?: number;
|
|
863
|
+
closeRegistrationPeriodType?: RegistrationConstraintPeriodTypeEnum;
|
|
864
|
+
closeRegistrationSpecTime?: string;
|
|
865
|
+
openRegistrationPeriodValue?: number;
|
|
866
|
+
openRegistrationPeriodType?: RegistrationConstraintPeriodTypeEnum;
|
|
867
|
+
openRegistrationSpecTime?: string;
|
|
868
|
+
productsIdsToUpdate?: number[];
|
|
914
869
|
}
|
|
915
|
-
export declare class
|
|
916
|
-
creditAmount: number;
|
|
917
|
-
paymentProcessorId: string;
|
|
870
|
+
export declare class MoveParticipantDto {
|
|
918
871
|
userId: number;
|
|
919
|
-
|
|
872
|
+
oldProductId: number;
|
|
873
|
+
newProductId: number;
|
|
874
|
+
moveType: 'session' | 'segment';
|
|
875
|
+
resourceId: number;
|
|
920
876
|
orderId: number;
|
|
921
|
-
creditPaymentInvoiceId: number;
|
|
922
877
|
}
|
|
923
|
-
export declare class
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
programSeasonId: number;
|
|
927
|
-
color: string;
|
|
928
|
-
isDefault: boolean;
|
|
929
|
-
groups: Group[];
|
|
878
|
+
export declare class FindProgramsByOrganizationIdDto {
|
|
879
|
+
organizationId: number;
|
|
880
|
+
programType?: ProgramTypesEnum;
|
|
930
881
|
}
|
|
931
|
-
export declare class
|
|
932
|
-
|
|
933
|
-
entityId: number | null;
|
|
934
|
-
addressId: number | null;
|
|
935
|
-
entityType: CustomerTypeEnum | null;
|
|
936
|
-
customerId: string | null;
|
|
937
|
-
email: string | null;
|
|
938
|
-
color: string | null;
|
|
939
|
-
phoneNumber: string | null;
|
|
940
|
-
mainMediaId: number | null;
|
|
941
|
-
creatorId: number | null;
|
|
942
|
-
creatorType: ResourceNameTypeEnum | null;
|
|
943
|
-
userCreatorId: number | null;
|
|
944
|
-
ownerId: number | null;
|
|
945
|
-
vetted: boolean | null;
|
|
946
|
-
firstName: string | null;
|
|
947
|
-
lastName: string | null;
|
|
948
|
-
waiverSignedDate: string | null;
|
|
949
|
-
balance: number | null;
|
|
950
|
-
storedCredit: number;
|
|
951
|
-
members: (User & Customer)[];
|
|
952
|
-
emergencyContacts: EmergencyContact[];
|
|
953
|
-
customerNotes: CustomerNote[];
|
|
954
|
-
customerCreditTransactions: CustomerCreditTransaction[];
|
|
955
|
-
productsReservedFor: ProductsReservedForCustomers[];
|
|
956
|
-
mainMedia: Media;
|
|
957
|
-
reservations?: Reservation[];
|
|
958
|
-
}
|
|
959
|
-
export declare class EmergencyContact extends OrganizationConnectionBaseEntity {
|
|
960
|
-
customerId: number;
|
|
961
|
-
name: string | null;
|
|
962
|
-
phoneNumber: string | null;
|
|
963
|
-
customer: Customer;
|
|
964
|
-
}
|
|
965
|
-
export declare class CustomerNote extends OrganizationConnectionBaseEntity {
|
|
966
|
-
customerId?: number;
|
|
967
|
-
description: string;
|
|
968
|
-
pinToTop?: boolean;
|
|
969
|
-
customer: Customer;
|
|
970
|
-
}
|
|
971
|
-
export declare class EntitlementTerms extends OrganizationConnectionBaseEntity {
|
|
972
|
-
groupId: number;
|
|
973
|
-
terms: IEntitlementTerms[];
|
|
974
|
-
}
|
|
975
|
-
export declare class EntitlementGroup extends OrganizationConnectionBaseEntity {
|
|
976
|
-
name: string | null;
|
|
882
|
+
export declare class FindProgramByIdDto {
|
|
883
|
+
programId: number;
|
|
977
884
|
}
|
|
978
|
-
export declare class
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
paymentId: number | null;
|
|
982
|
-
attendeeId: number;
|
|
983
|
-
eventId?: number | null;
|
|
984
|
-
productUserId?: number;
|
|
985
|
-
answerTitleIds?: number[];
|
|
986
|
-
entryStatus?: EntryStatusEnum;
|
|
987
|
-
addonProductUserIds?: number[];
|
|
988
|
-
deletedAt?: Date;
|
|
989
|
-
attendee: User;
|
|
990
|
-
event: Event;
|
|
991
|
-
purchasedResource: PurchasedResource;
|
|
885
|
+
export declare class FindProgramByOrgIdAndIdDto {
|
|
886
|
+
programId: number;
|
|
887
|
+
organizationId: number;
|
|
992
888
|
}
|
|
993
|
-
export declare class
|
|
889
|
+
export declare class BaseProgramDto {
|
|
890
|
+
type: ProgramTypesEnum;
|
|
994
891
|
name: string;
|
|
892
|
+
sport: SportsEnum;
|
|
893
|
+
minAge: string;
|
|
894
|
+
maxAge: string;
|
|
895
|
+
gender: GenderEnum;
|
|
896
|
+
level?: LevelOfPlayEnum[];
|
|
995
897
|
description?: string;
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
timezone: string;
|
|
1000
|
-
creatorId: number;
|
|
1001
|
-
creatorType: string;
|
|
898
|
+
GL?: string;
|
|
899
|
+
status: PublishingStatusEnum;
|
|
900
|
+
organizationId: number;
|
|
1002
901
|
userCreatorId: number;
|
|
1003
|
-
|
|
1004
|
-
mainMedia: Media;
|
|
1005
|
-
publishedDate?: Date;
|
|
1006
|
-
isPublished: boolean;
|
|
1007
|
-
sports?: number[];
|
|
1008
|
-
info?: string;
|
|
902
|
+
highlights: ProgramHighlights[];
|
|
1009
903
|
longDescription?: string;
|
|
1010
|
-
|
|
1011
|
-
openingTimes: OpeningTime[];
|
|
1012
|
-
resources: Resource[];
|
|
1013
|
-
spaces: Resource[];
|
|
1014
|
-
programSeasons: ProgramSeason[];
|
|
1015
|
-
linkSEO: string;
|
|
904
|
+
requiredProductIds: number[];
|
|
1016
905
|
}
|
|
1017
|
-
export declare class
|
|
1018
|
-
constructor();
|
|
1019
|
-
defineCalculatedDateTimeProps(): void;
|
|
1020
|
-
title: string | null;
|
|
1021
|
-
description: string | null;
|
|
1022
|
-
eventType: number | null;
|
|
1023
|
-
startDate: Date | null;
|
|
1024
|
-
endDate: Date | null;
|
|
1025
|
-
price: number | null;
|
|
1026
|
-
venueName: string | null;
|
|
1027
|
-
status: EventStatusEnum;
|
|
1028
|
-
private: boolean | null;
|
|
1029
|
-
guestsCanInvite: boolean | null;
|
|
1030
|
-
venueId: number | null;
|
|
1031
|
-
addressId: number | null;
|
|
1032
|
-
participantsLimit: number | null;
|
|
1033
|
-
parentId: number | null;
|
|
1034
|
-
parentType: string | null;
|
|
1035
|
-
timezone: string | null;
|
|
1036
|
-
eventSubType: string | null;
|
|
1037
|
-
eventSubId: number | null;
|
|
1038
|
-
metaData: any | null;
|
|
1039
|
-
groupingId: string | null;
|
|
1040
|
-
redirectUri: string | null;
|
|
1041
|
-
externalId: string | null;
|
|
1042
|
-
paymentSettings: any | null;
|
|
1043
|
-
whoCanJoin: string | null;
|
|
1044
|
-
spaceId?: number;
|
|
1045
|
-
bookedSessionId: number | null;
|
|
1046
|
-
creatorId: number | null;
|
|
1047
|
-
creatorType: string | null;
|
|
1048
|
-
userCreatorId: number | null;
|
|
1049
|
-
ownerId: number | null;
|
|
1050
|
-
sports: number[] | null;
|
|
1051
|
-
isVerified: boolean | null;
|
|
1052
|
-
mainMediaId: number | null;
|
|
1053
|
-
minAge: number | null;
|
|
1054
|
-
maxAge: number | null;
|
|
1055
|
-
gender: number | null;
|
|
1056
|
-
questionnaireId: number | null;
|
|
1057
|
-
eventAttendees: EventAttendee[];
|
|
1058
|
-
deletedAt?: Date;
|
|
1059
|
-
spaces?: IBasicSpaceAndSlotCreator[];
|
|
1060
|
-
startDateString: string;
|
|
1061
|
-
endDateString: string;
|
|
1062
|
-
startTime: string;
|
|
1063
|
-
endTime: string;
|
|
1064
|
-
publicNotes?: string;
|
|
1065
|
-
privateNotes?: string;
|
|
1066
|
-
productResources: ProductResource[];
|
|
1067
|
-
parentSession: ProgramSeason;
|
|
1068
|
-
activityTimes: ActivityTimes[];
|
|
1069
|
-
slots: Slot[];
|
|
1070
|
-
purchasedResources: PurchasedResource[];
|
|
906
|
+
export declare class CreateProgramDto extends BaseProgramDto {
|
|
1071
907
|
}
|
|
1072
|
-
export declare class
|
|
1073
|
-
|
|
1074
|
-
|
|
908
|
+
export declare class UpdateProgramDto extends BaseProgramDto {
|
|
909
|
+
programId: number;
|
|
910
|
+
mainMediaId: number;
|
|
1075
911
|
}
|
|
1076
|
-
export declare class
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
amount: number;
|
|
1080
|
-
invoiceId?: number;
|
|
1081
|
-
orderId?: number;
|
|
1082
|
-
description?: string;
|
|
1083
|
-
deletedAt?: Date;
|
|
1084
|
-
customer: Customer;
|
|
1085
|
-
order: Order;
|
|
1086
|
-
invoice: Invoice;
|
|
912
|
+
export declare class UpdateProgramStatusDto {
|
|
913
|
+
programId: number;
|
|
914
|
+
status: PublishingStatusEnum;
|
|
1087
915
|
}
|
|
1088
|
-
export declare class
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
mainMediaId?: number;
|
|
1094
|
-
minAgeYears?: number;
|
|
1095
|
-
maxAgeYears?: number;
|
|
1096
|
-
gender: GenderEnum;
|
|
1097
|
-
levelOfPlay?: LevelOfPlayEnum[];
|
|
1098
|
-
sports: SportsEnum[];
|
|
1099
|
-
questionnaires?: number[];
|
|
1100
|
-
captainUserId?: number;
|
|
1101
|
-
members: ISeasonAttendeeInfo[];
|
|
1102
|
-
users: User[];
|
|
916
|
+
export declare class ProgramHighlightDto {
|
|
917
|
+
data: string;
|
|
918
|
+
ordinal: number;
|
|
919
|
+
type: ProgramHighlightTypeEnum;
|
|
920
|
+
title: string;
|
|
1103
921
|
}
|
|
1104
|
-
export declare class
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
itemType: ResourceNameTypeEnum;
|
|
1108
|
-
startDate: Date;
|
|
1109
|
-
endDate: Date;
|
|
1110
|
-
price: number;
|
|
1111
|
-
overridesPrice: boolean;
|
|
1112
|
-
deletedAt?: Date;
|
|
1113
|
-
group?: EntitlementGroup;
|
|
1114
|
-
discountMethod?: DiscountMethodsEnum;
|
|
1115
|
-
discountValue?: number;
|
|
922
|
+
export declare class PurchasePaymentDto {
|
|
923
|
+
token: string;
|
|
924
|
+
type: PaymentMethodTypeEnum;
|
|
1116
925
|
}
|
|
1117
|
-
export declare class
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
payingUserId?: number;
|
|
1126
|
-
paymentMethodId?: string;
|
|
1127
|
-
paymentType?: PaymentMethodTypeEnum;
|
|
1128
|
-
fundLeft: number;
|
|
1129
|
-
notes?: string;
|
|
1130
|
-
isRefunded: boolean;
|
|
1131
|
-
lineItemHistory: LineItemHistory[];
|
|
1132
|
-
receiptUrl?: string;
|
|
1133
|
-
paymentProcessorTransactionId?: string;
|
|
1134
|
-
creatingUserId: number;
|
|
1135
|
-
shiftId: number;
|
|
926
|
+
export declare class ChargeRentalsReuqestDto {
|
|
927
|
+
organizationId: number;
|
|
928
|
+
userId?: number;
|
|
929
|
+
customerId?: number;
|
|
930
|
+
orderId: number;
|
|
931
|
+
paymentData: PurchasePaymentDto;
|
|
932
|
+
amountToPay: number;
|
|
933
|
+
total: number;
|
|
1136
934
|
platform: PlatformsEnum;
|
|
1137
|
-
|
|
1138
|
-
ccBrand: string;
|
|
1139
|
-
invoiceNotes: InvoiceNote[];
|
|
1140
|
-
parentInvoiceId?: number;
|
|
1141
|
-
refundReasonId?: number;
|
|
1142
|
-
refundNote?: string;
|
|
1143
|
-
}
|
|
1144
|
-
export declare class GroupsInDivisions extends BondBaseEntity {
|
|
1145
|
-
groupId: number;
|
|
1146
|
-
divisionId: number;
|
|
1147
|
-
deletedAt?: Date;
|
|
935
|
+
shiftId?: number;
|
|
1148
936
|
}
|
|
1149
|
-
export declare class
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
937
|
+
export declare class PurchaseRequestDto {
|
|
938
|
+
purchasingUserId: number;
|
|
939
|
+
customerId?: number;
|
|
940
|
+
products: PurchaseProductDto[];
|
|
941
|
+
paymentData: PurchasePaymentDto;
|
|
942
|
+
answers: UserAnswersDto[];
|
|
943
|
+
amountToPay: number;
|
|
944
|
+
parentPurchasedType?: ResourceNameTypeEnum;
|
|
945
|
+
parentPurchasedId?: number;
|
|
946
|
+
isPartialPayment: boolean;
|
|
947
|
+
existingOrderToken?: string;
|
|
948
|
+
installments?: ScheduledPaymentDto[];
|
|
949
|
+
shiftId?: number;
|
|
950
|
+
orderId?: number;
|
|
1157
951
|
}
|
|
1158
|
-
export declare class
|
|
1159
|
-
eventId: number;
|
|
1160
|
-
organizationId: number;
|
|
952
|
+
export declare class PurchaseResourceDto extends ResourceDto {
|
|
1161
953
|
}
|
|
1162
|
-
export declare class
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
isInformAttendees?: boolean;
|
|
1172
|
-
minutesBeforeSlot?: number;
|
|
1173
|
-
minutesAfterSlot?: number;
|
|
954
|
+
export declare class PurchaseProductDto {
|
|
955
|
+
id: number;
|
|
956
|
+
resources?: PurchaseResourceDto[];
|
|
957
|
+
userId?: number;
|
|
958
|
+
paymentStatus?: PaymentStatusEnum;
|
|
959
|
+
amountToPay?: number;
|
|
960
|
+
ordinal?: number;
|
|
961
|
+
startDate?: Date;
|
|
962
|
+
quantity?: number;
|
|
1174
963
|
}
|
|
1175
|
-
export declare class
|
|
1176
|
-
|
|
964
|
+
export declare class PartialPaymentRequestDto {
|
|
965
|
+
orderId: number;
|
|
966
|
+
amountToPay: number;
|
|
967
|
+
organizationId: number;
|
|
968
|
+
payingUserId: number;
|
|
969
|
+
paymentMethodData: PurchasePaymentDto;
|
|
970
|
+
shiftId?: number;
|
|
1177
971
|
}
|
|
1178
|
-
export declare class
|
|
1179
|
-
|
|
972
|
+
export declare class RedeemPunchCardRequestDto {
|
|
973
|
+
products: PurchaseProductDto[];
|
|
974
|
+
answersTitlesIds: number[];
|
|
975
|
+
organizationId: number;
|
|
976
|
+
purchasingUserId: number;
|
|
1180
977
|
}
|
|
1181
|
-
export declare class
|
|
1182
|
-
|
|
1183
|
-
name?: string;
|
|
1184
|
-
startTime?: string;
|
|
1185
|
-
endTime?: string;
|
|
1186
|
-
spacesIds?: number[];
|
|
1187
|
-
publicNotes?: string;
|
|
1188
|
-
privateNotes?: string;
|
|
1189
|
-
isInformAttendees?: boolean;
|
|
1190
|
-
minutesBeforeSlot?: number;
|
|
1191
|
-
minutesAfterSlot?: number;
|
|
978
|
+
export declare class OrderIdDto extends ByOrganizationIdDto {
|
|
979
|
+
orderId: number;
|
|
1192
980
|
}
|
|
1193
|
-
export declare class
|
|
981
|
+
export declare class AddItemsDto {
|
|
982
|
+
products: PurchaseProductDto[];
|
|
983
|
+
allocateResource: boolean;
|
|
984
|
+
skipMail: boolean;
|
|
985
|
+
}
|
|
986
|
+
export declare class PartialPaymentAsUserDto {
|
|
987
|
+
orderId: any;
|
|
988
|
+
organizationId: any;
|
|
989
|
+
amountToPay: any;
|
|
990
|
+
paymentMethodData: any;
|
|
991
|
+
}
|
|
992
|
+
export declare class CreateResourceGroupDto {
|
|
993
|
+
name: string;
|
|
994
|
+
parentSlotId: number;
|
|
1194
995
|
facilityId: number;
|
|
996
|
+
childrenSlotIds: number[];
|
|
1195
997
|
}
|
|
1196
|
-
export declare class
|
|
998
|
+
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
999
|
+
}
|
|
1000
|
+
export declare class ResourceDto {
|
|
1001
|
+
type: ResourceNameTypeEnum;
|
|
1002
|
+
id: number;
|
|
1003
|
+
}
|
|
1004
|
+
export declare class SpaceByIdDto {
|
|
1005
|
+
spaceId: number;
|
|
1006
|
+
}
|
|
1007
|
+
export declare class CreateSpaceDto {
|
|
1008
|
+
name: string;
|
|
1009
|
+
sports: number[];
|
|
1010
|
+
description?: string;
|
|
1011
|
+
longDescription?: string;
|
|
1012
|
+
spaceType: ResourceSubTypeEnum;
|
|
1013
|
+
isAddon?: boolean;
|
|
1014
|
+
properties: SpacePropertiesEnum;
|
|
1015
|
+
width?: number;
|
|
1016
|
+
length?: number;
|
|
1017
|
+
surface?: SurfacesEnum;
|
|
1018
|
+
ages?: ResourceAgesEnum;
|
|
1019
|
+
amenities: number[];
|
|
1020
|
+
activityTimes: BasicActivityTimesDto[];
|
|
1021
|
+
facilitiesIds: number[];
|
|
1022
|
+
resourceGroupId?: number;
|
|
1023
|
+
blockedResourcesIds?: number[];
|
|
1024
|
+
}
|
|
1025
|
+
export declare class UpdateSpaceDetailsDto {
|
|
1026
|
+
name: string;
|
|
1027
|
+
description?: string;
|
|
1028
|
+
longDescription?: string;
|
|
1029
|
+
isAddon?: boolean;
|
|
1030
|
+
facilitiesIds: number[];
|
|
1031
|
+
}
|
|
1032
|
+
export declare class UpdateSpacePropertiesDto {
|
|
1033
|
+
properties: SpacePropertiesEnum;
|
|
1034
|
+
width?: number;
|
|
1035
|
+
length?: number;
|
|
1036
|
+
surface?: SurfacesEnum;
|
|
1037
|
+
ages?: ResourceAgesEnum;
|
|
1038
|
+
}
|
|
1039
|
+
export declare class UpdateSpaceTimesDto {
|
|
1040
|
+
activityTimes: BasicActivityTimesDto[];
|
|
1041
|
+
}
|
|
1042
|
+
export declare class UpdateSpaceRelationshipsDto {
|
|
1043
|
+
resourceGroupId?: number;
|
|
1044
|
+
blockedResourcesIds?: number[];
|
|
1045
|
+
}
|
|
1046
|
+
export declare class SaveSpaceDependenciesDto {
|
|
1047
|
+
blockedSpacesIds: number[];
|
|
1048
|
+
parentSpaceId?: number;
|
|
1049
|
+
}
|
|
1050
|
+
export declare class FacilitySlotsScheduleQueryParams {
|
|
1051
|
+
spacesIds?: string;
|
|
1052
|
+
futureHoursLimit?: number;
|
|
1053
|
+
}
|
|
1054
|
+
export declare class FindResourcesOptionsDto extends PaginationQuery {
|
|
1055
|
+
nameSearch?: string;
|
|
1056
|
+
facilitiesIds?: string;
|
|
1057
|
+
types?: string;
|
|
1058
|
+
resourcesIds?: string;
|
|
1059
|
+
}
|
|
1060
|
+
export declare class StripeCustomerIdDto {
|
|
1061
|
+
userId: number;
|
|
1062
|
+
}
|
|
1063
|
+
export declare class AddACHTokenToCustomerDto {
|
|
1064
|
+
publicToken: string;
|
|
1065
|
+
accountId: string;
|
|
1066
|
+
}
|
|
1067
|
+
export declare class FindByUserIdDto {
|
|
1068
|
+
userId: number;
|
|
1069
|
+
}
|
|
1070
|
+
export declare class FindByFamilyAccountIdDto {
|
|
1071
|
+
familyAccountId?: number;
|
|
1072
|
+
}
|
|
1073
|
+
export declare class FindByUserAndOrganizationDto extends FindByUserIdDto {
|
|
1197
1074
|
organizationId: number;
|
|
1198
1075
|
}
|
|
1199
|
-
export declare class
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1076
|
+
export declare class ActivityTimes extends BondBaseEntity {
|
|
1077
|
+
parentType: ResourceNameTypeEnum | ProductTypesEnum;
|
|
1078
|
+
parentId: number;
|
|
1079
|
+
dayOfWeek: number;
|
|
1080
|
+
open: string;
|
|
1081
|
+
close: string;
|
|
1082
|
+
deletedAt?: Date;
|
|
1083
|
+
program: ProgramSeason;
|
|
1084
|
+
availabilityStartDate: string;
|
|
1085
|
+
availabilityEndDate: string;
|
|
1086
|
+
proudct: Product;
|
|
1087
|
+
event: Event;
|
|
1203
1088
|
}
|
|
1204
|
-
export declare class
|
|
1205
|
-
|
|
1089
|
+
export declare class Address extends BondBaseEntity {
|
|
1090
|
+
city?: string;
|
|
1091
|
+
street?: string;
|
|
1092
|
+
streetNum?: string;
|
|
1093
|
+
aptNum?: string;
|
|
1094
|
+
zip?: string;
|
|
1095
|
+
country?: string;
|
|
1096
|
+
state?: string;
|
|
1097
|
+
geo: any;
|
|
1098
|
+
deletedAt?: Date;
|
|
1206
1099
|
}
|
|
1207
|
-
export declare class
|
|
1208
|
-
|
|
1100
|
+
export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
1101
|
+
questionId: number;
|
|
1102
|
+
question?: Questions;
|
|
1103
|
+
parentId: number;
|
|
1104
|
+
parentType: ResourceNameTypeEnum;
|
|
1105
|
+
answerValue: any;
|
|
1106
|
+
creatorId: number;
|
|
1107
|
+
creatorType: ResourceNameTypeEnum;
|
|
1108
|
+
answerTitleId: number;
|
|
1109
|
+
answerTitle: AnswerTitle;
|
|
1110
|
+
metaData: any | null;
|
|
1111
|
+
questionText: string | null;
|
|
1209
1112
|
}
|
|
1210
|
-
export declare class
|
|
1211
|
-
|
|
1212
|
-
|
|
1113
|
+
export declare class AnswerTitle extends OrganizationConnectionBaseEntity {
|
|
1114
|
+
questionnaireId: number;
|
|
1115
|
+
userId?: number;
|
|
1116
|
+
answers: Answer[];
|
|
1117
|
+
questionnaire: Questionnaires;
|
|
1213
1118
|
}
|
|
1214
|
-
export
|
|
1215
|
-
|
|
1119
|
+
export declare class AthleteSports extends BondBaseEntity {
|
|
1120
|
+
athleteId: number | null;
|
|
1121
|
+
sports: number | null;
|
|
1122
|
+
levelOfPlay: LevelOfPlayEnum | null;
|
|
1123
|
+
}
|
|
1124
|
+
export declare class BlockedDate extends BondBaseEntity {
|
|
1125
|
+
entityType: ResourceNameTypeEnum;
|
|
1126
|
+
entityId: number;
|
|
1216
1127
|
name: string;
|
|
1217
|
-
programId: number;
|
|
1218
|
-
programType: ProgramTypesEnum;
|
|
1219
|
-
sessionId: number;
|
|
1220
|
-
sessionName: string;
|
|
1221
|
-
isPublic: boolean;
|
|
1222
1128
|
startDate: Date;
|
|
1223
1129
|
endDate: Date;
|
|
1224
|
-
|
|
1225
|
-
endTime: string;
|
|
1226
|
-
resources: IBasicSpaceAndSlotCreator[];
|
|
1227
|
-
attenedanceCount: number;
|
|
1228
|
-
checkedInCount: number;
|
|
1229
|
-
missingPaymentCount: number;
|
|
1230
|
-
publicNotes: string;
|
|
1231
|
-
privateNotes: string;
|
|
1130
|
+
deletedAt?: Date;
|
|
1232
1131
|
}
|
|
1233
|
-
export
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
firstName: string;
|
|
1238
|
-
birthDate: string;
|
|
1239
|
-
mediaURL: string;
|
|
1240
|
-
signedWaiver: string;
|
|
1241
|
-
entryStatus: EntryStatusEnum;
|
|
1242
|
-
paymentStatus: PaymentStatusEnum;
|
|
1243
|
-
addOns: {
|
|
1244
|
-
productId: number;
|
|
1245
|
-
productName: string;
|
|
1246
|
-
}[];
|
|
1247
|
-
totalPasses?: number;
|
|
1248
|
-
leftPasses?: number;
|
|
1249
|
-
addonProductUserIds: number[];
|
|
1132
|
+
export declare class Athlete extends BondBaseEntity {
|
|
1133
|
+
userId: number | null;
|
|
1134
|
+
metadata: object | null;
|
|
1135
|
+
athleteSports: AthleteSports[];
|
|
1250
1136
|
}
|
|
1251
|
-
export declare class
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
hasAddons?: string;
|
|
1256
|
-
isWaiverSigned?: string;
|
|
1257
|
-
statuses?: string;
|
|
1137
|
+
export declare class BondBaseEntity extends BaseEntity {
|
|
1138
|
+
id: number;
|
|
1139
|
+
createdAt: Date;
|
|
1140
|
+
updatedAt: Date;
|
|
1258
1141
|
}
|
|
1259
|
-
export declare class
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
creatorType: string | null;
|
|
1274
|
-
userCreatorId: number | null;
|
|
1275
|
-
ownerId: number | null;
|
|
1276
|
-
sports: number[] | null;
|
|
1277
|
-
mainMediaId: number | null;
|
|
1278
|
-
publishedDate: Date | null;
|
|
1279
|
-
isPublished: boolean | null;
|
|
1280
|
-
isVerified: boolean | null;
|
|
1281
|
-
questionnaireId: number | null;
|
|
1282
|
-
logo?: Media;
|
|
1283
|
-
seasons: LeagueSeason[];
|
|
1284
|
-
}
|
|
1285
|
-
export declare class LineItems extends BondBaseEntity {
|
|
1286
|
-
constructor();
|
|
1287
|
-
defineIsReverted(): void;
|
|
1288
|
-
isReverted: boolean;
|
|
1289
|
-
orderId: number;
|
|
1290
|
-
order: Order;
|
|
1291
|
-
lineItemsHistory: LineItemHistory[];
|
|
1292
|
-
type: LineItemsStatusEnum | null;
|
|
1293
|
-
userId: number | null;
|
|
1294
|
-
productId: number;
|
|
1295
|
-
paymentProcessorId: string;
|
|
1296
|
-
productType: ProductTypesEnum;
|
|
1297
|
-
productUserId?: number;
|
|
1298
|
-
ordinal: number | null;
|
|
1299
|
-
entitlementGroupId?: number;
|
|
1300
|
-
entitlementGroups: EntitlementGroup;
|
|
1301
|
-
price: number;
|
|
1302
|
-
originalPrice?: number;
|
|
1303
|
-
paidAmount?: number;
|
|
1304
|
-
totalPaid?: number;
|
|
1305
|
-
totalQuantity?: number;
|
|
1306
|
-
totalPrice?: number;
|
|
1307
|
-
currency: CurrencyEnum;
|
|
1308
|
-
paymentStatus: PaymentStatusEnum;
|
|
1309
|
-
productSubType?: ProductSubTypesEnum;
|
|
1310
|
-
product: Product;
|
|
1311
|
-
organizationId: number;
|
|
1312
|
-
parentLineItemId?: number;
|
|
1313
|
-
taxLineItem?: LineItems;
|
|
1314
|
-
children?: LineItems[];
|
|
1315
|
-
previousPurchaseProducUserId?: number;
|
|
1316
|
-
discountDescription?: string;
|
|
1317
|
-
productUser?: ProductsUsers;
|
|
1318
|
-
resourceRedeemedForDiscount?: number;
|
|
1319
|
-
redeemableProduct: Product[];
|
|
1320
|
-
isRefunded: boolean;
|
|
1321
|
-
isPartiallyRefund: boolean;
|
|
1322
|
-
isVoided: boolean;
|
|
1323
|
-
isPartiallyVoided: boolean;
|
|
1324
|
-
wasReverted: boolean;
|
|
1325
|
-
isEdit: boolean;
|
|
1326
|
-
purchasedResources: PurchasedResource[];
|
|
1327
|
-
isTaxInclusive?: boolean;
|
|
1328
|
-
taxPrecent?: number;
|
|
1329
|
-
unitPrice?: number;
|
|
1330
|
-
quantity?: number;
|
|
1331
|
-
customerFirstName?: string;
|
|
1332
|
-
customerLastName?: string;
|
|
1333
|
-
displayFullPrice?: number;
|
|
1334
|
-
displayTotalPriceWithTax?: number;
|
|
1335
|
-
displayTotalPaid?: number;
|
|
1336
|
-
displayTotalQuantity?: number;
|
|
1337
|
-
displayUnitPrice?: number;
|
|
1338
|
-
displayQuantity?: number;
|
|
1339
|
-
}
|
|
1340
|
-
export declare class LineItemHistory extends BondBaseEntity {
|
|
1341
|
-
orderId: number;
|
|
1342
|
-
invoiceId: number;
|
|
1343
|
-
lineItemId: number;
|
|
1344
|
-
paidAmount: number;
|
|
1345
|
-
unitPaidAmount: number;
|
|
1346
|
-
currency: CurrencyEnum;
|
|
1347
|
-
invoice: Invoice;
|
|
1348
|
-
lineItem: LineItems;
|
|
1349
|
-
}
|
|
1350
|
-
export declare class LeagueSeason extends BondBaseEntity {
|
|
1351
|
-
leagueId: number | null;
|
|
1352
|
-
name: string | null;
|
|
1353
|
-
status: number | null;
|
|
1354
|
-
startDate: Date | null;
|
|
1355
|
-
endDate: Date | null;
|
|
1356
|
-
priceEarlySingle: number | null;
|
|
1357
|
-
priceRegularSingle: number | null;
|
|
1358
|
-
priceLateSingle: number | null;
|
|
1359
|
-
priceEarlyTeam: number | null;
|
|
1360
|
-
priceRegularTeam: number | null;
|
|
1361
|
-
priceLateTeam: number | null;
|
|
1362
|
-
priceEarlyTeamMember: number | null;
|
|
1363
|
-
priceRegularTeamMember: number | null;
|
|
1364
|
-
priceLateTeamMember: number | null;
|
|
1365
|
-
priceEarlyGroup: number | null;
|
|
1366
|
-
priceRegularGroup: number | null;
|
|
1367
|
-
priceLateGroup: number | null;
|
|
1368
|
-
earlyRegistrationEnds: Date | null;
|
|
1369
|
-
regularRegistrationEnds: Date | null;
|
|
1370
|
-
lateRegistrationEnds: Date | null;
|
|
1371
|
-
registrationStatus: number | null;
|
|
1372
|
-
description: string | null;
|
|
1373
|
-
addressName: string | null;
|
|
1374
|
-
registrationOpen: Date | null;
|
|
1375
|
-
connectedSeasonId: number | null;
|
|
1376
|
-
tournamentType: boolean | null;
|
|
1377
|
-
playoffType: boolean | null;
|
|
1378
|
-
scheduleStatus: SeasonScheduleStatusEnum;
|
|
1379
|
-
rosterStatus: string | null;
|
|
1380
|
-
metaData: any | null;
|
|
1381
|
-
inviteSendDate: Date | null;
|
|
1382
|
-
maxNumParticipants: number | null;
|
|
1383
|
-
programId: number | null;
|
|
1384
|
-
minNumParticipants: number | null;
|
|
1385
|
-
league: League;
|
|
1386
|
-
facilities: Facility[];
|
|
1387
|
-
seasonAttendees: SeasonAttendee[];
|
|
1388
|
-
purchasedResources: PurchasedResource[];
|
|
1389
|
-
}
|
|
1390
|
-
export declare class LeagueSeasonRelations {
|
|
1391
|
-
league?: boolean;
|
|
1392
|
-
facilities?: boolean;
|
|
1393
|
-
}
|
|
1394
|
-
export declare class LinkedAccounts extends BondBaseEntity {
|
|
1395
|
-
id: number;
|
|
1396
|
-
provider: string;
|
|
1397
|
-
providerId: string | null;
|
|
1398
|
-
parentId: number | null;
|
|
1399
|
-
parentType: string | null;
|
|
1400
|
-
status: number | null;
|
|
1401
|
-
token: string | null;
|
|
1402
|
-
refreshToken: string | null;
|
|
1403
|
-
tokenCreatedAt: Date | null;
|
|
1404
|
-
tokenValidUpTo: Date | null;
|
|
1405
|
-
createdAt: Date;
|
|
1406
|
-
updatedAt: Date;
|
|
1407
|
-
user: User;
|
|
1408
|
-
userId: number | null;
|
|
1409
|
-
}
|
|
1410
|
-
export declare class Membership extends OrganizationConnectionBaseEntity {
|
|
1411
|
-
name: string;
|
|
1412
|
-
description?: string;
|
|
1413
|
-
mainMedia?: Media;
|
|
1414
|
-
customerTypes: CustomerInMembershipTypeEnum[];
|
|
1415
|
-
activity?: SportsEnum;
|
|
1416
|
-
facilityId?: number;
|
|
1417
|
-
facilityName?: string;
|
|
1418
|
-
questionnaires?: number[];
|
|
1419
|
-
minAgeYears?: number;
|
|
1420
|
-
maxAgeYears?: number;
|
|
1421
|
-
gender: GenderEnum;
|
|
1422
|
-
maxMembers?: number;
|
|
1423
|
-
maxMaleMembers?: number;
|
|
1424
|
-
maxFemaleMembers?: number;
|
|
1425
|
-
membershipType: MembershipTypeEnum;
|
|
1426
|
-
durationMonths?: number;
|
|
1427
|
-
startDate?: string;
|
|
1428
|
-
endDate?: string;
|
|
1429
|
-
registrationStartDate?: Date;
|
|
1430
|
-
registrationEndDate?: Date;
|
|
1431
|
-
package?: IPackageResponse;
|
|
1432
|
-
tags: any[];
|
|
1433
|
-
members: MembershipMember[];
|
|
1434
|
-
longDescription?: string;
|
|
1435
|
-
isAutoRenew?: boolean;
|
|
1436
|
-
purchasedResources: PurchasedResource[];
|
|
1437
|
-
}
|
|
1438
|
-
export declare class Media extends BondBaseEntity {
|
|
1439
|
-
url: string;
|
|
1440
|
-
name: string | null;
|
|
1441
|
-
title: string | null;
|
|
1442
|
-
mediaKey: string | null;
|
|
1443
|
-
description: string | null;
|
|
1444
|
-
provider: string | null;
|
|
1445
|
-
mediaType: number;
|
|
1446
|
-
fileType: string | null;
|
|
1447
|
-
isDefault: boolean | null;
|
|
1448
|
-
creatorId: number | null;
|
|
1449
|
-
creatorType: string | null;
|
|
1450
|
-
userCreatorId: number | null;
|
|
1451
|
-
ownerId: number | null;
|
|
1452
|
-
createdBy: number | null;
|
|
1453
|
-
users: User[];
|
|
1454
|
-
programs: Program[];
|
|
1455
|
-
memberships: Membership[];
|
|
1456
|
-
}
|
|
1457
|
-
export declare class NotificationSubscriptions extends OrganizationConnectionBaseEntity {
|
|
1458
|
-
email: string | null;
|
|
1459
|
-
notificationType: NotificationTypeEnum | null;
|
|
1460
|
-
resourceId: number | null;
|
|
1461
|
-
resourceType: string | null;
|
|
1462
|
-
}
|
|
1463
|
-
export declare class Order extends BondBaseEntity {
|
|
1464
|
-
orderId: string | null;
|
|
1465
|
-
price: number | null;
|
|
1466
|
-
status: OrderStatusEnum | null;
|
|
1467
|
-
sentForClientDate: Date | null;
|
|
1468
|
-
payingUserId?: number | null;
|
|
1469
|
-
orderToInvoices: OrderToInvoice[];
|
|
1470
|
-
lineItems: LineItems[];
|
|
1471
|
-
lineItemHistory: LineItemHistory[];
|
|
1472
|
-
paymentStatus: PaymentStatusEnum;
|
|
1473
|
-
paymentMethodId?: string;
|
|
1474
|
-
paymentType?: PaymentMethodTypeEnum;
|
|
1475
|
-
paidAmount: number;
|
|
1476
|
-
currency: CurrencyEnum;
|
|
1477
|
-
mainInvoiceId: number;
|
|
1478
|
-
isScheduled: boolean;
|
|
1479
|
-
isRefunded: boolean;
|
|
1480
|
-
isVoided: boolean;
|
|
1481
|
-
creatingUserId: number;
|
|
1482
|
-
shiftId: number;
|
|
1483
|
-
platform: PlatformsEnum;
|
|
1484
|
-
orderNotes: OrderNote[];
|
|
1485
|
-
slots: Slot[];
|
|
1486
|
-
}
|
|
1487
|
-
export declare class OrderNote extends OrganizationConnectionBaseEntity {
|
|
1488
|
-
content: string;
|
|
1489
|
-
creatingUserId: number;
|
|
1490
|
-
user: User;
|
|
1491
|
-
isPublic: boolean;
|
|
1492
|
-
deletedAt: Date;
|
|
1493
|
-
orderId: number;
|
|
1494
|
-
order: Order;
|
|
1495
|
-
}
|
|
1496
|
-
export declare class FindProgramSeasonsByProgramIdDto {
|
|
1497
|
-
programId: number;
|
|
1498
|
-
}
|
|
1499
|
-
export declare class FindSessionsFiltersDto {
|
|
1500
|
-
status?: PublishingStatusEnum;
|
|
1501
|
-
isFullFetch?: boolean;
|
|
1502
|
-
}
|
|
1503
|
-
export declare class FindSessionsByProgramAndOrganizationDto extends FindProgramSeasonsByProgramIdDto {
|
|
1504
|
-
organizationId: number;
|
|
1505
|
-
}
|
|
1506
|
-
export declare class DeleteEventAttendeesDto {
|
|
1507
|
-
eventAttendeeIds: string;
|
|
1508
|
-
}
|
|
1509
|
-
export declare class FindProgramSeasonByIdQueryDto {
|
|
1510
|
-
includeResources?: boolean;
|
|
1511
|
-
}
|
|
1512
|
-
export declare class FindProgramSeasonByIdDto extends OptionalFindByOrganizationIdDto {
|
|
1513
|
-
seasonId: number;
|
|
1514
|
-
}
|
|
1515
|
-
export declare class DeleteProgramSeasonByIDDto extends ByOrganizationIdDto {
|
|
1516
|
-
seasonId: number;
|
|
1517
|
-
}
|
|
1518
|
-
export declare class DeleteProductDto {
|
|
1519
|
-
deleteProduct?: boolean;
|
|
1520
|
-
}
|
|
1521
|
-
export declare class FindRegisteredUserDto extends FindProgramSeasonByIdDto {
|
|
1522
|
-
userId: number;
|
|
1523
|
-
}
|
|
1524
|
-
export declare class FindRegisteredUsersOptionsDto extends PaginationQuery {
|
|
1525
|
-
isFreeAgentsOnly?: boolean;
|
|
1526
|
-
isPunchCardUsers?: boolean;
|
|
1527
|
-
nameEmailSearch?: string;
|
|
1528
|
-
}
|
|
1529
|
-
export declare class BaseProgramSeasonDto {
|
|
1530
|
-
programId: number;
|
|
1531
|
-
name: string;
|
|
1532
|
-
status: PublishingStatusEnum;
|
|
1533
|
-
seasonType: ProgramSeasonTypesEnum;
|
|
1534
|
-
startDate: Date;
|
|
1535
|
-
endDate: Date;
|
|
1536
|
-
description?: string;
|
|
1537
|
-
GL?: string;
|
|
1538
|
-
parentSeasonId?: number;
|
|
1539
|
-
questionnaires?: number[];
|
|
1540
|
-
maxParticipants?: number;
|
|
1541
|
-
maxMaleParticipants?: number;
|
|
1542
|
-
maxFemaleParticipants?: number;
|
|
1543
|
-
maxWaitlist?: number;
|
|
1544
|
-
maxMaleWaitlist?: number;
|
|
1545
|
-
maxFemaleWaitlist?: number;
|
|
1546
|
-
facilityId?: number;
|
|
1547
|
-
addressId?: number;
|
|
1548
|
-
blockedDated?: blockedDatesDto[];
|
|
1549
|
-
activityTimes: ActivityTimesDto[];
|
|
1550
|
-
longDescription?: string;
|
|
1551
|
-
isPunchCard?: boolean;
|
|
1552
|
-
organizationId: number;
|
|
1553
|
-
sport: SportsEnum;
|
|
1554
|
-
minAge: string;
|
|
1555
|
-
maxAge: string;
|
|
1556
|
-
gender: GenderEnum;
|
|
1557
|
-
level?: LevelOfPlayEnum[];
|
|
1558
|
-
requiredProductIds?: number[];
|
|
1559
|
-
}
|
|
1560
|
-
export declare class CreateProgramSeasonDto extends BaseProgramSeasonDto {
|
|
1561
|
-
subSeasons?: SubSeasonBasicInfo[];
|
|
1562
|
-
}
|
|
1563
|
-
export declare class CreateSessionScheduleDto {
|
|
1564
|
-
startDate: Date;
|
|
1565
|
-
endDate: Date;
|
|
1566
|
-
activityTimes: ActivityTimesDto[];
|
|
1567
|
-
blockedDated?: blockedDatesDto[];
|
|
1568
|
-
subSeasons?: SubSeasonBasicInfo[];
|
|
1569
|
-
}
|
|
1570
|
-
export declare class SubSeasonBasicInfo {
|
|
1571
|
-
name: string;
|
|
1572
|
-
startDate: Date;
|
|
1573
|
-
endDate: Date;
|
|
1574
|
-
activityTimes?: ActivityTimesDto[];
|
|
1575
|
-
}
|
|
1576
|
-
export declare class UpdateProgramSeasonDto extends BaseProgramSeasonDto {
|
|
1577
|
-
seasonId: number;
|
|
1578
|
-
}
|
|
1579
|
-
export declare class UpdateProgramSeasonStatusDto {
|
|
1580
|
-
seasonId: number;
|
|
1581
|
-
status: PublishingStatusEnum;
|
|
1582
|
-
}
|
|
1583
|
-
export declare class blockedDatesDto {
|
|
1584
|
-
name: string;
|
|
1585
|
-
startDate: Date;
|
|
1586
|
-
endDate: Date;
|
|
1587
|
-
}
|
|
1588
|
-
export declare class ActivityTimesDto {
|
|
1589
|
-
dayOfWeek: number;
|
|
1590
|
-
open: string;
|
|
1591
|
-
close: string;
|
|
1592
|
-
}
|
|
1593
|
-
export declare class ShallowUpdateProgramSeasonDto {
|
|
1594
|
-
seasonId: number;
|
|
1595
|
-
name: string;
|
|
1596
|
-
description?: string;
|
|
1597
|
-
questionnaires?: number[];
|
|
1598
|
-
maxParticipants?: number;
|
|
1599
|
-
maxMaleParticipants?: number;
|
|
1600
|
-
maxFemaleParticipants?: number;
|
|
1601
|
-
maxWaitlist?: number;
|
|
1602
|
-
maxMaleWaitlist?: number;
|
|
1603
|
-
maxFemaleWaitlist?: number;
|
|
1604
|
-
facilityId?: number;
|
|
1605
|
-
addressId?: number;
|
|
1606
|
-
sport?: SportsEnum;
|
|
1607
|
-
minAge?: string;
|
|
1608
|
-
maxAge?: string;
|
|
1609
|
-
gender?: GenderEnum;
|
|
1610
|
-
level?: LevelOfPlayEnum[];
|
|
1611
|
-
requiredProductIds?: number[];
|
|
1612
|
-
subSeasons?: ShallowUpdateSubSeasonDto[];
|
|
1613
|
-
}
|
|
1614
|
-
export declare class ShallowUpdateSubSeasonDto {
|
|
1615
|
-
id: number;
|
|
1616
|
-
name: string;
|
|
1617
|
-
}
|
|
1618
|
-
export declare class SpaceResourcePairDto {
|
|
1619
|
-
resourceType: ResourceNameTypeEnum;
|
|
1620
|
-
resourceId: number;
|
|
1621
|
-
spacesIds: number[];
|
|
1622
|
-
publicNotes?: string;
|
|
1623
|
-
privateNotes?: string;
|
|
1624
|
-
minutesBeforeSlot?: number;
|
|
1625
|
-
minutesAfterSlot?: number;
|
|
1626
|
-
}
|
|
1627
|
-
export declare class BulkSpaceResourceAllocationDto {
|
|
1628
|
-
spaceResourcePairs: SpaceResourcePairDto[];
|
|
1629
|
-
organizationId: number;
|
|
1630
|
-
}
|
|
1631
|
-
export declare class SingleSpaceAllocationByTimesDto {
|
|
1632
|
-
date: string;
|
|
1633
|
-
startTime: string;
|
|
1634
|
-
endTime: string;
|
|
1635
|
-
spaceId: number;
|
|
1636
|
-
publicNotes?: string;
|
|
1637
|
-
slotType?: SlotTypeEnum;
|
|
1638
|
-
}
|
|
1639
|
-
export declare class SpaceAllocationsByTimesDto {
|
|
1640
|
-
spaceAllocations: SingleSpaceAllocationByTimesDto[];
|
|
1641
|
-
}
|
|
1642
|
-
export declare class UpdateSeasonDatesDto {
|
|
1643
|
-
startDate: Date;
|
|
1644
|
-
endDate: Date;
|
|
1645
|
-
}
|
|
1646
|
-
export declare class MoveAttendeeDto {
|
|
1647
|
-
userId: number;
|
|
1648
|
-
resourceType: ResourceNameTypeEnum;
|
|
1649
|
-
fromResourceIds: number[];
|
|
1650
|
-
toResourceIds: number[];
|
|
1651
|
-
}
|
|
1652
|
-
export declare class UpdateSeasonRegistrationDatesDto {
|
|
1653
|
-
registrationPeriods: UpdateSeasonDatesDto[];
|
|
1654
|
-
}
|
|
1655
|
-
export declare class RegistrationDatesDto {
|
|
1656
|
-
registrationStartDate: Date;
|
|
1657
|
-
registrationEndDate: Date;
|
|
1658
|
-
earlyRegistrationStartDate?: Date;
|
|
1659
|
-
earlyRegistrationEndDate?: Date;
|
|
1660
|
-
lateRegistrationStartDate?: Date;
|
|
1661
|
-
lateRegistrationEndDate?: Date;
|
|
1662
|
-
}
|
|
1663
|
-
export declare class RegistrationSettingsDto extends RegistrationDatesDto {
|
|
1664
|
-
closeRegistrationPeriodValue?: number;
|
|
1665
|
-
closeRegistrationPeriodType?: RegistrationConstraintPeriodTypeEnum;
|
|
1666
|
-
closeRegistrationSpecTime?: string;
|
|
1667
|
-
openRegistrationPeriodValue?: number;
|
|
1668
|
-
openRegistrationPeriodType?: RegistrationConstraintPeriodTypeEnum;
|
|
1669
|
-
openRegistrationSpecTime?: string;
|
|
1670
|
-
productsIdsToUpdate?: number[];
|
|
1671
|
-
}
|
|
1672
|
-
export declare class MoveParticipantDto {
|
|
1673
|
-
userId: number;
|
|
1674
|
-
oldProductId: number;
|
|
1675
|
-
newProductId: number;
|
|
1676
|
-
moveType: 'session' | 'segment';
|
|
1677
|
-
resourceId: number;
|
|
1678
|
-
orderId: number;
|
|
1679
|
-
}
|
|
1680
|
-
export declare class OrderToInvoice extends BondBaseEntity {
|
|
1681
|
-
orderId: number;
|
|
1682
|
-
invoiceId: number;
|
|
1683
|
-
order: Order;
|
|
1684
|
-
invoice: Invoice;
|
|
1685
|
-
paidAmount?: number;
|
|
1686
|
-
currency: CurrencyEnum;
|
|
1687
|
-
}
|
|
1688
|
-
export declare class OpeningTime extends OrganizationConnectionBaseEntity {
|
|
1689
|
-
id: number;
|
|
1690
|
-
dayOfWeek: number;
|
|
1691
|
-
open: string;
|
|
1692
|
-
close: string;
|
|
1693
|
-
facilityId: number;
|
|
1694
|
-
createdAt: Date;
|
|
1695
|
-
updatedAt: Date;
|
|
1142
|
+
export declare class BookedSessions extends BondBaseEntity {
|
|
1143
|
+
reservationId?: number;
|
|
1144
|
+
color?: string;
|
|
1145
|
+
creatorId?: number;
|
|
1146
|
+
creatorType?: string;
|
|
1147
|
+
startDate?: Date | moment.Moment;
|
|
1148
|
+
endDate?: Date | moment.Moment;
|
|
1149
|
+
timezone?: string;
|
|
1150
|
+
spaceId?: number;
|
|
1151
|
+
percentage?: number;
|
|
1152
|
+
status?: string;
|
|
1153
|
+
originalSessionId?: number;
|
|
1154
|
+
isFinal?: boolean;
|
|
1155
|
+
concurrent?: number;
|
|
1696
1156
|
deletedAt?: Date;
|
|
1697
|
-
|
|
1157
|
+
publicNotes?: string;
|
|
1158
|
+
slotType?: SlotTypeEnum;
|
|
1698
1159
|
}
|
|
1699
|
-
export declare class
|
|
1700
|
-
|
|
1160
|
+
export declare class BookingTypeSetting extends OrganizationConnectionBaseEntity {
|
|
1161
|
+
parentId: number;
|
|
1162
|
+
parentType: ResourceNameTypeEnum;
|
|
1163
|
+
startDate: Date;
|
|
1164
|
+
endDate: Date;
|
|
1165
|
+
dayOfWeek: number;
|
|
1166
|
+
startTimeInDay: string;
|
|
1167
|
+
endTimeInDay: string;
|
|
1168
|
+
directBookingFor: DirectBookingTypesEnum;
|
|
1701
1169
|
}
|
|
1702
|
-
export declare class
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
status: string;
|
|
1707
|
-
percentage: number;
|
|
1708
|
-
quantity: number;
|
|
1709
|
-
duration: number;
|
|
1710
|
-
organizationId: number;
|
|
1711
|
-
creatorId: number;
|
|
1712
|
-
creatorType: string;
|
|
1713
|
-
userCreatorId: number;
|
|
1714
|
-
ownerId: number;
|
|
1715
|
-
addon: boolean;
|
|
1716
|
-
isMandatory: boolean;
|
|
1717
|
-
productId: number;
|
|
1170
|
+
export declare class Configuration extends BondBaseEntity {
|
|
1171
|
+
area: string;
|
|
1172
|
+
key: string;
|
|
1173
|
+
value: string;
|
|
1718
1174
|
}
|
|
1719
|
-
export declare class
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1175
|
+
export declare class ActivityLogRecord extends BondBaseEntity {
|
|
1176
|
+
entityType: ResourceNameTypeEnum;
|
|
1177
|
+
entityId: number;
|
|
1178
|
+
organizationId?: number;
|
|
1179
|
+
userId?: number;
|
|
1180
|
+
customerId?: number;
|
|
1181
|
+
performingUserId: number;
|
|
1182
|
+
description: string;
|
|
1183
|
+
actionType: ActionTypesEnum;
|
|
1184
|
+
sourcePlatform: ActionSourcePlatformEnum;
|
|
1185
|
+
oldValue?: any;
|
|
1186
|
+
newValue?: any;
|
|
1724
1187
|
}
|
|
1725
|
-
export declare class
|
|
1726
|
-
|
|
1188
|
+
export declare class Connection extends BondBaseEntity {
|
|
1189
|
+
connType: number | null;
|
|
1190
|
+
from: number | null;
|
|
1191
|
+
fromType: string | null;
|
|
1192
|
+
to: number | null;
|
|
1193
|
+
toType: string | null;
|
|
1194
|
+
status: number | null;
|
|
1195
|
+
creatorId: number | null;
|
|
1196
|
+
creatorType: string | null;
|
|
1197
|
+
userCreatorId: number | null;
|
|
1198
|
+
ownerId: number | null;
|
|
1727
1199
|
}
|
|
1728
|
-
export declare class
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
productType?: ProductTypesEnum;
|
|
1736
|
-
GL?: string;
|
|
1737
|
-
downpayment?: number;
|
|
1738
|
-
description?: string;
|
|
1739
|
-
prices: Price[];
|
|
1740
|
-
currPrice: Price;
|
|
1741
|
-
productSubType?: ProductSubTypesEnum;
|
|
1742
|
-
punchCard: boolean;
|
|
1743
|
-
requiredProductIds?: number[];
|
|
1744
|
-
lineItems: LineItems[];
|
|
1745
|
-
resources: IResourcesAvailability[];
|
|
1746
|
-
variantParentId?: number;
|
|
1747
|
-
isAddon: boolean;
|
|
1748
|
-
isArchive: boolean;
|
|
1749
|
-
productVariants: Product[];
|
|
1750
|
-
variantParentProduct: Product;
|
|
1751
|
-
variantsObj: Variant[];
|
|
1752
|
-
variantTitlesObj: VariantTitle[];
|
|
1753
|
-
timePeriod?: AddonTimePeriodEnum;
|
|
1754
|
-
deletedAt?: Date;
|
|
1755
|
-
productsUsers: ProductsUsers[];
|
|
1756
|
-
isProRated: boolean;
|
|
1757
|
-
entitledPrices?: GroupItemsPricing[];
|
|
1758
|
-
defaultPriceId?: number;
|
|
1759
|
-
tax: number;
|
|
1760
|
-
isTaxInclusive: boolean;
|
|
1761
|
-
defaultPrice?: Price;
|
|
1762
|
-
addOns?: IChildProduct[];
|
|
1763
|
-
productPaymentPlan?: ProductPaymentPlan;
|
|
1764
|
-
productResources: ProductResource[];
|
|
1765
|
-
parentProductPackages: ProductPackage[];
|
|
1766
|
-
childProductPackages: ProductPackage[];
|
|
1767
|
-
sports?: number[] | null;
|
|
1768
|
-
durationMinutes?: number;
|
|
1769
|
-
durationDays?: number;
|
|
1770
|
-
forms?: number[] | null;
|
|
1771
|
-
isForAllCustomers?: boolean;
|
|
1772
|
-
productsReservedForCustomers: ProductsReservedForCustomers[];
|
|
1773
|
-
reservedForCustomers: Customer[];
|
|
1774
|
-
reservedForMemberships: Membership[];
|
|
1775
|
-
activityTimes: ActivityTimes[];
|
|
1776
|
-
purchasedResources: PurchasedResource[];
|
|
1200
|
+
export declare class CreditNote extends OrganizationConnectionBaseEntity {
|
|
1201
|
+
creditAmount: number;
|
|
1202
|
+
paymentProcessorId: string;
|
|
1203
|
+
userId: number;
|
|
1204
|
+
invoiceId: number;
|
|
1205
|
+
orderId: number;
|
|
1206
|
+
creditPaymentInvoiceId: number;
|
|
1777
1207
|
}
|
|
1778
|
-
export declare class
|
|
1779
|
-
|
|
1208
|
+
export declare class Customer extends OrganizationConnectionBaseEntity {
|
|
1209
|
+
name: string | null;
|
|
1210
|
+
entityId: number | null;
|
|
1211
|
+
addressId: number | null;
|
|
1212
|
+
entityType: CustomerTypeEnum | null;
|
|
1213
|
+
customerId: string | null;
|
|
1214
|
+
email: string | null;
|
|
1215
|
+
color: string | null;
|
|
1216
|
+
phoneNumber: string | null;
|
|
1217
|
+
mainMediaId: number | null;
|
|
1218
|
+
creatorId: number | null;
|
|
1219
|
+
creatorType: ResourceNameTypeEnum | null;
|
|
1220
|
+
userCreatorId: number | null;
|
|
1780
1221
|
ownerId: number | null;
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
orderId: string | null;
|
|
1795
|
-
}
|
|
1796
|
-
export declare class PasswordReset extends BondBaseEntity {
|
|
1797
|
-
token: string | null;
|
|
1798
|
-
userId: number | null;
|
|
1799
|
-
validUntil: Date | null;
|
|
1800
|
-
active: boolean | null;
|
|
1222
|
+
vetted: boolean | null;
|
|
1223
|
+
firstName: string | null;
|
|
1224
|
+
lastName: string | null;
|
|
1225
|
+
waiverSignedDate: string | null;
|
|
1226
|
+
balance: number | null;
|
|
1227
|
+
storedCredit: number;
|
|
1228
|
+
members: (User & Customer)[];
|
|
1229
|
+
emergencyContacts: EmergencyContact[];
|
|
1230
|
+
customerNotes: CustomerNote[];
|
|
1231
|
+
customerCreditTransactions: CustomerCreditTransaction[];
|
|
1232
|
+
productsReservedFor: ProductsReservedForCustomers[];
|
|
1233
|
+
mainMedia: Media;
|
|
1234
|
+
reservations?: Reservation[];
|
|
1801
1235
|
}
|
|
1802
|
-
export declare class
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1236
|
+
export declare class CustomerCreditTransaction extends OrganizationConnectionBaseEntity {
|
|
1237
|
+
customerId: number;
|
|
1238
|
+
userId: number;
|
|
1239
|
+
amount: number;
|
|
1240
|
+
invoiceId?: number;
|
|
1241
|
+
orderId?: number;
|
|
1242
|
+
description?: string;
|
|
1807
1243
|
deletedAt?: Date;
|
|
1808
|
-
|
|
1809
|
-
|
|
1244
|
+
customer: Customer;
|
|
1245
|
+
order: Order;
|
|
1246
|
+
invoice: Invoice;
|
|
1810
1247
|
}
|
|
1811
|
-
export declare class
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
invoiceId: number;
|
|
1817
|
-
sendingUserId: number;
|
|
1818
|
-
mailParams?: any;
|
|
1819
|
-
memo?: string;
|
|
1248
|
+
export declare class CustomerNote extends OrganizationConnectionBaseEntity {
|
|
1249
|
+
customerId?: number;
|
|
1250
|
+
description: string;
|
|
1251
|
+
pinToTop?: boolean;
|
|
1252
|
+
customer: Customer;
|
|
1820
1253
|
}
|
|
1821
|
-
export declare class
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
product: Product;
|
|
1829
|
-
productPackages: ProductPackage[];
|
|
1830
|
-
resourceName?: string;
|
|
1254
|
+
export declare class Division extends BondBaseEntity {
|
|
1255
|
+
name: string;
|
|
1256
|
+
ordinal?: number;
|
|
1257
|
+
programSeasonId: number;
|
|
1258
|
+
color: string;
|
|
1259
|
+
isDefault: boolean;
|
|
1260
|
+
groups: Group[];
|
|
1831
1261
|
}
|
|
1832
|
-
export declare class
|
|
1833
|
-
|
|
1834
|
-
|
|
1262
|
+
export declare class EmergencyContact extends OrganizationConnectionBaseEntity {
|
|
1263
|
+
customerId: number;
|
|
1264
|
+
name: string | null;
|
|
1265
|
+
phoneNumber: string | null;
|
|
1266
|
+
customer: Customer;
|
|
1835
1267
|
}
|
|
1836
|
-
export declare class
|
|
1837
|
-
|
|
1838
|
-
childProductId: number;
|
|
1839
|
-
relationType: PackageProductsRelationTypeEnum;
|
|
1840
|
-
timePeriod: AddonTimePeriodEnum;
|
|
1841
|
-
deletedAt?: Date;
|
|
1842
|
-
productResource: ProductResource;
|
|
1843
|
-
childProduct: Product;
|
|
1844
|
-
parentProduct: Product;
|
|
1845
|
-
price: number;
|
|
1846
|
-
isFlatPrice: boolean;
|
|
1847
|
-
durationMinutes?: number;
|
|
1848
|
-
durationDays?: number;
|
|
1849
|
-
level?: ProductPackageLevelEnum;
|
|
1268
|
+
export declare class EntitlementGroup extends OrganizationConnectionBaseEntity {
|
|
1269
|
+
name: string | null;
|
|
1850
1270
|
}
|
|
1851
|
-
export declare class
|
|
1852
|
-
|
|
1853
|
-
|
|
1271
|
+
export declare class EntitlementTerms extends OrganizationConnectionBaseEntity {
|
|
1272
|
+
groupId: number;
|
|
1273
|
+
terms: IEntitlementTerms[];
|
|
1854
1274
|
}
|
|
1855
|
-
export declare class
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1275
|
+
export declare class EventAttendee extends BondBaseEntity {
|
|
1276
|
+
status: RequestStatusEnum | null;
|
|
1277
|
+
hasPaid: boolean | null;
|
|
1278
|
+
paymentId: number | null;
|
|
1279
|
+
attendeeId: number;
|
|
1280
|
+
eventId?: number | null;
|
|
1281
|
+
productUserId?: number;
|
|
1282
|
+
answerTitleIds?: number[];
|
|
1283
|
+
entryStatus?: EntryStatusEnum;
|
|
1284
|
+
addonProductUserIds?: number[];
|
|
1285
|
+
deletedAt?: Date;
|
|
1286
|
+
attendee: User;
|
|
1287
|
+
event: Event;
|
|
1288
|
+
purchasedResource: PurchasedResource;
|
|
1289
|
+
}
|
|
1290
|
+
export declare class Event extends OrganizationConnectionBaseEntity {
|
|
1291
|
+
constructor();
|
|
1292
|
+
defineCalculatedDateTimeProps(): void;
|
|
1293
|
+
title: string | null;
|
|
1863
1294
|
description: string | null;
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1295
|
+
eventType: number | null;
|
|
1296
|
+
startDate: Date | null;
|
|
1297
|
+
endDate: Date | null;
|
|
1298
|
+
price: number | null;
|
|
1299
|
+
venueName: string | null;
|
|
1300
|
+
status: EventStatusEnum;
|
|
1301
|
+
private: boolean | null;
|
|
1302
|
+
guestsCanInvite: boolean | null;
|
|
1303
|
+
venueId: number | null;
|
|
1304
|
+
addressId: number | null;
|
|
1305
|
+
participantsLimit: number | null;
|
|
1306
|
+
parentId: number | null;
|
|
1307
|
+
parentType: string | null;
|
|
1308
|
+
timezone: string | null;
|
|
1309
|
+
eventSubType: string | null;
|
|
1310
|
+
eventSubId: number | null;
|
|
1311
|
+
metaData: any | null;
|
|
1312
|
+
groupingId: string | null;
|
|
1313
|
+
redirectUri: string | null;
|
|
1314
|
+
externalId: string | null;
|
|
1315
|
+
paymentSettings: any | null;
|
|
1316
|
+
whoCanJoin: string | null;
|
|
1317
|
+
spaceId?: number;
|
|
1318
|
+
bookedSessionId: number | null;
|
|
1319
|
+
creatorId: number | null;
|
|
1320
|
+
creatorType: string | null;
|
|
1321
|
+
userCreatorId: number | null;
|
|
1322
|
+
ownerId: number | null;
|
|
1323
|
+
sports: number[] | null;
|
|
1324
|
+
isVerified: boolean | null;
|
|
1325
|
+
mainMediaId: number | null;
|
|
1326
|
+
minAge: number | null;
|
|
1327
|
+
maxAge: number | null;
|
|
1328
|
+
gender: number | null;
|
|
1329
|
+
questionnaireId: number | null;
|
|
1330
|
+
eventAttendees: EventAttendee[];
|
|
1873
1331
|
deletedAt?: Date;
|
|
1874
|
-
|
|
1332
|
+
spaces?: IBasicSpaceAndSlotCreator[];
|
|
1333
|
+
startDateString: string;
|
|
1334
|
+
endDateString: string;
|
|
1335
|
+
startTime: string;
|
|
1336
|
+
endTime: string;
|
|
1337
|
+
publicNotes?: string;
|
|
1338
|
+
privateNotes?: string;
|
|
1339
|
+
productResources: ProductResource[];
|
|
1340
|
+
parentSession: ProgramSeason;
|
|
1341
|
+
activityTimes: ActivityTimes[];
|
|
1342
|
+
slots: Slot[];
|
|
1875
1343
|
purchasedResources: PurchasedResource[];
|
|
1876
1344
|
}
|
|
1877
|
-
export declare class
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1345
|
+
export declare class Facility extends OrganizationConnectionBaseEntity {
|
|
1346
|
+
name: string;
|
|
1347
|
+
description?: string;
|
|
1348
|
+
addressId: number;
|
|
1349
|
+
address: Address;
|
|
1350
|
+
amenities?: number[];
|
|
1351
|
+
timezone: string;
|
|
1352
|
+
creatorId: number;
|
|
1353
|
+
creatorType: string;
|
|
1354
|
+
userCreatorId: number;
|
|
1355
|
+
mainMediaId: number;
|
|
1356
|
+
mainMedia: Media;
|
|
1357
|
+
publishedDate?: Date;
|
|
1358
|
+
isPublished: boolean;
|
|
1359
|
+
sports?: number[];
|
|
1360
|
+
info?: string;
|
|
1361
|
+
longDescription?: string;
|
|
1881
1362
|
deletedAt?: Date;
|
|
1882
|
-
|
|
1363
|
+
openingTimes: OpeningTime[];
|
|
1364
|
+
resources: Resource[];
|
|
1365
|
+
spaces: Resource[];
|
|
1366
|
+
programSeasons: ProgramSeason[];
|
|
1367
|
+
linkSEO: string;
|
|
1883
1368
|
}
|
|
1884
1369
|
export declare class FacilityToResource extends BondBaseEntity {
|
|
1885
1370
|
facilityId: number;
|
|
1886
1371
|
resourceId: number;
|
|
1887
1372
|
}
|
|
1888
|
-
export declare class
|
|
1889
|
-
|
|
1373
|
+
export declare class FamilyAccount extends BondBaseEntity {
|
|
1374
|
+
name: string | null;
|
|
1375
|
+
userInFamilyAccounts: UserInFamilyAccount[];
|
|
1376
|
+
}
|
|
1377
|
+
export declare class FutureInstallment extends OrganizationConnectionBaseEntity {
|
|
1890
1378
|
userId: number;
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
ordinal?: number;
|
|
1899
|
-
purchasedResources: PurchasedResource[];
|
|
1900
|
-
product: Product;
|
|
1901
|
-
lineItem: LineItems;
|
|
1902
|
-
slots?: Slot[];
|
|
1903
|
-
addons?: Addon[];
|
|
1379
|
+
orderId: number;
|
|
1380
|
+
paymentMethodId: string;
|
|
1381
|
+
paymentType: PaymentMethodTypeEnum;
|
|
1382
|
+
price: number;
|
|
1383
|
+
status: FutureInstallmentStatusEnum;
|
|
1384
|
+
plannedDate: Date;
|
|
1385
|
+
chargedAt?: Date;
|
|
1904
1386
|
}
|
|
1905
|
-
export declare class
|
|
1906
|
-
|
|
1907
|
-
ordinal: number | null;
|
|
1908
|
-
title: string | null;
|
|
1909
|
-
data: any | null;
|
|
1910
|
-
program: Program;
|
|
1911
|
-
deletedAt?: Date;
|
|
1387
|
+
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1388
|
+
code: string;
|
|
1912
1389
|
}
|
|
1913
|
-
export declare class
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
price: number;
|
|
1918
|
-
currency: CurrencyEnum;
|
|
1919
|
-
paymentProcessorId: number | null;
|
|
1390
|
+
export declare class GroupItemsPricing extends OrganizationConnectionBaseEntity {
|
|
1391
|
+
groupId: number;
|
|
1392
|
+
itemId: number;
|
|
1393
|
+
itemType: ResourceNameTypeEnum;
|
|
1920
1394
|
startDate: Date;
|
|
1921
1395
|
endDate: Date;
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
originalPrice?: number;
|
|
1396
|
+
price: number;
|
|
1397
|
+
overridesPrice: boolean;
|
|
1925
1398
|
deletedAt?: Date;
|
|
1399
|
+
group?: EntitlementGroup;
|
|
1926
1400
|
discountMethod?: DiscountMethodsEnum;
|
|
1927
1401
|
discountValue?: number;
|
|
1928
1402
|
}
|
|
1929
|
-
export declare class
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
status: PurchasedResourceStatusEnum;
|
|
1934
|
-
startDate?: string;
|
|
1935
|
-
startTime?: string;
|
|
1936
|
-
endDate?: string;
|
|
1937
|
-
endTime?: string;
|
|
1938
|
-
productUser?: ProductsUsers;
|
|
1939
|
-
lineItem?: LineItems;
|
|
1940
|
-
eventAttendee?: EventAttendee;
|
|
1941
|
-
seasonAttendee?: SeasonAttendee;
|
|
1942
|
-
leagueAttendee?: SeasonPool;
|
|
1943
|
-
membership?: Membership;
|
|
1944
|
-
program?: Program;
|
|
1945
|
-
programSeason?: ProgramSeason;
|
|
1946
|
-
leagueSeason?: LeagueSeason;
|
|
1947
|
-
space?: Resource;
|
|
1948
|
-
product?: Product;
|
|
1949
|
-
event?: Event;
|
|
1403
|
+
export declare class GroupsInDivisions extends BondBaseEntity {
|
|
1404
|
+
groupId: number;
|
|
1405
|
+
divisionId: number;
|
|
1406
|
+
deletedAt?: Date;
|
|
1950
1407
|
}
|
|
1951
|
-
export declare class
|
|
1952
|
-
programId: number;
|
|
1408
|
+
export declare class Group extends BondBaseEntity {
|
|
1953
1409
|
name: string;
|
|
1954
|
-
description
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
registrationEndDate: Date | null;
|
|
1961
|
-
questionnaires: number[] | null;
|
|
1962
|
-
seasonType: ProgramSeasonTypesEnum;
|
|
1963
|
-
parentSeasonId: number | null;
|
|
1964
|
-
maxParticipants: number | null;
|
|
1965
|
-
maxMaleParticipants: number | null;
|
|
1966
|
-
maxFemaleParticipants: number | null;
|
|
1967
|
-
maxWaitlist: number | null;
|
|
1968
|
-
maxMaleWaitlist: number | null;
|
|
1969
|
-
maxFemaleWaitlist: number | null;
|
|
1970
|
-
organizationId: number;
|
|
1971
|
-
facilityId: number | null;
|
|
1972
|
-
facilityName?: string;
|
|
1973
|
-
addressId: number | null;
|
|
1974
|
-
sport: SportsEnum;
|
|
1975
|
-
minAge: string;
|
|
1976
|
-
maxAge: string;
|
|
1410
|
+
description?: string;
|
|
1411
|
+
status: GroupStatusEnum;
|
|
1412
|
+
maxCapacity?: number;
|
|
1413
|
+
mainMediaId?: number;
|
|
1414
|
+
minAgeYears?: number;
|
|
1415
|
+
maxAgeYears?: number;
|
|
1977
1416
|
gender: GenderEnum;
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
defaultProductId?: number;
|
|
1985
|
-
longDescription?: string;
|
|
1986
|
-
isPunchCard?: boolean;
|
|
1987
|
-
deletedAt?: Date;
|
|
1988
|
-
segments?: (SeasonAsSeasonSegment | EventAsSeasonSegment)[];
|
|
1989
|
-
program: Program;
|
|
1990
|
-
spaces?: Resource[];
|
|
1991
|
-
earlyRegistrationStartDate?: Date;
|
|
1992
|
-
earlyRegistrationEndDate?: Date;
|
|
1993
|
-
lateRegistrationStartDate?: Date;
|
|
1994
|
-
lateRegistrationEndDate?: Date;
|
|
1995
|
-
requiredProductIds?: number[];
|
|
1996
|
-
registrationConstraints?: RegistrationConstraint;
|
|
1997
|
-
sessionSegments: ProgramSeason[];
|
|
1998
|
-
sessionEvents: Event[];
|
|
1999
|
-
parentSession: ProgramSeason;
|
|
2000
|
-
activityTimes: ActivityTimes[];
|
|
2001
|
-
productResources: ProductResource[];
|
|
2002
|
-
facility: Facility;
|
|
2003
|
-
purchasedResources: PurchasedResource[];
|
|
1417
|
+
levelOfPlay?: LevelOfPlayEnum[];
|
|
1418
|
+
sports: SportsEnum[];
|
|
1419
|
+
questionnaires?: number[];
|
|
1420
|
+
captainUserId?: number;
|
|
1421
|
+
members: ISeasonAttendeeInfo[];
|
|
1422
|
+
users: User[];
|
|
2004
1423
|
}
|
|
2005
|
-
export declare class
|
|
2006
|
-
|
|
2007
|
-
|
|
1424
|
+
export declare class Invoice extends OrganizationConnectionBaseEntity {
|
|
1425
|
+
price: number;
|
|
1426
|
+
paymentProcessorId: string;
|
|
1427
|
+
orderToInvoices: OrderToInvoice[];
|
|
1428
|
+
paymentStatus: PaymentStatusEnum;
|
|
1429
|
+
bondFee?: number;
|
|
1430
|
+
stripeFee?: number;
|
|
1431
|
+
currency: CurrencyEnum;
|
|
1432
|
+
payingUserId?: number;
|
|
1433
|
+
paymentMethodId?: string;
|
|
1434
|
+
paymentType?: PaymentMethodTypeEnum;
|
|
1435
|
+
fundLeft: number;
|
|
1436
|
+
notes?: string;
|
|
1437
|
+
isRefunded: boolean;
|
|
1438
|
+
lineItemHistory: LineItemHistory[];
|
|
1439
|
+
receiptUrl?: string;
|
|
1440
|
+
paymentProcessorTransactionId?: string;
|
|
1441
|
+
creatingUserId: number;
|
|
1442
|
+
shiftId: number;
|
|
1443
|
+
platform: PlatformsEnum;
|
|
1444
|
+
ccLast4: string;
|
|
1445
|
+
ccBrand: string;
|
|
1446
|
+
invoiceNotes: InvoiceNote[];
|
|
1447
|
+
parentInvoiceId?: number;
|
|
1448
|
+
refundReasonId?: number;
|
|
1449
|
+
refundNote?: string;
|
|
2008
1450
|
}
|
|
2009
|
-
export declare class
|
|
2010
|
-
|
|
2011
|
-
|
|
1451
|
+
export declare class InvoiceMails extends OrganizationConnectionBaseEntity {
|
|
1452
|
+
email: string;
|
|
1453
|
+
status: EEmailStatus;
|
|
1454
|
+
templateId: string;
|
|
1455
|
+
userId: number;
|
|
1456
|
+
invoiceId: number;
|
|
1457
|
+
sendingUserId: number;
|
|
1458
|
+
mailParams?: any;
|
|
1459
|
+
memo?: string;
|
|
1460
|
+
}
|
|
1461
|
+
export declare class InvoiceNote extends OrganizationConnectionBaseEntity {
|
|
1462
|
+
content: string;
|
|
1463
|
+
creatingUserId: number;
|
|
1464
|
+
user: User;
|
|
1465
|
+
isPublic: boolean;
|
|
2012
1466
|
deletedAt: Date;
|
|
1467
|
+
invoiceId: number;
|
|
1468
|
+
invoice: Invoice;
|
|
2013
1469
|
}
|
|
2014
|
-
export declare class
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
1470
|
+
export declare class League extends OrganizationConnectionBaseEntity {
|
|
1471
|
+
name: string | null;
|
|
1472
|
+
description: string | null;
|
|
1473
|
+
allowBookingRequest: boolean | null;
|
|
1474
|
+
addressName: string | null;
|
|
1475
|
+
shortDescription: string | null;
|
|
1476
|
+
waiverDoc: string | null;
|
|
1477
|
+
bookingStateStatus: number | null;
|
|
1478
|
+
timezone: string | null;
|
|
1479
|
+
shortUrl: string | null;
|
|
1480
|
+
leagueType: string | null;
|
|
1481
|
+
addressId: number | null;
|
|
1482
|
+
sportConfigData: any | null;
|
|
2022
1483
|
creatorId: number | null;
|
|
2023
1484
|
creatorType: string | null;
|
|
2024
1485
|
userCreatorId: number | null;
|
|
2025
1486
|
ownerId: number | null;
|
|
1487
|
+
sports: number[] | null;
|
|
1488
|
+
mainMediaId: number | null;
|
|
1489
|
+
publishedDate: Date | null;
|
|
1490
|
+
isPublished: boolean | null;
|
|
1491
|
+
isVerified: boolean | null;
|
|
2026
1492
|
questionnaireId: number | null;
|
|
1493
|
+
logo?: Media;
|
|
1494
|
+
seasons: LeagueSeason[];
|
|
2027
1495
|
}
|
|
2028
|
-
export declare class
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
1496
|
+
export declare class LeagueSeason extends BondBaseEntity {
|
|
1497
|
+
leagueId: number | null;
|
|
1498
|
+
name: string | null;
|
|
1499
|
+
status: number | null;
|
|
1500
|
+
startDate: Date | null;
|
|
1501
|
+
endDate: Date | null;
|
|
1502
|
+
priceEarlySingle: number | null;
|
|
1503
|
+
priceRegularSingle: number | null;
|
|
1504
|
+
priceLateSingle: number | null;
|
|
1505
|
+
priceEarlyTeam: number | null;
|
|
1506
|
+
priceRegularTeam: number | null;
|
|
1507
|
+
priceLateTeam: number | null;
|
|
1508
|
+
priceEarlyTeamMember: number | null;
|
|
1509
|
+
priceRegularTeamMember: number | null;
|
|
1510
|
+
priceLateTeamMember: number | null;
|
|
1511
|
+
priceEarlyGroup: number | null;
|
|
1512
|
+
priceRegularGroup: number | null;
|
|
1513
|
+
priceLateGroup: number | null;
|
|
1514
|
+
earlyRegistrationEnds: Date | null;
|
|
1515
|
+
regularRegistrationEnds: Date | null;
|
|
1516
|
+
lateRegistrationEnds: Date | null;
|
|
1517
|
+
registrationStatus: number | null;
|
|
1518
|
+
description: string | null;
|
|
1519
|
+
addressName: string | null;
|
|
1520
|
+
registrationOpen: Date | null;
|
|
1521
|
+
connectedSeasonId: number | null;
|
|
1522
|
+
tournamentType: boolean | null;
|
|
1523
|
+
playoffType: boolean | null;
|
|
1524
|
+
scheduleStatus: SeasonScheduleStatusEnum;
|
|
1525
|
+
rosterStatus: string | null;
|
|
1526
|
+
metaData: any | null;
|
|
1527
|
+
inviteSendDate: Date | null;
|
|
1528
|
+
maxNumParticipants: number | null;
|
|
1529
|
+
programId: number | null;
|
|
1530
|
+
minNumParticipants: number | null;
|
|
1531
|
+
league: League;
|
|
2058
1532
|
facilities: Facility[];
|
|
2059
|
-
|
|
2060
|
-
addons?: Addon[];
|
|
2061
|
-
facilityId: number;
|
|
2062
|
-
facility: Facility;
|
|
1533
|
+
seasonAttendees: SeasonAttendee[];
|
|
2063
1534
|
purchasedResources: PurchasedResource[];
|
|
2064
|
-
linkSEO: string;
|
|
2065
1535
|
}
|
|
2066
|
-
export declare class
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
paymentId?: number;
|
|
2070
|
-
productId?: number;
|
|
2071
|
-
attendeeId: number;
|
|
2072
|
-
attendee: User;
|
|
2073
|
-
seasonId: number;
|
|
2074
|
-
season: ProgramSeason;
|
|
2075
|
-
productUserId?: number;
|
|
2076
|
-
answerTitleIds?: number[];
|
|
2077
|
-
deletedAt?: Date;
|
|
2078
|
-
purchasedResource: PurchasedResource;
|
|
1536
|
+
export declare class LeagueSeasonRelations {
|
|
1537
|
+
league?: boolean;
|
|
1538
|
+
facilities?: boolean;
|
|
2079
1539
|
}
|
|
2080
|
-
export declare class
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
1540
|
+
export declare class LineItemHistory extends BondBaseEntity {
|
|
1541
|
+
orderId: number;
|
|
1542
|
+
invoiceId: number;
|
|
1543
|
+
lineItemId: number;
|
|
1544
|
+
paidAmount: number;
|
|
1545
|
+
unitPaidAmount: number;
|
|
1546
|
+
currency: CurrencyEnum;
|
|
1547
|
+
invoice: Invoice;
|
|
1548
|
+
lineItem: LineItems;
|
|
1549
|
+
}
|
|
1550
|
+
export declare class LineItems extends BondBaseEntity {
|
|
1551
|
+
constructor();
|
|
1552
|
+
defineIsReverted(): void;
|
|
1553
|
+
isReverted: boolean;
|
|
1554
|
+
orderId: number;
|
|
1555
|
+
order: Order;
|
|
1556
|
+
lineItemsHistory: LineItemHistory[];
|
|
1557
|
+
type: LineItemsStatusEnum | null;
|
|
1558
|
+
userId: number | null;
|
|
1559
|
+
productId: number;
|
|
1560
|
+
paymentProcessorId: string;
|
|
1561
|
+
productType: ProductTypesEnum;
|
|
2091
1562
|
productUserId?: number;
|
|
2092
|
-
|
|
2093
|
-
|
|
1563
|
+
ordinal: number | null;
|
|
1564
|
+
entitlementGroupId?: number;
|
|
1565
|
+
price: number;
|
|
1566
|
+
originalPrice?: number;
|
|
1567
|
+
paidAmount?: number;
|
|
1568
|
+
totalPaid?: number;
|
|
1569
|
+
totalQuantity?: number;
|
|
1570
|
+
totalPrice?: number;
|
|
1571
|
+
currency: CurrencyEnum;
|
|
1572
|
+
paymentStatus: PaymentStatusEnum;
|
|
1573
|
+
productSubType?: ProductSubTypesEnum;
|
|
1574
|
+
product: Product;
|
|
1575
|
+
organizationId: number;
|
|
1576
|
+
parentLineItemId?: number;
|
|
1577
|
+
taxLineItem?: LineItems;
|
|
1578
|
+
children?: LineItems[];
|
|
1579
|
+
previousPurchaseProducUserId?: number;
|
|
1580
|
+
discountDescription?: string;
|
|
1581
|
+
productUser?: ProductsUsers;
|
|
1582
|
+
resourceRedeemedForDiscount?: number;
|
|
1583
|
+
redeemableProduct: Product[];
|
|
1584
|
+
isRefunded: boolean;
|
|
1585
|
+
isPartiallyRefund: boolean;
|
|
1586
|
+
isVoided: boolean;
|
|
1587
|
+
isPartiallyVoided: boolean;
|
|
1588
|
+
wasReverted: boolean;
|
|
1589
|
+
isEdit: boolean;
|
|
1590
|
+
purchasedResources: PurchasedResource[];
|
|
1591
|
+
isTaxInclusive?: boolean;
|
|
1592
|
+
taxPrecent?: number;
|
|
1593
|
+
unitPrice?: number;
|
|
1594
|
+
quantity?: number;
|
|
1595
|
+
customerFirstName?: string;
|
|
1596
|
+
customerLastName?: string;
|
|
1597
|
+
displayFullPrice?: number;
|
|
1598
|
+
displayTotalPriceWithTax?: number;
|
|
1599
|
+
displayTotalPaid?: number;
|
|
1600
|
+
displayTotalQuantity?: number;
|
|
1601
|
+
displayUnitPrice?: number;
|
|
1602
|
+
displayQuantity?: number;
|
|
1603
|
+
}
|
|
1604
|
+
export declare class LinkedAccounts extends BondBaseEntity {
|
|
1605
|
+
id: number;
|
|
1606
|
+
provider: string;
|
|
1607
|
+
providerId: string | null;
|
|
1608
|
+
parentId: number | null;
|
|
1609
|
+
parentType: string | null;
|
|
1610
|
+
status: number | null;
|
|
1611
|
+
token: string | null;
|
|
1612
|
+
refreshToken: string | null;
|
|
1613
|
+
tokenCreatedAt: Date | null;
|
|
1614
|
+
tokenValidUpTo: Date | null;
|
|
1615
|
+
createdAt: Date;
|
|
1616
|
+
updatedAt: Date;
|
|
1617
|
+
user: User;
|
|
1618
|
+
userId: number | null;
|
|
2094
1619
|
}
|
|
2095
|
-
export declare class
|
|
1620
|
+
export declare class Media extends BondBaseEntity {
|
|
1621
|
+
url: string;
|
|
2096
1622
|
name: string | null;
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
1623
|
+
title: string | null;
|
|
1624
|
+
mediaKey: string | null;
|
|
1625
|
+
description: string | null;
|
|
1626
|
+
provider: string | null;
|
|
1627
|
+
mediaType: number;
|
|
1628
|
+
fileType: string | null;
|
|
1629
|
+
isDefault: boolean | null;
|
|
1630
|
+
creatorId: number | null;
|
|
1631
|
+
creatorType: string | null;
|
|
1632
|
+
userCreatorId: number | null;
|
|
1633
|
+
ownerId: number | null;
|
|
1634
|
+
createdBy: number | null;
|
|
1635
|
+
users: User[];
|
|
1636
|
+
programs: Program[];
|
|
1637
|
+
memberships: Membership[];
|
|
2102
1638
|
}
|
|
2103
|
-
export declare class
|
|
1639
|
+
export declare class Membership extends OrganizationConnectionBaseEntity {
|
|
2104
1640
|
name: string;
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
1641
|
+
description?: string;
|
|
1642
|
+
mainMedia?: Media;
|
|
1643
|
+
customerTypes: CustomerInMembershipTypeEnum[];
|
|
1644
|
+
activity?: SportsEnum;
|
|
1645
|
+
facilityId?: number;
|
|
1646
|
+
facilityName?: string;
|
|
1647
|
+
questionnaires?: number[];
|
|
1648
|
+
minAgeYears?: number;
|
|
1649
|
+
maxAgeYears?: number;
|
|
1650
|
+
gender: GenderEnum;
|
|
1651
|
+
maxMembers?: number;
|
|
1652
|
+
maxMaleMembers?: number;
|
|
1653
|
+
maxFemaleMembers?: number;
|
|
1654
|
+
membershipType: MembershipTypeEnum;
|
|
1655
|
+
durationMonths?: number;
|
|
1656
|
+
startDate?: string;
|
|
1657
|
+
endDate?: string;
|
|
1658
|
+
registrationStartDate?: Date;
|
|
1659
|
+
registrationEndDate?: Date;
|
|
1660
|
+
package?: IPackageResponse;
|
|
1661
|
+
tags: any[];
|
|
1662
|
+
members: MembershipMember[];
|
|
1663
|
+
longDescription?: string;
|
|
1664
|
+
isAutoRenew?: boolean;
|
|
1665
|
+
purchasedResources: PurchasedResource[];
|
|
2113
1666
|
}
|
|
2114
1667
|
export declare class MembershipMember extends OrganizationConnectionBaseEntity {
|
|
2115
1668
|
membership: Membership;
|
|
@@ -2131,543 +1684,665 @@ export declare class MembershipMember extends OrganizationConnectionBaseEntity {
|
|
|
2131
1684
|
cancellationStatus?: CancellationStatusEnum;
|
|
2132
1685
|
isImported?: boolean;
|
|
2133
1686
|
}
|
|
2134
|
-
export declare class
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
productType: ProductTypesEnum;
|
|
2140
|
-
name: string;
|
|
2141
|
-
ordinal?: number;
|
|
2142
|
-
deletedAt?: Date;
|
|
2143
|
-
stationToSubcategories: StationToSubcategory[];
|
|
2144
|
-
stations: Station[];
|
|
2145
|
-
}
|
|
2146
|
-
export declare class Reservations extends OrganizationConnectionBaseEntity {
|
|
2147
|
-
name?: string;
|
|
2148
|
-
description?: string;
|
|
2149
|
-
color?: string;
|
|
2150
|
-
status?: string;
|
|
2151
|
-
privacySetting?: string;
|
|
2152
|
-
reservationType?: string;
|
|
2153
|
-
orderId?: string;
|
|
2154
|
-
customerId?: number;
|
|
2155
|
-
length?: number;
|
|
2156
|
-
price?: number;
|
|
2157
|
-
sessions?: number;
|
|
2158
|
-
percentage?: number;
|
|
2159
|
-
paymentStatus?: number;
|
|
2160
|
-
paymentId?: number;
|
|
2161
|
-
startTime?: string;
|
|
2162
|
-
dayOfWeek?: number;
|
|
2163
|
-
resourcePackageId?: number;
|
|
2164
|
-
resourcePackageAmount?: number;
|
|
2165
|
-
startDate?: Date;
|
|
2166
|
-
endDate?: Date;
|
|
2167
|
-
originalReservationId?: number;
|
|
2168
|
-
creatorId?: number;
|
|
2169
|
-
creatorType?: string;
|
|
2170
|
-
userCreatorId?: number;
|
|
2171
|
-
ownerId?: number;
|
|
2172
|
-
sportType?: number;
|
|
2173
|
-
participantType?: string;
|
|
2174
|
-
deletedAt?: Date;
|
|
2175
|
-
publicNotes?: string;
|
|
2176
|
-
slots?: Slot[];
|
|
2177
|
-
}
|
|
2178
|
-
export declare class RegistrationConstraint extends OrganizationConnectionBaseEntity {
|
|
2179
|
-
resourceType: ResourceNameTypeEnum;
|
|
2180
|
-
resourceId: number;
|
|
2181
|
-
openNumDays?: number;
|
|
2182
|
-
openNumMinutes?: number;
|
|
2183
|
-
openTime?: string;
|
|
2184
|
-
closeNumDays?: number;
|
|
2185
|
-
closeNumMinutes?: number;
|
|
2186
|
-
closeTime?: string;
|
|
2187
|
-
deletedAt?: Date;
|
|
1687
|
+
export declare class NotificationSubscriptions extends OrganizationConnectionBaseEntity {
|
|
1688
|
+
email: string | null;
|
|
1689
|
+
notificationType: NotificationTypeEnum | null;
|
|
1690
|
+
resourceId: number | null;
|
|
1691
|
+
resourceType: string | null;
|
|
2188
1692
|
}
|
|
2189
|
-
export declare class
|
|
2190
|
-
|
|
1693
|
+
export declare class OpeningTime extends OrganizationConnectionBaseEntity {
|
|
1694
|
+
id: number;
|
|
1695
|
+
dayOfWeek: number;
|
|
1696
|
+
open: string;
|
|
1697
|
+
close: string;
|
|
2191
1698
|
facilityId: number;
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
deletedAt?: Date;
|
|
2195
|
-
}
|
|
2196
|
-
export declare class SeasonDivisions extends BondBaseEntity {
|
|
2197
|
-
name: string | null;
|
|
2198
|
-
ordinal: number | null;
|
|
2199
|
-
seasonId: number | null;
|
|
2200
|
-
color: string | null;
|
|
2201
|
-
}
|
|
2202
|
-
export declare class SeasonTeam extends BondBaseEntity {
|
|
2203
|
-
seasonId: number | null;
|
|
2204
|
-
teamId: number | null;
|
|
2205
|
-
standingPosition: number | null;
|
|
2206
|
-
statistics: any | null;
|
|
2207
|
-
points: number | null;
|
|
2208
|
-
divisionId: number | null;
|
|
2209
|
-
metaData: any | null;
|
|
2210
|
-
team: Team;
|
|
2211
|
-
}
|
|
2212
|
-
export declare class UserInFamilyAccount extends BondBaseEntity {
|
|
2213
|
-
familyAccountId: number;
|
|
2214
|
-
userId: number;
|
|
2215
|
-
isAdmin: boolean;
|
|
2216
|
-
user: User;
|
|
2217
|
-
familyAccount: FamilyAccount;
|
|
2218
|
-
deletedAt?: Date;
|
|
2219
|
-
}
|
|
2220
|
-
export declare class TeamInvite extends BondBaseEntity {
|
|
2221
|
-
email: string;
|
|
2222
|
-
teamId: number;
|
|
2223
|
-
invitedUserId?: number;
|
|
2224
|
-
userCreatorId: number;
|
|
2225
|
-
token: string;
|
|
2226
|
-
tokenExpirationDate: Date;
|
|
2227
|
-
isUsed: boolean;
|
|
2228
|
-
}
|
|
2229
|
-
export declare class VariantTitle extends OrganizationConnectionBaseEntity {
|
|
2230
|
-
name: string;
|
|
2231
|
-
variants: Variant[];
|
|
2232
|
-
}
|
|
2233
|
-
export declare class StationToSubcategory extends OrganizationConnectionBaseEntity {
|
|
2234
|
-
stationId: number;
|
|
2235
|
-
subcategoryId: number;
|
|
2236
|
-
productType: ProductTypesEnum;
|
|
2237
|
-
deletedAt?: Date;
|
|
2238
|
-
station: Station;
|
|
2239
|
-
subcategory: Subcategory;
|
|
2240
|
-
}
|
|
2241
|
-
export declare class TeamMember extends BondBaseEntity {
|
|
2242
|
-
teamId: number | null;
|
|
2243
|
-
userId: number | null;
|
|
2244
|
-
paymentId: number | null;
|
|
2245
|
-
hasPaid: boolean | null;
|
|
2246
|
-
status: TeamMemberStatusEnum | null;
|
|
2247
|
-
role: TeamMemberRoleEnum;
|
|
2248
|
-
user: User;
|
|
2249
|
-
}
|
|
2250
|
-
export declare class UsersInGroup extends BondBaseEntity {
|
|
2251
|
-
groupId: number;
|
|
2252
|
-
userId: number;
|
|
2253
|
-
deletedAt?: Date;
|
|
2254
|
-
}
|
|
2255
|
-
export declare class Variant extends OrganizationConnectionBaseEntity {
|
|
2256
|
-
name: string;
|
|
2257
|
-
variantTitleId: number;
|
|
2258
|
-
variantTitle: VariantTitle;
|
|
1699
|
+
createdAt: Date;
|
|
1700
|
+
updatedAt: Date;
|
|
2259
1701
|
deletedAt?: Date;
|
|
1702
|
+
facility: Facility;
|
|
2260
1703
|
}
|
|
2261
|
-
export declare class
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
lastLogin: Date | null;
|
|
2283
|
-
lastInteractionDay: Date | null;
|
|
2284
|
-
createAsId: number | null;
|
|
2285
|
-
createAsType: ResourceNameTypeEnum | null;
|
|
2286
|
-
motto: string | null;
|
|
2287
|
-
privateProfile: boolean | null;
|
|
2288
|
-
allowMultiSignHack: boolean | null;
|
|
2289
|
-
deletedAt: Date | null;
|
|
2290
|
-
userInFamilyAccounts: UserInFamilyAccount[];
|
|
2291
|
-
athlete: Athlete;
|
|
2292
|
-
eventAttendees: EventAttendee[];
|
|
2293
|
-
seasonAttendees: SeasonAttendee[];
|
|
2294
|
-
linkedAccounts: LinkedAccounts[];
|
|
2295
|
-
profilePicture: Media;
|
|
2296
|
-
usersRoles: UserRole[];
|
|
1704
|
+
export declare class Order extends BondBaseEntity {
|
|
1705
|
+
orderId: string | null;
|
|
1706
|
+
price: number | null;
|
|
1707
|
+
status: OrderStatusEnum | null;
|
|
1708
|
+
sentForClientDate: Date | null;
|
|
1709
|
+
payingUserId?: number | null;
|
|
1710
|
+
orderToInvoices: OrderToInvoice[];
|
|
1711
|
+
lineItems: LineItems[];
|
|
1712
|
+
lineItemHistory: LineItemHistory[];
|
|
1713
|
+
paymentStatus: PaymentStatusEnum;
|
|
1714
|
+
paymentMethodId?: string;
|
|
1715
|
+
paymentType?: PaymentMethodTypeEnum;
|
|
1716
|
+
paidAmount: number;
|
|
1717
|
+
currency: CurrencyEnum;
|
|
1718
|
+
mainInvoiceId: number;
|
|
1719
|
+
isScheduled: boolean;
|
|
1720
|
+
isRefunded: boolean;
|
|
1721
|
+
isVoided: boolean;
|
|
1722
|
+
creatingUserId: number;
|
|
1723
|
+
shiftId: number;
|
|
1724
|
+
platform: PlatformsEnum;
|
|
2297
1725
|
orderNotes: OrderNote[];
|
|
2298
|
-
|
|
1726
|
+
slots: Slot[];
|
|
2299
1727
|
}
|
|
2300
|
-
export declare class
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
entityType: UserAuthorizationsTypeEnum;
|
|
1728
|
+
export declare class OrderNote extends OrganizationConnectionBaseEntity {
|
|
1729
|
+
content: string;
|
|
1730
|
+
creatingUserId: number;
|
|
2304
1731
|
user: User;
|
|
1732
|
+
isPublic: boolean;
|
|
1733
|
+
deletedAt: Date;
|
|
1734
|
+
orderId: number;
|
|
1735
|
+
order: Order;
|
|
2305
1736
|
}
|
|
2306
|
-
export declare class
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
}
|
|
2314
|
-
export interface IEntitlementTerms {
|
|
2315
|
-
type: EntitlementTermsTypesEnum;
|
|
2316
|
-
id?: number;
|
|
2317
|
-
value?: string;
|
|
2318
|
-
minValue?: string;
|
|
2319
|
-
maxValue?: string;
|
|
1737
|
+
export declare class OrderToInvoice extends BondBaseEntity {
|
|
1738
|
+
orderId: number;
|
|
1739
|
+
invoiceId: number;
|
|
1740
|
+
order: Order;
|
|
1741
|
+
invoice: Invoice;
|
|
1742
|
+
paidAmount?: number;
|
|
1743
|
+
currency: CurrencyEnum;
|
|
2320
1744
|
}
|
|
2321
|
-
export
|
|
2322
|
-
|
|
2323
|
-
value: string;
|
|
1745
|
+
export declare class OrganizationConnectionBaseEntity extends BondBaseEntity {
|
|
1746
|
+
organizationId: number;
|
|
2324
1747
|
}
|
|
2325
|
-
export
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
groupId: number;
|
|
2329
|
-
groupName?: string;
|
|
1748
|
+
export declare class PackageV1 extends BondBaseEntity {
|
|
1749
|
+
name?: string;
|
|
1750
|
+
description?: string;
|
|
2330
1751
|
price: number;
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
export interface IResourcesAvailability {
|
|
2334
|
-
resourceType: ResourceNameTypeEnum;
|
|
1752
|
+
status: string;
|
|
1753
|
+
percentage: number;
|
|
2335
1754
|
quantity: number;
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
1755
|
+
duration: number;
|
|
1756
|
+
organizationId: number;
|
|
1757
|
+
creatorId: number;
|
|
1758
|
+
creatorType: string;
|
|
1759
|
+
userCreatorId: number;
|
|
1760
|
+
ownerId: number;
|
|
1761
|
+
addon: boolean;
|
|
1762
|
+
isMandatory: boolean;
|
|
1763
|
+
productId: number;
|
|
2343
1764
|
}
|
|
2344
|
-
export
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
1765
|
+
export declare class PasswordReset extends BondBaseEntity {
|
|
1766
|
+
token: string | null;
|
|
1767
|
+
userId: number | null;
|
|
1768
|
+
validUntil: Date | null;
|
|
1769
|
+
active: boolean | null;
|
|
2348
1770
|
}
|
|
2349
|
-
export
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
1771
|
+
export declare class PaymentV1 extends BondBaseEntity {
|
|
1772
|
+
userId: number | null;
|
|
1773
|
+
ownerId: number | null;
|
|
1774
|
+
parentId: number | null;
|
|
1775
|
+
parentType: string | null;
|
|
1776
|
+
idAtProvider: string | null;
|
|
1777
|
+
providerType: number | null;
|
|
1778
|
+
providerExtraData: string | null;
|
|
1779
|
+
requestData: string | null;
|
|
1780
|
+
responseData: string | null;
|
|
1781
|
+
status: number | null;
|
|
1782
|
+
price: number | null;
|
|
1783
|
+
currency: string | null;
|
|
1784
|
+
locked: boolean | null;
|
|
1785
|
+
numberOfTries: number | null;
|
|
1786
|
+
installmentId: number | null;
|
|
1787
|
+
orderId: string | null;
|
|
2356
1788
|
}
|
|
2357
|
-
export
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
userBirthDate: Date;
|
|
2363
|
-
userProfilePicUrl: string;
|
|
2364
|
-
customerId: number;
|
|
2365
|
-
customerEmail: string;
|
|
2366
|
-
paymentStatus: string;
|
|
2367
|
-
productName: string;
|
|
2368
|
-
punchCard: boolean;
|
|
1789
|
+
export declare class PaymentPlanSchedule extends OrganizationConnectionBaseEntity {
|
|
1790
|
+
paymentPlanId: number;
|
|
1791
|
+
paymentDate: Date;
|
|
1792
|
+
deletedAt?: Date;
|
|
1793
|
+
paymentPlan: ProductPaymentPlan;
|
|
2369
1794
|
}
|
|
2370
|
-
export declare class
|
|
2371
|
-
|
|
2372
|
-
|
|
1795
|
+
export declare class Price extends OrganizationConnectionBaseEntity {
|
|
1796
|
+
productId: number;
|
|
1797
|
+
product: Product;
|
|
1798
|
+
name: string | null;
|
|
1799
|
+
price: number;
|
|
1800
|
+
currency: CurrencyEnum;
|
|
1801
|
+
paymentProcessorId: number | null;
|
|
1802
|
+
startDate: Date;
|
|
1803
|
+
endDate: Date;
|
|
1804
|
+
groupId?: number;
|
|
1805
|
+
groupName?: string;
|
|
1806
|
+
originalPrice?: number;
|
|
1807
|
+
deletedAt?: Date;
|
|
1808
|
+
discountMethod?: DiscountMethodsEnum;
|
|
1809
|
+
discountValue?: number;
|
|
2373
1810
|
}
|
|
2374
|
-
export declare class
|
|
2375
|
-
|
|
2376
|
-
|
|
1811
|
+
export declare class Product extends OrganizationConnectionBaseEntity {
|
|
1812
|
+
name: string;
|
|
1813
|
+
quantity: number;
|
|
1814
|
+
paymentProcessorId?: string;
|
|
1815
|
+
startDate?: Date;
|
|
1816
|
+
endDate?: Date;
|
|
1817
|
+
isPublic: boolean;
|
|
1818
|
+
productType?: ProductTypesEnum;
|
|
1819
|
+
GL?: string;
|
|
1820
|
+
downpayment?: number;
|
|
1821
|
+
description?: string;
|
|
1822
|
+
prices: Price[];
|
|
1823
|
+
currPrice: Price;
|
|
1824
|
+
productSubType?: ProductSubTypesEnum;
|
|
1825
|
+
punchCard: boolean;
|
|
1826
|
+
requiredProductIds?: number[];
|
|
1827
|
+
lineItems: LineItems[];
|
|
1828
|
+
resources: IResourcesAvailability[];
|
|
1829
|
+
variantParentId?: number;
|
|
1830
|
+
isAddon: boolean;
|
|
1831
|
+
isArchive: boolean;
|
|
1832
|
+
productVariants: Product[];
|
|
1833
|
+
variantParentProduct: Product;
|
|
1834
|
+
variantsObj: Variant[];
|
|
1835
|
+
variantTitlesObj: VariantTitle[];
|
|
1836
|
+
timePeriod?: AddonTimePeriodEnum;
|
|
1837
|
+
deletedAt?: Date;
|
|
1838
|
+
productsUsers: ProductsUsers[];
|
|
1839
|
+
isProRated: boolean;
|
|
1840
|
+
entitledPrices?: GroupItemsPricing[];
|
|
1841
|
+
defaultPriceId?: number;
|
|
1842
|
+
tax: number;
|
|
1843
|
+
isTaxInclusive: boolean;
|
|
1844
|
+
defaultPrice?: Price;
|
|
1845
|
+
addOns?: IChildProduct[];
|
|
1846
|
+
productPaymentPlan?: ProductPaymentPlan;
|
|
1847
|
+
productResources: ProductResource[];
|
|
1848
|
+
parentProductPackages: ProductPackage[];
|
|
1849
|
+
childProductPackages: ProductPackage[];
|
|
1850
|
+
sports?: number[] | null;
|
|
1851
|
+
durationMinutes?: number;
|
|
1852
|
+
durationDays?: number;
|
|
1853
|
+
forms?: number[] | null;
|
|
1854
|
+
isForAllCustomers?: boolean;
|
|
1855
|
+
productsReservedForCustomers: ProductsReservedForCustomers[];
|
|
1856
|
+
reservedForCustomers: Customer[];
|
|
1857
|
+
reservedForMemberships: Membership[];
|
|
1858
|
+
activityTimes: ActivityTimes[];
|
|
1859
|
+
purchasedResources: PurchasedResource[];
|
|
2377
1860
|
}
|
|
2378
|
-
export
|
|
2379
|
-
|
|
1861
|
+
export declare class ProductPackage extends OrganizationConnectionBaseEntity {
|
|
1862
|
+
parentProductId: number;
|
|
1863
|
+
childProductId: number;
|
|
1864
|
+
relationType: PackageProductsRelationTypeEnum;
|
|
1865
|
+
timePeriod: AddonTimePeriodEnum;
|
|
1866
|
+
deletedAt?: Date;
|
|
1867
|
+
productResource: ProductResource;
|
|
1868
|
+
childProduct: Product;
|
|
1869
|
+
parentProduct: Product;
|
|
1870
|
+
price: number;
|
|
1871
|
+
isFlatPrice: boolean;
|
|
1872
|
+
durationMinutes?: number;
|
|
1873
|
+
durationDays?: number;
|
|
1874
|
+
level?: ProductPackageLevelEnum;
|
|
2380
1875
|
}
|
|
2381
|
-
export
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
1876
|
+
export declare class ProductPaymentPlan extends OrganizationConnectionBaseEntity {
|
|
1877
|
+
productId: number;
|
|
1878
|
+
maxMonths?: number;
|
|
1879
|
+
dayOfMonth?: number;
|
|
1880
|
+
name: string;
|
|
1881
|
+
deletedAt?: Date;
|
|
1882
|
+
schedule: PaymentPlanSchedule[];
|
|
1883
|
+
product?: Product;
|
|
2386
1884
|
}
|
|
2387
|
-
export
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
1885
|
+
export declare class ProductResource extends OrganizationConnectionBaseEntity {
|
|
1886
|
+
productId: number;
|
|
1887
|
+
resourceId: number;
|
|
1888
|
+
resourceType: ResourceNameTypeEnum;
|
|
1889
|
+
deletedAt?: Date;
|
|
1890
|
+
programSeason: ProgramSeason;
|
|
1891
|
+
event: Event;
|
|
1892
|
+
product: Product;
|
|
1893
|
+
productPackages: ProductPackage[];
|
|
1894
|
+
resourceName?: string;
|
|
2391
1895
|
}
|
|
2392
|
-
export
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
paymentMethod: PaymentMethodTypeEnum;
|
|
2396
|
-
status: PaymentStatusEnum;
|
|
2397
|
-
createdAt: Date;
|
|
2398
|
-
invoices: number[];
|
|
1896
|
+
export declare class ProductToVariantTitle extends OrganizationConnectionBaseEntity {
|
|
1897
|
+
productId: number;
|
|
1898
|
+
variantTitleId: number;
|
|
2399
1899
|
}
|
|
2400
|
-
export
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
};
|
|
2407
|
-
data: T[];
|
|
1900
|
+
export declare class ProductsReservedForCustomers extends OrganizationConnectionBaseEntity {
|
|
1901
|
+
productId: number;
|
|
1902
|
+
customerId: number;
|
|
1903
|
+
customer: Customer;
|
|
1904
|
+
deletedAt?: Date;
|
|
1905
|
+
product: Product;
|
|
2408
1906
|
}
|
|
2409
|
-
export
|
|
1907
|
+
export declare class ProductsUsers extends OrganizationConnectionBaseEntity {
|
|
2410
1908
|
productId: number;
|
|
2411
1909
|
userId: number;
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
ccBrand?: string;
|
|
1910
|
+
user?: User;
|
|
1911
|
+
paymentStatus: PaymentStatusEnum;
|
|
1912
|
+
productName: string;
|
|
1913
|
+
productPrice: number;
|
|
1914
|
+
productQuantity: number;
|
|
1915
|
+
productQuantityLeft: number;
|
|
1916
|
+
productPriceCurrency: CurrencyEnum;
|
|
1917
|
+
ordinal?: number;
|
|
1918
|
+
purchasedResources: PurchasedResource[];
|
|
1919
|
+
product: Product;
|
|
1920
|
+
lineItem: LineItems;
|
|
1921
|
+
slots?: Slot[];
|
|
1922
|
+
addons?: Addon[];
|
|
2426
1923
|
}
|
|
2427
|
-
export
|
|
2428
|
-
|
|
2429
|
-
|
|
1924
|
+
export declare class Program extends BondBaseEntity {
|
|
1925
|
+
type: ProgramTypesEnum;
|
|
1926
|
+
name: string;
|
|
1927
|
+
sport: SportsEnum;
|
|
1928
|
+
minAge: string;
|
|
1929
|
+
maxAge: string;
|
|
1930
|
+
gender: GenderEnum;
|
|
1931
|
+
level: LevelOfPlayEnum[] | null;
|
|
1932
|
+
description: string | null;
|
|
1933
|
+
GL?: string | null;
|
|
1934
|
+
status: PublishingStatusEnum;
|
|
1935
|
+
mainMedia: Media;
|
|
1936
|
+
organizationId: number;
|
|
1937
|
+
userCreatorId: number;
|
|
1938
|
+
programHighlights: ProgramHighlights[];
|
|
1939
|
+
linkSEO: string;
|
|
1940
|
+
longDescription?: string;
|
|
1941
|
+
requiredProductIds: number[] | null;
|
|
1942
|
+
deletedAt?: Date;
|
|
1943
|
+
programSeason: ProgramSeason[];
|
|
1944
|
+
purchasedResources: PurchasedResource[];
|
|
2430
1945
|
}
|
|
2431
|
-
export
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
1946
|
+
export declare class ProgramHighlights extends BondBaseEntity {
|
|
1947
|
+
type: ProgramHighlightTypeEnum;
|
|
1948
|
+
ordinal: number | null;
|
|
1949
|
+
title: string | null;
|
|
1950
|
+
data: any | null;
|
|
1951
|
+
program: Program;
|
|
1952
|
+
deletedAt?: Date;
|
|
2435
1953
|
}
|
|
2436
|
-
export
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
endTime: string;
|
|
1954
|
+
export declare class ProductToVariant extends OrganizationConnectionBaseEntity {
|
|
1955
|
+
productId: number;
|
|
1956
|
+
variantId: number;
|
|
2440
1957
|
}
|
|
2441
|
-
export
|
|
1958
|
+
export declare class ProgramSeason extends BondBaseEntity {
|
|
1959
|
+
programId: number;
|
|
2442
1960
|
name: string;
|
|
1961
|
+
description: string | null;
|
|
1962
|
+
GL?: string | null;
|
|
1963
|
+
status: PublishingStatusEnum;
|
|
2443
1964
|
startDate: Date;
|
|
2444
1965
|
endDate: Date;
|
|
1966
|
+
registrationStartDate: Date | null;
|
|
1967
|
+
registrationEndDate: Date | null;
|
|
1968
|
+
questionnaires: number[] | null;
|
|
1969
|
+
seasonType: ProgramSeasonTypesEnum;
|
|
1970
|
+
parentSeasonId: number | null;
|
|
1971
|
+
maxParticipants: number | null;
|
|
1972
|
+
maxMaleParticipants: number | null;
|
|
1973
|
+
maxFemaleParticipants: number | null;
|
|
1974
|
+
maxWaitlist: number | null;
|
|
1975
|
+
maxMaleWaitlist: number | null;
|
|
1976
|
+
maxFemaleWaitlist: number | null;
|
|
1977
|
+
organizationId: number;
|
|
1978
|
+
facilityId: number | null;
|
|
1979
|
+
facilityName?: string;
|
|
1980
|
+
addressId: number | null;
|
|
1981
|
+
sport: SportsEnum;
|
|
1982
|
+
minAge: string;
|
|
1983
|
+
maxAge: string;
|
|
1984
|
+
gender: GenderEnum;
|
|
1985
|
+
level: LevelOfPlayEnum[] | null;
|
|
1986
|
+
blockedDated: BlockedDate[];
|
|
1987
|
+
seasonAttendees: SeasonAttendee[];
|
|
1988
|
+
products: Product[];
|
|
1989
|
+
linkSEO: string;
|
|
1990
|
+
address: Address;
|
|
1991
|
+
defaultProductId?: number;
|
|
1992
|
+
longDescription?: string;
|
|
1993
|
+
isPunchCard?: boolean;
|
|
1994
|
+
deletedAt?: Date;
|
|
1995
|
+
segments?: (SeasonAsSeasonSegment | EventAsSeasonSegment)[];
|
|
1996
|
+
program: Program;
|
|
1997
|
+
spaces?: Resource[];
|
|
1998
|
+
earlyRegistrationStartDate?: Date;
|
|
1999
|
+
earlyRegistrationEndDate?: Date;
|
|
2000
|
+
lateRegistrationStartDate?: Date;
|
|
2001
|
+
lateRegistrationEndDate?: Date;
|
|
2002
|
+
requiredProductIds?: number[];
|
|
2003
|
+
registrationConstraints?: RegistrationConstraint;
|
|
2004
|
+
sessionSegments: ProgramSeason[];
|
|
2005
|
+
sessionEvents: Event[];
|
|
2006
|
+
parentSession: ProgramSeason;
|
|
2007
|
+
activityTimes: ActivityTimes[];
|
|
2008
|
+
productResources: ProductResource[];
|
|
2009
|
+
facility: Facility;
|
|
2010
|
+
purchasedResources: PurchasedResource[];
|
|
2445
2011
|
}
|
|
2446
|
-
export
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2012
|
+
export declare class PurchasedResource extends OrganizationConnectionBaseEntity {
|
|
2013
|
+
productUserId: number;
|
|
2014
|
+
resourceId: number;
|
|
2015
|
+
resourceType: ResourceNameTypeEnum;
|
|
2016
|
+
status: PurchasedResourceStatusEnum;
|
|
2017
|
+
startDate?: string;
|
|
2018
|
+
startTime?: string;
|
|
2019
|
+
endDate?: string;
|
|
2020
|
+
endTime?: string;
|
|
2021
|
+
productUser?: ProductsUsers;
|
|
2022
|
+
lineItem?: LineItems;
|
|
2023
|
+
eventAttendee?: EventAttendee;
|
|
2024
|
+
seasonAttendee?: SeasonAttendee;
|
|
2025
|
+
leagueAttendee?: SeasonPool;
|
|
2026
|
+
membership?: Membership;
|
|
2027
|
+
program?: Program;
|
|
2028
|
+
programSeason?: ProgramSeason;
|
|
2029
|
+
leagueSeason?: LeagueSeason;
|
|
2030
|
+
space?: Resource;
|
|
2031
|
+
product?: Product;
|
|
2032
|
+
event?: Event;
|
|
2464
2033
|
}
|
|
2465
|
-
export
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
familyid: number;
|
|
2469
|
-
order_id: number;
|
|
2034
|
+
export declare class Questionnaires extends OrganizationConnectionBaseEntity {
|
|
2035
|
+
title: string | null;
|
|
2036
|
+
answerTitle: AnswerTitle;
|
|
2470
2037
|
}
|
|
2471
|
-
export
|
|
2472
|
-
|
|
2038
|
+
export declare class Questions extends BondBaseEntity {
|
|
2039
|
+
questionType: string | null;
|
|
2040
|
+
ordinal: number | null;
|
|
2041
|
+
pageOrdinal: number | null;
|
|
2042
|
+
isActive: boolean | null;
|
|
2043
|
+
isMandatory: boolean | null;
|
|
2044
|
+
metaData: any | null;
|
|
2045
|
+
question: string | null;
|
|
2046
|
+
creatorId: number | null;
|
|
2047
|
+
creatorType: string | null;
|
|
2048
|
+
userCreatorId: number | null;
|
|
2049
|
+
ownerId: number | null;
|
|
2050
|
+
questionnaireId: number | null;
|
|
2051
|
+
}
|
|
2052
|
+
export declare class RefundReason extends OrganizationConnectionBaseEntity {
|
|
2053
|
+
reason: string;
|
|
2054
|
+
ordinal: number;
|
|
2055
|
+
deletedAt: Date;
|
|
2056
|
+
}
|
|
2057
|
+
export declare class RegistrationConstraint extends OrganizationConnectionBaseEntity {
|
|
2473
2058
|
resourceType: ResourceNameTypeEnum;
|
|
2059
|
+
resourceId: number;
|
|
2474
2060
|
openNumDays?: number;
|
|
2475
2061
|
openNumMinutes?: number;
|
|
2476
2062
|
openTime?: string;
|
|
2477
2063
|
closeNumDays?: number;
|
|
2478
2064
|
closeNumMinutes?: number;
|
|
2479
2065
|
closeTime?: string;
|
|
2480
|
-
|
|
2066
|
+
deletedAt?: Date;
|
|
2067
|
+
}
|
|
2068
|
+
export declare class Reservations extends OrganizationConnectionBaseEntity {
|
|
2069
|
+
name?: string;
|
|
2070
|
+
description?: string;
|
|
2071
|
+
color?: string;
|
|
2072
|
+
status?: string;
|
|
2073
|
+
privacySetting?: string;
|
|
2074
|
+
reservationType?: string;
|
|
2075
|
+
orderId?: string;
|
|
2076
|
+
customerId?: number;
|
|
2077
|
+
length?: number;
|
|
2078
|
+
price?: number;
|
|
2079
|
+
sessions?: number;
|
|
2080
|
+
percentage?: number;
|
|
2081
|
+
paymentStatus?: number;
|
|
2082
|
+
paymentId?: number;
|
|
2083
|
+
startTime?: string;
|
|
2084
|
+
dayOfWeek?: number;
|
|
2085
|
+
resourcePackageId?: number;
|
|
2086
|
+
resourcePackageAmount?: number;
|
|
2087
|
+
startDate?: Date;
|
|
2088
|
+
endDate?: Date;
|
|
2089
|
+
originalReservationId?: number;
|
|
2090
|
+
creatorId?: number;
|
|
2091
|
+
creatorType?: string;
|
|
2092
|
+
userCreatorId?: number;
|
|
2093
|
+
ownerId?: number;
|
|
2094
|
+
sportType?: number;
|
|
2095
|
+
participantType?: string;
|
|
2096
|
+
deletedAt?: Date;
|
|
2097
|
+
publicNotes?: string;
|
|
2098
|
+
slots?: Slot[];
|
|
2099
|
+
}
|
|
2100
|
+
export declare class Resource extends OrganizationConnectionBaseEntity {
|
|
2101
|
+
name: string;
|
|
2102
|
+
resourceType: ResourceTypeEnum;
|
|
2103
|
+
resourceSubType: ResourceSubTypeEnum;
|
|
2104
|
+
description?: string;
|
|
2105
|
+
longDescription?: string;
|
|
2106
|
+
surface?: SurfacesEnum;
|
|
2107
|
+
properties?: SpacePropertiesEnum[];
|
|
2108
|
+
mainMediaId?: number;
|
|
2109
|
+
mainMedia: Media;
|
|
2110
|
+
sports: SportsEnum[];
|
|
2111
|
+
width?: number;
|
|
2112
|
+
length?: number;
|
|
2113
|
+
amenities?: AmenitiesEnum[];
|
|
2114
|
+
parentSpaceId?: number;
|
|
2115
|
+
ordinal?: number;
|
|
2116
|
+
isAddOn: boolean;
|
|
2117
|
+
ages?: ResourceAgesEnum;
|
|
2118
|
+
deletedAt?: Date;
|
|
2119
|
+
activityTimes: ActivityTimes[];
|
|
2120
|
+
facilities: Facility[];
|
|
2121
|
+
slots?: Slot[];
|
|
2122
|
+
addons?: Addon[];
|
|
2123
|
+
facilityId: number;
|
|
2124
|
+
facility: Facility;
|
|
2125
|
+
purchasedResources: PurchasedResource[];
|
|
2126
|
+
linkSEO: string;
|
|
2127
|
+
}
|
|
2128
|
+
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2129
|
+
name: string;
|
|
2130
|
+
facilityId: number;
|
|
2131
|
+
parentSlotId: number;
|
|
2132
|
+
childrenSlotIds: number[];
|
|
2133
|
+
deletedAt?: Date;
|
|
2481
2134
|
}
|
|
2482
|
-
export
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2135
|
+
export declare class School extends BondBaseEntity {
|
|
2136
|
+
name: string | null;
|
|
2137
|
+
alias: string[] | null;
|
|
2138
|
+
addressId: number | null;
|
|
2139
|
+
website: string | null;
|
|
2140
|
+
phone: string | null;
|
|
2141
|
+
dataId: number | null;
|
|
2486
2142
|
}
|
|
2487
|
-
export
|
|
2488
|
-
|
|
2489
|
-
|
|
2143
|
+
export declare class SeasonAttendee extends BondBaseEntity {
|
|
2144
|
+
status: RequestStatusEnum;
|
|
2145
|
+
paymentStatus: PaymentStatusEnum;
|
|
2146
|
+
paymentId?: number;
|
|
2147
|
+
productId?: number;
|
|
2148
|
+
attendeeId: number;
|
|
2149
|
+
attendee: User;
|
|
2150
|
+
seasonId: number;
|
|
2151
|
+
season: ProgramSeason;
|
|
2152
|
+
productUserId?: number;
|
|
2153
|
+
answerTitleIds?: number[];
|
|
2154
|
+
deletedAt?: Date;
|
|
2155
|
+
purchasedResource: PurchasedResource;
|
|
2490
2156
|
}
|
|
2491
|
-
export
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
parentSessionName?: string;
|
|
2497
|
-
organizationName: string;
|
|
2498
|
-
programName: string;
|
|
2157
|
+
export declare class SeasonDivisions extends BondBaseEntity {
|
|
2158
|
+
name: string | null;
|
|
2159
|
+
ordinal: number | null;
|
|
2160
|
+
seasonId: number | null;
|
|
2161
|
+
color: string | null;
|
|
2499
2162
|
}
|
|
2500
|
-
export
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
spaceId: number;
|
|
2515
|
-
spaceName: string;
|
|
2516
|
-
}[];
|
|
2517
|
-
status?: RegistrationValidationStatusEnum;
|
|
2163
|
+
export declare class SeasonPool extends BondBaseEntity {
|
|
2164
|
+
seasonId?: number;
|
|
2165
|
+
userId?: number;
|
|
2166
|
+
status?: number;
|
|
2167
|
+
entityId?: number;
|
|
2168
|
+
entityType?: string;
|
|
2169
|
+
groupId?: string;
|
|
2170
|
+
paymentStatus?: PaymentStatusV1Enum;
|
|
2171
|
+
metadata?: any;
|
|
2172
|
+
paymentId?: number;
|
|
2173
|
+
externalAssign?: boolean;
|
|
2174
|
+
productUserId?: number;
|
|
2175
|
+
purchasedResource: PurchasedResource;
|
|
2176
|
+
season: LeagueSeason;
|
|
2518
2177
|
}
|
|
2519
|
-
export
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2178
|
+
export declare class SeasonTeam extends BondBaseEntity {
|
|
2179
|
+
seasonId: number | null;
|
|
2180
|
+
teamId: number | null;
|
|
2181
|
+
standingPosition: number | null;
|
|
2182
|
+
statistics: any | null;
|
|
2183
|
+
points: number | null;
|
|
2184
|
+
divisionId: number | null;
|
|
2185
|
+
metaData: any | null;
|
|
2186
|
+
team: Team;
|
|
2523
2187
|
}
|
|
2524
|
-
export
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
slots: ISlotReservationData[];
|
|
2188
|
+
export declare class SpacesDependency extends BondBaseEntity {
|
|
2189
|
+
blockingSpaceId: number;
|
|
2190
|
+
blockedSpaceId: number;
|
|
2528
2191
|
}
|
|
2529
|
-
export
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
slotId: number;
|
|
2540
|
-
eventId: number;
|
|
2192
|
+
export declare class Station extends OrganizationConnectionBaseEntity {
|
|
2193
|
+
name: string;
|
|
2194
|
+
facilityId: number;
|
|
2195
|
+
processorTerminalId: string | null;
|
|
2196
|
+
terminaLabel: string | null;
|
|
2197
|
+
processorSerialNumber: string | null;
|
|
2198
|
+
currentOpenShift?: Shift;
|
|
2199
|
+
stationToSubcategories: StationToSubcategory[];
|
|
2200
|
+
subcategories: Subcategory[];
|
|
2201
|
+
shifts?: Shift[];
|
|
2541
2202
|
}
|
|
2542
|
-
export
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
isPunchCard: boolean;
|
|
2203
|
+
export declare class StationToSubcategory extends OrganizationConnectionBaseEntity {
|
|
2204
|
+
stationId: number;
|
|
2205
|
+
subcategoryId: number;
|
|
2206
|
+
productType: ProductTypesEnum;
|
|
2207
|
+
deletedAt?: Date;
|
|
2208
|
+
station: Station;
|
|
2209
|
+
subcategory: Subcategory;
|
|
2550
2210
|
}
|
|
2551
|
-
export
|
|
2552
|
-
|
|
2211
|
+
export declare class Subcategory extends OrganizationConnectionBaseEntity {
|
|
2212
|
+
productType: ProductTypesEnum;
|
|
2553
2213
|
name: string;
|
|
2554
|
-
|
|
2214
|
+
ordinal?: number;
|
|
2215
|
+
deletedAt?: Date;
|
|
2216
|
+
stationToSubcategories: StationToSubcategory[];
|
|
2217
|
+
stations: Station[];
|
|
2555
2218
|
}
|
|
2556
|
-
export
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2219
|
+
export declare class Team extends BondBaseEntity {
|
|
2220
|
+
name: string | null;
|
|
2221
|
+
description: string | null;
|
|
2222
|
+
status: number | null;
|
|
2223
|
+
capacity: number | null;
|
|
2224
|
+
allowNewMembers: boolean | null;
|
|
2225
|
+
membersCanInvite: boolean | null;
|
|
2226
|
+
inviteOnly: boolean | null;
|
|
2227
|
+
logoId: number | null;
|
|
2228
|
+
addressId: number | null;
|
|
2229
|
+
price: number | null;
|
|
2230
|
+
private: boolean | null;
|
|
2231
|
+
returnOverride: boolean | null;
|
|
2232
|
+
organizationId: number | null;
|
|
2233
|
+
whoCanJoin: TeamCanJoinEnum | null;
|
|
2234
|
+
whoCanInvite: string | null;
|
|
2235
|
+
metadata: any | null;
|
|
2236
|
+
externalId: string | null;
|
|
2237
|
+
paymentSettings: any | null;
|
|
2238
|
+
isClaimed: boolean | null;
|
|
2239
|
+
creatorId: number | null;
|
|
2240
|
+
creatorType: string | null;
|
|
2241
|
+
userCreatorId: number | null;
|
|
2242
|
+
ownerId: number | null;
|
|
2243
|
+
mainMediaId: number | null;
|
|
2244
|
+
publishedDate: Date | null;
|
|
2245
|
+
isPublished: boolean | null;
|
|
2246
|
+
levelOfPlay: number[] | null;
|
|
2247
|
+
sports: number | null;
|
|
2248
|
+
minAge: number | null;
|
|
2249
|
+
maxAge: number | null;
|
|
2250
|
+
gender: number | null;
|
|
2251
|
+
questionnaireId: number | null;
|
|
2569
2252
|
}
|
|
2570
|
-
export
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
pUserProductId: number;
|
|
2579
|
-
pUserProductName: string;
|
|
2580
|
-
pUserProductPrice: number;
|
|
2581
|
-
pUserProductPriceCurrency: string;
|
|
2582
|
-
pUserProductQuantity: number;
|
|
2583
|
-
pUserProductQuantityLeft: number;
|
|
2584
|
-
pUserUserId: number;
|
|
2253
|
+
export declare class TeamInvite extends BondBaseEntity {
|
|
2254
|
+
email: string;
|
|
2255
|
+
teamId: number;
|
|
2256
|
+
invitedUserId?: number;
|
|
2257
|
+
userCreatorId: number;
|
|
2258
|
+
token: string;
|
|
2259
|
+
tokenExpirationDate: Date;
|
|
2260
|
+
isUsed: boolean;
|
|
2585
2261
|
}
|
|
2586
|
-
export
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
sessionName: string;
|
|
2595
|
-
productId: number;
|
|
2596
|
-
productName: string;
|
|
2597
|
-
productUserId: number;
|
|
2598
|
-
purchaseDate: Date;
|
|
2599
|
-
passesLeft: number;
|
|
2262
|
+
export declare class TeamMember extends BondBaseEntity {
|
|
2263
|
+
teamId: number | null;
|
|
2264
|
+
userId: number | null;
|
|
2265
|
+
paymentId: number | null;
|
|
2266
|
+
hasPaid: boolean | null;
|
|
2267
|
+
status: TeamMemberStatusEnum | null;
|
|
2268
|
+
role: TeamMemberRoleEnum;
|
|
2269
|
+
user: User;
|
|
2600
2270
|
}
|
|
2601
|
-
export
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2271
|
+
export declare class User extends BondBaseEntity {
|
|
2272
|
+
firstName: string | null;
|
|
2273
|
+
lastName: string | null;
|
|
2274
|
+
email: string | null;
|
|
2275
|
+
phoneNumber: string | null;
|
|
2276
|
+
about: string | null;
|
|
2277
|
+
password: string | null;
|
|
2278
|
+
passwordResetToken: string | null;
|
|
2279
|
+
passwordResetExpires: Date | null;
|
|
2280
|
+
status: string | null;
|
|
2281
|
+
pushNotifications: boolean | null;
|
|
2282
|
+
notificationSettings: any | null;
|
|
2283
|
+
addressId: number | null;
|
|
2284
|
+
address: Address;
|
|
2285
|
+
currentAddressId: number | null;
|
|
2286
|
+
merchantId: number | null;
|
|
2287
|
+
loginToken: string | null;
|
|
2288
|
+
gender: GenderEnum | null;
|
|
2289
|
+
height: number | null;
|
|
2290
|
+
weight: number | null;
|
|
2291
|
+
birthDate: Date | null;
|
|
2292
|
+
lastLogin: Date | null;
|
|
2293
|
+
lastInteractionDay: Date | null;
|
|
2294
|
+
createAsId: number | null;
|
|
2295
|
+
createAsType: ResourceNameTypeEnum | null;
|
|
2296
|
+
motto: string | null;
|
|
2297
|
+
privateProfile: boolean | null;
|
|
2298
|
+
allowMultiSignHack: boolean | null;
|
|
2299
|
+
deletedAt: Date | null;
|
|
2300
|
+
userInFamilyAccounts: UserInFamilyAccount[];
|
|
2301
|
+
athlete: Athlete;
|
|
2302
|
+
eventAttendees: EventAttendee[];
|
|
2303
|
+
seasonAttendees: SeasonAttendee[];
|
|
2304
|
+
linkedAccounts: LinkedAccounts[];
|
|
2305
|
+
profilePicture: Media;
|
|
2306
|
+
usersRoles: UserRole[];
|
|
2307
|
+
orderNotes: OrderNote[];
|
|
2308
|
+
invoiceNotes: InvoiceNote[];
|
|
2620
2309
|
}
|
|
2621
|
-
export
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2310
|
+
export declare class UserAuthorizations extends BondBaseEntity {
|
|
2311
|
+
entityId: number | null;
|
|
2312
|
+
userId: number | null;
|
|
2313
|
+
entityType: UserAuthorizationsTypeEnum;
|
|
2314
|
+
user: User;
|
|
2626
2315
|
}
|
|
2627
|
-
export
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
levelOfPlay: LevelOfPlayEnum[];
|
|
2635
|
-
registrationConstraints: IResourceRegistrationData[];
|
|
2316
|
+
export declare class UserInFamilyAccount extends BondBaseEntity {
|
|
2317
|
+
familyAccountId: number;
|
|
2318
|
+
userId: number;
|
|
2319
|
+
isAdmin: boolean;
|
|
2320
|
+
user: User;
|
|
2321
|
+
familyAccount: FamilyAccount;
|
|
2322
|
+
deletedAt?: Date;
|
|
2636
2323
|
}
|
|
2637
|
-
export
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
name: string;
|
|
2642
|
-
productType?: ProductTypesEnum;
|
|
2643
|
-
productSubType?: string;
|
|
2644
|
-
}[];
|
|
2324
|
+
export declare class UsersInGroup extends BondBaseEntity {
|
|
2325
|
+
groupId: number;
|
|
2326
|
+
userId: number;
|
|
2327
|
+
deletedAt?: Date;
|
|
2645
2328
|
}
|
|
2646
|
-
export
|
|
2647
|
-
id: number;
|
|
2329
|
+
export declare class VariantTitle extends OrganizationConnectionBaseEntity {
|
|
2648
2330
|
name: string;
|
|
2649
|
-
|
|
2650
|
-
endDate?: Date;
|
|
2651
|
-
downpayment?: number;
|
|
2652
|
-
description?: string;
|
|
2653
|
-
prices: Price[];
|
|
2654
|
-
productSubType?: ProductSubTypesEnum;
|
|
2655
|
-
punchCard: boolean;
|
|
2656
|
-
isAddon: boolean;
|
|
2657
|
-
defaultPriceId?: number;
|
|
2331
|
+
variants: Variant[];
|
|
2658
2332
|
}
|
|
2659
|
-
export
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2333
|
+
export declare class Variant extends OrganizationConnectionBaseEntity {
|
|
2334
|
+
name: string;
|
|
2335
|
+
variantTitleId: number;
|
|
2336
|
+
variantTitle: VariantTitle;
|
|
2337
|
+
deletedAt?: Date;
|
|
2663
2338
|
}
|
|
2664
|
-
export
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2339
|
+
export declare class WebflowOrganizationConfiguration extends OrganizationConnectionBaseEntity {
|
|
2340
|
+
projectToken: string;
|
|
2341
|
+
programTypesCollectionId?: string;
|
|
2342
|
+
programTagsCollectionId?: string;
|
|
2343
|
+
sportsCollectionId?: string;
|
|
2344
|
+
membershipCollectionId?: string;
|
|
2345
|
+
programsCollectionId?: string;
|
|
2671
2346
|
}
|
|
2672
2347
|
export declare enum EntitlementTermsTypesEnum {
|
|
2673
2348
|
QUESTION = "question",
|
|
@@ -3189,143 +2864,388 @@ export declare enum AddonParentTypeEnum {
|
|
|
3189
2864
|
RESERVATION = "reservation",
|
|
3190
2865
|
SLOT = "slot"
|
|
3191
2866
|
}
|
|
3192
|
-
export declare enum EEmailStatus {
|
|
3193
|
-
SENT = "sent",
|
|
3194
|
-
OPENED = "opened",
|
|
3195
|
-
PAID = "paid",
|
|
3196
|
-
CANCELED = "canceled"
|
|
2867
|
+
export declare enum EEmailStatus {
|
|
2868
|
+
SENT = "sent",
|
|
2869
|
+
OPENED = "opened",
|
|
2870
|
+
PAID = "paid",
|
|
2871
|
+
CANCELED = "canceled"
|
|
2872
|
+
}
|
|
2873
|
+
export interface IEntitlementTerms {
|
|
2874
|
+
type: EntitlementTermsTypesEnum;
|
|
2875
|
+
id?: number;
|
|
2876
|
+
value?: string;
|
|
2877
|
+
minValue?: string;
|
|
2878
|
+
maxValue?: string;
|
|
2879
|
+
}
|
|
2880
|
+
export interface IQuestionAnswerObject {
|
|
2881
|
+
questionId: number;
|
|
2882
|
+
value: string;
|
|
2883
|
+
}
|
|
2884
|
+
export interface ILowestPriceForItem {
|
|
2885
|
+
itemId: number;
|
|
2886
|
+
itemType: ResourceNameTypeEnum;
|
|
2887
|
+
groupId: number;
|
|
2888
|
+
groupName?: string;
|
|
2889
|
+
price: number;
|
|
2890
|
+
overridesPrice: boolean;
|
|
2891
|
+
}
|
|
2892
|
+
export interface IResourcesAvailability {
|
|
2893
|
+
resourceType: ResourceNameTypeEnum;
|
|
2894
|
+
quantity: number;
|
|
2895
|
+
resourcesIds: number[];
|
|
2896
|
+
isPunchCard: boolean;
|
|
2897
|
+
resources?: any[];
|
|
2898
|
+
}
|
|
2899
|
+
export interface IPackageResponse {
|
|
2900
|
+
parentProduct: Product;
|
|
2901
|
+
children: IChildProduct[];
|
|
2902
|
+
}
|
|
2903
|
+
export interface IChildProduct {
|
|
2904
|
+
product: Product;
|
|
2905
|
+
relationType: PackageProductsRelationTypeEnum;
|
|
2906
|
+
timePeriod?: AddonTimePeriodEnum;
|
|
2907
|
+
}
|
|
2908
|
+
export interface ISeasonAttendeeInfo {
|
|
2909
|
+
applicationAnswers: Answer[];
|
|
2910
|
+
segments: (SeasonAsSeasonSegment | EventAsSeasonSegment)[];
|
|
2911
|
+
invoices: Order[];
|
|
2912
|
+
payments: Invoice[];
|
|
2913
|
+
products: Product[];
|
|
2914
|
+
redeemNext: ProductsUsers;
|
|
2915
|
+
}
|
|
2916
|
+
export interface ISeasonAttendeeListInfo {
|
|
2917
|
+
userId: number;
|
|
2918
|
+
userFirstName: string;
|
|
2919
|
+
userLastName: string;
|
|
2920
|
+
userGender: number;
|
|
2921
|
+
userBirthDate: Date;
|
|
2922
|
+
userProfilePicUrl: string;
|
|
2923
|
+
customerId: number;
|
|
2924
|
+
customerEmail: string;
|
|
2925
|
+
paymentStatus: string;
|
|
2926
|
+
productName: string;
|
|
2927
|
+
punchCard: boolean;
|
|
2928
|
+
}
|
|
2929
|
+
export declare class SeasonAsSeasonSegment extends ProgramSeason {
|
|
2930
|
+
segmentType: ResourceNameTypeEnum;
|
|
2931
|
+
participantRegisteredDate?: string;
|
|
2932
|
+
}
|
|
2933
|
+
export declare class EventAsSeasonSegment extends Event {
|
|
2934
|
+
segmentType: ResourceNameTypeEnum;
|
|
2935
|
+
participantRegisteredDate?: string;
|
|
2936
|
+
}
|
|
2937
|
+
export interface ITokenResonse {
|
|
2938
|
+
token: string;
|
|
2939
|
+
}
|
|
2940
|
+
export interface IStripeBondInvoices {
|
|
2941
|
+
paidStripePaymentIntent: Stripe.PaymentIntent;
|
|
2942
|
+
bondPaidInvoice: Invoice;
|
|
2943
|
+
order?: Order;
|
|
2944
|
+
customer?: Customer;
|
|
2945
|
+
}
|
|
2946
|
+
export interface IPartialPaymentData {
|
|
2947
|
+
purchasingUserId: number;
|
|
2948
|
+
paymentData: PurchasePaymentDto;
|
|
2949
|
+
amountToPay: number;
|
|
2950
|
+
}
|
|
2951
|
+
export interface IPayment {
|
|
2952
|
+
id: number;
|
|
2953
|
+
total: number;
|
|
2954
|
+
paymentMethod: PaymentMethodTypeEnum;
|
|
2955
|
+
status: PaymentStatusEnum;
|
|
2956
|
+
createdAt: Date;
|
|
2957
|
+
invoices: number[];
|
|
2958
|
+
}
|
|
2959
|
+
export interface IPaginationData<T> {
|
|
2960
|
+
meta: {
|
|
2961
|
+
totalItems: number;
|
|
2962
|
+
itemsPerPage: number;
|
|
2963
|
+
totalPages: number;
|
|
2964
|
+
currentPage: number;
|
|
2965
|
+
};
|
|
2966
|
+
data: T[];
|
|
2967
|
+
}
|
|
2968
|
+
export interface IPricesOfProductsResults {
|
|
2969
|
+
productId: number;
|
|
2970
|
+
userId: number;
|
|
2971
|
+
price: number;
|
|
2972
|
+
groupId?: number;
|
|
2973
|
+
groupName?: string;
|
|
2974
|
+
originalPrice?: number;
|
|
2975
|
+
priceWithoutTax: number;
|
|
2976
|
+
tax: number;
|
|
2977
|
+
isTaxInclusive: boolean;
|
|
2978
|
+
}
|
|
2979
|
+
export interface IPaymentMethodToFundLeft {
|
|
2980
|
+
paymentType: PaymentMethodTypeEnum;
|
|
2981
|
+
paymentMethodId: string;
|
|
2982
|
+
fundLeft: number;
|
|
2983
|
+
ccLast4?: string;
|
|
2984
|
+
ccBrand?: string;
|
|
2985
|
+
}
|
|
2986
|
+
export interface IVariantsAndTitle {
|
|
2987
|
+
title: VariantTitle;
|
|
2988
|
+
variants: Variant[];
|
|
2989
|
+
}
|
|
2990
|
+
export interface IProgramSeasonActivityTimes {
|
|
2991
|
+
dayOfWeek: number;
|
|
2992
|
+
open: string;
|
|
2993
|
+
close: string;
|
|
2994
|
+
}
|
|
2995
|
+
export interface IProgramSeasonActivityTimesAsDates {
|
|
2996
|
+
date: string;
|
|
2997
|
+
startTime: string;
|
|
2998
|
+
endTime: string;
|
|
2999
|
+
}
|
|
3000
|
+
export interface IBlockedDates {
|
|
3001
|
+
name: string;
|
|
3002
|
+
startDate: Date;
|
|
3003
|
+
endDate: Date;
|
|
3004
|
+
}
|
|
3005
|
+
export interface ISingleMemberForRenewal {
|
|
3006
|
+
member_id: number;
|
|
3007
|
+
member_membershipId: number;
|
|
3008
|
+
member_userId: number;
|
|
3009
|
+
member_nextPaymentMethodId?: string;
|
|
3010
|
+
member_nextPaymentType?: PaymentMethodTypeEnum;
|
|
3011
|
+
member_answerTitleIds?: number[];
|
|
3012
|
+
member_organizationId: number;
|
|
3013
|
+
line_paidAmount: number;
|
|
3014
|
+
line_productId: number;
|
|
3015
|
+
order_payingUserId: number;
|
|
3016
|
+
order_paymentMethodId: string;
|
|
3017
|
+
order_paymentType: PaymentMethodTypeEnum;
|
|
3018
|
+
endDate: Date;
|
|
3019
|
+
membership_name: string;
|
|
3020
|
+
user_firstName: string;
|
|
3021
|
+
user_lastName: string;
|
|
3022
|
+
user_email: string;
|
|
3023
|
+
}
|
|
3024
|
+
export interface IFamilyMemberForRenewal extends ISingleMemberForRenewal {
|
|
3025
|
+
package_parentProductId: number;
|
|
3026
|
+
line2_paidAmount: number;
|
|
3027
|
+
familyid: number;
|
|
3028
|
+
order_id: number;
|
|
3197
3029
|
}
|
|
3198
|
-
export
|
|
3199
|
-
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
price: number | null;
|
|
3209
|
-
private: boolean | null;
|
|
3210
|
-
returnOverride: boolean | null;
|
|
3211
|
-
organizationId: number | null;
|
|
3212
|
-
whoCanJoin: TeamCanJoinEnum | null;
|
|
3213
|
-
whoCanInvite: string | null;
|
|
3214
|
-
metadata: any | null;
|
|
3215
|
-
externalId: string | null;
|
|
3216
|
-
paymentSettings: any | null;
|
|
3217
|
-
isClaimed: boolean | null;
|
|
3218
|
-
creatorId: number | null;
|
|
3219
|
-
creatorType: string | null;
|
|
3220
|
-
userCreatorId: number | null;
|
|
3221
|
-
ownerId: number | null;
|
|
3222
|
-
mainMediaId: number | null;
|
|
3223
|
-
publishedDate: Date | null;
|
|
3224
|
-
isPublished: boolean | null;
|
|
3225
|
-
levelOfPlay: number[] | null;
|
|
3226
|
-
sports: number | null;
|
|
3227
|
-
minAge: number | null;
|
|
3228
|
-
maxAge: number | null;
|
|
3229
|
-
gender: number | null;
|
|
3230
|
-
questionnaireId: number | null;
|
|
3030
|
+
export interface IResourceRegistrationData {
|
|
3031
|
+
id: number;
|
|
3032
|
+
resourceType: ResourceNameTypeEnum;
|
|
3033
|
+
openNumDays?: number;
|
|
3034
|
+
openNumMinutes?: number;
|
|
3035
|
+
openTime?: string;
|
|
3036
|
+
closeNumDays?: number;
|
|
3037
|
+
closeNumMinutes?: number;
|
|
3038
|
+
closeTime?: string;
|
|
3039
|
+
registrationWindowStatus?: RegistrationWindowStatusEnum;
|
|
3231
3040
|
}
|
|
3232
|
-
export
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
|
|
3236
|
-
name: string;
|
|
3041
|
+
export interface IResourceDataForConstraintsCalc {
|
|
3042
|
+
id: number;
|
|
3043
|
+
startDate: string;
|
|
3044
|
+
startTime: string;
|
|
3237
3045
|
}
|
|
3238
|
-
export
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
|
-
excludeStandings: boolean | null;
|
|
3046
|
+
export interface IRegistrationConstraintsSetting {
|
|
3047
|
+
numDays?: number;
|
|
3048
|
+
numMinutes?: number;
|
|
3242
3049
|
}
|
|
3243
|
-
export
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
|
|
3050
|
+
export interface IAttendeeDataToNotify {
|
|
3051
|
+
firstName: string;
|
|
3052
|
+
lastName: string;
|
|
3053
|
+
email: string;
|
|
3054
|
+
sessionName: string;
|
|
3055
|
+
parentSessionName?: string;
|
|
3056
|
+
organizationName: string;
|
|
3057
|
+
programName: string;
|
|
3247
3058
|
}
|
|
3248
|
-
export
|
|
3249
|
-
roundId: number;
|
|
3059
|
+
export interface IEventInSchedule {
|
|
3250
3060
|
eventId: number;
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
|
|
3061
|
+
eventName: string;
|
|
3062
|
+
eventStartDate: string;
|
|
3063
|
+
eventEndDate: string;
|
|
3064
|
+
eventStartTime: string;
|
|
3065
|
+
eventEndTime: string;
|
|
3066
|
+
programId: number;
|
|
3067
|
+
programName: string;
|
|
3068
|
+
programType: ProgramTypesEnum;
|
|
3069
|
+
sessionId: number;
|
|
3070
|
+
sessionName: string;
|
|
3071
|
+
sports: number;
|
|
3072
|
+
spaces: {
|
|
3073
|
+
spaceId: number;
|
|
3074
|
+
spaceName: string;
|
|
3075
|
+
}[];
|
|
3076
|
+
status?: RegistrationValidationStatusEnum;
|
|
3254
3077
|
}
|
|
3255
|
-
export
|
|
3078
|
+
export interface ISlotInSchedule {
|
|
3256
3079
|
facilityId: number;
|
|
3257
|
-
|
|
3258
|
-
|
|
3080
|
+
facilityName: string;
|
|
3081
|
+
spaces: ISpaceWithSlots[];
|
|
3259
3082
|
}
|
|
3260
|
-
export
|
|
3261
|
-
|
|
3262
|
-
|
|
3083
|
+
export interface ISpaceWithSlots {
|
|
3084
|
+
id: number;
|
|
3085
|
+
name: string;
|
|
3086
|
+
slots: ISlotReservationData[];
|
|
3263
3087
|
}
|
|
3264
|
-
export
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3088
|
+
export interface ISlotReservationData {
|
|
3089
|
+
reservationId: number;
|
|
3090
|
+
reservationName: string;
|
|
3091
|
+
date: string;
|
|
3092
|
+
startTime: string;
|
|
3093
|
+
endTime: string;
|
|
3094
|
+
notes: string;
|
|
3095
|
+
spaceId: number;
|
|
3096
|
+
isRental: boolean;
|
|
3097
|
+
slotType: SlotTypeEnum;
|
|
3098
|
+
slotId: number;
|
|
3099
|
+
eventId: number;
|
|
3268
3100
|
}
|
|
3269
|
-
export
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3101
|
+
export interface IRawEventInSchedule extends IEventInSchedule {
|
|
3102
|
+
parentSessionId: number;
|
|
3103
|
+
parentSessionName: string;
|
|
3104
|
+
eventTimezone: string;
|
|
3105
|
+
maxParticipants: number;
|
|
3106
|
+
maxMaleParticipants: number;
|
|
3107
|
+
maxFemaleParticipants: number;
|
|
3108
|
+
isPunchCard: boolean;
|
|
3274
3109
|
}
|
|
3275
|
-
export
|
|
3110
|
+
export interface IBasicSpaceAndSlotCreator {
|
|
3111
|
+
id: number;
|
|
3276
3112
|
name: string;
|
|
3277
|
-
|
|
3113
|
+
bookingCreatorId: number;
|
|
3278
3114
|
}
|
|
3279
|
-
export
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3115
|
+
export interface IRawSlotInSchedule {
|
|
3116
|
+
startDate: string;
|
|
3117
|
+
endDate: string;
|
|
3118
|
+
startTime: string;
|
|
3119
|
+
endTime: string;
|
|
3120
|
+
reservationId: number;
|
|
3121
|
+
eventTitle: string;
|
|
3122
|
+
publicNotes: string;
|
|
3123
|
+
spaceId: number;
|
|
3124
|
+
creatorType: ResourceNameTypeEnum;
|
|
3125
|
+
slotType: SlotTypeEnum;
|
|
3126
|
+
slotId: number;
|
|
3127
|
+
eventId: number;
|
|
3284
3128
|
}
|
|
3285
|
-
export
|
|
3129
|
+
export interface IPurchasedResourcesRaw {
|
|
3130
|
+
purchasedId: number;
|
|
3131
|
+
purchasedProductUserId: number;
|
|
3132
|
+
purchasedResourceId: number;
|
|
3133
|
+
purchasedResourceType: ResourceNameTypeEnum;
|
|
3134
|
+
purchasedStatus: PurchasedResourceStatusEnum;
|
|
3135
|
+
pUserId: number;
|
|
3136
|
+
pUserPaymentStatus: PaymentStatusEnum;
|
|
3137
|
+
pUserProductId: number;
|
|
3138
|
+
pUserProductName: string;
|
|
3139
|
+
pUserProductPrice: number;
|
|
3140
|
+
pUserProductPriceCurrency: string;
|
|
3141
|
+
pUserProductQuantity: number;
|
|
3142
|
+
pUserProductQuantityLeft: number;
|
|
3143
|
+
pUserUserId: number;
|
|
3144
|
+
}
|
|
3145
|
+
export interface IUsersPasses {
|
|
3146
|
+
userId: number;
|
|
3147
|
+
userFirstName: string;
|
|
3148
|
+
userLastName: string;
|
|
3286
3149
|
organizationId: number;
|
|
3150
|
+
programId: number;
|
|
3151
|
+
programName: string;
|
|
3152
|
+
sessionId: number;
|
|
3153
|
+
sessionName: string;
|
|
3154
|
+
productId: number;
|
|
3155
|
+
productName: string;
|
|
3156
|
+
productUserId: number;
|
|
3157
|
+
purchaseDate: Date;
|
|
3158
|
+
passesLeft: number;
|
|
3287
3159
|
}
|
|
3288
|
-
export
|
|
3289
|
-
|
|
3160
|
+
export interface ISessionsLandingPage {
|
|
3161
|
+
sessionId: number;
|
|
3162
|
+
name: string;
|
|
3163
|
+
startDate: Date;
|
|
3164
|
+
endDate: Date;
|
|
3165
|
+
registrationStartDate: Date;
|
|
3166
|
+
registrationEndDate: Date;
|
|
3167
|
+
sport: SportsEnum;
|
|
3168
|
+
minAge: string;
|
|
3169
|
+
maxAge: string;
|
|
3170
|
+
maxParticipants?: number;
|
|
3171
|
+
gender: GenderEnum;
|
|
3172
|
+
activityTimes: ActivityTimes[];
|
|
3173
|
+
earlyRegistrationStartDate?: Date;
|
|
3174
|
+
earlyRegistrationEndDate?: Date;
|
|
3175
|
+
lateRegistrationStartDate?: Date;
|
|
3176
|
+
lateRegistrationEndDate?: Date;
|
|
3177
|
+
attendeeCount?: number;
|
|
3178
|
+
segmentsOrEvents: 'segment' | 'event';
|
|
3290
3179
|
}
|
|
3291
|
-
export
|
|
3292
|
-
|
|
3293
|
-
|
|
3180
|
+
export interface ISessionsLandingPageExpanded extends ISessionsLandingPage, ISlimAddons {
|
|
3181
|
+
hasRequiredMembership: boolean;
|
|
3182
|
+
hasEntitledPricing: boolean;
|
|
3183
|
+
lowestPrice?: number;
|
|
3184
|
+
products?: ISessionLandingPageProduct[];
|
|
3294
3185
|
}
|
|
3295
|
-
export
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
|
|
3303
|
-
|
|
3304
|
-
note?: string;
|
|
3305
|
-
shiftId?: number;
|
|
3306
|
-
meta?: RevertMetaDto;
|
|
3186
|
+
export interface ISessionLandingPageExpanded extends ISessionsLandingPage {
|
|
3187
|
+
hasRequiredMembership: boolean;
|
|
3188
|
+
hasEntitledPricing: boolean;
|
|
3189
|
+
products?: ISessionLandingPageProduct[];
|
|
3190
|
+
segments?: Event[] | ProgramSeason[];
|
|
3191
|
+
programName: string;
|
|
3192
|
+
programId: number;
|
|
3193
|
+
levelOfPlay: LevelOfPlayEnum[];
|
|
3194
|
+
registrationConstraints: IResourceRegistrationData[];
|
|
3307
3195
|
}
|
|
3308
|
-
export
|
|
3309
|
-
|
|
3310
|
-
|
|
3311
|
-
|
|
3196
|
+
export interface ISlimAddons {
|
|
3197
|
+
addons?: {
|
|
3198
|
+
id: number;
|
|
3199
|
+
timePeriod: AddonTimePeriodEnum;
|
|
3200
|
+
name: string;
|
|
3201
|
+
productType?: ProductTypesEnum;
|
|
3202
|
+
productSubType?: string;
|
|
3203
|
+
}[];
|
|
3312
3204
|
}
|
|
3313
|
-
export
|
|
3205
|
+
export interface ISessionLandingPageProduct extends ISlimAddons {
|
|
3314
3206
|
id: number;
|
|
3315
|
-
|
|
3207
|
+
name: string;
|
|
3208
|
+
startDate?: Date;
|
|
3209
|
+
endDate?: Date;
|
|
3210
|
+
downpayment?: number;
|
|
3211
|
+
description?: string;
|
|
3212
|
+
prices: Price[];
|
|
3213
|
+
productSubType?: ProductSubTypesEnum;
|
|
3214
|
+
punchCard: boolean;
|
|
3215
|
+
isAddon: boolean;
|
|
3216
|
+
defaultPriceId?: number;
|
|
3316
3217
|
}
|
|
3317
|
-
export
|
|
3318
|
-
|
|
3319
|
-
|
|
3218
|
+
export interface CreatePaymentIntentDto extends PurchaseRequestDto {
|
|
3219
|
+
destinationId?: string;
|
|
3220
|
+
stripeCustomerId?: string;
|
|
3221
|
+
fee?: number;
|
|
3320
3222
|
}
|
|
3321
|
-
export
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3223
|
+
export interface IReservationCreatorData {
|
|
3224
|
+
type: ResourceNameTypeEnum;
|
|
3225
|
+
id: number;
|
|
3226
|
+
organizationId: number;
|
|
3227
|
+
startDate: string;
|
|
3228
|
+
endDate: string;
|
|
3229
|
+
sportId: number;
|
|
3230
|
+
}
|
|
3231
|
+
export declare class ColumnNumericTransformer {
|
|
3232
|
+
to(data: number): number;
|
|
3233
|
+
from(data: string): number;
|
|
3234
|
+
}
|
|
3235
|
+
export declare function convertToNumber(data: string): number;
|
|
3236
|
+
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3237
|
+
name?: string;
|
|
3238
|
+
genderStr?: string;
|
|
3239
|
+
parentID?: string;
|
|
3240
|
+
partnerID?: string;
|
|
3241
|
+
membershipName?: string;
|
|
3242
|
+
membershipExpDate?: string;
|
|
3243
|
+
membershipCreationDate?: string;
|
|
3244
|
+
bondMembershipID?: number;
|
|
3245
|
+
}
|
|
3246
|
+
export declare class AddFamilyDto {
|
|
3247
|
+
parents: AddImportedCustomerDto[];
|
|
3248
|
+
children: AddImportedCustomerDto[];
|
|
3329
3249
|
}
|
|
3330
3250
|
export declare enum ImportPaymentTypeEnum {
|
|
3331
3251
|
CREDIT_CARD = "card",
|
|
@@ -3371,22 +3291,12 @@ export declare class ProductImportDto {
|
|
|
3371
3291
|
resourceIds: number[];
|
|
3372
3292
|
oldId: number;
|
|
3373
3293
|
}
|
|
3374
|
-
export declare class
|
|
3375
|
-
|
|
3376
|
-
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
membershipExpDate?: string;
|
|
3381
|
-
membershipCreationDate?: string;
|
|
3382
|
-
bondMembershipID?: number;
|
|
3383
|
-
}
|
|
3384
|
-
export declare class AddFamilyDto {
|
|
3385
|
-
parents: AddImportedCustomerDto[];
|
|
3386
|
-
children: AddImportedCustomerDto[];
|
|
3387
|
-
}
|
|
3388
|
-
export declare class OrganizationSettings extends OrganizationConnectionBaseEntity {
|
|
3389
|
-
mainAdminUserId?: number;
|
|
3294
|
+
export declare class PunchPassDto {
|
|
3295
|
+
CustomerID: string;
|
|
3296
|
+
QuantityLeft: number;
|
|
3297
|
+
BondProgramID: number;
|
|
3298
|
+
BondSessionID: number;
|
|
3299
|
+
ProductID: number;
|
|
3390
3300
|
}
|
|
3391
3301
|
export declare class ImportedSlotProductDto {
|
|
3392
3302
|
slotID?: string;
|
|
@@ -3439,82 +3349,121 @@ export declare class ImportedReservationDto {
|
|
|
3439
3349
|
slots?: ImportedSlotDto[];
|
|
3440
3350
|
addons?: ImportedSlotProductDto[];
|
|
3441
3351
|
}
|
|
3442
|
-
export declare class
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
version: number;
|
|
3446
|
-
organization: Organization;
|
|
3352
|
+
export declare class GameSlots extends BondBaseEntity {
|
|
3353
|
+
entityType: string;
|
|
3354
|
+
entityId: number;
|
|
3447
3355
|
}
|
|
3448
|
-
export declare class
|
|
3449
|
-
|
|
3450
|
-
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3356
|
+
export declare class MatchParticipants extends BondBaseEntity {
|
|
3357
|
+
matchId: number | null;
|
|
3358
|
+
ordinal: number | null;
|
|
3359
|
+
outcomeOrdinal: number | null;
|
|
3360
|
+
resultMetaData: any | null;
|
|
3361
|
+
points: number | null;
|
|
3362
|
+
score: number | null;
|
|
3363
|
+
gameSlotId: number | null;
|
|
3455
3364
|
}
|
|
3456
|
-
export declare class
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
|
|
3460
|
-
endTime?: string;
|
|
3461
|
-
spaceId: number;
|
|
3365
|
+
export declare class Matches extends BondBaseEntity {
|
|
3366
|
+
eventId: number | null;
|
|
3367
|
+
status: number | null;
|
|
3368
|
+
excludeStandings: boolean | null;
|
|
3462
3369
|
}
|
|
3463
|
-
export declare class
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
3472
|
-
|
|
3473
|
-
|
|
3474
|
-
|
|
3475
|
-
|
|
3476
|
-
|
|
3477
|
-
|
|
3478
|
-
|
|
3479
|
-
|
|
3480
|
-
|
|
3481
|
-
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3505
|
-
|
|
3506
|
-
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
|
|
3510
|
-
|
|
3511
|
-
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3370
|
+
export declare class SeasonRounds extends BondBaseEntity {
|
|
3371
|
+
seasonId: number;
|
|
3372
|
+
ordinal?: number;
|
|
3373
|
+
divisionId?: number;
|
|
3374
|
+
name: string;
|
|
3375
|
+
}
|
|
3376
|
+
export declare class RoundEvents extends BaseEntity {
|
|
3377
|
+
roundId: number;
|
|
3378
|
+
eventId: number;
|
|
3379
|
+
seriesId: number | null;
|
|
3380
|
+
createdAt: Date;
|
|
3381
|
+
updatedAt: Date;
|
|
3382
|
+
}
|
|
3383
|
+
export declare class TeamEvents extends BondBaseEntity {
|
|
3384
|
+
teamId: number | null;
|
|
3385
|
+
eventId: number | null;
|
|
3386
|
+
status: number | null;
|
|
3387
|
+
}
|
|
3388
|
+
export declare class Lock extends BondBaseEntity {
|
|
3389
|
+
name: string;
|
|
3390
|
+
locked?: Date;
|
|
3391
|
+
}
|
|
3392
|
+
export declare class CreateMonitorConfigDto {
|
|
3393
|
+
facilityId: number;
|
|
3394
|
+
name: string;
|
|
3395
|
+
code: string;
|
|
3396
|
+
config: any;
|
|
3397
|
+
}
|
|
3398
|
+
export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
|
|
3399
|
+
facilityId: number;
|
|
3400
|
+
code: string;
|
|
3401
|
+
config?: any;
|
|
3402
|
+
}
|
|
3403
|
+
export declare class ByOrganizationIdDto {
|
|
3404
|
+
organizationId: number;
|
|
3405
|
+
}
|
|
3406
|
+
export declare class OptionalFindByOrganizationIdDto {
|
|
3407
|
+
organizationId?: number;
|
|
3408
|
+
}
|
|
3409
|
+
export declare class Organization extends BondBaseEntity {
|
|
3410
|
+
name: string | null;
|
|
3411
|
+
email: string | null;
|
|
3412
|
+
twitter: string | null;
|
|
3413
|
+
facebook: string | null;
|
|
3414
|
+
instagram: string | null;
|
|
3415
|
+
website: string | null;
|
|
3416
|
+
blog: string | null;
|
|
3417
|
+
phoneNumber: string | null;
|
|
3418
|
+
waiverDoc: string | null;
|
|
3419
|
+
about: string | null;
|
|
3420
|
+
tagline: string | null;
|
|
3421
|
+
status: number | null;
|
|
3422
|
+
addressId: number | null;
|
|
3423
|
+
merchantId: number | null;
|
|
3424
|
+
userCreatorId: number | null;
|
|
3425
|
+
parentId: number | null;
|
|
3426
|
+
paymentSettings: object | null;
|
|
3427
|
+
settings: object | null;
|
|
3428
|
+
isClaimed: boolean | null;
|
|
3429
|
+
sports: number[] | null;
|
|
3430
|
+
mainMediaId: number | null;
|
|
3431
|
+
deletedAt: Date | null;
|
|
3432
|
+
organizationActivityTypes: number[] | null;
|
|
3433
|
+
organizationTypes: number[] | null;
|
|
3434
|
+
organizationAudienceTypes: number[] | null;
|
|
3435
|
+
organizationGenders: number[] | null;
|
|
3436
|
+
questionnaireId: number | null;
|
|
3437
|
+
membershipQuestionnaireId: number | null;
|
|
3438
|
+
feeRate: number;
|
|
3439
|
+
feeAddDollarRate: number;
|
|
3440
|
+
achFeeRate: number;
|
|
3441
|
+
achFeeAddDollarRate: number;
|
|
3442
|
+
maxAchFee: number;
|
|
3443
|
+
cashFeeRate: number;
|
|
3444
|
+
cashFeeAddDollarRate: number;
|
|
3445
|
+
terminalFeeRate: number;
|
|
3446
|
+
terminalFeeAddDollarRate: number;
|
|
3447
|
+
checkFeeRate: number;
|
|
3448
|
+
checkFeeAddDollarRate: number;
|
|
3449
|
+
otherFeeRate: number;
|
|
3450
|
+
otherFeeAddDollarRate: number;
|
|
3451
|
+
balanceFeeRate: number;
|
|
3452
|
+
balanceFeeAddDollarRate: number;
|
|
3453
|
+
address: Address;
|
|
3454
|
+
mainMedia: Media;
|
|
3455
|
+
brandings: OrganizationBranding[];
|
|
3456
|
+
brandingsV2?: OrganizationBranding[];
|
|
3457
|
+
}
|
|
3458
|
+
export declare class OrganizationBranding extends OrganizationConnectionBaseEntity {
|
|
3459
|
+
key?: string;
|
|
3460
|
+
vaule?: string;
|
|
3461
|
+
version: number;
|
|
3462
|
+
organization: Organization;
|
|
3463
|
+
}
|
|
3464
|
+
export declare class OrganizationUsers extends BondBaseEntity {
|
|
3465
|
+
organisationId: number | null;
|
|
3466
|
+
userId: number | null;
|
|
3518
3467
|
}
|
|
3519
3468
|
export declare class CustomerIdDto {
|
|
3520
3469
|
customerId: number;
|
|
@@ -3633,80 +3582,71 @@ export declare class SendRequestDto {
|
|
|
3633
3582
|
sendToEmail: string;
|
|
3634
3583
|
memo?: string;
|
|
3635
3584
|
}
|
|
3636
|
-
export declare class
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
sportId?: number;
|
|
3649
|
-
series: SeriesDto[];
|
|
3650
|
-
addonIds?: number[];
|
|
3651
|
-
publicNotesForSlots?: string;
|
|
3652
|
-
privateNotesForSlots?: string;
|
|
3585
|
+
export declare class RefundDto {
|
|
3586
|
+
orderId: number;
|
|
3587
|
+
lineItems: RefundLineItemAmountDto[];
|
|
3588
|
+
refundLineItemAmountDict?: {
|
|
3589
|
+
[id: number]: number;
|
|
3590
|
+
};
|
|
3591
|
+
refunds: PaymentMethodDto[];
|
|
3592
|
+
refundType: RefundTypeEnum;
|
|
3593
|
+
reasonId: number;
|
|
3594
|
+
note?: string;
|
|
3595
|
+
shiftId?: number;
|
|
3596
|
+
meta?: RevertMetaDto;
|
|
3653
3597
|
}
|
|
3654
|
-
export declare class
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
endDate?: string;
|
|
3659
|
-
endTime?: string;
|
|
3660
|
-
slotDurationType: SlotDurationTypeEnum;
|
|
3661
|
-
durationEndsAfter?: number;
|
|
3662
|
-
durationUnit?: DurationUnitTypesEnum;
|
|
3663
|
-
frequency: FrequencyEnum;
|
|
3664
|
-
repeatEvery?: number;
|
|
3665
|
-
repeatOn?: number[];
|
|
3666
|
-
repeatEndDate?: string;
|
|
3667
|
-
numberOccurrences?: number;
|
|
3668
|
-
maintenance?: MaintenanceDto[];
|
|
3669
|
-
slots?: SlotDto[];
|
|
3598
|
+
export declare class PaymentMethodDto {
|
|
3599
|
+
paymentMethodType: PaymentMethodTypeEnum;
|
|
3600
|
+
amount: number;
|
|
3601
|
+
paymentMethodId?: string;
|
|
3670
3602
|
}
|
|
3671
|
-
declare class
|
|
3672
|
-
|
|
3673
|
-
|
|
3603
|
+
export declare class RefundLineItemAmountDto {
|
|
3604
|
+
id: number;
|
|
3605
|
+
refundAmount: number;
|
|
3674
3606
|
}
|
|
3675
|
-
export declare class
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
timezone: string;
|
|
3679
|
-
spaceId: number;
|
|
3607
|
+
export declare class VoidDto {
|
|
3608
|
+
lineItems: VoidLineItemDto[];
|
|
3609
|
+
meta?: RevertMetaDto;
|
|
3680
3610
|
}
|
|
3681
|
-
declare class
|
|
3682
|
-
|
|
3683
|
-
|
|
3684
|
-
|
|
3611
|
+
export declare class VoidLineItemDto {
|
|
3612
|
+
id: number;
|
|
3613
|
+
quantity?: number;
|
|
3614
|
+
isEdit?: boolean;
|
|
3615
|
+
amount?: number;
|
|
3685
3616
|
}
|
|
3686
|
-
export declare class
|
|
3617
|
+
export declare class LineItemDto {
|
|
3618
|
+
id?: number;
|
|
3619
|
+
orderId?: number;
|
|
3620
|
+
type: LineItemsStatusEnum;
|
|
3687
3621
|
organizationId: number;
|
|
3688
|
-
|
|
3689
|
-
|
|
3690
|
-
|
|
3691
|
-
|
|
3692
|
-
|
|
3622
|
+
userId?: number;
|
|
3623
|
+
productId: number;
|
|
3624
|
+
product?: Product;
|
|
3625
|
+
productType: ProductTypesEnum;
|
|
3626
|
+
ordinal?: number;
|
|
3693
3627
|
price: number;
|
|
3694
|
-
|
|
3695
|
-
|
|
3696
|
-
|
|
3697
|
-
|
|
3698
|
-
|
|
3699
|
-
|
|
3700
|
-
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3628
|
+
originalPrice?: number;
|
|
3629
|
+
paidAmount?: number;
|
|
3630
|
+
currency: CurrencyEnum;
|
|
3631
|
+
paymentStatus?: PaymentStatusEnum;
|
|
3632
|
+
isRefunded?: boolean;
|
|
3633
|
+
isTaxInclusive?: boolean;
|
|
3634
|
+
taxPrecent?: number;
|
|
3635
|
+
unitPrice?: number;
|
|
3636
|
+
quantity: number;
|
|
3637
|
+
resources?: PurchasedResourceDto[];
|
|
3638
|
+
relationType?: 'reservation-addon' | 'slots' | 'slot_addons';
|
|
3639
|
+
unitPriceWithTax?: number;
|
|
3640
|
+
unitTaxPrice?: number;
|
|
3641
|
+
parentOrdinal?: number;
|
|
3707
3642
|
}
|
|
3708
|
-
export declare class
|
|
3709
|
-
|
|
3643
|
+
export declare class PurchasedResourceDto {
|
|
3644
|
+
resourceId?: number;
|
|
3645
|
+
resourceType: ResourceNameTypeEnum;
|
|
3646
|
+
startDate?: string;
|
|
3647
|
+
startTime?: string;
|
|
3648
|
+
endDate?: string;
|
|
3649
|
+
endTime?: string;
|
|
3710
3650
|
}
|
|
3711
3651
|
export declare class OrderDto {
|
|
3712
3652
|
orderId?: string | null;
|
|
@@ -3749,6 +3689,13 @@ export declare class AddSlotsDto extends UpdateInvoiceDto {
|
|
|
3749
3689
|
export declare class AddSegmentsDto extends UpdateInvoiceDto {
|
|
3750
3690
|
segments: SegmentDto[];
|
|
3751
3691
|
}
|
|
3692
|
+
export declare class MaintenanceDto {
|
|
3693
|
+
id?: number;
|
|
3694
|
+
title: string;
|
|
3695
|
+
durationValue: number;
|
|
3696
|
+
maintenanceDurationdurationType: DurationUnitTypesEnum;
|
|
3697
|
+
maintenanceTiming: MaintenanceTimingEnum;
|
|
3698
|
+
}
|
|
3752
3699
|
export declare class ReservationDto {
|
|
3753
3700
|
id?: number;
|
|
3754
3701
|
organizationId?: number;
|
|
@@ -3889,44 +3836,139 @@ export declare class ValidateEditSlotsDto extends UpdateSlotsDto {
|
|
|
3889
3836
|
export declare class AddAddonsDto {
|
|
3890
3837
|
addons: ProductPricesDto[];
|
|
3891
3838
|
}
|
|
3892
|
-
export declare class
|
|
3893
|
-
|
|
3894
|
-
|
|
3839
|
+
export declare class SegmentDto {
|
|
3840
|
+
id?: number;
|
|
3841
|
+
title: string;
|
|
3842
|
+
isPrivate: boolean;
|
|
3843
|
+
resourceIds: number[];
|
|
3844
|
+
sportId?: number;
|
|
3845
|
+
series: SeriesDto[];
|
|
3846
|
+
addonIds?: number[];
|
|
3847
|
+
publicNotesForSlots?: string;
|
|
3848
|
+
privateNotesForSlots?: string;
|
|
3895
3849
|
}
|
|
3896
|
-
export declare class
|
|
3897
|
-
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
|
|
3901
|
-
|
|
3850
|
+
export declare class SeriesDto {
|
|
3851
|
+
id?: number;
|
|
3852
|
+
startDate: string;
|
|
3853
|
+
startTime?: string;
|
|
3854
|
+
endDate?: string;
|
|
3855
|
+
endTime?: string;
|
|
3856
|
+
slotDurationType: SlotDurationTypeEnum;
|
|
3857
|
+
durationEndsAfter?: number;
|
|
3858
|
+
durationUnit?: DurationUnitTypesEnum;
|
|
3859
|
+
frequency: FrequencyEnum;
|
|
3860
|
+
repeatEvery?: number;
|
|
3861
|
+
repeatOn?: number[];
|
|
3862
|
+
repeatEndDate?: string;
|
|
3863
|
+
numberOccurrences?: number;
|
|
3864
|
+
maintenance?: MaintenanceDto[];
|
|
3865
|
+
slots?: SlotDto[];
|
|
3866
|
+
}
|
|
3867
|
+
export declare class SlotDateTimeAndSpace {
|
|
3868
|
+
startDate: string;
|
|
3869
|
+
startTime?: string;
|
|
3870
|
+
endDate?: string;
|
|
3871
|
+
endTime?: string;
|
|
3872
|
+
spaceId: number;
|
|
3873
|
+
}
|
|
3874
|
+
export declare class SlotDto extends SlotDateTimeAndSpace {
|
|
3875
|
+
id?: number;
|
|
3876
|
+
reservationId?: number;
|
|
3877
|
+
occurrence?: number;
|
|
3878
|
+
title: string;
|
|
3879
|
+
creatorId?: number;
|
|
3880
|
+
creatorType?: string;
|
|
3881
|
+
userCreatorId?: number;
|
|
3882
|
+
timezone?: string;
|
|
3883
|
+
publicNotes?: string;
|
|
3884
|
+
privateNotes?: string;
|
|
3885
|
+
slotType: SlotTypeEnum;
|
|
3886
|
+
product?: Product;
|
|
3887
|
+
priceOverrideMeta?: {
|
|
3888
|
+
unitPrice: number;
|
|
3889
|
+
quantity: number;
|
|
3890
|
+
totalPrice: number;
|
|
3891
|
+
};
|
|
3892
|
+
addonPriceOverrideMeta?: {
|
|
3893
|
+
[addonProductId: number]: {
|
|
3894
|
+
unitPrice: number;
|
|
3895
|
+
quantity: number;
|
|
3896
|
+
totalPrice: number;
|
|
3897
|
+
};
|
|
3898
|
+
};
|
|
3899
|
+
addonProducts?: Product[];
|
|
3900
|
+
addonCalculatedPrice?: {
|
|
3901
|
+
productId: number;
|
|
3902
|
+
quantity: number;
|
|
3903
|
+
unitPrice: number;
|
|
3904
|
+
totalPrice: number;
|
|
3905
|
+
displayTotalWithTax?: number;
|
|
3906
|
+
displayUnitTax?: number;
|
|
3907
|
+
}[];
|
|
3908
|
+
addonsProductUserIds?: number[];
|
|
3909
|
+
segmentId?: number;
|
|
3910
|
+
seriesId?: number;
|
|
3911
|
+
eventId?: number;
|
|
3912
|
+
sportIds: number[];
|
|
3913
|
+
parentSlotId?: number;
|
|
3914
|
+
maintenanceDurationdurationType?: DurationUnitTypesEnum;
|
|
3915
|
+
maintenanceTiming?: MaintenanceTimingEnum;
|
|
3916
|
+
durationValue?: number;
|
|
3917
|
+
orderId?: number;
|
|
3918
|
+
paymentStatus: PaymentStatusEnum;
|
|
3919
|
+
approvalStatus: ReservationStatusEnum;
|
|
3920
|
+
displayName?: string;
|
|
3921
|
+
internalName?: string;
|
|
3922
|
+
totalPrice?: number;
|
|
3923
|
+
relevantProducts?: Product[];
|
|
3924
|
+
maintenance?: MaintenanceDto[];
|
|
3925
|
+
maintenanceSlots?: SlotDto[];
|
|
3926
|
+
isPrivate: boolean;
|
|
3927
|
+
slotDurationType: SlotDurationTypeEnum;
|
|
3928
|
+
addonsIds?: number[];
|
|
3929
|
+
}
|
|
3930
|
+
declare class AnswerDto {
|
|
3931
|
+
questionId: number;
|
|
3932
|
+
value: any;
|
|
3933
|
+
}
|
|
3934
|
+
export declare class BookedSessionDto {
|
|
3935
|
+
startDate: string;
|
|
3936
|
+
endDate: string;
|
|
3937
|
+
timezone: string;
|
|
3938
|
+
spaceId: number;
|
|
3902
3939
|
}
|
|
3903
|
-
|
|
3904
|
-
|
|
3940
|
+
declare class AddonDto {
|
|
3941
|
+
resourcePackageId: number;
|
|
3942
|
+
resourcePackageAmount: number;
|
|
3943
|
+
resourcePackagePrice: number;
|
|
3905
3944
|
}
|
|
3906
|
-
export declare class
|
|
3907
|
-
|
|
3908
|
-
|
|
3909
|
-
|
|
3910
|
-
|
|
3911
|
-
|
|
3945
|
+
export declare class ReservationV1Dto {
|
|
3946
|
+
organizationId: number;
|
|
3947
|
+
name: string;
|
|
3948
|
+
dayOfWeek: number;
|
|
3949
|
+
startTime: string;
|
|
3950
|
+
description: string;
|
|
3951
|
+
sport: number;
|
|
3952
|
+
price: number;
|
|
3953
|
+
resourcePackageId: number;
|
|
3954
|
+
resourcePackageAmount: number;
|
|
3955
|
+
bookedSessions: BookedSessionDto[];
|
|
3956
|
+
addons: AddonDto[];
|
|
3912
3957
|
}
|
|
3913
|
-
export declare class
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
|
|
3926
|
-
|
|
3927
|
-
order?: Order;
|
|
3928
|
-
productUserId?: number;
|
|
3929
|
-
productUser?: ProductsUsers;
|
|
3958
|
+
export declare class BookingV1Dto {
|
|
3959
|
+
organizationId: number;
|
|
3960
|
+
reservations: ReservationV1Dto[];
|
|
3961
|
+
answers: AnswerDto[];
|
|
3962
|
+
paymentData: PurchasePaymentDto;
|
|
3963
|
+
skipPayment: boolean;
|
|
3964
|
+
cashPayment: boolean;
|
|
3965
|
+
requestOnly: boolean;
|
|
3966
|
+
}
|
|
3967
|
+
export declare class InvoicedSlots extends OrganizationConnectionBaseEntity {
|
|
3968
|
+
deletedAt?: Date;
|
|
3969
|
+
reservationId: number;
|
|
3970
|
+
invoiceId: number;
|
|
3971
|
+
slotId: number;
|
|
3930
3972
|
}
|
|
3931
3973
|
export declare class Reservation extends OrganizationConnectionBaseEntity {
|
|
3932
3974
|
name?: string;
|
|
@@ -3967,8 +4009,56 @@ export declare class Reservation extends OrganizationConnectionBaseEntity {
|
|
|
3967
4009
|
targetGlobalPrice?: number;
|
|
3968
4010
|
slots: Slot[];
|
|
3969
4011
|
}
|
|
3970
|
-
export declare class
|
|
3971
|
-
|
|
4012
|
+
export declare class Addon extends OrganizationConnectionBaseEntity {
|
|
4013
|
+
parentId: number;
|
|
4014
|
+
parentType: AddonParentTypeEnum;
|
|
4015
|
+
productId: number;
|
|
4016
|
+
product?: Product;
|
|
4017
|
+
quantity: number;
|
|
4018
|
+
unitPrice: number;
|
|
4019
|
+
totalPrice: number;
|
|
4020
|
+
approvalStatus: ReservationStatusEnum;
|
|
4021
|
+
paymentStatus: ReservationPaymentStatusEnum;
|
|
4022
|
+
level?: ProductPackageLevelEnum;
|
|
4023
|
+
resourceId?: number;
|
|
4024
|
+
resource?: Resource;
|
|
4025
|
+
orderId?: number;
|
|
4026
|
+
order?: Order;
|
|
4027
|
+
productUserId?: number;
|
|
4028
|
+
productUser?: ProductsUsers;
|
|
4029
|
+
}
|
|
4030
|
+
export declare class Segment extends OrganizationConnectionBaseEntity {
|
|
4031
|
+
deletedAt?: Date;
|
|
4032
|
+
reservationId: number;
|
|
4033
|
+
title: string;
|
|
4034
|
+
isPrivate: boolean;
|
|
4035
|
+
resourceIds?: number[];
|
|
4036
|
+
sportId: number;
|
|
4037
|
+
reservation?: Reservation;
|
|
4038
|
+
series?: Series[];
|
|
4039
|
+
addonIds?: number[] | null;
|
|
4040
|
+
publicNotesForSlots?: string;
|
|
4041
|
+
privateNotesForSlots?: string;
|
|
4042
|
+
slots?: Slot[];
|
|
4043
|
+
}
|
|
4044
|
+
export declare class Series extends OrganizationConnectionBaseEntity {
|
|
4045
|
+
deletedAt?: Date;
|
|
4046
|
+
segmentId: number;
|
|
4047
|
+
segment?: Segment;
|
|
4048
|
+
slots?: Slot[];
|
|
4049
|
+
slotDurationType: string;
|
|
4050
|
+
durationEndsAfter: number;
|
|
4051
|
+
durationUnit: string;
|
|
4052
|
+
startDate?: Date;
|
|
4053
|
+
endDate?: Date;
|
|
4054
|
+
startTime: string;
|
|
4055
|
+
endTime: string;
|
|
4056
|
+
frequency: string;
|
|
4057
|
+
repeatEvery: number;
|
|
4058
|
+
repeatOn?: number[];
|
|
4059
|
+
repeatEndDate?: Date;
|
|
4060
|
+
numberOccurrences?: number;
|
|
4061
|
+
resources?: Resource[];
|
|
3972
4062
|
}
|
|
3973
4063
|
export declare class Slot extends OrganizationConnectionBaseEntity {
|
|
3974
4064
|
constructor();
|
|
@@ -4037,48 +4127,15 @@ export declare class Slot extends OrganizationConnectionBaseEntity {
|
|
|
4037
4127
|
changeLineItems?: LineItems[];
|
|
4038
4128
|
updatedLineItem?: LineItems;
|
|
4039
4129
|
}
|
|
4040
|
-
export declare class
|
|
4041
|
-
|
|
4042
|
-
reservationId: number;
|
|
4043
|
-
title: string;
|
|
4044
|
-
isPrivate: boolean;
|
|
4045
|
-
resourceIds?: number[];
|
|
4046
|
-
sportId: number;
|
|
4047
|
-
reservation?: Reservation;
|
|
4048
|
-
series?: Series[];
|
|
4049
|
-
addonIds?: number[] | null;
|
|
4050
|
-
publicNotesForSlots?: string;
|
|
4051
|
-
privateNotesForSlots?: string;
|
|
4052
|
-
slots?: Slot[];
|
|
4053
|
-
}
|
|
4054
|
-
export declare class FindShiftsByIdsDto {
|
|
4055
|
-
shiftIds: number[];
|
|
4056
|
-
}
|
|
4057
|
-
export declare class ShiftManagementClosingAmount {
|
|
4058
|
-
shiftId: number;
|
|
4059
|
-
managementClosingCashAmount: number;
|
|
4130
|
+
export declare class ChangeRolePermissionsDto {
|
|
4131
|
+
permissionIds: number[];
|
|
4060
4132
|
}
|
|
4061
|
-
export declare class
|
|
4062
|
-
|
|
4133
|
+
export declare class CreateRoleDto {
|
|
4134
|
+
name: string;
|
|
4063
4135
|
}
|
|
4064
|
-
export declare class
|
|
4136
|
+
export declare class Permission extends BondBaseEntity {
|
|
4137
|
+
name: string;
|
|
4065
4138
|
deletedAt?: Date;
|
|
4066
|
-
segmentId: number;
|
|
4067
|
-
segment?: Segment;
|
|
4068
|
-
slots?: Slot[];
|
|
4069
|
-
slotDurationType: string;
|
|
4070
|
-
durationEndsAfter: number;
|
|
4071
|
-
durationUnit: string;
|
|
4072
|
-
startDate?: Date;
|
|
4073
|
-
endDate?: Date;
|
|
4074
|
-
startTime: string;
|
|
4075
|
-
endTime: string;
|
|
4076
|
-
frequency: string;
|
|
4077
|
-
repeatEvery: number;
|
|
4078
|
-
repeatOn?: number[];
|
|
4079
|
-
repeatEndDate?: Date;
|
|
4080
|
-
numberOccurrences?: number;
|
|
4081
|
-
resources?: Resource[];
|
|
4082
4139
|
}
|
|
4083
4140
|
export declare class Role extends OrganizationConnectionBaseEntity {
|
|
4084
4141
|
name: string;
|
|
@@ -4086,15 +4143,15 @@ export declare class Role extends OrganizationConnectionBaseEntity {
|
|
|
4086
4143
|
permissions: Permission[];
|
|
4087
4144
|
usersRoles: UserRole[];
|
|
4088
4145
|
}
|
|
4089
|
-
export declare class
|
|
4090
|
-
openingCashAmount: number;
|
|
4091
|
-
stationId: number;
|
|
4092
|
-
}
|
|
4093
|
-
export declare class InvoicedSlots extends OrganizationConnectionBaseEntity {
|
|
4146
|
+
export declare class UserRole extends OrganizationConnectionBaseEntity {
|
|
4094
4147
|
deletedAt?: Date;
|
|
4095
|
-
|
|
4096
|
-
|
|
4097
|
-
|
|
4148
|
+
userId: number;
|
|
4149
|
+
roleId: number;
|
|
4150
|
+
role: Role;
|
|
4151
|
+
user: User;
|
|
4152
|
+
}
|
|
4153
|
+
export declare class CloseShiftDto {
|
|
4154
|
+
closingCashAmount: number;
|
|
4098
4155
|
}
|
|
4099
4156
|
export declare class FindShiftsFiltersDto {
|
|
4100
4157
|
statuses?: string;
|
|
@@ -4116,54 +4173,16 @@ export declare class FindShiftsFormattedFilters {
|
|
|
4116
4173
|
startDate?: Date;
|
|
4117
4174
|
endDate?: Date;
|
|
4118
4175
|
}
|
|
4119
|
-
export declare class
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
-
|
|
4123
|
-
|
|
4124
|
-
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
about: string | null;
|
|
4130
|
-
tagline: string | null;
|
|
4131
|
-
status: number | null;
|
|
4132
|
-
addressId: number | null;
|
|
4133
|
-
merchantId: number | null;
|
|
4134
|
-
userCreatorId: number | null;
|
|
4135
|
-
parentId: number | null;
|
|
4136
|
-
paymentSettings: object | null;
|
|
4137
|
-
settings: object | null;
|
|
4138
|
-
isClaimed: boolean | null;
|
|
4139
|
-
sports: number[] | null;
|
|
4140
|
-
mainMediaId: number | null;
|
|
4141
|
-
deletedAt: Date | null;
|
|
4142
|
-
organizationActivityTypes: number[] | null;
|
|
4143
|
-
organizationTypes: number[] | null;
|
|
4144
|
-
organizationAudienceTypes: number[] | null;
|
|
4145
|
-
organizationGenders: number[] | null;
|
|
4146
|
-
questionnaireId: number | null;
|
|
4147
|
-
membershipQuestionnaireId: number | null;
|
|
4148
|
-
feeRate: number;
|
|
4149
|
-
feeAddDollarRate: number;
|
|
4150
|
-
achFeeRate: number;
|
|
4151
|
-
achFeeAddDollarRate: number;
|
|
4152
|
-
maxAchFee: number;
|
|
4153
|
-
cashFeeRate: number;
|
|
4154
|
-
cashFeeAddDollarRate: number;
|
|
4155
|
-
terminalFeeRate: number;
|
|
4156
|
-
terminalFeeAddDollarRate: number;
|
|
4157
|
-
checkFeeRate: number;
|
|
4158
|
-
checkFeeAddDollarRate: number;
|
|
4159
|
-
otherFeeRate: number;
|
|
4160
|
-
otherFeeAddDollarRate: number;
|
|
4161
|
-
balanceFeeRate: number;
|
|
4162
|
-
balanceFeeAddDollarRate: number;
|
|
4163
|
-
address: Address;
|
|
4164
|
-
mainMedia: Media;
|
|
4165
|
-
brandings: OrganizationBranding[];
|
|
4166
|
-
brandingsV2?: OrganizationBranding[];
|
|
4176
|
+
export declare class ShiftManagementClosingAmount {
|
|
4177
|
+
shiftId: number;
|
|
4178
|
+
managementClosingCashAmount: number;
|
|
4179
|
+
}
|
|
4180
|
+
export declare class ManagementClosingOfShiftsDto {
|
|
4181
|
+
managementClosingData: ShiftManagementClosingAmount[];
|
|
4182
|
+
}
|
|
4183
|
+
export declare class OpenShiftDto {
|
|
4184
|
+
openingCashAmount: number;
|
|
4185
|
+
stationId: number;
|
|
4167
4186
|
}
|
|
4168
4187
|
export declare class Shift extends OrganizationConnectionBaseEntity {
|
|
4169
4188
|
stationId: number;
|
|
@@ -4194,30 +4213,10 @@ export declare class Shift extends OrganizationConnectionBaseEntity {
|
|
|
4194
4213
|
closingManager?: User;
|
|
4195
4214
|
reconcilingUser?: User;
|
|
4196
4215
|
}
|
|
4197
|
-
export declare class
|
|
4198
|
-
|
|
4199
|
-
|
|
4200
|
-
|
|
4201
|
-
|
|
4202
|
-
userId?: number;
|
|
4203
|
-
productId: number;
|
|
4204
|
-
product?: Product;
|
|
4205
|
-
productType: ProductTypesEnum;
|
|
4206
|
-
ordinal?: number;
|
|
4207
|
-
price: number;
|
|
4208
|
-
originalPrice?: number;
|
|
4209
|
-
paidAmount?: number;
|
|
4210
|
-
currency: CurrencyEnum;
|
|
4211
|
-
paymentStatus?: PaymentStatusEnum;
|
|
4212
|
-
isRefunded?: boolean;
|
|
4213
|
-
isTaxInclusive?: boolean;
|
|
4214
|
-
taxPrecent?: number;
|
|
4215
|
-
unitPrice?: number;
|
|
4216
|
-
quantity: number;
|
|
4217
|
-
resources?: PurchasedResourceDto[];
|
|
4218
|
-
relationType?: 'reservation-addon' | 'slots' | 'slot_addons';
|
|
4219
|
-
unitPriceWithTax?: number;
|
|
4220
|
-
unitTaxPrice?: number;
|
|
4221
|
-
parentOrdinal?: number;
|
|
4216
|
+
export declare class FindShiftsByIdsDto {
|
|
4217
|
+
shiftIds: number[];
|
|
4218
|
+
}
|
|
4219
|
+
export declare class OrganizationSettings extends OrganizationConnectionBaseEntity {
|
|
4220
|
+
mainAdminUserId?: number;
|
|
4222
4221
|
}
|
|
4223
4222
|
export {};
|