@updraft-solutions/mcrit-sdk 0.4.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.
Files changed (47) hide show
  1. package/dist/chunk-EE4YY3AU.js +2620 -0
  2. package/dist/chunk-H4CJ2YEQ.cjs +2620 -0
  3. package/dist/courses/index.d.cts +2 -2
  4. package/dist/courses/index.d.ts +2 -2
  5. package/dist/index.cjs +201 -5
  6. package/dist/index.d.cts +3 -3
  7. package/dist/index.d.ts +3 -3
  8. package/dist/index.js +207 -11
  9. package/dist/schemas/index.cjs +198 -2
  10. package/dist/schemas/index.d.cts +3157 -128
  11. package/dist/schemas/index.d.ts +3157 -128
  12. package/dist/schemas/index.js +201 -5
  13. package/dist/training-C9rIBUeV.d.cts +101685 -0
  14. package/dist/training-C9rIBUeV.d.ts +101685 -0
  15. package/dist/types/index.cjs +1 -1
  16. package/dist/types/index.d.cts +278 -6
  17. package/dist/types/index.d.ts +278 -6
  18. package/dist/types/index.js +1 -1
  19. package/package.json +1 -1
  20. package/src/courses/index.ts +2 -2
  21. package/src/index.ts +42 -0
  22. package/src/schemas/common.ts +69 -5
  23. package/src/schemas/course-milestone.ts +78 -0
  24. package/src/schemas/equipment.ts +27 -0
  25. package/src/schemas/form-template.ts +416 -0
  26. package/src/schemas/index.ts +7 -1
  27. package/src/schemas/location-map.ts +175 -0
  28. package/src/schemas/models.ts +201 -100
  29. package/src/schemas/newsletter.ts +362 -0
  30. package/src/schemas/todo.ts +46 -0
  31. package/src/schemas/training.ts +500 -0
  32. package/src/types/ai.ts +85 -0
  33. package/src/types/aircraft-block.ts +23 -0
  34. package/src/types/api.ts +3 -1
  35. package/src/types/background-task.ts +28 -0
  36. package/src/types/compliance.ts +27 -3
  37. package/src/types/index.ts +5 -0
  38. package/src/types/landing-fee.ts +92 -0
  39. package/src/types/models.ts +46 -3
  40. package/src/types/roles.ts +26 -0
  41. package/dist/chunk-RC2BBT6H.cjs +0 -1384
  42. package/dist/chunk-WQLDSZNN.js +0 -1384
  43. package/dist/models-Bc5BKYuI.d.cts +0 -36898
  44. package/dist/models-Bc5BKYuI.d.ts +0 -36898
  45. package/src/schemas/fee.ts +0 -37
  46. /package/dist/{chunk-LXNCAKJZ.js → chunk-2WJHTRIE.js} +0 -0
  47. /package/dist/{chunk-MOOGM3DW.cjs → chunk-DCEOET63.cjs} +0 -0
@@ -14,12 +14,12 @@ interface CourseFeeLike extends FeeLike {
14
14
  count?: number;
15
15
  variant?: string | null;
16
16
  is_optional?: boolean;
17
- sort_order?: number;
17
+ sort_order?: number | null;
18
18
  };
19
19
  count?: number;
20
20
  variant?: string | null;
21
21
  is_optional?: boolean;
22
- sort_order?: number;
22
+ sort_order?: number | null;
23
23
  fee?: FeeLike;
24
24
  }
