@bondsports/types 0.0.39 → 0.0.42
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 +323 -322
- package/build/index.es.js.map +1 -1
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -9,6 +9,13 @@ export declare class BasicActivityTimesDto {
|
|
|
9
9
|
availabilityStartDate?: string;
|
|
10
10
|
availabilityEndDate?: string;
|
|
11
11
|
}
|
|
12
|
+
export declare class FindBookingTypeSettingDto {
|
|
13
|
+
organizationId: number;
|
|
14
|
+
facilityId: number;
|
|
15
|
+
spaceId: number;
|
|
16
|
+
bookingDate: string;
|
|
17
|
+
bookingTime: string;
|
|
18
|
+
}
|
|
12
19
|
export declare class QuestionAnswersDto {
|
|
13
20
|
questionId: number;
|
|
14
21
|
value: any;
|
|
@@ -20,12 +27,63 @@ export declare class UserAnswersDto {
|
|
|
20
27
|
export declare class GetByQuestionnaireIdsDto {
|
|
21
28
|
questionnaireIds: string;
|
|
22
29
|
}
|
|
23
|
-
export declare class
|
|
24
|
-
|
|
30
|
+
export declare class FindByMembershipIdDto extends ByOrganizationIdDto {
|
|
31
|
+
membershipId: number;
|
|
32
|
+
}
|
|
33
|
+
export declare class ImportProductsFromDB {
|
|
34
|
+
buDate: string;
|
|
35
|
+
}
|
|
36
|
+
export declare class ImportCustomerFromCSV {
|
|
37
|
+
fileName: string;
|
|
38
|
+
startIndex?: number;
|
|
39
|
+
}
|
|
40
|
+
export declare class ImportProgramsFileDto extends ImportCustomerFromCSV {
|
|
41
|
+
resolveInvoices: string;
|
|
42
|
+
}
|
|
43
|
+
export declare class ImportDashCustomerDto extends ImportCustomerFromCSV {
|
|
44
|
+
membershipId: number;
|
|
45
|
+
onlyDashIds: string;
|
|
46
|
+
}
|
|
47
|
+
export declare class ImportRentalsFromCSV extends ImportCustomerFromCSV {
|
|
25
48
|
facilityId: number;
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
49
|
+
}
|
|
50
|
+
export declare class ByOrganizationIdCustomerIdDto extends ByOrganizationIdDto {
|
|
51
|
+
customerId: number;
|
|
52
|
+
}
|
|
53
|
+
export declare class FindCustomersByOrganizationIdFiltersDto extends PaginationQuery {
|
|
54
|
+
nameSearch?: string;
|
|
55
|
+
fuzzy?: string;
|
|
56
|
+
customerType?: CustomerTypeEnum;
|
|
57
|
+
customersIds?: string;
|
|
58
|
+
}
|
|
59
|
+
export declare class AddCustomerNotesDto {
|
|
60
|
+
customerNotes: CustomerNoteDto[];
|
|
61
|
+
}
|
|
62
|
+
export declare class CustomerNoteDto {
|
|
63
|
+
id?: number;
|
|
64
|
+
description: string;
|
|
65
|
+
pinToTop?: boolean;
|
|
66
|
+
}
|
|
67
|
+
export declare class AddEditCustomerDto {
|
|
68
|
+
firstName?: string;
|
|
69
|
+
lastName?: string;
|
|
70
|
+
entityId?: number;
|
|
71
|
+
entityType?: CustomerTypeEnum;
|
|
72
|
+
email?: string;
|
|
73
|
+
color?: string;
|
|
74
|
+
street?: string;
|
|
75
|
+
city?: string;
|
|
76
|
+
state?: string;
|
|
77
|
+
zip?: string;
|
|
78
|
+
phoneNumber?: string;
|
|
79
|
+
mainMediaId?: number;
|
|
80
|
+
creatorId?: number;
|
|
81
|
+
creatorType?: ResourceNameTypeEnum;
|
|
82
|
+
userCreatorId?: number;
|
|
83
|
+
gender?: GenderEnum;
|
|
84
|
+
birthDate?: string;
|
|
85
|
+
emergencyContactName?: string;
|
|
86
|
+
emergencyContactPhone?: string;
|
|
29
87
|
}
|
|
30
88
|
export declare class FindEventByIdDto {
|
|
31
89
|
eventId: number;
|
|
@@ -171,6 +229,18 @@ export declare class UpdateFacilityAmenitiesDto {
|
|
|
171
229
|
export declare class FindFacilitiesOptionsDto extends PaginationQuery {
|
|
172
230
|
nameSearch?: string;
|
|
173
231
|
}
|
|
232
|
+
export declare class FindOneParams {
|
|
233
|
+
id: number;
|
|
234
|
+
}
|
|
235
|
+
export declare class PaginationQuery {
|
|
236
|
+
page: number;
|
|
237
|
+
itemsPerPage: number;
|
|
238
|
+
}
|
|
239
|
+
export declare class PaginationRangeQuery {
|
|
240
|
+
startPage: number;
|
|
241
|
+
endPage: number;
|
|
242
|
+
itemsPerPage: number;
|
|
243
|
+
}
|
|
174
244
|
export declare class FindFamilyAccountsDto {
|
|
175
245
|
userId: number;
|
|
176
246
|
}
|
|
@@ -203,18 +273,6 @@ export declare class RemoveUserFromFamilyAccountDto {
|
|
|
203
273
|
userId: number;
|
|
204
274
|
familyAccountId: number;
|
|
205
275
|
}
|
|
206
|
-
export declare class FindOneParams {
|
|
207
|
-
id: number;
|
|
208
|
-
}
|
|
209
|
-
export declare class PaginationQuery {
|
|
210
|
-
page: number;
|
|
211
|
-
itemsPerPage: number;
|
|
212
|
-
}
|
|
213
|
-
export declare class PaginationRangeQuery {
|
|
214
|
-
startPage: number;
|
|
215
|
-
endPage: number;
|
|
216
|
-
itemsPerPage: number;
|
|
217
|
-
}
|
|
218
276
|
export declare class FindGlCodeByOrganizationIdDto {
|
|
219
277
|
organizationId: number;
|
|
220
278
|
}
|
|
@@ -225,6 +283,62 @@ export declare class GetGlCodeDto {
|
|
|
225
283
|
createdAt: Date;
|
|
226
284
|
updatedAt: Date;
|
|
227
285
|
}
|
|
286
|
+
export declare class CreateMembershipDto {
|
|
287
|
+
organizationId: number;
|
|
288
|
+
name: string;
|
|
289
|
+
description?: string;
|
|
290
|
+
customerTypes: CustomerInMembershipTypeEnum[];
|
|
291
|
+
activity: SportsEnum;
|
|
292
|
+
facilityId: number;
|
|
293
|
+
questionnaires: number[];
|
|
294
|
+
minAgeYears: number;
|
|
295
|
+
maxAgeYears: number;
|
|
296
|
+
gender: GenderEnum;
|
|
297
|
+
maxMembers?: number;
|
|
298
|
+
maxMaleMembers?: number;
|
|
299
|
+
maxFemaleMembers?: number;
|
|
300
|
+
startDate: string;
|
|
301
|
+
endDate: string;
|
|
302
|
+
registrationStartDate?: Date;
|
|
303
|
+
registrationEndDate?: Date;
|
|
304
|
+
membershipType: MembershipTypeEnum;
|
|
305
|
+
durationMonths: number;
|
|
306
|
+
longDescription?: string;
|
|
307
|
+
isAutoRenew?: boolean;
|
|
308
|
+
}
|
|
309
|
+
export declare class UpdateMembrshipDto extends CreateMembershipDto {
|
|
310
|
+
id: number;
|
|
311
|
+
}
|
|
312
|
+
export declare class UpdateMembershipMediaDto {
|
|
313
|
+
membershipId: number;
|
|
314
|
+
mediaId: number;
|
|
315
|
+
}
|
|
316
|
+
export declare class FindMembershipByIdDto {
|
|
317
|
+
membershipId: number;
|
|
318
|
+
}
|
|
319
|
+
export declare class FindMembershipsByOrganizationIdDto {
|
|
320
|
+
organizationId: number;
|
|
321
|
+
}
|
|
322
|
+
export declare class FindMembershipsByUserIdDto {
|
|
323
|
+
userId: number;
|
|
324
|
+
}
|
|
325
|
+
export declare class SetMembersStartDateByOrganization extends FindMembershipsByOrganizationIdDto {
|
|
326
|
+
startDate: string;
|
|
327
|
+
}
|
|
328
|
+
export declare class MembershipIdsDto {
|
|
329
|
+
membershipIds?: number[];
|
|
330
|
+
}
|
|
331
|
+
export declare class MemberIdDto {
|
|
332
|
+
memberId?: number;
|
|
333
|
+
}
|
|
334
|
+
export declare class FindMembersOptionsDto extends PaginationQuery {
|
|
335
|
+
nameEmailSearch?: string;
|
|
336
|
+
pastMemberships?: string;
|
|
337
|
+
}
|
|
338
|
+
export declare class CancelMembershipDto {
|
|
339
|
+
isImmediatelyCancel: boolean;
|
|
340
|
+
cancellationReason?: string;
|
|
341
|
+
}
|
|
228
342
|
export declare class FindByProgramSeasonIdDto {
|
|
229
343
|
seasonId: number;
|
|
230
344
|
}
|
|
@@ -298,119 +412,65 @@ export declare class MoveTeamOrMemberDto implements IMoveSeason {
|
|
|
298
412
|
export declare class MoveTeamOrMembersByCsvDTO {
|
|
299
413
|
fileName: string;
|
|
300
414
|
}
|
|
301
|
-
export declare class
|
|
415
|
+
export declare class CreateEntitlementTermsDto {
|
|
302
416
|
organizationId: number;
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
customerTypes: CustomerInMembershipTypeEnum[];
|
|
306
|
-
activity: SportsEnum;
|
|
307
|
-
facilityId: number;
|
|
308
|
-
questionnaires: number[];
|
|
309
|
-
minAgeYears: number;
|
|
310
|
-
maxAgeYears: number;
|
|
311
|
-
gender: GenderEnum;
|
|
312
|
-
maxMembers?: number;
|
|
313
|
-
maxMaleMembers?: number;
|
|
314
|
-
maxFemaleMembers?: number;
|
|
315
|
-
startDate: string;
|
|
316
|
-
endDate: string;
|
|
317
|
-
registrationStartDate?: Date;
|
|
318
|
-
registrationEndDate?: Date;
|
|
319
|
-
membershipType: MembershipTypeEnum;
|
|
320
|
-
durationMonths: number;
|
|
321
|
-
longDescription?: string;
|
|
322
|
-
isAutoRenew?: boolean;
|
|
323
|
-
}
|
|
324
|
-
export declare class UpdateMembrshipDto extends CreateMembershipDto {
|
|
325
|
-
id: number;
|
|
417
|
+
entitlementGroupId: number;
|
|
418
|
+
terms: IEntitlementTerms[];
|
|
326
419
|
}
|
|
327
|
-
export declare class
|
|
328
|
-
|
|
329
|
-
mediaId: number;
|
|
420
|
+
export declare class FindEntitlementTermsByGroupIdDto {
|
|
421
|
+
entitlementGroupId: number;
|
|
330
422
|
}
|
|
331
|
-
export declare class
|
|
332
|
-
|
|
423
|
+
export declare class FindEntitlementTermsByVariablesDto {
|
|
424
|
+
user: any;
|
|
425
|
+
userVariables: IQuestionAnswerObject[];
|
|
333
426
|
}
|
|
334
|
-
export declare class
|
|
427
|
+
export declare class FindLowestPriceDto {
|
|
335
428
|
organizationId: number;
|
|
429
|
+
user?: any;
|
|
430
|
+
answers?: IQuestionAnswerObject[];
|
|
431
|
+
itemIds: number[];
|
|
432
|
+
itemType?: ResourceNameTypeEnum;
|
|
433
|
+
startDate?: Date;
|
|
336
434
|
}
|
|
337
|
-
export declare class
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
export declare class SetMembersStartDateByOrganization extends FindMembershipsByOrganizationIdDto {
|
|
341
|
-
startDate: string;
|
|
342
|
-
}
|
|
343
|
-
export declare class MembershipIdsDto {
|
|
344
|
-
membershipIds?: number[];
|
|
345
|
-
}
|
|
346
|
-
export declare class MemberIdDto {
|
|
347
|
-
memberId?: number;
|
|
348
|
-
}
|
|
349
|
-
export declare class FindMembersOptionsDto extends PaginationQuery {
|
|
350
|
-
nameEmailSearch?: string;
|
|
351
|
-
pastMemberships?: string;
|
|
352
|
-
}
|
|
353
|
-
export declare class CancelMembershipDto {
|
|
354
|
-
isImmediatelyCancel: boolean;
|
|
355
|
-
cancellationReason?: string;
|
|
356
|
-
}
|
|
357
|
-
export declare class FindByMembershipIdDto extends ByOrganizationIdDto {
|
|
358
|
-
membershipId: number;
|
|
359
|
-
}
|
|
360
|
-
export declare class ImportProductsFromDB {
|
|
361
|
-
buDate: string;
|
|
362
|
-
}
|
|
363
|
-
export declare class ImportCustomerFromCSV {
|
|
364
|
-
fileName: string;
|
|
365
|
-
startIndex?: number;
|
|
366
|
-
}
|
|
367
|
-
export declare class ImportProgramsFileDto extends ImportCustomerFromCSV {
|
|
368
|
-
resolveInvoices: string;
|
|
435
|
+
export declare class FindGroupItemsPricingsDto {
|
|
436
|
+
groupsIds: number[];
|
|
437
|
+
itemsIds: number[];
|
|
369
438
|
}
|
|
370
|
-
export declare class
|
|
371
|
-
|
|
372
|
-
onlyDashIds: string;
|
|
439
|
+
export declare class CreateEntitlementGroupDto {
|
|
440
|
+
name: string;
|
|
373
441
|
}
|
|
374
|
-
export declare class
|
|
375
|
-
|
|
442
|
+
export declare class GetEntitlementGroupPricingDto {
|
|
443
|
+
itemIds: number[];
|
|
444
|
+
itemType: string;
|
|
376
445
|
}
|
|
377
|
-
export declare class
|
|
378
|
-
|
|
446
|
+
export declare class FindEntitlementGroupByIdDto {
|
|
447
|
+
groupid: number;
|
|
379
448
|
}
|
|
380
|
-
export declare class
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
449
|
+
export declare class CreateGroupPricingWithProduct {
|
|
450
|
+
groupId: number;
|
|
451
|
+
price: number;
|
|
452
|
+
startDate?: Date;
|
|
453
|
+
endDate?: Date;
|
|
454
|
+
discountValue?: number;
|
|
455
|
+
discountMethod?: DiscountMethodsEnum;
|
|
385
456
|
}
|
|
386
|
-
export declare class
|
|
387
|
-
|
|
457
|
+
export declare class CreateUpdateVariantsDto {
|
|
458
|
+
organizationId: number;
|
|
459
|
+
parentProductId: number;
|
|
460
|
+
variantTitles: VariantTitleDto[];
|
|
461
|
+
variants: VariantDto[];
|
|
388
462
|
}
|
|
389
|
-
export declare class
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
pinToTop?: boolean;
|
|
463
|
+
export declare class VariantTitleDto {
|
|
464
|
+
titleName: string;
|
|
465
|
+
titleId: number;
|
|
393
466
|
}
|
|
394
|
-
export declare class
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
street?: string;
|
|
402
|
-
city?: string;
|
|
403
|
-
state?: string;
|
|
404
|
-
zip?: string;
|
|
405
|
-
phoneNumber?: string;
|
|
406
|
-
mainMediaId?: number;
|
|
407
|
-
creatorId?: number;
|
|
408
|
-
creatorType?: ResourceNameTypeEnum;
|
|
409
|
-
userCreatorId?: number;
|
|
410
|
-
gender?: GenderEnum;
|
|
411
|
-
birthDate?: string;
|
|
412
|
-
emergencyContactName?: string;
|
|
413
|
-
emergencyContactPhone?: string;
|
|
467
|
+
export declare class VariantDto {
|
|
468
|
+
name: string;
|
|
469
|
+
price: number;
|
|
470
|
+
variantId: number;
|
|
471
|
+
currency: CurrencyEnum;
|
|
472
|
+
startDate: Date;
|
|
473
|
+
endDate: Date;
|
|
414
474
|
}
|
|
415
475
|
export declare class FindByProductIdDto {
|
|
416
476
|
productId: number;
|
|
@@ -632,48 +692,6 @@ export declare class createResourceDto {
|
|
|
632
692
|
export declare class archiveDto {
|
|
633
693
|
isArchive: boolean;
|
|
634
694
|
}
|
|
635
|
-
export declare class CreateEntitlementTermsDto {
|
|
636
|
-
organizationId: number;
|
|
637
|
-
entitlementGroupId: number;
|
|
638
|
-
terms: IEntitlementTerms[];
|
|
639
|
-
}
|
|
640
|
-
export declare class FindEntitlementTermsByGroupIdDto {
|
|
641
|
-
entitlementGroupId: number;
|
|
642
|
-
}
|
|
643
|
-
export declare class FindEntitlementTermsByVariablesDto {
|
|
644
|
-
user: any;
|
|
645
|
-
userVariables: IQuestionAnswerObject[];
|
|
646
|
-
}
|
|
647
|
-
export declare class FindLowestPriceDto {
|
|
648
|
-
organizationId: number;
|
|
649
|
-
user?: any;
|
|
650
|
-
answers?: IQuestionAnswerObject[];
|
|
651
|
-
itemIds: number[];
|
|
652
|
-
itemType?: ResourceNameTypeEnum;
|
|
653
|
-
startDate?: Date;
|
|
654
|
-
}
|
|
655
|
-
export declare class FindGroupItemsPricingsDto {
|
|
656
|
-
groupsIds: number[];
|
|
657
|
-
itemsIds: number[];
|
|
658
|
-
}
|
|
659
|
-
export declare class CreateEntitlementGroupDto {
|
|
660
|
-
name: string;
|
|
661
|
-
}
|
|
662
|
-
export declare class GetEntitlementGroupPricingDto {
|
|
663
|
-
itemIds: number[];
|
|
664
|
-
itemType: string;
|
|
665
|
-
}
|
|
666
|
-
export declare class FindEntitlementGroupByIdDto {
|
|
667
|
-
groupid: number;
|
|
668
|
-
}
|
|
669
|
-
export declare class CreateGroupPricingWithProduct {
|
|
670
|
-
groupId: number;
|
|
671
|
-
price: number;
|
|
672
|
-
startDate?: Date;
|
|
673
|
-
endDate?: Date;
|
|
674
|
-
discountValue?: number;
|
|
675
|
-
discountMethod?: DiscountMethodsEnum;
|
|
676
|
-
}
|
|
677
695
|
export declare class FindProgramSeasonsByProgramIdDto {
|
|
678
696
|
programId: number;
|
|
679
697
|
}
|
|
@@ -858,24 +876,6 @@ export declare class MoveParticipantDto {
|
|
|
858
876
|
resourceId: number;
|
|
859
877
|
orderId: number;
|
|
860
878
|
}
|
|
861
|
-
export declare class CreateUpdateVariantsDto {
|
|
862
|
-
organizationId: number;
|
|
863
|
-
parentProductId: number;
|
|
864
|
-
variantTitles: VariantTitleDto[];
|
|
865
|
-
variants: VariantDto[];
|
|
866
|
-
}
|
|
867
|
-
export declare class VariantTitleDto {
|
|
868
|
-
titleName: string;
|
|
869
|
-
titleId: number;
|
|
870
|
-
}
|
|
871
|
-
export declare class VariantDto {
|
|
872
|
-
name: string;
|
|
873
|
-
price: number;
|
|
874
|
-
variantId: number;
|
|
875
|
-
currency: CurrencyEnum;
|
|
876
|
-
startDate: Date;
|
|
877
|
-
endDate: Date;
|
|
878
|
-
}
|
|
879
879
|
export declare class FindProgramsByOrganizationIdDto {
|
|
880
880
|
organizationId: number;
|
|
881
881
|
programType?: ProgramTypesEnum;
|
|
@@ -920,6 +920,14 @@ export declare class ProgramHighlightDto {
|
|
|
920
920
|
type: ProgramHighlightTypeEnum;
|
|
921
921
|
title: string;
|
|
922
922
|
}
|
|
923
|
+
export declare class CreateResourceGroupDto {
|
|
924
|
+
name: string;
|
|
925
|
+
parentSlotId: number;
|
|
926
|
+
facilityId: number;
|
|
927
|
+
childrenSlotIds: number[];
|
|
928
|
+
}
|
|
929
|
+
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
930
|
+
}
|
|
923
931
|
export declare class PurchasePaymentDto {
|
|
924
932
|
token: string;
|
|
925
933
|
type: PaymentMethodTypeEnum;
|
|
@@ -990,13 +998,16 @@ export declare class PartialPaymentAsUserDto {
|
|
|
990
998
|
amountToPay: any;
|
|
991
999
|
paymentMethodData: any;
|
|
992
1000
|
}
|
|
993
|
-
export declare class
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
facilityId: number;
|
|
997
|
-
childrenSlotIds: number[];
|
|
1001
|
+
export declare class ResourceDto {
|
|
1002
|
+
type: ResourceNameTypeEnum;
|
|
1003
|
+
id: number;
|
|
998
1004
|
}
|
|
999
|
-
export declare class
|
|
1005
|
+
export declare class StripeCustomerIdDto {
|
|
1006
|
+
userId: number;
|
|
1007
|
+
}
|
|
1008
|
+
export declare class AddACHTokenToCustomerDto {
|
|
1009
|
+
publicToken: string;
|
|
1010
|
+
accountId: string;
|
|
1000
1011
|
}
|
|
1001
1012
|
export declare class SpaceByIdDto {
|
|
1002
1013
|
spaceId: number;
|
|
@@ -1050,20 +1061,18 @@ export declare class FacilitySlotsScheduleQueryParams {
|
|
|
1050
1061
|
}
|
|
1051
1062
|
export declare class FindResourcesOptionsDto extends PaginationQuery {
|
|
1052
1063
|
nameSearch?: string;
|
|
1053
|
-
facilitiesIds?: string;
|
|
1054
|
-
types?: string;
|
|
1055
|
-
resourcesIds?: string;
|
|
1056
|
-
}
|
|
1057
|
-
export declare class ResourceDto {
|
|
1058
|
-
type: ResourceNameTypeEnum;
|
|
1059
|
-
id: number;
|
|
1064
|
+
facilitiesIds?: string;
|
|
1065
|
+
types?: string;
|
|
1066
|
+
resourcesIds?: string;
|
|
1060
1067
|
}
|
|
1061
|
-
export declare class
|
|
1068
|
+
export declare class FindByUserIdDto {
|
|
1062
1069
|
userId: number;
|
|
1063
1070
|
}
|
|
1064
|
-
export declare class
|
|
1065
|
-
|
|
1066
|
-
|
|
1071
|
+
export declare class FindByFamilyAccountIdDto {
|
|
1072
|
+
familyAccountId?: number;
|
|
1073
|
+
}
|
|
1074
|
+
export declare class FindByUserAndOrganizationDto extends FindByUserIdDto {
|
|
1075
|
+
organizationId: number;
|
|
1067
1076
|
}
|
|
1068
1077
|
export declare class ActivityLogRecord extends BondBaseEntity {
|
|
1069
1078
|
entityType: ResourceNameTypeEnum;
|
|
@@ -1078,15 +1087,6 @@ export declare class ActivityLogRecord extends BondBaseEntity {
|
|
|
1078
1087
|
oldValue?: any;
|
|
1079
1088
|
newValue?: any;
|
|
1080
1089
|
}
|
|
1081
|
-
export declare class FindByUserIdDto {
|
|
1082
|
-
userId: number;
|
|
1083
|
-
}
|
|
1084
|
-
export declare class FindByFamilyAccountIdDto {
|
|
1085
|
-
familyAccountId?: number;
|
|
1086
|
-
}
|
|
1087
|
-
export declare class FindByUserAndOrganizationDto extends FindByUserIdDto {
|
|
1088
|
-
organizationId: number;
|
|
1089
|
-
}
|
|
1090
1090
|
export declare class ActivityTimes extends BondBaseEntity {
|
|
1091
1091
|
parentType: ResourceNameTypeEnum | ProductTypesEnum;
|
|
1092
1092
|
parentId: number;
|
|
@@ -1130,16 +1130,16 @@ export declare class AnswerTitle extends OrganizationConnectionBaseEntity {
|
|
|
1130
1130
|
answers: Answer[];
|
|
1131
1131
|
questionnaire: Questionnaires;
|
|
1132
1132
|
}
|
|
1133
|
-
export declare class Athlete extends BondBaseEntity {
|
|
1134
|
-
userId: number | null;
|
|
1135
|
-
metadata: object | null;
|
|
1136
|
-
athleteSports: AthleteSports[];
|
|
1137
|
-
}
|
|
1138
1133
|
export declare class AthleteSports extends BondBaseEntity {
|
|
1139
1134
|
athleteId: number | null;
|
|
1140
1135
|
sports: number | null;
|
|
1141
1136
|
levelOfPlay: LevelOfPlayEnum | null;
|
|
1142
1137
|
}
|
|
1138
|
+
export declare class Athlete extends BondBaseEntity {
|
|
1139
|
+
userId: number | null;
|
|
1140
|
+
metadata: object | null;
|
|
1141
|
+
athleteSports: AthleteSports[];
|
|
1142
|
+
}
|
|
1143
1143
|
export declare class BlockedDate extends BondBaseEntity {
|
|
1144
1144
|
entityType: ResourceNameTypeEnum;
|
|
1145
1145
|
entityId: number;
|
|
@@ -1206,6 +1206,18 @@ export declare class CreditNote extends OrganizationConnectionBaseEntity {
|
|
|
1206
1206
|
orderId: number;
|
|
1207
1207
|
creditPaymentInvoiceId: number;
|
|
1208
1208
|
}
|
|
1209
|
+
export declare class CustomerCreditTransaction extends OrganizationConnectionBaseEntity {
|
|
1210
|
+
customerId: number;
|
|
1211
|
+
userId: number;
|
|
1212
|
+
amount: number;
|
|
1213
|
+
invoiceId?: number;
|
|
1214
|
+
orderId?: number;
|
|
1215
|
+
description?: string;
|
|
1216
|
+
deletedAt?: Date;
|
|
1217
|
+
customer: Customer;
|
|
1218
|
+
order: Order;
|
|
1219
|
+
invoice: Invoice;
|
|
1220
|
+
}
|
|
1209
1221
|
export declare class Customer extends OrganizationConnectionBaseEntity {
|
|
1210
1222
|
name: string | null;
|
|
1211
1223
|
entityId: number | null;
|
|
@@ -1234,18 +1246,6 @@ export declare class Customer extends OrganizationConnectionBaseEntity {
|
|
|
1234
1246
|
mainMedia: Media;
|
|
1235
1247
|
reservations?: Reservation[];
|
|
1236
1248
|
}
|
|
1237
|
-
export declare class CustomerCreditTransaction extends OrganizationConnectionBaseEntity {
|
|
1238
|
-
customerId: number;
|
|
1239
|
-
userId: number;
|
|
1240
|
-
amount: number;
|
|
1241
|
-
invoiceId?: number;
|
|
1242
|
-
orderId?: number;
|
|
1243
|
-
description?: string;
|
|
1244
|
-
deletedAt?: Date;
|
|
1245
|
-
customer: Customer;
|
|
1246
|
-
order: Order;
|
|
1247
|
-
invoice: Invoice;
|
|
1248
|
-
}
|
|
1249
1249
|
export declare class CustomerNote extends OrganizationConnectionBaseEntity {
|
|
1250
1250
|
customerId?: number;
|
|
1251
1251
|
description: string;
|
|
@@ -1260,15 +1260,15 @@ export declare class Division extends BondBaseEntity {
|
|
|
1260
1260
|
isDefault: boolean;
|
|
1261
1261
|
groups: Group[];
|
|
1262
1262
|
}
|
|
1263
|
-
export declare class EntitlementGroup extends OrganizationConnectionBaseEntity {
|
|
1264
|
-
name: string | null;
|
|
1265
|
-
}
|
|
1266
1263
|
export declare class EmergencyContact extends OrganizationConnectionBaseEntity {
|
|
1267
1264
|
customerId: number;
|
|
1268
1265
|
name: string | null;
|
|
1269
1266
|
phoneNumber: string | null;
|
|
1270
1267
|
customer: Customer;
|
|
1271
1268
|
}
|
|
1269
|
+
export declare class EntitlementGroup extends OrganizationConnectionBaseEntity {
|
|
1270
|
+
name: string | null;
|
|
1271
|
+
}
|
|
1272
1272
|
export declare class EntitlementTerms extends OrganizationConnectionBaseEntity {
|
|
1273
1273
|
groupId: number;
|
|
1274
1274
|
terms: IEntitlementTerms[];
|
|
@@ -1375,6 +1375,9 @@ export declare class FamilyAccount extends BondBaseEntity {
|
|
|
1375
1375
|
name: string | null;
|
|
1376
1376
|
userInFamilyAccounts: UserInFamilyAccount[];
|
|
1377
1377
|
}
|
|
1378
|
+
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1379
|
+
code: string;
|
|
1380
|
+
}
|
|
1378
1381
|
export declare class FutureInstallment extends OrganizationConnectionBaseEntity {
|
|
1379
1382
|
userId: number;
|
|
1380
1383
|
orderId: number;
|
|
@@ -1385,9 +1388,6 @@ export declare class FutureInstallment extends OrganizationConnectionBaseEntity
|
|
|
1385
1388
|
plannedDate: Date;
|
|
1386
1389
|
chargedAt?: Date;
|
|
1387
1390
|
}
|
|
1388
|
-
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1389
|
-
code: string;
|
|
1390
|
-
}
|
|
1391
1391
|
export declare class Group extends BondBaseEntity {
|
|
1392
1392
|
name: string;
|
|
1393
1393
|
description?: string;
|
|
@@ -1455,6 +1455,7 @@ export declare class InvoiceMails extends OrganizationConnectionBaseEntity {
|
|
|
1455
1455
|
templateId: string;
|
|
1456
1456
|
userId: number;
|
|
1457
1457
|
invoiceId: number;
|
|
1458
|
+
paymentId: number;
|
|
1458
1459
|
sendingUserId: number;
|
|
1459
1460
|
mailParams?: any;
|
|
1460
1461
|
memo?: string;
|
|
@@ -1776,22 +1777,6 @@ export declare class PaymentPlanSchedule extends OrganizationConnectionBaseEntit
|
|
|
1776
1777
|
deletedAt?: Date;
|
|
1777
1778
|
paymentPlan: ProductPaymentPlan;
|
|
1778
1779
|
}
|
|
1779
|
-
export declare class Price extends OrganizationConnectionBaseEntity {
|
|
1780
|
-
productId: number;
|
|
1781
|
-
product: Product;
|
|
1782
|
-
name: string | null;
|
|
1783
|
-
price: number;
|
|
1784
|
-
currency: CurrencyEnum;
|
|
1785
|
-
paymentProcessorId: number | null;
|
|
1786
|
-
startDate: Date;
|
|
1787
|
-
endDate: Date;
|
|
1788
|
-
groupId?: number;
|
|
1789
|
-
groupName?: string;
|
|
1790
|
-
originalPrice?: number;
|
|
1791
|
-
deletedAt?: Date;
|
|
1792
|
-
discountMethod?: DiscountMethodsEnum;
|
|
1793
|
-
discountValue?: number;
|
|
1794
|
-
}
|
|
1795
1780
|
export declare class PaymentV1 extends BondBaseEntity {
|
|
1796
1781
|
userId: number | null;
|
|
1797
1782
|
ownerId: number | null;
|
|
@@ -1810,20 +1795,21 @@ export declare class PaymentV1 extends BondBaseEntity {
|
|
|
1810
1795
|
installmentId: number | null;
|
|
1811
1796
|
orderId: string | null;
|
|
1812
1797
|
}
|
|
1813
|
-
export declare class
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
timePeriod: AddonTimePeriodEnum;
|
|
1818
|
-
deletedAt?: Date;
|
|
1819
|
-
productResource: ProductResource;
|
|
1820
|
-
childProduct: Product;
|
|
1821
|
-
parentProduct: Product;
|
|
1798
|
+
export declare class Price extends OrganizationConnectionBaseEntity {
|
|
1799
|
+
productId: number;
|
|
1800
|
+
product: Product;
|
|
1801
|
+
name: string | null;
|
|
1822
1802
|
price: number;
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1803
|
+
currency: CurrencyEnum;
|
|
1804
|
+
paymentProcessorId: number | null;
|
|
1805
|
+
startDate: Date;
|
|
1806
|
+
endDate: Date;
|
|
1807
|
+
groupId?: number;
|
|
1808
|
+
groupName?: string;
|
|
1809
|
+
originalPrice?: number;
|
|
1810
|
+
deletedAt?: Date;
|
|
1811
|
+
discountMethod?: DiscountMethodsEnum;
|
|
1812
|
+
discountValue?: number;
|
|
1827
1813
|
}
|
|
1828
1814
|
export declare class Product extends OrganizationConnectionBaseEntity {
|
|
1829
1815
|
name: string;
|
|
@@ -1875,6 +1861,21 @@ export declare class Product extends OrganizationConnectionBaseEntity {
|
|
|
1875
1861
|
activityTimes: ActivityTimes[];
|
|
1876
1862
|
purchasedResources: PurchasedResource[];
|
|
1877
1863
|
}
|
|
1864
|
+
export declare class ProductPackage extends OrganizationConnectionBaseEntity {
|
|
1865
|
+
parentProductId: number;
|
|
1866
|
+
childProductId: number;
|
|
1867
|
+
relationType: PackageProductsRelationTypeEnum;
|
|
1868
|
+
timePeriod: AddonTimePeriodEnum;
|
|
1869
|
+
deletedAt?: Date;
|
|
1870
|
+
productResource: ProductResource;
|
|
1871
|
+
childProduct: Product;
|
|
1872
|
+
parentProduct: Product;
|
|
1873
|
+
price: number;
|
|
1874
|
+
isFlatPrice: boolean;
|
|
1875
|
+
durationMinutes?: number;
|
|
1876
|
+
durationDays?: number;
|
|
1877
|
+
level?: ProductPackageLevelEnum;
|
|
1878
|
+
}
|
|
1878
1879
|
export declare class ProductPaymentPlan extends OrganizationConnectionBaseEntity {
|
|
1879
1880
|
productId: number;
|
|
1880
1881
|
maxMonths?: number;
|
|
@@ -1895,14 +1896,14 @@ export declare class ProductResource extends OrganizationConnectionBaseEntity {
|
|
|
1895
1896
|
productPackages: ProductPackage[];
|
|
1896
1897
|
resourceName?: string;
|
|
1897
1898
|
}
|
|
1898
|
-
export declare class ProductToVariantTitle extends OrganizationConnectionBaseEntity {
|
|
1899
|
-
productId: number;
|
|
1900
|
-
variantTitleId: number;
|
|
1901
|
-
}
|
|
1902
1899
|
export declare class ProductToVariant extends OrganizationConnectionBaseEntity {
|
|
1903
1900
|
productId: number;
|
|
1904
1901
|
variantId: number;
|
|
1905
1902
|
}
|
|
1903
|
+
export declare class ProductToVariantTitle extends OrganizationConnectionBaseEntity {
|
|
1904
|
+
productId: number;
|
|
1905
|
+
variantTitleId: number;
|
|
1906
|
+
}
|
|
1906
1907
|
export declare class ProductsReservedForCustomers extends OrganizationConnectionBaseEntity {
|
|
1907
1908
|
productId: number;
|
|
1908
1909
|
customerId: number;
|
|
@@ -2033,15 +2034,6 @@ export declare class PurchasedResource extends OrganizationConnectionBaseEntity
|
|
|
2033
2034
|
product?: Product;
|
|
2034
2035
|
event?: Event;
|
|
2035
2036
|
}
|
|
2036
|
-
export declare class Questionnaires extends OrganizationConnectionBaseEntity {
|
|
2037
|
-
title: string | null;
|
|
2038
|
-
answerTitle: AnswerTitle;
|
|
2039
|
-
}
|
|
2040
|
-
export declare class RefundReason extends OrganizationConnectionBaseEntity {
|
|
2041
|
-
reason: string;
|
|
2042
|
-
ordinal: number;
|
|
2043
|
-
deletedAt: Date;
|
|
2044
|
-
}
|
|
2045
2037
|
export declare class Questions extends BondBaseEntity {
|
|
2046
2038
|
questionType: string | null;
|
|
2047
2039
|
ordinal: number | null;
|
|
@@ -2056,6 +2048,15 @@ export declare class Questions extends BondBaseEntity {
|
|
|
2056
2048
|
ownerId: number | null;
|
|
2057
2049
|
questionnaireId: number | null;
|
|
2058
2050
|
}
|
|
2051
|
+
export declare class Questionnaires extends OrganizationConnectionBaseEntity {
|
|
2052
|
+
title: string | null;
|
|
2053
|
+
answerTitle: AnswerTitle;
|
|
2054
|
+
}
|
|
2055
|
+
export declare class RefundReason extends OrganizationConnectionBaseEntity {
|
|
2056
|
+
reason: string;
|
|
2057
|
+
ordinal: number;
|
|
2058
|
+
deletedAt: Date;
|
|
2059
|
+
}
|
|
2059
2060
|
export declare class RegistrationConstraint extends OrganizationConnectionBaseEntity {
|
|
2060
2061
|
resourceType: ResourceNameTypeEnum;
|
|
2061
2062
|
resourceId: number;
|
|
@@ -2162,6 +2163,16 @@ export declare class SeasonDivisions extends BondBaseEntity {
|
|
|
2162
2163
|
seasonId: number | null;
|
|
2163
2164
|
color: string | null;
|
|
2164
2165
|
}
|
|
2166
|
+
export declare class SeasonTeam extends BondBaseEntity {
|
|
2167
|
+
seasonId: number | null;
|
|
2168
|
+
teamId: number | null;
|
|
2169
|
+
standingPosition: number | null;
|
|
2170
|
+
statistics: any | null;
|
|
2171
|
+
points: number | null;
|
|
2172
|
+
divisionId: number | null;
|
|
2173
|
+
metaData: any | null;
|
|
2174
|
+
team: Team;
|
|
2175
|
+
}
|
|
2165
2176
|
export declare class SeasonPool extends BondBaseEntity {
|
|
2166
2177
|
seasonId?: number;
|
|
2167
2178
|
userId?: number;
|
|
@@ -2177,16 +2188,6 @@ export declare class SeasonPool extends BondBaseEntity {
|
|
|
2177
2188
|
purchasedResource: PurchasedResource;
|
|
2178
2189
|
season: LeagueSeason;
|
|
2179
2190
|
}
|
|
2180
|
-
export declare class SeasonTeam extends BondBaseEntity {
|
|
2181
|
-
seasonId: number | null;
|
|
2182
|
-
teamId: number | null;
|
|
2183
|
-
standingPosition: number | null;
|
|
2184
|
-
statistics: any | null;
|
|
2185
|
-
points: number | null;
|
|
2186
|
-
divisionId: number | null;
|
|
2187
|
-
metaData: any | null;
|
|
2188
|
-
team: Team;
|
|
2189
|
-
}
|
|
2190
2191
|
export declare class SpacesDependency extends BondBaseEntity {
|
|
2191
2192
|
blockingSpaceId: number;
|
|
2192
2193
|
blockedSpaceId: number;
|
|
@@ -3230,11 +3231,6 @@ export interface IReservationCreatorData {
|
|
|
3230
3231
|
endDate: string;
|
|
3231
3232
|
sportId: number;
|
|
3232
3233
|
}
|
|
3233
|
-
export declare class ColumnNumericTransformer {
|
|
3234
|
-
to(data: number): number;
|
|
3235
|
-
from(data: string): number;
|
|
3236
|
-
}
|
|
3237
|
-
export declare function convertToNumber(data: string): number;
|
|
3238
3234
|
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3239
3235
|
name?: string;
|
|
3240
3236
|
genderStr?: string;
|
|
@@ -3249,6 +3245,11 @@ export declare class AddFamilyDto {
|
|
|
3249
3245
|
parents: AddImportedCustomerDto[];
|
|
3250
3246
|
children: AddImportedCustomerDto[];
|
|
3251
3247
|
}
|
|
3248
|
+
export declare class ColumnNumericTransformer {
|
|
3249
|
+
to(data: number): number;
|
|
3250
|
+
from(data: string): number;
|
|
3251
|
+
}
|
|
3252
|
+
export declare function convertToNumber(data: string): number;
|
|
3252
3253
|
export declare enum ImportPaymentTypeEnum {
|
|
3253
3254
|
CREDIT_CARD = "card",
|
|
3254
3255
|
ACH = "ach",
|
|
@@ -3300,6 +3301,19 @@ export declare class PunchPassDto {
|
|
|
3300
3301
|
BondSessionID: number;
|
|
3301
3302
|
ProductID: number;
|
|
3302
3303
|
}
|
|
3304
|
+
export declare class GameSlots extends BondBaseEntity {
|
|
3305
|
+
entityType: string;
|
|
3306
|
+
entityId: number;
|
|
3307
|
+
}
|
|
3308
|
+
export declare class MatchParticipants extends BondBaseEntity {
|
|
3309
|
+
matchId: number | null;
|
|
3310
|
+
ordinal: number | null;
|
|
3311
|
+
outcomeOrdinal: number | null;
|
|
3312
|
+
resultMetaData: any | null;
|
|
3313
|
+
points: number | null;
|
|
3314
|
+
score: number | null;
|
|
3315
|
+
gameSlotId: number | null;
|
|
3316
|
+
}
|
|
3303
3317
|
export declare class ImportedSlotProductDto {
|
|
3304
3318
|
slotID?: string;
|
|
3305
3319
|
name?: string;
|
|
@@ -3351,19 +3365,6 @@ export declare class ImportedReservationDto {
|
|
|
3351
3365
|
slots?: ImportedSlotDto[];
|
|
3352
3366
|
addons?: ImportedSlotProductDto[];
|
|
3353
3367
|
}
|
|
3354
|
-
export declare class GameSlots extends BondBaseEntity {
|
|
3355
|
-
entityType: string;
|
|
3356
|
-
entityId: number;
|
|
3357
|
-
}
|
|
3358
|
-
export declare class MatchParticipants extends BondBaseEntity {
|
|
3359
|
-
matchId: number | null;
|
|
3360
|
-
ordinal: number | null;
|
|
3361
|
-
outcomeOrdinal: number | null;
|
|
3362
|
-
resultMetaData: any | null;
|
|
3363
|
-
points: number | null;
|
|
3364
|
-
score: number | null;
|
|
3365
|
-
gameSlotId: number | null;
|
|
3366
|
-
}
|
|
3367
3368
|
export declare class Matches extends BondBaseEntity {
|
|
3368
3369
|
eventId: number | null;
|
|
3369
3370
|
status: number | null;
|
|
@@ -3645,13 +3646,6 @@ export declare class LineItemDto {
|
|
|
3645
3646
|
unitTaxPrice?: number;
|
|
3646
3647
|
parentOrdinal?: number;
|
|
3647
3648
|
}
|
|
3648
|
-
export declare class MaintenanceDto {
|
|
3649
|
-
id?: number;
|
|
3650
|
-
title: string;
|
|
3651
|
-
durationValue: number;
|
|
3652
|
-
maintenanceDurationdurationType: DurationUnitTypesEnum;
|
|
3653
|
-
maintenanceTiming: MaintenanceTimingEnum;
|
|
3654
|
-
}
|
|
3655
3649
|
export declare class OrderDto {
|
|
3656
3650
|
orderId?: string | null;
|
|
3657
3651
|
organizationId: number;
|
|
@@ -3673,20 +3667,20 @@ export declare class InvoiceSlotsDto extends BaseInvoiceDto {
|
|
|
3673
3667
|
purchasingUserId: number;
|
|
3674
3668
|
slots: number[];
|
|
3675
3669
|
}
|
|
3676
|
-
export declare class InvoiceReservationItemsDto {
|
|
3677
|
-
slotsIds?: number[];
|
|
3678
|
-
addonsIds?: number[];
|
|
3679
|
-
addToOrderId?: number;
|
|
3680
|
-
basicInfoData?: BaseInvoiceDto;
|
|
3681
|
-
}
|
|
3682
3670
|
export declare class SaveSlotToSegmenResultDto extends AddSlotToSegmenResultDto {
|
|
3683
3671
|
reservationTotalPrice: number;
|
|
3684
3672
|
}
|
|
3685
|
-
export declare class
|
|
3686
|
-
isInvoiced: boolean;
|
|
3673
|
+
export declare class UpdateInvoiceOptionsDto {
|
|
3687
3674
|
basicInfoData?: BaseInvoiceDto;
|
|
3688
3675
|
addToOrderId?: number;
|
|
3689
3676
|
}
|
|
3677
|
+
export declare class UpdateInvoiceDto extends UpdateInvoiceOptionsDto {
|
|
3678
|
+
isInvoiced: boolean;
|
|
3679
|
+
}
|
|
3680
|
+
export declare class InvoiceReservationItemsDto extends UpdateInvoiceOptionsDto {
|
|
3681
|
+
slotsIds?: number[];
|
|
3682
|
+
addonsIds?: number[];
|
|
3683
|
+
}
|
|
3690
3684
|
export declare class AddSlotsDto extends UpdateInvoiceDto {
|
|
3691
3685
|
slots: SlotDto[];
|
|
3692
3686
|
}
|
|
@@ -3841,6 +3835,17 @@ export declare class ValidateEditSlotsDto extends UpdateSlotsDto {
|
|
|
3841
3835
|
export declare class AddAddonsDto {
|
|
3842
3836
|
addons: ProductPricesDto[];
|
|
3843
3837
|
}
|
|
3838
|
+
export declare class SegmentDto {
|
|
3839
|
+
id?: number;
|
|
3840
|
+
title: string;
|
|
3841
|
+
isPrivate: boolean;
|
|
3842
|
+
resourceIds: number[];
|
|
3843
|
+
sportId?: number;
|
|
3844
|
+
series: SeriesDto[];
|
|
3845
|
+
addonIds?: number[];
|
|
3846
|
+
publicNotesForSlots?: string;
|
|
3847
|
+
privateNotesForSlots?: string;
|
|
3848
|
+
}
|
|
3844
3849
|
export declare class SeriesDto {
|
|
3845
3850
|
id?: number;
|
|
3846
3851
|
startDate: string;
|
|
@@ -3858,6 +3863,13 @@ export declare class SeriesDto {
|
|
|
3858
3863
|
maintenance?: MaintenanceDto[];
|
|
3859
3864
|
slots?: SlotDto[];
|
|
3860
3865
|
}
|
|
3866
|
+
export declare class MaintenanceDto {
|
|
3867
|
+
id?: number;
|
|
3868
|
+
title: string;
|
|
3869
|
+
durationValue: number;
|
|
3870
|
+
maintenanceDurationdurationType: DurationUnitTypesEnum;
|
|
3871
|
+
maintenanceTiming: MaintenanceTimingEnum;
|
|
3872
|
+
}
|
|
3861
3873
|
export declare class SlotDateTimeAndSpace {
|
|
3862
3874
|
startDate: string;
|
|
3863
3875
|
startTime?: string;
|
|
@@ -3921,17 +3933,6 @@ export declare class SlotDto extends SlotDateTimeAndSpace {
|
|
|
3921
3933
|
slotDurationType: SlotDurationTypeEnum;
|
|
3922
3934
|
addonsIds?: number[];
|
|
3923
3935
|
}
|
|
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
3936
|
declare class AnswerDto {
|
|
3936
3937
|
questionId: number;
|
|
3937
3938
|
value: any;
|