@bondsports/types 0.0.41 → 0.0.44
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 +245 -245
- package/build/index.es.js.map +1 -1
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -9,6 +9,13 @@ export declare class BasicActivityTimesDto {
|
|
|
9
9
|
availabilityStartDate?: string;
|
|
10
10
|
availabilityEndDate?: string;
|
|
11
11
|
}
|
|
12
|
+
export declare class FindBookingTypeSettingDto {
|
|
13
|
+
organizationId: number;
|
|
14
|
+
facilityId: number;
|
|
15
|
+
spaceId: number;
|
|
16
|
+
bookingDate: string;
|
|
17
|
+
bookingTime: string;
|
|
18
|
+
}
|
|
12
19
|
export declare class QuestionAnswersDto {
|
|
13
20
|
questionId: number;
|
|
14
21
|
value: any;
|
|
@@ -20,13 +27,6 @@ export declare class UserAnswersDto {
|
|
|
20
27
|
export declare class GetByQuestionnaireIdsDto {
|
|
21
28
|
questionnaireIds: string;
|
|
22
29
|
}
|
|
23
|
-
export declare class FindBookingTypeSettingDto {
|
|
24
|
-
organizationId: number;
|
|
25
|
-
facilityId: number;
|
|
26
|
-
spaceId: number;
|
|
27
|
-
bookingDate: string;
|
|
28
|
-
bookingTime: string;
|
|
29
|
-
}
|
|
30
30
|
export declare class FindByMembershipIdDto extends ByOrganizationIdDto {
|
|
31
31
|
membershipId: number;
|
|
32
32
|
}
|
|
@@ -229,6 +229,18 @@ export declare class UpdateFacilityAmenitiesDto {
|
|
|
229
229
|
export declare class FindFacilitiesOptionsDto extends PaginationQuery {
|
|
230
230
|
nameSearch?: string;
|
|
231
231
|
}
|
|
232
|
+
export declare class FindOneParams {
|
|
233
|
+
id: number;
|
|
234
|
+
}
|
|
235
|
+
export declare class PaginationQuery {
|
|
236
|
+
page: number;
|
|
237
|
+
itemsPerPage: number;
|
|
238
|
+
}
|
|
239
|
+
export declare class PaginationRangeQuery {
|
|
240
|
+
startPage: number;
|
|
241
|
+
endPage: number;
|
|
242
|
+
itemsPerPage: number;
|
|
243
|
+
}
|
|
232
244
|
export declare class FindFamilyAccountsDto {
|
|
233
245
|
userId: number;
|
|
234
246
|
}
|
|
@@ -261,18 +273,6 @@ export declare class RemoveUserFromFamilyAccountDto {
|
|
|
261
273
|
userId: number;
|
|
262
274
|
familyAccountId: number;
|
|
263
275
|
}
|
|
264
|
-
export declare class FindOneParams {
|
|
265
|
-
id: number;
|
|
266
|
-
}
|
|
267
|
-
export declare class PaginationQuery {
|
|
268
|
-
page: number;
|
|
269
|
-
itemsPerPage: number;
|
|
270
|
-
}
|
|
271
|
-
export declare class PaginationRangeQuery {
|
|
272
|
-
startPage: number;
|
|
273
|
-
endPage: number;
|
|
274
|
-
itemsPerPage: number;
|
|
275
|
-
}
|
|
276
276
|
export declare class FindGlCodeByOrganizationIdDto {
|
|
277
277
|
organizationId: number;
|
|
278
278
|
}
|
|
@@ -283,6 +283,62 @@ export declare class GetGlCodeDto {
|
|
|
283
283
|
createdAt: Date;
|
|
284
284
|
updatedAt: Date;
|
|
285
285
|
}
|
|
286
|
+
export declare class CreateMembershipDto {
|
|
287
|
+
organizationId: number;
|
|
288
|
+
name: string;
|
|
289
|
+
description?: string;
|
|
290
|
+
customerTypes: CustomerInMembershipTypeEnum[];
|
|
291
|
+
activity: SportsEnum;
|
|
292
|
+
facilityId: number;
|
|
293
|
+
questionnaires: number[];
|
|
294
|
+
minAgeYears: number;
|
|
295
|
+
maxAgeYears: number;
|
|
296
|
+
gender: GenderEnum;
|
|
297
|
+
maxMembers?: number;
|
|
298
|
+
maxMaleMembers?: number;
|
|
299
|
+
maxFemaleMembers?: number;
|
|
300
|
+
startDate: string;
|
|
301
|
+
endDate: string;
|
|
302
|
+
registrationStartDate?: Date;
|
|
303
|
+
registrationEndDate?: Date;
|
|
304
|
+
membershipType: MembershipTypeEnum;
|
|
305
|
+
durationMonths: number;
|
|
306
|
+
longDescription?: string;
|
|
307
|
+
isAutoRenew?: boolean;
|
|
308
|
+
}
|
|
309
|
+
export declare class UpdateMembrshipDto extends CreateMembershipDto {
|
|
310
|
+
id: number;
|
|
311
|
+
}
|
|
312
|
+
export declare class UpdateMembershipMediaDto {
|
|
313
|
+
membershipId: number;
|
|
314
|
+
mediaId: number;
|
|
315
|
+
}
|
|
316
|
+
export declare class FindMembershipByIdDto {
|
|
317
|
+
membershipId: number;
|
|
318
|
+
}
|
|
319
|
+
export declare class FindMembershipsByOrganizationIdDto {
|
|
320
|
+
organizationId: number;
|
|
321
|
+
}
|
|
322
|
+
export declare class FindMembershipsByUserIdDto {
|
|
323
|
+
userId: number;
|
|
324
|
+
}
|
|
325
|
+
export declare class SetMembersStartDateByOrganization extends FindMembershipsByOrganizationIdDto {
|
|
326
|
+
startDate: string;
|
|
327
|
+
}
|
|
328
|
+
export declare class MembershipIdsDto {
|
|
329
|
+
membershipIds?: number[];
|
|
330
|
+
}
|
|
331
|
+
export declare class MemberIdDto {
|
|
332
|
+
memberId?: number;
|
|
333
|
+
}
|
|
334
|
+
export declare class FindMembersOptionsDto extends PaginationQuery {
|
|
335
|
+
nameEmailSearch?: string;
|
|
336
|
+
pastMemberships?: string;
|
|
337
|
+
}
|
|
338
|
+
export declare class CancelMembershipDto {
|
|
339
|
+
isImmediatelyCancel: boolean;
|
|
340
|
+
cancellationReason?: string;
|
|
341
|
+
}
|
|
286
342
|
export declare class FindByProgramSeasonIdDto {
|
|
287
343
|
seasonId: number;
|
|
288
344
|
}
|
|
@@ -356,62 +412,6 @@ export declare class MoveTeamOrMemberDto implements IMoveSeason {
|
|
|
356
412
|
export declare class MoveTeamOrMembersByCsvDTO {
|
|
357
413
|
fileName: string;
|
|
358
414
|
}
|
|
359
|
-
export declare class CreateMembershipDto {
|
|
360
|
-
organizationId: number;
|
|
361
|
-
name: string;
|
|
362
|
-
description?: string;
|
|
363
|
-
customerTypes: CustomerInMembershipTypeEnum[];
|
|
364
|
-
activity: SportsEnum;
|
|
365
|
-
facilityId: number;
|
|
366
|
-
questionnaires: number[];
|
|
367
|
-
minAgeYears: number;
|
|
368
|
-
maxAgeYears: number;
|
|
369
|
-
gender: GenderEnum;
|
|
370
|
-
maxMembers?: number;
|
|
371
|
-
maxMaleMembers?: number;
|
|
372
|
-
maxFemaleMembers?: number;
|
|
373
|
-
startDate: string;
|
|
374
|
-
endDate: string;
|
|
375
|
-
registrationStartDate?: Date;
|
|
376
|
-
registrationEndDate?: Date;
|
|
377
|
-
membershipType: MembershipTypeEnum;
|
|
378
|
-
durationMonths: number;
|
|
379
|
-
longDescription?: string;
|
|
380
|
-
isAutoRenew?: boolean;
|
|
381
|
-
}
|
|
382
|
-
export declare class UpdateMembrshipDto extends CreateMembershipDto {
|
|
383
|
-
id: number;
|
|
384
|
-
}
|
|
385
|
-
export declare class UpdateMembershipMediaDto {
|
|
386
|
-
membershipId: number;
|
|
387
|
-
mediaId: number;
|
|
388
|
-
}
|
|
389
|
-
export declare class FindMembershipByIdDto {
|
|
390
|
-
membershipId: number;
|
|
391
|
-
}
|
|
392
|
-
export declare class FindMembershipsByOrganizationIdDto {
|
|
393
|
-
organizationId: number;
|
|
394
|
-
}
|
|
395
|
-
export declare class FindMembershipsByUserIdDto {
|
|
396
|
-
userId: number;
|
|
397
|
-
}
|
|
398
|
-
export declare class SetMembersStartDateByOrganization extends FindMembershipsByOrganizationIdDto {
|
|
399
|
-
startDate: string;
|
|
400
|
-
}
|
|
401
|
-
export declare class MembershipIdsDto {
|
|
402
|
-
membershipIds?: number[];
|
|
403
|
-
}
|
|
404
|
-
export declare class MemberIdDto {
|
|
405
|
-
memberId?: number;
|
|
406
|
-
}
|
|
407
|
-
export declare class FindMembersOptionsDto extends PaginationQuery {
|
|
408
|
-
nameEmailSearch?: string;
|
|
409
|
-
pastMemberships?: string;
|
|
410
|
-
}
|
|
411
|
-
export declare class CancelMembershipDto {
|
|
412
|
-
isImmediatelyCancel: boolean;
|
|
413
|
-
cancellationReason?: string;
|
|
414
|
-
}
|
|
415
415
|
export declare class CreateEntitlementTermsDto {
|
|
416
416
|
organizationId: number;
|
|
417
417
|
entitlementGroupId: number;
|
|
@@ -454,6 +454,24 @@ export declare class CreateGroupPricingWithProduct {
|
|
|
454
454
|
discountValue?: number;
|
|
455
455
|
discountMethod?: DiscountMethodsEnum;
|
|
456
456
|
}
|
|
457
|
+
export declare class CreateUpdateVariantsDto {
|
|
458
|
+
organizationId: number;
|
|
459
|
+
parentProductId: number;
|
|
460
|
+
variantTitles: VariantTitleDto[];
|
|
461
|
+
variants: VariantDto[];
|
|
462
|
+
}
|
|
463
|
+
export declare class VariantTitleDto {
|
|
464
|
+
titleName: string;
|
|
465
|
+
titleId: number;
|
|
466
|
+
}
|
|
467
|
+
export declare class VariantDto {
|
|
468
|
+
name: string;
|
|
469
|
+
price: number;
|
|
470
|
+
variantId: number;
|
|
471
|
+
currency: CurrencyEnum;
|
|
472
|
+
startDate: Date;
|
|
473
|
+
endDate: Date;
|
|
474
|
+
}
|
|
457
475
|
export declare class FindByProductIdDto {
|
|
458
476
|
productId: number;
|
|
459
477
|
}
|
|
@@ -674,24 +692,6 @@ export declare class createResourceDto {
|
|
|
674
692
|
export declare class archiveDto {
|
|
675
693
|
isArchive: boolean;
|
|
676
694
|
}
|
|
677
|
-
export declare class CreateUpdateVariantsDto {
|
|
678
|
-
organizationId: number;
|
|
679
|
-
parentProductId: number;
|
|
680
|
-
variantTitles: VariantTitleDto[];
|
|
681
|
-
variants: VariantDto[];
|
|
682
|
-
}
|
|
683
|
-
export declare class VariantTitleDto {
|
|
684
|
-
titleName: string;
|
|
685
|
-
titleId: number;
|
|
686
|
-
}
|
|
687
|
-
export declare class VariantDto {
|
|
688
|
-
name: string;
|
|
689
|
-
price: number;
|
|
690
|
-
variantId: number;
|
|
691
|
-
currency: CurrencyEnum;
|
|
692
|
-
startDate: Date;
|
|
693
|
-
endDate: Date;
|
|
694
|
-
}
|
|
695
695
|
export declare class FindProgramSeasonsByProgramIdDto {
|
|
696
696
|
programId: number;
|
|
697
697
|
}
|
|
@@ -920,6 +920,14 @@ export declare class ProgramHighlightDto {
|
|
|
920
920
|
type: ProgramHighlightTypeEnum;
|
|
921
921
|
title: string;
|
|
922
922
|
}
|
|
923
|
+
export declare class CreateResourceGroupDto {
|
|
924
|
+
name: string;
|
|
925
|
+
parentSlotId: number;
|
|
926
|
+
facilityId: number;
|
|
927
|
+
childrenSlotIds: number[];
|
|
928
|
+
}
|
|
929
|
+
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
930
|
+
}
|
|
923
931
|
export declare class PurchasePaymentDto {
|
|
924
932
|
token: string;
|
|
925
933
|
type: PaymentMethodTypeEnum;
|
|
@@ -990,18 +998,17 @@ export declare class PartialPaymentAsUserDto {
|
|
|
990
998
|
amountToPay: any;
|
|
991
999
|
paymentMethodData: any;
|
|
992
1000
|
}
|
|
993
|
-
export declare class CreateResourceGroupDto {
|
|
994
|
-
name: string;
|
|
995
|
-
parentSlotId: number;
|
|
996
|
-
facilityId: number;
|
|
997
|
-
childrenSlotIds: number[];
|
|
998
|
-
}
|
|
999
|
-
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
1000
|
-
}
|
|
1001
1001
|
export declare class ResourceDto {
|
|
1002
1002
|
type: ResourceNameTypeEnum;
|
|
1003
1003
|
id: number;
|
|
1004
1004
|
}
|
|
1005
|
+
export declare class StripeCustomerIdDto {
|
|
1006
|
+
userId: number;
|
|
1007
|
+
}
|
|
1008
|
+
export declare class AddACHTokenToCustomerDto {
|
|
1009
|
+
publicToken: string;
|
|
1010
|
+
accountId: string;
|
|
1011
|
+
}
|
|
1005
1012
|
export declare class SpaceByIdDto {
|
|
1006
1013
|
spaceId: number;
|
|
1007
1014
|
}
|
|
@@ -1058,13 +1065,6 @@ export declare class FindResourcesOptionsDto extends PaginationQuery {
|
|
|
1058
1065
|
types?: string;
|
|
1059
1066
|
resourcesIds?: string;
|
|
1060
1067
|
}
|
|
1061
|
-
export declare class StripeCustomerIdDto {
|
|
1062
|
-
userId: number;
|
|
1063
|
-
}
|
|
1064
|
-
export declare class AddACHTokenToCustomerDto {
|
|
1065
|
-
publicToken: string;
|
|
1066
|
-
accountId: string;
|
|
1067
|
-
}
|
|
1068
1068
|
export declare class FindByUserIdDto {
|
|
1069
1069
|
userId: number;
|
|
1070
1070
|
}
|
|
@@ -1130,16 +1130,16 @@ export declare class AnswerTitle extends OrganizationConnectionBaseEntity {
|
|
|
1130
1130
|
answers: Answer[];
|
|
1131
1131
|
questionnaire: Questionnaires;
|
|
1132
1132
|
}
|
|
1133
|
-
export declare class Athlete extends BondBaseEntity {
|
|
1134
|
-
userId: number | null;
|
|
1135
|
-
metadata: object | null;
|
|
1136
|
-
athleteSports: AthleteSports[];
|
|
1137
|
-
}
|
|
1138
1133
|
export declare class AthleteSports extends BondBaseEntity {
|
|
1139
1134
|
athleteId: number | null;
|
|
1140
1135
|
sports: number | null;
|
|
1141
1136
|
levelOfPlay: LevelOfPlayEnum | null;
|
|
1142
1137
|
}
|
|
1138
|
+
export declare class Athlete extends BondBaseEntity {
|
|
1139
|
+
userId: number | null;
|
|
1140
|
+
metadata: object | null;
|
|
1141
|
+
athleteSports: AthleteSports[];
|
|
1142
|
+
}
|
|
1143
1143
|
export declare class BlockedDate extends BondBaseEntity {
|
|
1144
1144
|
entityType: ResourceNameTypeEnum;
|
|
1145
1145
|
entityId: number;
|
|
@@ -1206,6 +1206,18 @@ export declare class CreditNote extends OrganizationConnectionBaseEntity {
|
|
|
1206
1206
|
orderId: number;
|
|
1207
1207
|
creditPaymentInvoiceId: number;
|
|
1208
1208
|
}
|
|
1209
|
+
export declare class CustomerCreditTransaction extends OrganizationConnectionBaseEntity {
|
|
1210
|
+
customerId: number;
|
|
1211
|
+
userId: number;
|
|
1212
|
+
amount: number;
|
|
1213
|
+
invoiceId?: number;
|
|
1214
|
+
orderId?: number;
|
|
1215
|
+
description?: string;
|
|
1216
|
+
deletedAt?: Date;
|
|
1217
|
+
customer: Customer;
|
|
1218
|
+
order: Order;
|
|
1219
|
+
invoice: Invoice;
|
|
1220
|
+
}
|
|
1209
1221
|
export declare class Customer extends OrganizationConnectionBaseEntity {
|
|
1210
1222
|
name: string | null;
|
|
1211
1223
|
entityId: number | null;
|
|
@@ -1234,18 +1246,6 @@ export declare class Customer extends OrganizationConnectionBaseEntity {
|
|
|
1234
1246
|
mainMedia: Media;
|
|
1235
1247
|
reservations?: Reservation[];
|
|
1236
1248
|
}
|
|
1237
|
-
export declare class CustomerCreditTransaction extends OrganizationConnectionBaseEntity {
|
|
1238
|
-
customerId: number;
|
|
1239
|
-
userId: number;
|
|
1240
|
-
amount: number;
|
|
1241
|
-
invoiceId?: number;
|
|
1242
|
-
orderId?: number;
|
|
1243
|
-
description?: string;
|
|
1244
|
-
deletedAt?: Date;
|
|
1245
|
-
customer: Customer;
|
|
1246
|
-
order: Order;
|
|
1247
|
-
invoice: Invoice;
|
|
1248
|
-
}
|
|
1249
1249
|
export declare class CustomerNote extends OrganizationConnectionBaseEntity {
|
|
1250
1250
|
customerId?: number;
|
|
1251
1251
|
description: string;
|
|
@@ -1260,6 +1260,12 @@ export declare class Division extends BondBaseEntity {
|
|
|
1260
1260
|
isDefault: boolean;
|
|
1261
1261
|
groups: Group[];
|
|
1262
1262
|
}
|
|
1263
|
+
export declare class EmergencyContact extends OrganizationConnectionBaseEntity {
|
|
1264
|
+
customerId: number;
|
|
1265
|
+
name: string | null;
|
|
1266
|
+
phoneNumber: string | null;
|
|
1267
|
+
customer: Customer;
|
|
1268
|
+
}
|
|
1263
1269
|
export declare class EntitlementGroup extends OrganizationConnectionBaseEntity {
|
|
1264
1270
|
name: string | null;
|
|
1265
1271
|
}
|
|
@@ -1282,12 +1288,6 @@ export declare class EventAttendee extends BondBaseEntity {
|
|
|
1282
1288
|
event: Event;
|
|
1283
1289
|
purchasedResource: PurchasedResource;
|
|
1284
1290
|
}
|
|
1285
|
-
export declare class EmergencyContact extends OrganizationConnectionBaseEntity {
|
|
1286
|
-
customerId: number;
|
|
1287
|
-
name: string | null;
|
|
1288
|
-
phoneNumber: string | null;
|
|
1289
|
-
customer: Customer;
|
|
1290
|
-
}
|
|
1291
1291
|
export declare class Event extends OrganizationConnectionBaseEntity {
|
|
1292
1292
|
constructor();
|
|
1293
1293
|
defineCalculatedDateTimeProps(): void;
|
|
@@ -1375,6 +1375,9 @@ export declare class FamilyAccount extends BondBaseEntity {
|
|
|
1375
1375
|
name: string | null;
|
|
1376
1376
|
userInFamilyAccounts: UserInFamilyAccount[];
|
|
1377
1377
|
}
|
|
1378
|
+
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1379
|
+
code: string;
|
|
1380
|
+
}
|
|
1378
1381
|
export declare class FutureInstallment extends OrganizationConnectionBaseEntity {
|
|
1379
1382
|
userId: number;
|
|
1380
1383
|
orderId: number;
|
|
@@ -1385,9 +1388,6 @@ export declare class FutureInstallment extends OrganizationConnectionBaseEntity
|
|
|
1385
1388
|
plannedDate: Date;
|
|
1386
1389
|
chargedAt?: Date;
|
|
1387
1390
|
}
|
|
1388
|
-
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1389
|
-
code: string;
|
|
1390
|
-
}
|
|
1391
1391
|
export declare class Group extends BondBaseEntity {
|
|
1392
1392
|
name: string;
|
|
1393
1393
|
description?: string;
|
|
@@ -1896,14 +1896,14 @@ export declare class ProductResource extends OrganizationConnectionBaseEntity {
|
|
|
1896
1896
|
productPackages: ProductPackage[];
|
|
1897
1897
|
resourceName?: string;
|
|
1898
1898
|
}
|
|
1899
|
-
export declare class ProductToVariantTitle extends OrganizationConnectionBaseEntity {
|
|
1900
|
-
productId: number;
|
|
1901
|
-
variantTitleId: number;
|
|
1902
|
-
}
|
|
1903
1899
|
export declare class ProductToVariant extends OrganizationConnectionBaseEntity {
|
|
1904
1900
|
productId: number;
|
|
1905
1901
|
variantId: number;
|
|
1906
1902
|
}
|
|
1903
|
+
export declare class ProductToVariantTitle extends OrganizationConnectionBaseEntity {
|
|
1904
|
+
productId: number;
|
|
1905
|
+
variantTitleId: number;
|
|
1906
|
+
}
|
|
1907
1907
|
export declare class ProductsReservedForCustomers extends OrganizationConnectionBaseEntity {
|
|
1908
1908
|
productId: number;
|
|
1909
1909
|
customerId: number;
|
|
@@ -2034,10 +2034,6 @@ export declare class PurchasedResource extends OrganizationConnectionBaseEntity
|
|
|
2034
2034
|
product?: Product;
|
|
2035
2035
|
event?: Event;
|
|
2036
2036
|
}
|
|
2037
|
-
export declare class Questionnaires extends OrganizationConnectionBaseEntity {
|
|
2038
|
-
title: string | null;
|
|
2039
|
-
answerTitle: AnswerTitle;
|
|
2040
|
-
}
|
|
2041
2037
|
export declare class Questions extends BondBaseEntity {
|
|
2042
2038
|
questionType: string | null;
|
|
2043
2039
|
ordinal: number | null;
|
|
@@ -2052,6 +2048,10 @@ export declare class Questions extends BondBaseEntity {
|
|
|
2052
2048
|
ownerId: number | null;
|
|
2053
2049
|
questionnaireId: number | null;
|
|
2054
2050
|
}
|
|
2051
|
+
export declare class Questionnaires extends OrganizationConnectionBaseEntity {
|
|
2052
|
+
title: string | null;
|
|
2053
|
+
answerTitle: AnswerTitle;
|
|
2054
|
+
}
|
|
2055
2055
|
export declare class RefundReason extends OrganizationConnectionBaseEntity {
|
|
2056
2056
|
reason: string;
|
|
2057
2057
|
ordinal: number;
|
|
@@ -2163,6 +2163,16 @@ export declare class SeasonDivisions extends BondBaseEntity {
|
|
|
2163
2163
|
seasonId: number | null;
|
|
2164
2164
|
color: string | null;
|
|
2165
2165
|
}
|
|
2166
|
+
export declare class SeasonTeam extends BondBaseEntity {
|
|
2167
|
+
seasonId: number | null;
|
|
2168
|
+
teamId: number | null;
|
|
2169
|
+
standingPosition: number | null;
|
|
2170
|
+
statistics: any | null;
|
|
2171
|
+
points: number | null;
|
|
2172
|
+
divisionId: number | null;
|
|
2173
|
+
metaData: any | null;
|
|
2174
|
+
team: Team;
|
|
2175
|
+
}
|
|
2166
2176
|
export declare class SeasonPool extends BondBaseEntity {
|
|
2167
2177
|
seasonId?: number;
|
|
2168
2178
|
userId?: number;
|
|
@@ -2178,16 +2188,6 @@ export declare class SeasonPool extends BondBaseEntity {
|
|
|
2178
2188
|
purchasedResource: PurchasedResource;
|
|
2179
2189
|
season: LeagueSeason;
|
|
2180
2190
|
}
|
|
2181
|
-
export declare class SeasonTeam extends BondBaseEntity {
|
|
2182
|
-
seasonId: number | null;
|
|
2183
|
-
teamId: number | null;
|
|
2184
|
-
standingPosition: number | null;
|
|
2185
|
-
statistics: any | null;
|
|
2186
|
-
points: number | null;
|
|
2187
|
-
divisionId: number | null;
|
|
2188
|
-
metaData: any | null;
|
|
2189
|
-
team: Team;
|
|
2190
|
-
}
|
|
2191
2191
|
export declare class SpacesDependency extends BondBaseEntity {
|
|
2192
2192
|
blockingSpaceId: number;
|
|
2193
2193
|
blockedSpaceId: number;
|
|
@@ -3231,11 +3231,6 @@ export interface IReservationCreatorData {
|
|
|
3231
3231
|
endDate: string;
|
|
3232
3232
|
sportId: number;
|
|
3233
3233
|
}
|
|
3234
|
-
export declare class ColumnNumericTransformer {
|
|
3235
|
-
to(data: number): number;
|
|
3236
|
-
from(data: string): number;
|
|
3237
|
-
}
|
|
3238
|
-
export declare function convertToNumber(data: string): number;
|
|
3239
3234
|
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3240
3235
|
name?: string;
|
|
3241
3236
|
genderStr?: string;
|
|
@@ -3250,6 +3245,11 @@ export declare class AddFamilyDto {
|
|
|
3250
3245
|
parents: AddImportedCustomerDto[];
|
|
3251
3246
|
children: AddImportedCustomerDto[];
|
|
3252
3247
|
}
|
|
3248
|
+
export declare class ColumnNumericTransformer {
|
|
3249
|
+
to(data: number): number;
|
|
3250
|
+
from(data: string): number;
|
|
3251
|
+
}
|
|
3252
|
+
export declare function convertToNumber(data: string): number;
|
|
3253
3253
|
export declare enum ImportPaymentTypeEnum {
|
|
3254
3254
|
CREDIT_CARD = "card",
|
|
3255
3255
|
ACH = "ach",
|
|
@@ -3301,6 +3301,19 @@ export declare class PunchPassDto {
|
|
|
3301
3301
|
BondSessionID: number;
|
|
3302
3302
|
ProductID: number;
|
|
3303
3303
|
}
|
|
3304
|
+
export declare class GameSlots extends BondBaseEntity {
|
|
3305
|
+
entityType: string;
|
|
3306
|
+
entityId: number;
|
|
3307
|
+
}
|
|
3308
|
+
export declare class MatchParticipants extends BondBaseEntity {
|
|
3309
|
+
matchId: number | null;
|
|
3310
|
+
ordinal: number | null;
|
|
3311
|
+
outcomeOrdinal: number | null;
|
|
3312
|
+
resultMetaData: any | null;
|
|
3313
|
+
points: number | null;
|
|
3314
|
+
score: number | null;
|
|
3315
|
+
gameSlotId: number | null;
|
|
3316
|
+
}
|
|
3304
3317
|
export declare class ImportedSlotProductDto {
|
|
3305
3318
|
slotID?: string;
|
|
3306
3319
|
name?: string;
|
|
@@ -3352,19 +3365,6 @@ export declare class ImportedReservationDto {
|
|
|
3352
3365
|
slots?: ImportedSlotDto[];
|
|
3353
3366
|
addons?: ImportedSlotProductDto[];
|
|
3354
3367
|
}
|
|
3355
|
-
export declare class GameSlots extends BondBaseEntity {
|
|
3356
|
-
entityType: string;
|
|
3357
|
-
entityId: number;
|
|
3358
|
-
}
|
|
3359
|
-
export declare class MatchParticipants extends BondBaseEntity {
|
|
3360
|
-
matchId: number | null;
|
|
3361
|
-
ordinal: number | null;
|
|
3362
|
-
outcomeOrdinal: number | null;
|
|
3363
|
-
resultMetaData: any | null;
|
|
3364
|
-
points: number | null;
|
|
3365
|
-
score: number | null;
|
|
3366
|
-
gameSlotId: number | null;
|
|
3367
|
-
}
|
|
3368
3368
|
export declare class Matches extends BondBaseEntity {
|
|
3369
3369
|
eventId: number | null;
|
|
3370
3370
|
status: number | null;
|
|
@@ -3403,6 +3403,74 @@ export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
|
|
|
3403
3403
|
code: string;
|
|
3404
3404
|
config?: any;
|
|
3405
3405
|
}
|
|
3406
|
+
export declare class ByOrganizationIdDto {
|
|
3407
|
+
organizationId: number;
|
|
3408
|
+
}
|
|
3409
|
+
export declare class OptionalFindByOrganizationIdDto {
|
|
3410
|
+
organizationId?: number;
|
|
3411
|
+
}
|
|
3412
|
+
export declare class Organization extends BondBaseEntity {
|
|
3413
|
+
name: string | null;
|
|
3414
|
+
email: string | null;
|
|
3415
|
+
twitter: string | null;
|
|
3416
|
+
facebook: string | null;
|
|
3417
|
+
instagram: string | null;
|
|
3418
|
+
website: string | null;
|
|
3419
|
+
blog: string | null;
|
|
3420
|
+
phoneNumber: string | null;
|
|
3421
|
+
waiverDoc: string | null;
|
|
3422
|
+
about: string | null;
|
|
3423
|
+
tagline: string | null;
|
|
3424
|
+
status: number | null;
|
|
3425
|
+
addressId: number | null;
|
|
3426
|
+
merchantId: number | null;
|
|
3427
|
+
userCreatorId: number | null;
|
|
3428
|
+
parentId: number | null;
|
|
3429
|
+
paymentSettings: object | null;
|
|
3430
|
+
settings: object | null;
|
|
3431
|
+
isClaimed: boolean | null;
|
|
3432
|
+
sports: number[] | null;
|
|
3433
|
+
mainMediaId: number | null;
|
|
3434
|
+
deletedAt: Date | null;
|
|
3435
|
+
organizationActivityTypes: number[] | null;
|
|
3436
|
+
organizationTypes: number[] | null;
|
|
3437
|
+
organizationAudienceTypes: number[] | null;
|
|
3438
|
+
organizationGenders: number[] | null;
|
|
3439
|
+
questionnaireId: number | null;
|
|
3440
|
+
membershipQuestionnaireId: number | null;
|
|
3441
|
+
feeRate: number;
|
|
3442
|
+
feeAddDollarRate: number;
|
|
3443
|
+
achFeeRate: number;
|
|
3444
|
+
achFeeAddDollarRate: number;
|
|
3445
|
+
maxAchFee: number;
|
|
3446
|
+
cashFeeRate: number;
|
|
3447
|
+
cashFeeAddDollarRate: number;
|
|
3448
|
+
terminalFeeRate: number;
|
|
3449
|
+
terminalFeeAddDollarRate: number;
|
|
3450
|
+
checkFeeRate: number;
|
|
3451
|
+
checkFeeAddDollarRate: number;
|
|
3452
|
+
otherFeeRate: number;
|
|
3453
|
+
otherFeeAddDollarRate: number;
|
|
3454
|
+
balanceFeeRate: number;
|
|
3455
|
+
balanceFeeAddDollarRate: number;
|
|
3456
|
+
address: Address;
|
|
3457
|
+
mainMedia: Media;
|
|
3458
|
+
brandings: OrganizationBranding[];
|
|
3459
|
+
brandingsV2?: OrganizationBranding[];
|
|
3460
|
+
}
|
|
3461
|
+
export declare class OrganizationBranding extends OrganizationConnectionBaseEntity {
|
|
3462
|
+
key?: string;
|
|
3463
|
+
vaule?: string;
|
|
3464
|
+
version: number;
|
|
3465
|
+
organization: Organization;
|
|
3466
|
+
}
|
|
3467
|
+
export declare class OrganizationSettings extends OrganizationConnectionBaseEntity {
|
|
3468
|
+
mainAdminUserId?: number;
|
|
3469
|
+
}
|
|
3470
|
+
export declare class OrganizationUsers extends BondBaseEntity {
|
|
3471
|
+
organisationId: number | null;
|
|
3472
|
+
userId: number | null;
|
|
3473
|
+
}
|
|
3406
3474
|
export declare class CustomerIdDto {
|
|
3407
3475
|
customerId: number;
|
|
3408
3476
|
}
|
|
@@ -3552,74 +3620,6 @@ export declare class VoidLineItemDto {
|
|
|
3552
3620
|
isEdit?: boolean;
|
|
3553
3621
|
amount?: number;
|
|
3554
3622
|
}
|
|
3555
|
-
export declare class ByOrganizationIdDto {
|
|
3556
|
-
organizationId: number;
|
|
3557
|
-
}
|
|
3558
|
-
export declare class OptionalFindByOrganizationIdDto {
|
|
3559
|
-
organizationId?: number;
|
|
3560
|
-
}
|
|
3561
|
-
export declare class Organization extends BondBaseEntity {
|
|
3562
|
-
name: string | null;
|
|
3563
|
-
email: string | null;
|
|
3564
|
-
twitter: string | null;
|
|
3565
|
-
facebook: string | null;
|
|
3566
|
-
instagram: string | null;
|
|
3567
|
-
website: string | null;
|
|
3568
|
-
blog: string | null;
|
|
3569
|
-
phoneNumber: string | null;
|
|
3570
|
-
waiverDoc: string | null;
|
|
3571
|
-
about: string | null;
|
|
3572
|
-
tagline: string | null;
|
|
3573
|
-
status: number | null;
|
|
3574
|
-
addressId: number | null;
|
|
3575
|
-
merchantId: number | null;
|
|
3576
|
-
userCreatorId: number | null;
|
|
3577
|
-
parentId: number | null;
|
|
3578
|
-
paymentSettings: object | null;
|
|
3579
|
-
settings: object | null;
|
|
3580
|
-
isClaimed: boolean | null;
|
|
3581
|
-
sports: number[] | null;
|
|
3582
|
-
mainMediaId: number | null;
|
|
3583
|
-
deletedAt: Date | null;
|
|
3584
|
-
organizationActivityTypes: number[] | null;
|
|
3585
|
-
organizationTypes: number[] | null;
|
|
3586
|
-
organizationAudienceTypes: number[] | null;
|
|
3587
|
-
organizationGenders: number[] | null;
|
|
3588
|
-
questionnaireId: number | null;
|
|
3589
|
-
membershipQuestionnaireId: number | null;
|
|
3590
|
-
feeRate: number;
|
|
3591
|
-
feeAddDollarRate: number;
|
|
3592
|
-
achFeeRate: number;
|
|
3593
|
-
achFeeAddDollarRate: number;
|
|
3594
|
-
maxAchFee: number;
|
|
3595
|
-
cashFeeRate: number;
|
|
3596
|
-
cashFeeAddDollarRate: number;
|
|
3597
|
-
terminalFeeRate: number;
|
|
3598
|
-
terminalFeeAddDollarRate: number;
|
|
3599
|
-
checkFeeRate: number;
|
|
3600
|
-
checkFeeAddDollarRate: number;
|
|
3601
|
-
otherFeeRate: number;
|
|
3602
|
-
otherFeeAddDollarRate: number;
|
|
3603
|
-
balanceFeeRate: number;
|
|
3604
|
-
balanceFeeAddDollarRate: number;
|
|
3605
|
-
address: Address;
|
|
3606
|
-
mainMedia: Media;
|
|
3607
|
-
brandings: OrganizationBranding[];
|
|
3608
|
-
brandingsV2?: OrganizationBranding[];
|
|
3609
|
-
}
|
|
3610
|
-
export declare class OrganizationBranding extends OrganizationConnectionBaseEntity {
|
|
3611
|
-
key?: string;
|
|
3612
|
-
vaule?: string;
|
|
3613
|
-
version: number;
|
|
3614
|
-
organization: Organization;
|
|
3615
|
-
}
|
|
3616
|
-
export declare class OrganizationSettings extends OrganizationConnectionBaseEntity {
|
|
3617
|
-
mainAdminUserId?: number;
|
|
3618
|
-
}
|
|
3619
|
-
export declare class OrganizationUsers extends BondBaseEntity {
|
|
3620
|
-
organisationId: number | null;
|
|
3621
|
-
userId: number | null;
|
|
3622
|
-
}
|
|
3623
3623
|
export declare class LineItemDto {
|
|
3624
3624
|
id?: number;
|
|
3625
3625
|
orderId?: number;
|
|
@@ -3646,13 +3646,6 @@ export declare class LineItemDto {
|
|
|
3646
3646
|
unitTaxPrice?: number;
|
|
3647
3647
|
parentOrdinal?: number;
|
|
3648
3648
|
}
|
|
3649
|
-
export declare class MaintenanceDto {
|
|
3650
|
-
id?: number;
|
|
3651
|
-
title: string;
|
|
3652
|
-
durationValue: number;
|
|
3653
|
-
maintenanceDurationdurationType: DurationUnitTypesEnum;
|
|
3654
|
-
maintenanceTiming: MaintenanceTimingEnum;
|
|
3655
|
-
}
|
|
3656
3649
|
export declare class OrderDto {
|
|
3657
3650
|
orderId?: string | null;
|
|
3658
3651
|
organizationId: number;
|
|
@@ -3870,6 +3863,13 @@ export declare class SeriesDto {
|
|
|
3870
3863
|
maintenance?: MaintenanceDto[];
|
|
3871
3864
|
slots?: SlotDto[];
|
|
3872
3865
|
}
|
|
3866
|
+
export declare class MaintenanceDto {
|
|
3867
|
+
id?: number;
|
|
3868
|
+
title: string;
|
|
3869
|
+
durationValue: number;
|
|
3870
|
+
maintenanceDurationdurationType: DurationUnitTypesEnum;
|
|
3871
|
+
maintenanceTiming: MaintenanceTimingEnum;
|
|
3872
|
+
}
|
|
3873
3873
|
export declare class SlotDateTimeAndSpace {
|
|
3874
3874
|
startDate: string;
|
|
3875
3875
|
startTime?: string;
|