25
25
  /**
@@ -14,12 +14,12 @@ interface CourseFeeLike extends FeeLike {
14
14
  count?: number;
15
15
  variant?: string | null;
16
16
  is_optional?: boolean;
17
- sort_order?: number;
17
+ sort_order?: number | null;
18
18
  };
19
19
  count?: number;
20
20
  variant?: string | null;
21
21
  is_optional?: boolean;
22
- sort_order?: number;
22
+ sort_order?: number | null;
23
23
  fee?: FeeLike;
24
24
  }
25
25
  /**
package/dist/index.cjs CHANGED
@@ -84,16 +84,109 @@
84
84
 
85
85
 
86
86
 
87
- var _chunkRC2BBT6Hcjs = require('./chunk-RC2BBT6H.cjs');
88
- require('./chunk-MOOGM3DW.cjs');
89
87
 
90
88
 
91
- var _chunkLVTDNDWEcjs = require('./chunk-LVTDNDWE.cjs');
92
89
 
93
90
 
94
91
 
95
92
 
96
- var _chunkMI4YBENQcjs = require('./chunk-MI4YBENQ.cjs');
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+
112
+
113
+
114
+
115
+
116
+
117
+
118
+
119
+
120
+
121
+
122
+
123
+
124
+
125
+
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+
152
+
153
+
154
+
155
+
156
+
157
+
158
+
159
+
160
+
161
+
162
+
163
+
164
+
165
+
166
+
167
+
168
+
169
+
170
+
171
+
172
+
173
+
174
+
175
+
176
+
177
+
178
+
179
+
180
+
181
+
182
+
183
+
184
+
185
+ var _chunkH4CJ2YEQcjs = require('./chunk-H4CJ2YEQ.cjs');
186
+ require('./chunk-DCEOET63.cjs');
187
+
188
+
189
+ var _chunkLVTDNDWEcjs = require('./chunk-LVTDNDWE.cjs');
97
190
 
98
191
 
99
192
 
@@ -120,6 +213,11 @@ var _chunkIVMOR5SWcjs = require('./chunk-IVMOR5SW.cjs');
120
213
 
121
214
 
122
215
 
216
+ var _chunkMI4YBENQcjs = require('./chunk-MI4YBENQ.cjs');
217
+
218
+
219
+
220
+
123
221
 
124
222
 
125
223
 
@@ -274,4 +372,102 @@ var _chunkHQSF3WGFcjs = require('./chunk-HQSF3WGF.cjs');
274
372
 
275
373
 
276
374
 
277
- exports.AvatarConversion = _chunkJRVRIKNMcjs.AvatarConversion; exports.BaseModel = _chunkRC2BBT6Hcjs.BaseModel; exports.DATE_FORMATS = _chunkIVMOR5SWcjs.DATE_FORMATS; exports.DocumentConversion = _chunkJRVRIKNMcjs.DocumentConversion; exports.FaqSchema = _chunkRC2BBT6Hcjs.FaqSchema; exports.FaqStatus = _chunkRC2BBT6Hcjs.FaqStatus; exports.FeeCategoryOptionsSchema = _chunkRC2BBT6Hcjs.FeeCategoryOptionsSchema; exports.FeeSchema = _chunkRC2BBT6Hcjs.FeeSchema; exports.HeaderConversion = _chunkJRVRIKNMcjs.HeaderConversion; exports.ImageConversion = _chunkJRVRIKNMcjs.ImageConversion; exports.MediaType = _chunkJRVRIKNMcjs.MediaType; exports.MimeTypes = _chunkJRVRIKNMcjs.MimeTypes; exports.ReviewFaqSchema = _chunkRC2BBT6Hcjs.ReviewFaqSchema; exports.SAFETY_REPORT_STATUS_COLORS = _chunkRC2BBT6Hcjs.SAFETY_REPORT_STATUS_COLORS; exports.SAFETY_REPORT_STATUS_LABELS = _chunkRC2BBT6Hcjs.SAFETY_REPORT_STATUS_LABELS; exports.SafetyReportCategoryFormSchema = _chunkRC2BBT6Hcjs.SafetyReportCategoryFormSchema; exports.SafetyReportCategorySchema = _chunkRC2BBT6Hcjs.SafetyReportCategorySchema; exports.SafetyReportFilterSchema = _chunkRC2BBT6Hcjs.SafetyReportFilterSchema; exports.SafetyReportFormSchema = _chunkRC2BBT6Hcjs.SafetyReportFormSchema; exports.SafetyReportListResponseSchema = _chunkRC2BBT6Hcjs.SafetyReportListResponseSchema; exports.SafetyReportMediaSchema = _chunkRC2BBT6Hcjs.SafetyReportMediaSchema; exports.SafetyReportSchema = _chunkRC2BBT6Hcjs.SafetyReportSchema; exports.SafetyReportStatusEnum = _chunkRC2BBT6Hcjs.SafetyReportStatusEnum; exports.SafetyReportSubmissionResponseSchema = _chunkRC2BBT6Hcjs.SafetyReportSubmissionResponseSchema; exports.SafetyReportUpdateSchema = _chunkRC2BBT6Hcjs.SafetyReportUpdateSchema; exports.SubmitFaqQuestionSchema = _chunkRC2BBT6Hcjs.SubmitFaqQuestionSchema; exports.TIME_FORMATS = _chunkIVMOR5SWcjs.TIME_FORMATS; exports.ThumbnailConversion = _chunkJRVRIKNMcjs.ThumbnailConversion; exports.addressSchema = _chunkRC2BBT6Hcjs.addressSchema; exports.aircraftRatingSchema = _chunkRC2BBT6Hcjs.aircraftRatingSchema; exports.airplaneIssueSchema = _chunkRC2BBT6Hcjs.airplaneIssueSchema; exports.airplaneIssueSeverityEnum = _chunkRC2BBT6Hcjs.airplaneIssueSeverityEnum; exports.airplaneIssueStatusEnum = _chunkRC2BBT6Hcjs.airplaneIssueStatusEnum; exports.airplanePermissionSchema = _chunkRC2BBT6Hcjs.airplanePermissionSchema; exports.airplaneSchema = _chunkRC2BBT6Hcjs.airplaneSchema; exports.airplaneShareInviteSchema = _chunkRC2BBT6Hcjs.airplaneShareInviteSchema; exports.airportSchema = _chunkRC2BBT6Hcjs.airportSchema; exports.alertSchema = _chunkRC2BBT6Hcjs.alertSchema; exports.allowedDocumentTypeSchema = _chunkRC2BBT6Hcjs.allowedDocumentTypeSchema; exports.approachTypeSchema = _chunkRC2BBT6Hcjs.approachTypeSchema; exports.availSchema = _chunkRC2BBT6Hcjs.availSchema; exports.baseMembershipSchema = _chunkRC2BBT6Hcjs.baseMembershipSchema; exports.bookingDuration = _chunkIVMOR5SWcjs.bookingDuration; exports.bookingSchema = _chunkRC2BBT6Hcjs.bookingSchema; exports.bookingWaypointSchema = _chunkRC2BBT6Hcjs.bookingWaypointSchema; exports.bytesToHuman = _chunkIVMOR5SWcjs.bytesToHuman; exports.canPreview = _chunkJRVRIKNMcjs.canPreview; exports.commentSchema = _chunkRC2BBT6Hcjs.commentSchema; exports.companySchema = _chunkRC2BBT6Hcjs.companySchema; exports.contactAttributeSchema = _chunkRC2BBT6Hcjs.contactAttributeSchema; exports.courseCheckSyllabusSchema = _chunkRC2BBT6Hcjs.courseCheckSyllabusSchema; exports.courseEnrollmentMetricsSchema = _chunkRC2BBT6Hcjs.courseEnrollmentMetricsSchema; exports.courseEnrollmentSchema = _chunkRC2BBT6Hcjs.courseEnrollmentSchema; exports.courseFeeSchema = _chunkRC2BBT6Hcjs.courseFeeSchema; exports.courseSchema = _chunkRC2BBT6Hcjs.courseSchema; exports.createCrewValidator = _chunkMI4YBENQcjs.createCrewValidator; exports.crewObjectToString = _chunkIVMOR5SWcjs.crewObjectToString; exports.dateString = _chunkIVMOR5SWcjs.dateString; exports.dateTimeString = _chunkIVMOR5SWcjs.dateTimeString; exports.dayString = _chunkIVMOR5SWcjs.dayString; exports.defaultCrewRoleForMembership = _chunkMI4YBENQcjs.defaultCrewRoleForMembership; exports.displayFee = _chunk2DRKSYW4cjs.displayFee; exports.documentComplianceStatus = _chunkRC2BBT6Hcjs.documentComplianceStatus; exports.documentRequirement = _chunkRC2BBT6Hcjs.documentRequirement; exports.documentRequirementGroup = _chunkRC2BBT6Hcjs.documentRequirementGroup; exports.documentRequirementGroupAssignment = _chunkRC2BBT6Hcjs.documentRequirementGroupAssignment; exports.documentSchema = _chunkRC2BBT6Hcjs.documentSchema; exports.documentShareSchema = _chunkRC2BBT6Hcjs.documentShareSchema; exports.documentType = _chunkRC2BBT6Hcjs.documentType; exports.eventSchema = _chunkRC2BBT6Hcjs.eventSchema; exports.expenseItemSchema = _chunkRC2BBT6Hcjs.expenseItemSchema; exports.expenseSchema = _chunkRC2BBT6Hcjs.expenseSchema; exports.extendedAirplaneSchema = _chunkRC2BBT6Hcjs.extendedAirplaneSchema; exports.feeSchema = _chunkRC2BBT6Hcjs.feeSchema; exports.flightLogSchema = _chunkRC2BBT6Hcjs.flightLogSchema; exports.formatDate = _chunkIVMOR5SWcjs.formatDate; exports.formatDateTime = _chunkIVMOR5SWcjs.formatDateTime; exports.formatTime = _chunkIVMOR5SWcjs.formatTime; exports.formatToEuroString = _chunk2DRKSYW4cjs.formatToEuroString; exports.fromCents = _chunk2DRKSYW4cjs.fromCents; exports.getDocumentIcon = _chunkJRVRIKNMcjs.getDocumentIcon; exports.getMediaDisplayName = _chunkJRVRIKNMcjs.getMediaDisplayName; exports.getMediaIcon = _chunkJRVRIKNMcjs.getMediaIcon; exports.getMediaType = _chunkJRVRIKNMcjs.getMediaType; exports.getMonthFromDate = _chunkIVMOR5SWcjs.getMonthFromDate; exports.hasMembershipRole = _chunkMI4YBENQcjs.hasMembershipRole; exports.invoiceSchema = _chunkRC2BBT6Hcjs.invoiceSchema; exports.landingFeeSchema = _chunkRC2BBT6Hcjs.landingFeeSchema; exports.landingSchema = _chunkRC2BBT6Hcjs.landingSchema; exports.maintenanceEventEstimationSchema = _chunkRC2BBT6Hcjs.maintenanceEventEstimationSchema; exports.maintenanceEventSchema = _chunkRC2BBT6Hcjs.maintenanceEventSchema; exports.maintenanceStatusSchema = _chunkRC2BBT6Hcjs.maintenanceStatusSchema; exports.mapMediaConversions = _chunkJRVRIKNMcjs.mapMediaConversions; exports.mediaCollection = _chunkRC2BBT6Hcjs.mediaCollection; exports.mediaSchema = _chunkRC2BBT6Hcjs.mediaSchema; exports.membershipSchema = _chunkRC2BBT6Hcjs.membershipSchema; exports.membershipStatus = _chunkIVMOR5SWcjs.membershipStatus; exports.minutesFormatted = _chunkIVMOR5SWcjs.minutesFormatted; exports.money = _chunk2DRKSYW4cjs.money; exports.moneyFormatted = _chunk2DRKSYW4cjs.moneyFormatted; exports.monthString = _chunkIVMOR5SWcjs.monthString; exports.paginationMeta = _chunkHQSF3WGFcjs.paginationMeta; exports.parseCourse = _chunkLVTDNDWEcjs.parseCourse; exports.parseFee = _chunk2DRKSYW4cjs.parseFee; exports.parsePrice = _chunk2DRKSYW4cjs.parsePrice; exports.percentage = _chunkIVMOR5SWcjs.percentage; exports.postSchema = _chunkRC2BBT6Hcjs.postSchema; exports.prePaidPackageSchema = _chunkRC2BBT6Hcjs.prePaidPackageSchema; exports.priceSchema = _chunkRC2BBT6Hcjs.priceSchema; exports.qualificationSchema = _chunkRC2BBT6Hcjs.qualificationSchema; exports.recurringFlightSchema = _chunkRC2BBT6Hcjs.recurringFlightSchema; exports.roleSchema = _chunkRC2BBT6Hcjs.roleSchema; exports.runwaySchema = _chunkRC2BBT6Hcjs.runwaySchema; exports.scheduledFlightSchema = _chunkRC2BBT6Hcjs.scheduledFlightSchema; exports.settingSchema = _chunkRC2BBT6Hcjs.settingSchema; exports.specialFlightSchema = _chunkRC2BBT6Hcjs.specialFlightSchema; exports.tagSchema = _chunkRC2BBT6Hcjs.tagSchema; exports.ticketSchema = _chunkRC2BBT6Hcjs.ticketSchema; exports.timeDiffInDays = _chunkIVMOR5SWcjs.timeDiffInDays; exports.timeString = _chunkIVMOR5SWcjs.timeString; exports.timeUntil = _chunkIVMOR5SWcjs.timeUntil; exports.userAircraftRatingSchema = _chunkRC2BBT6Hcjs.userAircraftRatingSchema; exports.userQualificationSchema = _chunkRC2BBT6Hcjs.userQualificationSchema; exports.userSchema = _chunkRC2BBT6Hcjs.userSchema; exports.waypointSchema = _chunkRC2BBT6Hcjs.waypointSchema; exports.yearString = _chunkIVMOR5SWcjs.yearString; exports.zContactDTO = _chunkRC2BBT6Hcjs.zContactDTO; exports.zNetGross = _chunkRC2BBT6Hcjs.zNetGross; exports.zNullableBool = _chunkRC2BBT6Hcjs.zNullableBool; exports.zPhpMoneyObject = _chunkRC2BBT6Hcjs.zPhpMoneyObject;
375
+
376
+
377
+
378
+
379
+
380
+
381
+
382
+
383
+
384
+
385
+
386
+
387
+
388
+
389
+
390
+
391
+
392
+
393
+
394
+
395
+
396
+
397
+
398
+
399
+
400
+
401
+
402
+
403
+
404
+
405
+
406
+
407
+
408
+
409
+
410
+
411
+
412
+
413
+
414
+
415
+
416
+
417
+
418
+
419
+
420
+
421
+
422
+
423
+
424
+
425
+
426
+
427
+
428
+
429
+
430
+
431
+
432
+
433
+
434
+
435
+
436
+
437
+
438
+
439
+
440
+
441
+
442
+
443
+
444
+
445
+
446
+
447
+
448
+
449
+
450
+
451
+
452
+
453
+
454
+
455
+
456
+
457
+
458
+
459
+
460
+
461
+
462
+
463
+
464
+
465
+
466
+
467
+
468
+
469
+
470
+
471
+
472
+
473
+ exports.ALLOWED_GEOMETRY_TYPES = _chunkH4CJ2YEQcjs.ALLOWED_GEOMETRY_TYPES; exports.ALLOWED_NEWSLETTER_VARIABLES = _chunkH4CJ2YEQcjs.ALLOWED_NEWSLETTER_VARIABLES; exports.AllUsersBucketSchema = _chunkH4CJ2YEQcjs.AllUsersBucketSchema; exports.AttachSyllabusElementFormSchema = _chunkH4CJ2YEQcjs.AttachSyllabusElementFormSchema; exports.AudienceBucketSchema = _chunkH4CJ2YEQcjs.AudienceBucketSchema; exports.AudienceBucketType = _chunkH4CJ2YEQcjs.AudienceBucketType; exports.AvatarConversion = _chunkJRVRIKNMcjs.AvatarConversion; exports.BaseModel = _chunkH4CJ2YEQcjs.BaseModel; exports.ButtonBlockSchema = _chunkH4CJ2YEQcjs.ButtonBlockSchema; exports.CompanyUsersBucketSchema = _chunkH4CJ2YEQcjs.CompanyUsersBucketSchema; exports.CourseMilestoneFormSchema = _chunkH4CJ2YEQcjs.CourseMilestoneFormSchema; exports.CourseMilestoneKindEnum = _chunkH4CJ2YEQcjs.CourseMilestoneKindEnum; exports.CreateLocationMapFeatureSchema = _chunkH4CJ2YEQcjs.CreateLocationMapFeatureSchema; exports.CreateLocationMapSchema = _chunkH4CJ2YEQcjs.CreateLocationMapSchema; exports.CreateNewsletterCampaignInputSchema = _chunkH4CJ2YEQcjs.CreateNewsletterCampaignInputSchema; exports.CreateNewsletterTemplateInputSchema = _chunkH4CJ2YEQcjs.CreateNewsletterTemplateInputSchema; exports.CreateSyllabusFromTemplateFormSchema = _chunkH4CJ2YEQcjs.CreateSyllabusFromTemplateFormSchema; exports.DATE_FORMATS = _chunkIVMOR5SWcjs.DATE_FORMATS; exports.DividerBlockSchema = _chunkH4CJ2YEQcjs.DividerBlockSchema; exports.DocumentConversion = _chunkJRVRIKNMcjs.DocumentConversion; exports.EnrollmentTrainingStatusEnum = _chunkH4CJ2YEQcjs.EnrollmentTrainingStatusEnum; exports.FaqSchema = _chunkH4CJ2YEQcjs.FaqSchema; exports.FaqStatus = _chunkH4CJ2YEQcjs.FaqStatus; exports.FieldLabelSchema = _chunkH4CJ2YEQcjs.FieldLabelSchema; exports.FormFieldType = _chunkH4CJ2YEQcjs.FormFieldType; exports.FormSubmissionSchema = _chunkH4CJ2YEQcjs.FormSubmissionSchema; exports.FormSubmissionShareBaseSchema = _chunkH4CJ2YEQcjs.FormSubmissionShareBaseSchema; exports.FormSubmissionShareSchema = _chunkH4CJ2YEQcjs.FormSubmissionShareSchema; exports.FormSubmissionSource = _chunkH4CJ2YEQcjs.FormSubmissionSource; exports.FormSubmissionStatus = _chunkH4CJ2YEQcjs.FormSubmissionStatus; exports.FormTemplateAssignmentSchema = _chunkH4CJ2YEQcjs.FormTemplateAssignmentSchema; exports.FormTemplateSchema = _chunkH4CJ2YEQcjs.FormTemplateSchema; exports.GeometrySchema = _chunkH4CJ2YEQcjs.GeometrySchema; exports.GradingScaleFormSchema = _chunkH4CJ2YEQcjs.GradingScaleFormSchema; exports.HeaderConversion = _chunkJRVRIKNMcjs.HeaderConversion; exports.HeadingBlockSchema = _chunkH4CJ2YEQcjs.HeadingBlockSchema; exports.ImageConversion = _chunkJRVRIKNMcjs.ImageConversion; exports.ImportFeaturesSchema = _chunkH4CJ2YEQcjs.ImportFeaturesSchema; exports.LocationFeatureVisibility = _chunkH4CJ2YEQcjs.LocationFeatureVisibility; exports.LocationMapKind = _chunkH4CJ2YEQcjs.LocationMapKind; exports.MediaType = _chunkJRVRIKNMcjs.MediaType; exports.MimeTypes = _chunkJRVRIKNMcjs.MimeTypes; exports.NewsletterAudienceSchema = _chunkH4CJ2YEQcjs.NewsletterAudienceSchema; exports.NewsletterBlockSchema = _chunkH4CJ2YEQcjs.NewsletterBlockSchema; exports.NewsletterBlockType = _chunkH4CJ2YEQcjs.NewsletterBlockType; exports.NewsletterCampaignRecipientSchema = _chunkH4CJ2YEQcjs.NewsletterCampaignRecipientSchema; exports.NewsletterCampaignSchema = _chunkH4CJ2YEQcjs.NewsletterCampaignSchema; exports.NewsletterCampaignStatus = _chunkH4CJ2YEQcjs.NewsletterCampaignStatus; exports.NewsletterCategorySchema = _chunkH4CJ2YEQcjs.NewsletterCategorySchema; exports.NewsletterPreferenceRowSchema = _chunkH4CJ2YEQcjs.NewsletterPreferenceRowSchema; exports.NewsletterRecipientStatus = _chunkH4CJ2YEQcjs.NewsletterRecipientStatus; exports.NewsletterTemplateSchema = _chunkH4CJ2YEQcjs.NewsletterTemplateSchema; exports.NewsletterTemplateSchemaSchema = _chunkH4CJ2YEQcjs.NewsletterTemplateSchemaSchema; exports.ParagraphBlockSchema = _chunkH4CJ2YEQcjs.ParagraphBlockSchema; exports.ReorderSyllabusElementItemSchema = _chunkH4CJ2YEQcjs.ReorderSyllabusElementItemSchema; exports.RequiredFormSchema = _chunkH4CJ2YEQcjs.RequiredFormSchema; exports.RequiredFormViaCrewSchema = _chunkH4CJ2YEQcjs.RequiredFormViaCrewSchema; exports.RequiredFormViaSchema = _chunkH4CJ2YEQcjs.RequiredFormViaSchema; exports.ReviewFaqSchema = _chunkH4CJ2YEQcjs.ReviewFaqSchema; exports.RoleMembersBucketSchema = _chunkH4CJ2YEQcjs.RoleMembersBucketSchema; exports.SAFETY_REPORT_STATUS_COLORS = _chunkH4CJ2YEQcjs.SAFETY_REPORT_STATUS_COLORS; exports.SAFETY_REPORT_STATUS_LABELS = _chunkH4CJ2YEQcjs.SAFETY_REPORT_STATUS_LABELS; exports.SafetyReportCategoryFormSchema = _chunkH4CJ2YEQcjs.SafetyReportCategoryFormSchema; exports.SafetyReportCategorySchema = _chunkH4CJ2YEQcjs.SafetyReportCategorySchema; exports.SafetyReportFilterSchema = _chunkH4CJ2YEQcjs.SafetyReportFilterSchema; exports.SafetyReportFormSchema = _chunkH4CJ2YEQcjs.SafetyReportFormSchema; exports.SafetyReportListResponseSchema = _chunkH4CJ2YEQcjs.SafetyReportListResponseSchema; exports.SafetyReportMediaSchema = _chunkH4CJ2YEQcjs.SafetyReportMediaSchema; exports.SafetyReportSchema = _chunkH4CJ2YEQcjs.SafetyReportSchema; exports.SafetyReportStatusEnum = _chunkH4CJ2YEQcjs.SafetyReportStatusEnum; exports.SafetyReportSubmissionResponseSchema = _chunkH4CJ2YEQcjs.SafetyReportSubmissionResponseSchema; exports.SafetyReportUpdateSchema = _chunkH4CJ2YEQcjs.SafetyReportUpdateSchema; exports.SchemaFieldSchema = _chunkH4CJ2YEQcjs.SchemaFieldSchema; exports.SchemaSectionSchema = _chunkH4CJ2YEQcjs.SchemaSectionSchema; exports.ShowWhenSchema = _chunkH4CJ2YEQcjs.ShowWhenSchema; exports.SignOffTrainingElementFormSchema = _chunkH4CJ2YEQcjs.SignOffTrainingElementFormSchema; exports.SignatureSchema = _chunkH4CJ2YEQcjs.SignatureSchema; exports.StoreSyllabusFormSchema = _chunkH4CJ2YEQcjs.StoreSyllabusFormSchema; exports.SubmissionFileSchema = _chunkH4CJ2YEQcjs.SubmissionFileSchema; exports.SubmitFaqQuestionSchema = _chunkH4CJ2YEQcjs.SubmitFaqQuestionSchema; exports.SyllabusKindEnum = _chunkH4CJ2YEQcjs.SyllabusKindEnum; exports.TIME_FORMATS = _chunkIVMOR5SWcjs.TIME_FORMATS; exports.TemplateSchemaSchema = _chunkH4CJ2YEQcjs.TemplateSchemaSchema; exports.ThumbnailConversion = _chunkJRVRIKNMcjs.ThumbnailConversion; exports.TipTapNodeSchema = _chunkH4CJ2YEQcjs.TipTapNodeSchema; exports.TodoActionSchema = _chunkH4CJ2YEQcjs.TodoActionSchema; exports.TodoKey = _chunkH4CJ2YEQcjs.TodoKey; exports.TodoSchema = _chunkH4CJ2YEQcjs.TodoSchema; exports.TrainingElementFormSchema = _chunkH4CJ2YEQcjs.TrainingElementFormSchema; exports.TrainingElementKindEnum = _chunkH4CJ2YEQcjs.TrainingElementKindEnum; exports.TrainingRecordResultEnum = _chunkH4CJ2YEQcjs.TrainingRecordResultEnum; exports.TrainingRecordStatusEnum = _chunkH4CJ2YEQcjs.TrainingRecordStatusEnum; exports.UpdateLocationMapFeatureSchema = _chunkH4CJ2YEQcjs.UpdateLocationMapFeatureSchema; exports.UpdateLocationMapSchema = _chunkH4CJ2YEQcjs.UpdateLocationMapSchema; exports.UpdateSyllabusElementFormSchema = _chunkH4CJ2YEQcjs.UpdateSyllabusElementFormSchema; exports.UpdateSyllabusFormSchema = _chunkH4CJ2YEQcjs.UpdateSyllabusFormSchema; exports.UpsertTrainingRecordFormSchema = _chunkH4CJ2YEQcjs.UpsertTrainingRecordFormSchema; exports.ViewportSchema = _chunkH4CJ2YEQcjs.ViewportSchema; exports.activitySchema = _chunkH4CJ2YEQcjs.activitySchema; exports.addressSchema = _chunkH4CJ2YEQcjs.addressSchema; exports.aircraftPositionSchema = _chunkH4CJ2YEQcjs.aircraftPositionSchema; exports.aircraftRatingSchema = _chunkH4CJ2YEQcjs.aircraftRatingSchema; exports.airplaneIssueSchema = _chunkH4CJ2YEQcjs.airplaneIssueSchema; exports.airplaneIssueSeverityEnum = _chunkH4CJ2YEQcjs.airplaneIssueSeverityEnum; exports.airplaneIssueStatusEnum = _chunkH4CJ2YEQcjs.airplaneIssueStatusEnum; exports.airplanePermissionSchema = _chunkH4CJ2YEQcjs.airplanePermissionSchema; exports.airplaneSchema = _chunkH4CJ2YEQcjs.airplaneSchema; exports.airplaneShareInviteSchema = _chunkH4CJ2YEQcjs.airplaneShareInviteSchema; exports.airportSchema = _chunkH4CJ2YEQcjs.airportSchema; exports.alertSchema = _chunkH4CJ2YEQcjs.alertSchema; exports.allowedDocumentTypeSchema = _chunkH4CJ2YEQcjs.allowedDocumentTypeSchema; exports.approachTypeSchema = _chunkH4CJ2YEQcjs.approachTypeSchema; exports.availSchema = _chunkH4CJ2YEQcjs.availSchema; exports.baseMembershipSchema = _chunkH4CJ2YEQcjs.baseMembershipSchema; exports.bookingDuration = _chunkIVMOR5SWcjs.bookingDuration; exports.bookingSchema = _chunkH4CJ2YEQcjs.bookingSchema; exports.bookingWaypointSchema = _chunkH4CJ2YEQcjs.bookingWaypointSchema; exports.bytesToHuman = _chunkIVMOR5SWcjs.bytesToHuman; exports.canPreview = _chunkJRVRIKNMcjs.canPreview; exports.commentSchema = _chunkH4CJ2YEQcjs.commentSchema; exports.companyAudienceInclude = _chunkH4CJ2YEQcjs.companyAudienceInclude; exports.companySchema = _chunkH4CJ2YEQcjs.companySchema; exports.contactAttributeSchema = _chunkH4CJ2YEQcjs.contactAttributeSchema; exports.courseCheckSyllabusSchema = _chunkH4CJ2YEQcjs.courseCheckSyllabusSchema; exports.courseEnrollmentMetricsSchema = _chunkH4CJ2YEQcjs.courseEnrollmentMetricsSchema; exports.courseEnrollmentMilestoneSchema = _chunkH4CJ2YEQcjs.courseEnrollmentMilestoneSchema; exports.courseEnrollmentSchema = _chunkH4CJ2YEQcjs.courseEnrollmentSchema; exports.courseFeeSchema = _chunkH4CJ2YEQcjs.courseFeeSchema; exports.courseMilestoneSchema = _chunkH4CJ2YEQcjs.courseMilestoneSchema; exports.courseSchema = _chunkH4CJ2YEQcjs.courseSchema; exports.createCrewValidator = _chunkMI4YBENQcjs.createCrewValidator; exports.createSyllabusFromTemplateResultSchema = _chunkH4CJ2YEQcjs.createSyllabusFromTemplateResultSchema; exports.crewObjectToString = _chunkIVMOR5SWcjs.crewObjectToString; exports.dateString = _chunkIVMOR5SWcjs.dateString; exports.dateTimeString = _chunkIVMOR5SWcjs.dateTimeString; exports.dayString = _chunkIVMOR5SWcjs.dayString; exports.defaultCrewRoleForMembership = _chunkMI4YBENQcjs.defaultCrewRoleForMembership; exports.displayFee = _chunk2DRKSYW4cjs.displayFee; exports.documentComplianceStatus = _chunkH4CJ2YEQcjs.documentComplianceStatus; exports.documentRequirement = _chunkH4CJ2YEQcjs.documentRequirement; exports.documentRequirementGroup = _chunkH4CJ2YEQcjs.documentRequirementGroup; exports.documentRequirementGroupAssignment = _chunkH4CJ2YEQcjs.documentRequirementGroupAssignment; exports.documentSchema = _chunkH4CJ2YEQcjs.documentSchema; exports.documentShareSchema = _chunkH4CJ2YEQcjs.documentShareSchema; exports.documentType = _chunkH4CJ2YEQcjs.documentType; exports.enrollmentTrainingElementSchema = _chunkH4CJ2YEQcjs.enrollmentTrainingElementSchema; exports.equipmentSchema = _chunkH4CJ2YEQcjs.equipmentSchema; exports.eventSchema = _chunkH4CJ2YEQcjs.eventSchema; exports.expenseItemSchema = _chunkH4CJ2YEQcjs.expenseItemSchema; exports.expenseSchema = _chunkH4CJ2YEQcjs.expenseSchema; exports.extendedAirplaneSchema = _chunkH4CJ2YEQcjs.extendedAirplaneSchema; exports.feeCategoryOptionsSchema = _chunkH4CJ2YEQcjs.feeCategoryOptionsSchema; exports.feeSchema = _chunkH4CJ2YEQcjs.feeSchema; exports.flightLogSchema = _chunkH4CJ2YEQcjs.flightLogSchema; exports.formatDate = _chunkIVMOR5SWcjs.formatDate; exports.formatDateTime = _chunkIVMOR5SWcjs.formatDateTime; exports.formatTime = _chunkIVMOR5SWcjs.formatTime; exports.formatToEuroString = _chunk2DRKSYW4cjs.formatToEuroString; exports.fromCents = _chunk2DRKSYW4cjs.fromCents; exports.getDocumentIcon = _chunkJRVRIKNMcjs.getDocumentIcon; exports.getMediaDisplayName = _chunkJRVRIKNMcjs.getMediaDisplayName; exports.getMediaIcon = _chunkJRVRIKNMcjs.getMediaIcon; exports.getMediaType = _chunkJRVRIKNMcjs.getMediaType; exports.getMonthFromDate = _chunkIVMOR5SWcjs.getMonthFromDate; exports.gradeHistoryItemSchema = _chunkH4CJ2YEQcjs.gradeHistoryItemSchema; exports.gradingScalePointSchema = _chunkH4CJ2YEQcjs.gradingScalePointSchema; exports.gradingScaleSchema = _chunkH4CJ2YEQcjs.gradingScaleSchema; exports.hasMembershipRole = _chunkMI4YBENQcjs.hasMembershipRole; exports.impersonationParticipantSchema = _chunkH4CJ2YEQcjs.impersonationParticipantSchema; exports.impersonationStateSchema = _chunkH4CJ2YEQcjs.impersonationStateSchema; exports.invoiceSchema = _chunkH4CJ2YEQcjs.invoiceSchema; exports.landingFeeSchema = _chunkH4CJ2YEQcjs.landingFeeSchema; exports.landingSchema = _chunkH4CJ2YEQcjs.landingSchema; exports.maintenanceEventEstimationSchema = _chunkH4CJ2YEQcjs.maintenanceEventEstimationSchema; exports.maintenanceEventSchema = _chunkH4CJ2YEQcjs.maintenanceEventSchema; exports.maintenanceStatusSchema = _chunkH4CJ2YEQcjs.maintenanceStatusSchema; exports.mapMediaConversions = _chunkJRVRIKNMcjs.mapMediaConversions; exports.mediaCollection = _chunkH4CJ2YEQcjs.mediaCollection; exports.mediaSchema = _chunkH4CJ2YEQcjs.mediaSchema; exports.membershipSchema = _chunkH4CJ2YEQcjs.membershipSchema; exports.membershipSignupSchema = _chunkH4CJ2YEQcjs.membershipSignupSchema; exports.membershipStatus = _chunkIVMOR5SWcjs.membershipStatus; exports.minutesFormatted = _chunkIVMOR5SWcjs.minutesFormatted; exports.money = _chunk2DRKSYW4cjs.money; exports.moneyFormatted = _chunk2DRKSYW4cjs.moneyFormatted; exports.monthString = _chunkIVMOR5SWcjs.monthString; exports.paginationMeta = _chunkHQSF3WGFcjs.paginationMeta; exports.parseCourse = _chunkLVTDNDWEcjs.parseCourse; exports.parseFee = _chunk2DRKSYW4cjs.parseFee; exports.parsePrice = _chunk2DRKSYW4cjs.parsePrice; exports.percentage = _chunkIVMOR5SWcjs.percentage; exports.postSchema = _chunkH4CJ2YEQcjs.postSchema; exports.prePaidPackageSchema = _chunkH4CJ2YEQcjs.prePaidPackageSchema; exports.priceSchema = _chunkH4CJ2YEQcjs.priceSchema; exports.qualificationSchema = _chunkH4CJ2YEQcjs.qualificationSchema; exports.recurringFlightSchema = _chunkH4CJ2YEQcjs.recurringFlightSchema; exports.roleSchema = _chunkH4CJ2YEQcjs.roleSchema; exports.runwaySchema = _chunkH4CJ2YEQcjs.runwaySchema; exports.scheduledFlightSchema = _chunkH4CJ2YEQcjs.scheduledFlightSchema; exports.settingSchema = _chunkH4CJ2YEQcjs.settingSchema; exports.specialFlightSchema = _chunkH4CJ2YEQcjs.specialFlightSchema; exports.syllabusElementMutationResultSchema = _chunkH4CJ2YEQcjs.syllabusElementMutationResultSchema; exports.syllabusElementSchema = _chunkH4CJ2YEQcjs.syllabusElementSchema; exports.syllabusRolloutResultItemSchema = _chunkH4CJ2YEQcjs.syllabusRolloutResultItemSchema; exports.syllabusRolloutResultSchema = _chunkH4CJ2YEQcjs.syllabusRolloutResultSchema; exports.syllabusRolloutSkippedItemSchema = _chunkH4CJ2YEQcjs.syllabusRolloutSkippedItemSchema; exports.syllabusSchema = _chunkH4CJ2YEQcjs.syllabusSchema; exports.tagSchema = _chunkH4CJ2YEQcjs.tagSchema; exports.ticketSchema = _chunkH4CJ2YEQcjs.ticketSchema; exports.timeDiffInDays = _chunkIVMOR5SWcjs.timeDiffInDays; exports.timeString = _chunkIVMOR5SWcjs.timeString; exports.timeUntil = _chunkIVMOR5SWcjs.timeUntil; exports.trainingElementSchema = _chunkH4CJ2YEQcjs.trainingElementSchema; exports.trainingRecordEntryInputSchema = _chunkH4CJ2YEQcjs.trainingRecordEntryInputSchema; exports.trainingRecordEntrySchema = _chunkH4CJ2YEQcjs.trainingRecordEntrySchema; exports.trainingRecordSchema = _chunkH4CJ2YEQcjs.trainingRecordSchema; exports.trainingSignatureSchema = _chunkH4CJ2YEQcjs.trainingSignatureSchema; exports.trainingTemplatePackSchema = _chunkH4CJ2YEQcjs.trainingTemplatePackSchema; exports.usedByCourseSchema = _chunkH4CJ2YEQcjs.usedByCourseSchema; exports.userAircraftRatingSchema = _chunkH4CJ2YEQcjs.userAircraftRatingSchema; exports.userQualificationSchema = _chunkH4CJ2YEQcjs.userQualificationSchema; exports.userSchema = _chunkH4CJ2YEQcjs.userSchema; exports.waypointSchema = _chunkH4CJ2YEQcjs.waypointSchema; exports.yearString = _chunkIVMOR5SWcjs.yearString; exports.zContactDTO = _chunkH4CJ2YEQcjs.zContactDTO; exports.zNetGross = _chunkH4CJ2YEQcjs.zNetGross; exports.zNullableBool = _chunkH4CJ2YEQcjs.zNullableBool; exports.zPhpMoneyObject = _chunkH4CJ2YEQcjs.zPhpMoneyObject;
package/dist/index.d.cts CHANGED
@@ -1,6 +1,6 @@
1
- export { B as BaseModel, a as addressSchema, b as aircraftRatingSchema, c as airplaneIssueSchema, d as airplaneIssueSeverityEnum, e as airplaneIssueStatusEnum, f as airplanePermissionSchema, g as airplaneSchema, h as airplaneShareInviteSchema, i as airportSchema, j as alertSchema, k as allowedDocumentTypeSchema, l as approachTypeSchema, m as availSchema, n as baseMembershipSchema, o as bookingSchema, p as bookingWaypointSchema, q as commentSchema, r as companySchema, s as contactAttributeSchema, t as courseCheckSyllabusSchema, u as courseEnrollmentMetricsSchema, v as courseEnrollmentSchema, w as courseFeeSchema, x as courseSchema, y as documentComplianceStatus, z as documentRequirement, A as documentRequirementGroup, C as documentRequirementGroupAssignment, D as documentSchema, E as documentShareSchema, F as documentType, G as eventSchema, H as expenseItemSchema, I as expenseSchema, J as extendedAirplaneSchema, K as feeSchema, L as flightLogSchema, M as invoiceSchema, N as landingFeeSchema, O as landingSchema, P as maintenanceEventEstimationSchema, Q as maintenanceEventSchema, R as maintenanceStatusSchema, S as mediaCollection, T as mediaSchema, U as membershipSchema, V as postSchema, W as prePaidPackageSchema, X as priceSchema, Y as qualificationSchema, Z as recurringFlightSchema, _ as roleSchema, $ as runwaySchema, a0 as scheduledFlightSchema, a1 as settingSchema, a2 as specialFlightSchema, a3 as tagSchema, a4 as ticketSchema, a5 as userAircraftRatingSchema, a6 as userQualificationSchema, a7 as userSchema, a8 as waypointSchema, a9 as zContactDTO, aa as zNetGross, ab as zNullableBool, ac as zPhpMoneyObject } from './models-Bc5BKYuI.cjs';
2
- export { AircraftUtilization, BookingsData, CompanyDevelopmentReportData, CreateFaqInput, ExpenseData, Faq, FaqSchema, FaqStatus, Fee, FeeCategoryOptions, FeeCategoryOptionsSchema, FeeSchema, FinancialReportData, FinancialSummaryData, FlightHoursData, InstructorData, InstructorEfficiencyReportData, InstructorSummaryData, InvoiceData, LandingsData, Media, MemberActivityData, OperationalReportData, PeriodData, PrepaidPackageData, Report, ReportData, ReportGenerationParams, ReportGenerationResponse, ReportGranularity, ReportListItem, ReportMedia, ReportMetadata, ReportParameters, ReportStatus, ReportStatusResponse, ReportType, RevenueData, ReviewFaqInput, ReviewFaqSchema, SAFETY_REPORT_STATUS_COLORS, SAFETY_REPORT_STATUS_LABELS, SafetyReport, SafetyReportCategory, SafetyReportCategoryForm, SafetyReportCategoryFormSchema, SafetyReportCategorySchema, SafetyReportFilter, SafetyReportFilterSchema, SafetyReportForm, SafetyReportFormSchema, SafetyReportListResponse, SafetyReportListResponseSchema, SafetyReportMedia, SafetyReportMediaSchema, SafetyReportSchema, SafetyReportStatus, SafetyReportStatusEnum, SafetyReportSubmissionResponse, SafetyReportSubmissionResponseSchema, SafetyReportUpdate, SafetyReportUpdateSchema, SubmitFaqQuestionInput, SubmitFaqQuestionSchema, UpdateFaqInput } from './schemas/index.cjs';
3
- export { Address, AircraftRating, Airplane, AirplanePermission, AirplaneShareInvite, Airport, Alert, AllowedDocumentType, ApproachType, Avail, BaseMembership, Booking, Comment, Company, ComplianceData, ComplianceGroup, ComplianceRequirement, ComplianceRequirementGroup, ComplianceResponse, ComplianceSummary, Course, CourseEnrollment, CourseFee, CreateCommentInput, DataWrappedResponse, Document, DocumentComplianceStatus, DocumentRequirement, DocumentRequirementGroup, DocumentRequirementGroupAssignment, DocumentShare, DocumentType, Event, Expense, ExpenseItem, ExtendedAirplane, FlightLog, Invoice, Landing, LandingFee, MaintenanceEvent, MaintenanceEventEstimation, MaintenanceStatus, MediaCollection, Membership, PaginatedResponse, Post, PrePaidPackage, Price, Qualification, RecurringFlight, Resource, Role, Runway, ScheduledFlight, Setting, SpecialFlight, Ticket, ToggleFavoriteResponse, UpdateCommentInput, User, UserAircraftRating, UserQualification, Waypoint } from './types/index.cjs';
1
+ export { A as AttachSyllabusElementForm, a as AttachSyllabusElementFormSchema, B as BaseModel, C as CourseCheckSyllabus, b as CreateFormSubmissionInput, c as CreateFormTemplateAssignmentInput, d as CreateFormTemplateInput, e as CreateSyllabusFromTemplateForm, f as CreateSyllabusFromTemplateFormSchema, g as CreateSyllabusFromTemplateResult, E as EnrollmentTrainingElement, h as EnrollmentTrainingStatus, i as EnrollmentTrainingStatusEnum, F as FieldLabel, j as FieldLabelSchema, k as FormFieldType, l as FormSubmission, m as FormSubmissionSchema, n as FormSubmissionShare, o as FormSubmissionShareBase, p as FormSubmissionShareBaseSchema, q as FormSubmissionShareSchema, r as FormSubmissionSource, s as FormSubmissionStatus, t as FormTemplate, u as FormTemplateAssignment, v as FormTemplateAssignmentSchema, w as FormTemplateSchema, G as GradeHistoryItem, x as GradingScale, y as GradingScaleForm, z as GradingScaleFormSchema, D as GradingScalePoint, I as ImpersonationParticipant, H as ImpersonationState, R as ReorderSyllabusElementItem, J as ReorderSyllabusElementItemSchema, K as RequiredForm, L as RequiredFormSchema, M as RequiredFormVia, N as RequiredFormViaCrew, O as RequiredFormViaCrewSchema, P as RequiredFormViaSchema, Q as ReviewFormSubmissionInput, S as SchemaField, T as SchemaFieldSchema, U as SchemaSection, V as SchemaSectionSchema, W as ShowWhen, X as ShowWhenSchema, Y as SignOffTrainingElementForm, Z as SignOffTrainingElementFormSchema, _ as Signature, $ as SignatureSchema, a0 as StoreSyllabusForm, a1 as StoreSyllabusFormSchema, a2 as SubmissionFile, a3 as SubmissionFileSchema, a4 as Syllabus, a5 as SyllabusElement, a6 as SyllabusElementMutationResult, a7 as SyllabusKind, a8 as SyllabusKindEnum, a9 as SyllabusRolloutResult, aa as SyllabusRolloutResultItem, ab as SyllabusRolloutSkippedItem, ac as TemplateSchema, ad as TemplateSchemaSchema, ae as TrainingElement, af as TrainingElementForm, ag as TrainingElementFormSchema, ah as TrainingElementKind, ai as TrainingElementKindEnum, aj as TrainingRecord, ak as TrainingRecordEntry, al as TrainingRecordEntryInput, am as TrainingRecordResult, an as TrainingRecordResultEnum, ao as TrainingRecordStatus, ap as TrainingRecordStatusEnum, aq as TrainingSignature, ar as TrainingTemplatePack, as as UpdateFormTemplateInput, at as UpdateSyllabusElementForm, au as UpdateSyllabusElementFormSchema, av as UpdateSyllabusForm, aw as UpdateSyllabusFormSchema, ax as UpsertTrainingRecordForm, ay as UpsertTrainingRecordFormSchema, az as UsedByCourse, aA as activitySchema, aB as addressSchema, aC as aircraftPositionSchema, aD as aircraftRatingSchema, aE as airplaneIssueSchema, aF as airplaneIssueSeverityEnum, aG as airplaneIssueStatusEnum, aH as airplanePermissionSchema, aI as airplaneSchema, aJ as airplaneShareInviteSchema, aK as airportSchema, aL as alertSchema, aM as allowedDocumentTypeSchema, aN as approachTypeSchema, aO as availSchema, aP as baseMembershipSchema, aQ as bookingSchema, aR as bookingWaypointSchema, aS as commentSchema, aT as companySchema, aU as contactAttributeSchema, aV as courseCheckSyllabusSchema, aW as courseEnrollmentMetricsSchema, aX as courseEnrollmentSchema, aY as courseFeeSchema, aZ as courseSchema, a_ as createSyllabusFromTemplateResultSchema, a$ as documentComplianceStatus, b0 as documentRequirement, b1 as documentRequirementGroup, b2 as documentRequirementGroupAssignment, b3 as documentSchema, b4 as documentShareSchema, b5 as documentType, b6 as enrollmentTrainingElementSchema, b7 as eventSchema, b8 as expenseItemSchema, b9 as expenseSchema, ba as extendedAirplaneSchema, bb as feeCategoryOptionsSchema, bc as feeSchema, bd as flightLogSchema, be as gradeHistoryItemSchema, bf as gradingScalePointSchema, bg as gradingScaleSchema, bh as impersonationParticipantSchema, bi as impersonationStateSchema, bj as invoiceSchema, bk as landingFeeSchema, bl as landingSchema, bm as maintenanceEventEstimationSchema, bn as maintenanceEventSchema, bo as maintenanceStatusSchema, bp as mediaCollection, bq as mediaSchema, br as membershipSchema, bs as membershipSignupSchema, bt as postSchema, bu as prePaidPackageSchema, bv as priceSchema, bw as qualificationSchema, bx as recurringFlightSchema, by as roleSchema, bz as runwaySchema, bA as scheduledFlightSchema, bB as settingSchema, bC as specialFlightSchema, bD as syllabusElementMutationResultSchema, bE as syllabusElementSchema, bF as syllabusRolloutResultItemSchema, bG as syllabusRolloutResultSchema, bH as syllabusRolloutSkippedItemSchema, bI as syllabusSchema, bJ as tagSchema, bK as ticketSchema, bL as trainingElementSchema, bM as trainingRecordEntryInputSchema, bN as trainingRecordEntrySchema, bO as trainingRecordSchema, bP as trainingSignatureSchema, bQ as trainingTemplatePackSchema, bR as usedByCourseSchema, bS as userAircraftRatingSchema, bT as userQualificationSchema, bU as userSchema, bV as waypointSchema, bW as zContactDTO, bX as zNetGross, bY as zNullableBool, bZ as zPhpMoneyObject } from './training-C9rIBUeV.cjs';
2
+ export { ALLOWED_GEOMETRY_TYPES, ALLOWED_NEWSLETTER_VARIABLES, AircraftUtilization, AllUsersBucketSchema, AllowedGeometryType, AllowedNewsletterVariable, AudienceBucket, AudienceBucketSchema, AudienceBucketType, BookingsData, ButtonBlock, ButtonBlockSchema, CompanyDevelopmentReportData, CompanyUsersBucketSchema, CourseEnrollmentMilestone, CourseMilestone, CourseMilestoneForm, CourseMilestoneFormSchema, CourseMilestoneKind, CourseMilestoneKindEnum, CreateFaqInput, CreateLocationMapFeatureInput, CreateLocationMapFeatureSchema, CreateLocationMapInput, CreateLocationMapSchema, CreateNewsletterCampaignInput, CreateNewsletterCampaignInputSchema, CreateNewsletterTemplateInput, CreateNewsletterTemplateInputSchema, DividerBlock, DividerBlockSchema, Equipment, EquipmentEntry, ExpenseData, Faq, FaqSchema, FaqStatus, FinancialReportData, FinancialSummaryData, FlightHoursData, GeoJsonFeature, GeoJsonFeatureCollection, GeoJsonGeometry, GeometrySchema, HeadingBlock, HeadingBlockSchema, ImportFeaturesInput, ImportFeaturesSchema, InstructorData, InstructorEfficiencyReportData, InstructorSummaryData, InvoiceData, LandingsData, LocationFeatureVisibility, LocationMap, LocationMapFeature, LocationMapFeatureGeoJson, LocationMapGeoJson, LocationMapGeoJsonProperties, LocationMapKind, Media, MemberActivityData, NewsletterAudience, NewsletterAudienceSchema, NewsletterBlock, NewsletterBlockSchema, NewsletterBlockType, NewsletterCampaign, NewsletterCampaignRecipient, NewsletterCampaignRecipientSchema, NewsletterCampaignSchema, NewsletterCampaignStatus, NewsletterCategory, NewsletterCategorySchema, NewsletterPreferenceRow, NewsletterPreferenceRowSchema, NewsletterRecipientStatus, NewsletterTemplate, NewsletterTemplateDoc, NewsletterTemplateSchema, NewsletterTemplateSchemaSchema, OperationalReportData, ParagraphBlock, ParagraphBlockSchema, PeriodData, PrepaidPackageData, Report, ReportData, ReportGenerationParams, ReportGenerationResponse, ReportGranularity, ReportListItem, ReportMedia, ReportMetadata, ReportParameters, ReportStatus, ReportStatusResponse, ReportType, RevenueData, ReviewFaqInput, ReviewFaqSchema, RoleMembersBucketSchema, SAFETY_REPORT_STATUS_COLORS, SAFETY_REPORT_STATUS_LABELS, SafetyReport, SafetyReportCategory, SafetyReportCategoryForm, SafetyReportCategoryFormSchema, SafetyReportCategorySchema, SafetyReportFilter, SafetyReportFilterSchema, SafetyReportForm, SafetyReportFormSchema, SafetyReportListResponse, SafetyReportListResponseSchema, SafetyReportMedia, SafetyReportMediaSchema, SafetyReportSchema, SafetyReportStatus, SafetyReportStatusEnum, SafetyReportSubmissionResponse, SafetyReportSubmissionResponseSchema, SafetyReportUpdate, SafetyReportUpdateSchema, SubmitFaqQuestionInput, SubmitFaqQuestionSchema, TipTapNode, TipTapNodeSchema, Todo, TodoAcceptedAlternative, TodoAction, TodoActionSchema, TodoKey, TodoSchema, UpdateFaqInput, UpdateLocationMapFeatureInput, UpdateLocationMapFeatureSchema, UpdateLocationMapInput, UpdateLocationMapSchema, UpdateNewsletterCampaignInput, UpdateNewsletterTemplateInput, Viewport, ViewportSchema, companyAudienceInclude, courseEnrollmentMilestoneSchema, courseMilestoneSchema, equipmentSchema } from './schemas/index.cjs';
3
+ export { Activity, Address, AiSuggestedMilestone, AiSuggestion, AiSuggestionStatus, AircraftBlock, AircraftBlockReason, AircraftPosition, AircraftRating, Airplane, AirplanePermission, AirplaneShareInvite, Airport, Alert, AllowedDocumentType, ApiResponse, ApproachType, Avail, BackgroundTask, BackgroundTaskStatus, BaseMembership, Booking, Comment, Company, ComplianceData, ComplianceGroup, ComplianceGroupSource, ComplianceRequirement, ComplianceRequirementGroup, ComplianceResponse, ComplianceSummary, Course, CourseDescriptionSuggestionPayload, CourseEnrollment, CourseFee, CreateAirplaneIssueInput, CreateCommentInput, CreatePostInput, DataWrappedResponse, DeferAirplaneIssueInput, DiscardedRow, Document, DocumentComplianceStatus, DocumentRequirement, DocumentRequirementGroup, DocumentRequirementGroupAssignment, DocumentShare, DocumentType, Event, Expense, ExpenseItem, ExtendedAirplane, Fee, FeeCategoryOptions, FlightLog, GroupedPermissions, Invoice, Landing, LandingFee, LandingFeeImportResult, LandingFeeInvoiceApplyPayload, LandingFeeInvoiceApplyResult, LandingFeeInvoicePreview, LandingFeeInvoicePreviewRow, LandingFeeTemplateParams, LogbookFlightLogPayload, LogbookStageResult, LogbookSuggestion, LogbookSuggestionMeta, MaintenanceEvent, MaintenanceEventEstimation, MaintenanceStatus, MediaCollection, Membership, MembershipSignup, PaginatedResponse, PermissionItem, Post, PrePaidPackage, Price, Qualification, RecurringFlight, ResolveAirplaneIssueInput, Resource, Role, RoleDetail, RoleListItem, Runway, ScheduledFlight, Setting, SpecialFlight, Tag, Ticket, ToggleFavoriteResponse, UpdateAirplaneIssueInput, UpdateCommentInput, UpdatePostInput, User, UserAircraftRating, UserQualification, Waypoint } from './types/index.cjs';
4
4
  export { FeeLike, NetGross, ParsedFee, ParsedPrice, PhpMoneyObject, PriceLike, displayFee, formatToEuroString, fromCents, money, moneyFormatted, parseFee, parsePrice } from './money/index.cjs';
5
5
  export { CourseFeeLike, CourseLike, CourseVariant, ParsedCourse, ParsedCourseFee, parseCourse } from './courses/index.cjs';
6
6
  export { BookingTimespan, CrewMember, DATE_FORMATS, DateFormat, MembershipStatusBadge, TIME_FORMATS, TimeFormat, bookingDuration, bytesToHuman, crewObjectToString, dateString, dateTimeString, dayString, formatDate, formatDateTime, formatTime, getMonthFromDate, membershipStatus, minutesFormatted, monthString, percentage, timeDiffInDays, timeString, timeUntil, yearString } from './format/index.cjs';
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- export { B as BaseModel, a as addressSchema, b as aircraftRatingSchema, c as airplaneIssueSchema, d as airplaneIssueSeverityEnum, e as airplaneIssueStatusEnum, f as airplanePermissionSchema, g as airplaneSchema, h as airplaneShareInviteSchema, i as airportSchema, j as alertSchema, k as allowedDocumentTypeSchema, l as approachTypeSchema, m as availSchema, n as baseMembershipSchema, o as bookingSchema, p as bookingWaypointSchema, q as commentSchema, r as companySchema, s as contactAttributeSchema, t as courseCheckSyllabusSchema, u as courseEnrollmentMetricsSchema, v as courseEnrollmentSchema, w as courseFeeSchema, x as courseSchema, y as documentComplianceStatus, z as documentRequirement, A as documentRequirementGroup, C as documentRequirementGroupAssignment, D as documentSchema, E as documentShareSchema, F as documentType, G as eventSchema, H as expenseItemSchema, I as expenseSchema, J as extendedAirplaneSchema, K as feeSchema, L as flightLogSchema, M as invoiceSchema, N as landingFeeSchema, O as landingSchema, P as maintenanceEventEstimationSchema, Q as maintenanceEventSchema, R as maintenanceStatusSchema, S as mediaCollection, T as mediaSchema, U as membershipSchema, V as postSchema, W as prePaidPackageSchema, X as priceSchema, Y as qualificationSchema, Z as recurringFlightSchema, _ as roleSchema, $ as runwaySchema, a0 as scheduledFlightSchema, a1 as settingSchema, a2 as specialFlightSchema, a3 as tagSchema, a4 as ticketSchema, a5 as userAircraftRatingSchema, a6 as userQualificationSchema, a7 as userSchema, a8 as waypointSchema, a9 as zContactDTO, aa as zNetGross, ab as zNullableBool, ac as zPhpMoneyObject } from './models-Bc5BKYuI.js';
2
- export { AircraftUtilization, BookingsData, CompanyDevelopmentReportData, CreateFaqInput, ExpenseData, Faq, FaqSchema, FaqStatus, Fee, FeeCategoryOptions, FeeCategoryOptionsSchema, FeeSchema, FinancialReportData, FinancialSummaryData, FlightHoursData, InstructorData, InstructorEfficiencyReportData, InstructorSummaryData, InvoiceData, LandingsData, Media, MemberActivityData, OperationalReportData, PeriodData, PrepaidPackageData, Report, ReportData, ReportGenerationParams, ReportGenerationResponse, ReportGranularity, ReportListItem, ReportMedia, ReportMetadata, ReportParameters, ReportStatus, ReportStatusResponse, ReportType, RevenueData, ReviewFaqInput, ReviewFaqSchema, SAFETY_REPORT_STATUS_COLORS, SAFETY_REPORT_STATUS_LABELS, SafetyReport, SafetyReportCategory, SafetyReportCategoryForm, SafetyReportCategoryFormSchema, SafetyReportCategorySchema, SafetyReportFilter, SafetyReportFilterSchema, SafetyReportForm, SafetyReportFormSchema, SafetyReportListResponse, SafetyReportListResponseSchema, SafetyReportMedia, SafetyReportMediaSchema, SafetyReportSchema, SafetyReportStatus, SafetyReportStatusEnum, SafetyReportSubmissionResponse, SafetyReportSubmissionResponseSchema, SafetyReportUpdate, SafetyReportUpdateSchema, SubmitFaqQuestionInput, SubmitFaqQuestionSchema, UpdateFaqInput } from './schemas/index.js';
3
- export { Address, AircraftRating, Airplane, AirplanePermission, AirplaneShareInvite, Airport, Alert, AllowedDocumentType, ApproachType, Avail, BaseMembership, Booking, Comment, Company, ComplianceData, ComplianceGroup, ComplianceRequirement, ComplianceRequirementGroup, ComplianceResponse, ComplianceSummary, Course, CourseEnrollment, CourseFee, CreateCommentInput, DataWrappedResponse, Document, DocumentComplianceStatus, DocumentRequirement, DocumentRequirementGroup, DocumentRequirementGroupAssignment, DocumentShare, DocumentType, Event, Expense, ExpenseItem, ExtendedAirplane, FlightLog, Invoice, Landing, LandingFee, MaintenanceEvent, MaintenanceEventEstimation, MaintenanceStatus, MediaCollection, Membership, PaginatedResponse, Post, PrePaidPackage, Price, Qualification, RecurringFlight, Resource, Role, Runway, ScheduledFlight, Setting, SpecialFlight, Ticket, ToggleFavoriteResponse, UpdateCommentInput, User, UserAircraftRating, UserQualification, Waypoint } from './types/index.js';
1
+ export { A as AttachSyllabusElementForm, a as AttachSyllabusElementFormSchema, B as BaseModel, C as CourseCheckSyllabus, b as CreateFormSubmissionInput, c as CreateFormTemplateAssignmentInput, d as CreateFormTemplateInput, e as CreateSyllabusFromTemplateForm, f as CreateSyllabusFromTemplateFormSchema, g as CreateSyllabusFromTemplateResult, E as EnrollmentTrainingElement, h as EnrollmentTrainingStatus, i as EnrollmentTrainingStatusEnum, F as FieldLabel, j as FieldLabelSchema, k as FormFieldType, l as FormSubmission, m as FormSubmissionSchema, n as FormSubmissionShare, o as FormSubmissionShareBase, p as FormSubmissionShareBaseSchema, q as FormSubmissionShareSchema, r as FormSubmissionSource, s as FormSubmissionStatus, t as FormTemplate, u as FormTemplateAssignment, v as FormTemplateAssignmentSchema, w as FormTemplateSchema, G as GradeHistoryItem, x as GradingScale, y as GradingScaleForm, z as GradingScaleFormSchema, D as GradingScalePoint, I as ImpersonationParticipant, H as ImpersonationState, R as ReorderSyllabusElementItem, J as ReorderSyllabusElementItemSchema, K as RequiredForm, L as RequiredFormSchema, M as RequiredFormVia, N as RequiredFormViaCrew, O as RequiredFormViaCrewSchema, P as RequiredFormViaSchema, Q as ReviewFormSubmissionInput, S as SchemaField, T as SchemaFieldSchema, U as SchemaSection, V as SchemaSectionSchema, W as ShowWhen, X as ShowWhenSchema, Y as SignOffTrainingElementForm, Z as SignOffTrainingElementFormSchema, _ as Signature, $ as SignatureSchema, a0 as StoreSyllabusForm, a1 as StoreSyllabusFormSchema, a2 as SubmissionFile, a3 as SubmissionFileSchema, a4 as Syllabus, a5 as SyllabusElement, a6 as SyllabusElementMutationResult, a7 as SyllabusKind, a8 as SyllabusKindEnum, a9 as SyllabusRolloutResult, aa as SyllabusRolloutResultItem, ab as SyllabusRolloutSkippedItem, ac as TemplateSchema, ad as TemplateSchemaSchema, ae as TrainingElement, af as TrainingElementForm, ag as TrainingElementFormSchema, ah as TrainingElementKind, ai as TrainingElementKindEnum, aj as TrainingRecord, ak as TrainingRecordEntry, al as TrainingRecordEntryInput, am as TrainingRecordResult, an as TrainingRecordResultEnum, ao as TrainingRecordStatus, ap as TrainingRecordStatusEnum, aq as TrainingSignature, ar as TrainingTemplatePack, as as UpdateFormTemplateInput, at as UpdateSyllabusElementForm, au as UpdateSyllabusElementFormSchema, av as UpdateSyllabusForm, aw as UpdateSyllabusFormSchema, ax as UpsertTrainingRecordForm, ay as UpsertTrainingRecordFormSchema, az as UsedByCourse, aA as activitySchema, aB as addressSchema, aC as aircraftPositionSchema, aD as aircraftRatingSchema, aE as airplaneIssueSchema, aF as airplaneIssueSeverityEnum, aG as airplaneIssueStatusEnum, aH as airplanePermissionSchema, aI as airplaneSchema, aJ as airplaneShareInviteSchema, aK as airportSchema, aL as alertSchema, aM as allowedDocumentTypeSchema, aN as approachTypeSchema, aO as availSchema, aP as baseMembershipSchema, aQ as bookingSchema, aR as bookingWaypointSchema, aS as commentSchema, aT as companySchema, aU as contactAttributeSchema, aV as courseCheckSyllabusSchema, aW as courseEnrollmentMetricsSchema, aX as courseEnrollmentSchema, aY as courseFeeSchema, aZ as courseSchema, a_ as createSyllabusFromTemplateResultSchema, a$ as documentComplianceStatus, b0 as documentRequirement, b1 as documentRequirementGroup, b2 as documentRequirementGroupAssignment, b3 as documentSchema, b4 as documentShareSchema, b5 as documentType, b6 as enrollmentTrainingElementSchema, b7 as eventSchema, b8 as expenseItemSchema, b9 as expenseSchema, ba as extendedAirplaneSchema, bb as feeCategoryOptionsSchema, bc as feeSchema, bd as flightLogSchema, be as gradeHistoryItemSchema, bf as gradingScalePointSchema, bg as gradingScaleSchema, bh as impersonationParticipantSchema, bi as impersonationStateSchema, bj as invoiceSchema, bk as landingFeeSchema, bl as landingSchema, bm as maintenanceEventEstimationSchema, bn as maintenanceEventSchema, bo as maintenanceStatusSchema, bp as mediaCollection, bq as mediaSchema, br as membershipSchema, bs as membershipSignupSchema, bt as postSchema, bu as prePaidPackageSchema, bv as priceSchema, bw as qualificationSchema, bx as recurringFlightSchema, by as roleSchema, bz as runwaySchema, bA as scheduledFlightSchema, bB as settingSchema, bC as specialFlightSchema, bD as syllabusElementMutationResultSchema, bE as syllabusElementSchema, bF as syllabusRolloutResultItemSchema, bG as syllabusRolloutResultSchema, bH as syllabusRolloutSkippedItemSchema, bI as syllabusSchema, bJ as tagSchema, bK as ticketSchema, bL as trainingElementSchema, bM as trainingRecordEntryInputSchema, bN as trainingRecordEntrySchema, bO as trainingRecordSchema, bP as trainingSignatureSchema, bQ as trainingTemplatePackSchema, bR as usedByCourseSchema, bS as userAircraftRatingSchema, bT as userQualificationSchema, bU as userSchema, bV as waypointSchema, bW as zContactDTO, bX as zNetGross, bY as zNullableBool, bZ as zPhpMoneyObject } from './training-C9rIBUeV.js';
2
+ export { ALLOWED_GEOMETRY_TYPES, ALLOWED_NEWSLETTER_VARIABLES, AircraftUtilization, AllUsersBucketSchema, AllowedGeometryType, AllowedNewsletterVariable, AudienceBucket, AudienceBucketSchema, AudienceBucketType, BookingsData, ButtonBlock, ButtonBlockSchema, CompanyDevelopmentReportData, CompanyUsersBucketSchema, CourseEnrollmentMilestone, CourseMilestone, CourseMilestoneForm, CourseMilestoneFormSchema, CourseMilestoneKind, CourseMilestoneKindEnum, CreateFaqInput, CreateLocationMapFeatureInput, CreateLocationMapFeatureSchema, CreateLocationMapInput, CreateLocationMapSchema, CreateNewsletterCampaignInput, CreateNewsletterCampaignInputSchema, CreateNewsletterTemplateInput, CreateNewsletterTemplateInputSchema, DividerBlock, DividerBlockSchema, Equipment, EquipmentEntry, ExpenseData, Faq, FaqSchema, FaqStatus, FinancialReportData, FinancialSummaryData, FlightHoursData, GeoJsonFeature, GeoJsonFeatureCollection, GeoJsonGeometry, GeometrySchema, HeadingBlock, HeadingBlockSchema, ImportFeaturesInput, ImportFeaturesSchema, InstructorData, InstructorEfficiencyReportData, InstructorSummaryData, InvoiceData, LandingsData, LocationFeatureVisibility, LocationMap, LocationMapFeature, LocationMapFeatureGeoJson, LocationMapGeoJson, LocationMapGeoJsonProperties, LocationMapKind, Media, MemberActivityData, NewsletterAudience, NewsletterAudienceSchema, NewsletterBlock, NewsletterBlockSchema, NewsletterBlockType, NewsletterCampaign, NewsletterCampaignRecipient, NewsletterCampaignRecipientSchema, NewsletterCampaignSchema, NewsletterCampaignStatus, NewsletterCategory, NewsletterCategorySchema, NewsletterPreferenceRow, NewsletterPreferenceRowSchema, NewsletterRecipientStatus, NewsletterTemplate, NewsletterTemplateDoc, NewsletterTemplateSchema, NewsletterTemplateSchemaSchema, OperationalReportData, ParagraphBlock, ParagraphBlockSchema, PeriodData, PrepaidPackageData, Report, ReportData, ReportGenerationParams, ReportGenerationResponse, ReportGranularity, ReportListItem, ReportMedia, ReportMetadata, ReportParameters, ReportStatus, ReportStatusResponse, ReportType, RevenueData, ReviewFaqInput, ReviewFaqSchema, RoleMembersBucketSchema, SAFETY_REPORT_STATUS_COLORS, SAFETY_REPORT_STATUS_LABELS, SafetyReport, SafetyReportCategory, SafetyReportCategoryForm, SafetyReportCategoryFormSchema, SafetyReportCategorySchema, SafetyReportFilter, SafetyReportFilterSchema, SafetyReportForm, SafetyReportFormSchema, SafetyReportListResponse, SafetyReportListResponseSchema, SafetyReportMedia, SafetyReportMediaSchema, SafetyReportSchema, SafetyReportStatus, SafetyReportStatusEnum, SafetyReportSubmissionResponse, SafetyReportSubmissionResponseSchema, SafetyReportUpdate, SafetyReportUpdateSchema, SubmitFaqQuestionInput, SubmitFaqQuestionSchema, TipTapNode, TipTapNodeSchema, Todo, TodoAcceptedAlternative, TodoAction, TodoActionSchema, TodoKey, TodoSchema, UpdateFaqInput, UpdateLocationMapFeatureInput, UpdateLocationMapFeatureSchema, UpdateLocationMapInput, UpdateLocationMapSchema, UpdateNewsletterCampaignInput, UpdateNewsletterTemplateInput, Viewport, ViewportSchema, companyAudienceInclude, courseEnrollmentMilestoneSchema, courseMilestoneSchema, equipmentSchema } from './schemas/index.js';
3
+ export { Activity, Address, AiSuggestedMilestone, AiSuggestion, AiSuggestionStatus, AircraftBlock, AircraftBlockReason, AircraftPosition, AircraftRating, Airplane, AirplanePermission, AirplaneShareInvite, Airport, Alert, AllowedDocumentType, ApiResponse, ApproachType, Avail, BackgroundTask, BackgroundTaskStatus, BaseMembership, Booking, Comment, Company, ComplianceData, ComplianceGroup, ComplianceGroupSource, ComplianceRequirement, ComplianceRequirementGroup, ComplianceResponse, ComplianceSummary, Course, CourseDescriptionSuggestionPayload, CourseEnrollment, CourseFee, CreateAirplaneIssueInput, CreateCommentInput, CreatePostInput, DataWrappedResponse, DeferAirplaneIssueInput, DiscardedRow, Document, DocumentComplianceStatus, DocumentRequirement, DocumentRequirementGroup, DocumentRequirementGroupAssignment, DocumentShare, DocumentType, Event, Expense, ExpenseItem, ExtendedAirplane, Fee, FeeCategoryOptions, FlightLog, GroupedPermissions, Invoice, Landing, LandingFee, LandingFeeImportResult, LandingFeeInvoiceApplyPayload, LandingFeeInvoiceApplyResult, LandingFeeInvoicePreview, LandingFeeInvoicePreviewRow, LandingFeeTemplateParams, LogbookFlightLogPayload, LogbookStageResult, LogbookSuggestion, LogbookSuggestionMeta, MaintenanceEvent, MaintenanceEventEstimation, MaintenanceStatus, MediaCollection, Membership, MembershipSignup, PaginatedResponse, PermissionItem, Post, PrePaidPackage, Price, Qualification, RecurringFlight, ResolveAirplaneIssueInput, Resource, Role, RoleDetail, RoleListItem, Runway, ScheduledFlight, Setting, SpecialFlight, Tag, Ticket, ToggleFavoriteResponse, UpdateAirplaneIssueInput, UpdateCommentInput, UpdatePostInput, User, UserAircraftRating, UserQualification, Waypoint } from './types/index.js';
4
4
  export { FeeLike, NetGross, ParsedFee, ParsedPrice, PhpMoneyObject, PriceLike, displayFee, formatToEuroString, fromCents, money, moneyFormatted, parseFee, parsePrice } from './money/index.js';
5
5
  export { CourseFeeLike, CourseLike, CourseVariant, ParsedCourse, ParsedCourseFee, parseCourse } from './courses/index.js';
6
6
  export { BookingTimespan, CrewMember, DATE_FORMATS, DateFormat, MembershipStatusBadge, TIME_FORMATS, TimeFormat, bookingDuration, bytesToHuman, crewObjectToString, dateString, dateTimeString, dayString, formatDate, formatDateTime, formatTime, getMonthFromDate, membershipStatus, minutesFormatted, monthString, percentage, timeDiffInDays, timeString, timeUntil, yearString } from './format/index.js';