@bondsports/types 0.0.191 → 0.0.193
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 +481 -481
- 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,20 @@ export declare class BasicActivityTimesDto {
|
|
|
9
9
|
availabilityStartDate?: string;
|
|
10
10
|
availabilityEndDate?: string;
|
|
11
11
|
}
|
|
12
|
+
export declare class FindBookingTypeSettingDto {
|
|
13
|
+
organizationId: number;
|
|
14
|
+
facilityId: number;
|
|
15
|
+
spaceId: number;
|
|
16
|
+
bookingDate: string;
|
|
17
|
+
bookingTime: string;
|
|
18
|
+
}
|
|
19
|
+
export declare enum EConfigurationKeys {
|
|
20
|
+
MAX_ALLOWED_PM_FAILURE = "max_allowed_pm_failure"
|
|
21
|
+
}
|
|
22
|
+
export declare enum EFailedPaymentReasons {
|
|
23
|
+
CARD_BLOCKED = "card_blocked_by_bond",
|
|
24
|
+
UNKNOWN = "unknown"
|
|
25
|
+
}
|
|
12
26
|
export declare class QuestionAnswersDto {
|
|
13
27
|
questionId: number;
|
|
14
28
|
value: any;
|
|
@@ -20,20 +34,6 @@ export declare class UserAnswersDto {
|
|
|
20
34
|
export declare class GetByQuestionnaireIdsDto {
|
|
21
35
|
questionnaireIds: string;
|
|
22
36
|
}
|
|
23
|
-
export declare enum EConfigurationKeys {
|
|
24
|
-
MAX_ALLOWED_PM_FAILURE = "max_allowed_pm_failure"
|
|
25
|
-
}
|
|
26
|
-
export declare enum EFailedPaymentReasons {
|
|
27
|
-
CARD_BLOCKED = "card_blocked_by_bond",
|
|
28
|
-
UNKNOWN = "unknown"
|
|
29
|
-
}
|
|
30
|
-
export declare class FindBookingTypeSettingDto {
|
|
31
|
-
organizationId: number;
|
|
32
|
-
facilityId: number;
|
|
33
|
-
spaceId: number;
|
|
34
|
-
bookingDate: string;
|
|
35
|
-
bookingTime: string;
|
|
36
|
-
}
|
|
37
37
|
export declare class FindByMembershipIdDto extends ByOrganizationIdDto {
|
|
38
38
|
membershipId: number;
|
|
39
39
|
}
|
|
@@ -365,48 +365,6 @@ export declare class MoveTeamOrMemberDto implements IMoveSeason {
|
|
|
365
365
|
export declare class MoveTeamOrMembersByCsvDTO {
|
|
366
366
|
fileName: string;
|
|
367
367
|
}
|
|
368
|
-
export declare class CreateEntitlementTermsDto {
|
|
369
|
-
organizationId: number;
|
|
370
|
-
entitlementGroupId: number;
|
|
371
|
-
terms: IEntitlementTerms[];
|
|
372
|
-
}
|
|
373
|
-
export declare class FindEntitlementTermsByGroupIdDto {
|
|
374
|
-
entitlementGroupId: number;
|
|
375
|
-
}
|
|
376
|
-
export declare class FindEntitlementTermsByVariablesDto {
|
|
377
|
-
user: any;
|
|
378
|
-
userVariables: IQuestionAnswerObject[];
|
|
379
|
-
}
|
|
380
|
-
export declare class FindLowestPriceDto {
|
|
381
|
-
organizationId: number;
|
|
382
|
-
user?: any;
|
|
383
|
-
answers?: IQuestionAnswerObject[];
|
|
384
|
-
itemIds: number[];
|
|
385
|
-
itemType?: ResourceNameTypeEnum;
|
|
386
|
-
startDate?: Date;
|
|
387
|
-
}
|
|
388
|
-
export declare class FindGroupItemsPricingsDto {
|
|
389
|
-
groupsIds: number[];
|
|
390
|
-
itemsIds: number[];
|
|
391
|
-
}
|
|
392
|
-
export declare class CreateEntitlementGroupDto {
|
|
393
|
-
name: string;
|
|
394
|
-
}
|
|
395
|
-
export declare class GetEntitlementGroupPricingDto {
|
|
396
|
-
itemIds: number[];
|
|
397
|
-
itemType: string;
|
|
398
|
-
}
|
|
399
|
-
export declare class FindEntitlementGroupByIdDto {
|
|
400
|
-
groupid: number;
|
|
401
|
-
}
|
|
402
|
-
export declare class CreateGroupPricingWithProduct {
|
|
403
|
-
groupId: number;
|
|
404
|
-
price: number;
|
|
405
|
-
startDate?: Date;
|
|
406
|
-
endDate?: Date;
|
|
407
|
-
discountValue?: number;
|
|
408
|
-
discountMethod?: DiscountMethodsEnum;
|
|
409
|
-
}
|
|
410
368
|
export declare class CreateMembershipDto {
|
|
411
369
|
organizationId: number;
|
|
412
370
|
name: string;
|
|
@@ -463,6 +421,66 @@ export declare class CancelMembershipDto {
|
|
|
463
421
|
isImmediatelyCancel: boolean;
|
|
464
422
|
cancellationReason?: string;
|
|
465
423
|
}
|
|
424
|
+
export declare class CreateEntitlementTermsDto {
|
|
425
|
+
organizationId: number;
|
|
426
|
+
entitlementGroupId: number;
|
|
427
|
+
terms: IEntitlementTerms[];
|
|
428
|
+
}
|
|
429
|
+
export declare class FindEntitlementTermsByGroupIdDto {
|
|
430
|
+
entitlementGroupId: number;
|
|
431
|
+
}
|
|
432
|
+
export declare class FindEntitlementTermsByVariablesDto {
|
|
433
|
+
user: any;
|
|
434
|
+
userVariables: IQuestionAnswerObject[];
|
|
435
|
+
}
|
|
436
|
+
export declare class FindLowestPriceDto {
|
|
437
|
+
organizationId: number;
|
|
438
|
+
user?: any;
|
|
439
|
+
answers?: IQuestionAnswerObject[];
|
|
440
|
+
itemIds: number[];
|
|
441
|
+
itemType?: ResourceNameTypeEnum;
|
|
442
|
+
startDate?: Date;
|
|
443
|
+
}
|
|
444
|
+
export declare class FindGroupItemsPricingsDto {
|
|
445
|
+
groupsIds: number[];
|
|
446
|
+
itemsIds: number[];
|
|
447
|
+
}
|
|
448
|
+
export declare class CreateEntitlementGroupDto {
|
|
449
|
+
name: string;
|
|
450
|
+
}
|
|
451
|
+
export declare class GetEntitlementGroupPricingDto {
|
|
452
|
+
itemIds: number[];
|
|
453
|
+
itemType: string;
|
|
454
|
+
}
|
|
455
|
+
export declare class FindEntitlementGroupByIdDto {
|
|
456
|
+
groupid: number;
|
|
457
|
+
}
|
|
458
|
+
export declare class CreateGroupPricingWithProduct {
|
|
459
|
+
groupId: number;
|
|
460
|
+
price: number;
|
|
461
|
+
startDate?: Date;
|
|
462
|
+
endDate?: Date;
|
|
463
|
+
discountValue?: number;
|
|
464
|
+
discountMethod?: DiscountMethodsEnum;
|
|
465
|
+
}
|
|
466
|
+
export declare class CreateUpdateVariantsDto {
|
|
467
|
+
organizationId: number;
|
|
468
|
+
parentProductId: number;
|
|
469
|
+
variantTitles: VariantTitleDto[];
|
|
470
|
+
variants: VariantDto[];
|
|
471
|
+
}
|
|
472
|
+
export declare class VariantTitleDto {
|
|
473
|
+
titleName: string;
|
|
474
|
+
titleId: number;
|
|
475
|
+
}
|
|
476
|
+
export declare class VariantDto {
|
|
477
|
+
name: string;
|
|
478
|
+
price: number;
|
|
479
|
+
variantId: number;
|
|
480
|
+
currency: CurrencyEnum;
|
|
481
|
+
startDate: Date;
|
|
482
|
+
endDate: Date;
|
|
483
|
+
}
|
|
466
484
|
export declare class FindByProductIdDto {
|
|
467
485
|
productId: number;
|
|
468
486
|
}
|
|
@@ -684,23 +702,57 @@ export declare class createResourceDto {
|
|
|
684
702
|
export declare class archiveDto {
|
|
685
703
|
isArchive: boolean;
|
|
686
704
|
}
|
|
687
|
-
export declare class
|
|
705
|
+
export declare class FindProgramsByOrganizationIdDto {
|
|
688
706
|
organizationId: number;
|
|
689
|
-
|
|
690
|
-
variantTitles: VariantTitleDto[];
|
|
691
|
-
variants: VariantDto[];
|
|
707
|
+
programType?: ProgramTypesEnum;
|
|
692
708
|
}
|
|
693
|
-
export declare class
|
|
694
|
-
|
|
695
|
-
titleId: number;
|
|
709
|
+
export declare class FindProgramByIdDto {
|
|
710
|
+
programId: number;
|
|
696
711
|
}
|
|
697
|
-
export declare class
|
|
712
|
+
export declare class FindProgramByOrgIdAndIdDto {
|
|
713
|
+
programId: number;
|
|
714
|
+
organizationId: number;
|
|
715
|
+
}
|
|
716
|
+
export declare class BaseProgramDto {
|
|
717
|
+
type: ProgramTypesEnum;
|
|
698
718
|
name: string;
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
719
|
+
sport: SportsEnum;
|
|
720
|
+
minAge: string;
|
|
721
|
+
maxAge: string;
|
|
722
|
+
gender: GenderEnum;
|
|
723
|
+
level?: LevelOfPlayEnum[];
|
|
724
|
+
description?: string;
|
|
725
|
+
GL?: string;
|
|
726
|
+
status: PublishingStatusEnum;
|
|
727
|
+
organizationId: number;
|
|
728
|
+
userCreatorId: number;
|
|
729
|
+
highlights: ProgramHighlights[];
|
|
730
|
+
longDescription?: string;
|
|
731
|
+
requiredProductIds: number[];
|
|
732
|
+
}
|
|
733
|
+
export declare class CreateProgramDto extends BaseProgramDto {
|
|
734
|
+
}
|
|
735
|
+
export declare class UpdateProgramDto extends BaseProgramDto {
|
|
736
|
+
programId: number;
|
|
737
|
+
mainMediaId: number;
|
|
738
|
+
}
|
|
739
|
+
export declare class UpdateProgramStatusDto {
|
|
740
|
+
programId: number;
|
|
741
|
+
status: PublishingStatusEnum;
|
|
742
|
+
}
|
|
743
|
+
export declare class ProgramHighlightDto {
|
|
744
|
+
data: string;
|
|
745
|
+
ordinal: number;
|
|
746
|
+
type: ProgramHighlightTypeEnum;
|
|
747
|
+
title: string;
|
|
748
|
+
}
|
|
749
|
+
export declare class CreateResourceGroupDto {
|
|
750
|
+
name: string;
|
|
751
|
+
parentSlotId: number;
|
|
752
|
+
facilityId: number;
|
|
753
|
+
childrenSlotIds: number[];
|
|
754
|
+
}
|
|
755
|
+
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
704
756
|
}
|
|
705
757
|
export declare class FindProgramSeasonsByProgramIdDto {
|
|
706
758
|
programId: number;
|
|
@@ -893,50 +945,6 @@ export declare class MoveParticipantDto {
|
|
|
893
945
|
resourceId: number;
|
|
894
946
|
invoiceId: number;
|
|
895
947
|
}
|
|
896
|
-
export declare class FindProgramsByOrganizationIdDto {
|
|
897
|
-
organizationId: number;
|
|
898
|
-
programType?: ProgramTypesEnum;
|
|
899
|
-
}
|
|
900
|
-
export declare class FindProgramByIdDto {
|
|
901
|
-
programId: number;
|
|
902
|
-
}
|
|
903
|
-
export declare class FindProgramByOrgIdAndIdDto {
|
|
904
|
-
programId: number;
|
|
905
|
-
organizationId: number;
|
|
906
|
-
}
|
|
907
|
-
export declare class BaseProgramDto {
|
|
908
|
-
type: ProgramTypesEnum;
|
|
909
|
-
name: string;
|
|
910
|
-
sport: SportsEnum;
|
|
911
|
-
minAge: string;
|
|
912
|
-
maxAge: string;
|
|
913
|
-
gender: GenderEnum;
|
|
914
|
-
level?: LevelOfPlayEnum[];
|
|
915
|
-
description?: string;
|
|
916
|
-
GL?: string;
|
|
917
|
-
status: PublishingStatusEnum;
|
|
918
|
-
organizationId: number;
|
|
919
|
-
userCreatorId: number;
|
|
920
|
-
highlights: ProgramHighlights[];
|
|
921
|
-
longDescription?: string;
|
|
922
|
-
requiredProductIds: number[];
|
|
923
|
-
}
|
|
924
|
-
export declare class CreateProgramDto extends BaseProgramDto {
|
|
925
|
-
}
|
|
926
|
-
export declare class UpdateProgramDto extends BaseProgramDto {
|
|
927
|
-
programId: number;
|
|
928
|
-
mainMediaId: number;
|
|
929
|
-
}
|
|
930
|
-
export declare class UpdateProgramStatusDto {
|
|
931
|
-
programId: number;
|
|
932
|
-
status: PublishingStatusEnum;
|
|
933
|
-
}
|
|
934
|
-
export declare class ProgramHighlightDto {
|
|
935
|
-
data: string;
|
|
936
|
-
ordinal: number;
|
|
937
|
-
type: ProgramHighlightTypeEnum;
|
|
938
|
-
title: string;
|
|
939
|
-
}
|
|
940
948
|
export declare class PurchasePaymentDto {
|
|
941
949
|
token: string;
|
|
942
950
|
type: PaymentMethodTypeEnum;
|
|
@@ -1013,14 +1021,6 @@ export declare class PartialPaymentAsUserDto {
|
|
|
1013
1021
|
export declare class ValidateParticipantDto {
|
|
1014
1022
|
products: PurchaseProductDto[];
|
|
1015
1023
|
}
|
|
1016
|
-
export declare class CreateResourceGroupDto {
|
|
1017
|
-
name: string;
|
|
1018
|
-
parentSlotId: number;
|
|
1019
|
-
facilityId: number;
|
|
1020
|
-
childrenSlotIds: number[];
|
|
1021
|
-
}
|
|
1022
|
-
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
1023
|
-
}
|
|
1024
1024
|
export declare class ResourceDto {
|
|
1025
1025
|
type: ResourceNameTypeEnum;
|
|
1026
1026
|
id: number;
|
|
@@ -1161,11 +1161,6 @@ export declare class Athlete extends BondBaseEntity {
|
|
|
1161
1161
|
metadata: object | null;
|
|
1162
1162
|
athleteSports: AthleteSports[];
|
|
1163
1163
|
}
|
|
1164
|
-
export declare class AthleteSports extends BondBaseEntity {
|
|
1165
|
-
athleteId: number | null;
|
|
1166
|
-
sports: number | null;
|
|
1167
|
-
levelOfPlay: LevelOfPlayEnum | null;
|
|
1168
|
-
}
|
|
1169
1164
|
export declare class BlockedDate extends BondBaseEntity {
|
|
1170
1165
|
entityType: ResourceNameTypeEnum;
|
|
1171
1166
|
entityId: number;
|
|
@@ -1174,6 +1169,11 @@ export declare class BlockedDate extends BondBaseEntity {
|
|
|
1174
1169
|
endDate: Date;
|
|
1175
1170
|
deletedAt?: Date;
|
|
1176
1171
|
}
|
|
1172
|
+
export declare class AthleteSports extends BondBaseEntity {
|
|
1173
|
+
athleteId: number | null;
|
|
1174
|
+
sports: number | null;
|
|
1175
|
+
levelOfPlay: LevelOfPlayEnum | null;
|
|
1176
|
+
}
|
|
1177
1177
|
export declare class BondBaseEntity extends BaseEntity {
|
|
1178
1178
|
id: number;
|
|
1179
1179
|
createdAt: Date;
|
|
@@ -1197,16 +1197,6 @@ export declare class BookedSessions extends BondBaseEntity {
|
|
|
1197
1197
|
publicNotes?: string;
|
|
1198
1198
|
slotType?: SlotTypeEnum;
|
|
1199
1199
|
}
|
|
1200
|
-
export declare class BookingTypeSetting extends OrganizationConnectionBaseEntity {
|
|
1201
|
-
parentId: number;
|
|
1202
|
-
parentType: ResourceNameTypeEnum;
|
|
1203
|
-
startDate: Date;
|
|
1204
|
-
endDate: Date;
|
|
1205
|
-
dayOfWeek: number;
|
|
1206
|
-
startTimeInDay: string;
|
|
1207
|
-
endTimeInDay: string;
|
|
1208
|
-
directBookingFor: DirectBookingTypesEnum;
|
|
1209
|
-
}
|
|
1210
1200
|
export declare class Configuration extends BondBaseEntity {
|
|
1211
1201
|
area: string;
|
|
1212
1202
|
key: string;
|
|
@@ -1224,14 +1214,6 @@ export declare class Connection extends BondBaseEntity {
|
|
|
1224
1214
|
userCreatorId: number | null;
|
|
1225
1215
|
ownerId: number | null;
|
|
1226
1216
|
}
|
|
1227
|
-
export declare class CreditNote extends OrganizationConnectionBaseEntity {
|
|
1228
|
-
creditAmount: number;
|
|
1229
|
-
paymentProcessorId: string;
|
|
1230
|
-
userId: number;
|
|
1231
|
-
paymentId: number;
|
|
1232
|
-
invoiceId: number;
|
|
1233
|
-
creditPaymentId: number;
|
|
1234
|
-
}
|
|
1235
1217
|
export declare class Customer extends OrganizationConnectionBaseEntity {
|
|
1236
1218
|
name: string | null;
|
|
1237
1219
|
entityId: number | null;
|
|
@@ -1260,6 +1242,24 @@ export declare class Customer extends OrganizationConnectionBaseEntity {
|
|
|
1260
1242
|
mainMedia: Media;
|
|
1261
1243
|
reservations?: Reservation[];
|
|
1262
1244
|
}
|
|
1245
|
+
export declare class BookingTypeSetting extends OrganizationConnectionBaseEntity {
|
|
1246
|
+
parentId: number;
|
|
1247
|
+
parentType: ResourceNameTypeEnum;
|
|
1248
|
+
startDate: Date;
|
|
1249
|
+
endDate: Date;
|
|
1250
|
+
dayOfWeek: number;
|
|
1251
|
+
startTimeInDay: string;
|
|
1252
|
+
endTimeInDay: string;
|
|
1253
|
+
directBookingFor: DirectBookingTypesEnum;
|
|
1254
|
+
}
|
|
1255
|
+
export declare class CreditNote extends OrganizationConnectionBaseEntity {
|
|
1256
|
+
creditAmount: number;
|
|
1257
|
+
paymentProcessorId: string;
|
|
1258
|
+
userId: number;
|
|
1259
|
+
paymentId: number;
|
|
1260
|
+
invoiceId: number;
|
|
1261
|
+
creditPaymentId: number;
|
|
1262
|
+
}
|
|
1263
1263
|
export declare class CustomerCreditTransaction extends OrganizationConnectionBaseEntity {
|
|
1264
1264
|
customerId: number;
|
|
1265
1265
|
userId: number;
|
|
@@ -1272,12 +1272,6 @@ export declare class CustomerCreditTransaction extends OrganizationConnectionBas
|
|
|
1272
1272
|
invoice: Invoice;
|
|
1273
1273
|
payment: Payment;
|
|
1274
1274
|
}
|
|
1275
|
-
export declare class CustomerNote extends OrganizationConnectionBaseEntity {
|
|
1276
|
-
customerId?: number;
|
|
1277
|
-
description: string;
|
|
1278
|
-
pinToTop?: boolean;
|
|
1279
|
-
customer: Customer;
|
|
1280
|
-
}
|
|
1281
1275
|
export declare class Division extends BondBaseEntity {
|
|
1282
1276
|
name: string;
|
|
1283
1277
|
ordinal?: number;
|
|
@@ -1286,8 +1280,11 @@ export declare class Division extends BondBaseEntity {
|
|
|
1286
1280
|
isDefault: boolean;
|
|
1287
1281
|
groups: Group[];
|
|
1288
1282
|
}
|
|
1289
|
-
export declare class
|
|
1290
|
-
|
|
1283
|
+
export declare class CustomerNote extends OrganizationConnectionBaseEntity {
|
|
1284
|
+
customerId?: number;
|
|
1285
|
+
description: string;
|
|
1286
|
+
pinToTop?: boolean;
|
|
1287
|
+
customer: Customer;
|
|
1291
1288
|
}
|
|
1292
1289
|
export declare class EmergencyContact extends OrganizationConnectionBaseEntity {
|
|
1293
1290
|
customerId: number;
|
|
@@ -1314,29 +1311,8 @@ export declare class EventAttendee extends BondBaseEntity {
|
|
|
1314
1311
|
event: Event;
|
|
1315
1312
|
purchasedResource: PurchasedResource;
|
|
1316
1313
|
}
|
|
1317
|
-
export declare class
|
|
1318
|
-
name: string;
|
|
1319
|
-
description?: string;
|
|
1320
|
-
addressId: number;
|
|
1321
|
-
address: Address;
|
|
1322
|
-
amenities?: number[];
|
|
1323
|
-
timezone: string;
|
|
1324
|
-
creatorId: number;
|
|
1325
|
-
creatorType: string;
|
|
1326
|
-
userCreatorId: number;
|
|
1327
|
-
mainMediaId: number;
|
|
1328
|
-
mainMedia: Media;
|
|
1329
|
-
publishedDate?: Date;
|
|
1330
|
-
isPublished: boolean;
|
|
1331
|
-
sports?: number[];
|
|
1332
|
-
info?: string;
|
|
1333
|
-
longDescription?: string;
|
|
1334
|
-
deletedAt?: Date;
|
|
1335
|
-
openingTimes: OpeningTime[];
|
|
1336
|
-
resources: Resource[];
|
|
1337
|
-
spaces: Resource[];
|
|
1338
|
-
programSeasons: ProgramSeason[];
|
|
1339
|
-
linkSEO: string;
|
|
1314
|
+
export declare class EntitlementGroup extends OrganizationConnectionBaseEntity {
|
|
1315
|
+
name: string | null;
|
|
1340
1316
|
}
|
|
1341
1317
|
export declare class Event extends OrganizationConnectionBaseEntity {
|
|
1342
1318
|
constructor();
|
|
@@ -1396,6 +1372,30 @@ export declare class Event extends OrganizationConnectionBaseEntity {
|
|
|
1396
1372
|
session?: ProgramSeason;
|
|
1397
1373
|
segment?: ProgramSeason;
|
|
1398
1374
|
}
|
|
1375
|
+
export declare class Facility extends OrganizationConnectionBaseEntity {
|
|
1376
|
+
name: string;
|
|
1377
|
+
description?: string;
|
|
1378
|
+
addressId: number;
|
|
1379
|
+
address: Address;
|
|
1380
|
+
amenities?: number[];
|
|
1381
|
+
timezone: string;
|
|
1382
|
+
creatorId: number;
|
|
1383
|
+
creatorType: string;
|
|
1384
|
+
userCreatorId: number;
|
|
1385
|
+
mainMediaId: number;
|
|
1386
|
+
mainMedia: Media;
|
|
1387
|
+
publishedDate?: Date;
|
|
1388
|
+
isPublished: boolean;
|
|
1389
|
+
sports?: number[];
|
|
1390
|
+
info?: string;
|
|
1391
|
+
longDescription?: string;
|
|
1392
|
+
deletedAt?: Date;
|
|
1393
|
+
openingTimes: OpeningTime[];
|
|
1394
|
+
resources: Resource[];
|
|
1395
|
+
spaces: Resource[];
|
|
1396
|
+
programSeasons: ProgramSeason[];
|
|
1397
|
+
linkSEO: string;
|
|
1398
|
+
}
|
|
1399
1399
|
export declare class FacilityToResource extends BondBaseEntity {
|
|
1400
1400
|
facilityId: number;
|
|
1401
1401
|
resourceId: number;
|
|
@@ -1415,9 +1415,6 @@ export declare class FutureInstallment extends OrganizationConnectionBaseEntity
|
|
|
1415
1415
|
chargedAt?: Date;
|
|
1416
1416
|
originalPlannedDate?: Date;
|
|
1417
1417
|
}
|
|
1418
|
-
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1419
|
-
code: string;
|
|
1420
|
-
}
|
|
1421
1418
|
export declare class Group extends BondBaseEntity {
|
|
1422
1419
|
name: string;
|
|
1423
1420
|
description?: string;
|
|
@@ -1434,35 +1431,14 @@ export declare class Group extends BondBaseEntity {
|
|
|
1434
1431
|
members: ISeasonAttendeeInfo[];
|
|
1435
1432
|
users: User[];
|
|
1436
1433
|
}
|
|
1437
|
-
export declare class
|
|
1438
|
-
|
|
1439
|
-
itemId: number;
|
|
1440
|
-
itemType: ResourceNameTypeEnum;
|
|
1441
|
-
startDate: Date;
|
|
1442
|
-
endDate: Date;
|
|
1443
|
-
price: number;
|
|
1444
|
-
overridesPrice: boolean;
|
|
1445
|
-
deletedAt?: Date;
|
|
1446
|
-
group?: EntitlementGroup;
|
|
1447
|
-
discountMethod?: DiscountMethodsEnum;
|
|
1448
|
-
discountValue?: number;
|
|
1434
|
+
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1435
|
+
code: string;
|
|
1449
1436
|
}
|
|
1450
1437
|
export declare class GroupsInDivisions extends BondBaseEntity {
|
|
1451
1438
|
groupId: number;
|
|
1452
1439
|
divisionId: number;
|
|
1453
1440
|
deletedAt?: Date;
|
|
1454
1441
|
}
|
|
1455
|
-
export declare class InvoiceMails extends OrganizationConnectionBaseEntity {
|
|
1456
|
-
email: string;
|
|
1457
|
-
status: EEmailStatus;
|
|
1458
|
-
templateId: string;
|
|
1459
|
-
userId: number;
|
|
1460
|
-
invoiceId: number;
|
|
1461
|
-
paymentId: number;
|
|
1462
|
-
sendingUserId: number;
|
|
1463
|
-
mailParams?: any;
|
|
1464
|
-
memo?: string;
|
|
1465
|
-
}
|
|
1466
1442
|
export declare class Invoice extends BondBaseEntity {
|
|
1467
1443
|
invoiceId: string | null;
|
|
1468
1444
|
price: number | null;
|
|
@@ -1487,6 +1463,30 @@ export declare class Invoice extends BondBaseEntity {
|
|
|
1487
1463
|
invoiceNotes: InvoiceNote[];
|
|
1488
1464
|
slots: Slot[];
|
|
1489
1465
|
}
|
|
1466
|
+
export declare class GroupItemsPricing extends OrganizationConnectionBaseEntity {
|
|
1467
|
+
groupId: number;
|
|
1468
|
+
itemId: number;
|
|
1469
|
+
itemType: ResourceNameTypeEnum;
|
|
1470
|
+
startDate: Date;
|
|
1471
|
+
endDate: Date;
|
|
1472
|
+
price: number;
|
|
1473
|
+
overridesPrice: boolean;
|
|
1474
|
+
deletedAt?: Date;
|
|
1475
|
+
group?: EntitlementGroup;
|
|
1476
|
+
discountMethod?: DiscountMethodsEnum;
|
|
1477
|
+
discountValue?: number;
|
|
1478
|
+
}
|
|
1479
|
+
export declare class InvoiceMails extends OrganizationConnectionBaseEntity {
|
|
1480
|
+
email: string;
|
|
1481
|
+
status: EEmailStatus;
|
|
1482
|
+
templateId: string;
|
|
1483
|
+
userId: number;
|
|
1484
|
+
invoiceId: number;
|
|
1485
|
+
paymentId: number;
|
|
1486
|
+
sendingUserId: number;
|
|
1487
|
+
mailParams?: any;
|
|
1488
|
+
memo?: string;
|
|
1489
|
+
}
|
|
1490
1490
|
export declare class InvoiceNote extends OrganizationConnectionBaseEntity {
|
|
1491
1491
|
content: string;
|
|
1492
1492
|
creatingUserId: number;
|
|
@@ -1504,32 +1504,6 @@ export declare class InvoiceToPayment extends BondBaseEntity {
|
|
|
1504
1504
|
paidAmount?: number;
|
|
1505
1505
|
currency: CurrencyEnum;
|
|
1506
1506
|
}
|
|
1507
|
-
export declare class League extends OrganizationConnectionBaseEntity {
|
|
1508
|
-
name: string | null;
|
|
1509
|
-
description: string | null;
|
|
1510
|
-
allowBookingRequest: boolean | null;
|
|
1511
|
-
addressName: string | null;
|
|
1512
|
-
shortDescription: string | null;
|
|
1513
|
-
waiverDoc: string | null;
|
|
1514
|
-
bookingStateStatus: number | null;
|
|
1515
|
-
timezone: string | null;
|
|
1516
|
-
shortUrl: string | null;
|
|
1517
|
-
leagueType: string | null;
|
|
1518
|
-
addressId: number | null;
|
|
1519
|
-
sportConfigData: any | null;
|
|
1520
|
-
creatorId: number | null;
|
|
1521
|
-
creatorType: string | null;
|
|
1522
|
-
userCreatorId: number | null;
|
|
1523
|
-
ownerId: number | null;
|
|
1524
|
-
sports: number[] | null;
|
|
1525
|
-
mainMediaId: number | null;
|
|
1526
|
-
publishedDate: Date | null;
|
|
1527
|
-
isPublished: boolean | null;
|
|
1528
|
-
isVerified: boolean | null;
|
|
1529
|
-
questionnaireId: number | null;
|
|
1530
|
-
logo?: Media;
|
|
1531
|
-
seasons: LeagueSeason[];
|
|
1532
|
-
}
|
|
1533
1507
|
export declare class LeagueSeason extends BondBaseEntity {
|
|
1534
1508
|
leagueId: number | null;
|
|
1535
1509
|
name: string | null;
|
|
@@ -1584,6 +1558,32 @@ export declare class LineItemHistory extends BondBaseEntity {
|
|
|
1584
1558
|
payment: Payment;
|
|
1585
1559
|
lineItem: LineItems;
|
|
1586
1560
|
}
|
|
1561
|
+
export declare class League extends OrganizationConnectionBaseEntity {
|
|
1562
|
+
name: string | null;
|
|
1563
|
+
description: string | null;
|
|
1564
|
+
allowBookingRequest: boolean | null;
|
|
1565
|
+
addressName: string | null;
|
|
1566
|
+
shortDescription: string | null;
|
|
1567
|
+
waiverDoc: string | null;
|
|
1568
|
+
bookingStateStatus: number | null;
|
|
1569
|
+
timezone: string | null;
|
|
1570
|
+
shortUrl: string | null;
|
|
1571
|
+
leagueType: string | null;
|
|
1572
|
+
addressId: number | null;
|
|
1573
|
+
sportConfigData: any | null;
|
|
1574
|
+
creatorId: number | null;
|
|
1575
|
+
creatorType: string | null;
|
|
1576
|
+
userCreatorId: number | null;
|
|
1577
|
+
ownerId: number | null;
|
|
1578
|
+
sports: number[] | null;
|
|
1579
|
+
mainMediaId: number | null;
|
|
1580
|
+
publishedDate: Date | null;
|
|
1581
|
+
isPublished: boolean | null;
|
|
1582
|
+
isVerified: boolean | null;
|
|
1583
|
+
questionnaireId: number | null;
|
|
1584
|
+
logo?: Media;
|
|
1585
|
+
seasons: LeagueSeason[];
|
|
1586
|
+
}
|
|
1587
1587
|
export declare class LineItems extends BondBaseEntity {
|
|
1588
1588
|
constructor();
|
|
1589
1589
|
defineIsReverted(): void;
|
|
@@ -1722,12 +1722,6 @@ export declare class MembershipMember extends OrganizationConnectionBaseEntity {
|
|
|
1722
1722
|
cancellationStatus?: CancellationStatusEnum;
|
|
1723
1723
|
isImported?: boolean;
|
|
1724
1724
|
}
|
|
1725
|
-
export declare class NotificationSubscriptions extends OrganizationConnectionBaseEntity {
|
|
1726
|
-
email: string | null;
|
|
1727
|
-
notificationType: NotificationTypeEnum | null;
|
|
1728
|
-
resourceId: number | null;
|
|
1729
|
-
resourceType: string | null;
|
|
1730
|
-
}
|
|
1731
1725
|
export declare class OpeningTime extends OrganizationConnectionBaseEntity {
|
|
1732
1726
|
id: number;
|
|
1733
1727
|
dayOfWeek: number;
|
|
@@ -1739,6 +1733,12 @@ export declare class OpeningTime extends OrganizationConnectionBaseEntity {
|
|
|
1739
1733
|
deletedAt?: Date;
|
|
1740
1734
|
facility: Facility;
|
|
1741
1735
|
}
|
|
1736
|
+
export declare class NotificationSubscriptions extends OrganizationConnectionBaseEntity {
|
|
1737
|
+
email: string | null;
|
|
1738
|
+
notificationType: NotificationTypeEnum | null;
|
|
1739
|
+
resourceId: number | null;
|
|
1740
|
+
resourceType: string | null;
|
|
1741
|
+
}
|
|
1742
1742
|
export declare class OrganizationConnectionBaseEntity extends BondBaseEntity {
|
|
1743
1743
|
organizationId: number;
|
|
1744
1744
|
}
|
|
@@ -1796,12 +1796,6 @@ export declare class PaymentFailConfig extends OrganizationConnectionBaseEntity
|
|
|
1796
1796
|
failureIndex: number;
|
|
1797
1797
|
waitingDays: number;
|
|
1798
1798
|
}
|
|
1799
|
-
export declare class PaymentFailure extends OrganizationConnectionBaseEntity {
|
|
1800
|
-
paymentInstallmentId?: number;
|
|
1801
|
-
invoiceId: number;
|
|
1802
|
-
reason: EFailedPaymentReasons;
|
|
1803
|
-
errorMessage: string;
|
|
1804
|
-
}
|
|
1805
1799
|
export declare class PaymentNote extends OrganizationConnectionBaseEntity {
|
|
1806
1800
|
content: string;
|
|
1807
1801
|
creatingUserId: number;
|
|
@@ -1811,6 +1805,18 @@ export declare class PaymentNote extends OrganizationConnectionBaseEntity {
|
|
|
1811
1805
|
paymentId: number;
|
|
1812
1806
|
payment: Payment;
|
|
1813
1807
|
}
|
|
1808
|
+
export declare class PaymentFailure extends OrganizationConnectionBaseEntity {
|
|
1809
|
+
paymentInstallmentId?: number;
|
|
1810
|
+
invoiceId: number;
|
|
1811
|
+
reason: EFailedPaymentReasons;
|
|
1812
|
+
errorMessage: string;
|
|
1813
|
+
}
|
|
1814
|
+
export declare class PaymentPlanSchedule extends OrganizationConnectionBaseEntity {
|
|
1815
|
+
paymentPlanId: number;
|
|
1816
|
+
paymentDate: Date;
|
|
1817
|
+
deletedAt?: Date;
|
|
1818
|
+
paymentPlan: ProductPaymentPlan;
|
|
1819
|
+
}
|
|
1814
1820
|
export declare class PaymentV1 extends BondBaseEntity {
|
|
1815
1821
|
userId: number | null;
|
|
1816
1822
|
ownerId: number | null;
|
|
@@ -1829,29 +1835,6 @@ export declare class PaymentV1 extends BondBaseEntity {
|
|
|
1829
1835
|
installmentId: number | null;
|
|
1830
1836
|
invoiceId: string | null;
|
|
1831
1837
|
}
|
|
1832
|
-
export declare class PaymentPlanSchedule extends OrganizationConnectionBaseEntity {
|
|
1833
|
-
paymentPlanId: number;
|
|
1834
|
-
paymentDate: Date;
|
|
1835
|
-
deletedAt?: Date;
|
|
1836
|
-
paymentPlan: ProductPaymentPlan;
|
|
1837
|
-
}
|
|
1838
|
-
export declare class Price extends OrganizationConnectionBaseEntity {
|
|
1839
|
-
productId: number;
|
|
1840
|
-
product: Product;
|
|
1841
|
-
name: string | null;
|
|
1842
|
-
price: number;
|
|
1843
|
-
currency: CurrencyEnum;
|
|
1844
|
-
paymentProcessorId: number | null;
|
|
1845
|
-
startDate: Date;
|
|
1846
|
-
endDate: Date;
|
|
1847
|
-
groupId?: number;
|
|
1848
|
-
groupName?: string;
|
|
1849
|
-
originalPrice?: number;
|
|
1850
|
-
deletedAt?: Date;
|
|
1851
|
-
discountMethod?: DiscountMethodsEnum;
|
|
1852
|
-
discountValue?: number;
|
|
1853
|
-
taxIncludedPrice?: number;
|
|
1854
|
-
}
|
|
1855
1838
|
export declare class Product extends OrganizationConnectionBaseEntity {
|
|
1856
1839
|
name: string;
|
|
1857
1840
|
quantity: number;
|
|
@@ -1902,6 +1885,32 @@ export declare class Product extends OrganizationConnectionBaseEntity {
|
|
|
1902
1885
|
activityTimes: ActivityTimes[];
|
|
1903
1886
|
purchasedResources: PurchasedResource[];
|
|
1904
1887
|
}
|
|
1888
|
+
export declare class Price extends OrganizationConnectionBaseEntity {
|
|
1889
|
+
productId: number;
|
|
1890
|
+
product: Product;
|
|
1891
|
+
name: string | null;
|
|
1892
|
+
price: number;
|
|
1893
|
+
currency: CurrencyEnum;
|
|
1894
|
+
paymentProcessorId: number | null;
|
|
1895
|
+
startDate: Date;
|
|
1896
|
+
endDate: Date;
|
|
1897
|
+
groupId?: number;
|
|
1898
|
+
groupName?: string;
|
|
1899
|
+
originalPrice?: number;
|
|
1900
|
+
deletedAt?: Date;
|
|
1901
|
+
discountMethod?: DiscountMethodsEnum;
|
|
1902
|
+
discountValue?: number;
|
|
1903
|
+
taxIncludedPrice?: number;
|
|
1904
|
+
}
|
|
1905
|
+
export declare class ProductPaymentPlan extends OrganizationConnectionBaseEntity {
|
|
1906
|
+
productId: number;
|
|
1907
|
+
maxMonths?: number;
|
|
1908
|
+
dayOfMonth?: number;
|
|
1909
|
+
name: string;
|
|
1910
|
+
deletedAt?: Date;
|
|
1911
|
+
schedule: PaymentPlanSchedule[];
|
|
1912
|
+
product?: Product;
|
|
1913
|
+
}
|
|
1905
1914
|
export declare class ProductPackage extends OrganizationConnectionBaseEntity {
|
|
1906
1915
|
parentProductId: number;
|
|
1907
1916
|
childProductId: number;
|
|
@@ -1917,15 +1926,6 @@ export declare class ProductPackage extends OrganizationConnectionBaseEntity {
|
|
|
1917
1926
|
durationDays?: number;
|
|
1918
1927
|
level?: ProductPackageLevelEnum;
|
|
1919
1928
|
}
|
|
1920
|
-
export declare class ProductPaymentPlan extends OrganizationConnectionBaseEntity {
|
|
1921
|
-
productId: number;
|
|
1922
|
-
maxMonths?: number;
|
|
1923
|
-
dayOfMonth?: number;
|
|
1924
|
-
name: string;
|
|
1925
|
-
deletedAt?: Date;
|
|
1926
|
-
schedule: PaymentPlanSchedule[];
|
|
1927
|
-
product?: Product;
|
|
1928
|
-
}
|
|
1929
1929
|
export declare class ProductResource extends OrganizationConnectionBaseEntity {
|
|
1930
1930
|
productId: number;
|
|
1931
1931
|
resourceId: number;
|
|
@@ -1941,6 +1941,10 @@ export declare class ProductToVariantTitle extends OrganizationConnectionBaseEnt
|
|
|
1941
1941
|
productId: number;
|
|
1942
1942
|
variantTitleId: number;
|
|
1943
1943
|
}
|
|
1944
|
+
export declare class ProductToVariant extends OrganizationConnectionBaseEntity {
|
|
1945
|
+
productId: number;
|
|
1946
|
+
variantId: number;
|
|
1947
|
+
}
|
|
1944
1948
|
export declare class ProductsReservedForCustomers extends OrganizationConnectionBaseEntity {
|
|
1945
1949
|
productId: number;
|
|
1946
1950
|
customerId: number;
|
|
@@ -1948,10 +1952,6 @@ export declare class ProductsReservedForCustomers extends OrganizationConnection
|
|
|
1948
1952
|
deletedAt?: Date;
|
|
1949
1953
|
product: Product;
|
|
1950
1954
|
}
|
|
1951
|
-
export declare class ProductToVariant extends OrganizationConnectionBaseEntity {
|
|
1952
|
-
productId: number;
|
|
1953
|
-
variantId: number;
|
|
1954
|
-
}
|
|
1955
1955
|
export declare class ProductsUsers extends OrganizationConnectionBaseEntity {
|
|
1956
1956
|
productId: number;
|
|
1957
1957
|
userId: number;
|
|
@@ -1991,14 +1991,6 @@ export declare class Program extends BondBaseEntity {
|
|
|
1991
1991
|
programSeason: ProgramSeason[];
|
|
1992
1992
|
purchasedResources: PurchasedResource[];
|
|
1993
1993
|
}
|
|
1994
|
-
export declare class ProgramHighlights extends BondBaseEntity {
|
|
1995
|
-
type: ProgramHighlightTypeEnum;
|
|
1996
|
-
ordinal: number | null;
|
|
1997
|
-
title: string | null;
|
|
1998
|
-
data: any | null;
|
|
1999
|
-
program: Program;
|
|
2000
|
-
deletedAt?: Date;
|
|
2001
|
-
}
|
|
2002
1994
|
export declare class ProgramSeason extends BondBaseEntity {
|
|
2003
1995
|
programId: number;
|
|
2004
1996
|
name: string;
|
|
@@ -2054,6 +2046,14 @@ export declare class ProgramSeason extends BondBaseEntity {
|
|
|
2054
2046
|
facility: Facility;
|
|
2055
2047
|
purchasedResources: PurchasedResource[];
|
|
2056
2048
|
}
|
|
2049
|
+
export declare class ProgramHighlights extends BondBaseEntity {
|
|
2050
|
+
type: ProgramHighlightTypeEnum;
|
|
2051
|
+
ordinal: number | null;
|
|
2052
|
+
title: string | null;
|
|
2053
|
+
data: any | null;
|
|
2054
|
+
program: Program;
|
|
2055
|
+
deletedAt?: Date;
|
|
2056
|
+
}
|
|
2057
2057
|
export declare class PurchasedResource extends OrganizationConnectionBaseEntity {
|
|
2058
2058
|
productUserId: number;
|
|
2059
2059
|
resourceId: number;
|
|
@@ -2094,6 +2094,11 @@ export declare class Questions extends BondBaseEntity {
|
|
|
2094
2094
|
ownerId: number | null;
|
|
2095
2095
|
questionnaireId: number | null;
|
|
2096
2096
|
}
|
|
2097
|
+
export declare class RefundReason extends OrganizationConnectionBaseEntity {
|
|
2098
|
+
reason: string;
|
|
2099
|
+
ordinal: number;
|
|
2100
|
+
deletedAt: Date;
|
|
2101
|
+
}
|
|
2097
2102
|
export declare class RegistrationConstraint extends OrganizationConnectionBaseEntity {
|
|
2098
2103
|
resourceType: ResourceNameTypeEnum;
|
|
2099
2104
|
resourceId: number;
|
|
@@ -2105,11 +2110,6 @@ export declare class RegistrationConstraint extends OrganizationConnectionBaseEn
|
|
|
2105
2110
|
closeTime?: string;
|
|
2106
2111
|
deletedAt?: Date;
|
|
2107
2112
|
}
|
|
2108
|
-
export declare class RefundReason extends OrganizationConnectionBaseEntity {
|
|
2109
|
-
reason: string;
|
|
2110
|
-
ordinal: number;
|
|
2111
|
-
deletedAt: Date;
|
|
2112
|
-
}
|
|
2113
2113
|
export declare class Reservations extends OrganizationConnectionBaseEntity {
|
|
2114
2114
|
name?: string;
|
|
2115
2115
|
description?: string;
|
|
@@ -2142,6 +2142,13 @@ export declare class Reservations extends OrganizationConnectionBaseEntity {
|
|
|
2142
2142
|
publicNotes?: string;
|
|
2143
2143
|
slots?: Slot[];
|
|
2144
2144
|
}
|
|
2145
|
+
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2146
|
+
name: string;
|
|
2147
|
+
facilityId: number;
|
|
2148
|
+
parentSlotId: number;
|
|
2149
|
+
childrenSlotIds: number[];
|
|
2150
|
+
deletedAt?: Date;
|
|
2151
|
+
}
|
|
2145
2152
|
export declare class Resource extends OrganizationConnectionBaseEntity {
|
|
2146
2153
|
name: string;
|
|
2147
2154
|
resourceType: ResourceTypeEnum;
|
|
@@ -2170,13 +2177,6 @@ export declare class Resource extends OrganizationConnectionBaseEntity {
|
|
|
2170
2177
|
purchasedResources: PurchasedResource[];
|
|
2171
2178
|
linkSEO: string;
|
|
2172
2179
|
}
|
|
2173
|
-
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2174
|
-
name: string;
|
|
2175
|
-
facilityId: number;
|
|
2176
|
-
parentSlotId: number;
|
|
2177
|
-
childrenSlotIds: number[];
|
|
2178
|
-
deletedAt?: Date;
|
|
2179
|
-
}
|
|
2180
2180
|
export declare class School extends BondBaseEntity {
|
|
2181
2181
|
name: string | null;
|
|
2182
2182
|
alias: string[] | null;
|
|
@@ -2199,12 +2199,6 @@ export declare class SeasonAttendee extends BondBaseEntity {
|
|
|
2199
2199
|
deletedAt?: Date;
|
|
2200
2200
|
purchasedResource: PurchasedResource;
|
|
2201
2201
|
}
|
|
2202
|
-
export declare class SeasonDivisions extends BondBaseEntity {
|
|
2203
|
-
name: string | null;
|
|
2204
|
-
ordinal: number | null;
|
|
2205
|
-
seasonId: number | null;
|
|
2206
|
-
color: string | null;
|
|
2207
|
-
}
|
|
2208
2202
|
export declare class SeasonPool extends BondBaseEntity {
|
|
2209
2203
|
seasonId?: number;
|
|
2210
2204
|
userId?: number;
|
|
@@ -2220,6 +2214,12 @@ export declare class SeasonPool extends BondBaseEntity {
|
|
|
2220
2214
|
purchasedResource: PurchasedResource;
|
|
2221
2215
|
season: LeagueSeason;
|
|
2222
2216
|
}
|
|
2217
|
+
export declare class SeasonDivisions extends BondBaseEntity {
|
|
2218
|
+
name: string | null;
|
|
2219
|
+
ordinal: number | null;
|
|
2220
|
+
seasonId: number | null;
|
|
2221
|
+
color: string | null;
|
|
2222
|
+
}
|
|
2223
2223
|
export declare class SeasonTeam extends BondBaseEntity {
|
|
2224
2224
|
seasonId: number | null;
|
|
2225
2225
|
teamId: number | null;
|
|
@@ -2313,11 +2313,6 @@ export declare class TeamMember extends BondBaseEntity {
|
|
|
2313
2313
|
role: TeamMemberRoleEnum;
|
|
2314
2314
|
user: User;
|
|
2315
2315
|
}
|
|
2316
|
-
export declare class UberOrganization extends BondBaseEntity {
|
|
2317
|
-
name: string;
|
|
2318
|
-
deletedAt: Date | null;
|
|
2319
|
-
organizations: Organization[];
|
|
2320
|
-
}
|
|
2321
2316
|
export declare class User extends BondBaseEntity {
|
|
2322
2317
|
firstName: string | null;
|
|
2323
2318
|
lastName: string | null;
|
|
@@ -2357,6 +2352,14 @@ export declare class User extends BondBaseEntity {
|
|
|
2357
2352
|
invoiceNotes: InvoiceNote[];
|
|
2358
2353
|
paymentNotes: PaymentNote[];
|
|
2359
2354
|
}
|
|
2355
|
+
export declare class UserInFamilyAccount extends BondBaseEntity {
|
|
2356
|
+
familyAccountId: number;
|
|
2357
|
+
userId: number;
|
|
2358
|
+
isAdmin: boolean;
|
|
2359
|
+
user: User;
|
|
2360
|
+
familyAccount: FamilyAccount;
|
|
2361
|
+
deletedAt?: Date;
|
|
2362
|
+
}
|
|
2360
2363
|
export declare class UserAuthorizations extends BondBaseEntity {
|
|
2361
2364
|
entityId: number | null;
|
|
2362
2365
|
userId: number | null;
|
|
@@ -2371,29 +2374,26 @@ export declare class UserPaymentMethod extends BondBaseEntity {
|
|
|
2371
2374
|
paymentMethodId: string;
|
|
2372
2375
|
nextAllowedChargeDate?: Date;
|
|
2373
2376
|
}
|
|
2374
|
-
export declare class UserInFamilyAccount extends BondBaseEntity {
|
|
2375
|
-
familyAccountId: number;
|
|
2376
|
-
userId: number;
|
|
2377
|
-
isAdmin: boolean;
|
|
2378
|
-
user: User;
|
|
2379
|
-
familyAccount: FamilyAccount;
|
|
2380
|
-
deletedAt?: Date;
|
|
2381
|
-
}
|
|
2382
2377
|
export declare class UsersInGroup extends BondBaseEntity {
|
|
2383
2378
|
groupId: number;
|
|
2384
2379
|
userId: number;
|
|
2385
2380
|
deletedAt?: Date;
|
|
2386
2381
|
}
|
|
2387
|
-
export declare class
|
|
2382
|
+
export declare class UberOrganization extends BondBaseEntity {
|
|
2388
2383
|
name: string;
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
deletedAt?: Date;
|
|
2384
|
+
deletedAt: Date | null;
|
|
2385
|
+
organizations: Organization[];
|
|
2392
2386
|
}
|
|
2393
2387
|
export declare class VariantTitle extends OrganizationConnectionBaseEntity {
|
|
2394
2388
|
name: string;
|
|
2395
2389
|
variants: Variant[];
|
|
2396
2390
|
}
|
|
2391
|
+
export declare class Variant extends OrganizationConnectionBaseEntity {
|
|
2392
|
+
name: string;
|
|
2393
|
+
variantTitleId: number;
|
|
2394
|
+
variantTitle: VariantTitle;
|
|
2395
|
+
deletedAt?: Date;
|
|
2396
|
+
}
|
|
2397
2397
|
export declare class WebflowOrganizationConfiguration extends OrganizationConnectionBaseEntity {
|
|
2398
2398
|
projectToken: string;
|
|
2399
2399
|
programTypesCollectionId?: string;
|
|
@@ -3308,6 +3308,20 @@ export interface IReservationCreatorData {
|
|
|
3308
3308
|
endDate: string;
|
|
3309
3309
|
sportId: number;
|
|
3310
3310
|
}
|
|
3311
|
+
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3312
|
+
name?: string;
|
|
3313
|
+
genderStr?: string;
|
|
3314
|
+
parentID?: string;
|
|
3315
|
+
partnerID?: string;
|
|
3316
|
+
membershipName?: string;
|
|
3317
|
+
membershipExpDate?: string;
|
|
3318
|
+
membershipCreationDate?: string;
|
|
3319
|
+
bondMembershipID?: number;
|
|
3320
|
+
}
|
|
3321
|
+
export declare class AddFamilyDto {
|
|
3322
|
+
parents: AddImportedCustomerDto[];
|
|
3323
|
+
children: AddImportedCustomerDto[];
|
|
3324
|
+
}
|
|
3311
3325
|
export declare class ColumnNumericTransformer {
|
|
3312
3326
|
to(data: number): number;
|
|
3313
3327
|
from(data: string): number;
|
|
@@ -3358,20 +3372,6 @@ export declare class ProductImportDto {
|
|
|
3358
3372
|
resourceIds: number[];
|
|
3359
3373
|
oldId: number;
|
|
3360
3374
|
}
|
|
3361
|
-
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3362
|
-
name?: string;
|
|
3363
|
-
genderStr?: string;
|
|
3364
|
-
parentID?: string;
|
|
3365
|
-
partnerID?: string;
|
|
3366
|
-
membershipName?: string;
|
|
3367
|
-
membershipExpDate?: string;
|
|
3368
|
-
membershipCreationDate?: string;
|
|
3369
|
-
bondMembershipID?: number;
|
|
3370
|
-
}
|
|
3371
|
-
export declare class AddFamilyDto {
|
|
3372
|
-
parents: AddImportedCustomerDto[];
|
|
3373
|
-
children: AddImportedCustomerDto[];
|
|
3374
|
-
}
|
|
3375
3375
|
export declare class PunchPassDto {
|
|
3376
3376
|
CustomerID: string;
|
|
3377
3377
|
QuantityLeft: number;
|
|
@@ -3443,6 +3443,11 @@ export declare class MatchParticipants extends BondBaseEntity {
|
|
|
3443
3443
|
score: number | null;
|
|
3444
3444
|
gameSlotId: number | null;
|
|
3445
3445
|
}
|
|
3446
|
+
export declare class Matches extends BondBaseEntity {
|
|
3447
|
+
eventId: number | null;
|
|
3448
|
+
status: number | null;
|
|
3449
|
+
excludeStandings: boolean | null;
|
|
3450
|
+
}
|
|
3446
3451
|
export declare class RoundEvents extends BaseEntity {
|
|
3447
3452
|
roundId: number;
|
|
3448
3453
|
eventId: number;
|
|
@@ -3450,11 +3455,6 @@ export declare class RoundEvents extends BaseEntity {
|
|
|
3450
3455
|
createdAt: Date;
|
|
3451
3456
|
updatedAt: Date;
|
|
3452
3457
|
}
|
|
3453
|
-
export declare class Matches extends BondBaseEntity {
|
|
3454
|
-
eventId: number | null;
|
|
3455
|
-
status: number | null;
|
|
3456
|
-
excludeStandings: boolean | null;
|
|
3457
|
-
}
|
|
3458
3458
|
export declare class SeasonRounds extends BondBaseEntity {
|
|
3459
3459
|
seasonId: number;
|
|
3460
3460
|
ordinal?: number;
|
|
@@ -3470,6 +3470,12 @@ export declare class Lock extends BondBaseEntity {
|
|
|
3470
3470
|
name: string;
|
|
3471
3471
|
locked?: Date;
|
|
3472
3472
|
}
|
|
3473
|
+
export declare class CreateMonitorConfigDto {
|
|
3474
|
+
facilityId: number;
|
|
3475
|
+
name: string;
|
|
3476
|
+
code: string;
|
|
3477
|
+
config: any;
|
|
3478
|
+
}
|
|
3473
3479
|
export interface ValidatedMonthAndDay {
|
|
3474
3480
|
valid: boolean;
|
|
3475
3481
|
month?: number;
|
|
@@ -3491,17 +3497,6 @@ export interface PaymentStatusesDict {
|
|
|
3491
3497
|
export interface PaymentStatusDict {
|
|
3492
3498
|
[id: number]: ReservationPaymentStatusEnum;
|
|
3493
3499
|
}
|
|
3494
|
-
export declare class CreateMonitorConfigDto {
|
|
3495
|
-
facilityId: number;
|
|
3496
|
-
name: string;
|
|
3497
|
-
code: string;
|
|
3498
|
-
config: any;
|
|
3499
|
-
}
|
|
3500
|
-
export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
|
|
3501
|
-
facilityId: number;
|
|
3502
|
-
code: string;
|
|
3503
|
-
config?: any;
|
|
3504
|
-
}
|
|
3505
3500
|
export declare class NotifyTracker extends BondBaseEntity {
|
|
3506
3501
|
userId: number;
|
|
3507
3502
|
organizationId: number;
|
|
@@ -3509,6 +3504,11 @@ export declare class NotifyTracker extends BondBaseEntity {
|
|
|
3509
3504
|
notfiyMethodtype: NotifyMethodEnum;
|
|
3510
3505
|
destination: string;
|
|
3511
3506
|
}
|
|
3507
|
+
export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
|
|
3508
|
+
facilityId: number;
|
|
3509
|
+
code: string;
|
|
3510
|
+
config?: any;
|
|
3511
|
+
}
|
|
3512
3512
|
export declare class ByOrganizationIdDto {
|
|
3513
3513
|
organizationId: number;
|
|
3514
3514
|
}
|
|
@@ -3528,16 +3528,10 @@ export declare class FindUnallocatedEventsFiltersDto extends PaginationQuery {
|
|
|
3528
3528
|
programsIds?: string;
|
|
3529
3529
|
sessionsIds?: string;
|
|
3530
3530
|
segmentsIds?: string;
|
|
3531
|
-
startDate?: string;
|
|
3532
|
-
endDate?: string;
|
|
3533
|
-
months?: string;
|
|
3534
|
-
dow?: string;
|
|
3535
|
-
}
|
|
3536
|
-
export declare class OrganizationBranding extends OrganizationConnectionBaseEntity {
|
|
3537
|
-
key?: string;
|
|
3538
|
-
vaule?: string;
|
|
3539
|
-
version: number;
|
|
3540
|
-
organization: Organization;
|
|
3531
|
+
startDate?: string;
|
|
3532
|
+
endDate?: string;
|
|
3533
|
+
months?: string;
|
|
3534
|
+
dow?: string;
|
|
3541
3535
|
}
|
|
3542
3536
|
export declare class Organization extends BondBaseEntity {
|
|
3543
3537
|
name: string | null;
|
|
@@ -3592,68 +3586,16 @@ export declare class Organization extends BondBaseEntity {
|
|
|
3592
3586
|
export declare class OrganizationSettings extends OrganizationConnectionBaseEntity {
|
|
3593
3587
|
mainAdminUserId?: number;
|
|
3594
3588
|
}
|
|
3595
|
-
export
|
|
3596
|
-
|
|
3597
|
-
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
daysOfWeek?: number[];
|
|
3601
|
-
}
|
|
3602
|
-
export interface Duration {
|
|
3603
|
-
startDate: string;
|
|
3604
|
-
endDate: string;
|
|
3605
|
-
}
|
|
3606
|
-
export interface IUnallocatedEventRes {
|
|
3607
|
-
id: number;
|
|
3608
|
-
title: string;
|
|
3609
|
-
sports: number[];
|
|
3610
|
-
startDate: string;
|
|
3611
|
-
startDateString: string;
|
|
3612
|
-
startTime: string;
|
|
3613
|
-
endDate: string;
|
|
3614
|
-
endDateString: string;
|
|
3615
|
-
endTime: string;
|
|
3616
|
-
timezone: string;
|
|
3617
|
-
}
|
|
3618
|
-
export interface IUnallocatedEventsIdsRes {
|
|
3619
|
-
data: IUnallocatedEventRes[];
|
|
3589
|
+
export declare class OrganizationBranding extends OrganizationConnectionBaseEntity {
|
|
3590
|
+
key?: string;
|
|
3591
|
+
vaule?: string;
|
|
3592
|
+
version: number;
|
|
3593
|
+
organization: Organization;
|
|
3620
3594
|
}
|
|
3621
3595
|
export declare class OrganizationUsers extends BondBaseEntity {
|
|
3622
3596
|
organisationId: number | null;
|
|
3623
3597
|
userId: number | null;
|
|
3624
3598
|
}
|
|
3625
|
-
export declare class VoidDto {
|
|
3626
|
-
lineItems: VoidLineItemDto[];
|
|
3627
|
-
meta?: RevertMetaDto;
|
|
3628
|
-
}
|
|
3629
|
-
export declare class VoidLineItemDto {
|
|
3630
|
-
id: number;
|
|
3631
|
-
quantity?: number;
|
|
3632
|
-
isEdit?: boolean;
|
|
3633
|
-
amount?: number;
|
|
3634
|
-
}
|
|
3635
|
-
export declare class RefundDto {
|
|
3636
|
-
invoiceId: number;
|
|
3637
|
-
lineItems: RefundLineItemAmountDto[];
|
|
3638
|
-
refundLineItemAmountDict?: {
|
|
3639
|
-
[id: number]: number;
|
|
3640
|
-
};
|
|
3641
|
-
refunds: PaymentMethodDto[];
|
|
3642
|
-
refundType: RefundTypeEnum;
|
|
3643
|
-
reasonId: number;
|
|
3644
|
-
note?: string;
|
|
3645
|
-
shiftId?: number;
|
|
3646
|
-
meta?: RevertMetaDto;
|
|
3647
|
-
}
|
|
3648
|
-
export declare class PaymentMethodDto {
|
|
3649
|
-
paymentMethodType: PaymentMethodTypeEnum;
|
|
3650
|
-
amount: number;
|
|
3651
|
-
paymentMethodId?: string;
|
|
3652
|
-
}
|
|
3653
|
-
export declare class RefundLineItemAmountDto {
|
|
3654
|
-
id: number;
|
|
3655
|
-
refundAmount: number;
|
|
3656
|
-
}
|
|
3657
3599
|
export declare class CustomerIdDto {
|
|
3658
3600
|
customerId: number;
|
|
3659
3601
|
}
|
|
@@ -3776,6 +3718,38 @@ export declare class SendRequestDto {
|
|
|
3776
3718
|
sendToEmail: string;
|
|
3777
3719
|
memo?: string;
|
|
3778
3720
|
}
|
|
3721
|
+
export declare class RefundDto {
|
|
3722
|
+
invoiceId: number;
|
|
3723
|
+
lineItems: RefundLineItemAmountDto[];
|
|
3724
|
+
refundLineItemAmountDict?: {
|
|
3725
|
+
[id: number]: number;
|
|
3726
|
+
};
|
|
3727
|
+
refunds: PaymentMethodDto[];
|
|
3728
|
+
refundType: RefundTypeEnum;
|
|
3729
|
+
reasonId: number;
|
|
3730
|
+
note?: string;
|
|
3731
|
+
shiftId?: number;
|
|
3732
|
+
meta?: RevertMetaDto;
|
|
3733
|
+
}
|
|
3734
|
+
export declare class PaymentMethodDto {
|
|
3735
|
+
paymentMethodType: PaymentMethodTypeEnum;
|
|
3736
|
+
amount: number;
|
|
3737
|
+
paymentMethodId?: string;
|
|
3738
|
+
}
|
|
3739
|
+
export declare class RefundLineItemAmountDto {
|
|
3740
|
+
id: number;
|
|
3741
|
+
refundAmount: number;
|
|
3742
|
+
}
|
|
3743
|
+
export declare class VoidDto {
|
|
3744
|
+
lineItems: VoidLineItemDto[];
|
|
3745
|
+
meta?: RevertMetaDto;
|
|
3746
|
+
}
|
|
3747
|
+
export declare class VoidLineItemDto {
|
|
3748
|
+
id: number;
|
|
3749
|
+
quantity?: number;
|
|
3750
|
+
isEdit?: boolean;
|
|
3751
|
+
amount?: number;
|
|
3752
|
+
}
|
|
3779
3753
|
export interface PaymentResult {
|
|
3780
3754
|
paymentMethodId: string;
|
|
3781
3755
|
paymentMethodType: PaymentMethodTypeEnum;
|
|
@@ -3811,6 +3785,32 @@ export interface RefundResultWithLineItemsDict extends PaymentsResults {
|
|
|
3811
3785
|
failedLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3812
3786
|
totalAmountProcessed: number;
|
|
3813
3787
|
}
|
|
3788
|
+
export interface UnallocatedEventsFilters {
|
|
3789
|
+
programsIds?: number[];
|
|
3790
|
+
sessionsIds?: number[];
|
|
3791
|
+
segmentsIds?: number[];
|
|
3792
|
+
durations?: Duration[];
|
|
3793
|
+
daysOfWeek?: number[];
|
|
3794
|
+
}
|
|
3795
|
+
export interface Duration {
|
|
3796
|
+
startDate: string;
|
|
3797
|
+
endDate: string;
|
|
3798
|
+
}
|
|
3799
|
+
export interface IUnallocatedEventRes {
|
|
3800
|
+
id: number;
|
|
3801
|
+
title: string;
|
|
3802
|
+
sports: number[];
|
|
3803
|
+
startDate: string;
|
|
3804
|
+
startDateString: string;
|
|
3805
|
+
startTime: string;
|
|
3806
|
+
endDate: string;
|
|
3807
|
+
endDateString: string;
|
|
3808
|
+
endTime: string;
|
|
3809
|
+
timezone: string;
|
|
3810
|
+
}
|
|
3811
|
+
export interface IUnallocatedEventsIdsRes {
|
|
3812
|
+
data: IUnallocatedEventRes[];
|
|
3813
|
+
}
|
|
3814
3814
|
export declare class AddonDto {
|
|
3815
3815
|
productId: number;
|
|
3816
3816
|
id?: number;
|
|
@@ -3906,13 +3906,6 @@ export declare class LineItemDto {
|
|
|
3906
3906
|
parentOrdinal?: number;
|
|
3907
3907
|
totalPrice?: number;
|
|
3908
3908
|
}
|
|
3909
|
-
export declare class MaintenanceDto {
|
|
3910
|
-
id?: number;
|
|
3911
|
-
title: string;
|
|
3912
|
-
durationValue: number;
|
|
3913
|
-
maintenanceDurationdurationType: DurationUnitTypesEnum;
|
|
3914
|
-
maintenanceTiming: MaintenanceTimingEnum;
|
|
3915
|
-
}
|
|
3916
3909
|
export declare class PurchasedResourceDto {
|
|
3917
3910
|
resourceId?: number;
|
|
3918
3911
|
resourceType: ResourceNameTypeEnum;
|
|
@@ -3921,6 +3914,13 @@ export declare class PurchasedResourceDto {
|
|
|
3921
3914
|
endDate?: string;
|
|
3922
3915
|
endTime?: string;
|
|
3923
3916
|
}
|
|
3917
|
+
export declare class MaintenanceDto {
|
|
3918
|
+
id?: number;
|
|
3919
|
+
title: string;
|
|
3920
|
+
durationValue: number;
|
|
3921
|
+
maintenanceDurationdurationType: DurationUnitTypesEnum;
|
|
3922
|
+
maintenanceTiming: MaintenanceTimingEnum;
|
|
3923
|
+
}
|
|
3924
3924
|
export declare class ReservationDto {
|
|
3925
3925
|
id?: number;
|
|
3926
3926
|
organizationId?: number;
|
|
@@ -4074,17 +4074,6 @@ export declare class UpdateReservationInvoiceDto {
|
|
|
4074
4074
|
updateAddons?: boolean;
|
|
4075
4075
|
updateMaintenance?: boolean;
|
|
4076
4076
|
}
|
|
4077
|
-
export declare class SegmentDto {
|
|
4078
|
-
id?: number;
|
|
4079
|
-
title: string;
|
|
4080
|
-
isPrivate: boolean;
|
|
4081
|
-
resourceIds: number[];
|
|
4082
|
-
sportId?: number;
|
|
4083
|
-
series: SeriesDto[];
|
|
4084
|
-
addonIds?: number[];
|
|
4085
|
-
publicNotesForSlots?: string;
|
|
4086
|
-
privateNotesForSlots?: string;
|
|
4087
|
-
}
|
|
4088
4077
|
export declare class SeriesDto {
|
|
4089
4078
|
id?: number;
|
|
4090
4079
|
startDate: string;
|
|
@@ -4164,25 +4153,16 @@ export declare class TimeSlotsDto {
|
|
|
4164
4153
|
export declare class SlotsIdsDto {
|
|
4165
4154
|
slotsIds: number[];
|
|
4166
4155
|
}
|
|
4167
|
-
export declare class
|
|
4168
|
-
|
|
4169
|
-
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
|
|
4173
|
-
|
|
4174
|
-
|
|
4175
|
-
|
|
4176
|
-
|
|
4177
|
-
level?: ProductPackageLevelEnum;
|
|
4178
|
-
resourceId?: number;
|
|
4179
|
-
resource?: Resource;
|
|
4180
|
-
invoiceId?: number;
|
|
4181
|
-
invoice?: Invoice;
|
|
4182
|
-
productUserId?: number;
|
|
4183
|
-
productUser?: ProductsUsers;
|
|
4184
|
-
previousProductUsersIds?: number[];
|
|
4185
|
-
previousProductUsers?: ProductsUsers[];
|
|
4156
|
+
export declare class SegmentDto {
|
|
4157
|
+
id?: number;
|
|
4158
|
+
title: string;
|
|
4159
|
+
isPrivate: boolean;
|
|
4160
|
+
resourceIds: number[];
|
|
4161
|
+
sportId?: number;
|
|
4162
|
+
series: SeriesDto[];
|
|
4163
|
+
addonIds?: number[];
|
|
4164
|
+
publicNotesForSlots?: string;
|
|
4165
|
+
privateNotesForSlots?: string;
|
|
4186
4166
|
}
|
|
4187
4167
|
declare class AnswerDto {
|
|
4188
4168
|
questionId: number;
|
|
@@ -4221,6 +4201,26 @@ export declare class BookingV1Dto {
|
|
|
4221
4201
|
cashPayment: boolean;
|
|
4222
4202
|
requestOnly: boolean;
|
|
4223
4203
|
}
|
|
4204
|
+
export declare class Addon extends OrganizationConnectionBaseEntity {
|
|
4205
|
+
parentId: number;
|
|
4206
|
+
parentType: AddonParentTypeEnum;
|
|
4207
|
+
productId: number;
|
|
4208
|
+
product?: Product;
|
|
4209
|
+
quantity: number;
|
|
4210
|
+
unitPrice: number;
|
|
4211
|
+
totalPrice: number;
|
|
4212
|
+
approvalStatus: ReservationStatusEnum;
|
|
4213
|
+
paymentStatus: ReservationPaymentStatusEnum;
|
|
4214
|
+
level?: ProductPackageLevelEnum;
|
|
4215
|
+
resourceId?: number;
|
|
4216
|
+
resource?: Resource;
|
|
4217
|
+
invoiceId?: number;
|
|
4218
|
+
invoice?: Invoice;
|
|
4219
|
+
productUserId?: number;
|
|
4220
|
+
productUser?: ProductsUsers;
|
|
4221
|
+
previousProductUsersIds?: number[];
|
|
4222
|
+
previousProductUsers?: ProductsUsers[];
|
|
4223
|
+
}
|
|
4224
4224
|
export declare class InvoicedSlots extends OrganizationConnectionBaseEntity {
|
|
4225
4225
|
deletedAt?: Date;
|
|
4226
4226
|
reservationId: number;
|
|
@@ -4341,25 +4341,6 @@ export declare class Slot extends OrganizationConnectionBaseEntity {
|
|
|
4341
4341
|
conflictsCount?: number;
|
|
4342
4342
|
conflicts?: Slot[];
|
|
4343
4343
|
}
|
|
4344
|
-
export declare class Series extends OrganizationConnectionBaseEntity {
|
|
4345
|
-
deletedAt?: Date;
|
|
4346
|
-
segmentId: number;
|
|
4347
|
-
segment?: Segment;
|
|
4348
|
-
slots?: Slot[];
|
|
4349
|
-
slotDurationType: string;
|
|
4350
|
-
durationEndsAfter: number;
|
|
4351
|
-
durationUnit: string;
|
|
4352
|
-
startDate?: Date;
|
|
4353
|
-
endDate?: Date;
|
|
4354
|
-
startTime: string;
|
|
4355
|
-
endTime: string;
|
|
4356
|
-
frequency: string;
|
|
4357
|
-
repeatEvery: number;
|
|
4358
|
-
repeatOn?: number[];
|
|
4359
|
-
repeatEndDate?: Date;
|
|
4360
|
-
numberOccurrences?: number;
|
|
4361
|
-
resources?: Resource[];
|
|
4362
|
-
}
|
|
4363
4344
|
export declare enum LineItemResourceEnum {
|
|
4364
4345
|
SEGMENTS = "segments",
|
|
4365
4346
|
SERIES = "series",
|
|
@@ -4406,6 +4387,25 @@ export interface OverrideLineItemPrice {
|
|
|
4406
4387
|
export interface OverrideProductsPricing {
|
|
4407
4388
|
[productInfo: string]: ProductPricesDto;
|
|
4408
4389
|
}
|
|
4390
|
+
export declare class Series extends OrganizationConnectionBaseEntity {
|
|
4391
|
+
deletedAt?: Date;
|
|
4392
|
+
segmentId: number;
|
|
4393
|
+
segment?: Segment;
|
|
4394
|
+
slots?: Slot[];
|
|
4395
|
+
slotDurationType: string;
|
|
4396
|
+
durationEndsAfter: number;
|
|
4397
|
+
durationUnit: string;
|
|
4398
|
+
startDate?: Date;
|
|
4399
|
+
endDate?: Date;
|
|
4400
|
+
startTime: string;
|
|
4401
|
+
endTime: string;
|
|
4402
|
+
frequency: string;
|
|
4403
|
+
repeatEvery: number;
|
|
4404
|
+
repeatOn?: number[];
|
|
4405
|
+
repeatEndDate?: Date;
|
|
4406
|
+
numberOccurrences?: number;
|
|
4407
|
+
resources?: Resource[];
|
|
4408
|
+
}
|
|
4409
4409
|
export declare type TDtoResource = ReservationDto | SegmentDto | SeriesDto | SlotDto | AddonDto;
|
|
4410
4410
|
export declare type TResource = Reservation | Segment | Series | Slot | Addon;
|
|
4411
4411
|
export interface ReservationV1 {
|
|
@@ -4640,12 +4640,6 @@ export declare class Permission extends BondBaseEntity {
|
|
|
4640
4640
|
name: string;
|
|
4641
4641
|
deletedAt?: Date;
|
|
4642
4642
|
}
|
|
4643
|
-
export declare class Role extends OrganizationConnectionBaseEntity {
|
|
4644
|
-
name: string;
|
|
4645
|
-
deletedAt?: Date;
|
|
4646
|
-
permissions: Permission[];
|
|
4647
|
-
usersRoles: UserRole[];
|
|
4648
|
-
}
|
|
4649
4643
|
export declare class UserRole extends OrganizationConnectionBaseEntity {
|
|
4650
4644
|
deletedAt?: Date;
|
|
4651
4645
|
userId: number;
|
|
@@ -4653,6 +4647,12 @@ export declare class UserRole extends OrganizationConnectionBaseEntity {
|
|
|
4653
4647
|
role: Role;
|
|
4654
4648
|
user: User;
|
|
4655
4649
|
}
|
|
4650
|
+
export declare class Role extends OrganizationConnectionBaseEntity {
|
|
4651
|
+
name: string;
|
|
4652
|
+
deletedAt?: Date;
|
|
4653
|
+
permissions: Permission[];
|
|
4654
|
+
usersRoles: UserRole[];
|
|
4655
|
+
}
|
|
4656
4656
|
export declare class CloseShiftDto {
|
|
4657
4657
|
closingCashAmount: number;
|
|
4658
4658
|
}
|
|
@@ -4679,10 +4679,6 @@ export declare class FindShiftsFormattedFilters {
|
|
|
4679
4679
|
startDate?: Date;
|
|
4680
4680
|
endDate?: Date;
|
|
4681
4681
|
}
|
|
4682
|
-
export declare class OpenShiftDto {
|
|
4683
|
-
openingCashAmount: number;
|
|
4684
|
-
stationId: number;
|
|
4685
|
-
}
|
|
4686
4682
|
export declare class ShiftManagementClosingAmount {
|
|
4687
4683
|
shiftId: number;
|
|
4688
4684
|
managementClosingCashAmount: number;
|
|
@@ -4690,6 +4686,10 @@ export declare class ShiftManagementClosingAmount {
|
|
|
4690
4686
|
export declare class ManagementClosingOfShiftsDto {
|
|
4691
4687
|
managementClosingData: ShiftManagementClosingAmount[];
|
|
4692
4688
|
}
|
|
4689
|
+
export declare class OpenShiftDto {
|
|
4690
|
+
openingCashAmount: number;
|
|
4691
|
+
stationId: number;
|
|
4692
|
+
}
|
|
4693
4693
|
export declare class Shift extends OrganizationConnectionBaseEntity {
|
|
4694
4694
|
stationId: number;
|
|
4695
4695
|
station?: Station;
|