@bondsports/types 0.0.81 → 0.0.84
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 +204 -207
- 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
|
@@ -27,6 +27,49 @@ export declare class FindBookingTypeSettingDto {
|
|
|
27
27
|
bookingDate: string;
|
|
28
28
|
bookingTime: string;
|
|
29
29
|
}
|
|
30
|
+
export declare class AddressDto {
|
|
31
|
+
city: string;
|
|
32
|
+
state: string;
|
|
33
|
+
country: string;
|
|
34
|
+
geo: number[];
|
|
35
|
+
}
|
|
36
|
+
export declare class OpeningTimeDto {
|
|
37
|
+
open: string;
|
|
38
|
+
close: string;
|
|
39
|
+
dayOfWeek: number;
|
|
40
|
+
}
|
|
41
|
+
export declare class CreateFacilityDto {
|
|
42
|
+
name: string;
|
|
43
|
+
sports: number[];
|
|
44
|
+
description?: string;
|
|
45
|
+
longDescription?: string;
|
|
46
|
+
info?: string;
|
|
47
|
+
address: AddressDto;
|
|
48
|
+
timezone: string;
|
|
49
|
+
amenities: number[];
|
|
50
|
+
openingTimes: OpeningTimeDto[];
|
|
51
|
+
resourcesIds?: number[];
|
|
52
|
+
}
|
|
53
|
+
export declare class UpdateFacilityDetailsDto {
|
|
54
|
+
name?: string;
|
|
55
|
+
description?: string;
|
|
56
|
+
longDescription?: string;
|
|
57
|
+
info?: string;
|
|
58
|
+
address?: AddressDto;
|
|
59
|
+
timezone?: string;
|
|
60
|
+
}
|
|
61
|
+
export declare class UpdateFacilityOpeningTimesDto {
|
|
62
|
+
openingTimes: OpeningTimeDto[];
|
|
63
|
+
}
|
|
64
|
+
export declare class UpdateFacilitySportsDto {
|
|
65
|
+
sports: number[];
|
|
66
|
+
}
|
|
67
|
+
export declare class UpdateFacilityAmenitiesDto {
|
|
68
|
+
amenities: number[];
|
|
69
|
+
}
|
|
70
|
+
export declare class FindFacilitiesOptionsDto extends PaginationQuery {
|
|
71
|
+
nameSearch?: string;
|
|
72
|
+
}
|
|
30
73
|
export declare class FindByMembershipIdDto extends ByOrganizationIdDto {
|
|
31
74
|
membershipId: number;
|
|
32
75
|
}
|
|
@@ -186,93 +229,6 @@ export declare class FindEventAttendeeOptionsDto extends PaginationRangeQuery {
|
|
|
186
229
|
isWaiverSigned?: string;
|
|
187
230
|
statuses?: string;
|
|
188
231
|
}
|
|
189
|
-
export declare class AddressDto {
|
|
190
|
-
city: string;
|
|
191
|
-
state: string;
|
|
192
|
-
country: string;
|
|
193
|
-
geo: number[];
|
|
194
|
-
}
|
|
195
|
-
export declare class OpeningTimeDto {
|
|
196
|
-
open: string;
|
|
197
|
-
close: string;
|
|
198
|
-
dayOfWeek: number;
|
|
199
|
-
}
|
|
200
|
-
export declare class CreateFacilityDto {
|
|
201
|
-
name: string;
|
|
202
|
-
sports: number[];
|
|
203
|
-
description?: string;
|
|
204
|
-
longDescription?: string;
|
|
205
|
-
info?: string;
|
|
206
|
-
address: AddressDto;
|
|
207
|
-
timezone: string;
|
|
208
|
-
amenities: number[];
|
|
209
|
-
openingTimes: OpeningTimeDto[];
|
|
210
|
-
resourcesIds?: number[];
|
|
211
|
-
}
|
|
212
|
-
export declare class UpdateFacilityDetailsDto {
|
|
213
|
-
name?: string;
|
|
214
|
-
description?: string;
|
|
215
|
-
longDescription?: string;
|
|
216
|
-
info?: string;
|
|
217
|
-
address?: AddressDto;
|
|
218
|
-
timezone?: string;
|
|
219
|
-
}
|
|
220
|
-
export declare class UpdateFacilityOpeningTimesDto {
|
|
221
|
-
openingTimes: OpeningTimeDto[];
|
|
222
|
-
}
|
|
223
|
-
export declare class UpdateFacilitySportsDto {
|
|
224
|
-
sports: number[];
|
|
225
|
-
}
|
|
226
|
-
export declare class UpdateFacilityAmenitiesDto {
|
|
227
|
-
amenities: number[];
|
|
228
|
-
}
|
|
229
|
-
export declare class FindFacilitiesOptionsDto extends PaginationQuery {
|
|
230
|
-
nameSearch?: string;
|
|
231
|
-
}
|
|
232
|
-
export declare class FindFamilyAccountsDto {
|
|
233
|
-
userId: number;
|
|
234
|
-
}
|
|
235
|
-
export declare class FindFamilyAccountsCustomerDto {
|
|
236
|
-
customerId: number;
|
|
237
|
-
organizationId: number;
|
|
238
|
-
}
|
|
239
|
-
export declare class FindUsersInFamilyAccountDto {
|
|
240
|
-
familyAccountId: number;
|
|
241
|
-
}
|
|
242
|
-
export declare class CreateFamilyAccountDto {
|
|
243
|
-
familyName: string;
|
|
244
|
-
userId: number;
|
|
245
|
-
}
|
|
246
|
-
export declare class UpdateFamilyAccountNameDto {
|
|
247
|
-
familyName: string;
|
|
248
|
-
familyAccountId: number;
|
|
249
|
-
}
|
|
250
|
-
export declare class AddUserToFamilyAccountDto {
|
|
251
|
-
familyAccountId: number;
|
|
252
|
-
isUserAdmin: boolean;
|
|
253
|
-
firstName: string;
|
|
254
|
-
lastName: string;
|
|
255
|
-
gender: GenderEnum;
|
|
256
|
-
birthDate: string;
|
|
257
|
-
sports?: number[];
|
|
258
|
-
email?: string;
|
|
259
|
-
}
|
|
260
|
-
export declare class RemoveUserFromFamilyAccountDto {
|
|
261
|
-
userId: number;
|
|
262
|
-
familyAccountId: number;
|
|
263
|
-
}
|
|
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
232
|
export declare class FindGlCodeByOrganizationIdDto {
|
|
277
233
|
organizationId: number;
|
|
278
234
|
}
|
|
@@ -356,61 +312,37 @@ export declare class MoveTeamOrMemberDto implements IMoveSeason {
|
|
|
356
312
|
export declare class MoveTeamOrMembersByCsvDTO {
|
|
357
313
|
fileName: string;
|
|
358
314
|
}
|
|
359
|
-
export declare class
|
|
360
|
-
|
|
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;
|
|
315
|
+
export declare class FindFamilyAccountsDto {
|
|
316
|
+
userId: number;
|
|
391
317
|
}
|
|
392
|
-
export declare class
|
|
318
|
+
export declare class FindFamilyAccountsCustomerDto {
|
|
319
|
+
customerId: number;
|
|
393
320
|
organizationId: number;
|
|
394
321
|
}
|
|
395
|
-
export declare class
|
|
396
|
-
|
|
397
|
-
}
|
|
398
|
-
export declare class SetMembersStartDateByOrganization extends FindMembershipsByOrganizationIdDto {
|
|
399
|
-
startDate: string;
|
|
322
|
+
export declare class FindUsersInFamilyAccountDto {
|
|
323
|
+
familyAccountId: number;
|
|
400
324
|
}
|
|
401
|
-
export declare class
|
|
402
|
-
|
|
325
|
+
export declare class CreateFamilyAccountDto {
|
|
326
|
+
familyName: string;
|
|
327
|
+
userId: number;
|
|
403
328
|
}
|
|
404
|
-
export declare class
|
|
405
|
-
|
|
329
|
+
export declare class UpdateFamilyAccountNameDto {
|
|
330
|
+
familyName: string;
|
|
331
|
+
familyAccountId: number;
|
|
406
332
|
}
|
|
407
|
-
export declare class
|
|
408
|
-
|
|
409
|
-
|
|
333
|
+
export declare class AddUserToFamilyAccountDto {
|
|
334
|
+
familyAccountId: number;
|
|
335
|
+
isUserAdmin: boolean;
|
|
336
|
+
firstName: string;
|
|
337
|
+
lastName: string;
|
|
338
|
+
gender: GenderEnum;
|
|
339
|
+
birthDate: string;
|
|
340
|
+
sports?: number[];
|
|
341
|
+
email?: string;
|
|
410
342
|
}
|
|
411
|
-
export declare class
|
|
412
|
-
|
|
413
|
-
|
|
343
|
+
export declare class RemoveUserFromFamilyAccountDto {
|
|
344
|
+
userId: number;
|
|
345
|
+
familyAccountId: number;
|
|
414
346
|
}
|
|
415
347
|
export declare class CreateEntitlementTermsDto {
|
|
416
348
|
organizationId: number;
|
|
@@ -454,6 +386,18 @@ export declare class CreateGroupPricingWithProduct {
|
|
|
454
386
|
discountValue?: number;
|
|
455
387
|
discountMethod?: DiscountMethodsEnum;
|
|
456
388
|
}
|
|
389
|
+
export declare class FindOneParams {
|
|
390
|
+
id: number;
|
|
391
|
+
}
|
|
392
|
+
export declare class PaginationQuery {
|
|
393
|
+
page: number;
|
|
394
|
+
itemsPerPage: number;
|
|
395
|
+
}
|
|
396
|
+
export declare class PaginationRangeQuery {
|
|
397
|
+
startPage: number;
|
|
398
|
+
endPage: number;
|
|
399
|
+
itemsPerPage: number;
|
|
400
|
+
}
|
|
457
401
|
export declare class FindByProductIdDto {
|
|
458
402
|
productId: number;
|
|
459
403
|
}
|
|
@@ -674,6 +618,62 @@ export declare class createResourceDto {
|
|
|
674
618
|
export declare class archiveDto {
|
|
675
619
|
isArchive: boolean;
|
|
676
620
|
}
|
|
621
|
+
export declare class CreateMembershipDto {
|
|
622
|
+
organizationId: number;
|
|
623
|
+
name: string;
|
|
624
|
+
description?: string;
|
|
625
|
+
customerTypes: CustomerInMembershipTypeEnum[];
|
|
626
|
+
activity: SportsEnum;
|
|
627
|
+
facilityId: number;
|
|
628
|
+
questionnaires: number[];
|
|
629
|
+
minAgeYears: number;
|
|
630
|
+
maxAgeYears: number;
|
|
631
|
+
gender: GenderEnum;
|
|
632
|
+
maxMembers?: number;
|
|
633
|
+
maxMaleMembers?: number;
|
|
634
|
+
maxFemaleMembers?: number;
|
|
635
|
+
startDate: string;
|
|
636
|
+
endDate: string;
|
|
637
|
+
registrationStartDate?: Date;
|
|
638
|
+
registrationEndDate?: Date;
|
|
639
|
+
membershipType: MembershipTypeEnum;
|
|
640
|
+
durationMonths: number;
|
|
641
|
+
longDescription?: string;
|
|
642
|
+
isAutoRenew?: boolean;
|
|
643
|
+
}
|
|
644
|
+
export declare class UpdateMembrshipDto extends CreateMembershipDto {
|
|
645
|
+
id: number;
|
|
646
|
+
}
|
|
647
|
+
export declare class UpdateMembershipMediaDto {
|
|
648
|
+
membershipId: number;
|
|
649
|
+
mediaId: number;
|
|
650
|
+
}
|
|
651
|
+
export declare class FindMembershipByIdDto {
|
|
652
|
+
membershipId: number;
|
|
653
|
+
}
|
|
654
|
+
export declare class FindMembershipsByOrganizationIdDto {
|
|
655
|
+
organizationId: number;
|
|
656
|
+
}
|
|
657
|
+
export declare class FindMembershipsByUserIdDto {
|
|
658
|
+
userId: number;
|
|
659
|
+
}
|
|
660
|
+
export declare class SetMembersStartDateByOrganization extends FindMembershipsByOrganizationIdDto {
|
|
661
|
+
startDate: string;
|
|
662
|
+
}
|
|
663
|
+
export declare class MembershipIdsDto {
|
|
664
|
+
membershipIds?: number[];
|
|
665
|
+
}
|
|
666
|
+
export declare class MemberIdDto {
|
|
667
|
+
memberId?: number;
|
|
668
|
+
}
|
|
669
|
+
export declare class FindMembersOptionsDto extends PaginationQuery {
|
|
670
|
+
nameEmailSearch?: string;
|
|
671
|
+
pastMemberships?: string;
|
|
672
|
+
}
|
|
673
|
+
export declare class CancelMembershipDto {
|
|
674
|
+
isImmediatelyCancel: boolean;
|
|
675
|
+
cancellationReason?: string;
|
|
676
|
+
}
|
|
677
677
|
export declare class CreateUpdateVariantsDto {
|
|
678
678
|
organizationId: number;
|
|
679
679
|
parentProductId: number;
|
|
@@ -1061,6 +1061,9 @@ export declare class FindResourcesOptionsDto extends PaginationQuery {
|
|
|
1061
1061
|
export declare class StripeCustomerIdDto {
|
|
1062
1062
|
userId: number;
|
|
1063
1063
|
}
|
|
1064
|
+
export declare class StripeCustomerPaymentMathodDto extends StripeCustomerIdDto {
|
|
1065
|
+
paymentMethodId: string;
|
|
1066
|
+
}
|
|
1064
1067
|
export declare class AddACHTokenToCustomerDto {
|
|
1065
1068
|
publicToken: string;
|
|
1066
1069
|
accountId: string;
|
|
@@ -1273,21 +1276,6 @@ export declare class EntitlementTerms extends OrganizationConnectionBaseEntity {
|
|
|
1273
1276
|
groupId: number;
|
|
1274
1277
|
terms: IEntitlementTerms[];
|
|
1275
1278
|
}
|
|
1276
|
-
export declare class EventAttendee extends BondBaseEntity {
|
|
1277
|
-
status: RequestStatusEnum | null;
|
|
1278
|
-
hasPaid: boolean | null;
|
|
1279
|
-
paymentId: number | null;
|
|
1280
|
-
attendeeId: number;
|
|
1281
|
-
eventId?: number | null;
|
|
1282
|
-
productUserId?: number;
|
|
1283
|
-
answerTitleIds?: number[];
|
|
1284
|
-
entryStatus?: EntryStatusEnum;
|
|
1285
|
-
addonProductUserIds?: number[];
|
|
1286
|
-
deletedAt?: Date;
|
|
1287
|
-
attendee: User;
|
|
1288
|
-
event: Event;
|
|
1289
|
-
purchasedResource: PurchasedResource;
|
|
1290
|
-
}
|
|
1291
1279
|
export declare class Event extends OrganizationConnectionBaseEntity {
|
|
1292
1280
|
constructor();
|
|
1293
1281
|
defineCalculatedDateTimeProps(): void;
|
|
@@ -1343,6 +1331,21 @@ export declare class Event extends OrganizationConnectionBaseEntity {
|
|
|
1343
1331
|
slots: Slot[];
|
|
1344
1332
|
purchasedResources: PurchasedResource[];
|
|
1345
1333
|
}
|
|
1334
|
+
export declare class EventAttendee extends BondBaseEntity {
|
|
1335
|
+
status: RequestStatusEnum | null;
|
|
1336
|
+
hasPaid: boolean | null;
|
|
1337
|
+
paymentId: number | null;
|
|
1338
|
+
attendeeId: number;
|
|
1339
|
+
eventId?: number | null;
|
|
1340
|
+
productUserId?: number;
|
|
1341
|
+
answerTitleIds?: number[];
|
|
1342
|
+
entryStatus?: EntryStatusEnum;
|
|
1343
|
+
addonProductUserIds?: number[];
|
|
1344
|
+
deletedAt?: Date;
|
|
1345
|
+
attendee: User;
|
|
1346
|
+
event: Event;
|
|
1347
|
+
purchasedResource: PurchasedResource;
|
|
1348
|
+
}
|
|
1346
1349
|
export declare class Facility extends OrganizationConnectionBaseEntity {
|
|
1347
1350
|
name: string;
|
|
1348
1351
|
description?: string;
|
|
@@ -1385,6 +1388,9 @@ export declare class FutureInstallment extends OrganizationConnectionBaseEntity
|
|
|
1385
1388
|
plannedDate: Date;
|
|
1386
1389
|
chargedAt?: Date;
|
|
1387
1390
|
}
|
|
1391
|
+
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1392
|
+
code: string;
|
|
1393
|
+
}
|
|
1388
1394
|
export declare class Group extends BondBaseEntity {
|
|
1389
1395
|
name: string;
|
|
1390
1396
|
description?: string;
|
|
@@ -1401,22 +1407,6 @@ export declare class Group extends BondBaseEntity {
|
|
|
1401
1407
|
members: ISeasonAttendeeInfo[];
|
|
1402
1408
|
users: User[];
|
|
1403
1409
|
}
|
|
1404
|
-
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1405
|
-
code: string;
|
|
1406
|
-
}
|
|
1407
|
-
export declare class GroupItemsPricing extends OrganizationConnectionBaseEntity {
|
|
1408
|
-
groupId: number;
|
|
1409
|
-
itemId: number;
|
|
1410
|
-
itemType: ResourceNameTypeEnum;
|
|
1411
|
-
startDate: Date;
|
|
1412
|
-
endDate: Date;
|
|
1413
|
-
price: number;
|
|
1414
|
-
overridesPrice: boolean;
|
|
1415
|
-
deletedAt?: Date;
|
|
1416
|
-
group?: EntitlementGroup;
|
|
1417
|
-
discountMethod?: DiscountMethodsEnum;
|
|
1418
|
-
discountValue?: number;
|
|
1419
|
-
}
|
|
1420
1410
|
export declare class GroupsInDivisions extends BondBaseEntity {
|
|
1421
1411
|
groupId: number;
|
|
1422
1412
|
divisionId: number;
|
|
@@ -1460,6 +1450,19 @@ export declare class InvoiceMails extends OrganizationConnectionBaseEntity {
|
|
|
1460
1450
|
mailParams?: any;
|
|
1461
1451
|
memo?: string;
|
|
1462
1452
|
}
|
|
1453
|
+
export declare class GroupItemsPricing extends OrganizationConnectionBaseEntity {
|
|
1454
|
+
groupId: number;
|
|
1455
|
+
itemId: number;
|
|
1456
|
+
itemType: ResourceNameTypeEnum;
|
|
1457
|
+
startDate: Date;
|
|
1458
|
+
endDate: Date;
|
|
1459
|
+
price: number;
|
|
1460
|
+
overridesPrice: boolean;
|
|
1461
|
+
deletedAt?: Date;
|
|
1462
|
+
group?: EntitlementGroup;
|
|
1463
|
+
discountMethod?: DiscountMethodsEnum;
|
|
1464
|
+
discountValue?: number;
|
|
1465
|
+
}
|
|
1463
1466
|
export declare class InvoiceNote extends OrganizationConnectionBaseEntity {
|
|
1464
1467
|
content: string;
|
|
1465
1468
|
creatingUserId: number;
|
|
@@ -1912,6 +1915,23 @@ export declare class ProductsReservedForCustomers extends OrganizationConnection
|
|
|
1912
1915
|
deletedAt?: Date;
|
|
1913
1916
|
product: Product;
|
|
1914
1917
|
}
|
|
1918
|
+
export declare class ProductsUsers extends OrganizationConnectionBaseEntity {
|
|
1919
|
+
productId: number;
|
|
1920
|
+
userId: number;
|
|
1921
|
+
user?: User;
|
|
1922
|
+
paymentStatus: PaymentStatusEnum;
|
|
1923
|
+
productName: string;
|
|
1924
|
+
productPrice: number;
|
|
1925
|
+
productQuantity: number;
|
|
1926
|
+
productQuantityLeft: number;
|
|
1927
|
+
productPriceCurrency: CurrencyEnum;
|
|
1928
|
+
ordinal?: number;
|
|
1929
|
+
purchasedResources: PurchasedResource[];
|
|
1930
|
+
product: Product;
|
|
1931
|
+
lineItem: LineItems;
|
|
1932
|
+
slots?: Slot[];
|
|
1933
|
+
addons?: Addon[];
|
|
1934
|
+
}
|
|
1915
1935
|
export declare class Program extends BondBaseEntity {
|
|
1916
1936
|
type: ProgramTypesEnum;
|
|
1917
1937
|
name: string;
|
|
@@ -1996,23 +2016,6 @@ export declare class ProgramSeason extends BondBaseEntity {
|
|
|
1996
2016
|
facility: Facility;
|
|
1997
2017
|
purchasedResources: PurchasedResource[];
|
|
1998
2018
|
}
|
|
1999
|
-
export declare class ProductsUsers extends OrganizationConnectionBaseEntity {
|
|
2000
|
-
productId: number;
|
|
2001
|
-
userId: number;
|
|
2002
|
-
user?: User;
|
|
2003
|
-
paymentStatus: PaymentStatusEnum;
|
|
2004
|
-
productName: string;
|
|
2005
|
-
productPrice: number;
|
|
2006
|
-
productQuantity: number;
|
|
2007
|
-
productQuantityLeft: number;
|
|
2008
|
-
productPriceCurrency: CurrencyEnum;
|
|
2009
|
-
ordinal?: number;
|
|
2010
|
-
purchasedResources: PurchasedResource[];
|
|
2011
|
-
product: Product;
|
|
2012
|
-
lineItem: LineItems;
|
|
2013
|
-
slots?: Slot[];
|
|
2014
|
-
addons?: Addon[];
|
|
2015
|
-
}
|
|
2016
2019
|
export declare class PurchasedResource extends OrganizationConnectionBaseEntity {
|
|
2017
2020
|
productUserId: number;
|
|
2018
2021
|
resourceId: number;
|
|
@@ -2129,6 +2132,13 @@ export declare class Resource extends OrganizationConnectionBaseEntity {
|
|
|
2129
2132
|
purchasedResources: PurchasedResource[];
|
|
2130
2133
|
linkSEO: string;
|
|
2131
2134
|
}
|
|
2135
|
+
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2136
|
+
name: string;
|
|
2137
|
+
facilityId: number;
|
|
2138
|
+
parentSlotId: number;
|
|
2139
|
+
childrenSlotIds: number[];
|
|
2140
|
+
deletedAt?: Date;
|
|
2141
|
+
}
|
|
2132
2142
|
export declare class School extends BondBaseEntity {
|
|
2133
2143
|
name: string | null;
|
|
2134
2144
|
alias: string[] | null;
|
|
@@ -2151,13 +2161,6 @@ export declare class SeasonAttendee extends BondBaseEntity {
|
|
|
2151
2161
|
deletedAt?: Date;
|
|
2152
2162
|
purchasedResource: PurchasedResource;
|
|
2153
2163
|
}
|
|
2154
|
-
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2155
|
-
name: string;
|
|
2156
|
-
facilityId: number;
|
|
2157
|
-
parentSlotId: number;
|
|
2158
|
-
childrenSlotIds: number[];
|
|
2159
|
-
deletedAt?: Date;
|
|
2160
|
-
}
|
|
2161
2164
|
export declare class SeasonDivisions extends BondBaseEntity {
|
|
2162
2165
|
name: string | null;
|
|
2163
2166
|
ordinal: number | null;
|
|
@@ -2179,10 +2182,6 @@ export declare class SeasonPool extends BondBaseEntity {
|
|
|
2179
2182
|
purchasedResource: PurchasedResource;
|
|
2180
2183
|
season: LeagueSeason;
|
|
2181
2184
|
}
|
|
2182
|
-
export declare class SpacesDependency extends BondBaseEntity {
|
|
2183
|
-
blockingSpaceId: number;
|
|
2184
|
-
blockedSpaceId: number;
|
|
2185
|
-
}
|
|
2186
2185
|
export declare class SeasonTeam extends BondBaseEntity {
|
|
2187
2186
|
seasonId: number | null;
|
|
2188
2187
|
teamId: number | null;
|
|
@@ -2193,6 +2192,10 @@ export declare class SeasonTeam extends BondBaseEntity {
|
|
|
2193
2192
|
metaData: any | null;
|
|
2194
2193
|
team: Team;
|
|
2195
2194
|
}
|
|
2195
|
+
export declare class SpacesDependency extends BondBaseEntity {
|
|
2196
|
+
blockingSpaceId: number;
|
|
2197
|
+
blockedSpaceId: number;
|
|
2198
|
+
}
|
|
2196
2199
|
export declare class Station extends OrganizationConnectionBaseEntity {
|
|
2197
2200
|
name: string;
|
|
2198
2201
|
facilityId: number;
|
|
@@ -3298,6 +3301,13 @@ export declare class ProductImportDto {
|
|
|
3298
3301
|
resourceIds: number[];
|
|
3299
3302
|
oldId: number;
|
|
3300
3303
|
}
|
|
3304
|
+
export declare class PunchPassDto {
|
|
3305
|
+
CustomerID: string;
|
|
3306
|
+
QuantityLeft: number;
|
|
3307
|
+
BondProgramID: number;
|
|
3308
|
+
BondSessionID: number;
|
|
3309
|
+
ProductID: number;
|
|
3310
|
+
}
|
|
3301
3311
|
export declare class ImportedSlotProductDto {
|
|
3302
3312
|
slotID?: string;
|
|
3303
3313
|
name?: string;
|
|
@@ -3349,13 +3359,6 @@ export declare class ImportedReservationDto {
|
|
|
3349
3359
|
slots?: ImportedSlotDto[];
|
|
3350
3360
|
addons?: ImportedSlotProductDto[];
|
|
3351
3361
|
}
|
|
3352
|
-
export declare class PunchPassDto {
|
|
3353
|
-
CustomerID: string;
|
|
3354
|
-
QuantityLeft: number;
|
|
3355
|
-
BondProgramID: number;
|
|
3356
|
-
BondSessionID: number;
|
|
3357
|
-
ProductID: number;
|
|
3358
|
-
}
|
|
3359
3362
|
export declare class GameSlots extends BondBaseEntity {
|
|
3360
3363
|
entityType: string;
|
|
3361
3364
|
entityId: number;
|
|
@@ -4081,13 +4084,7 @@ export declare class Reservation extends OrganizationConnectionBaseEntity {
|
|
|
4081
4084
|
forms?: number[] | null;
|
|
4082
4085
|
answerTitleIds?: number[] | null;
|
|
4083
4086
|
segments?: Segment[];
|
|
4084
|
-
addonsProductUserIds?: number[] | null;
|
|
4085
4087
|
migrationStatus?: string;
|
|
4086
|
-
addonsMetadata: {
|
|
4087
|
-
productId: number;
|
|
4088
|
-
price?: number;
|
|
4089
|
-
quantity: number;
|
|
4090
|
-
}[];
|
|
4091
4088
|
addons: Addon[];
|
|
4092
4089
|
overrideProductsPrice: {
|
|
4093
4090
|
productId: number;
|