volleyballsimtypes 0.0.87 → 0.0.88
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.
|
@@ -10,7 +10,7 @@ export interface EventTraitAttributes {
|
|
|
10
10
|
event_id: string;
|
|
11
11
|
trait_id: string;
|
|
12
12
|
}
|
|
13
|
-
export type EventTraitPk = 'event_id';
|
|
13
|
+
export type EventTraitPk = 'event_id' | 'trait_id';
|
|
14
14
|
export type EventTraitId = EventTraitModel[EventTraitPk];
|
|
15
15
|
export type EventTraitOptionalAttributes = 'block_id' | 'reception_id' | 'serve_id' | 'set_id' | 'spike_id';
|
|
16
16
|
export type EventTraitCreationAttributes = Optional<EventTraitAttributes, EventTraitOptionalAttributes>;
|
|
@@ -10,7 +10,7 @@ export interface EventTraitAttributes {
|
|
|
10
10
|
event_id: string;
|
|
11
11
|
trait_id: string;
|
|
12
12
|
}
|
|
13
|
-
export type EventTraitPk = 'event_id';
|
|
13
|
+
export type EventTraitPk = 'event_id' | 'trait_id';
|
|
14
14
|
export type EventTraitId = EventTraitModel[EventTraitPk];
|
|
15
15
|
export type EventTraitOptionalAttributes = 'block_id' | 'reception_id' | 'serve_id' | 'set_id' | 'spike_id';
|
|
16
16
|
export type EventTraitCreationAttributes = Optional<EventTraitAttributes, EventTraitOptionalAttributes>;
|