@bondsports/types 0.0.35 → 0.0.38
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 +371 -371
- 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
|
@@ -2,13 +2,6 @@ import { BaseEntity } from 'typeorm';
|
|
|
2
2
|
import { Stripe } from 'stripe';
|
|
3
3
|
import moment from 'moment';
|
|
4
4
|
export { TypesProvider } from './provider';
|
|
5
|
-
export declare class BasicActivityTimesDto {
|
|
6
|
-
dayOfWeek: number;
|
|
7
|
-
close: string;
|
|
8
|
-
open: string;
|
|
9
|
-
availabilityStartDate?: string;
|
|
10
|
-
availabilityEndDate?: string;
|
|
11
|
-
}
|
|
12
5
|
export declare class QuestionAnswersDto {
|
|
13
6
|
questionId: number;
|
|
14
7
|
value: any;
|
|
@@ -85,6 +78,49 @@ export declare class AddEditCustomerDto {
|
|
|
85
78
|
emergencyContactName?: string;
|
|
86
79
|
emergencyContactPhone?: string;
|
|
87
80
|
}
|
|
81
|
+
export declare class AddressDto {
|
|
82
|
+
city: string;
|
|
83
|
+
state: string;
|
|
84
|
+
country: string;
|
|
85
|
+
geo: number[];
|
|
86
|
+
}
|
|
87
|
+
export declare class OpeningTimeDto {
|
|
88
|
+
open: string;
|
|
89
|
+
close: string;
|
|
90
|
+
dayOfWeek: number;
|
|
91
|
+
}
|
|
92
|
+
export declare class CreateFacilityDto {
|
|
93
|
+
name: string;
|
|
94
|
+
sports: number[];
|
|
95
|
+
description?: string;
|
|
96
|
+
longDescription?: string;
|
|
97
|
+
info?: string;
|
|
98
|
+
address: AddressDto;
|
|
99
|
+
timezone: string;
|
|
100
|
+
amenities: number[];
|
|
101
|
+
openingTimes: OpeningTimeDto[];
|
|
102
|
+
resourcesIds?: number[];
|
|
103
|
+
}
|
|
104
|
+
export declare class UpdateFacilityDetailsDto {
|
|
105
|
+
name?: string;
|
|
106
|
+
description?: string;
|
|
107
|
+
longDescription?: string;
|
|
108
|
+
info?: string;
|
|
109
|
+
address?: AddressDto;
|
|
110
|
+
timezone?: string;
|
|
111
|
+
}
|
|
112
|
+
export declare class UpdateFacilityOpeningTimesDto {
|
|
113
|
+
openingTimes: OpeningTimeDto[];
|
|
114
|
+
}
|
|
115
|
+
export declare class UpdateFacilitySportsDto {
|
|
116
|
+
sports: number[];
|
|
117
|
+
}
|
|
118
|
+
export declare class UpdateFacilityAmenitiesDto {
|
|
119
|
+
amenities: number[];
|
|
120
|
+
}
|
|
121
|
+
export declare class FindFacilitiesOptionsDto extends PaginationQuery {
|
|
122
|
+
nameSearch?: string;
|
|
123
|
+
}
|
|
88
124
|
export declare class FindEventByIdDto {
|
|
89
125
|
eventId: number;
|
|
90
126
|
organizationId: number;
|
|
@@ -186,48 +222,17 @@ export declare class FindEventAttendeeOptionsDto extends PaginationRangeQuery {
|
|
|
186
222
|
isWaiverSigned?: string;
|
|
187
223
|
statuses?: string;
|
|
188
224
|
}
|
|
189
|
-
export declare class
|
|
190
|
-
|
|
191
|
-
state: string;
|
|
192
|
-
country: string;
|
|
193
|
-
geo: number[];
|
|
194
|
-
}
|
|
195
|
-
export declare class OpeningTimeDto {
|
|
196
|
-
open: string;
|
|
197
|
-
close: string;
|
|
198
|
-
dayOfWeek: number;
|
|
199
|
-
}
|
|
200
|
-
export declare class CreateFacilityDto {
|
|
201
|
-
name: string;
|
|
202
|
-
sports: number[];
|
|
203
|
-
description?: string;
|
|
204
|
-
longDescription?: string;
|
|
205
|
-
info?: string;
|
|
206
|
-
address: AddressDto;
|
|
207
|
-
timezone: string;
|
|
208
|
-
amenities: number[];
|
|
209
|
-
openingTimes: OpeningTimeDto[];
|
|
210
|
-
resourcesIds?: number[];
|
|
211
|
-
}
|
|
212
|
-
export declare class UpdateFacilityDetailsDto {
|
|
213
|
-
name?: string;
|
|
214
|
-
description?: string;
|
|
215
|
-
longDescription?: string;
|
|
216
|
-
info?: string;
|
|
217
|
-
address?: AddressDto;
|
|
218
|
-
timezone?: string;
|
|
219
|
-
}
|
|
220
|
-
export declare class UpdateFacilityOpeningTimesDto {
|
|
221
|
-
openingTimes: OpeningTimeDto[];
|
|
222
|
-
}
|
|
223
|
-
export declare class UpdateFacilitySportsDto {
|
|
224
|
-
sports: number[];
|
|
225
|
+
export declare class FindOneParams {
|
|
226
|
+
id: number;
|
|
225
227
|
}
|
|
226
|
-
export declare class
|
|
227
|
-
|
|
228
|
+
export declare class PaginationQuery {
|
|
229
|
+
page: number;
|
|
230
|
+
itemsPerPage: number;
|
|
228
231
|
}
|
|
229
|
-
export declare class
|
|
230
|
-
|
|
232
|
+
export declare class PaginationRangeQuery {
|
|
233
|
+
startPage: number;
|
|
234
|
+
endPage: number;
|
|
235
|
+
itemsPerPage: number;
|
|
231
236
|
}
|
|
232
237
|
export declare class FindFamilyAccountsDto {
|
|
233
238
|
userId: number;
|
|
@@ -261,18 +266,6 @@ export declare class RemoveUserFromFamilyAccountDto {
|
|
|
261
266
|
userId: number;
|
|
262
267
|
familyAccountId: number;
|
|
263
268
|
}
|
|
264
|
-
export declare class FindOneParams {
|
|
265
|
-
id: number;
|
|
266
|
-
}
|
|
267
|
-
export declare class PaginationQuery {
|
|
268
|
-
page: number;
|
|
269
|
-
itemsPerPage: number;
|
|
270
|
-
}
|
|
271
|
-
export declare class PaginationRangeQuery {
|
|
272
|
-
startPage: number;
|
|
273
|
-
endPage: number;
|
|
274
|
-
itemsPerPage: number;
|
|
275
|
-
}
|
|
276
269
|
export declare class FindGlCodeByOrganizationIdDto {
|
|
277
270
|
organizationId: number;
|
|
278
271
|
}
|
|
@@ -412,48 +405,6 @@ export declare class CancelMembershipDto {
|
|
|
412
405
|
isImmediatelyCancel: boolean;
|
|
413
406
|
cancellationReason?: string;
|
|
414
407
|
}
|
|
415
|
-
export declare class CreateEntitlementTermsDto {
|
|
416
|
-
organizationId: number;
|
|
417
|
-
entitlementGroupId: number;
|
|
418
|
-
terms: IEntitlementTerms[];
|
|
419
|
-
}
|
|
420
|
-
export declare class FindEntitlementTermsByGroupIdDto {
|
|
421
|
-
entitlementGroupId: number;
|
|
422
|
-
}
|
|
423
|
-
export declare class FindEntitlementTermsByVariablesDto {
|
|
424
|
-
user: any;
|
|
425
|
-
userVariables: IQuestionAnswerObject[];
|
|
426
|
-
}
|
|
427
|
-
export declare class FindLowestPriceDto {
|
|
428
|
-
organizationId: number;
|
|
429
|
-
user?: any;
|
|
430
|
-
answers?: IQuestionAnswerObject[];
|
|
431
|
-
itemIds: number[];
|
|
432
|
-
itemType?: ResourceNameTypeEnum;
|
|
433
|
-
startDate?: Date;
|
|
434
|
-
}
|
|
435
|
-
export declare class FindGroupItemsPricingsDto {
|
|
436
|
-
groupsIds: number[];
|
|
437
|
-
itemsIds: number[];
|
|
438
|
-
}
|
|
439
|
-
export declare class CreateEntitlementGroupDto {
|
|
440
|
-
name: string;
|
|
441
|
-
}
|
|
442
|
-
export declare class GetEntitlementGroupPricingDto {
|
|
443
|
-
itemIds: number[];
|
|
444
|
-
itemType: string;
|
|
445
|
-
}
|
|
446
|
-
export declare class FindEntitlementGroupByIdDto {
|
|
447
|
-
groupid: number;
|
|
448
|
-
}
|
|
449
|
-
export declare class CreateGroupPricingWithProduct {
|
|
450
|
-
groupId: number;
|
|
451
|
-
price: number;
|
|
452
|
-
startDate?: Date;
|
|
453
|
-
endDate?: Date;
|
|
454
|
-
discountValue?: number;
|
|
455
|
-
discountMethod?: DiscountMethodsEnum;
|
|
456
|
-
}
|
|
457
408
|
export declare class FindByProductIdDto {
|
|
458
409
|
productId: number;
|
|
459
410
|
}
|
|
@@ -674,6 +625,48 @@ export declare class createResourceDto {
|
|
|
674
625
|
export declare class archiveDto {
|
|
675
626
|
isArchive: boolean;
|
|
676
627
|
}
|
|
628
|
+
export declare class CreateEntitlementTermsDto {
|
|
629
|
+
organizationId: number;
|
|
630
|
+
entitlementGroupId: number;
|
|
631
|
+
terms: IEntitlementTerms[];
|
|
632
|
+
}
|
|
633
|
+
export declare class FindEntitlementTermsByGroupIdDto {
|
|
634
|
+
entitlementGroupId: number;
|
|
635
|
+
}
|
|
636
|
+
export declare class FindEntitlementTermsByVariablesDto {
|
|
637
|
+
user: any;
|
|
638
|
+
userVariables: IQuestionAnswerObject[];
|
|
639
|
+
}
|
|
640
|
+
export declare class FindLowestPriceDto {
|
|
641
|
+
organizationId: number;
|
|
642
|
+
user?: any;
|
|
643
|
+
answers?: IQuestionAnswerObject[];
|
|
644
|
+
itemIds: number[];
|
|
645
|
+
itemType?: ResourceNameTypeEnum;
|
|
646
|
+
startDate?: Date;
|
|
647
|
+
}
|
|
648
|
+
export declare class FindGroupItemsPricingsDto {
|
|
649
|
+
groupsIds: number[];
|
|
650
|
+
itemsIds: number[];
|
|
651
|
+
}
|
|
652
|
+
export declare class CreateEntitlementGroupDto {
|
|
653
|
+
name: string;
|
|
654
|
+
}
|
|
655
|
+
export declare class GetEntitlementGroupPricingDto {
|
|
656
|
+
itemIds: number[];
|
|
657
|
+
itemType: string;
|
|
658
|
+
}
|
|
659
|
+
export declare class FindEntitlementGroupByIdDto {
|
|
660
|
+
groupid: number;
|
|
661
|
+
}
|
|
662
|
+
export declare class CreateGroupPricingWithProduct {
|
|
663
|
+
groupId: number;
|
|
664
|
+
price: number;
|
|
665
|
+
startDate?: Date;
|
|
666
|
+
endDate?: Date;
|
|
667
|
+
discountValue?: number;
|
|
668
|
+
discountMethod?: DiscountMethodsEnum;
|
|
669
|
+
}
|
|
677
670
|
export declare class CreateUpdateVariantsDto {
|
|
678
671
|
organizationId: number;
|
|
679
672
|
parentProductId: number;
|
|
@@ -920,6 +913,18 @@ export declare class ProgramHighlightDto {
|
|
|
920
913
|
type: ProgramHighlightTypeEnum;
|
|
921
914
|
title: string;
|
|
922
915
|
}
|
|
916
|
+
export declare class ResourceDto {
|
|
917
|
+
type: ResourceNameTypeEnum;
|
|
918
|
+
id: number;
|
|
919
|
+
}
|
|
920
|
+
export declare class CreateResourceGroupDto {
|
|
921
|
+
name: string;
|
|
922
|
+
parentSlotId: number;
|
|
923
|
+
facilityId: number;
|
|
924
|
+
childrenSlotIds: number[];
|
|
925
|
+
}
|
|
926
|
+
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
927
|
+
}
|
|
923
928
|
export declare class PurchasePaymentDto {
|
|
924
929
|
token: string;
|
|
925
930
|
type: PaymentMethodTypeEnum;
|
|
@@ -990,18 +995,6 @@ export declare class PartialPaymentAsUserDto {
|
|
|
990
995
|
amountToPay: any;
|
|
991
996
|
paymentMethodData: any;
|
|
992
997
|
}
|
|
993
|
-
export declare class CreateResourceGroupDto {
|
|
994
|
-
name: string;
|
|
995
|
-
parentSlotId: number;
|
|
996
|
-
facilityId: number;
|
|
997
|
-
childrenSlotIds: number[];
|
|
998
|
-
}
|
|
999
|
-
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
1000
|
-
}
|
|
1001
|
-
export declare class ResourceDto {
|
|
1002
|
-
type: ResourceNameTypeEnum;
|
|
1003
|
-
id: number;
|
|
1004
|
-
}
|
|
1005
998
|
export declare class SpaceByIdDto {
|
|
1006
999
|
spaceId: number;
|
|
1007
1000
|
}
|
|
@@ -1058,13 +1051,6 @@ export declare class FindResourcesOptionsDto extends PaginationQuery {
|
|
|
1058
1051
|
types?: string;
|
|
1059
1052
|
resourcesIds?: string;
|
|
1060
1053
|
}
|
|
1061
|
-
export declare class StripeCustomerIdDto {
|
|
1062
|
-
userId: number;
|
|
1063
|
-
}
|
|
1064
|
-
export declare class AddACHTokenToCustomerDto {
|
|
1065
|
-
publicToken: string;
|
|
1066
|
-
accountId: string;
|
|
1067
|
-
}
|
|
1068
1054
|
export declare class FindByUserIdDto {
|
|
1069
1055
|
userId: number;
|
|
1070
1056
|
}
|
|
@@ -1087,6 +1073,20 @@ export declare class ActivityLogRecord extends BondBaseEntity {
|
|
|
1087
1073
|
oldValue?: any;
|
|
1088
1074
|
newValue?: any;
|
|
1089
1075
|
}
|
|
1076
|
+
export declare class BasicActivityTimesDto {
|
|
1077
|
+
dayOfWeek: number;
|
|
1078
|
+
close: string;
|
|
1079
|
+
open: string;
|
|
1080
|
+
availabilityStartDate?: string;
|
|
1081
|
+
availabilityEndDate?: string;
|
|
1082
|
+
}
|
|
1083
|
+
export declare class StripeCustomerIdDto {
|
|
1084
|
+
userId: number;
|
|
1085
|
+
}
|
|
1086
|
+
export declare class AddACHTokenToCustomerDto {
|
|
1087
|
+
publicToken: string;
|
|
1088
|
+
accountId: string;
|
|
1089
|
+
}
|
|
1090
1090
|
export declare class ActivityTimes extends BondBaseEntity {
|
|
1091
1091
|
parentType: ResourceNameTypeEnum | ProductTypesEnum;
|
|
1092
1092
|
parentId: number;
|
|
@@ -1111,6 +1111,17 @@ export declare class Address extends BondBaseEntity {
|
|
|
1111
1111
|
geo: any;
|
|
1112
1112
|
deletedAt?: Date;
|
|
1113
1113
|
}
|
|
1114
|
+
export declare class AnswerTitle extends OrganizationConnectionBaseEntity {
|
|
1115
|
+
questionnaireId: number;
|
|
1116
|
+
userId?: number;
|
|
1117
|
+
answers: Answer[];
|
|
1118
|
+
questionnaire: Questionnaires;
|
|
1119
|
+
}
|
|
1120
|
+
export declare class Athlete extends BondBaseEntity {
|
|
1121
|
+
userId: number | null;
|
|
1122
|
+
metadata: object | null;
|
|
1123
|
+
athleteSports: AthleteSports[];
|
|
1124
|
+
}
|
|
1114
1125
|
export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
1115
1126
|
questionId: number;
|
|
1116
1127
|
question?: Questions;
|
|
@@ -1124,17 +1135,6 @@ export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
|
1124
1135
|
metaData: any | null;
|
|
1125
1136
|
questionText: string | null;
|
|
1126
1137
|
}
|
|
1127
|
-
export declare class AnswerTitle extends OrganizationConnectionBaseEntity {
|
|
1128
|
-
questionnaireId: number;
|
|
1129
|
-
userId?: number;
|
|
1130
|
-
answers: Answer[];
|
|
1131
|
-
questionnaire: Questionnaires;
|
|
1132
|
-
}
|
|
1133
|
-
export declare class Athlete extends BondBaseEntity {
|
|
1134
|
-
userId: number | null;
|
|
1135
|
-
metadata: object | null;
|
|
1136
|
-
athleteSports: AthleteSports[];
|
|
1137
|
-
}
|
|
1138
1138
|
export declare class AthleteSports extends BondBaseEntity {
|
|
1139
1139
|
athleteId: number | null;
|
|
1140
1140
|
sports: number | null;
|
|
@@ -1148,11 +1148,6 @@ export declare class BlockedDate extends BondBaseEntity {
|
|
|
1148
1148
|
endDate: Date;
|
|
1149
1149
|
deletedAt?: Date;
|
|
1150
1150
|
}
|
|
1151
|
-
export declare class BondBaseEntity extends BaseEntity {
|
|
1152
|
-
id: number;
|
|
1153
|
-
createdAt: Date;
|
|
1154
|
-
updatedAt: Date;
|
|
1155
|
-
}
|
|
1156
1151
|
export declare class BookedSessions extends BondBaseEntity {
|
|
1157
1152
|
reservationId?: number;
|
|
1158
1153
|
color?: string;
|
|
@@ -1181,6 +1176,11 @@ export declare class BookingTypeSetting extends OrganizationConnectionBaseEntity
|
|
|
1181
1176
|
endTimeInDay: string;
|
|
1182
1177
|
directBookingFor: DirectBookingTypesEnum;
|
|
1183
1178
|
}
|
|
1179
|
+
export declare class BondBaseEntity extends BaseEntity {
|
|
1180
|
+
id: number;
|
|
1181
|
+
createdAt: Date;
|
|
1182
|
+
updatedAt: Date;
|
|
1183
|
+
}
|
|
1184
1184
|
export declare class Configuration extends BondBaseEntity {
|
|
1185
1185
|
area: string;
|
|
1186
1186
|
key: string;
|
|
@@ -1198,14 +1198,6 @@ export declare class Connection extends BondBaseEntity {
|
|
|
1198
1198
|
userCreatorId: number | null;
|
|
1199
1199
|
ownerId: number | null;
|
|
1200
1200
|
}
|
|
1201
|
-
export declare class CreditNote extends OrganizationConnectionBaseEntity {
|
|
1202
|
-
creditAmount: number;
|
|
1203
|
-
paymentProcessorId: string;
|
|
1204
|
-
userId: number;
|
|
1205
|
-
invoiceId: number;
|
|
1206
|
-
orderId: number;
|
|
1207
|
-
creditPaymentInvoiceId: number;
|
|
1208
|
-
}
|
|
1209
1201
|
export declare class Customer extends OrganizationConnectionBaseEntity {
|
|
1210
1202
|
name: string | null;
|
|
1211
1203
|
entityId: number | null;
|
|
@@ -1246,6 +1238,14 @@ export declare class CustomerCreditTransaction extends OrganizationConnectionBas
|
|
|
1246
1238
|
order: Order;
|
|
1247
1239
|
invoice: Invoice;
|
|
1248
1240
|
}
|
|
1241
|
+
export declare class CreditNote extends OrganizationConnectionBaseEntity {
|
|
1242
|
+
creditAmount: number;
|
|
1243
|
+
paymentProcessorId: string;
|
|
1244
|
+
userId: number;
|
|
1245
|
+
invoiceId: number;
|
|
1246
|
+
orderId: number;
|
|
1247
|
+
creditPaymentInvoiceId: number;
|
|
1248
|
+
}
|
|
1249
1249
|
export declare class CustomerNote extends OrganizationConnectionBaseEntity {
|
|
1250
1250
|
customerId?: number;
|
|
1251
1251
|
description: string;
|
|
@@ -1260,12 +1260,6 @@ export declare class Division extends BondBaseEntity {
|
|
|
1260
1260
|
isDefault: boolean;
|
|
1261
1261
|
groups: Group[];
|
|
1262
1262
|
}
|
|
1263
|
-
export declare class EmergencyContact extends OrganizationConnectionBaseEntity {
|
|
1264
|
-
customerId: number;
|
|
1265
|
-
name: string | null;
|
|
1266
|
-
phoneNumber: string | null;
|
|
1267
|
-
customer: Customer;
|
|
1268
|
-
}
|
|
1269
1263
|
export declare class EntitlementGroup extends OrganizationConnectionBaseEntity {
|
|
1270
1264
|
name: string | null;
|
|
1271
1265
|
}
|
|
@@ -1273,6 +1267,12 @@ export declare class EntitlementTerms extends OrganizationConnectionBaseEntity {
|
|
|
1273
1267
|
groupId: number;
|
|
1274
1268
|
terms: IEntitlementTerms[];
|
|
1275
1269
|
}
|
|
1270
|
+
export declare class EmergencyContact extends OrganizationConnectionBaseEntity {
|
|
1271
|
+
customerId: number;
|
|
1272
|
+
name: string | null;
|
|
1273
|
+
phoneNumber: string | null;
|
|
1274
|
+
customer: Customer;
|
|
1275
|
+
}
|
|
1276
1276
|
export declare class EventAttendee extends BondBaseEntity {
|
|
1277
1277
|
status: RequestStatusEnum | null;
|
|
1278
1278
|
hasPaid: boolean | null;
|
|
@@ -1343,6 +1343,14 @@ export declare class Event extends OrganizationConnectionBaseEntity {
|
|
|
1343
1343
|
slots: Slot[];
|
|
1344
1344
|
purchasedResources: PurchasedResource[];
|
|
1345
1345
|
}
|
|
1346
|
+
export declare class FacilityToResource extends BondBaseEntity {
|
|
1347
|
+
facilityId: number;
|
|
1348
|
+
resourceId: number;
|
|
1349
|
+
}
|
|
1350
|
+
export declare class FamilyAccount extends BondBaseEntity {
|
|
1351
|
+
name: string | null;
|
|
1352
|
+
userInFamilyAccounts: UserInFamilyAccount[];
|
|
1353
|
+
}
|
|
1346
1354
|
export declare class Facility extends OrganizationConnectionBaseEntity {
|
|
1347
1355
|
name: string;
|
|
1348
1356
|
description?: string;
|
|
@@ -1367,14 +1375,6 @@ export declare class Facility extends OrganizationConnectionBaseEntity {
|
|
|
1367
1375
|
programSeasons: ProgramSeason[];
|
|
1368
1376
|
linkSEO: string;
|
|
1369
1377
|
}
|
|
1370
|
-
export declare class FacilityToResource extends BondBaseEntity {
|
|
1371
|
-
facilityId: number;
|
|
1372
|
-
resourceId: number;
|
|
1373
|
-
}
|
|
1374
|
-
export declare class FamilyAccount extends BondBaseEntity {
|
|
1375
|
-
name: string | null;
|
|
1376
|
-
userInFamilyAccounts: UserInFamilyAccount[];
|
|
1377
|
-
}
|
|
1378
1378
|
export declare class FutureInstallment extends OrganizationConnectionBaseEntity {
|
|
1379
1379
|
userId: number;
|
|
1380
1380
|
orderId: number;
|
|
@@ -1388,22 +1388,6 @@ export declare class FutureInstallment extends OrganizationConnectionBaseEntity
|
|
|
1388
1388
|
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1389
1389
|
code: string;
|
|
1390
1390
|
}
|
|
1391
|
-
export declare class Group extends BondBaseEntity {
|
|
1392
|
-
name: string;
|
|
1393
|
-
description?: string;
|
|
1394
|
-
status: GroupStatusEnum;
|
|
1395
|
-
maxCapacity?: number;
|
|
1396
|
-
mainMediaId?: number;
|
|
1397
|
-
minAgeYears?: number;
|
|
1398
|
-
maxAgeYears?: number;
|
|
1399
|
-
gender: GenderEnum;
|
|
1400
|
-
levelOfPlay?: LevelOfPlayEnum[];
|
|
1401
|
-
sports: SportsEnum[];
|
|
1402
|
-
questionnaires?: number[];
|
|
1403
|
-
captainUserId?: number;
|
|
1404
|
-
members: ISeasonAttendeeInfo[];
|
|
1405
|
-
users: User[];
|
|
1406
|
-
}
|
|
1407
1391
|
export declare class GroupItemsPricing extends OrganizationConnectionBaseEntity {
|
|
1408
1392
|
groupId: number;
|
|
1409
1393
|
itemId: number;
|
|
@@ -1422,6 +1406,22 @@ export declare class GroupsInDivisions extends BondBaseEntity {
|
|
|
1422
1406
|
divisionId: number;
|
|
1423
1407
|
deletedAt?: Date;
|
|
1424
1408
|
}
|
|
1409
|
+
export declare class Group extends BondBaseEntity {
|
|
1410
|
+
name: string;
|
|
1411
|
+
description?: string;
|
|
1412
|
+
status: GroupStatusEnum;
|
|
1413
|
+
maxCapacity?: number;
|
|
1414
|
+
mainMediaId?: number;
|
|
1415
|
+
minAgeYears?: number;
|
|
1416
|
+
maxAgeYears?: number;
|
|
1417
|
+
gender: GenderEnum;
|
|
1418
|
+
levelOfPlay?: LevelOfPlayEnum[];
|
|
1419
|
+
sports: SportsEnum[];
|
|
1420
|
+
questionnaires?: number[];
|
|
1421
|
+
captainUserId?: number;
|
|
1422
|
+
members: ISeasonAttendeeInfo[];
|
|
1423
|
+
users: User[];
|
|
1424
|
+
}
|
|
1425
1425
|
export declare class Invoice extends OrganizationConnectionBaseEntity {
|
|
1426
1426
|
price: number;
|
|
1427
1427
|
paymentProcessorId: string;
|
|
@@ -1459,15 +1459,6 @@ export declare class InvoiceMails extends OrganizationConnectionBaseEntity {
|
|
|
1459
1459
|
mailParams?: any;
|
|
1460
1460
|
memo?: string;
|
|
1461
1461
|
}
|
|
1462
|
-
export declare class InvoiceNote extends OrganizationConnectionBaseEntity {
|
|
1463
|
-
content: string;
|
|
1464
|
-
creatingUserId: number;
|
|
1465
|
-
user: User;
|
|
1466
|
-
isPublic: boolean;
|
|
1467
|
-
deletedAt: Date;
|
|
1468
|
-
invoiceId: number;
|
|
1469
|
-
invoice: Invoice;
|
|
1470
|
-
}
|
|
1471
1462
|
export declare class League extends OrganizationConnectionBaseEntity {
|
|
1472
1463
|
name: string | null;
|
|
1473
1464
|
description: string | null;
|
|
@@ -1538,6 +1529,15 @@ export declare class LeagueSeasonRelations {
|
|
|
1538
1529
|
league?: boolean;
|
|
1539
1530
|
facilities?: boolean;
|
|
1540
1531
|
}
|
|
1532
|
+
export declare class InvoiceNote extends OrganizationConnectionBaseEntity {
|
|
1533
|
+
content: string;
|
|
1534
|
+
creatingUserId: number;
|
|
1535
|
+
user: User;
|
|
1536
|
+
isPublic: boolean;
|
|
1537
|
+
deletedAt: Date;
|
|
1538
|
+
invoiceId: number;
|
|
1539
|
+
invoice: Invoice;
|
|
1540
|
+
}
|
|
1541
1541
|
export declare class LineItemHistory extends BondBaseEntity {
|
|
1542
1542
|
orderId: number;
|
|
1543
1543
|
invoiceId: number;
|
|
@@ -1603,22 +1603,6 @@ export declare class LineItems extends BondBaseEntity {
|
|
|
1603
1603
|
displayUnitPrice?: number;
|
|
1604
1604
|
displayQuantity?: number;
|
|
1605
1605
|
}
|
|
1606
|
-
export declare class LinkedAccounts extends BondBaseEntity {
|
|
1607
|
-
id: number;
|
|
1608
|
-
provider: string;
|
|
1609
|
-
providerId: string | null;
|
|
1610
|
-
parentId: number | null;
|
|
1611
|
-
parentType: string | null;
|
|
1612
|
-
status: number | null;
|
|
1613
|
-
token: string | null;
|
|
1614
|
-
refreshToken: string | null;
|
|
1615
|
-
tokenCreatedAt: Date | null;
|
|
1616
|
-
tokenValidUpTo: Date | null;
|
|
1617
|
-
createdAt: Date;
|
|
1618
|
-
updatedAt: Date;
|
|
1619
|
-
user: User;
|
|
1620
|
-
userId: number | null;
|
|
1621
|
-
}
|
|
1622
1606
|
export declare class Media extends BondBaseEntity {
|
|
1623
1607
|
url: string;
|
|
1624
1608
|
name: string | null;
|
|
@@ -1666,6 +1650,22 @@ export declare class Membership extends OrganizationConnectionBaseEntity {
|
|
|
1666
1650
|
isAutoRenew?: boolean;
|
|
1667
1651
|
purchasedResources: PurchasedResource[];
|
|
1668
1652
|
}
|
|
1653
|
+
export declare class LinkedAccounts extends BondBaseEntity {
|
|
1654
|
+
id: number;
|
|
1655
|
+
provider: string;
|
|
1656
|
+
providerId: string | null;
|
|
1657
|
+
parentId: number | null;
|
|
1658
|
+
parentType: string | null;
|
|
1659
|
+
status: number | null;
|
|
1660
|
+
token: string | null;
|
|
1661
|
+
refreshToken: string | null;
|
|
1662
|
+
tokenCreatedAt: Date | null;
|
|
1663
|
+
tokenValidUpTo: Date | null;
|
|
1664
|
+
createdAt: Date;
|
|
1665
|
+
updatedAt: Date;
|
|
1666
|
+
user: User;
|
|
1667
|
+
userId: number | null;
|
|
1668
|
+
}
|
|
1669
1669
|
export declare class MembershipMember extends OrganizationConnectionBaseEntity {
|
|
1670
1670
|
membership: Membership;
|
|
1671
1671
|
membershipId: number;
|
|
@@ -1686,6 +1686,12 @@ export declare class MembershipMember extends OrganizationConnectionBaseEntity {
|
|
|
1686
1686
|
cancellationStatus?: CancellationStatusEnum;
|
|
1687
1687
|
isImported?: boolean;
|
|
1688
1688
|
}
|
|
1689
|
+
export declare class NotificationSubscriptions extends OrganizationConnectionBaseEntity {
|
|
1690
|
+
email: string | null;
|
|
1691
|
+
notificationType: NotificationTypeEnum | null;
|
|
1692
|
+
resourceId: number | null;
|
|
1693
|
+
resourceType: string | null;
|
|
1694
|
+
}
|
|
1689
1695
|
export declare class OpeningTime extends OrganizationConnectionBaseEntity {
|
|
1690
1696
|
id: number;
|
|
1691
1697
|
dayOfWeek: number;
|
|
@@ -1721,15 +1727,6 @@ export declare class Order extends BondBaseEntity {
|
|
|
1721
1727
|
orderNotes: OrderNote[];
|
|
1722
1728
|
slots: Slot[];
|
|
1723
1729
|
}
|
|
1724
|
-
export declare class OrderNote extends OrganizationConnectionBaseEntity {
|
|
1725
|
-
content: string;
|
|
1726
|
-
creatingUserId: number;
|
|
1727
|
-
user: User;
|
|
1728
|
-
isPublic: boolean;
|
|
1729
|
-
deletedAt: Date;
|
|
1730
|
-
orderId: number;
|
|
1731
|
-
order: Order;
|
|
1732
|
-
}
|
|
1733
1730
|
export declare class OrderToInvoice extends BondBaseEntity {
|
|
1734
1731
|
orderId: number;
|
|
1735
1732
|
invoiceId: number;
|
|
@@ -1741,6 +1738,15 @@ export declare class OrderToInvoice extends BondBaseEntity {
|
|
|
1741
1738
|
export declare class OrganizationConnectionBaseEntity extends BondBaseEntity {
|
|
1742
1739
|
organizationId: number;
|
|
1743
1740
|
}
|
|
1741
|
+
export declare class OrderNote extends OrganizationConnectionBaseEntity {
|
|
1742
|
+
content: string;
|
|
1743
|
+
creatingUserId: number;
|
|
1744
|
+
user: User;
|
|
1745
|
+
isPublic: boolean;
|
|
1746
|
+
deletedAt: Date;
|
|
1747
|
+
orderId: number;
|
|
1748
|
+
order: Order;
|
|
1749
|
+
}
|
|
1744
1750
|
export declare class PackageV1 extends BondBaseEntity {
|
|
1745
1751
|
name?: string;
|
|
1746
1752
|
description?: string;
|
|
@@ -1764,12 +1770,6 @@ export declare class PasswordReset extends BondBaseEntity {
|
|
|
1764
1770
|
validUntil: Date | null;
|
|
1765
1771
|
active: boolean | null;
|
|
1766
1772
|
}
|
|
1767
|
-
export declare class PaymentPlanSchedule extends OrganizationConnectionBaseEntity {
|
|
1768
|
-
paymentPlanId: number;
|
|
1769
|
-
paymentDate: Date;
|
|
1770
|
-
deletedAt?: Date;
|
|
1771
|
-
paymentPlan: ProductPaymentPlan;
|
|
1772
|
-
}
|
|
1773
1773
|
export declare class PaymentV1 extends BondBaseEntity {
|
|
1774
1774
|
userId: number | null;
|
|
1775
1775
|
ownerId: number | null;
|
|
@@ -1804,6 +1804,12 @@ export declare class Price extends OrganizationConnectionBaseEntity {
|
|
|
1804
1804
|
discountMethod?: DiscountMethodsEnum;
|
|
1805
1805
|
discountValue?: number;
|
|
1806
1806
|
}
|
|
1807
|
+
export declare class PaymentPlanSchedule extends OrganizationConnectionBaseEntity {
|
|
1808
|
+
paymentPlanId: number;
|
|
1809
|
+
paymentDate: Date;
|
|
1810
|
+
deletedAt?: Date;
|
|
1811
|
+
paymentPlan: ProductPaymentPlan;
|
|
1812
|
+
}
|
|
1807
1813
|
export declare class Product extends OrganizationConnectionBaseEntity {
|
|
1808
1814
|
name: string;
|
|
1809
1815
|
quantity: number;
|
|
@@ -1869,14 +1875,9 @@ export declare class ProductPackage extends OrganizationConnectionBaseEntity {
|
|
|
1869
1875
|
durationDays?: number;
|
|
1870
1876
|
level?: ProductPackageLevelEnum;
|
|
1871
1877
|
}
|
|
1872
|
-
export declare class
|
|
1878
|
+
export declare class ProductToVariantTitle extends OrganizationConnectionBaseEntity {
|
|
1873
1879
|
productId: number;
|
|
1874
|
-
|
|
1875
|
-
dayOfMonth?: number;
|
|
1876
|
-
name: string;
|
|
1877
|
-
deletedAt?: Date;
|
|
1878
|
-
schedule: PaymentPlanSchedule[];
|
|
1879
|
-
product?: Product;
|
|
1880
|
+
variantTitleId: number;
|
|
1880
1881
|
}
|
|
1881
1882
|
export declare class ProductResource extends OrganizationConnectionBaseEntity {
|
|
1882
1883
|
productId: number;
|
|
@@ -1889,9 +1890,14 @@ export declare class ProductResource extends OrganizationConnectionBaseEntity {
|
|
|
1889
1890
|
productPackages: ProductPackage[];
|
|
1890
1891
|
resourceName?: string;
|
|
1891
1892
|
}
|
|
1892
|
-
export declare class
|
|
1893
|
+
export declare class ProductPaymentPlan extends OrganizationConnectionBaseEntity {
|
|
1893
1894
|
productId: number;
|
|
1894
|
-
|
|
1895
|
+
maxMonths?: number;
|
|
1896
|
+
dayOfMonth?: number;
|
|
1897
|
+
name: string;
|
|
1898
|
+
deletedAt?: Date;
|
|
1899
|
+
schedule: PaymentPlanSchedule[];
|
|
1900
|
+
product?: Product;
|
|
1895
1901
|
}
|
|
1896
1902
|
export declare class ProductToVariant extends OrganizationConnectionBaseEntity {
|
|
1897
1903
|
productId: number;
|
|
@@ -1904,23 +1910,6 @@ export declare class ProductsReservedForCustomers extends OrganizationConnection
|
|
|
1904
1910
|
deletedAt?: Date;
|
|
1905
1911
|
product: Product;
|
|
1906
1912
|
}
|
|
1907
|
-
export declare class ProductsUsers extends OrganizationConnectionBaseEntity {
|
|
1908
|
-
productId: number;
|
|
1909
|
-
userId: number;
|
|
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[];
|
|
1923
|
-
}
|
|
1924
1913
|
export declare class Program extends BondBaseEntity {
|
|
1925
1914
|
type: ProgramTypesEnum;
|
|
1926
1915
|
name: string;
|
|
@@ -1942,14 +1931,31 @@ export declare class Program extends BondBaseEntity {
|
|
|
1942
1931
|
deletedAt?: Date;
|
|
1943
1932
|
programSeason: ProgramSeason[];
|
|
1944
1933
|
purchasedResources: PurchasedResource[];
|
|
1945
|
-
}
|
|
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;
|
|
1934
|
+
}
|
|
1935
|
+
export declare class ProgramHighlights extends BondBaseEntity {
|
|
1936
|
+
type: ProgramHighlightTypeEnum;
|
|
1937
|
+
ordinal: number | null;
|
|
1938
|
+
title: string | null;
|
|
1939
|
+
data: any | null;
|
|
1940
|
+
program: Program;
|
|
1941
|
+
deletedAt?: Date;
|
|
1942
|
+
}
|
|
1943
|
+
export declare class ProductsUsers extends OrganizationConnectionBaseEntity {
|
|
1944
|
+
productId: number;
|
|
1945
|
+
userId: number;
|
|
1946
|
+
user?: User;
|
|
1947
|
+
paymentStatus: PaymentStatusEnum;
|
|
1948
|
+
productName: string;
|
|
1949
|
+
productPrice: number;
|
|
1950
|
+
productQuantity: number;
|
|
1951
|
+
productQuantityLeft: number;
|
|
1952
|
+
productPriceCurrency: CurrencyEnum;
|
|
1953
|
+
ordinal?: number;
|
|
1954
|
+
purchasedResources: PurchasedResource[];
|
|
1955
|
+
product: Product;
|
|
1956
|
+
lineItem: LineItems;
|
|
1957
|
+
slots?: Slot[];
|
|
1958
|
+
addons?: Addon[];
|
|
1953
1959
|
}
|
|
1954
1960
|
export declare class ProgramSeason extends BondBaseEntity {
|
|
1955
1961
|
programId: number;
|
|
@@ -2027,10 +2033,6 @@ export declare class PurchasedResource extends OrganizationConnectionBaseEntity
|
|
|
2027
2033
|
product?: Product;
|
|
2028
2034
|
event?: Event;
|
|
2029
2035
|
}
|
|
2030
|
-
export declare class Questionnaires extends OrganizationConnectionBaseEntity {
|
|
2031
|
-
title: string | null;
|
|
2032
|
-
answerTitle: AnswerTitle;
|
|
2033
|
-
}
|
|
2034
2036
|
export declare class Questions extends BondBaseEntity {
|
|
2035
2037
|
questionType: string | null;
|
|
2036
2038
|
ordinal: number | null;
|
|
@@ -2050,6 +2052,10 @@ export declare class RefundReason extends OrganizationConnectionBaseEntity {
|
|
|
2050
2052
|
ordinal: number;
|
|
2051
2053
|
deletedAt: Date;
|
|
2052
2054
|
}
|
|
2055
|
+
export declare class Questionnaires extends OrganizationConnectionBaseEntity {
|
|
2056
|
+
title: string | null;
|
|
2057
|
+
answerTitle: AnswerTitle;
|
|
2058
|
+
}
|
|
2053
2059
|
export declare class RegistrationConstraint extends OrganizationConnectionBaseEntity {
|
|
2054
2060
|
resourceType: ResourceNameTypeEnum;
|
|
2055
2061
|
resourceId: number;
|
|
@@ -2093,6 +2099,21 @@ export declare class Reservations extends OrganizationConnectionBaseEntity {
|
|
|
2093
2099
|
publicNotes?: string;
|
|
2094
2100
|
slots?: Slot[];
|
|
2095
2101
|
}
|
|
2102
|
+
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2103
|
+
name: string;
|
|
2104
|
+
facilityId: number;
|
|
2105
|
+
parentSlotId: number;
|
|
2106
|
+
childrenSlotIds: number[];
|
|
2107
|
+
deletedAt?: Date;
|
|
2108
|
+
}
|
|
2109
|
+
export declare class School extends BondBaseEntity {
|
|
2110
|
+
name: string | null;
|
|
2111
|
+
alias: string[] | null;
|
|
2112
|
+
addressId: number | null;
|
|
2113
|
+
website: string | null;
|
|
2114
|
+
phone: string | null;
|
|
2115
|
+
dataId: number | null;
|
|
2116
|
+
}
|
|
2096
2117
|
export declare class Resource extends OrganizationConnectionBaseEntity {
|
|
2097
2118
|
name: string;
|
|
2098
2119
|
resourceType: ResourceTypeEnum;
|
|
@@ -2121,21 +2142,6 @@ export declare class Resource extends OrganizationConnectionBaseEntity {
|
|
|
2121
2142
|
purchasedResources: PurchasedResource[];
|
|
2122
2143
|
linkSEO: string;
|
|
2123
2144
|
}
|
|
2124
|
-
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2125
|
-
name: string;
|
|
2126
|
-
facilityId: number;
|
|
2127
|
-
parentSlotId: number;
|
|
2128
|
-
childrenSlotIds: number[];
|
|
2129
|
-
deletedAt?: Date;
|
|
2130
|
-
}
|
|
2131
|
-
export declare class School extends BondBaseEntity {
|
|
2132
|
-
name: string | null;
|
|
2133
|
-
alias: string[] | null;
|
|
2134
|
-
addressId: number | null;
|
|
2135
|
-
website: string | null;
|
|
2136
|
-
phone: string | null;
|
|
2137
|
-
dataId: number | null;
|
|
2138
|
-
}
|
|
2139
2145
|
export declare class SeasonAttendee extends BondBaseEntity {
|
|
2140
2146
|
status: RequestStatusEnum;
|
|
2141
2147
|
paymentStatus: PaymentStatusEnum;
|
|
@@ -2156,6 +2162,20 @@ export declare class SeasonDivisions extends BondBaseEntity {
|
|
|
2156
2162
|
seasonId: number | null;
|
|
2157
2163
|
color: string | null;
|
|
2158
2164
|
}
|
|
2165
|
+
export declare class SeasonTeam extends BondBaseEntity {
|
|
2166
|
+
seasonId: number | null;
|
|
2167
|
+
teamId: number | null;
|
|
2168
|
+
standingPosition: number | null;
|
|
2169
|
+
statistics: any | null;
|
|
2170
|
+
points: number | null;
|
|
2171
|
+
divisionId: number | null;
|
|
2172
|
+
metaData: any | null;
|
|
2173
|
+
team: Team;
|
|
2174
|
+
}
|
|
2175
|
+
export declare class SpacesDependency extends BondBaseEntity {
|
|
2176
|
+
blockingSpaceId: number;
|
|
2177
|
+
blockedSpaceId: number;
|
|
2178
|
+
}
|
|
2159
2179
|
export declare class SeasonPool extends BondBaseEntity {
|
|
2160
2180
|
seasonId?: number;
|
|
2161
2181
|
userId?: number;
|
|
@@ -2171,20 +2191,6 @@ export declare class SeasonPool extends BondBaseEntity {
|
|
|
2171
2191
|
purchasedResource: PurchasedResource;
|
|
2172
2192
|
season: LeagueSeason;
|
|
2173
2193
|
}
|
|
2174
|
-
export declare class SeasonTeam extends BondBaseEntity {
|
|
2175
|
-
seasonId: number | null;
|
|
2176
|
-
teamId: number | null;
|
|
2177
|
-
standingPosition: number | null;
|
|
2178
|
-
statistics: any | null;
|
|
2179
|
-
points: number | null;
|
|
2180
|
-
divisionId: number | null;
|
|
2181
|
-
metaData: any | null;
|
|
2182
|
-
team: Team;
|
|
2183
|
-
}
|
|
2184
|
-
export declare class SpacesDependency extends BondBaseEntity {
|
|
2185
|
-
blockingSpaceId: number;
|
|
2186
|
-
blockedSpaceId: number;
|
|
2187
|
-
}
|
|
2188
2194
|
export declare class Station extends OrganizationConnectionBaseEntity {
|
|
2189
2195
|
name: string;
|
|
2190
2196
|
facilityId: number;
|
|
@@ -2204,14 +2210,6 @@ export declare class StationToSubcategory extends OrganizationConnectionBaseEnti
|
|
|
2204
2210
|
station: Station;
|
|
2205
2211
|
subcategory: Subcategory;
|
|
2206
2212
|
}
|
|
2207
|
-
export declare class Subcategory extends OrganizationConnectionBaseEntity {
|
|
2208
|
-
productType: ProductTypesEnum;
|
|
2209
|
-
name: string;
|
|
2210
|
-
ordinal?: number;
|
|
2211
|
-
deletedAt?: Date;
|
|
2212
|
-
stationToSubcategories: StationToSubcategory[];
|
|
2213
|
-
stations: Station[];
|
|
2214
|
-
}
|
|
2215
2213
|
export declare class Team extends BondBaseEntity {
|
|
2216
2214
|
name: string | null;
|
|
2217
2215
|
description: string | null;
|
|
@@ -2255,6 +2253,14 @@ export declare class TeamInvite extends BondBaseEntity {
|
|
|
2255
2253
|
tokenExpirationDate: Date;
|
|
2256
2254
|
isUsed: boolean;
|
|
2257
2255
|
}
|
|
2256
|
+
export declare class Subcategory extends OrganizationConnectionBaseEntity {
|
|
2257
|
+
productType: ProductTypesEnum;
|
|
2258
|
+
name: string;
|
|
2259
|
+
ordinal?: number;
|
|
2260
|
+
deletedAt?: Date;
|
|
2261
|
+
stationToSubcategories: StationToSubcategory[];
|
|
2262
|
+
stations: Station[];
|
|
2263
|
+
}
|
|
2258
2264
|
export declare class TeamMember extends BondBaseEntity {
|
|
2259
2265
|
teamId: number | null;
|
|
2260
2266
|
userId: number | null;
|
|
@@ -2303,12 +2309,6 @@ export declare class User extends BondBaseEntity {
|
|
|
2303
2309
|
orderNotes: OrderNote[];
|
|
2304
2310
|
invoiceNotes: InvoiceNote[];
|
|
2305
2311
|
}
|
|
2306
|
-
export declare class UserAuthorizations extends BondBaseEntity {
|
|
2307
|
-
entityId: number | null;
|
|
2308
|
-
userId: number | null;
|
|
2309
|
-
entityType: UserAuthorizationsTypeEnum;
|
|
2310
|
-
user: User;
|
|
2311
|
-
}
|
|
2312
2312
|
export declare class UserInFamilyAccount extends BondBaseEntity {
|
|
2313
2313
|
familyAccountId: number;
|
|
2314
2314
|
userId: number;
|
|
@@ -2322,6 +2322,12 @@ export declare class UsersInGroup extends BondBaseEntity {
|
|
|
2322
2322
|
userId: number;
|
|
2323
2323
|
deletedAt?: Date;
|
|
2324
2324
|
}
|
|
2325
|
+
export declare class UserAuthorizations extends BondBaseEntity {
|
|
2326
|
+
entityId: number | null;
|
|
2327
|
+
userId: number | null;
|
|
2328
|
+
entityType: UserAuthorizationsTypeEnum;
|
|
2329
|
+
user: User;
|
|
2330
|
+
}
|
|
2325
2331
|
export declare class VariantTitle extends OrganizationConnectionBaseEntity {
|
|
2326
2332
|
name: string;
|
|
2327
2333
|
variants: Variant[];
|
|
@@ -2340,12 +2346,6 @@ export declare class WebflowOrganizationConfiguration extends OrganizationConnec
|
|
|
2340
2346
|
membershipCollectionId?: string;
|
|
2341
2347
|
programsCollectionId?: string;
|
|
2342
2348
|
}
|
|
2343
|
-
export declare class NotificationSubscriptions extends OrganizationConnectionBaseEntity {
|
|
2344
|
-
email: string | null;
|
|
2345
|
-
notificationType: NotificationTypeEnum | null;
|
|
2346
|
-
resourceId: number | null;
|
|
2347
|
-
resourceType: string | null;
|
|
2348
|
-
}
|
|
2349
2349
|
export declare enum EntitlementTermsTypesEnum {
|
|
2350
2350
|
QUESTION = "question",
|
|
2351
2351
|
CITY = "city",
|
|
@@ -3249,41 +3249,6 @@ export declare class AddFamilyDto {
|
|
|
3249
3249
|
parents: AddImportedCustomerDto[];
|
|
3250
3250
|
children: AddImportedCustomerDto[];
|
|
3251
3251
|
}
|
|
3252
|
-
export declare enum ImportPaymentTypeEnum {
|
|
3253
|
-
CREDIT_CARD = "card",
|
|
3254
|
-
ACH = "ach",
|
|
3255
|
-
CASH = "cash",
|
|
3256
|
-
CHECK = "check",
|
|
3257
|
-
CARD_ON_TERMINAL = "card-on-terminal",
|
|
3258
|
-
OTHER = "other"
|
|
3259
|
-
}
|
|
3260
|
-
export declare class ImportedInvoiceLineDto {
|
|
3261
|
-
invoiceID?: string;
|
|
3262
|
-
description: string;
|
|
3263
|
-
createdDate: string;
|
|
3264
|
-
createdTime: string;
|
|
3265
|
-
quantity: string;
|
|
3266
|
-
price: string;
|
|
3267
|
-
total: string;
|
|
3268
|
-
customerID: string;
|
|
3269
|
-
resourceType: string;
|
|
3270
|
-
resourceID: string;
|
|
3271
|
-
}
|
|
3272
|
-
export declare class ImportedInvoiceDto {
|
|
3273
|
-
customerId?: string;
|
|
3274
|
-
total?: string;
|
|
3275
|
-
amountDue?: string;
|
|
3276
|
-
payments?: ImportedPaymentDto[];
|
|
3277
|
-
lines: any;
|
|
3278
|
-
}
|
|
3279
|
-
export declare class ImportedPaymentDto {
|
|
3280
|
-
invoiceID: string;
|
|
3281
|
-
type: ImportPaymentTypeEnum;
|
|
3282
|
-
description: string;
|
|
3283
|
-
paid: string;
|
|
3284
|
-
date: string;
|
|
3285
|
-
time: string;
|
|
3286
|
-
}
|
|
3287
3252
|
export declare class ProductIdsDto {
|
|
3288
3253
|
productIds?: number[];
|
|
3289
3254
|
}
|
|
@@ -3351,6 +3316,10 @@ export declare class ImportedReservationDto {
|
|
|
3351
3316
|
slots?: ImportedSlotDto[];
|
|
3352
3317
|
addons?: ImportedSlotProductDto[];
|
|
3353
3318
|
}
|
|
3319
|
+
export declare class Lock extends BondBaseEntity {
|
|
3320
|
+
name: string;
|
|
3321
|
+
locked?: Date;
|
|
3322
|
+
}
|
|
3354
3323
|
export declare class GameSlots extends BondBaseEntity {
|
|
3355
3324
|
entityType: string;
|
|
3356
3325
|
entityId: number;
|
|
@@ -3387,16 +3356,47 @@ export declare class TeamEvents extends BondBaseEntity {
|
|
|
3387
3356
|
eventId: number | null;
|
|
3388
3357
|
status: number | null;
|
|
3389
3358
|
}
|
|
3390
|
-
export declare class Lock extends BondBaseEntity {
|
|
3391
|
-
name: string;
|
|
3392
|
-
locked?: Date;
|
|
3393
|
-
}
|
|
3394
3359
|
export declare class CreateMonitorConfigDto {
|
|
3395
3360
|
facilityId: number;
|
|
3396
3361
|
name: string;
|
|
3397
3362
|
code: string;
|
|
3398
3363
|
config: any;
|
|
3399
3364
|
}
|
|
3365
|
+
export declare enum ImportPaymentTypeEnum {
|
|
3366
|
+
CREDIT_CARD = "card",
|
|
3367
|
+
ACH = "ach",
|
|
3368
|
+
CASH = "cash",
|
|
3369
|
+
CHECK = "check",
|
|
3370
|
+
CARD_ON_TERMINAL = "card-on-terminal",
|
|
3371
|
+
OTHER = "other"
|
|
3372
|
+
}
|
|
3373
|
+
export declare class ImportedInvoiceLineDto {
|
|
3374
|
+
invoiceID?: string;
|
|
3375
|
+
description: string;
|
|
3376
|
+
createdDate: string;
|
|
3377
|
+
createdTime: string;
|
|
3378
|
+
quantity: string;
|
|
3379
|
+
price: string;
|
|
3380
|
+
total: string;
|
|
3381
|
+
customerID: string;
|
|
3382
|
+
resourceType: string;
|
|
3383
|
+
resourceID: string;
|
|
3384
|
+
}
|
|
3385
|
+
export declare class ImportedInvoiceDto {
|
|
3386
|
+
customerId?: string;
|
|
3387
|
+
total?: string;
|
|
3388
|
+
amountDue?: string;
|
|
3389
|
+
payments?: ImportedPaymentDto[];
|
|
3390
|
+
lines: any;
|
|
3391
|
+
}
|
|
3392
|
+
export declare class ImportedPaymentDto {
|
|
3393
|
+
invoiceID: string;
|
|
3394
|
+
type: ImportPaymentTypeEnum;
|
|
3395
|
+
description: string;
|
|
3396
|
+
paid: string;
|
|
3397
|
+
date: string;
|
|
3398
|
+
time: string;
|
|
3399
|
+
}
|
|
3400
3400
|
export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
|
|
3401
3401
|
facilityId: number;
|
|
3402
3402
|
code: string;
|
|
@@ -3841,6 +3841,17 @@ export declare class ValidateEditSlotsDto extends UpdateSlotsDto {
|
|
|
3841
3841
|
export declare class AddAddonsDto {
|
|
3842
3842
|
addons: ProductPricesDto[];
|
|
3843
3843
|
}
|
|
3844
|
+
export declare class SegmentDto {
|
|
3845
|
+
id?: number;
|
|
3846
|
+
title: string;
|
|
3847
|
+
isPrivate: boolean;
|
|
3848
|
+
resourceIds: number[];
|
|
3849
|
+
sportId?: number;
|
|
3850
|
+
series: SeriesDto[];
|
|
3851
|
+
addonIds?: number[];
|
|
3852
|
+
publicNotesForSlots?: string;
|
|
3853
|
+
privateNotesForSlots?: string;
|
|
3854
|
+
}
|
|
3844
3855
|
export declare class SeriesDto {
|
|
3845
3856
|
id?: number;
|
|
3846
3857
|
startDate: string;
|
|
@@ -3909,7 +3920,7 @@ export declare class SlotDto extends SlotDateTimeAndSpace {
|
|
|
3909
3920
|
maintenanceTiming?: MaintenanceTimingEnum;
|
|
3910
3921
|
durationValue?: number;
|
|
3911
3922
|
orderId?: number;
|
|
3912
|
-
paymentStatus:
|
|
3923
|
+
paymentStatus: ReservationPaymentStatusEnum;
|
|
3913
3924
|
approvalStatus: ReservationStatusEnum;
|
|
3914
3925
|
displayName?: string;
|
|
3915
3926
|
internalName?: string;
|
|
@@ -3921,17 +3932,6 @@ export declare class SlotDto extends SlotDateTimeAndSpace {
|
|
|
3921
3932
|
slotDurationType: SlotDurationTypeEnum;
|
|
3922
3933
|
addonsIds?: number[];
|
|
3923
3934
|
}
|
|
3924
|
-
export declare class SegmentDto {
|
|
3925
|
-
id?: number;
|
|
3926
|
-
title: string;
|
|
3927
|
-
isPrivate: boolean;
|
|
3928
|
-
resourceIds: number[];
|
|
3929
|
-
sportId?: number;
|
|
3930
|
-
series: SeriesDto[];
|
|
3931
|
-
addonIds?: number[];
|
|
3932
|
-
publicNotesForSlots?: string;
|
|
3933
|
-
privateNotesForSlots?: string;
|
|
3934
|
-
}
|
|
3935
3935
|
declare class AnswerDto {
|
|
3936
3936
|
questionId: number;
|
|
3937
3937
|
value: any;
|
|
@@ -4032,25 +4032,6 @@ export declare class Reservation extends OrganizationConnectionBaseEntity {
|
|
|
4032
4032
|
targetGlobalPrice?: number;
|
|
4033
4033
|
slots: Slot[];
|
|
4034
4034
|
}
|
|
4035
|
-
export declare class Series extends OrganizationConnectionBaseEntity {
|
|
4036
|
-
deletedAt?: Date;
|
|
4037
|
-
segmentId: number;
|
|
4038
|
-
segment?: Segment;
|
|
4039
|
-
slots?: Slot[];
|
|
4040
|
-
slotDurationType: string;
|
|
4041
|
-
durationEndsAfter: number;
|
|
4042
|
-
durationUnit: string;
|
|
4043
|
-
startDate?: Date;
|
|
4044
|
-
endDate?: Date;
|
|
4045
|
-
startTime: string;
|
|
4046
|
-
endTime: string;
|
|
4047
|
-
frequency: string;
|
|
4048
|
-
repeatEvery: number;
|
|
4049
|
-
repeatOn?: number[];
|
|
4050
|
-
repeatEndDate?: Date;
|
|
4051
|
-
numberOccurrences?: number;
|
|
4052
|
-
resources?: Resource[];
|
|
4053
|
-
}
|
|
4054
4035
|
export declare class Segment extends OrganizationConnectionBaseEntity {
|
|
4055
4036
|
deletedAt?: Date;
|
|
4056
4037
|
reservationId: number;
|
|
@@ -4132,6 +4113,25 @@ export declare class Slot extends OrganizationConnectionBaseEntity {
|
|
|
4132
4113
|
changeLineItems?: LineItems[];
|
|
4133
4114
|
updatedLineItem?: LineItems;
|
|
4134
4115
|
}
|
|
4116
|
+
export declare class Series extends OrganizationConnectionBaseEntity {
|
|
4117
|
+
deletedAt?: Date;
|
|
4118
|
+
segmentId: number;
|
|
4119
|
+
segment?: Segment;
|
|
4120
|
+
slots?: Slot[];
|
|
4121
|
+
slotDurationType: string;
|
|
4122
|
+
durationEndsAfter: number;
|
|
4123
|
+
durationUnit: string;
|
|
4124
|
+
startDate?: Date;
|
|
4125
|
+
endDate?: Date;
|
|
4126
|
+
startTime: string;
|
|
4127
|
+
endTime: string;
|
|
4128
|
+
frequency: string;
|
|
4129
|
+
repeatEvery: number;
|
|
4130
|
+
repeatOn?: number[];
|
|
4131
|
+
repeatEndDate?: Date;
|
|
4132
|
+
numberOccurrences?: number;
|
|
4133
|
+
resources?: Resource[];
|
|
4134
|
+
}
|
|
4135
4135
|
export declare class ChangeRolePermissionsDto {
|
|
4136
4136
|
permissionIds: number[];
|
|
4137
4137
|
}
|