@bondsports/types 0.0.138 → 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 CHANGED
@@ -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,17 +3470,26 @@ export interface PaymentStatusesDict {
3479
3470
  export interface PaymentStatusDict {
3480
3471
  [id: number]: ReservationPaymentStatusEnum;
3481
3472
  }
3482
- export declare class CreateMonitorConfigDto {
3483
- facilityId: number;
3484
- name: string;
3485
- code: string;
3486
- config: any;
3473
+ export interface ValidatedMonthAndDay {
3474
+ valid: boolean;
3475
+ month?: number;
3476
+ day?: number;
3477
+ }
3478
+ export interface ValidationReason {
3479
+ valid: boolean;
3480
+ reason?: string;
3487
3481
  }
3488
3482
  export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
3489
3483
  facilityId: number;
3490
3484
  code: string;
3491
3485
  config?: any;
3492
3486
  }
3487
+ export declare class CreateMonitorConfigDto {
3488
+ facilityId: number;
3489
+ name: string;
3490
+ code: string;
3491
+ config: any;
3492
+ }
3493
3493
  export declare class NotifyTracker extends BondBaseEntity {
3494
3494
  userId: number;
3495
3495
  organizationId: number;