@bondsports/types 0.0.165 → 0.0.167
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 +709 -708
- 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
|
@@ -238,38 +238,6 @@ export declare class UpdateFacilityAmenitiesDto {
|
|
|
238
238
|
export declare class FindFacilitiesOptionsDto extends PaginationQuery {
|
|
239
239
|
nameSearch?: string;
|
|
240
240
|
}
|
|
241
|
-
export declare class FindFamilyAccountsDto {
|
|
242
|
-
userId: number;
|
|
243
|
-
}
|
|
244
|
-
export declare class FindFamilyAccountsCustomerDto {
|
|
245
|
-
customerId: number;
|
|
246
|
-
organizationId: number;
|
|
247
|
-
}
|
|
248
|
-
export declare class FindUsersInFamilyAccountDto {
|
|
249
|
-
familyAccountId: number;
|
|
250
|
-
}
|
|
251
|
-
export declare class CreateFamilyAccountDto {
|
|
252
|
-
familyName: string;
|
|
253
|
-
userId: number;
|
|
254
|
-
}
|
|
255
|
-
export declare class UpdateFamilyAccountNameDto {
|
|
256
|
-
familyName: string;
|
|
257
|
-
familyAccountId: number;
|
|
258
|
-
}
|
|
259
|
-
export declare class AddUserToFamilyAccountDto {
|
|
260
|
-
familyAccountId: number;
|
|
261
|
-
isUserAdmin: boolean;
|
|
262
|
-
firstName: string;
|
|
263
|
-
lastName: string;
|
|
264
|
-
gender: GenderEnum;
|
|
265
|
-
birthDate: string;
|
|
266
|
-
sports?: number[];
|
|
267
|
-
email?: string;
|
|
268
|
-
}
|
|
269
|
-
export declare class RemoveUserFromFamilyAccountDto {
|
|
270
|
-
userId: number;
|
|
271
|
-
familyAccountId: number;
|
|
272
|
-
}
|
|
273
241
|
export declare class FindOneParams {
|
|
274
242
|
id: number;
|
|
275
243
|
}
|
|
@@ -365,6 +333,38 @@ export declare class MoveTeamOrMemberDto implements IMoveSeason {
|
|
|
365
333
|
export declare class MoveTeamOrMembersByCsvDTO {
|
|
366
334
|
fileName: string;
|
|
367
335
|
}
|
|
336
|
+
export declare class FindFamilyAccountsDto {
|
|
337
|
+
userId: number;
|
|
338
|
+
}
|
|
339
|
+
export declare class FindFamilyAccountsCustomerDto {
|
|
340
|
+
customerId: number;
|
|
341
|
+
organizationId: number;
|
|
342
|
+
}
|
|
343
|
+
export declare class FindUsersInFamilyAccountDto {
|
|
344
|
+
familyAccountId: number;
|
|
345
|
+
}
|
|
346
|
+
export declare class CreateFamilyAccountDto {
|
|
347
|
+
familyName: string;
|
|
348
|
+
userId: number;
|
|
349
|
+
}
|
|
350
|
+
export declare class UpdateFamilyAccountNameDto {
|
|
351
|
+
familyName: string;
|
|
352
|
+
familyAccountId: number;
|
|
353
|
+
}
|
|
354
|
+
export declare class AddUserToFamilyAccountDto {
|
|
355
|
+
familyAccountId: number;
|
|
356
|
+
isUserAdmin: boolean;
|
|
357
|
+
firstName: string;
|
|
358
|
+
lastName: string;
|
|
359
|
+
gender: GenderEnum;
|
|
360
|
+
birthDate: string;
|
|
361
|
+
sports?: number[];
|
|
362
|
+
email?: string;
|
|
363
|
+
}
|
|
364
|
+
export declare class RemoveUserFromFamilyAccountDto {
|
|
365
|
+
userId: number;
|
|
366
|
+
familyAccountId: number;
|
|
367
|
+
}
|
|
368
368
|
export declare class CreateMembershipDto {
|
|
369
369
|
organizationId: number;
|
|
370
370
|
name: string;
|
|
@@ -463,6 +463,24 @@ export declare class CreateGroupPricingWithProduct {
|
|
|
463
463
|
discountValue?: number;
|
|
464
464
|
discountMethod?: DiscountMethodsEnum;
|
|
465
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,24 +702,6 @@ export declare class createResourceDto {
|
|
|
684
702
|
export declare class archiveDto {
|
|
685
703
|
isArchive: boolean;
|
|
686
704
|
}
|
|
687
|
-
export declare class CreateUpdateVariantsDto {
|
|
688
|
-
organizationId: number;
|
|
689
|
-
parentProductId: number;
|
|
690
|
-
variantTitles: VariantTitleDto[];
|
|
691
|
-
variants: VariantDto[];
|
|
692
|
-
}
|
|
693
|
-
export declare class VariantTitleDto {
|
|
694
|
-
titleName: string;
|
|
695
|
-
titleId: number;
|
|
696
|
-
}
|
|
697
|
-
export declare class VariantDto {
|
|
698
|
-
name: string;
|
|
699
|
-
price: number;
|
|
700
|
-
variantId: number;
|
|
701
|
-
currency: CurrencyEnum;
|
|
702
|
-
startDate: Date;
|
|
703
|
-
endDate: Date;
|
|
704
|
-
}
|
|
705
705
|
export declare class FindProgramSeasonsByProgramIdDto {
|
|
706
706
|
programId: number;
|
|
707
707
|
}
|
|
@@ -1009,6 +1009,14 @@ export declare class PartialPaymentAsUserDto {
|
|
|
1009
1009
|
paymentMethodData: any;
|
|
1010
1010
|
platform?: PlatformsEnum;
|
|
1011
1011
|
}
|
|
1012
|
+
export declare class CreateResourceGroupDto {
|
|
1013
|
+
name: string;
|
|
1014
|
+
parentSlotId: number;
|
|
1015
|
+
facilityId: number;
|
|
1016
|
+
childrenSlotIds: number[];
|
|
1017
|
+
}
|
|
1018
|
+
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
1019
|
+
}
|
|
1012
1020
|
export declare class ResourceDto {
|
|
1013
1021
|
type: ResourceNameTypeEnum;
|
|
1014
1022
|
id: number;
|
|
@@ -1069,14 +1077,6 @@ export declare class FindResourcesOptionsDto extends PaginationQuery {
|
|
|
1069
1077
|
types?: string;
|
|
1070
1078
|
resourcesIds?: string;
|
|
1071
1079
|
}
|
|
1072
|
-
export declare class CreateResourceGroupDto {
|
|
1073
|
-
name: string;
|
|
1074
|
-
parentSlotId: number;
|
|
1075
|
-
facilityId: number;
|
|
1076
|
-
childrenSlotIds: number[];
|
|
1077
|
-
}
|
|
1078
|
-
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
1079
|
-
}
|
|
1080
1080
|
export declare class StripeCustomerIdDto {
|
|
1081
1081
|
userId: number;
|
|
1082
1082
|
}
|
|
@@ -1087,15 +1087,6 @@ export declare class AddACHTokenToCustomerDto {
|
|
|
1087
1087
|
publicToken: string;
|
|
1088
1088
|
accountId: string;
|
|
1089
1089
|
}
|
|
1090
|
-
export declare class FindByUserIdDto {
|
|
1091
|
-
userId: number;
|
|
1092
|
-
}
|
|
1093
|
-
export declare class FindByFamilyAccountIdDto {
|
|
1094
|
-
familyAccountId?: number;
|
|
1095
|
-
}
|
|
1096
|
-
export declare class FindByUserAndOrganizationDto extends FindByUserIdDto {
|
|
1097
|
-
organizationId: number;
|
|
1098
|
-
}
|
|
1099
1090
|
export declare class ActivityLogRecord extends BondBaseEntity {
|
|
1100
1091
|
entityType: ResourceNameTypeEnum;
|
|
1101
1092
|
entityId: number;
|
|
@@ -1146,6 +1137,15 @@ export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
|
1146
1137
|
metaData: any | null;
|
|
1147
1138
|
questionText: string | null;
|
|
1148
1139
|
}
|
|
1140
|
+
export declare class FindByUserIdDto {
|
|
1141
|
+
userId: number;
|
|
1142
|
+
}
|
|
1143
|
+
export declare class FindByFamilyAccountIdDto {
|
|
1144
|
+
familyAccountId?: number;
|
|
1145
|
+
}
|
|
1146
|
+
export declare class FindByUserAndOrganizationDto extends FindByUserIdDto {
|
|
1147
|
+
organizationId: number;
|
|
1148
|
+
}
|
|
1149
1149
|
export declare class AnswerTitle extends OrganizationConnectionBaseEntity {
|
|
1150
1150
|
questionnaireId: number;
|
|
1151
1151
|
userId?: number;
|
|
@@ -1162,11 +1162,6 @@ export declare class AthleteSports extends BondBaseEntity {
|
|
|
1162
1162
|
sports: number | null;
|
|
1163
1163
|
levelOfPlay: LevelOfPlayEnum | null;
|
|
1164
1164
|
}
|
|
1165
|
-
export declare class BondBaseEntity extends BaseEntity {
|
|
1166
|
-
id: number;
|
|
1167
|
-
createdAt: Date;
|
|
1168
|
-
updatedAt: Date;
|
|
1169
|
-
}
|
|
1170
1165
|
export declare class BlockedDate extends BondBaseEntity {
|
|
1171
1166
|
entityType: ResourceNameTypeEnum;
|
|
1172
1167
|
entityId: number;
|
|
@@ -1175,6 +1170,11 @@ export declare class BlockedDate extends BondBaseEntity {
|
|
|
1175
1170
|
endDate: Date;
|
|
1176
1171
|
deletedAt?: Date;
|
|
1177
1172
|
}
|
|
1173
|
+
export declare class BondBaseEntity extends BaseEntity {
|
|
1174
|
+
id: number;
|
|
1175
|
+
createdAt: Date;
|
|
1176
|
+
updatedAt: Date;
|
|
1177
|
+
}
|
|
1178
1178
|
export declare class BookedSessions extends BondBaseEntity {
|
|
1179
1179
|
reservationId?: number;
|
|
1180
1180
|
color?: string;
|
|
@@ -1208,14 +1208,6 @@ export declare class Configuration extends BondBaseEntity {
|
|
|
1208
1208
|
key: string;
|
|
1209
1209
|
value: string;
|
|
1210
1210
|
}
|
|
1211
|
-
export declare class CreditNote extends OrganizationConnectionBaseEntity {
|
|
1212
|
-
creditAmount: number;
|
|
1213
|
-
paymentProcessorId: string;
|
|
1214
|
-
userId: number;
|
|
1215
|
-
paymentId: number;
|
|
1216
|
-
invoiceId: number;
|
|
1217
|
-
creditPaymentId: number;
|
|
1218
|
-
}
|
|
1219
1211
|
export declare class Connection extends BondBaseEntity {
|
|
1220
1212
|
connType: number | null;
|
|
1221
1213
|
from: number | null;
|
|
@@ -1228,6 +1220,14 @@ export declare class Connection extends BondBaseEntity {
|
|
|
1228
1220
|
userCreatorId: number | null;
|
|
1229
1221
|
ownerId: number | null;
|
|
1230
1222
|
}
|
|
1223
|
+
export declare class CreditNote extends OrganizationConnectionBaseEntity {
|
|
1224
|
+
creditAmount: number;
|
|
1225
|
+
paymentProcessorId: string;
|
|
1226
|
+
userId: number;
|
|
1227
|
+
paymentId: number;
|
|
1228
|
+
invoiceId: number;
|
|
1229
|
+
creditPaymentId: number;
|
|
1230
|
+
}
|
|
1231
1231
|
export declare class Customer extends OrganizationConnectionBaseEntity {
|
|
1232
1232
|
name: string | null;
|
|
1233
1233
|
entityId: number | null;
|
|
@@ -1282,15 +1282,15 @@ export declare class Division extends BondBaseEntity {
|
|
|
1282
1282
|
isDefault: boolean;
|
|
1283
1283
|
groups: Group[];
|
|
1284
1284
|
}
|
|
1285
|
-
export declare class EntitlementGroup extends OrganizationConnectionBaseEntity {
|
|
1286
|
-
name: string | null;
|
|
1287
|
-
}
|
|
1288
1285
|
export declare class EmergencyContact extends OrganizationConnectionBaseEntity {
|
|
1289
1286
|
customerId: number;
|
|
1290
1287
|
name: string | null;
|
|
1291
1288
|
phoneNumber: string | null;
|
|
1292
1289
|
customer: Customer;
|
|
1293
1290
|
}
|
|
1291
|
+
export declare class EntitlementGroup extends OrganizationConnectionBaseEntity {
|
|
1292
|
+
name: string | null;
|
|
1293
|
+
}
|
|
1294
1294
|
export declare class EntitlementTerms extends OrganizationConnectionBaseEntity {
|
|
1295
1295
|
groupId: number;
|
|
1296
1296
|
terms: IEntitlementTerms[];
|
|
@@ -1411,6 +1411,9 @@ export declare class FutureInstallment extends OrganizationConnectionBaseEntity
|
|
|
1411
1411
|
chargedAt?: Date;
|
|
1412
1412
|
originalPlannedDate?: Date;
|
|
1413
1413
|
}
|
|
1414
|
+
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1415
|
+
code: string;
|
|
1416
|
+
}
|
|
1414
1417
|
export declare class Group extends BondBaseEntity {
|
|
1415
1418
|
name: string;
|
|
1416
1419
|
description?: string;
|
|
@@ -1440,11 +1443,6 @@ export declare class GroupItemsPricing extends OrganizationConnectionBaseEntity
|
|
|
1440
1443
|
discountMethod?: DiscountMethodsEnum;
|
|
1441
1444
|
discountValue?: number;
|
|
1442
1445
|
}
|
|
1443
|
-
export declare class GroupsInDivisions extends BondBaseEntity {
|
|
1444
|
-
groupId: number;
|
|
1445
|
-
divisionId: number;
|
|
1446
|
-
deletedAt?: Date;
|
|
1447
|
-
}
|
|
1448
1446
|
export declare class Invoice extends BondBaseEntity {
|
|
1449
1447
|
invoiceId: string | null;
|
|
1450
1448
|
price: number | null;
|
|
@@ -1480,9 +1478,6 @@ export declare class InvoiceMails extends OrganizationConnectionBaseEntity {
|
|
|
1480
1478
|
mailParams?: any;
|
|
1481
1479
|
memo?: string;
|
|
1482
1480
|
}
|
|
1483
|
-
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1484
|
-
code: string;
|
|
1485
|
-
}
|
|
1486
1481
|
export declare class InvoiceNote extends OrganizationConnectionBaseEntity {
|
|
1487
1482
|
content: string;
|
|
1488
1483
|
creatingUserId: number;
|
|
@@ -1500,6 +1495,11 @@ export declare class InvoiceToPayment extends BondBaseEntity {
|
|
|
1500
1495
|
paidAmount?: number;
|
|
1501
1496
|
currency: CurrencyEnum;
|
|
1502
1497
|
}
|
|
1498
|
+
export declare class GroupsInDivisions extends BondBaseEntity {
|
|
1499
|
+
groupId: number;
|
|
1500
|
+
divisionId: number;
|
|
1501
|
+
deletedAt?: Date;
|
|
1502
|
+
}
|
|
1503
1503
|
export declare class League extends OrganizationConnectionBaseEntity {
|
|
1504
1504
|
name: string | null;
|
|
1505
1505
|
description: string | null;
|
|
@@ -1698,12 +1698,6 @@ export declare class Membership extends OrganizationConnectionBaseEntity {
|
|
|
1698
1698
|
isAutoRenew?: boolean;
|
|
1699
1699
|
purchasedResources: PurchasedResource[];
|
|
1700
1700
|
}
|
|
1701
|
-
export declare class NotificationSubscriptions extends OrganizationConnectionBaseEntity {
|
|
1702
|
-
email: string | null;
|
|
1703
|
-
notificationType: NotificationTypeEnum | null;
|
|
1704
|
-
resourceId: number | null;
|
|
1705
|
-
resourceType: string | null;
|
|
1706
|
-
}
|
|
1707
1701
|
export declare class MembershipMember extends OrganizationConnectionBaseEntity {
|
|
1708
1702
|
membership: Membership;
|
|
1709
1703
|
membershipId: number;
|
|
@@ -1724,6 +1718,12 @@ export declare class MembershipMember extends OrganizationConnectionBaseEntity {
|
|
|
1724
1718
|
cancellationStatus?: CancellationStatusEnum;
|
|
1725
1719
|
isImported?: boolean;
|
|
1726
1720
|
}
|
|
1721
|
+
export declare class NotificationSubscriptions extends OrganizationConnectionBaseEntity {
|
|
1722
|
+
email: string | null;
|
|
1723
|
+
notificationType: NotificationTypeEnum | null;
|
|
1724
|
+
resourceId: number | null;
|
|
1725
|
+
resourceType: string | null;
|
|
1726
|
+
}
|
|
1727
1727
|
export declare class OpeningTime extends OrganizationConnectionBaseEntity {
|
|
1728
1728
|
id: number;
|
|
1729
1729
|
dayOfWeek: number;
|
|
@@ -2166,13 +2166,6 @@ export declare class Resource extends OrganizationConnectionBaseEntity {
|
|
|
2166
2166
|
purchasedResources: PurchasedResource[];
|
|
2167
2167
|
linkSEO: string;
|
|
2168
2168
|
}
|
|
2169
|
-
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2170
|
-
name: string;
|
|
2171
|
-
facilityId: number;
|
|
2172
|
-
parentSlotId: number;
|
|
2173
|
-
childrenSlotIds: number[];
|
|
2174
|
-
deletedAt?: Date;
|
|
2175
|
-
}
|
|
2176
2169
|
export declare class School extends BondBaseEntity {
|
|
2177
2170
|
name: string | null;
|
|
2178
2171
|
alias: string[] | null;
|
|
@@ -2181,6 +2174,13 @@ export declare class School extends BondBaseEntity {
|
|
|
2181
2174
|
phone: string | null;
|
|
2182
2175
|
dataId: number | null;
|
|
2183
2176
|
}
|
|
2177
|
+
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2178
|
+
name: string;
|
|
2179
|
+
facilityId: number;
|
|
2180
|
+
parentSlotId: number;
|
|
2181
|
+
childrenSlotIds: number[];
|
|
2182
|
+
deletedAt?: Date;
|
|
2183
|
+
}
|
|
2184
2184
|
export declare class SeasonAttendee extends BondBaseEntity {
|
|
2185
2185
|
status: RequestStatusEnum;
|
|
2186
2186
|
paymentStatus: PaymentStatusEnum;
|
|
@@ -2226,10 +2226,6 @@ export declare class SeasonTeam extends BondBaseEntity {
|
|
|
2226
2226
|
metaData: any | null;
|
|
2227
2227
|
team: Team;
|
|
2228
2228
|
}
|
|
2229
|
-
export declare class SpacesDependency extends BondBaseEntity {
|
|
2230
|
-
blockingSpaceId: number;
|
|
2231
|
-
blockedSpaceId: number;
|
|
2232
|
-
}
|
|
2233
2229
|
export declare class Station extends OrganizationConnectionBaseEntity {
|
|
2234
2230
|
name: string;
|
|
2235
2231
|
facilityId: number;
|
|
@@ -2241,6 +2237,10 @@ export declare class Station extends OrganizationConnectionBaseEntity {
|
|
|
2241
2237
|
subcategories: Subcategory[];
|
|
2242
2238
|
shifts?: Shift[];
|
|
2243
2239
|
}
|
|
2240
|
+
export declare class SpacesDependency extends BondBaseEntity {
|
|
2241
|
+
blockingSpaceId: number;
|
|
2242
|
+
blockedSpaceId: number;
|
|
2243
|
+
}
|
|
2244
2244
|
export declare class StationToSubcategory extends OrganizationConnectionBaseEntity {
|
|
2245
2245
|
stationId: number;
|
|
2246
2246
|
subcategoryId: number;
|
|
@@ -2370,21 +2370,10 @@ export declare class UserPaymentMethod extends BondBaseEntity {
|
|
|
2370
2370
|
paymentMethodId: string;
|
|
2371
2371
|
nextAllowedChargeDate?: Date;
|
|
2372
2372
|
}
|
|
2373
|
-
export declare class UsersInGroup extends BondBaseEntity {
|
|
2374
|
-
groupId: number;
|
|
2375
|
-
userId: number;
|
|
2376
|
-
deletedAt?: Date;
|
|
2377
|
-
}
|
|
2378
2373
|
export declare class VariantTitle extends OrganizationConnectionBaseEntity {
|
|
2379
2374
|
name: string;
|
|
2380
2375
|
variants: Variant[];
|
|
2381
2376
|
}
|
|
2382
|
-
export declare class Variant extends OrganizationConnectionBaseEntity {
|
|
2383
|
-
name: string;
|
|
2384
|
-
variantTitleId: number;
|
|
2385
|
-
variantTitle: VariantTitle;
|
|
2386
|
-
deletedAt?: Date;
|
|
2387
|
-
}
|
|
2388
2377
|
export declare class WebflowOrganizationConfiguration extends OrganizationConnectionBaseEntity {
|
|
2389
2378
|
projectToken: string;
|
|
2390
2379
|
programTypesCollectionId?: string;
|
|
@@ -2393,32 +2382,403 @@ export declare class WebflowOrganizationConfiguration extends OrganizationConnec
|
|
|
2393
2382
|
membershipCollectionId?: string;
|
|
2394
2383
|
programsCollectionId?: string;
|
|
2395
2384
|
}
|
|
2396
|
-
export declare
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2385
|
+
export declare class UsersInGroup extends BondBaseEntity {
|
|
2386
|
+
groupId: number;
|
|
2387
|
+
userId: number;
|
|
2388
|
+
deletedAt?: Date;
|
|
2400
2389
|
}
|
|
2401
|
-
export declare
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2390
|
+
export declare class Variant extends OrganizationConnectionBaseEntity {
|
|
2391
|
+
name: string;
|
|
2392
|
+
variantTitleId: number;
|
|
2393
|
+
variantTitle: VariantTitle;
|
|
2394
|
+
deletedAt?: Date;
|
|
2395
|
+
}
|
|
2396
|
+
export interface IEntitlementTerms {
|
|
2397
|
+
type: EntitlementTermsTypesEnum;
|
|
2398
|
+
id?: number;
|
|
2399
|
+
value?: string;
|
|
2400
|
+
minValue?: string;
|
|
2401
|
+
maxValue?: string;
|
|
2402
|
+
}
|
|
2403
|
+
export interface IQuestionAnswerObject {
|
|
2404
|
+
questionId: number;
|
|
2405
|
+
value: string;
|
|
2406
|
+
}
|
|
2407
|
+
export interface ILowestPriceForItem {
|
|
2408
|
+
itemId: number;
|
|
2409
|
+
itemType: ResourceNameTypeEnum;
|
|
2410
|
+
groupId: number;
|
|
2411
|
+
groupName?: string;
|
|
2412
|
+
price: number;
|
|
2413
|
+
overridesPrice: boolean;
|
|
2414
|
+
}
|
|
2415
|
+
export interface IResourcesAvailability {
|
|
2416
|
+
resourceType: ResourceNameTypeEnum;
|
|
2417
|
+
quantity: number;
|
|
2418
|
+
resourcesIds: number[];
|
|
2419
|
+
isPunchCard: boolean;
|
|
2420
|
+
resources?: any[];
|
|
2421
|
+
}
|
|
2422
|
+
export interface IPackageResponse {
|
|
2423
|
+
parentProduct: Product;
|
|
2424
|
+
children: IChildProduct[];
|
|
2425
|
+
}
|
|
2426
|
+
export interface IChildProduct {
|
|
2427
|
+
product: Product;
|
|
2428
|
+
relationType: PackageProductsRelationTypeEnum;
|
|
2429
|
+
timePeriod?: AddonTimePeriodEnum;
|
|
2430
|
+
}
|
|
2431
|
+
export interface ISeasonAttendeeInfo {
|
|
2432
|
+
applicationAnswers: Answer[];
|
|
2433
|
+
segments: (SeasonAsSeasonSegment | EventAsSeasonSegment)[];
|
|
2434
|
+
invoices: Invoice[];
|
|
2435
|
+
payments: Payment[];
|
|
2436
|
+
products: Product[];
|
|
2437
|
+
redeemNext: ProductsUsers;
|
|
2438
|
+
}
|
|
2439
|
+
export interface ISeasonAttendeeListInfo {
|
|
2440
|
+
userId: number;
|
|
2441
|
+
userFirstName: string;
|
|
2442
|
+
userLastName: string;
|
|
2443
|
+
userGender: number;
|
|
2444
|
+
userBirthDate: Date;
|
|
2445
|
+
userProfilePicUrl: string;
|
|
2446
|
+
customerId: number;
|
|
2447
|
+
customerEmail: string;
|
|
2448
|
+
paymentStatus: string;
|
|
2449
|
+
productName: string;
|
|
2450
|
+
punchCard: boolean;
|
|
2451
|
+
}
|
|
2452
|
+
export declare class SeasonAsSeasonSegment extends ProgramSeason {
|
|
2453
|
+
segmentType: ResourceNameTypeEnum;
|
|
2454
|
+
participantRegisteredDate?: string;
|
|
2455
|
+
}
|
|
2456
|
+
export declare class EventAsSeasonSegment extends Event {
|
|
2457
|
+
segmentType: ResourceNameTypeEnum;
|
|
2458
|
+
participantRegisteredDate?: string;
|
|
2459
|
+
}
|
|
2460
|
+
export interface ITokenResonse {
|
|
2461
|
+
token: string;
|
|
2462
|
+
}
|
|
2463
|
+
export interface IStripeBondInvoices {
|
|
2464
|
+
paidStripePaymentIntent: Stripe.PaymentIntent;
|
|
2465
|
+
bondPaidPayment: Payment;
|
|
2466
|
+
invoice?: Invoice;
|
|
2467
|
+
customer?: Customer;
|
|
2468
|
+
}
|
|
2469
|
+
export interface IPartialPaymentData {
|
|
2470
|
+
purchasingUserId: number;
|
|
2471
|
+
paymentData: PurchasePaymentDto;
|
|
2472
|
+
amountToPay: number;
|
|
2473
|
+
}
|
|
2474
|
+
export interface IPayment {
|
|
2475
|
+
id: number;
|
|
2476
|
+
total: number;
|
|
2477
|
+
paymentMethod: PaymentMethodTypeEnum;
|
|
2478
|
+
status: PaymentStatusEnum;
|
|
2479
|
+
createdAt: Date;
|
|
2480
|
+
invoices: number[];
|
|
2481
|
+
}
|
|
2482
|
+
export interface IPaginationData<T> {
|
|
2483
|
+
meta: {
|
|
2484
|
+
totalItems: number;
|
|
2485
|
+
itemsPerPage: number;
|
|
2486
|
+
totalPages: number;
|
|
2487
|
+
currentPage: number;
|
|
2488
|
+
};
|
|
2489
|
+
data: T[];
|
|
2490
|
+
}
|
|
2491
|
+
export interface IPricesOfProductsResults {
|
|
2492
|
+
productId: number;
|
|
2493
|
+
userId: number;
|
|
2494
|
+
price: number;
|
|
2495
|
+
groupId?: number;
|
|
2496
|
+
groupName?: string;
|
|
2497
|
+
originalPrice?: number;
|
|
2498
|
+
priceWithoutTax: number;
|
|
2499
|
+
tax: number;
|
|
2500
|
+
isTaxInclusive: boolean;
|
|
2501
|
+
}
|
|
2502
|
+
export interface IPaymentMethodToFundLeft {
|
|
2503
|
+
paymentType: PaymentMethodTypeEnum;
|
|
2504
|
+
paymentMethodId: string;
|
|
2505
|
+
fundLeft: number;
|
|
2506
|
+
ccLast4?: string;
|
|
2507
|
+
ccBrand?: string;
|
|
2508
|
+
}
|
|
2509
|
+
export interface IVariantsAndTitle {
|
|
2510
|
+
title: VariantTitle;
|
|
2511
|
+
variants: Variant[];
|
|
2512
|
+
}
|
|
2513
|
+
export interface IProgramSeasonActivityTimes {
|
|
2514
|
+
dayOfWeek: number;
|
|
2515
|
+
open: string;
|
|
2516
|
+
close: string;
|
|
2517
|
+
}
|
|
2518
|
+
export interface IProgramSeasonActivityTimesAsDates {
|
|
2519
|
+
date: string;
|
|
2520
|
+
startTime: string;
|
|
2521
|
+
endTime: string;
|
|
2522
|
+
}
|
|
2523
|
+
export interface IBlockedDates {
|
|
2524
|
+
name: string;
|
|
2525
|
+
startDate: Date;
|
|
2526
|
+
endDate: Date;
|
|
2527
|
+
}
|
|
2528
|
+
export interface ISingleMemberForRenewal {
|
|
2529
|
+
member_id: number;
|
|
2530
|
+
member_membershipId: number;
|
|
2531
|
+
member_userId: number;
|
|
2532
|
+
member_nextPaymentMethodId?: string;
|
|
2533
|
+
member_nextPaymentType?: PaymentMethodTypeEnum;
|
|
2534
|
+
member_answerTitleIds?: number[];
|
|
2535
|
+
member_organizationId: number;
|
|
2536
|
+
product_productPrice: number;
|
|
2537
|
+
product_productId: number;
|
|
2538
|
+
invoice_payingUserId: number;
|
|
2539
|
+
invoice_paymentMethodId: string;
|
|
2540
|
+
invoice_paymentType: PaymentMethodTypeEnum;
|
|
2541
|
+
endDate: Date;
|
|
2542
|
+
membership_name: string;
|
|
2543
|
+
user_firstName: string;
|
|
2544
|
+
user_lastName: string;
|
|
2545
|
+
user_email: string;
|
|
2546
|
+
}
|
|
2547
|
+
export interface IFamilyMemberForRenewal extends ISingleMemberForRenewal {
|
|
2548
|
+
package_parentProductId: number;
|
|
2549
|
+
product2_productPrice: number;
|
|
2550
|
+
familyid: number;
|
|
2551
|
+
invoice_id: number;
|
|
2552
|
+
}
|
|
2553
|
+
export interface IResourceRegistrationData {
|
|
2554
|
+
id: number;
|
|
2555
|
+
resourceType: ResourceNameTypeEnum;
|
|
2556
|
+
openNumDays?: number;
|
|
2557
|
+
openNumMinutes?: number;
|
|
2558
|
+
openTime?: string;
|
|
2559
|
+
closeNumDays?: number;
|
|
2560
|
+
closeNumMinutes?: number;
|
|
2561
|
+
closeTime?: string;
|
|
2562
|
+
registrationWindowStatus?: RegistrationWindowStatusEnum;
|
|
2563
|
+
}
|
|
2564
|
+
export interface IResourceDataForConstraintsCalc {
|
|
2565
|
+
id: number;
|
|
2566
|
+
startDate: string;
|
|
2567
|
+
startTime: string;
|
|
2568
|
+
}
|
|
2569
|
+
export interface IRegistrationConstraintsSetting {
|
|
2570
|
+
numDays?: number;
|
|
2571
|
+
numMinutes?: number;
|
|
2572
|
+
}
|
|
2573
|
+
export interface IAttendeeDataToNotify {
|
|
2574
|
+
firstName: string;
|
|
2575
|
+
lastName: string;
|
|
2576
|
+
email: string;
|
|
2577
|
+
sessionName: string;
|
|
2578
|
+
parentSessionName?: string;
|
|
2579
|
+
organizationName: string;
|
|
2580
|
+
programName: string;
|
|
2581
|
+
}
|
|
2582
|
+
export interface IEventInSchedule {
|
|
2583
|
+
eventId: number;
|
|
2584
|
+
eventName: string;
|
|
2585
|
+
eventStartDate: string;
|
|
2586
|
+
eventEndDate: string;
|
|
2587
|
+
eventStartTime: string;
|
|
2588
|
+
eventEndTime: string;
|
|
2589
|
+
programId: number;
|
|
2590
|
+
programName: string;
|
|
2591
|
+
programType: ProgramTypesEnum;
|
|
2592
|
+
sessionId: number;
|
|
2593
|
+
sessionName: string;
|
|
2594
|
+
sports: number;
|
|
2595
|
+
spaces: {
|
|
2596
|
+
spaceId: number;
|
|
2597
|
+
spaceName: string;
|
|
2598
|
+
}[];
|
|
2599
|
+
status?: RegistrationValidationStatusEnum;
|
|
2600
|
+
}
|
|
2601
|
+
export interface ISlotInSchedule {
|
|
2602
|
+
facilityId: number;
|
|
2603
|
+
facilityName: string;
|
|
2604
|
+
spaces: ISpaceWithSlots[];
|
|
2605
|
+
}
|
|
2606
|
+
export interface ISpaceWithSlots {
|
|
2607
|
+
id: number;
|
|
2608
|
+
name: string;
|
|
2609
|
+
slots: ISlotReservationData[];
|
|
2610
|
+
}
|
|
2611
|
+
export interface ISlotReservationData {
|
|
2612
|
+
reservationId: number;
|
|
2613
|
+
reservationName: string;
|
|
2614
|
+
date: string;
|
|
2615
|
+
startTime: string;
|
|
2616
|
+
endTime: string;
|
|
2617
|
+
notes: string;
|
|
2618
|
+
spaceId: number;
|
|
2619
|
+
isRental: boolean;
|
|
2620
|
+
slotType: SlotTypeEnum;
|
|
2621
|
+
slotId: number;
|
|
2622
|
+
eventId: number;
|
|
2623
|
+
isPrivate: boolean;
|
|
2624
|
+
}
|
|
2625
|
+
export interface IRawEventInSchedule extends IEventInSchedule {
|
|
2626
|
+
parentSessionId: number;
|
|
2627
|
+
parentSessionName: string;
|
|
2628
|
+
eventTimezone: string;
|
|
2629
|
+
maxParticipants: number;
|
|
2630
|
+
maxMaleParticipants: number;
|
|
2631
|
+
maxFemaleParticipants: number;
|
|
2632
|
+
isPunchCard: boolean;
|
|
2633
|
+
}
|
|
2634
|
+
export interface IBasicSpaceAndSlotCreator {
|
|
2635
|
+
id: number;
|
|
2636
|
+
name: string;
|
|
2637
|
+
bookingCreatorId: number;
|
|
2638
|
+
}
|
|
2639
|
+
export interface IRawSlotInSchedule {
|
|
2640
|
+
startDate: string;
|
|
2641
|
+
endDate: string;
|
|
2642
|
+
startTime: string;
|
|
2643
|
+
endTime: string;
|
|
2644
|
+
reservationId: number;
|
|
2645
|
+
eventTitle: string;
|
|
2646
|
+
publicNotes: string;
|
|
2647
|
+
spaceId: number;
|
|
2648
|
+
creatorType: ResourceNameTypeEnum;
|
|
2649
|
+
slotType: SlotTypeEnum;
|
|
2650
|
+
slotId: number;
|
|
2651
|
+
eventId: number;
|
|
2652
|
+
isPrivate: boolean;
|
|
2653
|
+
}
|
|
2654
|
+
export interface IPurchasedResourcesRaw {
|
|
2655
|
+
purchasedId: number;
|
|
2656
|
+
purchasedProductUserId: number;
|
|
2657
|
+
purchasedResourceId: number;
|
|
2658
|
+
purchasedResourceType: ResourceNameTypeEnum;
|
|
2659
|
+
purchasedStatus: PurchasedResourceStatusEnum;
|
|
2660
|
+
pUserId: number;
|
|
2661
|
+
pUserPaymentStatus: PaymentStatusEnum;
|
|
2662
|
+
pUserProductId: number;
|
|
2663
|
+
pUserProductName: string;
|
|
2664
|
+
pUserProductPrice: number;
|
|
2665
|
+
pUserProductPriceCurrency: string;
|
|
2666
|
+
pUserProductQuantity: number;
|
|
2667
|
+
pUserProductQuantityLeft: number;
|
|
2668
|
+
pUserUserId: number;
|
|
2669
|
+
}
|
|
2670
|
+
export interface IUsersPasses {
|
|
2671
|
+
userId: number;
|
|
2672
|
+
userFirstName: string;
|
|
2673
|
+
userLastName: string;
|
|
2674
|
+
organizationId: number;
|
|
2675
|
+
programId: number;
|
|
2676
|
+
programName: string;
|
|
2677
|
+
sessionId: number;
|
|
2678
|
+
sessionName: string;
|
|
2679
|
+
productId: number;
|
|
2680
|
+
productName: string;
|
|
2681
|
+
productUserId: number;
|
|
2682
|
+
purchaseDate: Date;
|
|
2683
|
+
passesLeft: number;
|
|
2684
|
+
}
|
|
2685
|
+
export interface ISessionsLandingPage {
|
|
2686
|
+
sessionId: number;
|
|
2687
|
+
name: string;
|
|
2688
|
+
startDate: Date;
|
|
2689
|
+
endDate: Date;
|
|
2690
|
+
registrationStartDate: Date;
|
|
2691
|
+
registrationEndDate: Date;
|
|
2692
|
+
sport: SportsEnum;
|
|
2693
|
+
minAge: string;
|
|
2694
|
+
maxAge: string;
|
|
2695
|
+
maxParticipants?: number;
|
|
2696
|
+
gender: GenderEnum;
|
|
2697
|
+
activityTimes: ActivityTimes[];
|
|
2698
|
+
earlyRegistrationStartDate?: Date;
|
|
2699
|
+
earlyRegistrationEndDate?: Date;
|
|
2700
|
+
lateRegistrationStartDate?: Date;
|
|
2701
|
+
lateRegistrationEndDate?: Date;
|
|
2702
|
+
attendeeCount?: number;
|
|
2703
|
+
segmentsOrEvents: 'segment' | 'event';
|
|
2704
|
+
}
|
|
2705
|
+
export interface ISessionsLandingPageExpanded extends ISessionsLandingPage, ISlimAddons {
|
|
2706
|
+
hasRequiredMembership: boolean;
|
|
2707
|
+
hasEntitledPricing: boolean;
|
|
2708
|
+
lowestPrice?: number;
|
|
2709
|
+
products?: ISessionLandingPageProduct[];
|
|
2710
|
+
}
|
|
2711
|
+
export interface ISessionLandingPageExpanded extends ISessionsLandingPage {
|
|
2712
|
+
hasRequiredMembership: boolean;
|
|
2713
|
+
hasEntitledPricing: boolean;
|
|
2714
|
+
products?: ISessionLandingPageProduct[];
|
|
2715
|
+
segments?: Event[] | ProgramSeason[];
|
|
2716
|
+
programName: string;
|
|
2717
|
+
programId: number;
|
|
2718
|
+
levelOfPlay: LevelOfPlayEnum[];
|
|
2719
|
+
registrationConstraints: IResourceRegistrationData[];
|
|
2720
|
+
}
|
|
2721
|
+
export interface ISlimAddons {
|
|
2722
|
+
addons?: {
|
|
2723
|
+
id: number;
|
|
2724
|
+
timePeriod: AddonTimePeriodEnum;
|
|
2725
|
+
name: string;
|
|
2726
|
+
productType?: ProductTypesEnum;
|
|
2727
|
+
productSubType?: string;
|
|
2728
|
+
}[];
|
|
2729
|
+
}
|
|
2730
|
+
export interface ISessionLandingPageProduct extends ISlimAddons {
|
|
2731
|
+
id: number;
|
|
2732
|
+
name: string;
|
|
2733
|
+
startDate?: Date;
|
|
2734
|
+
endDate?: Date;
|
|
2735
|
+
downpayment?: number;
|
|
2736
|
+
description?: string;
|
|
2737
|
+
prices: Price[];
|
|
2738
|
+
productSubType?: ProductSubTypesEnum;
|
|
2739
|
+
punchCard: boolean;
|
|
2740
|
+
isAddon: boolean;
|
|
2741
|
+
defaultPriceId?: number;
|
|
2742
|
+
}
|
|
2743
|
+
export interface CreatePaymentIntentDto extends PurchaseRequestDto {
|
|
2744
|
+
destinationId?: string;
|
|
2745
|
+
stripeCustomerId?: string;
|
|
2746
|
+
fee?: number;
|
|
2747
|
+
}
|
|
2748
|
+
export interface IReservationCreatorData {
|
|
2749
|
+
type: ResourceNameTypeEnum;
|
|
2750
|
+
id: number;
|
|
2751
|
+
organizationId: number;
|
|
2752
|
+
startDate: string;
|
|
2753
|
+
endDate: string;
|
|
2754
|
+
sportId: number;
|
|
2755
|
+
}
|
|
2756
|
+
export declare enum EntitlementTermsTypesEnum {
|
|
2757
|
+
QUESTION = "question",
|
|
2758
|
+
CITY = "city",
|
|
2759
|
+
MEMBERSHIP = "membership"
|
|
2760
|
+
}
|
|
2761
|
+
export declare enum ResourceNameTypeEnum {
|
|
2762
|
+
EVENT = "event",
|
|
2763
|
+
VENUE = "venue",
|
|
2764
|
+
TEAM = "team",
|
|
2765
|
+
LEAGUE = "league",
|
|
2766
|
+
USER = "user",
|
|
2767
|
+
ORGANIZATION = "organization",
|
|
2768
|
+
APP = "app",
|
|
2769
|
+
FEED = "feed",
|
|
2770
|
+
MATCH = "match",
|
|
2771
|
+
ROUND = "round",
|
|
2772
|
+
PORTAL = "portal",
|
|
2773
|
+
SEASON = "season",
|
|
2774
|
+
TOURNAMENT = "tournament",
|
|
2775
|
+
MEMBERSHIP = "membership",
|
|
2776
|
+
DIVISION = "division",
|
|
2777
|
+
GAMESLOT = "gameslot",
|
|
2778
|
+
SPACE = "space",
|
|
2779
|
+
RESERVATION = "reservation",
|
|
2780
|
+
INVOICE = "invoice",
|
|
2781
|
+
CUSTOMER = "customer",
|
|
2422
2782
|
PACKAGE = "package",
|
|
2423
2783
|
FACILITY = "facility",
|
|
2424
2784
|
PROGRAM = "program",
|
|
@@ -2699,603 +3059,243 @@ export declare enum DayOfWeekEnum {
|
|
|
2699
3059
|
WEDNESDAY = 3,
|
|
2700
3060
|
THURSDAY = 4,
|
|
2701
3061
|
FRIDAY = 5,
|
|
2702
|
-
SATURDAY = 6
|
|
2703
|
-
}
|
|
2704
|
-
export declare enum ActionTypesEnum {
|
|
2705
|
-
CREATE = "create",
|
|
2706
|
-
READ = "read",
|
|
2707
|
-
UPDATE = "update",
|
|
2708
|
-
DELETE = "delete"
|
|
2709
|
-
}
|
|
2710
|
-
export declare enum ActionSourcePlatformEnum {
|
|
2711
|
-
ADMIN = "admin",
|
|
2712
|
-
BACKOFFICE = "backoffice",
|
|
2713
|
-
CONSUMER = "consumer"
|
|
2714
|
-
}
|
|
2715
|
-
export declare enum RolesEnum {
|
|
2716
|
-
ORG_ADMIN = "organizationAdmin",
|
|
2717
|
-
BOND_ADMIN = "bondAdmin"
|
|
2718
|
-
}
|
|
2719
|
-
export declare enum SeasonPoolStatusEnum {
|
|
2720
|
-
IN_POOL = 5,
|
|
2721
|
-
ASSIGNED = 1,
|
|
2722
|
-
QUIT = 2,
|
|
2723
|
-
SUSPENDED = 3,
|
|
2724
|
-
INACTIVE = 4
|
|
2725
|
-
}
|
|
2726
|
-
export declare enum AmenitiesEnum {
|
|
2727
|
-
HEAT = 1,
|
|
2728
|
-
AC = 2,
|
|
2729
|
-
WIFI = 3,
|
|
2730
|
-
RESTROOMS = 4,
|
|
2731
|
-
DRINKING_FOUNTAIN = 5,
|
|
2732
|
-
PARKING = 6,
|
|
2733
|
-
CONCESSIONS = 7,
|
|
2734
|
-
SHELTER = 8,
|
|
2735
|
-
PORTABLE_RESTROOMS = 9,
|
|
2736
|
-
LIGHTS = 10,
|
|
2737
|
-
LOCKER_ROOM = 11,
|
|
2738
|
-
PAID_PARKING = 12,
|
|
2739
|
-
ACCESSIBLE = 13
|
|
2740
|
-
}
|
|
2741
|
-
export declare enum ResourceSubTypeEnum {
|
|
2742
|
-
COURT = "court",
|
|
2743
|
-
FIELD = "field",
|
|
2744
|
-
ROOM = "room",
|
|
2745
|
-
DIAMOND = "diamond",
|
|
2746
|
-
RINK = "rink",
|
|
2747
|
-
STUDIO = "studio",
|
|
2748
|
-
POOL = "pool",
|
|
2749
|
-
BATTING_CAGE = "batting cage",
|
|
2750
|
-
SHELTER = "shelter",
|
|
2751
|
-
GOLF_SIMULATOR = "golf simulator"
|
|
2752
|
-
}
|
|
2753
|
-
export declare enum ResourceTypeEnum {
|
|
2754
|
-
SPACE = "space"
|
|
2755
|
-
}
|
|
2756
|
-
export declare enum ResourceAgesEnum {
|
|
2757
|
-
ADULTS = "adults",
|
|
2758
|
-
CHILDREN = "children"
|
|
2759
|
-
}
|
|
2760
|
-
export declare enum SpacePropertiesEnum {
|
|
2761
|
-
OUTDOOR = "outdoor",
|
|
2762
|
-
INDOOR = "indoor"
|
|
2763
|
-
}
|
|
2764
|
-
export declare enum SurfacesEnum {
|
|
2765
|
-
GRASS = "grass",
|
|
2766
|
-
TURF = "turf",
|
|
2767
|
-
FIELD_TURF = "fieldTurf",
|
|
2768
|
-
ASTRO_TURF = "astroTurf",
|
|
2769
|
-
HARDWOOD = "hardwood",
|
|
2770
|
-
ASPHALT = "asphalt",
|
|
2771
|
-
SAND = "sand",
|
|
2772
|
-
ICE = "ice",
|
|
2773
|
-
SPORT_COURT = "sportCourt"
|
|
2774
|
-
}
|
|
2775
|
-
export declare enum RegistrationConstraintPeriodTypeEnum {
|
|
2776
|
-
MINUTES = "minutes",
|
|
2777
|
-
DAYS = "days"
|
|
2778
|
-
}
|
|
2779
|
-
export declare enum RegistrationWindowStatusEnum {
|
|
2780
|
-
NOT_OPEN_YET = "not_opened_yet",
|
|
2781
|
-
OPEN = "open",
|
|
2782
|
-
CLOSED = "closed"
|
|
2783
|
-
}
|
|
2784
|
-
export declare enum RegistrationValidationStatusEnum {
|
|
2785
|
-
FULL = "full",
|
|
2786
|
-
ALREADY_REGISTERED = "registered",
|
|
2787
|
-
AVAILABLE = "available",
|
|
2788
|
-
NOT_OPEN_YET = "not opened",
|
|
2789
|
-
ALREADY_CLOSED = "closed",
|
|
2790
|
-
NO_PRODUCT_FOUND = "no-product-found"
|
|
2791
|
-
}
|
|
2792
|
-
export declare enum DiscountMethodsEnum {
|
|
2793
|
-
PERCENT = "percent",
|
|
2794
|
-
AMOUNT = "amount"
|
|
2795
|
-
}
|
|
2796
|
-
export declare enum UserAuthorizationsTypeEnum {
|
|
2797
|
-
ORGANIZATION = "organization"
|
|
2798
|
-
}
|
|
2799
|
-
export declare enum OrganizationLocaleDateEnum {
|
|
2800
|
-
USA = "USA"
|
|
2801
|
-
}
|
|
2802
|
-
export declare enum DateTimeFormatsEnum {
|
|
2803
|
-
API_DATE = "YYYY/MM/DD",
|
|
2804
|
-
API_TIME = "HH:mm:ss",
|
|
2805
|
-
DB_DATE = "YYYY-MM-DD"
|
|
2806
|
-
}
|
|
2807
|
-
export declare enum SlotTypeEnum {
|
|
2808
|
-
EXTERNAL = "external",
|
|
2809
|
-
INTERNAL = "internal",
|
|
2810
|
-
MAINTENANCE = "maintenance",
|
|
2811
|
-
CUSTOM = "custom"
|
|
2812
|
-
}
|
|
2813
|
-
export declare enum PlatformsEnum {
|
|
2814
|
-
CONSUMER = "consumer",
|
|
2815
|
-
CONSUMER_CHECKOUT = "consumer_checkout",
|
|
2816
|
-
BO = "backoffice",
|
|
2817
|
-
MOBILE = "mobile",
|
|
2818
|
-
CRON = "cron"
|
|
2819
|
-
}
|
|
2820
|
-
export declare enum ShiftStatusEnum {
|
|
2821
|
-
OPEN = "open",
|
|
2822
|
-
CLOSED = "closed",
|
|
2823
|
-
MANAGMENT_CLOSED = "closed_by_manager",
|
|
2824
|
-
RECONCILED = "reconciled"
|
|
2825
|
-
}
|
|
2826
|
-
export declare enum EventStatusEnum {
|
|
2827
|
-
OPEN = 1,
|
|
2828
|
-
DRAFT = 2,
|
|
2829
|
-
FULL = 3,
|
|
2830
|
-
CANCELLED = 4,
|
|
2831
|
-
CLOSED = 5,
|
|
2832
|
-
DELETED = 6
|
|
2833
|
-
}
|
|
2834
|
-
export declare enum ReservationTypeEnum {
|
|
2835
|
-
RENTAL = "rental",
|
|
2836
|
-
PROGRAM = "program",
|
|
2837
|
-
MAINTENANCE = "maintenance",
|
|
2838
|
-
CUSTOM = "custom",
|
|
2839
|
-
INTERNAL = "internal"
|
|
2840
|
-
}
|
|
2841
|
-
export declare enum SlotDurationTypeEnum {
|
|
2842
|
-
DATES = "dates",
|
|
2843
|
-
ALL_DAY = "all day",
|
|
2844
|
-
DURATION = "duration"
|
|
2845
|
-
}
|
|
2846
|
-
export declare enum DurationUnitTypesEnum {
|
|
2847
|
-
MINUTES = "minutes",
|
|
2848
|
-
HOURS = "hours"
|
|
2849
|
-
}
|
|
2850
|
-
export declare enum FrequencyEnum {
|
|
2851
|
-
NONE = "none",
|
|
2852
|
-
WEEKLY = "weekly",
|
|
2853
|
-
DAILY = "daily",
|
|
2854
|
-
MONTHLY = "monthly",
|
|
2855
|
-
YEARLY = "yearly"
|
|
2856
|
-
}
|
|
2857
|
-
export declare enum MaintenanceTimingEnum {
|
|
2858
|
-
BEFORE = 1,
|
|
2859
|
-
AFTER = 2,
|
|
2860
|
-
AT_THE_BEGINING = 3,
|
|
2861
|
-
AT_THE_END = 4
|
|
2862
|
-
}
|
|
2863
|
-
export declare enum CreatorTypeEnum {
|
|
2864
|
-
SPACE = "space",
|
|
2865
|
-
PROGRAM_SEASON = "program_season",
|
|
2866
|
-
SEASON = "season"
|
|
2867
|
-
}
|
|
2868
|
-
export declare enum UpdatePricesTypeEnum {
|
|
2869
|
-
INDIVIDUAL = "indvidual",
|
|
2870
|
-
CATEGORY = "category",
|
|
2871
|
-
GLOBAL = "global"
|
|
2872
|
-
}
|
|
2873
|
-
export declare enum BondDayOfWeekEnum {
|
|
2874
|
-
MONDAY = 2,
|
|
2875
|
-
TUESDAY = 3,
|
|
2876
|
-
WEDNESDAY = 4,
|
|
2877
|
-
THURSDAY = 5,
|
|
2878
|
-
FRIDAY = 6,
|
|
2879
|
-
SATURDAY = 7,
|
|
2880
|
-
SUNDAY = 8
|
|
2881
|
-
}
|
|
2882
|
-
export declare enum ReservationMigrationStatusEnum {
|
|
2883
|
-
NEW = "new",
|
|
2884
|
-
NO = "no",
|
|
2885
|
-
YES = "yes"
|
|
2886
|
-
}
|
|
2887
|
-
export declare enum ProductPackageLevelEnum {
|
|
2888
|
-
HOUR = "hour",
|
|
2889
|
-
SLOT = "slot",
|
|
2890
|
-
RESERVATION = "reservation"
|
|
2891
|
-
}
|
|
2892
|
-
export declare enum CancellationStatusEnum {
|
|
2893
|
-
IMMEDIATE = "immediate",
|
|
2894
|
-
AUTO_RENEWAL = "auto_renewal"
|
|
2895
|
-
}
|
|
2896
|
-
export declare enum SeasonScheduleStatusEnum {
|
|
2897
|
-
DRAFT = 0,
|
|
2898
|
-
PUBLISHED = 1
|
|
2899
|
-
}
|
|
2900
|
-
export declare enum FinancialStepEnum {
|
|
2901
|
-
VOID = "void",
|
|
2902
|
-
REFUND = "refund",
|
|
2903
|
-
NONE = "none",
|
|
2904
|
-
REFUND_AND_VOID = "refund-and-void",
|
|
2905
|
-
APPEND = "append"
|
|
2906
|
-
}
|
|
2907
|
-
export declare enum StripeAccountTypesEnum {
|
|
2908
|
-
STRIPE = "stripe",
|
|
2909
|
-
STRIPE_CUSTOM = "stripe:account:custom",
|
|
2910
|
-
STRIPE_CUSTOMER = "stripe:customer"
|
|
2911
|
-
}
|
|
2912
|
-
export declare enum LinkedAccountStatus {
|
|
2913
|
-
PENDING = 1,
|
|
2914
|
-
ACTIVE = 2,
|
|
2915
|
-
PRE_PENDING = 3
|
|
2916
|
-
}
|
|
2917
|
-
export declare enum AddonParentTypeEnum {
|
|
2918
|
-
RESERVATION = "reservation",
|
|
2919
|
-
SLOT = "slot"
|
|
2920
|
-
}
|
|
2921
|
-
export declare enum EEmailStatus {
|
|
2922
|
-
SENT = "sent",
|
|
2923
|
-
OPENED = "opened",
|
|
2924
|
-
PAID = "paid",
|
|
2925
|
-
CANCELED = "canceled"
|
|
2926
|
-
}
|
|
2927
|
-
export declare enum PaymentSettingStatusEnum {
|
|
2928
|
-
ENABLED = 1,
|
|
2929
|
-
DISABLED_REDIRECT = 2,
|
|
2930
|
-
DISABLED_INFO_ONLY = 3,
|
|
2931
|
-
DISABLED_EMAIL = 4
|
|
2932
|
-
}
|
|
2933
|
-
export declare enum NotifyMethodEnum {
|
|
2934
|
-
EMAIL = "Email"
|
|
2935
|
-
}
|
|
2936
|
-
export declare enum EStartDateFilter {
|
|
2937
|
-
LessThan = "lt",
|
|
2938
|
-
GreaterOrEqualTo = "gte"
|
|
2939
|
-
}
|
|
2940
|
-
export interface IEntitlementTerms {
|
|
2941
|
-
type: EntitlementTermsTypesEnum;
|
|
2942
|
-
id?: number;
|
|
2943
|
-
value?: string;
|
|
2944
|
-
minValue?: string;
|
|
2945
|
-
maxValue?: string;
|
|
2946
|
-
}
|
|
2947
|
-
export interface IQuestionAnswerObject {
|
|
2948
|
-
questionId: number;
|
|
2949
|
-
value: string;
|
|
2950
|
-
}
|
|
2951
|
-
export interface ILowestPriceForItem {
|
|
2952
|
-
itemId: number;
|
|
2953
|
-
itemType: ResourceNameTypeEnum;
|
|
2954
|
-
groupId: number;
|
|
2955
|
-
groupName?: string;
|
|
2956
|
-
price: number;
|
|
2957
|
-
overridesPrice: boolean;
|
|
3062
|
+
SATURDAY = 6
|
|
2958
3063
|
}
|
|
2959
|
-
export
|
|
2960
|
-
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
resources?: any[];
|
|
3064
|
+
export declare enum ActionTypesEnum {
|
|
3065
|
+
CREATE = "create",
|
|
3066
|
+
READ = "read",
|
|
3067
|
+
UPDATE = "update",
|
|
3068
|
+
DELETE = "delete"
|
|
2965
3069
|
}
|
|
2966
|
-
export
|
|
2967
|
-
|
|
2968
|
-
|
|
3070
|
+
export declare enum ActionSourcePlatformEnum {
|
|
3071
|
+
ADMIN = "admin",
|
|
3072
|
+
BACKOFFICE = "backoffice",
|
|
3073
|
+
CONSUMER = "consumer"
|
|
2969
3074
|
}
|
|
2970
|
-
export
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
timePeriod?: AddonTimePeriodEnum;
|
|
3075
|
+
export declare enum RolesEnum {
|
|
3076
|
+
ORG_ADMIN = "organizationAdmin",
|
|
3077
|
+
BOND_ADMIN = "bondAdmin"
|
|
2974
3078
|
}
|
|
2975
|
-
export
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
redeemNext: ProductsUsers;
|
|
3079
|
+
export declare enum SeasonPoolStatusEnum {
|
|
3080
|
+
IN_POOL = 5,
|
|
3081
|
+
ASSIGNED = 1,
|
|
3082
|
+
QUIT = 2,
|
|
3083
|
+
SUSPENDED = 3,
|
|
3084
|
+
INACTIVE = 4
|
|
2982
3085
|
}
|
|
2983
|
-
export
|
|
2984
|
-
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
|
|
3086
|
+
export declare enum AmenitiesEnum {
|
|
3087
|
+
HEAT = 1,
|
|
3088
|
+
AC = 2,
|
|
3089
|
+
WIFI = 3,
|
|
3090
|
+
RESTROOMS = 4,
|
|
3091
|
+
DRINKING_FOUNTAIN = 5,
|
|
3092
|
+
PARKING = 6,
|
|
3093
|
+
CONCESSIONS = 7,
|
|
3094
|
+
SHELTER = 8,
|
|
3095
|
+
PORTABLE_RESTROOMS = 9,
|
|
3096
|
+
LIGHTS = 10,
|
|
3097
|
+
LOCKER_ROOM = 11,
|
|
3098
|
+
PAID_PARKING = 12,
|
|
3099
|
+
ACCESSIBLE = 13
|
|
2995
3100
|
}
|
|
2996
|
-
export declare
|
|
2997
|
-
|
|
2998
|
-
|
|
3101
|
+
export declare enum ResourceSubTypeEnum {
|
|
3102
|
+
COURT = "court",
|
|
3103
|
+
FIELD = "field",
|
|
3104
|
+
ROOM = "room",
|
|
3105
|
+
DIAMOND = "diamond",
|
|
3106
|
+
RINK = "rink",
|
|
3107
|
+
STUDIO = "studio",
|
|
3108
|
+
POOL = "pool",
|
|
3109
|
+
BATTING_CAGE = "batting cage",
|
|
3110
|
+
SHELTER = "shelter",
|
|
3111
|
+
GOLF_SIMULATOR = "golf simulator"
|
|
2999
3112
|
}
|
|
3000
|
-
export declare
|
|
3001
|
-
|
|
3002
|
-
participantRegisteredDate?: string;
|
|
3113
|
+
export declare enum ResourceTypeEnum {
|
|
3114
|
+
SPACE = "space"
|
|
3003
3115
|
}
|
|
3004
|
-
export
|
|
3005
|
-
|
|
3116
|
+
export declare enum ResourceAgesEnum {
|
|
3117
|
+
ADULTS = "adults",
|
|
3118
|
+
CHILDREN = "children"
|
|
3006
3119
|
}
|
|
3007
|
-
export
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
invoice?: Invoice;
|
|
3011
|
-
customer?: Customer;
|
|
3120
|
+
export declare enum SpacePropertiesEnum {
|
|
3121
|
+
OUTDOOR = "outdoor",
|
|
3122
|
+
INDOOR = "indoor"
|
|
3012
3123
|
}
|
|
3013
|
-
export
|
|
3014
|
-
|
|
3015
|
-
|
|
3016
|
-
|
|
3124
|
+
export declare enum SurfacesEnum {
|
|
3125
|
+
GRASS = "grass",
|
|
3126
|
+
TURF = "turf",
|
|
3127
|
+
FIELD_TURF = "fieldTurf",
|
|
3128
|
+
ASTRO_TURF = "astroTurf",
|
|
3129
|
+
HARDWOOD = "hardwood",
|
|
3130
|
+
ASPHALT = "asphalt",
|
|
3131
|
+
SAND = "sand",
|
|
3132
|
+
ICE = "ice",
|
|
3133
|
+
SPORT_COURT = "sportCourt"
|
|
3017
3134
|
}
|
|
3018
|
-
export
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
paymentMethod: PaymentMethodTypeEnum;
|
|
3022
|
-
status: PaymentStatusEnum;
|
|
3023
|
-
createdAt: Date;
|
|
3024
|
-
invoices: number[];
|
|
3135
|
+
export declare enum RegistrationConstraintPeriodTypeEnum {
|
|
3136
|
+
MINUTES = "minutes",
|
|
3137
|
+
DAYS = "days"
|
|
3025
3138
|
}
|
|
3026
|
-
export
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
totalPages: number;
|
|
3031
|
-
currentPage: number;
|
|
3032
|
-
};
|
|
3033
|
-
data: T[];
|
|
3139
|
+
export declare enum RegistrationWindowStatusEnum {
|
|
3140
|
+
NOT_OPEN_YET = "not_opened_yet",
|
|
3141
|
+
OPEN = "open",
|
|
3142
|
+
CLOSED = "closed"
|
|
3034
3143
|
}
|
|
3035
|
-
export
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
priceWithoutTax: number;
|
|
3043
|
-
tax: number;
|
|
3044
|
-
isTaxInclusive: boolean;
|
|
3144
|
+
export declare enum RegistrationValidationStatusEnum {
|
|
3145
|
+
FULL = "full",
|
|
3146
|
+
ALREADY_REGISTERED = "registered",
|
|
3147
|
+
AVAILABLE = "available",
|
|
3148
|
+
NOT_OPEN_YET = "not opened",
|
|
3149
|
+
ALREADY_CLOSED = "closed",
|
|
3150
|
+
NO_PRODUCT_FOUND = "no-product-found"
|
|
3045
3151
|
}
|
|
3046
|
-
export
|
|
3047
|
-
|
|
3048
|
-
|
|
3049
|
-
fundLeft: number;
|
|
3050
|
-
ccLast4?: string;
|
|
3051
|
-
ccBrand?: string;
|
|
3152
|
+
export declare enum DiscountMethodsEnum {
|
|
3153
|
+
PERCENT = "percent",
|
|
3154
|
+
AMOUNT = "amount"
|
|
3052
3155
|
}
|
|
3053
|
-
export
|
|
3054
|
-
|
|
3055
|
-
variants: Variant[];
|
|
3156
|
+
export declare enum UserAuthorizationsTypeEnum {
|
|
3157
|
+
ORGANIZATION = "organization"
|
|
3056
3158
|
}
|
|
3057
|
-
export
|
|
3058
|
-
|
|
3059
|
-
open: string;
|
|
3060
|
-
close: string;
|
|
3159
|
+
export declare enum OrganizationLocaleDateEnum {
|
|
3160
|
+
USA = "USA"
|
|
3061
3161
|
}
|
|
3062
|
-
export
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
|
|
3162
|
+
export declare enum DateTimeFormatsEnum {
|
|
3163
|
+
API_DATE = "YYYY/MM/DD",
|
|
3164
|
+
API_TIME = "HH:mm:ss",
|
|
3165
|
+
DB_DATE = "YYYY-MM-DD"
|
|
3066
3166
|
}
|
|
3067
|
-
export
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3167
|
+
export declare enum SlotTypeEnum {
|
|
3168
|
+
EXTERNAL = "external",
|
|
3169
|
+
INTERNAL = "internal",
|
|
3170
|
+
MAINTENANCE = "maintenance",
|
|
3171
|
+
CUSTOM = "custom"
|
|
3071
3172
|
}
|
|
3072
|
-
export
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
member_answerTitleIds?: number[];
|
|
3079
|
-
member_organizationId: number;
|
|
3080
|
-
product_productPrice: number;
|
|
3081
|
-
product_productId: number;
|
|
3082
|
-
invoice_payingUserId: number;
|
|
3083
|
-
invoice_paymentMethodId: string;
|
|
3084
|
-
invoice_paymentType: PaymentMethodTypeEnum;
|
|
3085
|
-
endDate: Date;
|
|
3086
|
-
membership_name: string;
|
|
3087
|
-
user_firstName: string;
|
|
3088
|
-
user_lastName: string;
|
|
3089
|
-
user_email: string;
|
|
3173
|
+
export declare enum PlatformsEnum {
|
|
3174
|
+
CONSUMER = "consumer",
|
|
3175
|
+
CONSUMER_CHECKOUT = "consumer_checkout",
|
|
3176
|
+
BO = "backoffice",
|
|
3177
|
+
MOBILE = "mobile",
|
|
3178
|
+
CRON = "cron"
|
|
3090
3179
|
}
|
|
3091
|
-
export
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
|
|
3095
|
-
|
|
3180
|
+
export declare enum ShiftStatusEnum {
|
|
3181
|
+
OPEN = "open",
|
|
3182
|
+
CLOSED = "closed",
|
|
3183
|
+
MANAGMENT_CLOSED = "closed_by_manager",
|
|
3184
|
+
RECONCILED = "reconciled"
|
|
3096
3185
|
}
|
|
3097
|
-
export
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
|
|
3102
|
-
|
|
3103
|
-
|
|
3104
|
-
closeNumMinutes?: number;
|
|
3105
|
-
closeTime?: string;
|
|
3106
|
-
registrationWindowStatus?: RegistrationWindowStatusEnum;
|
|
3186
|
+
export declare enum EventStatusEnum {
|
|
3187
|
+
OPEN = 1,
|
|
3188
|
+
DRAFT = 2,
|
|
3189
|
+
FULL = 3,
|
|
3190
|
+
CANCELLED = 4,
|
|
3191
|
+
CLOSED = 5,
|
|
3192
|
+
DELETED = 6
|
|
3107
3193
|
}
|
|
3108
|
-
export
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
|
|
3194
|
+
export declare enum ReservationTypeEnum {
|
|
3195
|
+
RENTAL = "rental",
|
|
3196
|
+
PROGRAM = "program",
|
|
3197
|
+
MAINTENANCE = "maintenance",
|
|
3198
|
+
CUSTOM = "custom",
|
|
3199
|
+
INTERNAL = "internal"
|
|
3112
3200
|
}
|
|
3113
|
-
export
|
|
3114
|
-
|
|
3115
|
-
|
|
3201
|
+
export declare enum SlotDurationTypeEnum {
|
|
3202
|
+
DATES = "dates",
|
|
3203
|
+
ALL_DAY = "all day",
|
|
3204
|
+
DURATION = "duration"
|
|
3205
|
+
}
|
|
3206
|
+
export declare enum DurationUnitTypesEnum {
|
|
3207
|
+
MINUTES = "minutes",
|
|
3208
|
+
HOURS = "hours"
|
|
3116
3209
|
}
|
|
3117
|
-
export
|
|
3118
|
-
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
organizationName: string;
|
|
3124
|
-
programName: string;
|
|
3210
|
+
export declare enum FrequencyEnum {
|
|
3211
|
+
NONE = "none",
|
|
3212
|
+
WEEKLY = "weekly",
|
|
3213
|
+
DAILY = "daily",
|
|
3214
|
+
MONTHLY = "monthly",
|
|
3215
|
+
YEARLY = "yearly"
|
|
3125
3216
|
}
|
|
3126
|
-
export
|
|
3127
|
-
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
eventStartTime: string;
|
|
3132
|
-
eventEndTime: string;
|
|
3133
|
-
programId: number;
|
|
3134
|
-
programName: string;
|
|
3135
|
-
programType: ProgramTypesEnum;
|
|
3136
|
-
sessionId: number;
|
|
3137
|
-
sessionName: string;
|
|
3138
|
-
sports: number;
|
|
3139
|
-
spaces: {
|
|
3140
|
-
spaceId: number;
|
|
3141
|
-
spaceName: string;
|
|
3142
|
-
}[];
|
|
3143
|
-
status?: RegistrationValidationStatusEnum;
|
|
3217
|
+
export declare enum MaintenanceTimingEnum {
|
|
3218
|
+
BEFORE = 1,
|
|
3219
|
+
AFTER = 2,
|
|
3220
|
+
AT_THE_BEGINING = 3,
|
|
3221
|
+
AT_THE_END = 4
|
|
3144
3222
|
}
|
|
3145
|
-
export
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3223
|
+
export declare enum CreatorTypeEnum {
|
|
3224
|
+
SPACE = "space",
|
|
3225
|
+
PROGRAM_SEASON = "program_season",
|
|
3226
|
+
SEASON = "season"
|
|
3149
3227
|
}
|
|
3150
|
-
export
|
|
3151
|
-
|
|
3152
|
-
|
|
3153
|
-
|
|
3228
|
+
export declare enum UpdatePricesTypeEnum {
|
|
3229
|
+
INDIVIDUAL = "indvidual",
|
|
3230
|
+
CATEGORY = "category",
|
|
3231
|
+
GLOBAL = "global"
|
|
3154
3232
|
}
|
|
3155
|
-
export
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
3162
|
-
|
|
3163
|
-
isRental: boolean;
|
|
3164
|
-
slotType: SlotTypeEnum;
|
|
3165
|
-
slotId: number;
|
|
3166
|
-
eventId: number;
|
|
3167
|
-
isPrivate: boolean;
|
|
3233
|
+
export declare enum BondDayOfWeekEnum {
|
|
3234
|
+
MONDAY = 2,
|
|
3235
|
+
TUESDAY = 3,
|
|
3236
|
+
WEDNESDAY = 4,
|
|
3237
|
+
THURSDAY = 5,
|
|
3238
|
+
FRIDAY = 6,
|
|
3239
|
+
SATURDAY = 7,
|
|
3240
|
+
SUNDAY = 8
|
|
3168
3241
|
}
|
|
3169
|
-
export
|
|
3170
|
-
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
maxParticipants: number;
|
|
3174
|
-
maxMaleParticipants: number;
|
|
3175
|
-
maxFemaleParticipants: number;
|
|
3176
|
-
isPunchCard: boolean;
|
|
3242
|
+
export declare enum ReservationMigrationStatusEnum {
|
|
3243
|
+
NEW = "new",
|
|
3244
|
+
NO = "no",
|
|
3245
|
+
YES = "yes"
|
|
3177
3246
|
}
|
|
3178
|
-
export
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3247
|
+
export declare enum ProductPackageLevelEnum {
|
|
3248
|
+
HOUR = "hour",
|
|
3249
|
+
SLOT = "slot",
|
|
3250
|
+
RESERVATION = "reservation"
|
|
3182
3251
|
}
|
|
3183
|
-
export
|
|
3184
|
-
|
|
3185
|
-
|
|
3186
|
-
startTime: string;
|
|
3187
|
-
endTime: string;
|
|
3188
|
-
reservationId: number;
|
|
3189
|
-
eventTitle: string;
|
|
3190
|
-
publicNotes: string;
|
|
3191
|
-
spaceId: number;
|
|
3192
|
-
creatorType: ResourceNameTypeEnum;
|
|
3193
|
-
slotType: SlotTypeEnum;
|
|
3194
|
-
slotId: number;
|
|
3195
|
-
eventId: number;
|
|
3196
|
-
isPrivate: boolean;
|
|
3252
|
+
export declare enum CancellationStatusEnum {
|
|
3253
|
+
IMMEDIATE = "immediate",
|
|
3254
|
+
AUTO_RENEWAL = "auto_renewal"
|
|
3197
3255
|
}
|
|
3198
|
-
export
|
|
3199
|
-
|
|
3200
|
-
|
|
3201
|
-
purchasedResourceId: number;
|
|
3202
|
-
purchasedResourceType: ResourceNameTypeEnum;
|
|
3203
|
-
purchasedStatus: PurchasedResourceStatusEnum;
|
|
3204
|
-
pUserId: number;
|
|
3205
|
-
pUserPaymentStatus: PaymentStatusEnum;
|
|
3206
|
-
pUserProductId: number;
|
|
3207
|
-
pUserProductName: string;
|
|
3208
|
-
pUserProductPrice: number;
|
|
3209
|
-
pUserProductPriceCurrency: string;
|
|
3210
|
-
pUserProductQuantity: number;
|
|
3211
|
-
pUserProductQuantityLeft: number;
|
|
3212
|
-
pUserUserId: number;
|
|
3256
|
+
export declare enum SeasonScheduleStatusEnum {
|
|
3257
|
+
DRAFT = 0,
|
|
3258
|
+
PUBLISHED = 1
|
|
3213
3259
|
}
|
|
3214
|
-
export
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
|
|
3220
|
-
programName: string;
|
|
3221
|
-
sessionId: number;
|
|
3222
|
-
sessionName: string;
|
|
3223
|
-
productId: number;
|
|
3224
|
-
productName: string;
|
|
3225
|
-
productUserId: number;
|
|
3226
|
-
purchaseDate: Date;
|
|
3227
|
-
passesLeft: number;
|
|
3260
|
+
export declare enum FinancialStepEnum {
|
|
3261
|
+
VOID = "void",
|
|
3262
|
+
REFUND = "refund",
|
|
3263
|
+
NONE = "none",
|
|
3264
|
+
REFUND_AND_VOID = "refund-and-void",
|
|
3265
|
+
APPEND = "append"
|
|
3228
3266
|
}
|
|
3229
|
-
export
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
endDate: Date;
|
|
3234
|
-
registrationStartDate: Date;
|
|
3235
|
-
registrationEndDate: Date;
|
|
3236
|
-
sport: SportsEnum;
|
|
3237
|
-
minAge: string;
|
|
3238
|
-
maxAge: string;
|
|
3239
|
-
maxParticipants?: number;
|
|
3240
|
-
gender: GenderEnum;
|
|
3241
|
-
activityTimes: ActivityTimes[];
|
|
3242
|
-
earlyRegistrationStartDate?: Date;
|
|
3243
|
-
earlyRegistrationEndDate?: Date;
|
|
3244
|
-
lateRegistrationStartDate?: Date;
|
|
3245
|
-
lateRegistrationEndDate?: Date;
|
|
3246
|
-
attendeeCount?: number;
|
|
3247
|
-
segmentsOrEvents: 'segment' | 'event';
|
|
3267
|
+
export declare enum StripeAccountTypesEnum {
|
|
3268
|
+
STRIPE = "stripe",
|
|
3269
|
+
STRIPE_CUSTOM = "stripe:account:custom",
|
|
3270
|
+
STRIPE_CUSTOMER = "stripe:customer"
|
|
3248
3271
|
}
|
|
3249
|
-
export
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
products?: ISessionLandingPageProduct[];
|
|
3272
|
+
export declare enum LinkedAccountStatus {
|
|
3273
|
+
PENDING = 1,
|
|
3274
|
+
ACTIVE = 2,
|
|
3275
|
+
PRE_PENDING = 3
|
|
3254
3276
|
}
|
|
3255
|
-
export
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
products?: ISessionLandingPageProduct[];
|
|
3259
|
-
segments?: Event[] | ProgramSeason[];
|
|
3260
|
-
programName: string;
|
|
3261
|
-
programId: number;
|
|
3262
|
-
levelOfPlay: LevelOfPlayEnum[];
|
|
3263
|
-
registrationConstraints: IResourceRegistrationData[];
|
|
3277
|
+
export declare enum AddonParentTypeEnum {
|
|
3278
|
+
RESERVATION = "reservation",
|
|
3279
|
+
SLOT = "slot"
|
|
3264
3280
|
}
|
|
3265
|
-
export
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
productType?: ProductTypesEnum;
|
|
3271
|
-
productSubType?: string;
|
|
3272
|
-
}[];
|
|
3281
|
+
export declare enum EEmailStatus {
|
|
3282
|
+
SENT = "sent",
|
|
3283
|
+
OPENED = "opened",
|
|
3284
|
+
PAID = "paid",
|
|
3285
|
+
CANCELED = "canceled"
|
|
3273
3286
|
}
|
|
3274
|
-
export
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
downpayment?: number;
|
|
3280
|
-
description?: string;
|
|
3281
|
-
prices: Price[];
|
|
3282
|
-
productSubType?: ProductSubTypesEnum;
|
|
3283
|
-
punchCard: boolean;
|
|
3284
|
-
isAddon: boolean;
|
|
3285
|
-
defaultPriceId?: number;
|
|
3287
|
+
export declare enum PaymentSettingStatusEnum {
|
|
3288
|
+
ENABLED = 1,
|
|
3289
|
+
DISABLED_REDIRECT = 2,
|
|
3290
|
+
DISABLED_INFO_ONLY = 3,
|
|
3291
|
+
DISABLED_EMAIL = 4
|
|
3286
3292
|
}
|
|
3287
|
-
export
|
|
3288
|
-
|
|
3289
|
-
stripeCustomerId?: string;
|
|
3290
|
-
fee?: number;
|
|
3293
|
+
export declare enum NotifyMethodEnum {
|
|
3294
|
+
EMAIL = "Email"
|
|
3291
3295
|
}
|
|
3292
|
-
export
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
organizationId: number;
|
|
3296
|
-
startDate: string;
|
|
3297
|
-
endDate: string;
|
|
3298
|
-
sportId: number;
|
|
3296
|
+
export declare enum EStartDateFilter {
|
|
3297
|
+
LessThan = "lt",
|
|
3298
|
+
GreaterOrEqualTo = "gte"
|
|
3299
3299
|
}
|
|
3300
3300
|
export declare class ColumnNumericTransformer {
|
|
3301
3301
|
to(data: number): number;
|
|
@@ -3449,15 +3449,15 @@ export declare class SeasonRounds extends BondBaseEntity {
|
|
|
3449
3449
|
divisionId?: number;
|
|
3450
3450
|
name: string;
|
|
3451
3451
|
}
|
|
3452
|
+
export declare class Lock extends BondBaseEntity {
|
|
3453
|
+
name: string;
|
|
3454
|
+
locked?: Date;
|
|
3455
|
+
}
|
|
3452
3456
|
export declare class TeamEvents extends BondBaseEntity {
|
|
3453
3457
|
teamId: number | null;
|
|
3454
3458
|
eventId: number | null;
|
|
3455
3459
|
status: number | null;
|
|
3456
3460
|
}
|
|
3457
|
-
export declare class Lock extends BondBaseEntity {
|
|
3458
|
-
name: string;
|
|
3459
|
-
locked?: Date;
|
|
3460
|
-
}
|
|
3461
3461
|
export interface ValidatedMonthAndDay {
|
|
3462
3462
|
valid: boolean;
|
|
3463
3463
|
month?: number;
|
|
@@ -4035,6 +4035,7 @@ export declare class EditReservationDetailsDto {
|
|
|
4035
4035
|
}
|
|
4036
4036
|
export declare class ValidateEditSlotsDto extends UpdateSlotsDto {
|
|
4037
4037
|
updateAddons?: boolean;
|
|
4038
|
+
updateMaintenance?: boolean;
|
|
4038
4039
|
}
|
|
4039
4040
|
export declare class ReservationNotifyDto {
|
|
4040
4041
|
notifyMethods?: NotifyMethodEnum[];
|
|
@@ -4594,9 +4595,6 @@ export declare class UserRole extends OrganizationConnectionBaseEntity {
|
|
|
4594
4595
|
export declare class CloseShiftDto {
|
|
4595
4596
|
closingCashAmount: number;
|
|
4596
4597
|
}
|
|
4597
|
-
export declare class FindShiftsByIdsDto {
|
|
4598
|
-
shiftIds: number[];
|
|
4599
|
-
}
|
|
4600
4598
|
export declare class FindShiftsFiltersDto {
|
|
4601
4599
|
statuses?: string;
|
|
4602
4600
|
stationIds?: string;
|
|
@@ -4628,6 +4626,9 @@ export declare class OpenShiftDto {
|
|
|
4628
4626
|
openingCashAmount: number;
|
|
4629
4627
|
stationId: number;
|
|
4630
4628
|
}
|
|
4629
|
+
export declare class FindShiftsByIdsDto {
|
|
4630
|
+
shiftIds: number[];
|
|
4631
|
+
}
|
|
4631
4632
|
export declare class Shift extends OrganizationConnectionBaseEntity {
|
|
4632
4633
|
stationId: number;
|
|
4633
4634
|
station?: Station;
|