@bondsports/types 0.0.117 → 0.0.119
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 +294 -249
- package/build/index.es.js +1 -1
- package/build/index.es.js.map +1 -1
- package/build/index.js +1 -1
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -9,13 +9,6 @@ export declare class BasicActivityTimesDto {
|
|
|
9
9
|
availabilityStartDate?: string;
|
|
10
10
|
availabilityEndDate?: string;
|
|
11
11
|
}
|
|
12
|
-
export declare class FindBookingTypeSettingDto {
|
|
13
|
-
organizationId: number;
|
|
14
|
-
facilityId: number;
|
|
15
|
-
spaceId: number;
|
|
16
|
-
bookingDate: string;
|
|
17
|
-
bookingTime: string;
|
|
18
|
-
}
|
|
19
12
|
export declare class QuestionAnswersDto {
|
|
20
13
|
questionId: number;
|
|
21
14
|
value: any;
|
|
@@ -27,11 +20,12 @@ export declare class UserAnswersDto {
|
|
|
27
20
|
export declare class GetByQuestionnaireIdsDto {
|
|
28
21
|
questionnaireIds: string;
|
|
29
22
|
}
|
|
30
|
-
export declare
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
23
|
+
export declare class FindBookingTypeSettingDto {
|
|
24
|
+
organizationId: number;
|
|
25
|
+
facilityId: number;
|
|
26
|
+
spaceId: number;
|
|
27
|
+
bookingDate: string;
|
|
28
|
+
bookingTime: string;
|
|
35
29
|
}
|
|
36
30
|
export declare class FindByMembershipIdDto extends ByOrganizationIdDto {
|
|
37
31
|
membershipId: number;
|
|
@@ -281,6 +275,12 @@ export declare class PaginationRangeQuery {
|
|
|
281
275
|
endPage: number;
|
|
282
276
|
itemsPerPage: number;
|
|
283
277
|
}
|
|
278
|
+
export declare enum EConfigurationKeys {
|
|
279
|
+
MAX_ALLOWED_PM_FAILURE = "max_allowed_pm_failure"
|
|
280
|
+
}
|
|
281
|
+
export declare enum EFailedPaymentReasons {
|
|
282
|
+
CARD_BLOCKED = "card_blocked_by_bond"
|
|
283
|
+
}
|
|
284
284
|
export declare class FindGlCodeByOrganizationIdDto {
|
|
285
285
|
organizationId: number;
|
|
286
286
|
}
|
|
@@ -364,62 +364,6 @@ export declare class MoveTeamOrMemberDto implements IMoveSeason {
|
|
|
364
364
|
export declare class MoveTeamOrMembersByCsvDTO {
|
|
365
365
|
fileName: string;
|
|
366
366
|
}
|
|
367
|
-
export declare class CreateMembershipDto {
|
|
368
|
-
organizationId: number;
|
|
369
|
-
name: string;
|
|
370
|
-
description?: string;
|
|
371
|
-
customerTypes: CustomerInMembershipTypeEnum[];
|
|
372
|
-
activity: SportsEnum;
|
|
373
|
-
facilityId: number;
|
|
374
|
-
questionnaires: number[];
|
|
375
|
-
minAgeYears: number;
|
|
376
|
-
maxAgeYears: number;
|
|
377
|
-
gender: GenderEnum;
|
|
378
|
-
maxMembers?: number;
|
|
379
|
-
maxMaleMembers?: number;
|
|
380
|
-
maxFemaleMembers?: number;
|
|
381
|
-
startDate: string;
|
|
382
|
-
endDate: string;
|
|
383
|
-
registrationStartDate?: Date;
|
|
384
|
-
registrationEndDate?: Date;
|
|
385
|
-
membershipType: MembershipTypeEnum;
|
|
386
|
-
durationMonths: number;
|
|
387
|
-
longDescription?: string;
|
|
388
|
-
isAutoRenew?: boolean;
|
|
389
|
-
}
|
|
390
|
-
export declare class UpdateMembrshipDto extends CreateMembershipDto {
|
|
391
|
-
id: number;
|
|
392
|
-
}
|
|
393
|
-
export declare class UpdateMembershipMediaDto {
|
|
394
|
-
membershipId: number;
|
|
395
|
-
mediaId: number;
|
|
396
|
-
}
|
|
397
|
-
export declare class FindMembershipByIdDto {
|
|
398
|
-
membershipId: number;
|
|
399
|
-
}
|
|
400
|
-
export declare class FindMembershipsByOrganizationIdDto {
|
|
401
|
-
organizationId: number;
|
|
402
|
-
}
|
|
403
|
-
export declare class FindMembershipsByUserIdDto {
|
|
404
|
-
userId: number;
|
|
405
|
-
}
|
|
406
|
-
export declare class SetMembersStartDateByOrganization extends FindMembershipsByOrganizationIdDto {
|
|
407
|
-
startDate: string;
|
|
408
|
-
}
|
|
409
|
-
export declare class MembershipIdsDto {
|
|
410
|
-
membershipIds?: number[];
|
|
411
|
-
}
|
|
412
|
-
export declare class MemberIdDto {
|
|
413
|
-
memberId?: number;
|
|
414
|
-
}
|
|
415
|
-
export declare class FindMembersOptionsDto extends PaginationQuery {
|
|
416
|
-
nameEmailSearch?: string;
|
|
417
|
-
pastMemberships?: string;
|
|
418
|
-
}
|
|
419
|
-
export declare class CancelMembershipDto {
|
|
420
|
-
isImmediatelyCancel: boolean;
|
|
421
|
-
cancellationReason?: string;
|
|
422
|
-
}
|
|
423
367
|
export declare class CreateEntitlementTermsDto {
|
|
424
368
|
organizationId: number;
|
|
425
369
|
entitlementGroupId: number;
|
|
@@ -683,6 +627,62 @@ export declare class createResourceDto {
|
|
|
683
627
|
export declare class archiveDto {
|
|
684
628
|
isArchive: boolean;
|
|
685
629
|
}
|
|
630
|
+
export declare class CreateMembershipDto {
|
|
631
|
+
organizationId: number;
|
|
632
|
+
name: string;
|
|
633
|
+
description?: string;
|
|
634
|
+
customerTypes: CustomerInMembershipTypeEnum[];
|
|
635
|
+
activity: SportsEnum;
|
|
636
|
+
facilityId: number;
|
|
637
|
+
questionnaires: number[];
|
|
638
|
+
minAgeYears: number;
|
|
639
|
+
maxAgeYears: number;
|
|
640
|
+
gender: GenderEnum;
|
|
641
|
+
maxMembers?: number;
|
|
642
|
+
maxMaleMembers?: number;
|
|
643
|
+
maxFemaleMembers?: number;
|
|
644
|
+
startDate: string;
|
|
645
|
+
endDate: string;
|
|
646
|
+
registrationStartDate?: Date;
|
|
647
|
+
registrationEndDate?: Date;
|
|
648
|
+
membershipType: MembershipTypeEnum;
|
|
649
|
+
durationMonths: number;
|
|
650
|
+
longDescription?: string;
|
|
651
|
+
isAutoRenew?: boolean;
|
|
652
|
+
}
|
|
653
|
+
export declare class UpdateMembrshipDto extends CreateMembershipDto {
|
|
654
|
+
id: number;
|
|
655
|
+
}
|
|
656
|
+
export declare class UpdateMembershipMediaDto {
|
|
657
|
+
membershipId: number;
|
|
658
|
+
mediaId: number;
|
|
659
|
+
}
|
|
660
|
+
export declare class FindMembershipByIdDto {
|
|
661
|
+
membershipId: number;
|
|
662
|
+
}
|
|
663
|
+
export declare class FindMembershipsByOrganizationIdDto {
|
|
664
|
+
organizationId: number;
|
|
665
|
+
}
|
|
666
|
+
export declare class FindMembershipsByUserIdDto {
|
|
667
|
+
userId: number;
|
|
668
|
+
}
|
|
669
|
+
export declare class SetMembersStartDateByOrganization extends FindMembershipsByOrganizationIdDto {
|
|
670
|
+
startDate: string;
|
|
671
|
+
}
|
|
672
|
+
export declare class MembershipIdsDto {
|
|
673
|
+
membershipIds?: number[];
|
|
674
|
+
}
|
|
675
|
+
export declare class MemberIdDto {
|
|
676
|
+
memberId?: number;
|
|
677
|
+
}
|
|
678
|
+
export declare class FindMembersOptionsDto extends PaginationQuery {
|
|
679
|
+
nameEmailSearch?: string;
|
|
680
|
+
pastMemberships?: string;
|
|
681
|
+
}
|
|
682
|
+
export declare class CancelMembershipDto {
|
|
683
|
+
isImmediatelyCancel: boolean;
|
|
684
|
+
cancellationReason?: string;
|
|
685
|
+
}
|
|
686
686
|
export declare class CreateUpdateVariantsDto {
|
|
687
687
|
organizationId: number;
|
|
688
688
|
parentProductId: number;
|
|
@@ -932,6 +932,18 @@ export declare class ProgramHighlightDto {
|
|
|
932
932
|
type: ProgramHighlightTypeEnum;
|
|
933
933
|
title: string;
|
|
934
934
|
}
|
|
935
|
+
export declare class CreateResourceGroupDto {
|
|
936
|
+
name: string;
|
|
937
|
+
parentSlotId: number;
|
|
938
|
+
facilityId: number;
|
|
939
|
+
childrenSlotIds: number[];
|
|
940
|
+
}
|
|
941
|
+
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
942
|
+
}
|
|
943
|
+
export declare class ResourceDto {
|
|
944
|
+
type: ResourceNameTypeEnum;
|
|
945
|
+
id: number;
|
|
946
|
+
}
|
|
935
947
|
export declare class PurchasePaymentDto {
|
|
936
948
|
token: string;
|
|
937
949
|
type: PaymentMethodTypeEnum;
|
|
@@ -1005,18 +1017,6 @@ export declare class PartialPaymentAsUserDto {
|
|
|
1005
1017
|
paymentMethodData: any;
|
|
1006
1018
|
platform?: PlatformsEnum;
|
|
1007
1019
|
}
|
|
1008
|
-
export declare class CreateResourceGroupDto {
|
|
1009
|
-
name: string;
|
|
1010
|
-
parentSlotId: number;
|
|
1011
|
-
facilityId: number;
|
|
1012
|
-
childrenSlotIds: number[];
|
|
1013
|
-
}
|
|
1014
|
-
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
1015
|
-
}
|
|
1016
|
-
export declare class ResourceDto {
|
|
1017
|
-
type: ResourceNameTypeEnum;
|
|
1018
|
-
id: number;
|
|
1019
|
-
}
|
|
1020
1020
|
export declare class SpaceByIdDto {
|
|
1021
1021
|
spaceId: number;
|
|
1022
1022
|
}
|
|
@@ -1083,19 +1083,6 @@ export declare class AddACHTokenToCustomerDto {
|
|
|
1083
1083
|
publicToken: string;
|
|
1084
1084
|
accountId: string;
|
|
1085
1085
|
}
|
|
1086
|
-
export declare class ActivityLogRecord extends BondBaseEntity {
|
|
1087
|
-
entityType: ResourceNameTypeEnum;
|
|
1088
|
-
entityId: number;
|
|
1089
|
-
organizationId?: number;
|
|
1090
|
-
userId?: number;
|
|
1091
|
-
customerId?: number;
|
|
1092
|
-
performingUserId: number;
|
|
1093
|
-
description: string;
|
|
1094
|
-
actionType: ActionTypesEnum;
|
|
1095
|
-
sourcePlatform: ActionSourcePlatformEnum;
|
|
1096
|
-
oldValue?: any;
|
|
1097
|
-
newValue?: any;
|
|
1098
|
-
}
|
|
1099
1086
|
export declare class FindByUserIdDto {
|
|
1100
1087
|
userId: number;
|
|
1101
1088
|
}
|
|
@@ -1129,11 +1116,18 @@ export declare class Address extends BondBaseEntity {
|
|
|
1129
1116
|
geo: any;
|
|
1130
1117
|
deletedAt?: Date;
|
|
1131
1118
|
}
|
|
1132
|
-
export declare class
|
|
1133
|
-
|
|
1119
|
+
export declare class ActivityLogRecord extends BondBaseEntity {
|
|
1120
|
+
entityType: ResourceNameTypeEnum;
|
|
1121
|
+
entityId: number;
|
|
1122
|
+
organizationId?: number;
|
|
1134
1123
|
userId?: number;
|
|
1135
|
-
|
|
1136
|
-
|
|
1124
|
+
customerId?: number;
|
|
1125
|
+
performingUserId: number;
|
|
1126
|
+
description: string;
|
|
1127
|
+
actionType: ActionTypesEnum;
|
|
1128
|
+
sourcePlatform: ActionSourcePlatformEnum;
|
|
1129
|
+
oldValue?: any;
|
|
1130
|
+
newValue?: any;
|
|
1137
1131
|
}
|
|
1138
1132
|
export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
1139
1133
|
questionId: number;
|
|
@@ -1153,13 +1147,11 @@ export declare class Athlete extends BondBaseEntity {
|
|
|
1153
1147
|
metadata: object | null;
|
|
1154
1148
|
athleteSports: AthleteSports[];
|
|
1155
1149
|
}
|
|
1156
|
-
export declare class
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
endDate: Date;
|
|
1162
|
-
deletedAt?: Date;
|
|
1150
|
+
export declare class AnswerTitle extends OrganizationConnectionBaseEntity {
|
|
1151
|
+
questionnaireId: number;
|
|
1152
|
+
userId?: number;
|
|
1153
|
+
answers: Answer[];
|
|
1154
|
+
questionnaire: Questionnaires;
|
|
1163
1155
|
}
|
|
1164
1156
|
export declare class AthleteSports extends BondBaseEntity {
|
|
1165
1157
|
athleteId: number | null;
|
|
@@ -1171,6 +1163,14 @@ export declare class BondBaseEntity extends BaseEntity {
|
|
|
1171
1163
|
createdAt: Date;
|
|
1172
1164
|
updatedAt: Date;
|
|
1173
1165
|
}
|
|
1166
|
+
export declare class BlockedDate extends BondBaseEntity {
|
|
1167
|
+
entityType: ResourceNameTypeEnum;
|
|
1168
|
+
entityId: number;
|
|
1169
|
+
name: string;
|
|
1170
|
+
startDate: Date;
|
|
1171
|
+
endDate: Date;
|
|
1172
|
+
deletedAt?: Date;
|
|
1173
|
+
}
|
|
1174
1174
|
export declare class BookedSessions extends BondBaseEntity {
|
|
1175
1175
|
reservationId?: number;
|
|
1176
1176
|
color?: string;
|
|
@@ -1189,16 +1189,6 @@ export declare class BookedSessions extends BondBaseEntity {
|
|
|
1189
1189
|
publicNotes?: string;
|
|
1190
1190
|
slotType?: SlotTypeEnum;
|
|
1191
1191
|
}
|
|
1192
|
-
export declare class BookingTypeSetting extends OrganizationConnectionBaseEntity {
|
|
1193
|
-
parentId: number;
|
|
1194
|
-
parentType: ResourceNameTypeEnum;
|
|
1195
|
-
startDate: Date;
|
|
1196
|
-
endDate: Date;
|
|
1197
|
-
dayOfWeek: number;
|
|
1198
|
-
startTimeInDay: string;
|
|
1199
|
-
endTimeInDay: string;
|
|
1200
|
-
directBookingFor: DirectBookingTypesEnum;
|
|
1201
|
-
}
|
|
1202
1192
|
export declare class Configuration extends BondBaseEntity {
|
|
1203
1193
|
area: string;
|
|
1204
1194
|
key: string;
|
|
@@ -1216,6 +1206,16 @@ export declare class Connection extends BondBaseEntity {
|
|
|
1216
1206
|
userCreatorId: number | null;
|
|
1217
1207
|
ownerId: number | null;
|
|
1218
1208
|
}
|
|
1209
|
+
export declare class BookingTypeSetting extends OrganizationConnectionBaseEntity {
|
|
1210
|
+
parentId: number;
|
|
1211
|
+
parentType: ResourceNameTypeEnum;
|
|
1212
|
+
startDate: Date;
|
|
1213
|
+
endDate: Date;
|
|
1214
|
+
dayOfWeek: number;
|
|
1215
|
+
startTimeInDay: string;
|
|
1216
|
+
endTimeInDay: string;
|
|
1217
|
+
directBookingFor: DirectBookingTypesEnum;
|
|
1218
|
+
}
|
|
1219
1219
|
export declare class CreditNote extends OrganizationConnectionBaseEntity {
|
|
1220
1220
|
creditAmount: number;
|
|
1221
1221
|
paymentProcessorId: string;
|
|
@@ -1360,6 +1360,9 @@ export declare class Event extends OrganizationConnectionBaseEntity {
|
|
|
1360
1360
|
activityTimes: ActivityTimes[];
|
|
1361
1361
|
slots: Slot[];
|
|
1362
1362
|
purchasedResources: PurchasedResource[];
|
|
1363
|
+
program?: Program;
|
|
1364
|
+
session?: ProgramSeason;
|
|
1365
|
+
segment?: ProgramSeason;
|
|
1363
1366
|
}
|
|
1364
1367
|
export declare class Facility extends OrganizationConnectionBaseEntity {
|
|
1365
1368
|
name: string;
|
|
@@ -2302,6 +2305,12 @@ export declare class TeamMember extends BondBaseEntity {
|
|
|
2302
2305
|
role: TeamMemberRoleEnum;
|
|
2303
2306
|
user: User;
|
|
2304
2307
|
}
|
|
2308
|
+
export declare class UserAuthorizations extends BondBaseEntity {
|
|
2309
|
+
entityId: number | null;
|
|
2310
|
+
userId: number | null;
|
|
2311
|
+
entityType: UserAuthorizationsTypeEnum;
|
|
2312
|
+
user: User;
|
|
2313
|
+
}
|
|
2305
2314
|
export declare class User extends BondBaseEntity {
|
|
2306
2315
|
firstName: string | null;
|
|
2307
2316
|
lastName: string | null;
|
|
@@ -2341,12 +2350,6 @@ export declare class User extends BondBaseEntity {
|
|
|
2341
2350
|
invoiceNotes: InvoiceNote[];
|
|
2342
2351
|
paymentNotes: PaymentNote[];
|
|
2343
2352
|
}
|
|
2344
|
-
export declare class UserAuthorizations extends BondBaseEntity {
|
|
2345
|
-
entityId: number | null;
|
|
2346
|
-
userId: number | null;
|
|
2347
|
-
entityType: UserAuthorizationsTypeEnum;
|
|
2348
|
-
user: User;
|
|
2349
|
-
}
|
|
2350
2353
|
export declare class UserInFamilyAccount extends BondBaseEntity {
|
|
2351
2354
|
familyAccountId: number;
|
|
2352
2355
|
userId: number;
|
|
@@ -2923,6 +2926,9 @@ export declare enum PaymentSettingStatusEnum {
|
|
|
2923
2926
|
DISABLED_INFO_ONLY = 3,
|
|
2924
2927
|
DISABLED_EMAIL = 4
|
|
2925
2928
|
}
|
|
2929
|
+
export declare enum NotifyMethodEnum {
|
|
2930
|
+
EMAIL = "Email"
|
|
2931
|
+
}
|
|
2926
2932
|
export interface IEntitlementTerms {
|
|
2927
2933
|
type: EntitlementTermsTypesEnum;
|
|
2928
2934
|
id?: number;
|
|
@@ -3063,8 +3069,8 @@ export interface ISingleMemberForRenewal {
|
|
|
3063
3069
|
member_nextPaymentType?: PaymentMethodTypeEnum;
|
|
3064
3070
|
member_answerTitleIds?: number[];
|
|
3065
3071
|
member_organizationId: number;
|
|
3066
|
-
|
|
3067
|
-
|
|
3072
|
+
product_productPrice: number;
|
|
3073
|
+
product_productId: number;
|
|
3068
3074
|
invoice_payingUserId: number;
|
|
3069
3075
|
invoice_paymentMethodId: string;
|
|
3070
3076
|
invoice_paymentType: PaymentMethodTypeEnum;
|
|
@@ -3076,7 +3082,7 @@ export interface ISingleMemberForRenewal {
|
|
|
3076
3082
|
}
|
|
3077
3083
|
export interface IFamilyMemberForRenewal extends ISingleMemberForRenewal {
|
|
3078
3084
|
package_parentProductId: number;
|
|
3079
|
-
|
|
3085
|
+
product2_productPrice: number;
|
|
3080
3086
|
familyid: number;
|
|
3081
3087
|
invoice_id: number;
|
|
3082
3088
|
}
|
|
@@ -3288,6 +3294,46 @@ export declare class ColumnNumericTransformer {
|
|
|
3288
3294
|
from(data: string): number;
|
|
3289
3295
|
}
|
|
3290
3296
|
export declare function convertToNumber(data: string): number;
|
|
3297
|
+
export declare class GameSlots extends BondBaseEntity {
|
|
3298
|
+
entityType: string;
|
|
3299
|
+
entityId: number;
|
|
3300
|
+
}
|
|
3301
|
+
export declare class Matches extends BondBaseEntity {
|
|
3302
|
+
eventId: number | null;
|
|
3303
|
+
status: number | null;
|
|
3304
|
+
excludeStandings: boolean | null;
|
|
3305
|
+
}
|
|
3306
|
+
export declare class MatchParticipants extends BondBaseEntity {
|
|
3307
|
+
matchId: number | null;
|
|
3308
|
+
ordinal: number | null;
|
|
3309
|
+
outcomeOrdinal: number | null;
|
|
3310
|
+
resultMetaData: any | null;
|
|
3311
|
+
points: number | null;
|
|
3312
|
+
score: number | null;
|
|
3313
|
+
gameSlotId: number | null;
|
|
3314
|
+
}
|
|
3315
|
+
export declare class RoundEvents extends BaseEntity {
|
|
3316
|
+
roundId: number;
|
|
3317
|
+
eventId: number;
|
|
3318
|
+
seriesId: number | null;
|
|
3319
|
+
createdAt: Date;
|
|
3320
|
+
updatedAt: Date;
|
|
3321
|
+
}
|
|
3322
|
+
export declare class SeasonRounds extends BondBaseEntity {
|
|
3323
|
+
seasonId: number;
|
|
3324
|
+
ordinal?: number;
|
|
3325
|
+
divisionId?: number;
|
|
3326
|
+
name: string;
|
|
3327
|
+
}
|
|
3328
|
+
export declare class TeamEvents extends BondBaseEntity {
|
|
3329
|
+
teamId: number | null;
|
|
3330
|
+
eventId: number | null;
|
|
3331
|
+
status: number | null;
|
|
3332
|
+
}
|
|
3333
|
+
export declare class Lock extends BondBaseEntity {
|
|
3334
|
+
name: string;
|
|
3335
|
+
locked?: Date;
|
|
3336
|
+
}
|
|
3291
3337
|
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3292
3338
|
name?: string;
|
|
3293
3339
|
genderStr?: string;
|
|
@@ -3346,13 +3392,6 @@ export declare class ProductImportDto {
|
|
|
3346
3392
|
resourceIds: number[];
|
|
3347
3393
|
oldId: number;
|
|
3348
3394
|
}
|
|
3349
|
-
export declare class PunchPassDto {
|
|
3350
|
-
CustomerID: string;
|
|
3351
|
-
QuantityLeft: number;
|
|
3352
|
-
BondProgramID: number;
|
|
3353
|
-
BondSessionID: number;
|
|
3354
|
-
ProductID: number;
|
|
3355
|
-
}
|
|
3356
3395
|
export declare class ImportedSlotProductDto {
|
|
3357
3396
|
slotID?: string;
|
|
3358
3397
|
name?: string;
|
|
@@ -3404,45 +3443,12 @@ export declare class ImportedReservationDto {
|
|
|
3404
3443
|
slots?: ImportedSlotDto[];
|
|
3405
3444
|
addons?: ImportedSlotProductDto[];
|
|
3406
3445
|
}
|
|
3407
|
-
export declare class
|
|
3408
|
-
|
|
3409
|
-
|
|
3410
|
-
|
|
3411
|
-
|
|
3412
|
-
|
|
3413
|
-
ordinal: number | null;
|
|
3414
|
-
outcomeOrdinal: number | null;
|
|
3415
|
-
resultMetaData: any | null;
|
|
3416
|
-
points: number | null;
|
|
3417
|
-
score: number | null;
|
|
3418
|
-
gameSlotId: number | null;
|
|
3419
|
-
}
|
|
3420
|
-
export declare class Matches extends BondBaseEntity {
|
|
3421
|
-
eventId: number | null;
|
|
3422
|
-
status: number | null;
|
|
3423
|
-
excludeStandings: boolean | null;
|
|
3424
|
-
}
|
|
3425
|
-
export declare class RoundEvents extends BaseEntity {
|
|
3426
|
-
roundId: number;
|
|
3427
|
-
eventId: number;
|
|
3428
|
-
seriesId: number | null;
|
|
3429
|
-
createdAt: Date;
|
|
3430
|
-
updatedAt: Date;
|
|
3431
|
-
}
|
|
3432
|
-
export declare class SeasonRounds extends BondBaseEntity {
|
|
3433
|
-
seasonId: number;
|
|
3434
|
-
ordinal?: number;
|
|
3435
|
-
divisionId?: number;
|
|
3436
|
-
name: string;
|
|
3437
|
-
}
|
|
3438
|
-
export declare class TeamEvents extends BondBaseEntity {
|
|
3439
|
-
teamId: number | null;
|
|
3440
|
-
eventId: number | null;
|
|
3441
|
-
status: number | null;
|
|
3442
|
-
}
|
|
3443
|
-
export declare class Lock extends BondBaseEntity {
|
|
3444
|
-
name: string;
|
|
3445
|
-
locked?: Date;
|
|
3446
|
+
export declare class PunchPassDto {
|
|
3447
|
+
CustomerID: string;
|
|
3448
|
+
QuantityLeft: number;
|
|
3449
|
+
BondProgramID: number;
|
|
3450
|
+
BondSessionID: number;
|
|
3451
|
+
ProductID: number;
|
|
3446
3452
|
}
|
|
3447
3453
|
export interface ValidatedMonthAndDay {
|
|
3448
3454
|
valid: boolean;
|
|
@@ -3476,73 +3482,12 @@ export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
|
|
|
3476
3482
|
code: string;
|
|
3477
3483
|
config?: any;
|
|
3478
3484
|
}
|
|
3479
|
-
export declare class
|
|
3485
|
+
export declare class NotifyTracker extends BondBaseEntity {
|
|
3486
|
+
userId: number;
|
|
3480
3487
|
organizationId: number;
|
|
3481
|
-
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
}
|
|
3485
|
-
export declare class Organization extends BondBaseEntity {
|
|
3486
|
-
name: string | null;
|
|
3487
|
-
email: string | null;
|
|
3488
|
-
twitter: string | null;
|
|
3489
|
-
facebook: string | null;
|
|
3490
|
-
instagram: string | null;
|
|
3491
|
-
website: string | null;
|
|
3492
|
-
blog: string | null;
|
|
3493
|
-
phoneNumber: string | null;
|
|
3494
|
-
waiverDoc: string | null;
|
|
3495
|
-
about: string | null;
|
|
3496
|
-
tagline: string | null;
|
|
3497
|
-
status: number | null;
|
|
3498
|
-
addressId: number | null;
|
|
3499
|
-
merchantId: number | null;
|
|
3500
|
-
userCreatorId: number | null;
|
|
3501
|
-
parentId: number | null;
|
|
3502
|
-
paymentSettings: object | null;
|
|
3503
|
-
settings: object | null;
|
|
3504
|
-
isClaimed: boolean | null;
|
|
3505
|
-
sports: number[] | null;
|
|
3506
|
-
mainMediaId: number | null;
|
|
3507
|
-
deletedAt: Date | null;
|
|
3508
|
-
organizationActivityTypes: number[] | null;
|
|
3509
|
-
organizationTypes: number[] | null;
|
|
3510
|
-
organizationAudienceTypes: number[] | null;
|
|
3511
|
-
organizationGenders: number[] | null;
|
|
3512
|
-
questionnaireId: number | null;
|
|
3513
|
-
membershipQuestionnaireId: number | null;
|
|
3514
|
-
feeRate: number;
|
|
3515
|
-
feeAddDollarRate: number;
|
|
3516
|
-
achFeeRate: number;
|
|
3517
|
-
achFeeAddDollarRate: number;
|
|
3518
|
-
maxAchFee: number;
|
|
3519
|
-
cashFeeRate: number;
|
|
3520
|
-
cashFeeAddDollarRate: number;
|
|
3521
|
-
terminalFeeRate: number;
|
|
3522
|
-
terminalFeeAddDollarRate: number;
|
|
3523
|
-
checkFeeRate: number;
|
|
3524
|
-
checkFeeAddDollarRate: number;
|
|
3525
|
-
otherFeeRate: number;
|
|
3526
|
-
otherFeeAddDollarRate: number;
|
|
3527
|
-
balanceFeeRate: number;
|
|
3528
|
-
balanceFeeAddDollarRate: number;
|
|
3529
|
-
address: Address;
|
|
3530
|
-
mainMedia: Media;
|
|
3531
|
-
brandings: OrganizationBranding[];
|
|
3532
|
-
brandingsV2?: OrganizationBranding[];
|
|
3533
|
-
}
|
|
3534
|
-
export declare class OrganizationBranding extends OrganizationConnectionBaseEntity {
|
|
3535
|
-
key?: string;
|
|
3536
|
-
vaule?: string;
|
|
3537
|
-
version: number;
|
|
3538
|
-
organization: Organization;
|
|
3539
|
-
}
|
|
3540
|
-
export declare class OrganizationSettings extends OrganizationConnectionBaseEntity {
|
|
3541
|
-
mainAdminUserId?: number;
|
|
3542
|
-
}
|
|
3543
|
-
export declare class OrganizationUsers extends BondBaseEntity {
|
|
3544
|
-
organisationId: number | null;
|
|
3545
|
-
userId: number | null;
|
|
3488
|
+
notifyMetadata?: any;
|
|
3489
|
+
notfiyMethodtype: NotifyMethodEnum;
|
|
3490
|
+
destination: string;
|
|
3546
3491
|
}
|
|
3547
3492
|
export declare class CustomerIdDto {
|
|
3548
3493
|
customerId: number;
|
|
@@ -3727,6 +3672,92 @@ export interface RefundResultWithLineItemsDict extends PaymentsResults {
|
|
|
3727
3672
|
failedLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3728
3673
|
totalAmountProcessed: number;
|
|
3729
3674
|
}
|
|
3675
|
+
export declare class ByOrganizationIdDto {
|
|
3676
|
+
organizationId: number;
|
|
3677
|
+
}
|
|
3678
|
+
export declare class OptionalFindByOrganizationIdDto {
|
|
3679
|
+
organizationId?: number;
|
|
3680
|
+
}
|
|
3681
|
+
export declare class FindUnallocatedEventsIdsFiltersDto {
|
|
3682
|
+
programsIds?: string;
|
|
3683
|
+
sessionsIds?: string;
|
|
3684
|
+
segmentsIds?: string;
|
|
3685
|
+
startDate?: string;
|
|
3686
|
+
endDate?: string;
|
|
3687
|
+
months?: string;
|
|
3688
|
+
dow?: string;
|
|
3689
|
+
}
|
|
3690
|
+
export declare class FindUnallocatedEventsFiltersDto extends PaginationQuery {
|
|
3691
|
+
programsIds?: string;
|
|
3692
|
+
sessionsIds?: string;
|
|
3693
|
+
segmentsIds?: string;
|
|
3694
|
+
startDate?: string;
|
|
3695
|
+
endDate?: string;
|
|
3696
|
+
months?: string;
|
|
3697
|
+
dow?: string;
|
|
3698
|
+
}
|
|
3699
|
+
export declare class Organization extends BondBaseEntity {
|
|
3700
|
+
name: string | null;
|
|
3701
|
+
email: string | null;
|
|
3702
|
+
twitter: string | null;
|
|
3703
|
+
facebook: string | null;
|
|
3704
|
+
instagram: string | null;
|
|
3705
|
+
website: string | null;
|
|
3706
|
+
blog: string | null;
|
|
3707
|
+
phoneNumber: string | null;
|
|
3708
|
+
waiverDoc: string | null;
|
|
3709
|
+
about: string | null;
|
|
3710
|
+
tagline: string | null;
|
|
3711
|
+
status: number | null;
|
|
3712
|
+
addressId: number | null;
|
|
3713
|
+
merchantId: number | null;
|
|
3714
|
+
userCreatorId: number | null;
|
|
3715
|
+
parentId: number | null;
|
|
3716
|
+
paymentSettings: object | null;
|
|
3717
|
+
settings: object | null;
|
|
3718
|
+
isClaimed: boolean | null;
|
|
3719
|
+
sports: number[] | null;
|
|
3720
|
+
mainMediaId: number | null;
|
|
3721
|
+
deletedAt: Date | null;
|
|
3722
|
+
organizationActivityTypes: number[] | null;
|
|
3723
|
+
organizationTypes: number[] | null;
|
|
3724
|
+
organizationAudienceTypes: number[] | null;
|
|
3725
|
+
organizationGenders: number[] | null;
|
|
3726
|
+
questionnaireId: number | null;
|
|
3727
|
+
membershipQuestionnaireId: number | null;
|
|
3728
|
+
feeRate: number;
|
|
3729
|
+
feeAddDollarRate: number;
|
|
3730
|
+
achFeeRate: number;
|
|
3731
|
+
achFeeAddDollarRate: number;
|
|
3732
|
+
maxAchFee: number;
|
|
3733
|
+
cashFeeRate: number;
|
|
3734
|
+
cashFeeAddDollarRate: number;
|
|
3735
|
+
terminalFeeRate: number;
|
|
3736
|
+
terminalFeeAddDollarRate: number;
|
|
3737
|
+
checkFeeRate: number;
|
|
3738
|
+
checkFeeAddDollarRate: number;
|
|
3739
|
+
otherFeeRate: number;
|
|
3740
|
+
otherFeeAddDollarRate: number;
|
|
3741
|
+
balanceFeeRate: number;
|
|
3742
|
+
balanceFeeAddDollarRate: number;
|
|
3743
|
+
address: Address;
|
|
3744
|
+
mainMedia: Media;
|
|
3745
|
+
brandings: OrganizationBranding[];
|
|
3746
|
+
brandingsV2?: OrganizationBranding[];
|
|
3747
|
+
}
|
|
3748
|
+
export declare class OrganizationBranding extends OrganizationConnectionBaseEntity {
|
|
3749
|
+
key?: string;
|
|
3750
|
+
vaule?: string;
|
|
3751
|
+
version: number;
|
|
3752
|
+
organization: Organization;
|
|
3753
|
+
}
|
|
3754
|
+
export declare class OrganizationSettings extends OrganizationConnectionBaseEntity {
|
|
3755
|
+
mainAdminUserId?: number;
|
|
3756
|
+
}
|
|
3757
|
+
export declare class OrganizationUsers extends BondBaseEntity {
|
|
3758
|
+
organisationId: number | null;
|
|
3759
|
+
userId: number | null;
|
|
3760
|
+
}
|
|
3730
3761
|
export declare class AddonDto extends ProductPricesDto {
|
|
3731
3762
|
id?: number;
|
|
3732
3763
|
}
|
|
@@ -3745,6 +3776,17 @@ export declare class EditAddonDto {
|
|
|
3745
3776
|
totalPrice: number;
|
|
3746
3777
|
unitPrice?: number;
|
|
3747
3778
|
}
|
|
3779
|
+
export interface UnallocatedEventsFilters {
|
|
3780
|
+
programsIds?: number[];
|
|
3781
|
+
sessionsIds?: number[];
|
|
3782
|
+
segmentsIds?: number[];
|
|
3783
|
+
durations?: Duration[];
|
|
3784
|
+
daysOfWeek?: number[];
|
|
3785
|
+
}
|
|
3786
|
+
export interface Duration {
|
|
3787
|
+
startDate: string;
|
|
3788
|
+
endDate: string;
|
|
3789
|
+
}
|
|
3748
3790
|
export declare class InvoiceDto {
|
|
3749
3791
|
invoiceId?: string | null;
|
|
3750
3792
|
organizationId: number;
|
|
@@ -3971,6 +4013,9 @@ export declare class EditReservationDetailsDto {
|
|
|
3971
4013
|
export declare class ValidateEditSlotsDto extends UpdateSlotsDto {
|
|
3972
4014
|
updateAddons?: boolean;
|
|
3973
4015
|
}
|
|
4016
|
+
export declare class ReservationNotifyDto {
|
|
4017
|
+
notifyMethods?: NotifyMethodEnum[];
|
|
4018
|
+
}
|
|
3974
4019
|
export declare class SegmentDto {
|
|
3975
4020
|
id?: number;
|
|
3976
4021
|
title: string;
|
|
@@ -4140,6 +4185,20 @@ export declare class InvoicedSlots extends OrganizationConnectionBaseEntity {
|
|
|
4140
4185
|
invoiceId: number;
|
|
4141
4186
|
slotId: number;
|
|
4142
4187
|
}
|
|
4188
|
+
export declare class Segment extends OrganizationConnectionBaseEntity {
|
|
4189
|
+
deletedAt?: Date;
|
|
4190
|
+
reservationId: number;
|
|
4191
|
+
title: string;
|
|
4192
|
+
isPrivate: boolean;
|
|
4193
|
+
resourceIds?: number[];
|
|
4194
|
+
sportId: number;
|
|
4195
|
+
reservation?: Reservation;
|
|
4196
|
+
series?: Series[];
|
|
4197
|
+
addonIds?: number[] | null;
|
|
4198
|
+
publicNotesForSlots?: string;
|
|
4199
|
+
privateNotesForSlots?: string;
|
|
4200
|
+
slots?: Slot[];
|
|
4201
|
+
}
|
|
4143
4202
|
export declare class Reservation extends OrganizationConnectionBaseEntity {
|
|
4144
4203
|
name?: string;
|
|
4145
4204
|
description?: string;
|
|
@@ -4173,20 +4232,6 @@ export declare class Reservation extends OrganizationConnectionBaseEntity {
|
|
|
4173
4232
|
targetGlobalPrice?: number;
|
|
4174
4233
|
slots: Slot[];
|
|
4175
4234
|
}
|
|
4176
|
-
export declare class Segment extends OrganizationConnectionBaseEntity {
|
|
4177
|
-
deletedAt?: Date;
|
|
4178
|
-
reservationId: number;
|
|
4179
|
-
title: string;
|
|
4180
|
-
isPrivate: boolean;
|
|
4181
|
-
resourceIds?: number[];
|
|
4182
|
-
sportId: number;
|
|
4183
|
-
reservation?: Reservation;
|
|
4184
|
-
series?: Series[];
|
|
4185
|
-
addonIds?: number[] | null;
|
|
4186
|
-
publicNotesForSlots?: string;
|
|
4187
|
-
privateNotesForSlots?: string;
|
|
4188
|
-
slots?: Slot[];
|
|
4189
|
-
}
|
|
4190
4235
|
export declare class Series extends OrganizationConnectionBaseEntity {
|
|
4191
4236
|
deletedAt?: Date;
|
|
4192
4237
|
segmentId: number;
|