@updraft-solutions/mcrit-sdk 0.1.0 → 0.3.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.
@@ -21,6 +21,9 @@ export type ExtendedAirplane = z.infer<
21
21
  export type AirplanePermission = z.infer<
22
22
  typeof ModelSchemas.airplanePermissionSchema
23
23
  >;
24
+ export type AirplaneShareInvite = z.infer<
25
+ typeof ModelSchemas.airplaneShareInviteSchema
26
+ >;
24
27
  export type LandingFee = z.infer<typeof ModelSchemas.landingFeeSchema>;
25
28
  export type AircraftRating = z.infer<typeof ModelSchemas.aircraftRatingSchema>;
26
29
  export type UserAircraftRating = z.infer<
@@ -99,6 +102,18 @@ export type Course = z.infer<typeof ModelSchemas.courseSchema>;
99
102
  export type CourseEnrollment = z.infer<
100
103
  typeof ModelSchemas.courseEnrollmentSchema
101
104
  >;
105
+ export type CourseEnrollmentMetrics = z.infer<
106
+ typeof ModelSchemas.courseEnrollmentMetricsSchema
107
+ >;
108
+
109
+ // Airplane issue (aviation defect log) Types
110
+ export type AirplaneIssue = z.infer<typeof ModelSchemas.airplaneIssueSchema>;
111
+ export type AirplaneIssueSeverity = z.infer<
112
+ typeof ModelSchemas.airplaneIssueSeverityEnum
113
+ >;
114
+ export type AirplaneIssueStatus = z.infer<
115
+ typeof ModelSchemas.airplaneIssueStatusEnum
116
+ >;
102
117
 
103
118
  // Communication and Support Types
104
119
  export type Event = z.infer<typeof ModelSchemas.eventSchema>;