-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1 fix typos wip #1 adds actions for training events #1 wip #1 extract types in their own packages #1 test helpers for training events #1 training events updated #1 vscode extensions #1 wip #1 upgrade nx to 16.5 #4 #1 training events lib #1 fix typos wip #1
- Loading branch information
1 parent
85d35d6
commit 641f49d
Showing
3 changed files
with
3 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,6 @@ testem.log | |
# System Files | ||
.DS_Store | ||
Thumbs.db | ||
======= | ||
|
||
.env | ||
.envrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,2 @@ | ||
export * from './events' | ||
<<<<<<< HEAD | ||
export { reduceEvent } from './events/reducer' | ||
======= | ||
export { applyReducer } from './events/reducer' | ||
>>>>>>> 881533f ( #1 training events lib) | ||
|
||
export type { | ||
Member, | ||
OutcomeReason, | ||
OutcomeReasonDetailed, | ||
TestResult, | ||
Training, | ||
TrainingEvent, | ||
TrainingEventMetadata, | ||
TrainingPurpose, | ||
TrainingStatus, | ||
} from './types' | ||
<<<<<<< HEAD | ||
|
||
export type { TrainingCompletedEvent, TrainingCompletedEventData } from "./events/training-completed" | ||
export type { TrainingCptPerformedEvent, TrainingCptPerformedEventData } from "./events/training-cpt-performed" | ||
export type { TrainingCptRequestedEvent, TrainingCptRequestedEventData } from "./events/training-cpt-requested" | ||
export type { TrainingCptScheduledEvent, TrainingCptScheduledEventData } from "./events/training-cpt-scheduled" | ||
export type { TrainingIntentConfirmationExpiredEvent, TrainingIntentConfirmationExpiredEventData } from "./events/training-intent-confirmation-expired" | ||
export type { TrainingIntentConfirmationRejectedEvent, TrainingIntentConfirmationRejectedEventData } from "./events/training-intent-confirmation-rejected" | ||
export type { TrainingIntentConfirmationRequestedEvent, TrainingIntentConfirmationRequestedEventData } from "./events/training-intent-confirmation-requested" | ||
export type { TrainingIntentConfirmationRespondedEvent, TrainingIntentConfirmationRespondedEventData } from "./events/training-intent-confirmation-responded" | ||
export type { TrainingIntentEvent, TrainingIntentEventData } from "./events/training-intent" | ||
export type { TrainingMentorAssignedEvent, TrainingMentorAssignedEventData } from "./events/training-mentor-assigned" | ||
export type { TrainingMentorReassignedEvent, TrainingMentorReassignedEventData } from "./events/training-mentor-reassigned" | ||
export type { TrainingSessionPerformedEvent, TrainingSessionPerformedEventData } from "./events/training-session-performed" | ||
export type { TrainingSessionScheduledEvent, TrainingSessionScheduledEventData } from "./events/training-session-scheduled" | ||
export type { TrainingSoloPerformedEvent, TrainingSoloPerformedEventData } from "./events/training-solo-performed" | ||
export type { TrainingSoloRequestedEvent, TrainingSoloRequestedEventData } from "./events/training-solo-requested" | ||
export type { TrainingSoloScheduledEvent, TrainingSoloScheduledEventData } from "./events/training-solo-scheduled" | ||
export type { TrainingTestAssignedEvent, TrainingTestAssignedEventData } from "./events/training-test-assigned" | ||
export type { TrainingTestCompletedEvent, TrainingTestCompletedEventData } from "./events/training-test-completed" | ||
|
||
======= | ||
>>>>>>> 881533f ( #1 training events lib) | ||
export * from './events'; | ||
export { reduceEvent } from './events/reducer'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters