@updraft-solutions/mcrit-sdk 0.14.5 → 0.14.9

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/src/types/fbo.ts CHANGED
@@ -6,9 +6,14 @@ export type FboAcceptanceStatus = z.infer<typeof Fbo.fboAcceptanceStatusSchema>;
6
6
  export type FboGroundServices = z.infer<typeof Fbo.fboGroundServicesSchema>;
7
7
  export type FboFlightType = z.infer<typeof Fbo.fboFlightTypeSchema>;
8
8
  export type FboFlightStatus = z.infer<typeof Fbo.fboFlightStatusSchema>;
9
+ export type FboOperations = z.infer<typeof Fbo.fboOperationsSchema>;
9
10
  export type FboFlight = z.infer<typeof Fbo.fboFlightSchema>;
10
11
  export type FboOccupation = z.infer<typeof Fbo.fboOccupationSchema>;
11
12
  export type FboDuty = z.infer<typeof Fbo.fboDutySchema>;
13
+ export type FboRecurrenceType = z.infer<typeof Fbo.fboRecurrenceTypeSchema>;
14
+ export type FboRecurrence = z.infer<typeof Fbo.fboRecurrenceSchema>;
15
+ export type FboDutyAffected = z.infer<typeof Fbo.fboDutyAffectedSchema>;
16
+ export type FboDutySeriesResponse = z.infer<typeof Fbo.fboDutySeriesResponseSchema>;
12
17
  export type FboRole = z.infer<typeof Fbo.fboRoleSchema>;
13
18
  export type FboCompanyProfile = z.infer<typeof Fbo.fboCompanyProfileSchema>;
14
19
  export type FboDecisionAxis = z.infer<typeof Fbo.fboDecisionAxisSchema>;
@@ -19,3 +24,12 @@ export type FboTrafficSource = z.infer<typeof Fbo.fboTrafficSourceSchema>;
19
24
  export type FboTrafficRow = z.infer<typeof Fbo.fboTrafficRowSchema>;
20
25
  export type FboSystemRole = z.infer<typeof Fbo.fboSystemRoleSchema>;
21
26
  export type FboCompanyMember = z.infer<typeof Fbo.fboCompanyMemberSchema>;
27
+ export type FboNextDuty = z.infer<typeof Fbo.fboNextDutySchema>;
28
+ export type FboWeeklyLanding = z.infer<typeof Fbo.fboWeeklyLandingSchema>;
29
+ export type FboLandingsSummary = z.infer<typeof Fbo.fboLandingsSummarySchema>;
30
+ export type FboStatistics = z.infer<typeof Fbo.fboStatisticsSchema>;
31
+ export type FboActivityCauser = z.infer<typeof Fbo.fboActivityCauserSchema>;
32
+ export type FboActivityChanges = z.infer<typeof Fbo.fboActivityChangesSchema>;
33
+ export type FboActivity = z.infer<typeof Fbo.fboActivitySchema>;
34
+ export type FboRecurringFlight = z.infer<typeof Fbo.fboRecurringFlightSchema>;
35
+ export type FboMaterialiseResult = z.infer<typeof Fbo.fboMaterialiseResultSchema>;