@bondsports/types 0.3.0 → 0.6.0

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
@@ -3356,6 +3356,19 @@ export declare class ImportedReservationDto {
3356
3356
  slots?: ImportedSlotDto[];
3357
3357
  addons?: ImportedSlotProductDto[];
3358
3358
  }
3359
+ export declare class GameSlots extends BondBaseEntity {
3360
+ entityType: string;
3361
+ entityId: number;
3362
+ }
3363
+ export declare class MatchParticipants extends BondBaseEntity {
3364
+ matchId: number | null;
3365
+ ordinal: number | null;
3366
+ outcomeOrdinal: number | null;
3367
+ resultMetaData: any | null;
3368
+ points: number | null;
3369
+ score: number | null;
3370
+ gameSlotId: number | null;
3371
+ }
3359
3372
  export declare class Matches extends BondBaseEntity {
3360
3373
  eventId: number | null;
3361
3374
  status: number | null;
@@ -4480,16 +4493,3 @@ export declare class Shift extends OrganizationConnectionBaseEntity {
4480
4493
  closingManager?: User;
4481
4494
  reconcilingUser?: User;
4482
4495
  }
4483
- export declare class GameSlots extends BondBaseEntity {
4484
- entityType: string;
4485
- entityId: number;
4486
- }
4487
- export declare class MatchParticipants extends BondBaseEntity {
4488
- matchId: number | null;
4489
- ordinal: number | null;
4490
- outcomeOrdinal: number | null;
4491
- resultMetaData: any | null;
4492
- points: number | null;
4493
- score: number | null;
4494
- gameSlotId: number | null;
4495
- }