@bondsports/types 0.0.137 → 0.0.139
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 +47 -47
- 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
|
@@ -1170,6 +1170,11 @@ export declare class BlockedDate extends BondBaseEntity {
|
|
|
1170
1170
|
endDate: Date;
|
|
1171
1171
|
deletedAt?: Date;
|
|
1172
1172
|
}
|
|
1173
|
+
export declare class BondBaseEntity extends BaseEntity {
|
|
1174
|
+
id: number;
|
|
1175
|
+
createdAt: Date;
|
|
1176
|
+
updatedAt: Date;
|
|
1177
|
+
}
|
|
1173
1178
|
export declare class BookedSessions extends BondBaseEntity {
|
|
1174
1179
|
reservationId?: number;
|
|
1175
1180
|
color?: string;
|
|
@@ -2349,14 +2354,6 @@ export declare class UserAuthorizations extends BondBaseEntity {
|
|
|
2349
2354
|
entityType: UserAuthorizationsTypeEnum;
|
|
2350
2355
|
user: User;
|
|
2351
2356
|
}
|
|
2352
|
-
export declare class UserPaymentMethod extends BondBaseEntity {
|
|
2353
|
-
userId: number;
|
|
2354
|
-
failCount: number;
|
|
2355
|
-
isDefault?: boolean;
|
|
2356
|
-
paymentMethodType: PaymentMethodTypeEnum;
|
|
2357
|
-
paymentMethodId: string;
|
|
2358
|
-
nextAllowedChargeDate?: Date;
|
|
2359
|
-
}
|
|
2360
2357
|
export declare class UserInFamilyAccount extends BondBaseEntity {
|
|
2361
2358
|
familyAccountId: number;
|
|
2362
2359
|
userId: number;
|
|
@@ -2365,6 +2362,14 @@ export declare class UserInFamilyAccount extends BondBaseEntity {
|
|
|
2365
2362
|
familyAccount: FamilyAccount;
|
|
2366
2363
|
deletedAt?: Date;
|
|
2367
2364
|
}
|
|
2365
|
+
export declare class UserPaymentMethod extends BondBaseEntity {
|
|
2366
|
+
userId: number;
|
|
2367
|
+
failCount: number;
|
|
2368
|
+
isDefault?: boolean;
|
|
2369
|
+
paymentMethodType: PaymentMethodTypeEnum;
|
|
2370
|
+
paymentMethodId: string;
|
|
2371
|
+
nextAllowedChargeDate?: Date;
|
|
2372
|
+
}
|
|
2368
2373
|
export declare class UsersInGroup extends BondBaseEntity {
|
|
2369
2374
|
groupId: number;
|
|
2370
2375
|
userId: number;
|
|
@@ -2388,11 +2393,6 @@ export declare class WebflowOrganizationConfiguration extends OrganizationConnec
|
|
|
2388
2393
|
membershipCollectionId?: string;
|
|
2389
2394
|
programsCollectionId?: string;
|
|
2390
2395
|
}
|
|
2391
|
-
export declare class BondBaseEntity extends BaseEntity {
|
|
2392
|
-
id: number;
|
|
2393
|
-
createdAt: Date;
|
|
2394
|
-
updatedAt: Date;
|
|
2395
|
-
}
|
|
2396
2396
|
export declare enum EntitlementTermsTypesEnum {
|
|
2397
2397
|
QUESTION = "question",
|
|
2398
2398
|
CITY = "city",
|
|
@@ -3302,6 +3302,15 @@ export declare class ColumnNumericTransformer {
|
|
|
3302
3302
|
from(data: string): number;
|
|
3303
3303
|
}
|
|
3304
3304
|
export declare function convertToNumber(data: string): number;
|
|
3305
|
+
export declare class ProductIdsDto {
|
|
3306
|
+
productIds?: number[];
|
|
3307
|
+
}
|
|
3308
|
+
export declare class ProductImportDto {
|
|
3309
|
+
product: Product;
|
|
3310
|
+
prices: Price[];
|
|
3311
|
+
resourceIds: number[];
|
|
3312
|
+
oldId: number;
|
|
3313
|
+
}
|
|
3305
3314
|
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3306
3315
|
name?: string;
|
|
3307
3316
|
genderStr?: string;
|
|
@@ -3351,15 +3360,6 @@ export declare class ImportedPaymentDto {
|
|
|
3351
3360
|
date: string;
|
|
3352
3361
|
time: string;
|
|
3353
3362
|
}
|
|
3354
|
-
export declare class ProductIdsDto {
|
|
3355
|
-
productIds?: number[];
|
|
3356
|
-
}
|
|
3357
|
-
export declare class ProductImportDto {
|
|
3358
|
-
product: Product;
|
|
3359
|
-
prices: Price[];
|
|
3360
|
-
resourceIds: number[];
|
|
3361
|
-
oldId: number;
|
|
3362
|
-
}
|
|
3363
3363
|
export declare class PunchPassDto {
|
|
3364
3364
|
CustomerID: string;
|
|
3365
3365
|
QuantityLeft: number;
|
|
@@ -3418,6 +3418,11 @@ export declare class ImportedReservationDto {
|
|
|
3418
3418
|
slots?: ImportedSlotDto[];
|
|
3419
3419
|
addons?: ImportedSlotProductDto[];
|
|
3420
3420
|
}
|
|
3421
|
+
export declare class Matches extends BondBaseEntity {
|
|
3422
|
+
eventId: number | null;
|
|
3423
|
+
status: number | null;
|
|
3424
|
+
excludeStandings: boolean | null;
|
|
3425
|
+
}
|
|
3421
3426
|
export declare class GameSlots extends BondBaseEntity {
|
|
3422
3427
|
entityType: string;
|
|
3423
3428
|
entityId: number;
|
|
@@ -3431,11 +3436,6 @@ export declare class MatchParticipants extends BondBaseEntity {
|
|
|
3431
3436
|
score: number | null;
|
|
3432
3437
|
gameSlotId: number | null;
|
|
3433
3438
|
}
|
|
3434
|
-
export declare class Matches extends BondBaseEntity {
|
|
3435
|
-
eventId: number | null;
|
|
3436
|
-
status: number | null;
|
|
3437
|
-
excludeStandings: boolean | null;
|
|
3438
|
-
}
|
|
3439
3439
|
export declare class RoundEvents extends BaseEntity {
|
|
3440
3440
|
roundId: number;
|
|
3441
3441
|
eventId: number;
|
|
@@ -3458,15 +3458,6 @@ export declare class Lock extends BondBaseEntity {
|
|
|
3458
3458
|
name: string;
|
|
3459
3459
|
locked?: Date;
|
|
3460
3460
|
}
|
|
3461
|
-
export interface ValidatedMonthAndDay {
|
|
3462
|
-
valid: boolean;
|
|
3463
|
-
month?: number;
|
|
3464
|
-
day?: number;
|
|
3465
|
-
}
|
|
3466
|
-
export interface ValidationReason {
|
|
3467
|
-
valid: boolean;
|
|
3468
|
-
reason?: string;
|
|
3469
|
-
}
|
|
3470
3461
|
export interface PaymentStatus {
|
|
3471
3462
|
parentId: number;
|
|
3472
3463
|
paymentStatus: ReservationPaymentStatusEnum;
|
|
@@ -3479,16 +3470,32 @@ export interface PaymentStatusesDict {
|
|
|
3479
3470
|
export interface PaymentStatusDict {
|
|
3480
3471
|
[id: number]: ReservationPaymentStatusEnum;
|
|
3481
3472
|
}
|
|
3473
|
+
export interface ValidatedMonthAndDay {
|
|
3474
|
+
valid: boolean;
|
|
3475
|
+
month?: number;
|
|
3476
|
+
day?: number;
|
|
3477
|
+
}
|
|
3478
|
+
export interface ValidationReason {
|
|
3479
|
+
valid: boolean;
|
|
3480
|
+
reason?: string;
|
|
3481
|
+
}
|
|
3482
|
+
export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
|
|
3483
|
+
facilityId: number;
|
|
3484
|
+
code: string;
|
|
3485
|
+
config?: any;
|
|
3486
|
+
}
|
|
3482
3487
|
export declare class CreateMonitorConfigDto {
|
|
3483
3488
|
facilityId: number;
|
|
3484
3489
|
name: string;
|
|
3485
3490
|
code: string;
|
|
3486
3491
|
config: any;
|
|
3487
3492
|
}
|
|
3488
|
-
export declare class
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3493
|
+
export declare class NotifyTracker extends BondBaseEntity {
|
|
3494
|
+
userId: number;
|
|
3495
|
+
organizationId: number;
|
|
3496
|
+
notifyMetadata?: any;
|
|
3497
|
+
notfiyMethodtype: NotifyMethodEnum;
|
|
3498
|
+
destination: string;
|
|
3492
3499
|
}
|
|
3493
3500
|
export declare class ByOrganizationIdDto {
|
|
3494
3501
|
organizationId: number;
|
|
@@ -3514,13 +3521,6 @@ export declare class FindUnallocatedEventsFiltersDto extends PaginationQuery {
|
|
|
3514
3521
|
months?: string;
|
|
3515
3522
|
dow?: string;
|
|
3516
3523
|
}
|
|
3517
|
-
export declare class NotifyTracker extends BondBaseEntity {
|
|
3518
|
-
userId: number;
|
|
3519
|
-
organizationId: number;
|
|
3520
|
-
notifyMetadata?: any;
|
|
3521
|
-
notfiyMethodtype: NotifyMethodEnum;
|
|
3522
|
-
destination: string;
|
|
3523
|
-
}
|
|
3524
3524
|
export declare class Organization extends BondBaseEntity {
|
|
3525
3525
|
name: string | null;
|
|
3526
3526
|
email: string | null;
|