@bondsports/types 0.0.85 → 0.0.86

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
@@ -3399,27 +3399,6 @@ export declare class Lock extends BondBaseEntity {
3399
3399
  name: string;
3400
3400
  locked?: Date;
3401
3401
  }
3402
- export interface ValidatedMonthAndDay {
3403
- valid: boolean;
3404
- month?: number;
3405
- day?: number;
3406
- }
3407
- export interface ValidationReason {
3408
- valid: boolean;
3409
- reason?: string;
3410
- }
3411
- export interface PaymentStatus {
3412
- parentId: number;
3413
- paymentStatus: ReservationPaymentStatusEnum;
3414
- approvalStatus?: ReservationStatusEnum;
3415
- id?: number;
3416
- }
3417
- export interface PaymentStatusesDict {
3418
- [id: number]: PaymentStatus[];
3419
- }
3420
- export interface PaymentStatusDict {
3421
- [id: number]: ReservationPaymentStatusEnum;
3422
- }
3423
3402
  export declare class CreateMonitorConfigDto {
3424
3403
  facilityId: number;
3425
3404
  name: string;
@@ -3431,12 +3410,6 @@ export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
3431
3410
  code: string;
3432
3411
  config?: any;
3433
3412
  }
3434
- export declare class ByOrganizationIdDto {
3435
- organizationId: number;
3436
- }
3437
- export declare class OptionalFindByOrganizationIdDto {
3438
- organizationId?: number;
3439
- }
3440
3413
  export declare class Organization extends BondBaseEntity {
3441
3414
  name: string | null;
3442
3415
  email: string | null;
@@ -3486,6 +3459,12 @@ export declare class Organization extends BondBaseEntity {
3486
3459
  brandings: OrganizationBranding[];
3487
3460
  brandingsV2?: OrganizationBranding[];
3488
3461
  }
3462
+ export declare class ByOrganizationIdDto {
3463
+ organizationId: number;
3464
+ }
3465
+ export declare class OptionalFindByOrganizationIdDto {
3466
+ organizationId?: number;
3467
+ }
3489
3468
  export declare class OrganizationBranding extends OrganizationConnectionBaseEntity {
3490
3469
  key?: string;
3491
3470
  vaule?: string;
@@ -4423,6 +4402,9 @@ export declare class UserRole extends OrganizationConnectionBaseEntity {
4423
4402
  role: Role;
4424
4403
  user: User;
4425
4404
  }
4405
+ export declare class CloseShiftDto {
4406
+ closingCashAmount: number;
4407
+ }
4426
4408
  export declare class FindShiftsByIdsDto {
4427
4409
  shiftIds: number[];
4428
4410
  }
@@ -4457,9 +4439,6 @@ export declare class OpenShiftDto {
4457
4439
  openingCashAmount: number;
4458
4440
  stationId: number;
4459
4441
  }
4460
- export declare class CloseShiftDto {
4461
- closingCashAmount: number;
4462
- }
4463
4442
  export declare class Shift extends OrganizationConnectionBaseEntity {
4464
4443
  stationId: number;
4465
4444
  station?: Station;
@@ -4489,3 +4468,24 @@ export declare class Shift extends OrganizationConnectionBaseEntity {
4489
4468
  closingManager?: User;
4490
4469
  reconcilingUser?: User;
4491
4470
  }
4471
+ export interface ValidatedMonthAndDay {
4472
+ valid: boolean;
4473
+ month?: number;
4474
+ day?: number;
4475
+ }
4476
+ export interface ValidationReason {
4477
+ valid: boolean;
4478
+ reason?: string;
4479
+ }
4480
+ export interface PaymentStatus {
4481
+ parentId: number;
4482
+ paymentStatus: ReservationPaymentStatusEnum;
4483
+ approvalStatus?: ReservationStatusEnum;
4484
+ id?: number;
4485
+ }
4486
+ export interface PaymentStatusesDict {
4487
+ [id: number]: PaymentStatus[];
4488
+ }
4489
+ export interface PaymentStatusDict {
4490
+ [id: number]: ReservationPaymentStatusEnum;
4491
+ }