@bondsports/types 0.0.183 → 0.0.184
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.d.ts +712 -712
- package/build/index.es.js.map +1 -1
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -9,13 +9,6 @@ export declare class BasicActivityTimesDto {
|
|
|
9
9
|
availabilityStartDate?: string;
|
|
10
10
|
availabilityEndDate?: string;
|
|
11
11
|
}
|
|
12
|
-
export declare class FindBookingTypeSettingDto {
|
|
13
|
-
organizationId: number;
|
|
14
|
-
facilityId: number;
|
|
15
|
-
spaceId: number;
|
|
16
|
-
bookingDate: string;
|
|
17
|
-
bookingTime: string;
|
|
18
|
-
}
|
|
19
12
|
export declare class QuestionAnswersDto {
|
|
20
13
|
questionId: number;
|
|
21
14
|
value: any;
|
|
@@ -34,66 +27,12 @@ export declare enum EFailedPaymentReasons {
|
|
|
34
27
|
CARD_BLOCKED = "card_blocked_by_bond",
|
|
35
28
|
UNKNOWN = "unknown"
|
|
36
29
|
}
|
|
37
|
-
export declare class
|
|
38
|
-
|
|
39
|
-
}
|
|
40
|
-
export declare class ImportProductsFromDB {
|
|
41
|
-
buDate: string;
|
|
42
|
-
}
|
|
43
|
-
export declare class ImportCustomerFromCSV {
|
|
44
|
-
fileName: string;
|
|
45
|
-
startIndex?: number;
|
|
46
|
-
}
|
|
47
|
-
export declare class ImportProgramsFileDto extends ImportCustomerFromCSV {
|
|
48
|
-
resolveInvoices: string;
|
|
49
|
-
}
|
|
50
|
-
export declare class ImportDashCustomerDto extends ImportCustomerFromCSV {
|
|
51
|
-
membershipId: number;
|
|
52
|
-
onlyDashIds: string;
|
|
53
|
-
}
|
|
54
|
-
export declare class ImportRentalsFromCSV extends ImportCustomerFromCSV {
|
|
30
|
+
export declare class FindBookingTypeSettingDto {
|
|
31
|
+
organizationId: number;
|
|
55
32
|
facilityId: number;
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
}
|
|
60
|
-
export declare class ByOrganizationIdUserIdDto extends ByOrganizationIdDto {
|
|
61
|
-
userId: number;
|
|
62
|
-
}
|
|
63
|
-
export declare class FindCustomersByOrganizationIdFiltersDto extends PaginationQuery {
|
|
64
|
-
nameSearch?: string;
|
|
65
|
-
fuzzy?: string;
|
|
66
|
-
customerType?: CustomerTypeEnum;
|
|
67
|
-
customersIds?: string;
|
|
68
|
-
}
|
|
69
|
-
export declare class AddCustomerNotesDto {
|
|
70
|
-
customerNotes: CustomerNoteDto[];
|
|
71
|
-
}
|
|
72
|
-
export declare class CustomerNoteDto {
|
|
73
|
-
id?: number;
|
|
74
|
-
description: string;
|
|
75
|
-
pinToTop?: boolean;
|
|
76
|
-
}
|
|
77
|
-
export declare class AddEditCustomerDto {
|
|
78
|
-
firstName?: string;
|
|
79
|
-
lastName?: string;
|
|
80
|
-
entityId?: number;
|
|
81
|
-
entityType?: CustomerTypeEnum;
|
|
82
|
-
email?: string;
|
|
83
|
-
color?: string;
|
|
84
|
-
street?: string;
|
|
85
|
-
city?: string;
|
|
86
|
-
state?: string;
|
|
87
|
-
zip?: string;
|
|
88
|
-
phoneNumber?: string;
|
|
89
|
-
mainMediaId?: number;
|
|
90
|
-
creatorId?: number;
|
|
91
|
-
creatorType?: ResourceNameTypeEnum;
|
|
92
|
-
userCreatorId?: number;
|
|
93
|
-
gender?: GenderEnum;
|
|
94
|
-
birthDate?: string;
|
|
95
|
-
emergencyContactName?: string;
|
|
96
|
-
emergencyContactPhone?: string;
|
|
33
|
+
spaceId: number;
|
|
34
|
+
bookingDate: string;
|
|
35
|
+
bookingTime: string;
|
|
97
36
|
}
|
|
98
37
|
export declare class FindEventByIdDto {
|
|
99
38
|
eventId: number;
|
|
@@ -195,6 +134,38 @@ export declare class FindEventAttendeeOptionsDto extends PaginationRangeQuery {
|
|
|
195
134
|
isWaiverSigned?: string;
|
|
196
135
|
statuses?: string;
|
|
197
136
|
}
|
|
137
|
+
export declare class FindFamilyAccountsDto {
|
|
138
|
+
userId: number;
|
|
139
|
+
}
|
|
140
|
+
export declare class FindFamilyAccountsCustomerDto {
|
|
141
|
+
customerId: number;
|
|
142
|
+
organizationId: number;
|
|
143
|
+
}
|
|
144
|
+
export declare class FindUsersInFamilyAccountDto {
|
|
145
|
+
familyAccountId: number;
|
|
146
|
+
}
|
|
147
|
+
export declare class CreateFamilyAccountDto {
|
|
148
|
+
familyName: string;
|
|
149
|
+
userId: number;
|
|
150
|
+
}
|
|
151
|
+
export declare class UpdateFamilyAccountNameDto {
|
|
152
|
+
familyName: string;
|
|
153
|
+
familyAccountId: number;
|
|
154
|
+
}
|
|
155
|
+
export declare class AddUserToFamilyAccountDto {
|
|
156
|
+
familyAccountId: number;
|
|
157
|
+
isUserAdmin: boolean;
|
|
158
|
+
firstName: string;
|
|
159
|
+
lastName: string;
|
|
160
|
+
gender: GenderEnum;
|
|
161
|
+
birthDate: string;
|
|
162
|
+
sports?: number[];
|
|
163
|
+
email?: string;
|
|
164
|
+
}
|
|
165
|
+
export declare class RemoveUserFromFamilyAccountDto {
|
|
166
|
+
userId: number;
|
|
167
|
+
familyAccountId: number;
|
|
168
|
+
}
|
|
198
169
|
export declare class AddressDto {
|
|
199
170
|
city: string;
|
|
200
171
|
state: string;
|
|
@@ -238,38 +209,6 @@ export declare class UpdateFacilityAmenitiesDto {
|
|
|
238
209
|
export declare class FindFacilitiesOptionsDto extends PaginationQuery {
|
|
239
210
|
nameSearch?: string;
|
|
240
211
|
}
|
|
241
|
-
export declare class FindFamilyAccountsDto {
|
|
242
|
-
userId: number;
|
|
243
|
-
}
|
|
244
|
-
export declare class FindFamilyAccountsCustomerDto {
|
|
245
|
-
customerId: number;
|
|
246
|
-
organizationId: number;
|
|
247
|
-
}
|
|
248
|
-
export declare class FindUsersInFamilyAccountDto {
|
|
249
|
-
familyAccountId: number;
|
|
250
|
-
}
|
|
251
|
-
export declare class CreateFamilyAccountDto {
|
|
252
|
-
familyName: string;
|
|
253
|
-
userId: number;
|
|
254
|
-
}
|
|
255
|
-
export declare class UpdateFamilyAccountNameDto {
|
|
256
|
-
familyName: string;
|
|
257
|
-
familyAccountId: number;
|
|
258
|
-
}
|
|
259
|
-
export declare class AddUserToFamilyAccountDto {
|
|
260
|
-
familyAccountId: number;
|
|
261
|
-
isUserAdmin: boolean;
|
|
262
|
-
firstName: string;
|
|
263
|
-
lastName: string;
|
|
264
|
-
gender: GenderEnum;
|
|
265
|
-
birthDate: string;
|
|
266
|
-
sports?: number[];
|
|
267
|
-
email?: string;
|
|
268
|
-
}
|
|
269
|
-
export declare class RemoveUserFromFamilyAccountDto {
|
|
270
|
-
userId: number;
|
|
271
|
-
familyAccountId: number;
|
|
272
|
-
}
|
|
273
212
|
export declare class FindOneParams {
|
|
274
213
|
id: number;
|
|
275
214
|
}
|
|
@@ -365,62 +304,6 @@ export declare class MoveTeamOrMemberDto implements IMoveSeason {
|
|
|
365
304
|
export declare class MoveTeamOrMembersByCsvDTO {
|
|
366
305
|
fileName: string;
|
|
367
306
|
}
|
|
368
|
-
export declare class CreateMembershipDto {
|
|
369
|
-
organizationId: number;
|
|
370
|
-
name: string;
|
|
371
|
-
description?: string;
|
|
372
|
-
customerTypes: CustomerInMembershipTypeEnum[];
|
|
373
|
-
activity: SportsEnum;
|
|
374
|
-
facilityId: number;
|
|
375
|
-
questionnaires: number[];
|
|
376
|
-
minAgeYears: number;
|
|
377
|
-
maxAgeYears: number;
|
|
378
|
-
gender: GenderEnum;
|
|
379
|
-
maxMembers?: number;
|
|
380
|
-
maxMaleMembers?: number;
|
|
381
|
-
maxFemaleMembers?: number;
|
|
382
|
-
startDate: string;
|
|
383
|
-
endDate: string;
|
|
384
|
-
registrationStartDate?: Date;
|
|
385
|
-
registrationEndDate?: Date;
|
|
386
|
-
membershipType: MembershipTypeEnum;
|
|
387
|
-
durationMonths: number;
|
|
388
|
-
longDescription?: string;
|
|
389
|
-
isAutoRenew?: boolean;
|
|
390
|
-
}
|
|
391
|
-
export declare class UpdateMembrshipDto extends CreateMembershipDto {
|
|
392
|
-
id: number;
|
|
393
|
-
}
|
|
394
|
-
export declare class UpdateMembershipMediaDto {
|
|
395
|
-
membershipId: number;
|
|
396
|
-
mediaId: number;
|
|
397
|
-
}
|
|
398
|
-
export declare class FindMembershipByIdDto {
|
|
399
|
-
membershipId: number;
|
|
400
|
-
}
|
|
401
|
-
export declare class FindMembershipsByOrganizationIdDto {
|
|
402
|
-
organizationId: number;
|
|
403
|
-
}
|
|
404
|
-
export declare class FindMembershipsByUserIdDto {
|
|
405
|
-
userId: number;
|
|
406
|
-
}
|
|
407
|
-
export declare class SetMembersStartDateByOrganization extends FindMembershipsByOrganizationIdDto {
|
|
408
|
-
startDate: string;
|
|
409
|
-
}
|
|
410
|
-
export declare class MembershipIdsDto {
|
|
411
|
-
membershipIds?: number[];
|
|
412
|
-
}
|
|
413
|
-
export declare class MemberIdDto {
|
|
414
|
-
memberId?: number;
|
|
415
|
-
}
|
|
416
|
-
export declare class FindMembersOptionsDto extends PaginationQuery {
|
|
417
|
-
nameEmailSearch?: string;
|
|
418
|
-
pastMemberships?: string;
|
|
419
|
-
}
|
|
420
|
-
export declare class CancelMembershipDto {
|
|
421
|
-
isImmediatelyCancel: boolean;
|
|
422
|
-
cancellationReason?: string;
|
|
423
|
-
}
|
|
424
307
|
export declare class CreateEntitlementTermsDto {
|
|
425
308
|
organizationId: number;
|
|
426
309
|
entitlementGroupId: number;
|
|
@@ -684,46 +567,84 @@ export declare class createResourceDto {
|
|
|
684
567
|
export declare class archiveDto {
|
|
685
568
|
isArchive: boolean;
|
|
686
569
|
}
|
|
687
|
-
export declare class
|
|
570
|
+
export declare class CreateMembershipDto {
|
|
688
571
|
organizationId: number;
|
|
689
|
-
parentProductId: number;
|
|
690
|
-
variantTitles: VariantTitleDto[];
|
|
691
|
-
variants: VariantDto[];
|
|
692
|
-
}
|
|
693
|
-
export declare class VariantTitleDto {
|
|
694
|
-
titleName: string;
|
|
695
|
-
titleId: number;
|
|
696
|
-
}
|
|
697
|
-
export declare class VariantDto {
|
|
698
572
|
name: string;
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
573
|
+
description?: string;
|
|
574
|
+
customerTypes: CustomerInMembershipTypeEnum[];
|
|
575
|
+
activity: SportsEnum;
|
|
576
|
+
facilityId: number;
|
|
577
|
+
questionnaires: number[];
|
|
578
|
+
minAgeYears: number;
|
|
579
|
+
maxAgeYears: number;
|
|
580
|
+
gender: GenderEnum;
|
|
581
|
+
maxMembers?: number;
|
|
582
|
+
maxMaleMembers?: number;
|
|
583
|
+
maxFemaleMembers?: number;
|
|
584
|
+
startDate: string;
|
|
585
|
+
endDate: string;
|
|
586
|
+
registrationStartDate?: Date;
|
|
587
|
+
registrationEndDate?: Date;
|
|
588
|
+
membershipType: MembershipTypeEnum;
|
|
589
|
+
durationMonths: number;
|
|
590
|
+
longDescription?: string;
|
|
591
|
+
isAutoRenew?: boolean;
|
|
704
592
|
}
|
|
705
|
-
export declare class
|
|
706
|
-
|
|
593
|
+
export declare class UpdateMembrshipDto extends CreateMembershipDto {
|
|
594
|
+
id: number;
|
|
707
595
|
}
|
|
708
|
-
export declare class
|
|
709
|
-
|
|
710
|
-
|
|
596
|
+
export declare class UpdateMembershipMediaDto {
|
|
597
|
+
membershipId: number;
|
|
598
|
+
mediaId: number;
|
|
711
599
|
}
|
|
712
|
-
export declare class
|
|
600
|
+
export declare class FindMembershipByIdDto {
|
|
601
|
+
membershipId: number;
|
|
602
|
+
}
|
|
603
|
+
export declare class FindMembershipsByOrganizationIdDto {
|
|
713
604
|
organizationId: number;
|
|
714
605
|
}
|
|
715
|
-
export declare class
|
|
716
|
-
|
|
606
|
+
export declare class FindMembershipsByUserIdDto {
|
|
607
|
+
userId: number;
|
|
717
608
|
}
|
|
718
|
-
export declare class
|
|
719
|
-
|
|
609
|
+
export declare class SetMembersStartDateByOrganization extends FindMembershipsByOrganizationIdDto {
|
|
610
|
+
startDate: string;
|
|
720
611
|
}
|
|
721
|
-
export declare class
|
|
722
|
-
|
|
612
|
+
export declare class MembershipIdsDto {
|
|
613
|
+
membershipIds?: number[];
|
|
723
614
|
}
|
|
724
|
-
export declare class
|
|
725
|
-
|
|
726
|
-
|
|
615
|
+
export declare class MemberIdDto {
|
|
616
|
+
memberId?: number;
|
|
617
|
+
}
|
|
618
|
+
export declare class FindMembersOptionsDto extends PaginationQuery {
|
|
619
|
+
nameEmailSearch?: string;
|
|
620
|
+
pastMemberships?: string;
|
|
621
|
+
}
|
|
622
|
+
export declare class CancelMembershipDto {
|
|
623
|
+
isImmediatelyCancel: boolean;
|
|
624
|
+
cancellationReason?: string;
|
|
625
|
+
}
|
|
626
|
+
export declare class FindProgramSeasonsByProgramIdDto {
|
|
627
|
+
programId: number;
|
|
628
|
+
}
|
|
629
|
+
export declare class FindSessionsFiltersDto {
|
|
630
|
+
status?: PublishingStatusEnum;
|
|
631
|
+
isFullFetch?: boolean;
|
|
632
|
+
}
|
|
633
|
+
export declare class FindSessionsByProgramAndOrganizationDto extends FindProgramSeasonsByProgramIdDto {
|
|
634
|
+
organizationId: number;
|
|
635
|
+
}
|
|
636
|
+
export declare class DeleteEventAttendeesDto {
|
|
637
|
+
eventAttendeeIds: string;
|
|
638
|
+
}
|
|
639
|
+
export declare class FindProgramSeasonByIdQueryDto {
|
|
640
|
+
includeResources?: boolean;
|
|
641
|
+
}
|
|
642
|
+
export declare class FindProgramSeasonByIdDto extends OptionalFindByOrganizationIdDto {
|
|
643
|
+
seasonId: number;
|
|
644
|
+
}
|
|
645
|
+
export declare class FindSeasonEventsQueryDto {
|
|
646
|
+
startDateFilter?: EComparisonFilter;
|
|
647
|
+
endDateFilter?: EComparisonFilter;
|
|
727
648
|
}
|
|
728
649
|
export declare class DeleteProgramSeasonByIDDto extends ByOrganizationIdDto {
|
|
729
650
|
seasonId: number;
|
|
@@ -937,6 +858,24 @@ export declare class ProgramHighlightDto {
|
|
|
937
858
|
type: ProgramHighlightTypeEnum;
|
|
938
859
|
title: string;
|
|
939
860
|
}
|
|
861
|
+
export declare class CreateUpdateVariantsDto {
|
|
862
|
+
organizationId: number;
|
|
863
|
+
parentProductId: number;
|
|
864
|
+
variantTitles: VariantTitleDto[];
|
|
865
|
+
variants: VariantDto[];
|
|
866
|
+
}
|
|
867
|
+
export declare class VariantTitleDto {
|
|
868
|
+
titleName: string;
|
|
869
|
+
titleId: number;
|
|
870
|
+
}
|
|
871
|
+
export declare class VariantDto {
|
|
872
|
+
name: string;
|
|
873
|
+
price: number;
|
|
874
|
+
variantId: number;
|
|
875
|
+
currency: CurrencyEnum;
|
|
876
|
+
startDate: Date;
|
|
877
|
+
endDate: Date;
|
|
878
|
+
}
|
|
940
879
|
export declare class PurchasePaymentDto {
|
|
941
880
|
token: string;
|
|
942
881
|
type: PaymentMethodTypeEnum;
|
|
@@ -1014,6 +953,67 @@ export declare class ValidateParticipantDto {
|
|
|
1014
953
|
customerIds: number[];
|
|
1015
954
|
products: PurchaseProductDto[];
|
|
1016
955
|
}
|
|
956
|
+
export declare class FindByMembershipIdDto extends ByOrganizationIdDto {
|
|
957
|
+
membershipId: number;
|
|
958
|
+
}
|
|
959
|
+
export declare class ImportProductsFromDB {
|
|
960
|
+
buDate: string;
|
|
961
|
+
}
|
|
962
|
+
export declare class ImportCustomerFromCSV {
|
|
963
|
+
fileName: string;
|
|
964
|
+
startIndex?: number;
|
|
965
|
+
}
|
|
966
|
+
export declare class ImportProgramsFileDto extends ImportCustomerFromCSV {
|
|
967
|
+
resolveInvoices: string;
|
|
968
|
+
}
|
|
969
|
+
export declare class ImportDashCustomerDto extends ImportCustomerFromCSV {
|
|
970
|
+
membershipId: number;
|
|
971
|
+
onlyDashIds: string;
|
|
972
|
+
}
|
|
973
|
+
export declare class ImportRentalsFromCSV extends ImportCustomerFromCSV {
|
|
974
|
+
facilityId: number;
|
|
975
|
+
}
|
|
976
|
+
export declare class ByOrganizationIdCustomerIdDto extends ByOrganizationIdDto {
|
|
977
|
+
customerId: number;
|
|
978
|
+
}
|
|
979
|
+
export declare class ByOrganizationIdUserIdDto extends ByOrganizationIdDto {
|
|
980
|
+
userId: number;
|
|
981
|
+
}
|
|
982
|
+
export declare class FindCustomersByOrganizationIdFiltersDto extends PaginationQuery {
|
|
983
|
+
nameSearch?: string;
|
|
984
|
+
fuzzy?: string;
|
|
985
|
+
customerType?: CustomerTypeEnum;
|
|
986
|
+
customersIds?: string;
|
|
987
|
+
}
|
|
988
|
+
export declare class AddCustomerNotesDto {
|
|
989
|
+
customerNotes: CustomerNoteDto[];
|
|
990
|
+
}
|
|
991
|
+
export declare class CustomerNoteDto {
|
|
992
|
+
id?: number;
|
|
993
|
+
description: string;
|
|
994
|
+
pinToTop?: boolean;
|
|
995
|
+
}
|
|
996
|
+
export declare class AddEditCustomerDto {
|
|
997
|
+
firstName?: string;
|
|
998
|
+
lastName?: string;
|
|
999
|
+
entityId?: number;
|
|
1000
|
+
entityType?: CustomerTypeEnum;
|
|
1001
|
+
email?: string;
|
|
1002
|
+
color?: string;
|
|
1003
|
+
street?: string;
|
|
1004
|
+
city?: string;
|
|
1005
|
+
state?: string;
|
|
1006
|
+
zip?: string;
|
|
1007
|
+
phoneNumber?: string;
|
|
1008
|
+
mainMediaId?: number;
|
|
1009
|
+
creatorId?: number;
|
|
1010
|
+
creatorType?: ResourceNameTypeEnum;
|
|
1011
|
+
userCreatorId?: number;
|
|
1012
|
+
gender?: GenderEnum;
|
|
1013
|
+
birthDate?: string;
|
|
1014
|
+
emergencyContactName?: string;
|
|
1015
|
+
emergencyContactPhone?: string;
|
|
1016
|
+
}
|
|
1017
1017
|
export declare class CreateResourceGroupDto {
|
|
1018
1018
|
name: string;
|
|
1019
1019
|
parentSlotId: number;
|
|
@@ -1022,10 +1022,6 @@ export declare class CreateResourceGroupDto {
|
|
|
1022
1022
|
}
|
|
1023
1023
|
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
1024
1024
|
}
|
|
1025
|
-
export declare class ResourceDto {
|
|
1026
|
-
type: ResourceNameTypeEnum;
|
|
1027
|
-
id: number;
|
|
1028
|
-
}
|
|
1029
1025
|
export declare class SpaceByIdDto {
|
|
1030
1026
|
spaceId: number;
|
|
1031
1027
|
}
|
|
@@ -1092,6 +1088,10 @@ export declare class AddACHTokenToCustomerDto {
|
|
|
1092
1088
|
publicToken: string;
|
|
1093
1089
|
accountId: string;
|
|
1094
1090
|
}
|
|
1091
|
+
export declare class ResourceDto {
|
|
1092
|
+
type: ResourceNameTypeEnum;
|
|
1093
|
+
id: number;
|
|
1094
|
+
}
|
|
1095
1095
|
export declare class FindByUserIdDto {
|
|
1096
1096
|
userId: number;
|
|
1097
1097
|
}
|
|
@@ -1127,6 +1127,17 @@ export declare class ActivityTimes extends BondBaseEntity {
|
|
|
1127
1127
|
proudct: Product;
|
|
1128
1128
|
event: Event;
|
|
1129
1129
|
}
|
|
1130
|
+
export declare class Address extends BondBaseEntity {
|
|
1131
|
+
city?: string;
|
|
1132
|
+
street?: string;
|
|
1133
|
+
streetNum?: string;
|
|
1134
|
+
aptNum?: string;
|
|
1135
|
+
zip?: string;
|
|
1136
|
+
country?: string;
|
|
1137
|
+
state?: string;
|
|
1138
|
+
geo: any;
|
|
1139
|
+
deletedAt?: Date;
|
|
1140
|
+
}
|
|
1130
1141
|
export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
1131
1142
|
questionId: number;
|
|
1132
1143
|
question?: Questions;
|
|
@@ -1140,22 +1151,22 @@ export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
|
1140
1151
|
metaData: any | null;
|
|
1141
1152
|
questionText: string | null;
|
|
1142
1153
|
}
|
|
1143
|
-
export declare class
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
zip?: string;
|
|
1149
|
-
country?: string;
|
|
1150
|
-
state?: string;
|
|
1151
|
-
geo: any;
|
|
1152
|
-
deletedAt?: Date;
|
|
1154
|
+
export declare class AnswerTitle extends OrganizationConnectionBaseEntity {
|
|
1155
|
+
questionnaireId: number;
|
|
1156
|
+
userId?: number;
|
|
1157
|
+
answers: Answer[];
|
|
1158
|
+
questionnaire: Questionnaires;
|
|
1153
1159
|
}
|
|
1154
1160
|
export declare class Athlete extends BondBaseEntity {
|
|
1155
1161
|
userId: number | null;
|
|
1156
1162
|
metadata: object | null;
|
|
1157
1163
|
athleteSports: AthleteSports[];
|
|
1158
1164
|
}
|
|
1165
|
+
export declare class AthleteSports extends BondBaseEntity {
|
|
1166
|
+
athleteId: number | null;
|
|
1167
|
+
sports: number | null;
|
|
1168
|
+
levelOfPlay: LevelOfPlayEnum | null;
|
|
1169
|
+
}
|
|
1159
1170
|
export declare class BlockedDate extends BondBaseEntity {
|
|
1160
1171
|
entityType: ResourceNameTypeEnum;
|
|
1161
1172
|
entityId: number;
|
|
@@ -1164,16 +1175,26 @@ export declare class BlockedDate extends BondBaseEntity {
|
|
|
1164
1175
|
endDate: Date;
|
|
1165
1176
|
deletedAt?: Date;
|
|
1166
1177
|
}
|
|
1167
|
-
export declare class AthleteSports extends BondBaseEntity {
|
|
1168
|
-
athleteId: number | null;
|
|
1169
|
-
sports: number | null;
|
|
1170
|
-
levelOfPlay: LevelOfPlayEnum | null;
|
|
1171
|
-
}
|
|
1172
1178
|
export declare class BondBaseEntity extends BaseEntity {
|
|
1173
1179
|
id: number;
|
|
1174
1180
|
createdAt: Date;
|
|
1175
1181
|
updatedAt: Date;
|
|
1176
1182
|
}
|
|
1183
|
+
export declare class Configuration extends BondBaseEntity {
|
|
1184
|
+
area: string;
|
|
1185
|
+
key: string;
|
|
1186
|
+
value: string;
|
|
1187
|
+
}
|
|
1188
|
+
export declare class BookingTypeSetting extends OrganizationConnectionBaseEntity {
|
|
1189
|
+
parentId: number;
|
|
1190
|
+
parentType: ResourceNameTypeEnum;
|
|
1191
|
+
startDate: Date;
|
|
1192
|
+
endDate: Date;
|
|
1193
|
+
dayOfWeek: number;
|
|
1194
|
+
startTimeInDay: string;
|
|
1195
|
+
endTimeInDay: string;
|
|
1196
|
+
directBookingFor: DirectBookingTypesEnum;
|
|
1197
|
+
}
|
|
1177
1198
|
export declare class BookedSessions extends BondBaseEntity {
|
|
1178
1199
|
reservationId?: number;
|
|
1179
1200
|
color?: string;
|
|
@@ -1192,21 +1213,6 @@ export declare class BookedSessions extends BondBaseEntity {
|
|
|
1192
1213
|
publicNotes?: string;
|
|
1193
1214
|
slotType?: SlotTypeEnum;
|
|
1194
1215
|
}
|
|
1195
|
-
export declare class BookingTypeSetting extends OrganizationConnectionBaseEntity {
|
|
1196
|
-
parentId: number;
|
|
1197
|
-
parentType: ResourceNameTypeEnum;
|
|
1198
|
-
startDate: Date;
|
|
1199
|
-
endDate: Date;
|
|
1200
|
-
dayOfWeek: number;
|
|
1201
|
-
startTimeInDay: string;
|
|
1202
|
-
endTimeInDay: string;
|
|
1203
|
-
directBookingFor: DirectBookingTypesEnum;
|
|
1204
|
-
}
|
|
1205
|
-
export declare class Configuration extends BondBaseEntity {
|
|
1206
|
-
area: string;
|
|
1207
|
-
key: string;
|
|
1208
|
-
value: string;
|
|
1209
|
-
}
|
|
1210
1216
|
export declare class Connection extends BondBaseEntity {
|
|
1211
1217
|
connType: number | null;
|
|
1212
1218
|
from: number | null;
|
|
@@ -1227,6 +1233,24 @@ export declare class CreditNote extends OrganizationConnectionBaseEntity {
|
|
|
1227
1233
|
invoiceId: number;
|
|
1228
1234
|
creditPaymentId: number;
|
|
1229
1235
|
}
|
|
1236
|
+
export declare class CustomerCreditTransaction extends OrganizationConnectionBaseEntity {
|
|
1237
|
+
customerId: number;
|
|
1238
|
+
userId: number;
|
|
1239
|
+
amount: number;
|
|
1240
|
+
paymentId?: number;
|
|
1241
|
+
invoiceId?: number;
|
|
1242
|
+
description?: string;
|
|
1243
|
+
deletedAt?: Date;
|
|
1244
|
+
customer: Customer;
|
|
1245
|
+
invoice: Invoice;
|
|
1246
|
+
payment: Payment;
|
|
1247
|
+
}
|
|
1248
|
+
export declare class CustomerNote extends OrganizationConnectionBaseEntity {
|
|
1249
|
+
customerId?: number;
|
|
1250
|
+
description: string;
|
|
1251
|
+
pinToTop?: boolean;
|
|
1252
|
+
customer: Customer;
|
|
1253
|
+
}
|
|
1230
1254
|
export declare class Customer extends OrganizationConnectionBaseEntity {
|
|
1231
1255
|
name: string | null;
|
|
1232
1256
|
entityId: number | null;
|
|
@@ -1255,24 +1279,6 @@ export declare class Customer extends OrganizationConnectionBaseEntity {
|
|
|
1255
1279
|
mainMedia: Media;
|
|
1256
1280
|
reservations?: Reservation[];
|
|
1257
1281
|
}
|
|
1258
|
-
export declare class CustomerCreditTransaction extends OrganizationConnectionBaseEntity {
|
|
1259
|
-
customerId: number;
|
|
1260
|
-
userId: number;
|
|
1261
|
-
amount: number;
|
|
1262
|
-
paymentId?: number;
|
|
1263
|
-
invoiceId?: number;
|
|
1264
|
-
description?: string;
|
|
1265
|
-
deletedAt?: Date;
|
|
1266
|
-
customer: Customer;
|
|
1267
|
-
invoice: Invoice;
|
|
1268
|
-
payment: Payment;
|
|
1269
|
-
}
|
|
1270
|
-
export declare class CustomerNote extends OrganizationConnectionBaseEntity {
|
|
1271
|
-
customerId?: number;
|
|
1272
|
-
description: string;
|
|
1273
|
-
pinToTop?: boolean;
|
|
1274
|
-
customer: Customer;
|
|
1275
|
-
}
|
|
1276
1282
|
export declare class Division extends BondBaseEntity {
|
|
1277
1283
|
name: string;
|
|
1278
1284
|
ordinal?: number;
|
|
@@ -1290,10 +1296,6 @@ export declare class EmergencyContact extends OrganizationConnectionBaseEntity {
|
|
|
1290
1296
|
export declare class EntitlementGroup extends OrganizationConnectionBaseEntity {
|
|
1291
1297
|
name: string | null;
|
|
1292
1298
|
}
|
|
1293
|
-
export declare class EntitlementTerms extends OrganizationConnectionBaseEntity {
|
|
1294
|
-
groupId: number;
|
|
1295
|
-
terms: IEntitlementTerms[];
|
|
1296
|
-
}
|
|
1297
1299
|
export declare class EventAttendee extends BondBaseEntity {
|
|
1298
1300
|
status: RequestStatusEnum | null;
|
|
1299
1301
|
hasPaid: boolean | null;
|
|
@@ -1309,6 +1311,10 @@ export declare class EventAttendee extends BondBaseEntity {
|
|
|
1309
1311
|
event: Event;
|
|
1310
1312
|
purchasedResource: PurchasedResource;
|
|
1311
1313
|
}
|
|
1314
|
+
export declare class EntitlementTerms extends OrganizationConnectionBaseEntity {
|
|
1315
|
+
groupId: number;
|
|
1316
|
+
terms: IEntitlementTerms[];
|
|
1317
|
+
}
|
|
1312
1318
|
export declare class Event extends OrganizationConnectionBaseEntity {
|
|
1313
1319
|
constructor();
|
|
1314
1320
|
defineCalculatedDateTimeProps(): void;
|
|
@@ -1395,6 +1401,10 @@ export declare class FacilityToResource extends BondBaseEntity {
|
|
|
1395
1401
|
facilityId: number;
|
|
1396
1402
|
resourceId: number;
|
|
1397
1403
|
}
|
|
1404
|
+
export declare class FamilyAccount extends BondBaseEntity {
|
|
1405
|
+
name: string | null;
|
|
1406
|
+
userInFamilyAccounts: UserInFamilyAccount[];
|
|
1407
|
+
}
|
|
1398
1408
|
export declare class FutureInstallment extends OrganizationConnectionBaseEntity {
|
|
1399
1409
|
userId: number;
|
|
1400
1410
|
invoiceId: number;
|
|
@@ -1406,13 +1416,25 @@ export declare class FutureInstallment extends OrganizationConnectionBaseEntity
|
|
|
1406
1416
|
chargedAt?: Date;
|
|
1407
1417
|
originalPlannedDate?: Date;
|
|
1408
1418
|
}
|
|
1409
|
-
export declare class FamilyAccount extends BondBaseEntity {
|
|
1410
|
-
name: string | null;
|
|
1411
|
-
userInFamilyAccounts: UserInFamilyAccount[];
|
|
1412
|
-
}
|
|
1413
1419
|
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1414
1420
|
code: string;
|
|
1415
1421
|
}
|
|
1422
|
+
export declare class Group extends BondBaseEntity {
|
|
1423
|
+
name: string;
|
|
1424
|
+
description?: string;
|
|
1425
|
+
status: GroupStatusEnum;
|
|
1426
|
+
maxCapacity?: number;
|
|
1427
|
+
mainMediaId?: number;
|
|
1428
|
+
minAgeYears?: number;
|
|
1429
|
+
maxAgeYears?: number;
|
|
1430
|
+
gender: GenderEnum;
|
|
1431
|
+
levelOfPlay?: LevelOfPlayEnum[];
|
|
1432
|
+
sports: SportsEnum[];
|
|
1433
|
+
questionnaires?: number[];
|
|
1434
|
+
captainUserId?: number;
|
|
1435
|
+
members: ISeasonAttendeeInfo[];
|
|
1436
|
+
users: User[];
|
|
1437
|
+
}
|
|
1416
1438
|
export declare class GroupItemsPricing extends OrganizationConnectionBaseEntity {
|
|
1417
1439
|
groupId: number;
|
|
1418
1440
|
itemId: number;
|
|
@@ -1431,22 +1453,6 @@ export declare class GroupsInDivisions extends BondBaseEntity {
|
|
|
1431
1453
|
divisionId: number;
|
|
1432
1454
|
deletedAt?: Date;
|
|
1433
1455
|
}
|
|
1434
|
-
export declare class Group extends BondBaseEntity {
|
|
1435
|
-
name: string;
|
|
1436
|
-
description?: string;
|
|
1437
|
-
status: GroupStatusEnum;
|
|
1438
|
-
maxCapacity?: number;
|
|
1439
|
-
mainMediaId?: number;
|
|
1440
|
-
minAgeYears?: number;
|
|
1441
|
-
maxAgeYears?: number;
|
|
1442
|
-
gender: GenderEnum;
|
|
1443
|
-
levelOfPlay?: LevelOfPlayEnum[];
|
|
1444
|
-
sports: SportsEnum[];
|
|
1445
|
-
questionnaires?: number[];
|
|
1446
|
-
captainUserId?: number;
|
|
1447
|
-
members: ISeasonAttendeeInfo[];
|
|
1448
|
-
users: User[];
|
|
1449
|
-
}
|
|
1450
1456
|
export declare class Invoice extends BondBaseEntity {
|
|
1451
1457
|
invoiceId: string | null;
|
|
1452
1458
|
price: number | null;
|
|
@@ -1471,16 +1477,14 @@ export declare class Invoice extends BondBaseEntity {
|
|
|
1471
1477
|
invoiceNotes: InvoiceNote[];
|
|
1472
1478
|
slots: Slot[];
|
|
1473
1479
|
}
|
|
1474
|
-
export declare class
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1480
|
+
export declare class InvoiceNote extends OrganizationConnectionBaseEntity {
|
|
1481
|
+
content: string;
|
|
1482
|
+
creatingUserId: number;
|
|
1483
|
+
user: User;
|
|
1484
|
+
isPublic: boolean;
|
|
1485
|
+
deletedAt: Date;
|
|
1479
1486
|
invoiceId: number;
|
|
1480
|
-
|
|
1481
|
-
sendingUserId: number;
|
|
1482
|
-
mailParams?: any;
|
|
1483
|
-
memo?: string;
|
|
1487
|
+
invoice: Invoice;
|
|
1484
1488
|
}
|
|
1485
1489
|
export declare class InvoiceToPayment extends BondBaseEntity {
|
|
1486
1490
|
invoiceId: number;
|
|
@@ -1490,40 +1494,16 @@ export declare class InvoiceToPayment extends BondBaseEntity {
|
|
|
1490
1494
|
paidAmount?: number;
|
|
1491
1495
|
currency: CurrencyEnum;
|
|
1492
1496
|
}
|
|
1493
|
-
export declare class
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
deletedAt: Date;
|
|
1497
|
+
export declare class InvoiceMails extends OrganizationConnectionBaseEntity {
|
|
1498
|
+
email: string;
|
|
1499
|
+
status: EEmailStatus;
|
|
1500
|
+
templateId: string;
|
|
1501
|
+
userId: number;
|
|
1499
1502
|
invoiceId: number;
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
description: string | null;
|
|
1505
|
-
allowBookingRequest: boolean | null;
|
|
1506
|
-
addressName: string | null;
|
|
1507
|
-
shortDescription: string | null;
|
|
1508
|
-
waiverDoc: string | null;
|
|
1509
|
-
bookingStateStatus: number | null;
|
|
1510
|
-
timezone: string | null;
|
|
1511
|
-
shortUrl: string | null;
|
|
1512
|
-
leagueType: string | null;
|
|
1513
|
-
addressId: number | null;
|
|
1514
|
-
sportConfigData: any | null;
|
|
1515
|
-
creatorId: number | null;
|
|
1516
|
-
creatorType: string | null;
|
|
1517
|
-
userCreatorId: number | null;
|
|
1518
|
-
ownerId: number | null;
|
|
1519
|
-
sports: number[] | null;
|
|
1520
|
-
mainMediaId: number | null;
|
|
1521
|
-
publishedDate: Date | null;
|
|
1522
|
-
isPublished: boolean | null;
|
|
1523
|
-
isVerified: boolean | null;
|
|
1524
|
-
questionnaireId: number | null;
|
|
1525
|
-
logo?: Media;
|
|
1526
|
-
seasons: LeagueSeason[];
|
|
1503
|
+
paymentId: number;
|
|
1504
|
+
sendingUserId: number;
|
|
1505
|
+
mailParams?: any;
|
|
1506
|
+
memo?: string;
|
|
1527
1507
|
}
|
|
1528
1508
|
export declare class LeagueSeason extends BondBaseEntity {
|
|
1529
1509
|
leagueId: number | null;
|
|
@@ -1579,6 +1559,48 @@ export declare class LineItemHistory extends BondBaseEntity {
|
|
|
1579
1559
|
payment: Payment;
|
|
1580
1560
|
lineItem: LineItems;
|
|
1581
1561
|
}
|
|
1562
|
+
export declare class League extends OrganizationConnectionBaseEntity {
|
|
1563
|
+
name: string | null;
|
|
1564
|
+
description: string | null;
|
|
1565
|
+
allowBookingRequest: boolean | null;
|
|
1566
|
+
addressName: string | null;
|
|
1567
|
+
shortDescription: string | null;
|
|
1568
|
+
waiverDoc: string | null;
|
|
1569
|
+
bookingStateStatus: number | null;
|
|
1570
|
+
timezone: string | null;
|
|
1571
|
+
shortUrl: string | null;
|
|
1572
|
+
leagueType: string | null;
|
|
1573
|
+
addressId: number | null;
|
|
1574
|
+
sportConfigData: any | null;
|
|
1575
|
+
creatorId: number | null;
|
|
1576
|
+
creatorType: string | null;
|
|
1577
|
+
userCreatorId: number | null;
|
|
1578
|
+
ownerId: number | null;
|
|
1579
|
+
sports: number[] | null;
|
|
1580
|
+
mainMediaId: number | null;
|
|
1581
|
+
publishedDate: Date | null;
|
|
1582
|
+
isPublished: boolean | null;
|
|
1583
|
+
isVerified: boolean | null;
|
|
1584
|
+
questionnaireId: number | null;
|
|
1585
|
+
logo?: Media;
|
|
1586
|
+
seasons: LeagueSeason[];
|
|
1587
|
+
}
|
|
1588
|
+
export declare class LinkedAccounts extends BondBaseEntity {
|
|
1589
|
+
id: number;
|
|
1590
|
+
provider: string;
|
|
1591
|
+
providerId: string | null;
|
|
1592
|
+
parentId: number | null;
|
|
1593
|
+
parentType: string | null;
|
|
1594
|
+
status: number | null;
|
|
1595
|
+
token: string | null;
|
|
1596
|
+
refreshToken: string | null;
|
|
1597
|
+
tokenCreatedAt: Date | null;
|
|
1598
|
+
tokenValidUpTo: Date | null;
|
|
1599
|
+
createdAt: Date;
|
|
1600
|
+
updatedAt: Date;
|
|
1601
|
+
user: User;
|
|
1602
|
+
userId: number | null;
|
|
1603
|
+
}
|
|
1582
1604
|
export declare class LineItems extends BondBaseEntity {
|
|
1583
1605
|
constructor();
|
|
1584
1606
|
defineIsReverted(): void;
|
|
@@ -1634,22 +1656,6 @@ export declare class LineItems extends BondBaseEntity {
|
|
|
1634
1656
|
displayUnitPrice?: number;
|
|
1635
1657
|
displayQuantity?: number;
|
|
1636
1658
|
}
|
|
1637
|
-
export declare class LinkedAccounts extends BondBaseEntity {
|
|
1638
|
-
id: number;
|
|
1639
|
-
provider: string;
|
|
1640
|
-
providerId: string | null;
|
|
1641
|
-
parentId: number | null;
|
|
1642
|
-
parentType: string | null;
|
|
1643
|
-
status: number | null;
|
|
1644
|
-
token: string | null;
|
|
1645
|
-
refreshToken: string | null;
|
|
1646
|
-
tokenCreatedAt: Date | null;
|
|
1647
|
-
tokenValidUpTo: Date | null;
|
|
1648
|
-
createdAt: Date;
|
|
1649
|
-
updatedAt: Date;
|
|
1650
|
-
user: User;
|
|
1651
|
-
userId: number | null;
|
|
1652
|
-
}
|
|
1653
1659
|
export declare class Media extends BondBaseEntity {
|
|
1654
1660
|
url: string;
|
|
1655
1661
|
name: string | null;
|
|
@@ -1697,12 +1703,6 @@ export declare class Membership extends OrganizationConnectionBaseEntity {
|
|
|
1697
1703
|
isAutoRenew?: boolean;
|
|
1698
1704
|
purchasedResources: PurchasedResource[];
|
|
1699
1705
|
}
|
|
1700
|
-
export declare class NotificationSubscriptions extends OrganizationConnectionBaseEntity {
|
|
1701
|
-
email: string | null;
|
|
1702
|
-
notificationType: NotificationTypeEnum | null;
|
|
1703
|
-
resourceId: number | null;
|
|
1704
|
-
resourceType: string | null;
|
|
1705
|
-
}
|
|
1706
1706
|
export declare class MembershipMember extends OrganizationConnectionBaseEntity {
|
|
1707
1707
|
membership: Membership;
|
|
1708
1708
|
membershipId: number;
|
|
@@ -1723,6 +1723,12 @@ export declare class MembershipMember extends OrganizationConnectionBaseEntity {
|
|
|
1723
1723
|
cancellationStatus?: CancellationStatusEnum;
|
|
1724
1724
|
isImported?: boolean;
|
|
1725
1725
|
}
|
|
1726
|
+
export declare class NotificationSubscriptions extends OrganizationConnectionBaseEntity {
|
|
1727
|
+
email: string | null;
|
|
1728
|
+
notificationType: NotificationTypeEnum | null;
|
|
1729
|
+
resourceId: number | null;
|
|
1730
|
+
resourceType: string | null;
|
|
1731
|
+
}
|
|
1726
1732
|
export declare class OpeningTime extends OrganizationConnectionBaseEntity {
|
|
1727
1733
|
id: number;
|
|
1728
1734
|
dayOfWeek: number;
|
|
@@ -1737,12 +1743,6 @@ export declare class OpeningTime extends OrganizationConnectionBaseEntity {
|
|
|
1737
1743
|
export declare class OrganizationConnectionBaseEntity extends BondBaseEntity {
|
|
1738
1744
|
organizationId: number;
|
|
1739
1745
|
}
|
|
1740
|
-
export declare class PasswordReset extends BondBaseEntity {
|
|
1741
|
-
token: string | null;
|
|
1742
|
-
userId: number | null;
|
|
1743
|
-
validUntil: Date | null;
|
|
1744
|
-
active: boolean | null;
|
|
1745
|
-
}
|
|
1746
1746
|
export declare class PackageV1 extends BondBaseEntity {
|
|
1747
1747
|
name?: string;
|
|
1748
1748
|
description?: string;
|
|
@@ -1760,6 +1760,12 @@ export declare class PackageV1 extends BondBaseEntity {
|
|
|
1760
1760
|
isMandatory: boolean;
|
|
1761
1761
|
productId: number;
|
|
1762
1762
|
}
|
|
1763
|
+
export declare class PasswordReset extends BondBaseEntity {
|
|
1764
|
+
token: string | null;
|
|
1765
|
+
userId: number | null;
|
|
1766
|
+
validUntil: Date | null;
|
|
1767
|
+
active: boolean | null;
|
|
1768
|
+
}
|
|
1763
1769
|
export declare class Payment extends OrganizationConnectionBaseEntity {
|
|
1764
1770
|
price: number;
|
|
1765
1771
|
paymentProcessorId: string;
|
|
@@ -1806,6 +1812,12 @@ export declare class PaymentNote extends OrganizationConnectionBaseEntity {
|
|
|
1806
1812
|
paymentId: number;
|
|
1807
1813
|
payment: Payment;
|
|
1808
1814
|
}
|
|
1815
|
+
export declare class PaymentPlanSchedule extends OrganizationConnectionBaseEntity {
|
|
1816
|
+
paymentPlanId: number;
|
|
1817
|
+
paymentDate: Date;
|
|
1818
|
+
deletedAt?: Date;
|
|
1819
|
+
paymentPlan: ProductPaymentPlan;
|
|
1820
|
+
}
|
|
1809
1821
|
export declare class PaymentV1 extends BondBaseEntity {
|
|
1810
1822
|
userId: number | null;
|
|
1811
1823
|
ownerId: number | null;
|
|
@@ -1824,6 +1836,21 @@ export declare class PaymentV1 extends BondBaseEntity {
|
|
|
1824
1836
|
installmentId: number | null;
|
|
1825
1837
|
invoiceId: string | null;
|
|
1826
1838
|
}
|
|
1839
|
+
export declare class ProductPackage extends OrganizationConnectionBaseEntity {
|
|
1840
|
+
parentProductId: number;
|
|
1841
|
+
childProductId: number;
|
|
1842
|
+
relationType: PackageProductsRelationTypeEnum;
|
|
1843
|
+
timePeriod: AddonTimePeriodEnum;
|
|
1844
|
+
deletedAt?: Date;
|
|
1845
|
+
productResource: ProductResource;
|
|
1846
|
+
childProduct: Product;
|
|
1847
|
+
parentProduct: Product;
|
|
1848
|
+
price: number;
|
|
1849
|
+
isFlatPrice: boolean;
|
|
1850
|
+
durationMinutes?: number;
|
|
1851
|
+
durationDays?: number;
|
|
1852
|
+
level?: ProductPackageLevelEnum;
|
|
1853
|
+
}
|
|
1827
1854
|
export declare class Price extends OrganizationConnectionBaseEntity {
|
|
1828
1855
|
productId: number;
|
|
1829
1856
|
product: Product;
|
|
@@ -1891,27 +1918,6 @@ export declare class Product extends OrganizationConnectionBaseEntity {
|
|
|
1891
1918
|
activityTimes: ActivityTimes[];
|
|
1892
1919
|
purchasedResources: PurchasedResource[];
|
|
1893
1920
|
}
|
|
1894
|
-
export declare class PaymentPlanSchedule extends OrganizationConnectionBaseEntity {
|
|
1895
|
-
paymentPlanId: number;
|
|
1896
|
-
paymentDate: Date;
|
|
1897
|
-
deletedAt?: Date;
|
|
1898
|
-
paymentPlan: ProductPaymentPlan;
|
|
1899
|
-
}
|
|
1900
|
-
export declare class ProductPackage extends OrganizationConnectionBaseEntity {
|
|
1901
|
-
parentProductId: number;
|
|
1902
|
-
childProductId: number;
|
|
1903
|
-
relationType: PackageProductsRelationTypeEnum;
|
|
1904
|
-
timePeriod: AddonTimePeriodEnum;
|
|
1905
|
-
deletedAt?: Date;
|
|
1906
|
-
productResource: ProductResource;
|
|
1907
|
-
childProduct: Product;
|
|
1908
|
-
parentProduct: Product;
|
|
1909
|
-
price: number;
|
|
1910
|
-
isFlatPrice: boolean;
|
|
1911
|
-
durationMinutes?: number;
|
|
1912
|
-
durationDays?: number;
|
|
1913
|
-
level?: ProductPackageLevelEnum;
|
|
1914
|
-
}
|
|
1915
1921
|
export declare class ProductPaymentPlan extends OrganizationConnectionBaseEntity {
|
|
1916
1922
|
productId: number;
|
|
1917
1923
|
maxMonths?: number;
|
|
@@ -1936,10 +1942,6 @@ export declare class ProductToVariantTitle extends OrganizationConnectionBaseEnt
|
|
|
1936
1942
|
productId: number;
|
|
1937
1943
|
variantTitleId: number;
|
|
1938
1944
|
}
|
|
1939
|
-
export declare class ProductToVariant extends OrganizationConnectionBaseEntity {
|
|
1940
|
-
productId: number;
|
|
1941
|
-
variantId: number;
|
|
1942
|
-
}
|
|
1943
1945
|
export declare class ProductsReservedForCustomers extends OrganizationConnectionBaseEntity {
|
|
1944
1946
|
productId: number;
|
|
1945
1947
|
customerId: number;
|
|
@@ -1986,6 +1988,10 @@ export declare class Program extends BondBaseEntity {
|
|
|
1986
1988
|
programSeason: ProgramSeason[];
|
|
1987
1989
|
purchasedResources: PurchasedResource[];
|
|
1988
1990
|
}
|
|
1991
|
+
export declare class ProductToVariant extends OrganizationConnectionBaseEntity {
|
|
1992
|
+
productId: number;
|
|
1993
|
+
variantId: number;
|
|
1994
|
+
}
|
|
1989
1995
|
export declare class ProgramHighlights extends BondBaseEntity {
|
|
1990
1996
|
type: ProgramHighlightTypeEnum;
|
|
1991
1997
|
ordinal: number | null;
|
|
@@ -2049,6 +2055,10 @@ export declare class ProgramSeason extends BondBaseEntity {
|
|
|
2049
2055
|
facility: Facility;
|
|
2050
2056
|
purchasedResources: PurchasedResource[];
|
|
2051
2057
|
}
|
|
2058
|
+
export declare class Questionnaires extends OrganizationConnectionBaseEntity {
|
|
2059
|
+
title: string | null;
|
|
2060
|
+
answerTitle: AnswerTitle;
|
|
2061
|
+
}
|
|
2052
2062
|
export declare class PurchasedResource extends OrganizationConnectionBaseEntity {
|
|
2053
2063
|
productUserId: number;
|
|
2054
2064
|
resourceId: number;
|
|
@@ -2071,10 +2081,6 @@ export declare class PurchasedResource extends OrganizationConnectionBaseEntity
|
|
|
2071
2081
|
product?: Product;
|
|
2072
2082
|
event?: Event;
|
|
2073
2083
|
}
|
|
2074
|
-
export declare class Questionnaires extends OrganizationConnectionBaseEntity {
|
|
2075
|
-
title: string | null;
|
|
2076
|
-
answerTitle: AnswerTitle;
|
|
2077
|
-
}
|
|
2078
2084
|
export declare class Questions extends BondBaseEntity {
|
|
2079
2085
|
questionType: string | null;
|
|
2080
2086
|
ordinal: number | null;
|
|
@@ -2172,14 +2178,6 @@ export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
|
2172
2178
|
childrenSlotIds: number[];
|
|
2173
2179
|
deletedAt?: Date;
|
|
2174
2180
|
}
|
|
2175
|
-
export declare class School extends BondBaseEntity {
|
|
2176
|
-
name: string | null;
|
|
2177
|
-
alias: string[] | null;
|
|
2178
|
-
addressId: number | null;
|
|
2179
|
-
website: string | null;
|
|
2180
|
-
phone: string | null;
|
|
2181
|
-
dataId: number | null;
|
|
2182
|
-
}
|
|
2183
2181
|
export declare class SeasonAttendee extends BondBaseEntity {
|
|
2184
2182
|
status: RequestStatusEnum;
|
|
2185
2183
|
paymentStatus: PaymentStatusEnum;
|
|
@@ -2194,6 +2192,14 @@ export declare class SeasonAttendee extends BondBaseEntity {
|
|
|
2194
2192
|
deletedAt?: Date;
|
|
2195
2193
|
purchasedResource: PurchasedResource;
|
|
2196
2194
|
}
|
|
2195
|
+
export declare class School extends BondBaseEntity {
|
|
2196
|
+
name: string | null;
|
|
2197
|
+
alias: string[] | null;
|
|
2198
|
+
addressId: number | null;
|
|
2199
|
+
website: string | null;
|
|
2200
|
+
phone: string | null;
|
|
2201
|
+
dataId: number | null;
|
|
2202
|
+
}
|
|
2197
2203
|
export declare class SeasonDivisions extends BondBaseEntity {
|
|
2198
2204
|
name: string | null;
|
|
2199
2205
|
ordinal: number | null;
|
|
@@ -2256,6 +2262,15 @@ export declare class Subcategory extends OrganizationConnectionBaseEntity {
|
|
|
2256
2262
|
stationToSubcategories: StationToSubcategory[];
|
|
2257
2263
|
stations: Station[];
|
|
2258
2264
|
}
|
|
2265
|
+
export declare class TeamInvite extends BondBaseEntity {
|
|
2266
|
+
email: string;
|
|
2267
|
+
teamId: number;
|
|
2268
|
+
invitedUserId?: number;
|
|
2269
|
+
userCreatorId: number;
|
|
2270
|
+
token: string;
|
|
2271
|
+
tokenExpirationDate: Date;
|
|
2272
|
+
isUsed: boolean;
|
|
2273
|
+
}
|
|
2259
2274
|
export declare class Team extends BondBaseEntity {
|
|
2260
2275
|
name: string | null;
|
|
2261
2276
|
description: string | null;
|
|
@@ -2290,15 +2305,6 @@ export declare class Team extends BondBaseEntity {
|
|
|
2290
2305
|
gender: number | null;
|
|
2291
2306
|
questionnaireId: number | null;
|
|
2292
2307
|
}
|
|
2293
|
-
export declare class TeamInvite extends BondBaseEntity {
|
|
2294
|
-
email: string;
|
|
2295
|
-
teamId: number;
|
|
2296
|
-
invitedUserId?: number;
|
|
2297
|
-
userCreatorId: number;
|
|
2298
|
-
token: string;
|
|
2299
|
-
tokenExpirationDate: Date;
|
|
2300
|
-
isUsed: boolean;
|
|
2301
|
-
}
|
|
2302
2308
|
export declare class TeamMember extends BondBaseEntity {
|
|
2303
2309
|
teamId: number | null;
|
|
2304
2310
|
userId: number | null;
|
|
@@ -2347,12 +2353,6 @@ export declare class User extends BondBaseEntity {
|
|
|
2347
2353
|
invoiceNotes: InvoiceNote[];
|
|
2348
2354
|
paymentNotes: PaymentNote[];
|
|
2349
2355
|
}
|
|
2350
|
-
export declare class UserAuthorizations extends BondBaseEntity {
|
|
2351
|
-
entityId: number | null;
|
|
2352
|
-
userId: number | null;
|
|
2353
|
-
entityType: UserAuthorizationsTypeEnum;
|
|
2354
|
-
user: User;
|
|
2355
|
-
}
|
|
2356
2356
|
export declare class UserInFamilyAccount extends BondBaseEntity {
|
|
2357
2357
|
familyAccountId: number;
|
|
2358
2358
|
userId: number;
|
|
@@ -2361,10 +2361,16 @@ export declare class UserInFamilyAccount extends BondBaseEntity {
|
|
|
2361
2361
|
familyAccount: FamilyAccount;
|
|
2362
2362
|
deletedAt?: Date;
|
|
2363
2363
|
}
|
|
2364
|
-
export declare class
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2364
|
+
export declare class UserAuthorizations extends BondBaseEntity {
|
|
2365
|
+
entityId: number | null;
|
|
2366
|
+
userId: number | null;
|
|
2367
|
+
entityType: UserAuthorizationsTypeEnum;
|
|
2368
|
+
user: User;
|
|
2369
|
+
}
|
|
2370
|
+
export declare class UserPaymentMethod extends BondBaseEntity {
|
|
2371
|
+
userId: number;
|
|
2372
|
+
failCount: number;
|
|
2373
|
+
isDefault?: boolean;
|
|
2368
2374
|
paymentMethodType: PaymentMethodTypeEnum;
|
|
2369
2375
|
paymentMethodId: string;
|
|
2370
2376
|
nextAllowedChargeDate?: Date;
|
|
@@ -3297,17 +3303,6 @@ export interface IReservationCreatorData {
|
|
|
3297
3303
|
endDate: string;
|
|
3298
3304
|
sportId: number;
|
|
3299
3305
|
}
|
|
3300
|
-
export declare class AnswerTitle extends OrganizationConnectionBaseEntity {
|
|
3301
|
-
questionnaireId: number;
|
|
3302
|
-
userId?: number;
|
|
3303
|
-
answers: Answer[];
|
|
3304
|
-
questionnaire: Questionnaires;
|
|
3305
|
-
}
|
|
3306
|
-
export declare class ColumnNumericTransformer {
|
|
3307
|
-
to(data: number): number;
|
|
3308
|
-
from(data: string): number;
|
|
3309
|
-
}
|
|
3310
|
-
export declare function convertToNumber(data: string): number;
|
|
3311
3306
|
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3312
3307
|
name?: string;
|
|
3313
3308
|
genderStr?: string;
|
|
@@ -3322,6 +3317,13 @@ export declare class AddFamilyDto {
|
|
|
3322
3317
|
parents: AddImportedCustomerDto[];
|
|
3323
3318
|
children: AddImportedCustomerDto[];
|
|
3324
3319
|
}
|
|
3320
|
+
export declare class PunchPassDto {
|
|
3321
|
+
CustomerID: string;
|
|
3322
|
+
QuantityLeft: number;
|
|
3323
|
+
BondProgramID: number;
|
|
3324
|
+
BondSessionID: number;
|
|
3325
|
+
ProductID: number;
|
|
3326
|
+
}
|
|
3325
3327
|
export declare class ProductIdsDto {
|
|
3326
3328
|
productIds?: number[];
|
|
3327
3329
|
}
|
|
@@ -3331,6 +3333,61 @@ export declare class ProductImportDto {
|
|
|
3331
3333
|
resourceIds: number[];
|
|
3332
3334
|
oldId: number;
|
|
3333
3335
|
}
|
|
3336
|
+
export declare class ImportedSlotProductDto {
|
|
3337
|
+
slotID?: string;
|
|
3338
|
+
name?: string;
|
|
3339
|
+
pricingType?: 'Hourly' | 'Flat';
|
|
3340
|
+
appliesTo?: 'slot' | 'addon' | 'reservation';
|
|
3341
|
+
price?: string;
|
|
3342
|
+
minutes?: string;
|
|
3343
|
+
quantity: string;
|
|
3344
|
+
startDate?: string;
|
|
3345
|
+
startTime?: string;
|
|
3346
|
+
endDate?: string;
|
|
3347
|
+
endTime?: string;
|
|
3348
|
+
bondProductId?: number;
|
|
3349
|
+
}
|
|
3350
|
+
export declare class ImportResourceMappingDto {
|
|
3351
|
+
bondResourceID?: string;
|
|
3352
|
+
resourceName?: string;
|
|
3353
|
+
}
|
|
3354
|
+
export declare class ImportProductMappingDto {
|
|
3355
|
+
productID?: string;
|
|
3356
|
+
productName?: string;
|
|
3357
|
+
}
|
|
3358
|
+
export declare class ImportedSlotDto {
|
|
3359
|
+
reservationID: string;
|
|
3360
|
+
bondResourceID: string;
|
|
3361
|
+
resourceName: string;
|
|
3362
|
+
subResourceName: string;
|
|
3363
|
+
startDate: string;
|
|
3364
|
+
startTime: string;
|
|
3365
|
+
endDate: string;
|
|
3366
|
+
endTime: string;
|
|
3367
|
+
sportId?: string;
|
|
3368
|
+
setupDuration: string;
|
|
3369
|
+
setupIncludeInCosts: string;
|
|
3370
|
+
takedownDuration: string;
|
|
3371
|
+
takedownIncludeInCosts: string;
|
|
3372
|
+
slotProduct: ImportedSlotProductDto;
|
|
3373
|
+
addonProducts: ImportedSlotProductDto[];
|
|
3374
|
+
totalPrice: string;
|
|
3375
|
+
}
|
|
3376
|
+
export declare class ImportedReservationDto {
|
|
3377
|
+
name: string;
|
|
3378
|
+
customerId: string;
|
|
3379
|
+
description: string;
|
|
3380
|
+
totalPrice: string;
|
|
3381
|
+
downPayment: string;
|
|
3382
|
+
paid: string;
|
|
3383
|
+
invoiceId: string;
|
|
3384
|
+
slots?: ImportedSlotDto[];
|
|
3385
|
+
addons?: ImportedSlotProductDto[];
|
|
3386
|
+
}
|
|
3387
|
+
export declare class GameSlots extends BondBaseEntity {
|
|
3388
|
+
entityType: string;
|
|
3389
|
+
entityId: number;
|
|
3390
|
+
}
|
|
3334
3391
|
export declare enum ImportPaymentTypeEnum {
|
|
3335
3392
|
CREDIT_CARD = "card",
|
|
3336
3393
|
ACH = "ach",
|
|
@@ -3367,22 +3424,6 @@ export declare class ImportedPaymentDto {
|
|
|
3367
3424
|
date: string;
|
|
3368
3425
|
time: string;
|
|
3369
3426
|
}
|
|
3370
|
-
export declare class GameSlots extends BondBaseEntity {
|
|
3371
|
-
entityType: string;
|
|
3372
|
-
entityId: number;
|
|
3373
|
-
}
|
|
3374
|
-
export declare class PunchPassDto {
|
|
3375
|
-
CustomerID: string;
|
|
3376
|
-
QuantityLeft: number;
|
|
3377
|
-
BondProgramID: number;
|
|
3378
|
-
BondSessionID: number;
|
|
3379
|
-
ProductID: number;
|
|
3380
|
-
}
|
|
3381
|
-
export declare class Matches extends BondBaseEntity {
|
|
3382
|
-
eventId: number | null;
|
|
3383
|
-
status: number | null;
|
|
3384
|
-
excludeStandings: boolean | null;
|
|
3385
|
-
}
|
|
3386
3427
|
export declare class MatchParticipants extends BondBaseEntity {
|
|
3387
3428
|
matchId: number | null;
|
|
3388
3429
|
ordinal: number | null;
|
|
@@ -3392,11 +3433,10 @@ export declare class MatchParticipants extends BondBaseEntity {
|
|
|
3392
3433
|
score: number | null;
|
|
3393
3434
|
gameSlotId: number | null;
|
|
3394
3435
|
}
|
|
3395
|
-
export declare class
|
|
3396
|
-
|
|
3397
|
-
|
|
3398
|
-
|
|
3399
|
-
name: string;
|
|
3436
|
+
export declare class Matches extends BondBaseEntity {
|
|
3437
|
+
eventId: number | null;
|
|
3438
|
+
status: number | null;
|
|
3439
|
+
excludeStandings: boolean | null;
|
|
3400
3440
|
}
|
|
3401
3441
|
export declare class RoundEvents extends BaseEntity {
|
|
3402
3442
|
roundId: number;
|
|
@@ -3405,22 +3445,20 @@ export declare class RoundEvents extends BaseEntity {
|
|
|
3405
3445
|
createdAt: Date;
|
|
3406
3446
|
updatedAt: Date;
|
|
3407
3447
|
}
|
|
3448
|
+
export declare class SeasonRounds extends BondBaseEntity {
|
|
3449
|
+
seasonId: number;
|
|
3450
|
+
ordinal?: number;
|
|
3451
|
+
divisionId?: number;
|
|
3452
|
+
name: string;
|
|
3453
|
+
}
|
|
3408
3454
|
export declare class TeamEvents extends BondBaseEntity {
|
|
3409
3455
|
teamId: number | null;
|
|
3410
3456
|
eventId: number | null;
|
|
3411
3457
|
status: number | null;
|
|
3412
3458
|
}
|
|
3413
|
-
export
|
|
3414
|
-
|
|
3415
|
-
|
|
3416
|
-
approvalStatus?: ReservationStatusEnum;
|
|
3417
|
-
id?: number;
|
|
3418
|
-
}
|
|
3419
|
-
export interface PaymentStatusesDict {
|
|
3420
|
-
[id: number]: PaymentStatus[];
|
|
3421
|
-
}
|
|
3422
|
-
export interface PaymentStatusDict {
|
|
3423
|
-
[id: number]: ReservationPaymentStatusEnum;
|
|
3459
|
+
export declare class Lock extends BondBaseEntity {
|
|
3460
|
+
name: string;
|
|
3461
|
+
locked?: Date;
|
|
3424
3462
|
}
|
|
3425
3463
|
export interface ValidatedMonthAndDay {
|
|
3426
3464
|
valid: boolean;
|
|
@@ -3431,20 +3469,28 @@ export interface ValidationReason {
|
|
|
3431
3469
|
valid: boolean;
|
|
3432
3470
|
reason?: string;
|
|
3433
3471
|
}
|
|
3434
|
-
export declare class
|
|
3435
|
-
|
|
3436
|
-
|
|
3472
|
+
export declare class ColumnNumericTransformer {
|
|
3473
|
+
to(data: number): number;
|
|
3474
|
+
from(data: string): number;
|
|
3437
3475
|
}
|
|
3476
|
+
export declare function convertToNumber(data: string): number;
|
|
3438
3477
|
export declare class CreateMonitorConfigDto {
|
|
3439
3478
|
facilityId: number;
|
|
3440
3479
|
name: string;
|
|
3441
3480
|
code: string;
|
|
3442
3481
|
config: any;
|
|
3443
3482
|
}
|
|
3444
|
-
export
|
|
3445
|
-
|
|
3446
|
-
|
|
3447
|
-
|
|
3483
|
+
export interface PaymentStatus {
|
|
3484
|
+
parentId: number;
|
|
3485
|
+
paymentStatus: ReservationPaymentStatusEnum;
|
|
3486
|
+
approvalStatus?: ReservationStatusEnum;
|
|
3487
|
+
id?: number;
|
|
3488
|
+
}
|
|
3489
|
+
export interface PaymentStatusesDict {
|
|
3490
|
+
[id: number]: PaymentStatus[];
|
|
3491
|
+
}
|
|
3492
|
+
export interface PaymentStatusDict {
|
|
3493
|
+
[id: number]: ReservationPaymentStatusEnum;
|
|
3448
3494
|
}
|
|
3449
3495
|
export declare class NotifyTracker extends BondBaseEntity {
|
|
3450
3496
|
userId: number;
|
|
@@ -3453,6 +3499,11 @@ export declare class NotifyTracker extends BondBaseEntity {
|
|
|
3453
3499
|
notfiyMethodtype: NotifyMethodEnum;
|
|
3454
3500
|
destination: string;
|
|
3455
3501
|
}
|
|
3502
|
+
export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
|
|
3503
|
+
facilityId: number;
|
|
3504
|
+
code: string;
|
|
3505
|
+
config?: any;
|
|
3506
|
+
}
|
|
3456
3507
|
export declare class ByOrganizationIdDto {
|
|
3457
3508
|
organizationId: number;
|
|
3458
3509
|
}
|
|
@@ -3539,6 +3590,28 @@ export declare class OrganizationUsers extends BondBaseEntity {
|
|
|
3539
3590
|
organisationId: number | null;
|
|
3540
3591
|
userId: number | null;
|
|
3541
3592
|
}
|
|
3593
|
+
export declare class RefundDto {
|
|
3594
|
+
invoiceId: number;
|
|
3595
|
+
lineItems: RefundLineItemAmountDto[];
|
|
3596
|
+
refundLineItemAmountDict?: {
|
|
3597
|
+
[id: number]: number;
|
|
3598
|
+
};
|
|
3599
|
+
refunds: PaymentMethodDto[];
|
|
3600
|
+
refundType: RefundTypeEnum;
|
|
3601
|
+
reasonId: number;
|
|
3602
|
+
note?: string;
|
|
3603
|
+
shiftId?: number;
|
|
3604
|
+
meta?: RevertMetaDto;
|
|
3605
|
+
}
|
|
3606
|
+
export declare class PaymentMethodDto {
|
|
3607
|
+
paymentMethodType: PaymentMethodTypeEnum;
|
|
3608
|
+
amount: number;
|
|
3609
|
+
paymentMethodId?: string;
|
|
3610
|
+
}
|
|
3611
|
+
export declare class RefundLineItemAmountDto {
|
|
3612
|
+
id: number;
|
|
3613
|
+
refundAmount: number;
|
|
3614
|
+
}
|
|
3542
3615
|
export interface UnallocatedEventsFilters {
|
|
3543
3616
|
programsIds?: number[];
|
|
3544
3617
|
sessionsIds?: number[];
|
|
@@ -3687,38 +3760,6 @@ export declare class SendRequestDto {
|
|
|
3687
3760
|
sendToEmail: string;
|
|
3688
3761
|
memo?: string;
|
|
3689
3762
|
}
|
|
3690
|
-
export declare class RefundDto {
|
|
3691
|
-
invoiceId: number;
|
|
3692
|
-
lineItems: RefundLineItemAmountDto[];
|
|
3693
|
-
refundLineItemAmountDict?: {
|
|
3694
|
-
[id: number]: number;
|
|
3695
|
-
};
|
|
3696
|
-
refunds: PaymentMethodDto[];
|
|
3697
|
-
refundType: RefundTypeEnum;
|
|
3698
|
-
reasonId: number;
|
|
3699
|
-
note?: string;
|
|
3700
|
-
shiftId?: number;
|
|
3701
|
-
meta?: RevertMetaDto;
|
|
3702
|
-
}
|
|
3703
|
-
export declare class PaymentMethodDto {
|
|
3704
|
-
paymentMethodType: PaymentMethodTypeEnum;
|
|
3705
|
-
amount: number;
|
|
3706
|
-
paymentMethodId?: string;
|
|
3707
|
-
}
|
|
3708
|
-
export declare class RefundLineItemAmountDto {
|
|
3709
|
-
id: number;
|
|
3710
|
-
refundAmount: number;
|
|
3711
|
-
}
|
|
3712
|
-
export interface RefundResult extends PaymentsResults {
|
|
3713
|
-
successfulLineItems: RefundLineItemAmountDto[];
|
|
3714
|
-
failedLineItems: RefundLineItemAmountDto[];
|
|
3715
|
-
invoice?: Invoice;
|
|
3716
|
-
}
|
|
3717
|
-
export interface RefundResultWithLineItemsDict extends PaymentsResults {
|
|
3718
|
-
successfulLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3719
|
-
failedLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3720
|
-
totalAmountProcessed: number;
|
|
3721
|
-
}
|
|
3722
3763
|
export declare class VoidDto {
|
|
3723
3764
|
lineItems: VoidLineItemDto[];
|
|
3724
3765
|
meta?: RevertMetaDto;
|
|
@@ -3754,32 +3795,107 @@ export interface ExtendedLineItems {
|
|
|
3754
3795
|
products: LineItems[];
|
|
3755
3796
|
events: LineItems[];
|
|
3756
3797
|
}
|
|
3757
|
-
export
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
quantity?: number;
|
|
3762
|
-
totalPrice?: number;
|
|
3763
|
-
product?: Product;
|
|
3764
|
-
parentProduct?: Product;
|
|
3765
|
-
displayTotalWithTax?: number;
|
|
3766
|
-
displayTotalPrice?: number;
|
|
3767
|
-
displayUnitTax?: number;
|
|
3798
|
+
export interface RefundResult extends PaymentsResults {
|
|
3799
|
+
successfulLineItems: RefundLineItemAmountDto[];
|
|
3800
|
+
failedLineItems: RefundLineItemAmountDto[];
|
|
3801
|
+
invoice?: Invoice;
|
|
3768
3802
|
}
|
|
3769
|
-
export
|
|
3770
|
-
|
|
3803
|
+
export interface RefundResultWithLineItemsDict extends PaymentsResults {
|
|
3804
|
+
successfulLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3805
|
+
failedLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3806
|
+
totalAmountProcessed: number;
|
|
3771
3807
|
}
|
|
3772
|
-
export declare class
|
|
3773
|
-
|
|
3808
|
+
export declare class Reservation extends OrganizationConnectionBaseEntity {
|
|
3809
|
+
name?: string;
|
|
3810
|
+
description?: string;
|
|
3811
|
+
approvalStatus?: ReservationStatusEnum;
|
|
3812
|
+
privacySetting?: string;
|
|
3813
|
+
reservationType?: ReservationTypeEnum;
|
|
3814
|
+
invoiceId?: string;
|
|
3815
|
+
customerId?: number;
|
|
3816
|
+
customer?: Customer;
|
|
3817
|
+
price?: number;
|
|
3818
|
+
paymentStatus?: ReservationPaymentStatusEnum;
|
|
3819
|
+
startTime?: string;
|
|
3820
|
+
startDate?: Date;
|
|
3821
|
+
endDate?: Date;
|
|
3822
|
+
creatorId?: number;
|
|
3823
|
+
creatorType?: ResourceNameTypeEnum;
|
|
3824
|
+
userCreatorId?: number;
|
|
3825
|
+
sportType?: number;
|
|
3826
|
+
deletedAt?: Date;
|
|
3827
|
+
publicNotes?: string;
|
|
3828
|
+
privateNotes?: string;
|
|
3829
|
+
forms?: number[] | null;
|
|
3830
|
+
answerTitleIds?: number[] | null;
|
|
3831
|
+
segments?: Segment[];
|
|
3832
|
+
migrationStatus?: string;
|
|
3833
|
+
addons: Addon[];
|
|
3834
|
+
overrideProductsPrice: {
|
|
3835
|
+
productId: number;
|
|
3836
|
+
price: number;
|
|
3837
|
+
}[];
|
|
3838
|
+
targetGlobalPrice?: number;
|
|
3839
|
+
slots: Slot[];
|
|
3774
3840
|
}
|
|
3775
|
-
export declare class
|
|
3776
|
-
|
|
3841
|
+
export declare class InvoicedSlots extends OrganizationConnectionBaseEntity {
|
|
3842
|
+
deletedAt?: Date;
|
|
3843
|
+
reservationId: number;
|
|
3844
|
+
invoiceId: number;
|
|
3845
|
+
slotId: number;
|
|
3777
3846
|
}
|
|
3778
|
-
export declare class
|
|
3779
|
-
|
|
3847
|
+
export declare class Addon extends OrganizationConnectionBaseEntity {
|
|
3848
|
+
parentId: number;
|
|
3849
|
+
parentType: AddonParentTypeEnum;
|
|
3850
|
+
productId: number;
|
|
3851
|
+
product?: Product;
|
|
3780
3852
|
quantity: number;
|
|
3853
|
+
unitPrice: number;
|
|
3781
3854
|
totalPrice: number;
|
|
3782
|
-
|
|
3855
|
+
approvalStatus: ReservationStatusEnum;
|
|
3856
|
+
paymentStatus: ReservationPaymentStatusEnum;
|
|
3857
|
+
level?: ProductPackageLevelEnum;
|
|
3858
|
+
resourceId?: number;
|
|
3859
|
+
resource?: Resource;
|
|
3860
|
+
invoiceId?: number;
|
|
3861
|
+
invoice?: Invoice;
|
|
3862
|
+
productUserId?: number;
|
|
3863
|
+
productUser?: ProductsUsers;
|
|
3864
|
+
previousProductUsersIds?: number[];
|
|
3865
|
+
previousProductUsers?: ProductsUsers[];
|
|
3866
|
+
}
|
|
3867
|
+
export declare class Segment extends OrganizationConnectionBaseEntity {
|
|
3868
|
+
deletedAt?: Date;
|
|
3869
|
+
reservationId: number;
|
|
3870
|
+
title: string;
|
|
3871
|
+
isPrivate: boolean;
|
|
3872
|
+
resourceIds?: number[];
|
|
3873
|
+
sportId: number;
|
|
3874
|
+
reservation?: Reservation;
|
|
3875
|
+
series?: Series[];
|
|
3876
|
+
addonIds?: number[] | null;
|
|
3877
|
+
publicNotesForSlots?: string;
|
|
3878
|
+
privateNotesForSlots?: string;
|
|
3879
|
+
slots?: Slot[];
|
|
3880
|
+
}
|
|
3881
|
+
export declare class Series extends OrganizationConnectionBaseEntity {
|
|
3882
|
+
deletedAt?: Date;
|
|
3883
|
+
segmentId: number;
|
|
3884
|
+
segment?: Segment;
|
|
3885
|
+
slots?: Slot[];
|
|
3886
|
+
slotDurationType: string;
|
|
3887
|
+
durationEndsAfter: number;
|
|
3888
|
+
durationUnit: string;
|
|
3889
|
+
startDate?: Date;
|
|
3890
|
+
endDate?: Date;
|
|
3891
|
+
startTime: string;
|
|
3892
|
+
endTime: string;
|
|
3893
|
+
frequency: string;
|
|
3894
|
+
repeatEvery: number;
|
|
3895
|
+
repeatOn?: number[];
|
|
3896
|
+
repeatEndDate?: Date;
|
|
3897
|
+
numberOccurrences?: number;
|
|
3898
|
+
resources?: Resource[];
|
|
3783
3899
|
}
|
|
3784
3900
|
export declare class InvoiceDto {
|
|
3785
3901
|
invoiceId?: string | null;
|
|
@@ -3822,6 +3938,100 @@ export declare class AddSlotsDto extends UpdateInvoiceDto {
|
|
|
3822
3938
|
export declare class AddSegmentsDto extends UpdateInvoiceDto {
|
|
3823
3939
|
segments: SegmentDto[];
|
|
3824
3940
|
}
|
|
3941
|
+
export declare class AddonDto {
|
|
3942
|
+
productId: number;
|
|
3943
|
+
id?: number;
|
|
3944
|
+
unitPrice?: number;
|
|
3945
|
+
quantity?: number;
|
|
3946
|
+
totalPrice?: number;
|
|
3947
|
+
product?: Product;
|
|
3948
|
+
parentProduct?: Product;
|
|
3949
|
+
displayTotalWithTax?: number;
|
|
3950
|
+
displayTotalPrice?: number;
|
|
3951
|
+
displayUnitTax?: number;
|
|
3952
|
+
}
|
|
3953
|
+
export declare class AddAddonsDto {
|
|
3954
|
+
addons: AddonDto[];
|
|
3955
|
+
}
|
|
3956
|
+
export declare class EditAddonsDto {
|
|
3957
|
+
addons: EditAddonDto[];
|
|
3958
|
+
}
|
|
3959
|
+
export declare class EditReservationAddonsDto extends EditAddonsDto {
|
|
3960
|
+
refundMeta?: EditItemsRefundMetaDto;
|
|
3961
|
+
}
|
|
3962
|
+
export declare class EditAddonDto {
|
|
3963
|
+
id: number;
|
|
3964
|
+
quantity: number;
|
|
3965
|
+
totalPrice: number;
|
|
3966
|
+
unitPrice?: number;
|
|
3967
|
+
}
|
|
3968
|
+
export declare class Slot extends OrganizationConnectionBaseEntity {
|
|
3969
|
+
constructor();
|
|
3970
|
+
defineIsReverted(): void;
|
|
3971
|
+
isReverted: boolean;
|
|
3972
|
+
reservationId: number;
|
|
3973
|
+
reservation: Reservation;
|
|
3974
|
+
title?: string;
|
|
3975
|
+
creatorId?: number;
|
|
3976
|
+
creatorType?: string;
|
|
3977
|
+
userCreatorId?: number;
|
|
3978
|
+
startDate: Date;
|
|
3979
|
+
endDate: Date;
|
|
3980
|
+
startTime: string;
|
|
3981
|
+
endTime: string;
|
|
3982
|
+
timezone?: string;
|
|
3983
|
+
spaceId?: number;
|
|
3984
|
+
resource?: Resource;
|
|
3985
|
+
deletedAt?: Date;
|
|
3986
|
+
publicNotes?: string;
|
|
3987
|
+
privateNotes?: string;
|
|
3988
|
+
slotType: SlotTypeEnum;
|
|
3989
|
+
productsUserId?: number;
|
|
3990
|
+
productUser?: ProductsUsers;
|
|
3991
|
+
product?: Product;
|
|
3992
|
+
addons: Addon[];
|
|
3993
|
+
addonsProductUserIds?: number[] | null;
|
|
3994
|
+
addonsMetadata: AddonMetadata[];
|
|
3995
|
+
segmentId: number;
|
|
3996
|
+
segment: Segment;
|
|
3997
|
+
eventId: number;
|
|
3998
|
+
event: Event;
|
|
3999
|
+
sportIds: number[];
|
|
4000
|
+
parentSlotId?: number;
|
|
4001
|
+
parent?: Slot;
|
|
4002
|
+
children?: Slot[];
|
|
4003
|
+
maintenanceDurationdurationType: string;
|
|
4004
|
+
maintenanceTiming: number;
|
|
4005
|
+
durationValue: number;
|
|
4006
|
+
seriesId?: number;
|
|
4007
|
+
series?: Series;
|
|
4008
|
+
invoiceId?: number;
|
|
4009
|
+
invoice?: Invoice;
|
|
4010
|
+
paymentStatus: ReservationPaymentStatusEnum;
|
|
4011
|
+
approvalStatus?: ReservationStatusEnum;
|
|
4012
|
+
displayName?: string;
|
|
4013
|
+
internalName?: string;
|
|
4014
|
+
activityTypes?: number[] | null;
|
|
4015
|
+
hourlyRate: number;
|
|
4016
|
+
totalPrice: number;
|
|
4017
|
+
isConsumerVisible: boolean;
|
|
4018
|
+
isMonitorVisible: boolean;
|
|
4019
|
+
isPrivate: boolean;
|
|
4020
|
+
occurrence?: number;
|
|
4021
|
+
maintenance?: Slot[];
|
|
4022
|
+
productMetadata: {
|
|
4023
|
+
productId: number;
|
|
4024
|
+
price: number;
|
|
4025
|
+
};
|
|
4026
|
+
slotDurationType: string;
|
|
4027
|
+
previousProductUsersIds?: number[];
|
|
4028
|
+
previousProductUsers?: ProductsUsers[];
|
|
4029
|
+
changeLineItemIds?: number[];
|
|
4030
|
+
changeLineItems?: LineItems[];
|
|
4031
|
+
updatedLineItem?: LineItems;
|
|
4032
|
+
conflictsCount?: number;
|
|
4033
|
+
conflicts?: Slot[];
|
|
4034
|
+
}
|
|
3825
4035
|
export declare class LineItemDto {
|
|
3826
4036
|
id?: number;
|
|
3827
4037
|
invoiceId?: number;
|
|
@@ -3855,6 +4065,14 @@ export declare class MaintenanceDto {
|
|
|
3855
4065
|
maintenanceDurationdurationType: DurationUnitTypesEnum;
|
|
3856
4066
|
maintenanceTiming: MaintenanceTimingEnum;
|
|
3857
4067
|
}
|
|
4068
|
+
export declare class PurchasedResourceDto {
|
|
4069
|
+
resourceId?: number;
|
|
4070
|
+
resourceType: ResourceNameTypeEnum;
|
|
4071
|
+
startDate?: string;
|
|
4072
|
+
startTime?: string;
|
|
4073
|
+
endDate?: string;
|
|
4074
|
+
endTime?: string;
|
|
4075
|
+
}
|
|
3858
4076
|
export declare class ReservationDto {
|
|
3859
4077
|
id?: number;
|
|
3860
4078
|
organizationId?: number;
|
|
@@ -4007,14 +4225,6 @@ export declare class UpdateReservationInvoiceDto {
|
|
|
4007
4225
|
updateAddons?: boolean;
|
|
4008
4226
|
updateMaintenance?: boolean;
|
|
4009
4227
|
}
|
|
4010
|
-
export declare class PurchasedResourceDto {
|
|
4011
|
-
resourceId?: number;
|
|
4012
|
-
resourceType: ResourceNameTypeEnum;
|
|
4013
|
-
startDate?: string;
|
|
4014
|
-
startTime?: string;
|
|
4015
|
-
endDate?: string;
|
|
4016
|
-
endTime?: string;
|
|
4017
|
-
}
|
|
4018
4228
|
export declare class SegmentDto {
|
|
4019
4229
|
id?: number;
|
|
4020
4230
|
title: string;
|
|
@@ -4150,98 +4360,6 @@ export declare class BookingV1Dto {
|
|
|
4150
4360
|
cashPayment: boolean;
|
|
4151
4361
|
requestOnly: boolean;
|
|
4152
4362
|
}
|
|
4153
|
-
export declare class Addon extends OrganizationConnectionBaseEntity {
|
|
4154
|
-
parentId: number;
|
|
4155
|
-
parentType: AddonParentTypeEnum;
|
|
4156
|
-
productId: number;
|
|
4157
|
-
product?: Product;
|
|
4158
|
-
quantity: number;
|
|
4159
|
-
unitPrice: number;
|
|
4160
|
-
totalPrice: number;
|
|
4161
|
-
approvalStatus: ReservationStatusEnum;
|
|
4162
|
-
paymentStatus: ReservationPaymentStatusEnum;
|
|
4163
|
-
level?: ProductPackageLevelEnum;
|
|
4164
|
-
resourceId?: number;
|
|
4165
|
-
resource?: Resource;
|
|
4166
|
-
invoiceId?: number;
|
|
4167
|
-
invoice?: Invoice;
|
|
4168
|
-
productUserId?: number;
|
|
4169
|
-
productUser?: ProductsUsers;
|
|
4170
|
-
previousProductUsersIds?: number[];
|
|
4171
|
-
previousProductUsers?: ProductsUsers[];
|
|
4172
|
-
}
|
|
4173
|
-
export declare class Reservation extends OrganizationConnectionBaseEntity {
|
|
4174
|
-
name?: string;
|
|
4175
|
-
description?: string;
|
|
4176
|
-
approvalStatus?: ReservationStatusEnum;
|
|
4177
|
-
privacySetting?: string;
|
|
4178
|
-
reservationType?: ReservationTypeEnum;
|
|
4179
|
-
invoiceId?: string;
|
|
4180
|
-
customerId?: number;
|
|
4181
|
-
customer?: Customer;
|
|
4182
|
-
price?: number;
|
|
4183
|
-
paymentStatus?: ReservationPaymentStatusEnum;
|
|
4184
|
-
startTime?: string;
|
|
4185
|
-
startDate?: Date;
|
|
4186
|
-
endDate?: Date;
|
|
4187
|
-
creatorId?: number;
|
|
4188
|
-
creatorType?: ResourceNameTypeEnum;
|
|
4189
|
-
userCreatorId?: number;
|
|
4190
|
-
sportType?: number;
|
|
4191
|
-
deletedAt?: Date;
|
|
4192
|
-
publicNotes?: string;
|
|
4193
|
-
privateNotes?: string;
|
|
4194
|
-
forms?: number[] | null;
|
|
4195
|
-
answerTitleIds?: number[] | null;
|
|
4196
|
-
segments?: Segment[];
|
|
4197
|
-
migrationStatus?: string;
|
|
4198
|
-
addons: Addon[];
|
|
4199
|
-
overrideProductsPrice: {
|
|
4200
|
-
productId: number;
|
|
4201
|
-
price: number;
|
|
4202
|
-
}[];
|
|
4203
|
-
targetGlobalPrice?: number;
|
|
4204
|
-
slots: Slot[];
|
|
4205
|
-
}
|
|
4206
|
-
export declare class Segment extends OrganizationConnectionBaseEntity {
|
|
4207
|
-
deletedAt?: Date;
|
|
4208
|
-
reservationId: number;
|
|
4209
|
-
title: string;
|
|
4210
|
-
isPrivate: boolean;
|
|
4211
|
-
resourceIds?: number[];
|
|
4212
|
-
sportId: number;
|
|
4213
|
-
reservation?: Reservation;
|
|
4214
|
-
series?: Series[];
|
|
4215
|
-
addonIds?: number[] | null;
|
|
4216
|
-
publicNotesForSlots?: string;
|
|
4217
|
-
privateNotesForSlots?: string;
|
|
4218
|
-
slots?: Slot[];
|
|
4219
|
-
}
|
|
4220
|
-
export declare class InvoicedSlots extends OrganizationConnectionBaseEntity {
|
|
4221
|
-
deletedAt?: Date;
|
|
4222
|
-
reservationId: number;
|
|
4223
|
-
invoiceId: number;
|
|
4224
|
-
slotId: number;
|
|
4225
|
-
}
|
|
4226
|
-
export declare class Series extends OrganizationConnectionBaseEntity {
|
|
4227
|
-
deletedAt?: Date;
|
|
4228
|
-
segmentId: number;
|
|
4229
|
-
segment?: Segment;
|
|
4230
|
-
slots?: Slot[];
|
|
4231
|
-
slotDurationType: string;
|
|
4232
|
-
durationEndsAfter: number;
|
|
4233
|
-
durationUnit: string;
|
|
4234
|
-
startDate?: Date;
|
|
4235
|
-
endDate?: Date;
|
|
4236
|
-
startTime: string;
|
|
4237
|
-
endTime: string;
|
|
4238
|
-
frequency: string;
|
|
4239
|
-
repeatEvery: number;
|
|
4240
|
-
repeatOn?: number[];
|
|
4241
|
-
repeatEndDate?: Date;
|
|
4242
|
-
numberOccurrences?: number;
|
|
4243
|
-
resources?: Resource[];
|
|
4244
|
-
}
|
|
4245
4363
|
export declare type TSlotAndType = {
|
|
4246
4364
|
type: 'slots' | 'slot_addons';
|
|
4247
4365
|
slotsForProduct: {
|
|
@@ -4255,73 +4373,6 @@ export interface ILineItemResource {
|
|
|
4255
4373
|
type: 'segments' | 'series' | 'slots' | 'reservation_addons' | 'slot_addons';
|
|
4256
4374
|
values: TResource[];
|
|
4257
4375
|
}
|
|
4258
|
-
export declare class Slot extends OrganizationConnectionBaseEntity {
|
|
4259
|
-
constructor();
|
|
4260
|
-
defineIsReverted(): void;
|
|
4261
|
-
isReverted: boolean;
|
|
4262
|
-
reservationId: number;
|
|
4263
|
-
reservation: Reservation;
|
|
4264
|
-
title?: string;
|
|
4265
|
-
creatorId?: number;
|
|
4266
|
-
creatorType?: string;
|
|
4267
|
-
userCreatorId?: number;
|
|
4268
|
-
startDate: Date;
|
|
4269
|
-
endDate: Date;
|
|
4270
|
-
startTime: string;
|
|
4271
|
-
endTime: string;
|
|
4272
|
-
timezone?: string;
|
|
4273
|
-
spaceId?: number;
|
|
4274
|
-
resource?: Resource;
|
|
4275
|
-
deletedAt?: Date;
|
|
4276
|
-
publicNotes?: string;
|
|
4277
|
-
privateNotes?: string;
|
|
4278
|
-
slotType: SlotTypeEnum;
|
|
4279
|
-
productsUserId?: number;
|
|
4280
|
-
productUser?: ProductsUsers;
|
|
4281
|
-
product?: Product;
|
|
4282
|
-
addons: Addon[];
|
|
4283
|
-
addonsProductUserIds?: number[] | null;
|
|
4284
|
-
addonsMetadata: AddonMetadata[];
|
|
4285
|
-
segmentId: number;
|
|
4286
|
-
segment: Segment;
|
|
4287
|
-
eventId: number;
|
|
4288
|
-
event: Event;
|
|
4289
|
-
sportIds: number[];
|
|
4290
|
-
parentSlotId?: number;
|
|
4291
|
-
parent?: Slot;
|
|
4292
|
-
children?: Slot[];
|
|
4293
|
-
maintenanceDurationdurationType: string;
|
|
4294
|
-
maintenanceTiming: number;
|
|
4295
|
-
durationValue: number;
|
|
4296
|
-
seriesId?: number;
|
|
4297
|
-
series?: Series;
|
|
4298
|
-
invoiceId?: number;
|
|
4299
|
-
invoice?: Invoice;
|
|
4300
|
-
paymentStatus: ReservationPaymentStatusEnum;
|
|
4301
|
-
approvalStatus?: ReservationStatusEnum;
|
|
4302
|
-
displayName?: string;
|
|
4303
|
-
internalName?: string;
|
|
4304
|
-
activityTypes?: number[] | null;
|
|
4305
|
-
hourlyRate: number;
|
|
4306
|
-
totalPrice: number;
|
|
4307
|
-
isConsumerVisible: boolean;
|
|
4308
|
-
isMonitorVisible: boolean;
|
|
4309
|
-
isPrivate: boolean;
|
|
4310
|
-
occurrence?: number;
|
|
4311
|
-
maintenance?: Slot[];
|
|
4312
|
-
productMetadata: {
|
|
4313
|
-
productId: number;
|
|
4314
|
-
price: number;
|
|
4315
|
-
};
|
|
4316
|
-
slotDurationType: string;
|
|
4317
|
-
previousProductUsersIds?: number[];
|
|
4318
|
-
previousProductUsers?: ProductsUsers[];
|
|
4319
|
-
changeLineItemIds?: number[];
|
|
4320
|
-
changeLineItems?: LineItems[];
|
|
4321
|
-
updatedLineItem?: LineItems;
|
|
4322
|
-
conflictsCount?: number;
|
|
4323
|
-
conflicts?: Slot[];
|
|
4324
|
-
}
|
|
4325
4376
|
export declare type TDtoResource = ReservationDto | SegmentDto | SeriesDto | SlotDto | AddonDto;
|
|
4326
4377
|
export declare type TResource = Reservation | Segment | Series | Slot | Addon;
|
|
4327
4378
|
export interface ReservationV1 {
|
|
@@ -4541,12 +4592,12 @@ export interface AddonMetadata {
|
|
|
4541
4592
|
totalPrice: number;
|
|
4542
4593
|
product?: Product;
|
|
4543
4594
|
}
|
|
4544
|
-
export declare class ChangeRolePermissionsDto {
|
|
4545
|
-
permissionIds: number[];
|
|
4546
|
-
}
|
|
4547
4595
|
export declare class CreateRoleDto {
|
|
4548
4596
|
name: string;
|
|
4549
4597
|
}
|
|
4598
|
+
export declare class ChangeRolePermissionsDto {
|
|
4599
|
+
permissionIds: number[];
|
|
4600
|
+
}
|
|
4550
4601
|
export declare class Permission extends BondBaseEntity {
|
|
4551
4602
|
name: string;
|
|
4552
4603
|
deletedAt?: Date;
|
|
@@ -4567,6 +4618,9 @@ export declare class UserRole extends OrganizationConnectionBaseEntity {
|
|
|
4567
4618
|
export declare class CloseShiftDto {
|
|
4568
4619
|
closingCashAmount: number;
|
|
4569
4620
|
}
|
|
4621
|
+
export declare class FindShiftsByIdsDto {
|
|
4622
|
+
shiftIds: number[];
|
|
4623
|
+
}
|
|
4570
4624
|
export declare class FindShiftsFiltersDto {
|
|
4571
4625
|
statuses?: string;
|
|
4572
4626
|
stationIds?: string;
|
|
@@ -4587,9 +4641,6 @@ export declare class FindShiftsFormattedFilters {
|
|
|
4587
4641
|
startDate?: Date;
|
|
4588
4642
|
endDate?: Date;
|
|
4589
4643
|
}
|
|
4590
|
-
export declare class FindShiftsByIdsDto {
|
|
4591
|
-
shiftIds: number[];
|
|
4592
|
-
}
|
|
4593
4644
|
export declare class ShiftManagementClosingAmount {
|
|
4594
4645
|
shiftId: number;
|
|
4595
4646
|
managementClosingCashAmount: number;
|
|
@@ -4643,54 +4694,3 @@ export default interface IWebflowProgram {
|
|
|
4643
4694
|
level: string[];
|
|
4644
4695
|
gender: string;
|
|
4645
4696
|
}
|
|
4646
|
-
export declare class ImportedSlotProductDto {
|
|
4647
|
-
slotID?: string;
|
|
4648
|
-
name?: string;
|
|
4649
|
-
pricingType?: 'Hourly' | 'Flat';
|
|
4650
|
-
appliesTo?: 'slot' | 'addon' | 'reservation';
|
|
4651
|
-
price?: string;
|
|
4652
|
-
minutes?: string;
|
|
4653
|
-
quantity: string;
|
|
4654
|
-
startDate?: string;
|
|
4655
|
-
startTime?: string;
|
|
4656
|
-
endDate?: string;
|
|
4657
|
-
endTime?: string;
|
|
4658
|
-
bondProductId?: number;
|
|
4659
|
-
}
|
|
4660
|
-
export declare class ImportResourceMappingDto {
|
|
4661
|
-
bondResourceID?: string;
|
|
4662
|
-
resourceName?: string;
|
|
4663
|
-
}
|
|
4664
|
-
export declare class ImportProductMappingDto {
|
|
4665
|
-
productID?: string;
|
|
4666
|
-
productName?: string;
|
|
4667
|
-
}
|
|
4668
|
-
export declare class ImportedSlotDto {
|
|
4669
|
-
reservationID: string;
|
|
4670
|
-
bondResourceID: string;
|
|
4671
|
-
resourceName: string;
|
|
4672
|
-
subResourceName: string;
|
|
4673
|
-
startDate: string;
|
|
4674
|
-
startTime: string;
|
|
4675
|
-
endDate: string;
|
|
4676
|
-
endTime: string;
|
|
4677
|
-
sportId?: string;
|
|
4678
|
-
setupDuration: string;
|
|
4679
|
-
setupIncludeInCosts: string;
|
|
4680
|
-
takedownDuration: string;
|
|
4681
|
-
takedownIncludeInCosts: string;
|
|
4682
|
-
slotProduct: ImportedSlotProductDto;
|
|
4683
|
-
addonProducts: ImportedSlotProductDto[];
|
|
4684
|
-
totalPrice: string;
|
|
4685
|
-
}
|
|
4686
|
-
export declare class ImportedReservationDto {
|
|
4687
|
-
name: string;
|
|
4688
|
-
customerId: string;
|
|
4689
|
-
description: string;
|
|
4690
|
-
totalPrice: string;
|
|
4691
|
-
downPayment: string;
|
|
4692
|
-
paid: string;
|
|
4693
|
-
invoiceId: string;
|
|
4694
|
-
slots?: ImportedSlotDto[];
|
|
4695
|
-
addons?: ImportedSlotProductDto[];
|
|
4696
|
-
}
|