@bondsports/types 0.0.34 → 0.0.37
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 +841 -840
- package/build/index.es.js.map +1 -1
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -27,6 +27,49 @@ export declare class FindBookingTypeSettingDto {
|
|
|
27
27
|
bookingDate: string;
|
|
28
28
|
bookingTime: string;
|
|
29
29
|
}
|
|
30
|
+
export declare class AddressDto {
|
|
31
|
+
city: string;
|
|
32
|
+
state: string;
|
|
33
|
+
country: string;
|
|
34
|
+
geo: number[];
|
|
35
|
+
}
|
|
36
|
+
export declare class OpeningTimeDto {
|
|
37
|
+
open: string;
|
|
38
|
+
close: string;
|
|
39
|
+
dayOfWeek: number;
|
|
40
|
+
}
|
|
41
|
+
export declare class CreateFacilityDto {
|
|
42
|
+
name: string;
|
|
43
|
+
sports: number[];
|
|
44
|
+
description?: string;
|
|
45
|
+
longDescription?: string;
|
|
46
|
+
info?: string;
|
|
47
|
+
address: AddressDto;
|
|
48
|
+
timezone: string;
|
|
49
|
+
amenities: number[];
|
|
50
|
+
openingTimes: OpeningTimeDto[];
|
|
51
|
+
resourcesIds?: number[];
|
|
52
|
+
}
|
|
53
|
+
export declare class UpdateFacilityDetailsDto {
|
|
54
|
+
name?: string;
|
|
55
|
+
description?: string;
|
|
56
|
+
longDescription?: string;
|
|
57
|
+
info?: string;
|
|
58
|
+
address?: AddressDto;
|
|
59
|
+
timezone?: string;
|
|
60
|
+
}
|
|
61
|
+
export declare class UpdateFacilityOpeningTimesDto {
|
|
62
|
+
openingTimes: OpeningTimeDto[];
|
|
63
|
+
}
|
|
64
|
+
export declare class UpdateFacilitySportsDto {
|
|
65
|
+
sports: number[];
|
|
66
|
+
}
|
|
67
|
+
export declare class UpdateFacilityAmenitiesDto {
|
|
68
|
+
amenities: number[];
|
|
69
|
+
}
|
|
70
|
+
export declare class FindFacilitiesOptionsDto extends PaginationQuery {
|
|
71
|
+
nameSearch?: string;
|
|
72
|
+
}
|
|
30
73
|
export declare class FindEventByIdDto {
|
|
31
74
|
eventId: number;
|
|
32
75
|
organizationId: number;
|
|
@@ -128,107 +171,6 @@ export declare class FindEventAttendeeOptionsDto extends PaginationRangeQuery {
|
|
|
128
171
|
isWaiverSigned?: string;
|
|
129
172
|
statuses?: string;
|
|
130
173
|
}
|
|
131
|
-
export declare class AddressDto {
|
|
132
|
-
city: string;
|
|
133
|
-
state: string;
|
|
134
|
-
country: string;
|
|
135
|
-
geo: number[];
|
|
136
|
-
}
|
|
137
|
-
export declare class OpeningTimeDto {
|
|
138
|
-
open: string;
|
|
139
|
-
close: string;
|
|
140
|
-
dayOfWeek: number;
|
|
141
|
-
}
|
|
142
|
-
export declare class CreateFacilityDto {
|
|
143
|
-
name: string;
|
|
144
|
-
sports: number[];
|
|
145
|
-
description?: string;
|
|
146
|
-
longDescription?: string;
|
|
147
|
-
info?: string;
|
|
148
|
-
address: AddressDto;
|
|
149
|
-
timezone: string;
|
|
150
|
-
amenities: number[];
|
|
151
|
-
openingTimes: OpeningTimeDto[];
|
|
152
|
-
resourcesIds?: number[];
|
|
153
|
-
}
|
|
154
|
-
export declare class UpdateFacilityDetailsDto {
|
|
155
|
-
name?: string;
|
|
156
|
-
description?: string;
|
|
157
|
-
longDescription?: string;
|
|
158
|
-
info?: string;
|
|
159
|
-
address?: AddressDto;
|
|
160
|
-
timezone?: string;
|
|
161
|
-
}
|
|
162
|
-
export declare class UpdateFacilityOpeningTimesDto {
|
|
163
|
-
openingTimes: OpeningTimeDto[];
|
|
164
|
-
}
|
|
165
|
-
export declare class UpdateFacilitySportsDto {
|
|
166
|
-
sports: number[];
|
|
167
|
-
}
|
|
168
|
-
export declare class UpdateFacilityAmenitiesDto {
|
|
169
|
-
amenities: number[];
|
|
170
|
-
}
|
|
171
|
-
export declare class FindFacilitiesOptionsDto extends PaginationQuery {
|
|
172
|
-
nameSearch?: string;
|
|
173
|
-
}
|
|
174
|
-
export declare class FindByMembershipIdDto extends ByOrganizationIdDto {
|
|
175
|
-
membershipId: number;
|
|
176
|
-
}
|
|
177
|
-
export declare class ImportProductsFromDB {
|
|
178
|
-
buDate: string;
|
|
179
|
-
}
|
|
180
|
-
export declare class ImportCustomerFromCSV {
|
|
181
|
-
fileName: string;
|
|
182
|
-
startIndex?: number;
|
|
183
|
-
}
|
|
184
|
-
export declare class ImportProgramsFileDto extends ImportCustomerFromCSV {
|
|
185
|
-
resolveInvoices: string;
|
|
186
|
-
}
|
|
187
|
-
export declare class ImportDashCustomerDto extends ImportCustomerFromCSV {
|
|
188
|
-
membershipId: number;
|
|
189
|
-
onlyDashIds: string;
|
|
190
|
-
}
|
|
191
|
-
export declare class ImportRentalsFromCSV extends ImportCustomerFromCSV {
|
|
192
|
-
facilityId: number;
|
|
193
|
-
}
|
|
194
|
-
export declare class ByOrganizationIdCustomerIdDto extends ByOrganizationIdDto {
|
|
195
|
-
customerId: number;
|
|
196
|
-
}
|
|
197
|
-
export declare class FindCustomersByOrganizationIdFiltersDto extends PaginationQuery {
|
|
198
|
-
nameSearch?: string;
|
|
199
|
-
fuzzy?: string;
|
|
200
|
-
customerType?: CustomerTypeEnum;
|
|
201
|
-
customersIds?: string;
|
|
202
|
-
}
|
|
203
|
-
export declare class AddCustomerNotesDto {
|
|
204
|
-
customerNotes: CustomerNoteDto[];
|
|
205
|
-
}
|
|
206
|
-
export declare class CustomerNoteDto {
|
|
207
|
-
id?: number;
|
|
208
|
-
description: string;
|
|
209
|
-
pinToTop?: boolean;
|
|
210
|
-
}
|
|
211
|
-
export declare class AddEditCustomerDto {
|
|
212
|
-
firstName?: string;
|
|
213
|
-
lastName?: string;
|
|
214
|
-
entityId?: number;
|
|
215
|
-
entityType?: CustomerTypeEnum;
|
|
216
|
-
email?: string;
|
|
217
|
-
color?: string;
|
|
218
|
-
street?: string;
|
|
219
|
-
city?: string;
|
|
220
|
-
state?: string;
|
|
221
|
-
zip?: string;
|
|
222
|
-
phoneNumber?: string;
|
|
223
|
-
mainMediaId?: number;
|
|
224
|
-
creatorId?: number;
|
|
225
|
-
creatorType?: ResourceNameTypeEnum;
|
|
226
|
-
userCreatorId?: number;
|
|
227
|
-
gender?: GenderEnum;
|
|
228
|
-
birthDate?: string;
|
|
229
|
-
emergencyContactName?: string;
|
|
230
|
-
emergencyContactPhone?: string;
|
|
231
|
-
}
|
|
232
174
|
export declare class FindFamilyAccountsDto {
|
|
233
175
|
userId: number;
|
|
234
176
|
}
|
|
@@ -283,202 +225,73 @@ export declare class GetGlCodeDto {
|
|
|
283
225
|
createdAt: Date;
|
|
284
226
|
updatedAt: Date;
|
|
285
227
|
}
|
|
286
|
-
export declare class
|
|
287
|
-
|
|
228
|
+
export declare class CreateEntitlementTermsDto {
|
|
229
|
+
organizationId: number;
|
|
230
|
+
entitlementGroupId: number;
|
|
231
|
+
terms: IEntitlementTerms[];
|
|
288
232
|
}
|
|
289
|
-
export declare class
|
|
290
|
-
|
|
233
|
+
export declare class FindEntitlementTermsByGroupIdDto {
|
|
234
|
+
entitlementGroupId: number;
|
|
291
235
|
}
|
|
292
|
-
export declare class
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
programSeasonId: number;
|
|
296
|
-
color: string;
|
|
297
|
-
isDefault: boolean;
|
|
236
|
+
export declare class FindEntitlementTermsByVariablesDto {
|
|
237
|
+
user: any;
|
|
238
|
+
userVariables: IQuestionAnswerObject[];
|
|
298
239
|
}
|
|
299
|
-
export declare class
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
maxAgeYears?: number;
|
|
307
|
-
gender: GenderEnum;
|
|
308
|
-
levelOfPlay?: LevelOfPlayEnum[];
|
|
309
|
-
sports: SportsEnum[];
|
|
310
|
-
questionnaires?: number[];
|
|
311
|
-
captainUserId?: number;
|
|
312
|
-
divisionId?: number;
|
|
240
|
+
export declare class FindLowestPriceDto {
|
|
241
|
+
organizationId: number;
|
|
242
|
+
user?: any;
|
|
243
|
+
answers?: IQuestionAnswerObject[];
|
|
244
|
+
itemIds: number[];
|
|
245
|
+
itemType?: ResourceNameTypeEnum;
|
|
246
|
+
startDate?: Date;
|
|
313
247
|
}
|
|
314
|
-
export declare class
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
prevDivisionId: number;
|
|
248
|
+
export declare class FindGroupItemsPricingsDto {
|
|
249
|
+
groupsIds: number[];
|
|
250
|
+
itemsIds: number[];
|
|
318
251
|
}
|
|
319
|
-
export declare class
|
|
320
|
-
|
|
321
|
-
groupId?: number;
|
|
322
|
-
prevGroupId?: number;
|
|
252
|
+
export declare class CreateEntitlementGroupDto {
|
|
253
|
+
name: string;
|
|
323
254
|
}
|
|
324
|
-
export declare class
|
|
325
|
-
|
|
326
|
-
|
|
255
|
+
export declare class GetEntitlementGroupPricingDto {
|
|
256
|
+
itemIds: number[];
|
|
257
|
+
itemType: string;
|
|
327
258
|
}
|
|
328
|
-
export declare class
|
|
329
|
-
|
|
330
|
-
userCreatorId: number;
|
|
259
|
+
export declare class FindEntitlementGroupByIdDto {
|
|
260
|
+
groupid: number;
|
|
331
261
|
}
|
|
332
|
-
export declare class
|
|
333
|
-
|
|
262
|
+
export declare class CreateGroupPricingWithProduct {
|
|
263
|
+
groupId: number;
|
|
264
|
+
price: number;
|
|
265
|
+
startDate?: Date;
|
|
266
|
+
endDate?: Date;
|
|
267
|
+
discountValue?: number;
|
|
268
|
+
discountMethod?: DiscountMethodsEnum;
|
|
334
269
|
}
|
|
335
|
-
export declare class
|
|
336
|
-
|
|
270
|
+
export declare class FindByProductIdDto {
|
|
271
|
+
productId: number;
|
|
337
272
|
}
|
|
338
|
-
export declare class
|
|
273
|
+
export declare class FindPriceOfProductDto {
|
|
274
|
+
id: number;
|
|
339
275
|
userId: number;
|
|
340
|
-
|
|
276
|
+
resources: ResourceDto[];
|
|
341
277
|
}
|
|
342
|
-
export declare class
|
|
343
|
-
|
|
278
|
+
export declare class FindPricesOfProductsDto {
|
|
279
|
+
products: FindPriceOfProductDto[];
|
|
280
|
+
answers: UserAnswersDto[];
|
|
344
281
|
}
|
|
345
|
-
export
|
|
346
|
-
|
|
347
|
-
|
|
282
|
+
export declare class FindPackageByResourceDto {
|
|
283
|
+
resourceType: ResourceNameTypeEnum;
|
|
284
|
+
resourceId: number;
|
|
348
285
|
}
|
|
349
|
-
export declare class
|
|
350
|
-
|
|
351
|
-
memberId?: number;
|
|
352
|
-
fromSeasonId: number;
|
|
353
|
-
toSeasonId: number;
|
|
354
|
-
toDivisionId?: number;
|
|
286
|
+
export declare class FindProductsByResourceAsOrganizationDto extends FindPackageByResourceDto {
|
|
287
|
+
organizationId: number;
|
|
355
288
|
}
|
|
356
|
-
export declare class
|
|
357
|
-
|
|
289
|
+
export declare class CreateProductsDto {
|
|
290
|
+
products: CreateProductDto[];
|
|
291
|
+
addOnsData?: ProductInPackage[];
|
|
292
|
+
addOnIds?: ExistingProductToPackageDto[];
|
|
358
293
|
}
|
|
359
|
-
export declare class
|
|
360
|
-
organizationId: number;
|
|
361
|
-
name: string;
|
|
362
|
-
description?: string;
|
|
363
|
-
customerTypes: CustomerInMembershipTypeEnum[];
|
|
364
|
-
activity: SportsEnum;
|
|
365
|
-
facilityId: number;
|
|
366
|
-
questionnaires: number[];
|
|
367
|
-
minAgeYears: number;
|
|
368
|
-
maxAgeYears: number;
|
|
369
|
-
gender: GenderEnum;
|
|
370
|
-
maxMembers?: number;
|
|
371
|
-
maxMaleMembers?: number;
|
|
372
|
-
maxFemaleMembers?: number;
|
|
373
|
-
startDate: string;
|
|
374
|
-
endDate: string;
|
|
375
|
-
registrationStartDate?: Date;
|
|
376
|
-
registrationEndDate?: Date;
|
|
377
|
-
membershipType: MembershipTypeEnum;
|
|
378
|
-
durationMonths: number;
|
|
379
|
-
longDescription?: string;
|
|
380
|
-
isAutoRenew?: boolean;
|
|
381
|
-
}
|
|
382
|
-
export declare class UpdateMembrshipDto extends CreateMembershipDto {
|
|
383
|
-
id: number;
|
|
384
|
-
}
|
|
385
|
-
export declare class UpdateMembershipMediaDto {
|
|
386
|
-
membershipId: number;
|
|
387
|
-
mediaId: number;
|
|
388
|
-
}
|
|
389
|
-
export declare class FindMembershipByIdDto {
|
|
390
|
-
membershipId: number;
|
|
391
|
-
}
|
|
392
|
-
export declare class FindMembershipsByOrganizationIdDto {
|
|
393
|
-
organizationId: number;
|
|
394
|
-
}
|
|
395
|
-
export declare class FindMembershipsByUserIdDto {
|
|
396
|
-
userId: number;
|
|
397
|
-
}
|
|
398
|
-
export declare class SetMembersStartDateByOrganization extends FindMembershipsByOrganizationIdDto {
|
|
399
|
-
startDate: string;
|
|
400
|
-
}
|
|
401
|
-
export declare class MembershipIdsDto {
|
|
402
|
-
membershipIds?: number[];
|
|
403
|
-
}
|
|
404
|
-
export declare class MemberIdDto {
|
|
405
|
-
memberId?: number;
|
|
406
|
-
}
|
|
407
|
-
export declare class FindMembersOptionsDto extends PaginationQuery {
|
|
408
|
-
nameEmailSearch?: string;
|
|
409
|
-
pastMemberships?: string;
|
|
410
|
-
}
|
|
411
|
-
export declare class CancelMembershipDto {
|
|
412
|
-
isImmediatelyCancel: boolean;
|
|
413
|
-
cancellationReason?: string;
|
|
414
|
-
}
|
|
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
|
-
export declare class FindByProductIdDto {
|
|
458
|
-
productId: number;
|
|
459
|
-
}
|
|
460
|
-
export declare class FindPriceOfProductDto {
|
|
461
|
-
id: number;
|
|
462
|
-
userId: number;
|
|
463
|
-
resources: ResourceDto[];
|
|
464
|
-
}
|
|
465
|
-
export declare class FindPricesOfProductsDto {
|
|
466
|
-
products: FindPriceOfProductDto[];
|
|
467
|
-
answers: UserAnswersDto[];
|
|
468
|
-
}
|
|
469
|
-
export declare class FindPackageByResourceDto {
|
|
470
|
-
resourceType: ResourceNameTypeEnum;
|
|
471
|
-
resourceId: number;
|
|
472
|
-
}
|
|
473
|
-
export declare class FindProductsByResourceAsOrganizationDto extends FindPackageByResourceDto {
|
|
474
|
-
organizationId: number;
|
|
475
|
-
}
|
|
476
|
-
export declare class CreateProductsDto {
|
|
477
|
-
products: CreateProductDto[];
|
|
478
|
-
addOnsData?: ProductInPackage[];
|
|
479
|
-
addOnIds?: ExistingProductToPackageDto[];
|
|
480
|
-
}
|
|
481
|
-
export declare class CreatePaymentPlanDto extends PaymentPlanDto {
|
|
294
|
+
export declare class CreatePaymentPlanDto extends PaymentPlanDto {
|
|
482
295
|
name: string;
|
|
483
296
|
}
|
|
484
297
|
export declare class CreateProductDto {
|
|
@@ -674,251 +487,210 @@ export declare class createResourceDto {
|
|
|
674
487
|
export declare class archiveDto {
|
|
675
488
|
isArchive: boolean;
|
|
676
489
|
}
|
|
677
|
-
export declare class
|
|
678
|
-
|
|
679
|
-
parentProductId: number;
|
|
680
|
-
variantTitles: VariantTitleDto[];
|
|
681
|
-
variants: VariantDto[];
|
|
490
|
+
export declare class FindByProgramSeasonIdDto {
|
|
491
|
+
seasonId: number;
|
|
682
492
|
}
|
|
683
|
-
export declare class
|
|
684
|
-
|
|
685
|
-
titleId: number;
|
|
493
|
+
export declare class CreateBulkDivisionsDto {
|
|
494
|
+
divisions: CreateDivisionDto[];
|
|
686
495
|
}
|
|
687
|
-
export declare class
|
|
496
|
+
export declare class CreateDivisionDto {
|
|
688
497
|
name: string;
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
endDate: Date;
|
|
498
|
+
ordinal?: number;
|
|
499
|
+
programSeasonId: number;
|
|
500
|
+
color: string;
|
|
501
|
+
isDefault: boolean;
|
|
694
502
|
}
|
|
695
|
-
export declare class
|
|
696
|
-
|
|
503
|
+
export declare class CreateGroupDto {
|
|
504
|
+
name: string;
|
|
505
|
+
description?: string;
|
|
506
|
+
status?: GroupStatusEnum;
|
|
507
|
+
maxCapacity?: number;
|
|
508
|
+
mainMediaId?: number;
|
|
509
|
+
minAgeYears?: number;
|
|
510
|
+
maxAgeYears?: number;
|
|
511
|
+
gender: GenderEnum;
|
|
512
|
+
levelOfPlay?: LevelOfPlayEnum[];
|
|
513
|
+
sports: SportsEnum[];
|
|
514
|
+
questionnaires?: number[];
|
|
515
|
+
captainUserId?: number;
|
|
516
|
+
divisionId?: number;
|
|
697
517
|
}
|
|
698
|
-
export declare class
|
|
699
|
-
|
|
700
|
-
|
|
518
|
+
export declare class ConnectGroupToDivision {
|
|
519
|
+
groupId: number;
|
|
520
|
+
divisionId: number;
|
|
521
|
+
prevDivisionId: number;
|
|
701
522
|
}
|
|
702
|
-
export declare class
|
|
703
|
-
|
|
523
|
+
export declare class MoveUserInGroups {
|
|
524
|
+
userId: number;
|
|
525
|
+
groupId?: number;
|
|
526
|
+
prevGroupId?: number;
|
|
704
527
|
}
|
|
705
|
-
export declare class
|
|
706
|
-
|
|
528
|
+
export declare class SaveUserAsGroupCaptain {
|
|
529
|
+
groupId: number;
|
|
530
|
+
userId: number;
|
|
707
531
|
}
|
|
708
|
-
export declare class
|
|
709
|
-
|
|
532
|
+
export declare class CreateTeamInviteDto {
|
|
533
|
+
emails: string[];
|
|
534
|
+
userCreatorId: number;
|
|
710
535
|
}
|
|
711
|
-
export declare class
|
|
712
|
-
|
|
536
|
+
export declare class TeamByIdDto {
|
|
537
|
+
teamId: number;
|
|
713
538
|
}
|
|
714
|
-
export declare class
|
|
715
|
-
|
|
539
|
+
export declare class GetInviteDto extends TeamByIdDto {
|
|
540
|
+
inviteToken: string;
|
|
716
541
|
}
|
|
717
|
-
export declare class
|
|
718
|
-
|
|
542
|
+
export declare class JoinTeamDto {
|
|
543
|
+
userId: number;
|
|
544
|
+
inviteToken?: string;
|
|
719
545
|
}
|
|
720
|
-
export declare class
|
|
546
|
+
export declare class UserTeamFutureSeasons extends TeamByIdDto {
|
|
721
547
|
userId: number;
|
|
722
548
|
}
|
|
723
|
-
export
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
nameEmailSearch?: string;
|
|
549
|
+
export interface IMoveSeason {
|
|
550
|
+
fromSeasonId: number;
|
|
551
|
+
toSeasonId: number;
|
|
727
552
|
}
|
|
728
|
-
export declare class
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
endDate: Date;
|
|
735
|
-
description?: string;
|
|
736
|
-
GL?: string;
|
|
737
|
-
parentSeasonId?: number;
|
|
738
|
-
questionnaires?: number[];
|
|
739
|
-
maxParticipants?: number;
|
|
740
|
-
maxMaleParticipants?: number;
|
|
741
|
-
maxFemaleParticipants?: number;
|
|
742
|
-
maxWaitlist?: number;
|
|
743
|
-
maxMaleWaitlist?: number;
|
|
744
|
-
maxFemaleWaitlist?: number;
|
|
745
|
-
facilityId?: number;
|
|
746
|
-
addressId?: number;
|
|
747
|
-
blockedDated?: blockedDatesDto[];
|
|
748
|
-
activityTimes: ActivityTimesDto[];
|
|
749
|
-
longDescription?: string;
|
|
750
|
-
isPunchCard?: boolean;
|
|
751
|
-
organizationId: number;
|
|
752
|
-
sport: SportsEnum;
|
|
753
|
-
minAge: string;
|
|
754
|
-
maxAge: string;
|
|
755
|
-
gender: GenderEnum;
|
|
756
|
-
level?: LevelOfPlayEnum[];
|
|
757
|
-
requiredProductIds?: number[];
|
|
553
|
+
export declare class MoveTeamOrMemberDto implements IMoveSeason {
|
|
554
|
+
teamId?: number;
|
|
555
|
+
memberId?: number;
|
|
556
|
+
fromSeasonId: number;
|
|
557
|
+
toSeasonId: number;
|
|
558
|
+
toDivisionId?: number;
|
|
758
559
|
}
|
|
759
|
-
export declare class
|
|
760
|
-
|
|
560
|
+
export declare class MoveTeamOrMembersByCsvDTO {
|
|
561
|
+
fileName: string;
|
|
761
562
|
}
|
|
762
|
-
export declare class
|
|
763
|
-
|
|
764
|
-
endDate: Date;
|
|
765
|
-
activityTimes: ActivityTimesDto[];
|
|
766
|
-
blockedDated?: blockedDatesDto[];
|
|
767
|
-
subSeasons?: SubSeasonBasicInfo[];
|
|
563
|
+
export declare class FindByMembershipIdDto extends ByOrganizationIdDto {
|
|
564
|
+
membershipId: number;
|
|
768
565
|
}
|
|
769
|
-
export declare class
|
|
770
|
-
|
|
771
|
-
startDate: Date;
|
|
772
|
-
endDate: Date;
|
|
773
|
-
activityTimes?: ActivityTimesDto[];
|
|
774
|
-
}
|
|
775
|
-
export declare class UpdateProgramSeasonDto extends BaseProgramSeasonDto {
|
|
776
|
-
seasonId: number;
|
|
566
|
+
export declare class ImportProductsFromDB {
|
|
567
|
+
buDate: string;
|
|
777
568
|
}
|
|
778
|
-
export declare class
|
|
779
|
-
|
|
780
|
-
|
|
569
|
+
export declare class ImportCustomerFromCSV {
|
|
570
|
+
fileName: string;
|
|
571
|
+
startIndex?: number;
|
|
781
572
|
}
|
|
782
|
-
export declare class
|
|
783
|
-
|
|
784
|
-
startDate: Date;
|
|
785
|
-
endDate: Date;
|
|
573
|
+
export declare class ImportProgramsFileDto extends ImportCustomerFromCSV {
|
|
574
|
+
resolveInvoices: string;
|
|
786
575
|
}
|
|
787
|
-
export declare class
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
close: string;
|
|
576
|
+
export declare class ImportDashCustomerDto extends ImportCustomerFromCSV {
|
|
577
|
+
membershipId: number;
|
|
578
|
+
onlyDashIds: string;
|
|
791
579
|
}
|
|
792
|
-
export declare class
|
|
793
|
-
|
|
794
|
-
name: string;
|
|
795
|
-
description?: string;
|
|
796
|
-
questionnaires?: number[];
|
|
797
|
-
maxParticipants?: number;
|
|
798
|
-
maxMaleParticipants?: number;
|
|
799
|
-
maxFemaleParticipants?: number;
|
|
800
|
-
maxWaitlist?: number;
|
|
801
|
-
maxMaleWaitlist?: number;
|
|
802
|
-
maxFemaleWaitlist?: number;
|
|
803
|
-
facilityId?: number;
|
|
804
|
-
addressId?: number;
|
|
805
|
-
sport?: SportsEnum;
|
|
806
|
-
minAge?: string;
|
|
807
|
-
maxAge?: string;
|
|
808
|
-
gender?: GenderEnum;
|
|
809
|
-
level?: LevelOfPlayEnum[];
|
|
810
|
-
requiredProductIds?: number[];
|
|
811
|
-
subSeasons?: ShallowUpdateSubSeasonDto[];
|
|
580
|
+
export declare class ImportRentalsFromCSV extends ImportCustomerFromCSV {
|
|
581
|
+
facilityId: number;
|
|
812
582
|
}
|
|
813
|
-
export declare class
|
|
814
|
-
|
|
815
|
-
name: string;
|
|
583
|
+
export declare class ByOrganizationIdCustomerIdDto extends ByOrganizationIdDto {
|
|
584
|
+
customerId: number;
|
|
816
585
|
}
|
|
817
|
-
export declare class
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
privateNotes?: string;
|
|
823
|
-
minutesBeforeSlot?: number;
|
|
824
|
-
minutesAfterSlot?: number;
|
|
586
|
+
export declare class FindCustomersByOrganizationIdFiltersDto extends PaginationQuery {
|
|
587
|
+
nameSearch?: string;
|
|
588
|
+
fuzzy?: string;
|
|
589
|
+
customerType?: CustomerTypeEnum;
|
|
590
|
+
customersIds?: string;
|
|
825
591
|
}
|
|
826
|
-
export declare class
|
|
827
|
-
|
|
828
|
-
organizationId: number;
|
|
592
|
+
export declare class AddCustomerNotesDto {
|
|
593
|
+
customerNotes: CustomerNoteDto[];
|
|
829
594
|
}
|
|
830
|
-
export declare class
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
spaceId: number;
|
|
835
|
-
publicNotes?: string;
|
|
836
|
-
slotType?: SlotTypeEnum;
|
|
595
|
+
export declare class CustomerNoteDto {
|
|
596
|
+
id?: number;
|
|
597
|
+
description: string;
|
|
598
|
+
pinToTop?: boolean;
|
|
837
599
|
}
|
|
838
|
-
export declare class
|
|
839
|
-
|
|
600
|
+
export declare class AddEditCustomerDto {
|
|
601
|
+
firstName?: string;
|
|
602
|
+
lastName?: string;
|
|
603
|
+
entityId?: number;
|
|
604
|
+
entityType?: CustomerTypeEnum;
|
|
605
|
+
email?: string;
|
|
606
|
+
color?: string;
|
|
607
|
+
street?: string;
|
|
608
|
+
city?: string;
|
|
609
|
+
state?: string;
|
|
610
|
+
zip?: string;
|
|
611
|
+
phoneNumber?: string;
|
|
612
|
+
mainMediaId?: number;
|
|
613
|
+
creatorId?: number;
|
|
614
|
+
creatorType?: ResourceNameTypeEnum;
|
|
615
|
+
userCreatorId?: number;
|
|
616
|
+
gender?: GenderEnum;
|
|
617
|
+
birthDate?: string;
|
|
618
|
+
emergencyContactName?: string;
|
|
619
|
+
emergencyContactPhone?: string;
|
|
840
620
|
}
|
|
841
|
-
export declare class
|
|
842
|
-
|
|
843
|
-
|
|
621
|
+
export declare class CreateMembershipDto {
|
|
622
|
+
organizationId: number;
|
|
623
|
+
name: string;
|
|
624
|
+
description?: string;
|
|
625
|
+
customerTypes: CustomerInMembershipTypeEnum[];
|
|
626
|
+
activity: SportsEnum;
|
|
627
|
+
facilityId: number;
|
|
628
|
+
questionnaires: number[];
|
|
629
|
+
minAgeYears: number;
|
|
630
|
+
maxAgeYears: number;
|
|
631
|
+
gender: GenderEnum;
|
|
632
|
+
maxMembers?: number;
|
|
633
|
+
maxMaleMembers?: number;
|
|
634
|
+
maxFemaleMembers?: number;
|
|
635
|
+
startDate: string;
|
|
636
|
+
endDate: string;
|
|
637
|
+
registrationStartDate?: Date;
|
|
638
|
+
registrationEndDate?: Date;
|
|
639
|
+
membershipType: MembershipTypeEnum;
|
|
640
|
+
durationMonths: number;
|
|
641
|
+
longDescription?: string;
|
|
642
|
+
isAutoRenew?: boolean;
|
|
844
643
|
}
|
|
845
|
-
export declare class
|
|
846
|
-
|
|
847
|
-
resourceType: ResourceNameTypeEnum;
|
|
848
|
-
fromResourceIds: number[];
|
|
849
|
-
toResourceIds: number[];
|
|
644
|
+
export declare class UpdateMembrshipDto extends CreateMembershipDto {
|
|
645
|
+
id: number;
|
|
850
646
|
}
|
|
851
|
-
export declare class
|
|
852
|
-
|
|
647
|
+
export declare class UpdateMembershipMediaDto {
|
|
648
|
+
membershipId: number;
|
|
649
|
+
mediaId: number;
|
|
853
650
|
}
|
|
854
|
-
export declare class
|
|
855
|
-
|
|
856
|
-
registrationEndDate: Date;
|
|
857
|
-
earlyRegistrationStartDate?: Date;
|
|
858
|
-
earlyRegistrationEndDate?: Date;
|
|
859
|
-
lateRegistrationStartDate?: Date;
|
|
860
|
-
lateRegistrationEndDate?: Date;
|
|
651
|
+
export declare class FindMembershipByIdDto {
|
|
652
|
+
membershipId: number;
|
|
861
653
|
}
|
|
862
|
-
export declare class
|
|
863
|
-
|
|
864
|
-
closeRegistrationPeriodType?: RegistrationConstraintPeriodTypeEnum;
|
|
865
|
-
closeRegistrationSpecTime?: string;
|
|
866
|
-
openRegistrationPeriodValue?: number;
|
|
867
|
-
openRegistrationPeriodType?: RegistrationConstraintPeriodTypeEnum;
|
|
868
|
-
openRegistrationSpecTime?: string;
|
|
869
|
-
productsIdsToUpdate?: number[];
|
|
654
|
+
export declare class FindMembershipsByOrganizationIdDto {
|
|
655
|
+
organizationId: number;
|
|
870
656
|
}
|
|
871
|
-
export declare class
|
|
657
|
+
export declare class FindMembershipsByUserIdDto {
|
|
872
658
|
userId: number;
|
|
873
|
-
oldProductId: number;
|
|
874
|
-
newProductId: number;
|
|
875
|
-
moveType: 'session' | 'segment';
|
|
876
|
-
resourceId: number;
|
|
877
|
-
orderId: number;
|
|
878
659
|
}
|
|
879
|
-
export declare class
|
|
880
|
-
|
|
881
|
-
programType?: ProgramTypesEnum;
|
|
660
|
+
export declare class SetMembersStartDateByOrganization extends FindMembershipsByOrganizationIdDto {
|
|
661
|
+
startDate: string;
|
|
882
662
|
}
|
|
883
|
-
export declare class
|
|
884
|
-
|
|
663
|
+
export declare class MembershipIdsDto {
|
|
664
|
+
membershipIds?: number[];
|
|
885
665
|
}
|
|
886
|
-
export declare class
|
|
887
|
-
|
|
888
|
-
organizationId: number;
|
|
666
|
+
export declare class MemberIdDto {
|
|
667
|
+
memberId?: number;
|
|
889
668
|
}
|
|
890
|
-
export declare class
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
sport: SportsEnum;
|
|
894
|
-
minAge: string;
|
|
895
|
-
maxAge: string;
|
|
896
|
-
gender: GenderEnum;
|
|
897
|
-
level?: LevelOfPlayEnum[];
|
|
898
|
-
description?: string;
|
|
899
|
-
GL?: string;
|
|
900
|
-
status: PublishingStatusEnum;
|
|
901
|
-
organizationId: number;
|
|
902
|
-
userCreatorId: number;
|
|
903
|
-
highlights: ProgramHighlights[];
|
|
904
|
-
longDescription?: string;
|
|
905
|
-
requiredProductIds: number[];
|
|
669
|
+
export declare class FindMembersOptionsDto extends PaginationQuery {
|
|
670
|
+
nameEmailSearch?: string;
|
|
671
|
+
pastMemberships?: string;
|
|
906
672
|
}
|
|
907
|
-
export declare class
|
|
673
|
+
export declare class CancelMembershipDto {
|
|
674
|
+
isImmediatelyCancel: boolean;
|
|
675
|
+
cancellationReason?: string;
|
|
908
676
|
}
|
|
909
|
-
export declare class
|
|
910
|
-
|
|
911
|
-
|
|
677
|
+
export declare class CreateUpdateVariantsDto {
|
|
678
|
+
organizationId: number;
|
|
679
|
+
parentProductId: number;
|
|
680
|
+
variantTitles: VariantTitleDto[];
|
|
681
|
+
variants: VariantDto[];
|
|
912
682
|
}
|
|
913
|
-
export declare class
|
|
914
|
-
|
|
915
|
-
|
|
683
|
+
export declare class VariantTitleDto {
|
|
684
|
+
titleName: string;
|
|
685
|
+
titleId: number;
|
|
916
686
|
}
|
|
917
|
-
export declare class
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
687
|
+
export declare class VariantDto {
|
|
688
|
+
name: string;
|
|
689
|
+
price: number;
|
|
690
|
+
variantId: number;
|
|
691
|
+
currency: CurrencyEnum;
|
|
692
|
+
startDate: Date;
|
|
693
|
+
endDate: Date;
|
|
922
694
|
}
|
|
923
695
|
export declare class PurchasePaymentDto {
|
|
924
696
|
token: string;
|
|
@@ -1044,26 +816,210 @@ export declare class UpdateSpaceRelationshipsDto {
|
|
|
1044
816
|
resourceGroupId?: number;
|
|
1045
817
|
blockedResourcesIds?: number[];
|
|
1046
818
|
}
|
|
1047
|
-
export declare class SaveSpaceDependenciesDto {
|
|
1048
|
-
blockedSpacesIds: number[];
|
|
1049
|
-
parentSpaceId?: number;
|
|
819
|
+
export declare class SaveSpaceDependenciesDto {
|
|
820
|
+
blockedSpacesIds: number[];
|
|
821
|
+
parentSpaceId?: number;
|
|
822
|
+
}
|
|
823
|
+
export declare class FacilitySlotsScheduleQueryParams {
|
|
824
|
+
spacesIds?: string;
|
|
825
|
+
futureHoursLimit?: number;
|
|
826
|
+
}
|
|
827
|
+
export declare class FindResourcesOptionsDto extends PaginationQuery {
|
|
828
|
+
nameSearch?: string;
|
|
829
|
+
facilitiesIds?: string;
|
|
830
|
+
types?: string;
|
|
831
|
+
resourcesIds?: string;
|
|
832
|
+
}
|
|
833
|
+
export declare class StripeCustomerIdDto {
|
|
834
|
+
userId: number;
|
|
835
|
+
}
|
|
836
|
+
export declare class AddACHTokenToCustomerDto {
|
|
837
|
+
publicToken: string;
|
|
838
|
+
accountId: string;
|
|
839
|
+
}
|
|
840
|
+
export declare class FindProgramSeasonsByProgramIdDto {
|
|
841
|
+
programId: number;
|
|
842
|
+
}
|
|
843
|
+
export declare class FindSessionsFiltersDto {
|
|
844
|
+
status?: PublishingStatusEnum;
|
|
845
|
+
isFullFetch?: boolean;
|
|
846
|
+
}
|
|
847
|
+
export declare class FindSessionsByProgramAndOrganizationDto extends FindProgramSeasonsByProgramIdDto {
|
|
848
|
+
organizationId: number;
|
|
849
|
+
}
|
|
850
|
+
export declare class DeleteEventAttendeesDto {
|
|
851
|
+
eventAttendeeIds: string;
|
|
852
|
+
}
|
|
853
|
+
export declare class FindProgramSeasonByIdQueryDto {
|
|
854
|
+
includeResources?: boolean;
|
|
855
|
+
}
|
|
856
|
+
export declare class FindProgramSeasonByIdDto extends OptionalFindByOrganizationIdDto {
|
|
857
|
+
seasonId: number;
|
|
858
|
+
}
|
|
859
|
+
export declare class DeleteProgramSeasonByIDDto extends ByOrganizationIdDto {
|
|
860
|
+
seasonId: number;
|
|
861
|
+
}
|
|
862
|
+
export declare class DeleteProductDto {
|
|
863
|
+
deleteProduct?: boolean;
|
|
864
|
+
}
|
|
865
|
+
export declare class FindRegisteredUserDto extends FindProgramSeasonByIdDto {
|
|
866
|
+
userId: number;
|
|
867
|
+
}
|
|
868
|
+
export declare class FindRegisteredUsersOptionsDto extends PaginationQuery {
|
|
869
|
+
isFreeAgentsOnly?: boolean;
|
|
870
|
+
isPunchCardUsers?: boolean;
|
|
871
|
+
nameEmailSearch?: string;
|
|
872
|
+
}
|
|
873
|
+
export declare class BaseProgramSeasonDto {
|
|
874
|
+
programId: number;
|
|
875
|
+
name: string;
|
|
876
|
+
status: PublishingStatusEnum;
|
|
877
|
+
seasonType: ProgramSeasonTypesEnum;
|
|
878
|
+
startDate: Date;
|
|
879
|
+
endDate: Date;
|
|
880
|
+
description?: string;
|
|
881
|
+
GL?: string;
|
|
882
|
+
parentSeasonId?: number;
|
|
883
|
+
questionnaires?: number[];
|
|
884
|
+
maxParticipants?: number;
|
|
885
|
+
maxMaleParticipants?: number;
|
|
886
|
+
maxFemaleParticipants?: number;
|
|
887
|
+
maxWaitlist?: number;
|
|
888
|
+
maxMaleWaitlist?: number;
|
|
889
|
+
maxFemaleWaitlist?: number;
|
|
890
|
+
facilityId?: number;
|
|
891
|
+
addressId?: number;
|
|
892
|
+
blockedDated?: blockedDatesDto[];
|
|
893
|
+
activityTimes: ActivityTimesDto[];
|
|
894
|
+
longDescription?: string;
|
|
895
|
+
isPunchCard?: boolean;
|
|
896
|
+
organizationId: number;
|
|
897
|
+
sport: SportsEnum;
|
|
898
|
+
minAge: string;
|
|
899
|
+
maxAge: string;
|
|
900
|
+
gender: GenderEnum;
|
|
901
|
+
level?: LevelOfPlayEnum[];
|
|
902
|
+
requiredProductIds?: number[];
|
|
903
|
+
}
|
|
904
|
+
export declare class CreateProgramSeasonDto extends BaseProgramSeasonDto {
|
|
905
|
+
subSeasons?: SubSeasonBasicInfo[];
|
|
906
|
+
}
|
|
907
|
+
export declare class CreateSessionScheduleDto {
|
|
908
|
+
startDate: Date;
|
|
909
|
+
endDate: Date;
|
|
910
|
+
activityTimes: ActivityTimesDto[];
|
|
911
|
+
blockedDated?: blockedDatesDto[];
|
|
912
|
+
subSeasons?: SubSeasonBasicInfo[];
|
|
913
|
+
}
|
|
914
|
+
export declare class SubSeasonBasicInfo {
|
|
915
|
+
name: string;
|
|
916
|
+
startDate: Date;
|
|
917
|
+
endDate: Date;
|
|
918
|
+
activityTimes?: ActivityTimesDto[];
|
|
919
|
+
}
|
|
920
|
+
export declare class UpdateProgramSeasonDto extends BaseProgramSeasonDto {
|
|
921
|
+
seasonId: number;
|
|
922
|
+
}
|
|
923
|
+
export declare class UpdateProgramSeasonStatusDto {
|
|
924
|
+
seasonId: number;
|
|
925
|
+
status: PublishingStatusEnum;
|
|
926
|
+
}
|
|
927
|
+
export declare class blockedDatesDto {
|
|
928
|
+
name: string;
|
|
929
|
+
startDate: Date;
|
|
930
|
+
endDate: Date;
|
|
931
|
+
}
|
|
932
|
+
export declare class ActivityTimesDto {
|
|
933
|
+
dayOfWeek: number;
|
|
934
|
+
open: string;
|
|
935
|
+
close: string;
|
|
936
|
+
}
|
|
937
|
+
export declare class ShallowUpdateProgramSeasonDto {
|
|
938
|
+
seasonId: number;
|
|
939
|
+
name: string;
|
|
940
|
+
description?: string;
|
|
941
|
+
questionnaires?: number[];
|
|
942
|
+
maxParticipants?: number;
|
|
943
|
+
maxMaleParticipants?: number;
|
|
944
|
+
maxFemaleParticipants?: number;
|
|
945
|
+
maxWaitlist?: number;
|
|
946
|
+
maxMaleWaitlist?: number;
|
|
947
|
+
maxFemaleWaitlist?: number;
|
|
948
|
+
facilityId?: number;
|
|
949
|
+
addressId?: number;
|
|
950
|
+
sport?: SportsEnum;
|
|
951
|
+
minAge?: string;
|
|
952
|
+
maxAge?: string;
|
|
953
|
+
gender?: GenderEnum;
|
|
954
|
+
level?: LevelOfPlayEnum[];
|
|
955
|
+
requiredProductIds?: number[];
|
|
956
|
+
subSeasons?: ShallowUpdateSubSeasonDto[];
|
|
957
|
+
}
|
|
958
|
+
export declare class ShallowUpdateSubSeasonDto {
|
|
959
|
+
id: number;
|
|
960
|
+
name: string;
|
|
961
|
+
}
|
|
962
|
+
export declare class SpaceResourcePairDto {
|
|
963
|
+
resourceType: ResourceNameTypeEnum;
|
|
964
|
+
resourceId: number;
|
|
965
|
+
spacesIds: number[];
|
|
966
|
+
publicNotes?: string;
|
|
967
|
+
privateNotes?: string;
|
|
968
|
+
minutesBeforeSlot?: number;
|
|
969
|
+
minutesAfterSlot?: number;
|
|
970
|
+
}
|
|
971
|
+
export declare class BulkSpaceResourceAllocationDto {
|
|
972
|
+
spaceResourcePairs: SpaceResourcePairDto[];
|
|
973
|
+
organizationId: number;
|
|
974
|
+
}
|
|
975
|
+
export declare class SingleSpaceAllocationByTimesDto {
|
|
976
|
+
date: string;
|
|
977
|
+
startTime: string;
|
|
978
|
+
endTime: string;
|
|
979
|
+
spaceId: number;
|
|
980
|
+
publicNotes?: string;
|
|
981
|
+
slotType?: SlotTypeEnum;
|
|
982
|
+
}
|
|
983
|
+
export declare class SpaceAllocationsByTimesDto {
|
|
984
|
+
spaceAllocations: SingleSpaceAllocationByTimesDto[];
|
|
985
|
+
}
|
|
986
|
+
export declare class UpdateSeasonDatesDto {
|
|
987
|
+
startDate: Date;
|
|
988
|
+
endDate: Date;
|
|
989
|
+
}
|
|
990
|
+
export declare class MoveAttendeeDto {
|
|
991
|
+
userId: number;
|
|
992
|
+
resourceType: ResourceNameTypeEnum;
|
|
993
|
+
fromResourceIds: number[];
|
|
994
|
+
toResourceIds: number[];
|
|
995
|
+
}
|
|
996
|
+
export declare class UpdateSeasonRegistrationDatesDto {
|
|
997
|
+
registrationPeriods: UpdateSeasonDatesDto[];
|
|
1050
998
|
}
|
|
1051
|
-
export declare class
|
|
1052
|
-
|
|
1053
|
-
|
|
999
|
+
export declare class RegistrationDatesDto {
|
|
1000
|
+
registrationStartDate: Date;
|
|
1001
|
+
registrationEndDate: Date;
|
|
1002
|
+
earlyRegistrationStartDate?: Date;
|
|
1003
|
+
earlyRegistrationEndDate?: Date;
|
|
1004
|
+
lateRegistrationStartDate?: Date;
|
|
1005
|
+
lateRegistrationEndDate?: Date;
|
|
1054
1006
|
}
|
|
1055
|
-
export declare class
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1007
|
+
export declare class RegistrationSettingsDto extends RegistrationDatesDto {
|
|
1008
|
+
closeRegistrationPeriodValue?: number;
|
|
1009
|
+
closeRegistrationPeriodType?: RegistrationConstraintPeriodTypeEnum;
|
|
1010
|
+
closeRegistrationSpecTime?: string;
|
|
1011
|
+
openRegistrationPeriodValue?: number;
|
|
1012
|
+
openRegistrationPeriodType?: RegistrationConstraintPeriodTypeEnum;
|
|
1013
|
+
openRegistrationSpecTime?: string;
|
|
1014
|
+
productsIdsToUpdate?: number[];
|
|
1060
1015
|
}
|
|
1061
|
-
export declare class
|
|
1016
|
+
export declare class MoveParticipantDto {
|
|
1062
1017
|
userId: number;
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1018
|
+
oldProductId: number;
|
|
1019
|
+
newProductId: number;
|
|
1020
|
+
moveType: 'session' | 'segment';
|
|
1021
|
+
resourceId: number;
|
|
1022
|
+
orderId: number;
|
|
1067
1023
|
}
|
|
1068
1024
|
export declare class FindByUserIdDto {
|
|
1069
1025
|
userId: number;
|
|
@@ -1074,6 +1030,19 @@ export declare class FindByFamilyAccountIdDto {
|
|
|
1074
1030
|
export declare class FindByUserAndOrganizationDto extends FindByUserIdDto {
|
|
1075
1031
|
organizationId: number;
|
|
1076
1032
|
}
|
|
1033
|
+
export declare class ActivityLogRecord extends BondBaseEntity {
|
|
1034
|
+
entityType: ResourceNameTypeEnum;
|
|
1035
|
+
entityId: number;
|
|
1036
|
+
organizationId?: number;
|
|
1037
|
+
userId?: number;
|
|
1038
|
+
customerId?: number;
|
|
1039
|
+
performingUserId: number;
|
|
1040
|
+
description: string;
|
|
1041
|
+
actionType: ActionTypesEnum;
|
|
1042
|
+
sourcePlatform: ActionSourcePlatformEnum;
|
|
1043
|
+
oldValue?: any;
|
|
1044
|
+
newValue?: any;
|
|
1045
|
+
}
|
|
1077
1046
|
export declare class ActivityTimes extends BondBaseEntity {
|
|
1078
1047
|
parentType: ResourceNameTypeEnum | ProductTypesEnum;
|
|
1079
1048
|
parentId: number;
|
|
@@ -1117,24 +1086,16 @@ export declare class AnswerTitle extends OrganizationConnectionBaseEntity {
|
|
|
1117
1086
|
answers: Answer[];
|
|
1118
1087
|
questionnaire: Questionnaires;
|
|
1119
1088
|
}
|
|
1120
|
-
export declare class AthleteSports extends BondBaseEntity {
|
|
1121
|
-
athleteId: number | null;
|
|
1122
|
-
sports: number | null;
|
|
1123
|
-
levelOfPlay: LevelOfPlayEnum | null;
|
|
1124
|
-
}
|
|
1125
|
-
export declare class BlockedDate extends BondBaseEntity {
|
|
1126
|
-
entityType: ResourceNameTypeEnum;
|
|
1127
|
-
entityId: number;
|
|
1128
|
-
name: string;
|
|
1129
|
-
startDate: Date;
|
|
1130
|
-
endDate: Date;
|
|
1131
|
-
deletedAt?: Date;
|
|
1132
|
-
}
|
|
1133
1089
|
export declare class Athlete extends BondBaseEntity {
|
|
1134
1090
|
userId: number | null;
|
|
1135
1091
|
metadata: object | null;
|
|
1136
1092
|
athleteSports: AthleteSports[];
|
|
1137
1093
|
}
|
|
1094
|
+
export declare class AthleteSports extends BondBaseEntity {
|
|
1095
|
+
athleteId: number | null;
|
|
1096
|
+
sports: number | null;
|
|
1097
|
+
levelOfPlay: LevelOfPlayEnum | null;
|
|
1098
|
+
}
|
|
1138
1099
|
export declare class BondBaseEntity extends BaseEntity {
|
|
1139
1100
|
id: number;
|
|
1140
1101
|
createdAt: Date;
|
|
@@ -1173,19 +1134,6 @@ export declare class Configuration extends BondBaseEntity {
|
|
|
1173
1134
|
key: string;
|
|
1174
1135
|
value: string;
|
|
1175
1136
|
}
|
|
1176
|
-
export declare class ActivityLogRecord extends BondBaseEntity {
|
|
1177
|
-
entityType: ResourceNameTypeEnum;
|
|
1178
|
-
entityId: number;
|
|
1179
|
-
organizationId?: number;
|
|
1180
|
-
userId?: number;
|
|
1181
|
-
customerId?: number;
|
|
1182
|
-
performingUserId: number;
|
|
1183
|
-
description: string;
|
|
1184
|
-
actionType: ActionTypesEnum;
|
|
1185
|
-
sourcePlatform: ActionSourcePlatformEnum;
|
|
1186
|
-
oldValue?: any;
|
|
1187
|
-
newValue?: any;
|
|
1188
|
-
}
|
|
1189
1137
|
export declare class Connection extends BondBaseEntity {
|
|
1190
1138
|
connType: number | null;
|
|
1191
1139
|
from: number | null;
|
|
@@ -1246,6 +1194,14 @@ export declare class CustomerCreditTransaction extends OrganizationConnectionBas
|
|
|
1246
1194
|
order: Order;
|
|
1247
1195
|
invoice: Invoice;
|
|
1248
1196
|
}
|
|
1197
|
+
export declare class BlockedDate extends BondBaseEntity {
|
|
1198
|
+
entityType: ResourceNameTypeEnum;
|
|
1199
|
+
entityId: number;
|
|
1200
|
+
name: string;
|
|
1201
|
+
startDate: Date;
|
|
1202
|
+
endDate: Date;
|
|
1203
|
+
deletedAt?: Date;
|
|
1204
|
+
}
|
|
1249
1205
|
export declare class CustomerNote extends OrganizationConnectionBaseEntity {
|
|
1250
1206
|
customerId?: number;
|
|
1251
1207
|
description: string;
|
|
@@ -1371,10 +1327,6 @@ export declare class FacilityToResource extends BondBaseEntity {
|
|
|
1371
1327
|
facilityId: number;
|
|
1372
1328
|
resourceId: number;
|
|
1373
1329
|
}
|
|
1374
|
-
export declare class FamilyAccount extends BondBaseEntity {
|
|
1375
|
-
name: string | null;
|
|
1376
|
-
userInFamilyAccounts: UserInFamilyAccount[];
|
|
1377
|
-
}
|
|
1378
1330
|
export declare class FutureInstallment extends OrganizationConnectionBaseEntity {
|
|
1379
1331
|
userId: number;
|
|
1380
1332
|
orderId: number;
|
|
@@ -1388,24 +1340,6 @@ export declare class FutureInstallment extends OrganizationConnectionBaseEntity
|
|
|
1388
1340
|
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1389
1341
|
code: string;
|
|
1390
1342
|
}
|
|
1391
|
-
export declare class GroupItemsPricing extends OrganizationConnectionBaseEntity {
|
|
1392
|
-
groupId: number;
|
|
1393
|
-
itemId: number;
|
|
1394
|
-
itemType: ResourceNameTypeEnum;
|
|
1395
|
-
startDate: Date;
|
|
1396
|
-
endDate: Date;
|
|
1397
|
-
price: number;
|
|
1398
|
-
overridesPrice: boolean;
|
|
1399
|
-
deletedAt?: Date;
|
|
1400
|
-
group?: EntitlementGroup;
|
|
1401
|
-
discountMethod?: DiscountMethodsEnum;
|
|
1402
|
-
discountValue?: number;
|
|
1403
|
-
}
|
|
1404
|
-
export declare class GroupsInDivisions extends BondBaseEntity {
|
|
1405
|
-
groupId: number;
|
|
1406
|
-
divisionId: number;
|
|
1407
|
-
deletedAt?: Date;
|
|
1408
|
-
}
|
|
1409
1343
|
export declare class Group extends BondBaseEntity {
|
|
1410
1344
|
name: string;
|
|
1411
1345
|
description?: string;
|
|
@@ -1422,6 +1356,19 @@ export declare class Group extends BondBaseEntity {
|
|
|
1422
1356
|
members: ISeasonAttendeeInfo[];
|
|
1423
1357
|
users: User[];
|
|
1424
1358
|
}
|
|
1359
|
+
export declare class GroupItemsPricing extends OrganizationConnectionBaseEntity {
|
|
1360
|
+
groupId: number;
|
|
1361
|
+
itemId: number;
|
|
1362
|
+
itemType: ResourceNameTypeEnum;
|
|
1363
|
+
startDate: Date;
|
|
1364
|
+
endDate: Date;
|
|
1365
|
+
price: number;
|
|
1366
|
+
overridesPrice: boolean;
|
|
1367
|
+
deletedAt?: Date;
|
|
1368
|
+
group?: EntitlementGroup;
|
|
1369
|
+
discountMethod?: DiscountMethodsEnum;
|
|
1370
|
+
discountValue?: number;
|
|
1371
|
+
}
|
|
1425
1372
|
export declare class Invoice extends OrganizationConnectionBaseEntity {
|
|
1426
1373
|
price: number;
|
|
1427
1374
|
paymentProcessorId: string;
|
|
@@ -1449,6 +1396,11 @@ export declare class Invoice extends OrganizationConnectionBaseEntity {
|
|
|
1449
1396
|
refundReasonId?: number;
|
|
1450
1397
|
refundNote?: string;
|
|
1451
1398
|
}
|
|
1399
|
+
export declare class GroupsInDivisions extends BondBaseEntity {
|
|
1400
|
+
groupId: number;
|
|
1401
|
+
divisionId: number;
|
|
1402
|
+
deletedAt?: Date;
|
|
1403
|
+
}
|
|
1452
1404
|
export declare class InvoiceMails extends OrganizationConnectionBaseEntity {
|
|
1453
1405
|
email: string;
|
|
1454
1406
|
status: EEmailStatus;
|
|
@@ -1563,6 +1515,7 @@ export declare class LineItems extends BondBaseEntity {
|
|
|
1563
1515
|
productUserId?: number;
|
|
1564
1516
|
ordinal: number | null;
|
|
1565
1517
|
entitlementGroupId?: number;
|
|
1518
|
+
entitlementGroups: EntitlementGroup;
|
|
1566
1519
|
price: number;
|
|
1567
1520
|
originalPrice?: number;
|
|
1568
1521
|
paidAmount?: number;
|
|
@@ -1618,24 +1571,9 @@ export declare class LinkedAccounts extends BondBaseEntity {
|
|
|
1618
1571
|
user: User;
|
|
1619
1572
|
userId: number | null;
|
|
1620
1573
|
}
|
|
1621
|
-
export declare class
|
|
1622
|
-
url: string;
|
|
1574
|
+
export declare class FamilyAccount extends BondBaseEntity {
|
|
1623
1575
|
name: string | null;
|
|
1624
|
-
|
|
1625
|
-
mediaKey: string | null;
|
|
1626
|
-
description: string | null;
|
|
1627
|
-
provider: string | null;
|
|
1628
|
-
mediaType: number;
|
|
1629
|
-
fileType: string | null;
|
|
1630
|
-
isDefault: boolean | null;
|
|
1631
|
-
creatorId: number | null;
|
|
1632
|
-
creatorType: string | null;
|
|
1633
|
-
userCreatorId: number | null;
|
|
1634
|
-
ownerId: number | null;
|
|
1635
|
-
createdBy: number | null;
|
|
1636
|
-
users: User[];
|
|
1637
|
-
programs: Program[];
|
|
1638
|
-
memberships: Membership[];
|
|
1576
|
+
userInFamilyAccounts: UserInFamilyAccount[];
|
|
1639
1577
|
}
|
|
1640
1578
|
export declare class Membership extends OrganizationConnectionBaseEntity {
|
|
1641
1579
|
name: string;
|
|
@@ -1685,12 +1623,6 @@ export declare class MembershipMember extends OrganizationConnectionBaseEntity {
|
|
|
1685
1623
|
cancellationStatus?: CancellationStatusEnum;
|
|
1686
1624
|
isImported?: boolean;
|
|
1687
1625
|
}
|
|
1688
|
-
export declare class NotificationSubscriptions extends OrganizationConnectionBaseEntity {
|
|
1689
|
-
email: string | null;
|
|
1690
|
-
notificationType: NotificationTypeEnum | null;
|
|
1691
|
-
resourceId: number | null;
|
|
1692
|
-
resourceType: string | null;
|
|
1693
|
-
}
|
|
1694
1626
|
export declare class OpeningTime extends OrganizationConnectionBaseEntity {
|
|
1695
1627
|
id: number;
|
|
1696
1628
|
dayOfWeek: number;
|
|
@@ -1726,6 +1658,25 @@ export declare class Order extends BondBaseEntity {
|
|
|
1726
1658
|
orderNotes: OrderNote[];
|
|
1727
1659
|
slots: Slot[];
|
|
1728
1660
|
}
|
|
1661
|
+
export declare class Media extends BondBaseEntity {
|
|
1662
|
+
url: string;
|
|
1663
|
+
name: string | null;
|
|
1664
|
+
title: string | null;
|
|
1665
|
+
mediaKey: string | null;
|
|
1666
|
+
description: string | null;
|
|
1667
|
+
provider: string | null;
|
|
1668
|
+
mediaType: number;
|
|
1669
|
+
fileType: string | null;
|
|
1670
|
+
isDefault: boolean | null;
|
|
1671
|
+
creatorId: number | null;
|
|
1672
|
+
creatorType: string | null;
|
|
1673
|
+
userCreatorId: number | null;
|
|
1674
|
+
ownerId: number | null;
|
|
1675
|
+
createdBy: number | null;
|
|
1676
|
+
users: User[];
|
|
1677
|
+
programs: Program[];
|
|
1678
|
+
memberships: Membership[];
|
|
1679
|
+
}
|
|
1729
1680
|
export declare class OrderNote extends OrganizationConnectionBaseEntity {
|
|
1730
1681
|
content: string;
|
|
1731
1682
|
creatingUserId: number;
|
|
@@ -1735,6 +1686,12 @@ export declare class OrderNote extends OrganizationConnectionBaseEntity {
|
|
|
1735
1686
|
orderId: number;
|
|
1736
1687
|
order: Order;
|
|
1737
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
|
+
}
|
|
1738
1695
|
export declare class OrderToInvoice extends BondBaseEntity {
|
|
1739
1696
|
orderId: number;
|
|
1740
1697
|
invoiceId: number;
|
|
@@ -1769,6 +1726,12 @@ export declare class PasswordReset extends BondBaseEntity {
|
|
|
1769
1726
|
validUntil: Date | null;
|
|
1770
1727
|
active: boolean | null;
|
|
1771
1728
|
}
|
|
1729
|
+
export declare class PaymentPlanSchedule extends OrganizationConnectionBaseEntity {
|
|
1730
|
+
paymentPlanId: number;
|
|
1731
|
+
paymentDate: Date;
|
|
1732
|
+
deletedAt?: Date;
|
|
1733
|
+
paymentPlan: ProductPaymentPlan;
|
|
1734
|
+
}
|
|
1772
1735
|
export declare class PaymentV1 extends BondBaseEntity {
|
|
1773
1736
|
userId: number | null;
|
|
1774
1737
|
ownerId: number | null;
|
|
@@ -1787,12 +1750,6 @@ export declare class PaymentV1 extends BondBaseEntity {
|
|
|
1787
1750
|
installmentId: number | null;
|
|
1788
1751
|
orderId: string | null;
|
|
1789
1752
|
}
|
|
1790
|
-
export declare class PaymentPlanSchedule extends OrganizationConnectionBaseEntity {
|
|
1791
|
-
paymentPlanId: number;
|
|
1792
|
-
paymentDate: Date;
|
|
1793
|
-
deletedAt?: Date;
|
|
1794
|
-
paymentPlan: ProductPaymentPlan;
|
|
1795
|
-
}
|
|
1796
1753
|
export declare class Price extends OrganizationConnectionBaseEntity {
|
|
1797
1754
|
productId: number;
|
|
1798
1755
|
product: Product;
|
|
@@ -1800,64 +1757,14 @@ export declare class Price extends OrganizationConnectionBaseEntity {
|
|
|
1800
1757
|
price: number;
|
|
1801
1758
|
currency: CurrencyEnum;
|
|
1802
1759
|
paymentProcessorId: number | null;
|
|
1803
|
-
startDate: Date;
|
|
1804
|
-
endDate: Date;
|
|
1805
|
-
groupId?: number;
|
|
1806
|
-
groupName?: string;
|
|
1807
|
-
originalPrice?: number;
|
|
1808
|
-
deletedAt?: Date;
|
|
1809
|
-
discountMethod?: DiscountMethodsEnum;
|
|
1810
|
-
discountValue?: number;
|
|
1811
|
-
}
|
|
1812
|
-
export declare class Product extends OrganizationConnectionBaseEntity {
|
|
1813
|
-
name: string;
|
|
1814
|
-
quantity: number;
|
|
1815
|
-
paymentProcessorId?: string;
|
|
1816
|
-
startDate?: Date;
|
|
1817
|
-
endDate?: Date;
|
|
1818
|
-
isPublic: boolean;
|
|
1819
|
-
productType?: ProductTypesEnum;
|
|
1820
|
-
GL?: string;
|
|
1821
|
-
downpayment?: number;
|
|
1822
|
-
description?: string;
|
|
1823
|
-
prices: Price[];
|
|
1824
|
-
currPrice: Price;
|
|
1825
|
-
productSubType?: ProductSubTypesEnum;
|
|
1826
|
-
punchCard: boolean;
|
|
1827
|
-
requiredProductIds?: number[];
|
|
1828
|
-
lineItems: LineItems[];
|
|
1829
|
-
resources: IResourcesAvailability[];
|
|
1830
|
-
variantParentId?: number;
|
|
1831
|
-
isAddon: boolean;
|
|
1832
|
-
isArchive: boolean;
|
|
1833
|
-
productVariants: Product[];
|
|
1834
|
-
variantParentProduct: Product;
|
|
1835
|
-
variantsObj: Variant[];
|
|
1836
|
-
variantTitlesObj: VariantTitle[];
|
|
1837
|
-
timePeriod?: AddonTimePeriodEnum;
|
|
1838
|
-
deletedAt?: Date;
|
|
1839
|
-
productsUsers: ProductsUsers[];
|
|
1840
|
-
isProRated: boolean;
|
|
1841
|
-
entitledPrices?: GroupItemsPricing[];
|
|
1842
|
-
defaultPriceId?: number;
|
|
1843
|
-
tax: number;
|
|
1844
|
-
isTaxInclusive: boolean;
|
|
1845
|
-
defaultPrice?: Price;
|
|
1846
|
-
addOns?: IChildProduct[];
|
|
1847
|
-
productPaymentPlan?: ProductPaymentPlan;
|
|
1848
|
-
productResources: ProductResource[];
|
|
1849
|
-
parentProductPackages: ProductPackage[];
|
|
1850
|
-
childProductPackages: ProductPackage[];
|
|
1851
|
-
sports?: number[] | null;
|
|
1852
|
-
durationMinutes?: number;
|
|
1853
|
-
durationDays?: number;
|
|
1854
|
-
forms?: number[] | null;
|
|
1855
|
-
isForAllCustomers?: boolean;
|
|
1856
|
-
productsReservedForCustomers: ProductsReservedForCustomers[];
|
|
1857
|
-
reservedForCustomers: Customer[];
|
|
1858
|
-
reservedForMemberships: Membership[];
|
|
1859
|
-
activityTimes: ActivityTimes[];
|
|
1860
|
-
purchasedResources: PurchasedResource[];
|
|
1760
|
+
startDate: Date;
|
|
1761
|
+
endDate: Date;
|
|
1762
|
+
groupId?: number;
|
|
1763
|
+
groupName?: string;
|
|
1764
|
+
originalPrice?: number;
|
|
1765
|
+
deletedAt?: Date;
|
|
1766
|
+
discountMethod?: DiscountMethodsEnum;
|
|
1767
|
+
discountValue?: number;
|
|
1861
1768
|
}
|
|
1862
1769
|
export declare class ProductPackage extends OrganizationConnectionBaseEntity {
|
|
1863
1770
|
parentProductId: number;
|
|
@@ -1898,6 +1805,10 @@ export declare class ProductToVariantTitle extends OrganizationConnectionBaseEnt
|
|
|
1898
1805
|
productId: number;
|
|
1899
1806
|
variantTitleId: number;
|
|
1900
1807
|
}
|
|
1808
|
+
export declare class ProductToVariant extends OrganizationConnectionBaseEntity {
|
|
1809
|
+
productId: number;
|
|
1810
|
+
variantId: number;
|
|
1811
|
+
}
|
|
1901
1812
|
export declare class ProductsReservedForCustomers extends OrganizationConnectionBaseEntity {
|
|
1902
1813
|
productId: number;
|
|
1903
1814
|
customerId: number;
|
|
@@ -1944,6 +1855,56 @@ export declare class Program extends BondBaseEntity {
|
|
|
1944
1855
|
programSeason: ProgramSeason[];
|
|
1945
1856
|
purchasedResources: PurchasedResource[];
|
|
1946
1857
|
}
|
|
1858
|
+
export declare class Product extends OrganizationConnectionBaseEntity {
|
|
1859
|
+
name: string;
|
|
1860
|
+
quantity: number;
|
|
1861
|
+
paymentProcessorId?: string;
|
|
1862
|
+
startDate?: Date;
|
|
1863
|
+
endDate?: Date;
|
|
1864
|
+
isPublic: boolean;
|
|
1865
|
+
productType?: ProductTypesEnum;
|
|
1866
|
+
GL?: string;
|
|
1867
|
+
downpayment?: number;
|
|
1868
|
+
description?: string;
|
|
1869
|
+
prices: Price[];
|
|
1870
|
+
currPrice: Price;
|
|
1871
|
+
productSubType?: ProductSubTypesEnum;
|
|
1872
|
+
punchCard: boolean;
|
|
1873
|
+
requiredProductIds?: number[];
|
|
1874
|
+
lineItems: LineItems[];
|
|
1875
|
+
resources: IResourcesAvailability[];
|
|
1876
|
+
variantParentId?: number;
|
|
1877
|
+
isAddon: boolean;
|
|
1878
|
+
isArchive: boolean;
|
|
1879
|
+
productVariants: Product[];
|
|
1880
|
+
variantParentProduct: Product;
|
|
1881
|
+
variantsObj: Variant[];
|
|
1882
|
+
variantTitlesObj: VariantTitle[];
|
|
1883
|
+
timePeriod?: AddonTimePeriodEnum;
|
|
1884
|
+
deletedAt?: Date;
|
|
1885
|
+
productsUsers: ProductsUsers[];
|
|
1886
|
+
isProRated: boolean;
|
|
1887
|
+
entitledPrices?: GroupItemsPricing[];
|
|
1888
|
+
defaultPriceId?: number;
|
|
1889
|
+
tax: number;
|
|
1890
|
+
isTaxInclusive: boolean;
|
|
1891
|
+
defaultPrice?: Price;
|
|
1892
|
+
addOns?: IChildProduct[];
|
|
1893
|
+
productPaymentPlan?: ProductPaymentPlan;
|
|
1894
|
+
productResources: ProductResource[];
|
|
1895
|
+
parentProductPackages: ProductPackage[];
|
|
1896
|
+
childProductPackages: ProductPackage[];
|
|
1897
|
+
sports?: number[] | null;
|
|
1898
|
+
durationMinutes?: number;
|
|
1899
|
+
durationDays?: number;
|
|
1900
|
+
forms?: number[] | null;
|
|
1901
|
+
isForAllCustomers?: boolean;
|
|
1902
|
+
productsReservedForCustomers: ProductsReservedForCustomers[];
|
|
1903
|
+
reservedForCustomers: Customer[];
|
|
1904
|
+
reservedForMemberships: Membership[];
|
|
1905
|
+
activityTimes: ActivityTimes[];
|
|
1906
|
+
purchasedResources: PurchasedResource[];
|
|
1907
|
+
}
|
|
1947
1908
|
export declare class ProgramHighlights extends BondBaseEntity {
|
|
1948
1909
|
type: ProgramHighlightTypeEnum;
|
|
1949
1910
|
ordinal: number | null;
|
|
@@ -1952,10 +1913,6 @@ export declare class ProgramHighlights extends BondBaseEntity {
|
|
|
1952
1913
|
program: Program;
|
|
1953
1914
|
deletedAt?: Date;
|
|
1954
1915
|
}
|
|
1955
|
-
export declare class ProductToVariant extends OrganizationConnectionBaseEntity {
|
|
1956
|
-
productId: number;
|
|
1957
|
-
variantId: number;
|
|
1958
|
-
}
|
|
1959
1916
|
export declare class ProgramSeason extends BondBaseEntity {
|
|
1960
1917
|
programId: number;
|
|
1961
1918
|
name: string;
|
|
@@ -2155,12 +2112,6 @@ export declare class SeasonAttendee extends BondBaseEntity {
|
|
|
2155
2112
|
deletedAt?: Date;
|
|
2156
2113
|
purchasedResource: PurchasedResource;
|
|
2157
2114
|
}
|
|
2158
|
-
export declare class SeasonDivisions extends BondBaseEntity {
|
|
2159
|
-
name: string | null;
|
|
2160
|
-
ordinal: number | null;
|
|
2161
|
-
seasonId: number | null;
|
|
2162
|
-
color: string | null;
|
|
2163
|
-
}
|
|
2164
2115
|
export declare class SeasonPool extends BondBaseEntity {
|
|
2165
2116
|
seasonId?: number;
|
|
2166
2117
|
userId?: number;
|
|
@@ -2217,6 +2168,12 @@ export declare class Subcategory extends OrganizationConnectionBaseEntity {
|
|
|
2217
2168
|
stationToSubcategories: StationToSubcategory[];
|
|
2218
2169
|
stations: Station[];
|
|
2219
2170
|
}
|
|
2171
|
+
export declare class SeasonDivisions extends BondBaseEntity {
|
|
2172
|
+
name: string | null;
|
|
2173
|
+
ordinal: number | null;
|
|
2174
|
+
seasonId: number | null;
|
|
2175
|
+
color: string | null;
|
|
2176
|
+
}
|
|
2220
2177
|
export declare class Team extends BondBaseEntity {
|
|
2221
2178
|
name: string | null;
|
|
2222
2179
|
description: string | null;
|
|
@@ -2322,19 +2279,13 @@ export declare class UserInFamilyAccount extends BondBaseEntity {
|
|
|
2322
2279
|
familyAccount: FamilyAccount;
|
|
2323
2280
|
deletedAt?: Date;
|
|
2324
2281
|
}
|
|
2325
|
-
export declare class UsersInGroup extends BondBaseEntity {
|
|
2326
|
-
groupId: number;
|
|
2327
|
-
userId: number;
|
|
2328
|
-
deletedAt?: Date;
|
|
2329
|
-
}
|
|
2330
2282
|
export declare class VariantTitle extends OrganizationConnectionBaseEntity {
|
|
2331
2283
|
name: string;
|
|
2332
2284
|
variants: Variant[];
|
|
2333
2285
|
}
|
|
2334
|
-
export declare class
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
variantTitle: VariantTitle;
|
|
2286
|
+
export declare class UsersInGroup extends BondBaseEntity {
|
|
2287
|
+
groupId: number;
|
|
2288
|
+
userId: number;
|
|
2338
2289
|
deletedAt?: Date;
|
|
2339
2290
|
}
|
|
2340
2291
|
export declare class WebflowOrganizationConfiguration extends OrganizationConnectionBaseEntity {
|
|
@@ -2345,6 +2296,56 @@ export declare class WebflowOrganizationConfiguration extends OrganizationConnec
|
|
|
2345
2296
|
membershipCollectionId?: string;
|
|
2346
2297
|
programsCollectionId?: string;
|
|
2347
2298
|
}
|
|
2299
|
+
export declare class FindProgramsByOrganizationIdDto {
|
|
2300
|
+
organizationId: number;
|
|
2301
|
+
programType?: ProgramTypesEnum;
|
|
2302
|
+
}
|
|
2303
|
+
export declare class FindProgramByIdDto {
|
|
2304
|
+
programId: number;
|
|
2305
|
+
}
|
|
2306
|
+
export declare class FindProgramByOrgIdAndIdDto {
|
|
2307
|
+
programId: number;
|
|
2308
|
+
organizationId: number;
|
|
2309
|
+
}
|
|
2310
|
+
export declare class BaseProgramDto {
|
|
2311
|
+
type: ProgramTypesEnum;
|
|
2312
|
+
name: string;
|
|
2313
|
+
sport: SportsEnum;
|
|
2314
|
+
minAge: string;
|
|
2315
|
+
maxAge: string;
|
|
2316
|
+
gender: GenderEnum;
|
|
2317
|
+
level?: LevelOfPlayEnum[];
|
|
2318
|
+
description?: string;
|
|
2319
|
+
GL?: string;
|
|
2320
|
+
status: PublishingStatusEnum;
|
|
2321
|
+
organizationId: number;
|
|
2322
|
+
userCreatorId: number;
|
|
2323
|
+
highlights: ProgramHighlights[];
|
|
2324
|
+
longDescription?: string;
|
|
2325
|
+
requiredProductIds: number[];
|
|
2326
|
+
}
|
|
2327
|
+
export declare class CreateProgramDto extends BaseProgramDto {
|
|
2328
|
+
}
|
|
2329
|
+
export declare class UpdateProgramDto extends BaseProgramDto {
|
|
2330
|
+
programId: number;
|
|
2331
|
+
mainMediaId: number;
|
|
2332
|
+
}
|
|
2333
|
+
export declare class UpdateProgramStatusDto {
|
|
2334
|
+
programId: number;
|
|
2335
|
+
status: PublishingStatusEnum;
|
|
2336
|
+
}
|
|
2337
|
+
export declare class ProgramHighlightDto {
|
|
2338
|
+
data: string;
|
|
2339
|
+
ordinal: number;
|
|
2340
|
+
type: ProgramHighlightTypeEnum;
|
|
2341
|
+
title: string;
|
|
2342
|
+
}
|
|
2343
|
+
export declare class Variant extends OrganizationConnectionBaseEntity {
|
|
2344
|
+
name: string;
|
|
2345
|
+
variantTitleId: number;
|
|
2346
|
+
variantTitle: VariantTitle;
|
|
2347
|
+
deletedAt?: Date;
|
|
2348
|
+
}
|
|
2348
2349
|
export declare enum EntitlementTermsTypesEnum {
|
|
2349
2350
|
QUESTION = "question",
|
|
2350
2351
|
CITY = "city",
|
|
@@ -3222,134 +3223,18 @@ export interface CreatePaymentIntentDto extends PurchaseRequestDto {
|
|
|
3222
3223
|
fee?: number;
|
|
3223
3224
|
}
|
|
3224
3225
|
export interface IReservationCreatorData {
|
|
3225
|
-
type: ResourceNameTypeEnum;
|
|
3226
|
-
id: number;
|
|
3227
|
-
organizationId: number;
|
|
3228
|
-
startDate: string;
|
|
3229
|
-
endDate: string;
|
|
3230
|
-
sportId: number;
|
|
3231
|
-
}
|
|
3232
|
-
export declare class ColumnNumericTransformer {
|
|
3233
|
-
to(data: number): number;
|
|
3234
|
-
from(data: string): number;
|
|
3235
|
-
}
|
|
3236
|
-
export declare function convertToNumber(data: string): number;
|
|
3237
|
-
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3238
|
-
name?: string;
|
|
3239
|
-
genderStr?: string;
|
|
3240
|
-
parentID?: string;
|
|
3241
|
-
partnerID?: string;
|
|
3242
|
-
membershipName?: string;
|
|
3243
|
-
membershipExpDate?: string;
|
|
3244
|
-
membershipCreationDate?: string;
|
|
3245
|
-
bondMembershipID?: number;
|
|
3246
|
-
}
|
|
3247
|
-
export declare class AddFamilyDto {
|
|
3248
|
-
parents: AddImportedCustomerDto[];
|
|
3249
|
-
children: AddImportedCustomerDto[];
|
|
3250
|
-
}
|
|
3251
|
-
export declare enum ImportPaymentTypeEnum {
|
|
3252
|
-
CREDIT_CARD = "card",
|
|
3253
|
-
ACH = "ach",
|
|
3254
|
-
CASH = "cash",
|
|
3255
|
-
CHECK = "check",
|
|
3256
|
-
CARD_ON_TERMINAL = "card-on-terminal",
|
|
3257
|
-
OTHER = "other"
|
|
3258
|
-
}
|
|
3259
|
-
export declare class ImportedInvoiceLineDto {
|
|
3260
|
-
invoiceID?: string;
|
|
3261
|
-
description: string;
|
|
3262
|
-
createdDate: string;
|
|
3263
|
-
createdTime: string;
|
|
3264
|
-
quantity: string;
|
|
3265
|
-
price: string;
|
|
3266
|
-
total: string;
|
|
3267
|
-
customerID: string;
|
|
3268
|
-
resourceType: string;
|
|
3269
|
-
resourceID: string;
|
|
3270
|
-
}
|
|
3271
|
-
export declare class ImportedInvoiceDto {
|
|
3272
|
-
customerId?: string;
|
|
3273
|
-
total?: string;
|
|
3274
|
-
amountDue?: string;
|
|
3275
|
-
payments?: ImportedPaymentDto[];
|
|
3276
|
-
lines: any;
|
|
3277
|
-
}
|
|
3278
|
-
export declare class ImportedPaymentDto {
|
|
3279
|
-
invoiceID: string;
|
|
3280
|
-
type: ImportPaymentTypeEnum;
|
|
3281
|
-
description: string;
|
|
3282
|
-
paid: string;
|
|
3283
|
-
date: string;
|
|
3284
|
-
time: string;
|
|
3285
|
-
}
|
|
3286
|
-
export declare class ProductIdsDto {
|
|
3287
|
-
productIds?: number[];
|
|
3288
|
-
}
|
|
3289
|
-
export declare class ProductImportDto {
|
|
3290
|
-
product: Product;
|
|
3291
|
-
prices: Price[];
|
|
3292
|
-
resourceIds: number[];
|
|
3293
|
-
oldId: number;
|
|
3294
|
-
}
|
|
3295
|
-
export declare class PunchPassDto {
|
|
3296
|
-
CustomerID: string;
|
|
3297
|
-
QuantityLeft: number;
|
|
3298
|
-
BondProgramID: number;
|
|
3299
|
-
BondSessionID: number;
|
|
3300
|
-
ProductID: number;
|
|
3301
|
-
}
|
|
3302
|
-
export declare class ImportedSlotProductDto {
|
|
3303
|
-
slotID?: string;
|
|
3304
|
-
name?: string;
|
|
3305
|
-
pricingType?: 'Hourly' | 'Flat';
|
|
3306
|
-
appliesTo?: 'slot' | 'addon' | 'reservation';
|
|
3307
|
-
price?: string;
|
|
3308
|
-
minutes?: string;
|
|
3309
|
-
quantity: string;
|
|
3310
|
-
startDate?: string;
|
|
3311
|
-
startTime?: string;
|
|
3312
|
-
endDate?: string;
|
|
3313
|
-
endTime?: string;
|
|
3314
|
-
bondProductId?: number;
|
|
3315
|
-
}
|
|
3316
|
-
export declare class ImportResourceMappingDto {
|
|
3317
|
-
bondResourceID?: string;
|
|
3318
|
-
resourceName?: string;
|
|
3319
|
-
}
|
|
3320
|
-
export declare class ImportProductMappingDto {
|
|
3321
|
-
productID?: string;
|
|
3322
|
-
productName?: string;
|
|
3323
|
-
}
|
|
3324
|
-
export declare class ImportedSlotDto {
|
|
3325
|
-
reservationID: string;
|
|
3326
|
-
bondResourceID: string;
|
|
3327
|
-
resourceName: string;
|
|
3328
|
-
subResourceName: string;
|
|
3329
|
-
startDate: string;
|
|
3330
|
-
startTime: string;
|
|
3331
|
-
endDate: string;
|
|
3332
|
-
endTime: string;
|
|
3333
|
-
sportId?: string;
|
|
3334
|
-
setupDuration: string;
|
|
3335
|
-
setupIncludeInCosts: string;
|
|
3336
|
-
takedownDuration: string;
|
|
3337
|
-
takedownIncludeInCosts: string;
|
|
3338
|
-
slotProduct: ImportedSlotProductDto;
|
|
3339
|
-
addonProducts: ImportedSlotProductDto[];
|
|
3340
|
-
totalPrice: string;
|
|
3226
|
+
type: ResourceNameTypeEnum;
|
|
3227
|
+
id: number;
|
|
3228
|
+
organizationId: number;
|
|
3229
|
+
startDate: string;
|
|
3230
|
+
endDate: string;
|
|
3231
|
+
sportId: number;
|
|
3341
3232
|
}
|
|
3342
|
-
export declare class
|
|
3343
|
-
|
|
3344
|
-
|
|
3345
|
-
description: string;
|
|
3346
|
-
totalPrice: string;
|
|
3347
|
-
downPayment: string;
|
|
3348
|
-
paid: string;
|
|
3349
|
-
invoiceId: string;
|
|
3350
|
-
slots?: ImportedSlotDto[];
|
|
3351
|
-
addons?: ImportedSlotProductDto[];
|
|
3233
|
+
export declare class ColumnNumericTransformer {
|
|
3234
|
+
to(data: number): number;
|
|
3235
|
+
from(data: string): number;
|
|
3352
3236
|
}
|
|
3237
|
+
export declare function convertToNumber(data: string): number;
|
|
3353
3238
|
export declare class GameSlots extends BondBaseEntity {
|
|
3354
3239
|
entityType: string;
|
|
3355
3240
|
entityId: number;
|
|
@@ -3368,12 +3253,6 @@ export declare class Matches extends BondBaseEntity {
|
|
|
3368
3253
|
status: number | null;
|
|
3369
3254
|
excludeStandings: boolean | null;
|
|
3370
3255
|
}
|
|
3371
|
-
export declare class SeasonRounds extends BondBaseEntity {
|
|
3372
|
-
seasonId: number;
|
|
3373
|
-
ordinal?: number;
|
|
3374
|
-
divisionId?: number;
|
|
3375
|
-
name: string;
|
|
3376
|
-
}
|
|
3377
3256
|
export declare class RoundEvents extends BaseEntity {
|
|
3378
3257
|
roundId: number;
|
|
3379
3258
|
eventId: number;
|
|
@@ -3381,6 +3260,12 @@ export declare class RoundEvents extends BaseEntity {
|
|
|
3381
3260
|
createdAt: Date;
|
|
3382
3261
|
updatedAt: Date;
|
|
3383
3262
|
}
|
|
3263
|
+
export declare class SeasonRounds extends BondBaseEntity {
|
|
3264
|
+
seasonId: number;
|
|
3265
|
+
ordinal?: number;
|
|
3266
|
+
divisionId?: number;
|
|
3267
|
+
name: string;
|
|
3268
|
+
}
|
|
3384
3269
|
export declare class TeamEvents extends BondBaseEntity {
|
|
3385
3270
|
teamId: number | null;
|
|
3386
3271
|
eventId: number | null;
|
|
@@ -3462,6 +3347,9 @@ export declare class OrganizationBranding extends OrganizationConnectionBaseEnti
|
|
|
3462
3347
|
version: number;
|
|
3463
3348
|
organization: Organization;
|
|
3464
3349
|
}
|
|
3350
|
+
export declare class OrganizationSettings extends OrganizationConnectionBaseEntity {
|
|
3351
|
+
mainAdminUserId?: number;
|
|
3352
|
+
}
|
|
3465
3353
|
export declare class OrganizationUsers extends BondBaseEntity {
|
|
3466
3354
|
organisationId: number | null;
|
|
3467
3355
|
userId: number | null;
|
|
@@ -3641,13 +3529,12 @@ export declare class LineItemDto {
|
|
|
3641
3529
|
unitTaxPrice?: number;
|
|
3642
3530
|
parentOrdinal?: number;
|
|
3643
3531
|
}
|
|
3644
|
-
export declare class
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
endTime?: string;
|
|
3532
|
+
export declare class MaintenanceDto {
|
|
3533
|
+
id?: number;
|
|
3534
|
+
title: string;
|
|
3535
|
+
durationValue: number;
|
|
3536
|
+
maintenanceDurationdurationType: DurationUnitTypesEnum;
|
|
3537
|
+
maintenanceTiming: MaintenanceTimingEnum;
|
|
3651
3538
|
}
|
|
3652
3539
|
export declare class OrderDto {
|
|
3653
3540
|
orderId?: string | null;
|
|
@@ -3690,12 +3577,13 @@ export declare class AddSlotsDto extends UpdateInvoiceDto {
|
|
|
3690
3577
|
export declare class AddSegmentsDto extends UpdateInvoiceDto {
|
|
3691
3578
|
segments: SegmentDto[];
|
|
3692
3579
|
}
|
|
3693
|
-
export declare class
|
|
3694
|
-
|
|
3695
|
-
|
|
3696
|
-
|
|
3697
|
-
|
|
3698
|
-
|
|
3580
|
+
export declare class PurchasedResourceDto {
|
|
3581
|
+
resourceId?: number;
|
|
3582
|
+
resourceType: ResourceNameTypeEnum;
|
|
3583
|
+
startDate?: string;
|
|
3584
|
+
startTime?: string;
|
|
3585
|
+
endDate?: string;
|
|
3586
|
+
endTime?: string;
|
|
3699
3587
|
}
|
|
3700
3588
|
export declare class ReservationDto {
|
|
3701
3589
|
id?: number;
|
|
@@ -3916,7 +3804,7 @@ export declare class SlotDto extends SlotDateTimeAndSpace {
|
|
|
3916
3804
|
maintenanceTiming?: MaintenanceTimingEnum;
|
|
3917
3805
|
durationValue?: number;
|
|
3918
3806
|
orderId?: number;
|
|
3919
|
-
paymentStatus:
|
|
3807
|
+
paymentStatus: ReservationPaymentStatusEnum;
|
|
3920
3808
|
approvalStatus: ReservationStatusEnum;
|
|
3921
3809
|
displayName?: string;
|
|
3922
3810
|
internalName?: string;
|
|
@@ -3965,11 +3853,23 @@ export declare class BookingV1Dto {
|
|
|
3965
3853
|
cashPayment: boolean;
|
|
3966
3854
|
requestOnly: boolean;
|
|
3967
3855
|
}
|
|
3968
|
-
export declare class
|
|
3969
|
-
|
|
3970
|
-
|
|
3971
|
-
|
|
3972
|
-
|
|
3856
|
+
export declare class Addon extends OrganizationConnectionBaseEntity {
|
|
3857
|
+
parentId: number;
|
|
3858
|
+
parentType: AddonParentTypeEnum;
|
|
3859
|
+
productId: number;
|
|
3860
|
+
product?: Product;
|
|
3861
|
+
quantity: number;
|
|
3862
|
+
unitPrice: number;
|
|
3863
|
+
totalPrice: number;
|
|
3864
|
+
approvalStatus: ReservationStatusEnum;
|
|
3865
|
+
paymentStatus: ReservationPaymentStatusEnum;
|
|
3866
|
+
level?: ProductPackageLevelEnum;
|
|
3867
|
+
resourceId?: number;
|
|
3868
|
+
resource?: Resource;
|
|
3869
|
+
orderId?: number;
|
|
3870
|
+
order?: Order;
|
|
3871
|
+
productUserId?: number;
|
|
3872
|
+
productUser?: ProductsUsers;
|
|
3973
3873
|
}
|
|
3974
3874
|
export declare class Reservation extends OrganizationConnectionBaseEntity {
|
|
3975
3875
|
name?: string;
|
|
@@ -4010,24 +3910,6 @@ export declare class Reservation extends OrganizationConnectionBaseEntity {
|
|
|
4010
3910
|
targetGlobalPrice?: number;
|
|
4011
3911
|
slots: Slot[];
|
|
4012
3912
|
}
|
|
4013
|
-
export declare class Addon extends OrganizationConnectionBaseEntity {
|
|
4014
|
-
parentId: number;
|
|
4015
|
-
parentType: AddonParentTypeEnum;
|
|
4016
|
-
productId: number;
|
|
4017
|
-
product?: Product;
|
|
4018
|
-
quantity: number;
|
|
4019
|
-
unitPrice: number;
|
|
4020
|
-
totalPrice: number;
|
|
4021
|
-
approvalStatus: ReservationStatusEnum;
|
|
4022
|
-
paymentStatus: ReservationPaymentStatusEnum;
|
|
4023
|
-
level?: ProductPackageLevelEnum;
|
|
4024
|
-
resourceId?: number;
|
|
4025
|
-
resource?: Resource;
|
|
4026
|
-
orderId?: number;
|
|
4027
|
-
order?: Order;
|
|
4028
|
-
productUserId?: number;
|
|
4029
|
-
productUser?: ProductsUsers;
|
|
4030
|
-
}
|
|
4031
3913
|
export declare class Segment extends OrganizationConnectionBaseEntity {
|
|
4032
3914
|
deletedAt?: Date;
|
|
4033
3915
|
reservationId: number;
|
|
@@ -4128,6 +4010,12 @@ export declare class Slot extends OrganizationConnectionBaseEntity {
|
|
|
4128
4010
|
changeLineItems?: LineItems[];
|
|
4129
4011
|
updatedLineItem?: LineItems;
|
|
4130
4012
|
}
|
|
4013
|
+
export declare class InvoicedSlots extends OrganizationConnectionBaseEntity {
|
|
4014
|
+
deletedAt?: Date;
|
|
4015
|
+
reservationId: number;
|
|
4016
|
+
invoiceId: number;
|
|
4017
|
+
slotId: number;
|
|
4018
|
+
}
|
|
4131
4019
|
export declare class ChangeRolePermissionsDto {
|
|
4132
4020
|
permissionIds: number[];
|
|
4133
4021
|
}
|
|
@@ -4151,9 +4039,139 @@ export declare class UserRole extends OrganizationConnectionBaseEntity {
|
|
|
4151
4039
|
role: Role;
|
|
4152
4040
|
user: User;
|
|
4153
4041
|
}
|
|
4042
|
+
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
4043
|
+
name?: string;
|
|
4044
|
+
genderStr?: string;
|
|
4045
|
+
parentID?: string;
|
|
4046
|
+
partnerID?: string;
|
|
4047
|
+
membershipName?: string;
|
|
4048
|
+
membershipExpDate?: string;
|
|
4049
|
+
membershipCreationDate?: string;
|
|
4050
|
+
bondMembershipID?: number;
|
|
4051
|
+
}
|
|
4052
|
+
export declare class AddFamilyDto {
|
|
4053
|
+
parents: AddImportedCustomerDto[];
|
|
4054
|
+
children: AddImportedCustomerDto[];
|
|
4055
|
+
}
|
|
4056
|
+
export declare enum ImportPaymentTypeEnum {
|
|
4057
|
+
CREDIT_CARD = "card",
|
|
4058
|
+
ACH = "ach",
|
|
4059
|
+
CASH = "cash",
|
|
4060
|
+
CHECK = "check",
|
|
4061
|
+
CARD_ON_TERMINAL = "card-on-terminal",
|
|
4062
|
+
OTHER = "other"
|
|
4063
|
+
}
|
|
4064
|
+
export declare class ImportedInvoiceLineDto {
|
|
4065
|
+
invoiceID?: string;
|
|
4066
|
+
description: string;
|
|
4067
|
+
createdDate: string;
|
|
4068
|
+
createdTime: string;
|
|
4069
|
+
quantity: string;
|
|
4070
|
+
price: string;
|
|
4071
|
+
total: string;
|
|
4072
|
+
customerID: string;
|
|
4073
|
+
resourceType: string;
|
|
4074
|
+
resourceID: string;
|
|
4075
|
+
}
|
|
4076
|
+
export declare class ImportedInvoiceDto {
|
|
4077
|
+
customerId?: string;
|
|
4078
|
+
total?: string;
|
|
4079
|
+
amountDue?: string;
|
|
4080
|
+
payments?: ImportedPaymentDto[];
|
|
4081
|
+
lines: any;
|
|
4082
|
+
}
|
|
4083
|
+
export declare class ImportedPaymentDto {
|
|
4084
|
+
invoiceID: string;
|
|
4085
|
+
type: ImportPaymentTypeEnum;
|
|
4086
|
+
description: string;
|
|
4087
|
+
paid: string;
|
|
4088
|
+
date: string;
|
|
4089
|
+
time: string;
|
|
4090
|
+
}
|
|
4091
|
+
export declare class ProductIdsDto {
|
|
4092
|
+
productIds?: number[];
|
|
4093
|
+
}
|
|
4094
|
+
export declare class ProductImportDto {
|
|
4095
|
+
product: Product;
|
|
4096
|
+
prices: Price[];
|
|
4097
|
+
resourceIds: number[];
|
|
4098
|
+
oldId: number;
|
|
4099
|
+
}
|
|
4100
|
+
export declare class PunchPassDto {
|
|
4101
|
+
CustomerID: string;
|
|
4102
|
+
QuantityLeft: number;
|
|
4103
|
+
BondProgramID: number;
|
|
4104
|
+
BondSessionID: number;
|
|
4105
|
+
ProductID: number;
|
|
4106
|
+
}
|
|
4107
|
+
export declare class ImportedSlotProductDto {
|
|
4108
|
+
slotID?: string;
|
|
4109
|
+
name?: string;
|
|
4110
|
+
pricingType?: 'Hourly' | 'Flat';
|
|
4111
|
+
appliesTo?: 'slot' | 'addon' | 'reservation';
|
|
4112
|
+
price?: string;
|
|
4113
|
+
minutes?: string;
|
|
4114
|
+
quantity: string;
|
|
4115
|
+
startDate?: string;
|
|
4116
|
+
startTime?: string;
|
|
4117
|
+
endDate?: string;
|
|
4118
|
+
endTime?: string;
|
|
4119
|
+
bondProductId?: number;
|
|
4120
|
+
}
|
|
4121
|
+
export declare class ImportResourceMappingDto {
|
|
4122
|
+
bondResourceID?: string;
|
|
4123
|
+
resourceName?: string;
|
|
4124
|
+
}
|
|
4125
|
+
export declare class ImportProductMappingDto {
|
|
4126
|
+
productID?: string;
|
|
4127
|
+
productName?: string;
|
|
4128
|
+
}
|
|
4129
|
+
export declare class ImportedSlotDto {
|
|
4130
|
+
reservationID: string;
|
|
4131
|
+
bondResourceID: string;
|
|
4132
|
+
resourceName: string;
|
|
4133
|
+
subResourceName: string;
|
|
4134
|
+
startDate: string;
|
|
4135
|
+
startTime: string;
|
|
4136
|
+
endDate: string;
|
|
4137
|
+
endTime: string;
|
|
4138
|
+
sportId?: string;
|
|
4139
|
+
setupDuration: string;
|
|
4140
|
+
setupIncludeInCosts: string;
|
|
4141
|
+
takedownDuration: string;
|
|
4142
|
+
takedownIncludeInCosts: string;
|
|
4143
|
+
slotProduct: ImportedSlotProductDto;
|
|
4144
|
+
addonProducts: ImportedSlotProductDto[];
|
|
4145
|
+
totalPrice: string;
|
|
4146
|
+
}
|
|
4147
|
+
export declare class ImportedReservationDto {
|
|
4148
|
+
name: string;
|
|
4149
|
+
customerId: string;
|
|
4150
|
+
description: string;
|
|
4151
|
+
totalPrice: string;
|
|
4152
|
+
downPayment: string;
|
|
4153
|
+
paid: string;
|
|
4154
|
+
invoiceId: string;
|
|
4155
|
+
slots?: ImportedSlotDto[];
|
|
4156
|
+
addons?: ImportedSlotProductDto[];
|
|
4157
|
+
}
|
|
4154
4158
|
export declare class CloseShiftDto {
|
|
4155
4159
|
closingCashAmount: number;
|
|
4156
4160
|
}
|
|
4161
|
+
export declare class FindShiftsByIdsDto {
|
|
4162
|
+
shiftIds: number[];
|
|
4163
|
+
}
|
|
4164
|
+
export declare class ShiftManagementClosingAmount {
|
|
4165
|
+
shiftId: number;
|
|
4166
|
+
managementClosingCashAmount: number;
|
|
4167
|
+
}
|
|
4168
|
+
export declare class ManagementClosingOfShiftsDto {
|
|
4169
|
+
managementClosingData: ShiftManagementClosingAmount[];
|
|
4170
|
+
}
|
|
4171
|
+
export declare class OpenShiftDto {
|
|
4172
|
+
openingCashAmount: number;
|
|
4173
|
+
stationId: number;
|
|
4174
|
+
}
|
|
4157
4175
|
export declare class FindShiftsFiltersDto {
|
|
4158
4176
|
statuses?: string;
|
|
4159
4177
|
stationIds?: string;
|
|
@@ -4174,17 +4192,6 @@ export declare class FindShiftsFormattedFilters {
|
|
|
4174
4192
|
startDate?: Date;
|
|
4175
4193
|
endDate?: Date;
|
|
4176
4194
|
}
|
|
4177
|
-
export declare class ShiftManagementClosingAmount {
|
|
4178
|
-
shiftId: number;
|
|
4179
|
-
managementClosingCashAmount: number;
|
|
4180
|
-
}
|
|
4181
|
-
export declare class ManagementClosingOfShiftsDto {
|
|
4182
|
-
managementClosingData: ShiftManagementClosingAmount[];
|
|
4183
|
-
}
|
|
4184
|
-
export declare class OpenShiftDto {
|
|
4185
|
-
openingCashAmount: number;
|
|
4186
|
-
stationId: number;
|
|
4187
|
-
}
|
|
4188
4195
|
export declare class Shift extends OrganizationConnectionBaseEntity {
|
|
4189
4196
|
stationId: number;
|
|
4190
4197
|
station?: Station;
|
|
@@ -4214,9 +4221,3 @@ export declare class Shift extends OrganizationConnectionBaseEntity {
|
|
|
4214
4221
|
closingManager?: User;
|
|
4215
4222
|
reconcilingUser?: User;
|
|
4216
4223
|
}
|
|
4217
|
-
export declare class FindShiftsByIdsDto {
|
|
4218
|
-
shiftIds: number[];
|
|
4219
|
-
}
|
|
4220
|
-
export declare class OrganizationSettings extends OrganizationConnectionBaseEntity {
|
|
4221
|
-
mainAdminUserId?: number;
|
|
4222
|
-
}
|