@updraft-solutions/mcrit-sdk 0.7.1 → 0.9.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.
- package/dist/{chunk-Y26FRSPZ.cjs → chunk-3WKOQDFN.cjs} +115 -8
- package/dist/{chunk-VNEXO6QQ.js → chunk-NYDIYVBI.js} +114 -7
- package/dist/index.cjs +8 -4
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +20 -16
- package/dist/schemas/index.cjs +6 -2
- package/dist/schemas/index.d.cts +19 -19
- package/dist/schemas/index.d.ts +19 -19
- package/dist/schemas/index.js +5 -1
- package/dist/{training-BibD4HsC.d.cts → training-nljZCLW5.d.cts} +35268 -23906
- package/dist/{training-BibD4HsC.d.ts → training-nljZCLW5.d.ts} +35268 -23906
- package/dist/types/index.d.cts +2 -1
- package/dist/types/index.d.ts +2 -1
- package/package.json +1 -1
- package/src/schemas/models.ts +132 -6
- package/src/schemas/todo.ts +1 -0
- package/src/types/ai.ts +1 -0
|
@@ -1092,6 +1092,40 @@ var allowedDocumentTypeSchema = _zod.z.object({
|
|
|
1092
1092
|
).optional()
|
|
1093
1093
|
}).optional()
|
|
1094
1094
|
});
|
|
1095
|
+
var billingProfileSchema = _zod.z.object({
|
|
1096
|
+
// BillingProfileResource never actually emits a `type` key today; kept
|
|
1097
|
+
// optional for forward-compat / discriminated-union consistency with
|
|
1098
|
+
// sibling schemas in this file.
|
|
1099
|
+
type: _zod.z.literal("billing_profile").optional(),
|
|
1100
|
+
id: _zod.z.number(),
|
|
1101
|
+
owner_type: _zod.z.string(),
|
|
1102
|
+
owner_id: _zod.z.number(),
|
|
1103
|
+
label: _zod.z.string().nullable(),
|
|
1104
|
+
is_default: _zod.z.boolean(),
|
|
1105
|
+
name: _zod.z.string().nullable(),
|
|
1106
|
+
company: _zod.z.string().nullable(),
|
|
1107
|
+
address_street_1: _zod.z.string().nullable(),
|
|
1108
|
+
address_street_2: _zod.z.string().nullable(),
|
|
1109
|
+
city: _zod.z.string().nullable(),
|
|
1110
|
+
state: _zod.z.string().nullable(),
|
|
1111
|
+
zip: _zod.z.string().nullable(),
|
|
1112
|
+
phone: _zod.z.string().nullable(),
|
|
1113
|
+
fax: _zod.z.string().nullable(),
|
|
1114
|
+
iso_country: _zod.z.string().nullable(),
|
|
1115
|
+
vat_id: _zod.z.string().nullable(),
|
|
1116
|
+
email: _zod.z.string().nullable(),
|
|
1117
|
+
archived_at: _zod.z.string().nullable(),
|
|
1118
|
+
source_billing_profile_id: _zod.z.number().nullable(),
|
|
1119
|
+
is_synced: _zod.z.boolean(),
|
|
1120
|
+
frozen_at: _zod.z.string().nullable(),
|
|
1121
|
+
// Present only when the profile is frozen (frozen_by_user_id !== null).
|
|
1122
|
+
frozen_by: _zod.z.object({
|
|
1123
|
+
id: _zod.z.number(),
|
|
1124
|
+
name: _zod.z.string().nullable().optional()
|
|
1125
|
+
}).optional(),
|
|
1126
|
+
created_at: _zod.z.string(),
|
|
1127
|
+
updated_at: _zod.z.string()
|
|
1128
|
+
});
|
|
1095
1129
|
var flightLogSchema = _zod.z.object({
|
|
1096
1130
|
type: _zod.z.literal("flightLog"),
|
|
1097
1131
|
id: _zod.z.number(),
|
|
@@ -1106,6 +1140,7 @@ var flightLogSchema = _zod.z.object({
|
|
|
1106
1140
|
booking_id: _zod.z.number().nullable().optional(),
|
|
1107
1141
|
membership_id: _zod.z.number().nullable().optional(),
|
|
1108
1142
|
membership: baseMembershipSchema.optional(),
|
|
1143
|
+
billing_profile_id: _zod.z.number().nullable().optional(),
|
|
1109
1144
|
author_id: _zod.z.number(),
|
|
1110
1145
|
author: userSchema.optional(),
|
|
1111
1146
|
invoice_id: _zod.z.number().nullable().optional(),
|
|
@@ -1150,6 +1185,14 @@ var invoiceSchema = _zod.z.object({
|
|
|
1150
1185
|
title: _zod.z.string(),
|
|
1151
1186
|
membership_id: _zod.z.number(),
|
|
1152
1187
|
membership: baseMembershipSchema.optional(),
|
|
1188
|
+
// InvoiceResource.php always emits `billing_profile_id` (non-optional key,
|
|
1189
|
+
// nullable FK value). `billingProfile` is a `whenLoaded('billingProfile')`
|
|
1190
|
+
// relation, so it stays optional. (Fix round 1: as of the original Task 16
|
|
1191
|
+
// commit, InvoiceResource hadn't gained `billing_profile_id` yet — it was
|
|
1192
|
+
// added ~4 minutes later in the same session; tightened here now that the
|
|
1193
|
+
// key is always present.)
|
|
1194
|
+
billing_profile_id: _zod.z.number().nullable(),
|
|
1195
|
+
billingProfile: billingProfileSchema.optional(),
|
|
1153
1196
|
company_id: _zod.z.number().optional(),
|
|
1154
1197
|
company: companySchema.optional(),
|
|
1155
1198
|
sequence_number: _zod.z.string().nullable().optional(),
|
|
@@ -1177,6 +1220,9 @@ var invoiceSchema = _zod.z.object({
|
|
|
1177
1220
|
recipient_state: _zod.z.string().nullable().optional(),
|
|
1178
1221
|
recipient_country: _zod.z.string().nullable().optional(),
|
|
1179
1222
|
recipient_vat_id: _zod.z.string().nullable().optional(),
|
|
1223
|
+
// Always computed by InvoiceResource (billingProfile email, else the
|
|
1224
|
+
// membership's user email) — used by InvoiceDialog today but was missing.
|
|
1225
|
+
recipient_email: _zod.z.string().nullable().optional(),
|
|
1180
1226
|
issuer_name: _zod.z.string().nullable().optional(),
|
|
1181
1227
|
issuer_address_street_1: _zod.z.string().nullable().optional(),
|
|
1182
1228
|
issuer_address_street_2: _zod.z.string().nullable().optional(),
|
|
@@ -1577,17 +1623,75 @@ var prePaidPackageSchema = _zod.z.object({
|
|
|
1577
1623
|
assign: zNullableBool
|
|
1578
1624
|
}).optional()
|
|
1579
1625
|
});
|
|
1626
|
+
var prePaidPackageAssignmentSchema = _zod.z.object({
|
|
1627
|
+
id: _zod.z.number(),
|
|
1628
|
+
flight_log_id: _zod.z.number().nullable().optional(),
|
|
1629
|
+
expense_item_id: _zod.z.number().nullable().optional(),
|
|
1630
|
+
pre_paid_package_id: _zod.z.number().nullable().optional(),
|
|
1631
|
+
gross_total: zPhpMoneyObject.nullable().optional(),
|
|
1632
|
+
created_at: _zod.z.string().nullable().optional(),
|
|
1633
|
+
updated_at: _zod.z.string().nullable().optional()
|
|
1634
|
+
});
|
|
1580
1635
|
var expenseItemSchema = _zod.z.object({
|
|
1581
|
-
type
|
|
1636
|
+
// ExpenseItemResource never emits a `type` key; kept optional for
|
|
1637
|
+
// consistency with sibling schemas' discriminated-union literal.
|
|
1638
|
+
type: _zod.z.literal("expenseItem").optional(),
|
|
1582
1639
|
id: _zod.z.number(),
|
|
1640
|
+
date: _zod.z.string(),
|
|
1641
|
+
model_id: _zod.z.number(),
|
|
1642
|
+
model_type: _zod.z.string(),
|
|
1643
|
+
identifier: _zod.z.string().nullable(),
|
|
1644
|
+
// Provenance: the `prices` row this item was generated from. `price_id` is
|
|
1645
|
+
// always present (nullable FK); `price` only when the relation is
|
|
1646
|
+
// eager-loaded.
|
|
1647
|
+
price_id: _zod.z.number().nullable(),
|
|
1648
|
+
price: priceSchema.optional(),
|
|
1649
|
+
description: _zod.z.string(),
|
|
1650
|
+
description_lines: _zod.z.array(_zod.z.any()).nullable(),
|
|
1651
|
+
// Resource emits a trimmed decimal string (trailing zeros/dot stripped),
|
|
1652
|
+
// not a number.
|
|
1653
|
+
quantity: _zod.z.string(),
|
|
1654
|
+
discount: _zod.z.number(),
|
|
1655
|
+
applied_discounts: _zod.z.array(_zod.z.any()).nullable(),
|
|
1656
|
+
status: _zod.z.string(),
|
|
1657
|
+
is_system_controlled: _zod.z.boolean(),
|
|
1658
|
+
deferred: _zod.z.boolean(),
|
|
1659
|
+
invoice_id: _zod.z.number().nullable(),
|
|
1583
1660
|
company_id: _zod.z.number(),
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1661
|
+
membership_id: _zod.z.number(),
|
|
1662
|
+
billing_profile_id: _zod.z.number().nullable(),
|
|
1663
|
+
gross_total_before_vouchers: zPhpMoneyObject,
|
|
1664
|
+
gross_total: zPhpMoneyObject,
|
|
1665
|
+
net_total: zPhpMoneyObject,
|
|
1666
|
+
tax_total: zPhpMoneyObject,
|
|
1667
|
+
// number_format(…, 2) string, not a number.
|
|
1668
|
+
tax_percentage: _zod.z.string(),
|
|
1669
|
+
billable: _zod.z.boolean(),
|
|
1670
|
+
meta: _zod.z.record(_zod.z.string(), _zod.z.any()).nullable(),
|
|
1671
|
+
input_value: _zod.z.number().nullable(),
|
|
1672
|
+
net_gross: zNetGross,
|
|
1673
|
+
refunds_expense_item_id: _zod.z.number().nullable(),
|
|
1589
1674
|
created_at: _zod.z.string(),
|
|
1590
|
-
updated_at: _zod.z.string()
|
|
1675
|
+
updated_at: _zod.z.string(),
|
|
1676
|
+
// Lazy + explicitly typed as ZodTypeAny (so `invoice` infers as `any`
|
|
1677
|
+
// rather than the full Invoice shape): invoiceSchema is large (60+ fields
|
|
1678
|
+
// incl. media/activities), and this field is additionally reached from
|
|
1679
|
+
// courseEnrollmentSchema/bookingSchema/flightLogSchema via their own lazy
|
|
1680
|
+
// expenseItems refs — inlining the full inferred type here blows past TS's
|
|
1681
|
+
// type-serialization size limit (TS7056: "inferred type … exceeds the
|
|
1682
|
+
// maximum length"). No true cycle: invoiceSchema does not reference
|
|
1683
|
+
// expenseItemSchema back.
|
|
1684
|
+
invoice: _zod.z.lazy(() => invoiceSchema).optional(),
|
|
1685
|
+
membership: baseMembershipSchema.optional(),
|
|
1686
|
+
prePaidPackageAssignments: _zod.z.array(prePaidPackageAssignmentSchema).optional(),
|
|
1687
|
+
// Loose record on purpose: gates are policy-reflected server-side and grow
|
|
1688
|
+
// over time — same convention as companySchema/invoiceSchema.
|
|
1689
|
+
can: _zod.z.record(_zod.z.string(), _zod.z.boolean().nullable()).optional(),
|
|
1690
|
+
// Set true only by InvoiceItemSnapshotResource — the immutable,
|
|
1691
|
+
// frozen-at-release line-item shape reused for released/cancelled
|
|
1692
|
+
// invoices (same JSON shape as ExpenseItemResource by design). Absent on
|
|
1693
|
+
// a live ExpenseItemResource payload.
|
|
1694
|
+
is_snapshot: _zod.z.boolean().optional()
|
|
1591
1695
|
});
|
|
1592
1696
|
var waypointSchema = _zod.z.object({
|
|
1593
1697
|
type: _zod.z.literal("waypoint"),
|
|
@@ -2433,6 +2537,7 @@ var TodoKey = _zod.z.enum([
|
|
|
2433
2537
|
"log_booking",
|
|
2434
2538
|
"add_address",
|
|
2435
2539
|
"add_required_documents",
|
|
2540
|
+
"share_document",
|
|
2436
2541
|
"fill_training_record",
|
|
2437
2542
|
"sign_training_record"
|
|
2438
2543
|
]);
|
|
@@ -2635,4 +2740,6 @@ var TodoSchema = _zod.z.object({
|
|
|
2635
2740
|
|
|
2636
2741
|
|
|
2637
2742
|
|
|
2638
|
-
exports.zNullableBool = zNullableBool; exports.zNetGross = zNetGross; exports.zContactDTO = zContactDTO; exports.zPhpMoneyObject = zPhpMoneyObject; exports.contactAttributeSchema = contactAttributeSchema; exports.BaseModel = BaseModel; exports.mediaSchema = mediaSchema; exports.mediaCollection = mediaCollection; exports.impersonationParticipantSchema = impersonationParticipantSchema; exports.impersonationStateSchema = impersonationStateSchema; exports.userSchema = userSchema; exports.companySchema = companySchema; exports.equipmentSchema = equipmentSchema; exports.gradingScalePointSchema = gradingScalePointSchema; exports.gradingScaleSchema = gradingScaleSchema; exports.GradingScaleFormSchema = GradingScaleFormSchema; exports.TrainingElementKindEnum = TrainingElementKindEnum; exports.trainingElementSchema = trainingElementSchema; exports.TrainingElementFormSchema = TrainingElementFormSchema; exports.SyllabusKindEnum = SyllabusKindEnum; exports.syllabusElementSchema = syllabusElementSchema; exports.AttachSyllabusElementFormSchema = AttachSyllabusElementFormSchema; exports.UpdateSyllabusElementFormSchema = UpdateSyllabusElementFormSchema; exports.ReorderSyllabusElementItemSchema = ReorderSyllabusElementItemSchema; exports.usedByCourseSchema = usedByCourseSchema; exports.syllabusSchema = syllabusSchema; exports.StoreSyllabusFormSchema = StoreSyllabusFormSchema; exports.UpdateSyllabusFormSchema = UpdateSyllabusFormSchema; exports.courseCheckSyllabusSchema = courseCheckSyllabusSchema; exports.syllabusElementMutationResultSchema = syllabusElementMutationResultSchema; exports.syllabusRolloutResultItemSchema = syllabusRolloutResultItemSchema; exports.syllabusRolloutSkippedItemSchema = syllabusRolloutSkippedItemSchema; exports.syllabusRolloutResultSchema = syllabusRolloutResultSchema; exports.EnrollmentTrainingStatusEnum = EnrollmentTrainingStatusEnum; exports.gradeHistoryItemSchema = gradeHistoryItemSchema; exports.enrollmentTrainingElementSchema = enrollmentTrainingElementSchema; exports.SignOffTrainingElementFormSchema = SignOffTrainingElementFormSchema; exports.TrainingRecordStatusEnum = TrainingRecordStatusEnum; exports.TrainingRecordResultEnum = TrainingRecordResultEnum; exports.trainingRecordEntrySchema = trainingRecordEntrySchema; exports.trainingRecordEntryInputSchema = trainingRecordEntryInputSchema; exports.trainingSignatureSchema = trainingSignatureSchema; exports.trainingRecordSchema = trainingRecordSchema; exports.UpsertTrainingRecordFormSchema = UpsertTrainingRecordFormSchema; exports.invalidateTrainingRecordResponseSchema = invalidateTrainingRecordResponseSchema; exports.trainingTemplatePackSchema = trainingTemplatePackSchema; exports.CreateSyllabusFromTemplateFormSchema = CreateSyllabusFromTemplateFormSchema; exports.createSyllabusFromTemplateResultSchema = createSyllabusFromTemplateResultSchema; exports.baseMembershipSchema = baseMembershipSchema; exports.membershipSchema = membershipSchema; exports.documentType = documentType; exports.priceSchema = priceSchema; exports.feeSchema = feeSchema; exports.feeCategoryOptionsSchema = feeCategoryOptionsSchema; exports.courseFeeSchema = courseFeeSchema; exports.airplaneSchema = airplaneSchema; exports.aircraftPositionSchema = aircraftPositionSchema; exports.airplaneShareInviteSchema = airplaneShareInviteSchema; exports.airplanePermissionSchema = airplanePermissionSchema; exports.landingFeeSchema = landingFeeSchema; exports.aircraftRatingSchema = aircraftRatingSchema; exports.userAircraftRatingSchema = userAircraftRatingSchema; exports.userQualificationSchema = userQualificationSchema; exports.airportSchema = airportSchema; exports.recurringFlightSchema = recurringFlightSchema; exports.maintenanceEventSchema = maintenanceEventSchema; exports.maintenanceEventEstimationSchema = maintenanceEventEstimationSchema; exports.maintenanceStatusSchema = maintenanceStatusSchema; exports.extendedAirplaneSchema = extendedAirplaneSchema; exports.availSchema = availSchema; exports.bookingWaypointSchema = bookingWaypointSchema; exports.activitySchema = activitySchema; exports.bookingSchema = bookingSchema; exports.alertSchema = alertSchema; exports.documentSchema = documentSchema; exports.documentRequirement = documentRequirement; exports.documentRequirementGroup = documentRequirementGroup; exports.documentRequirementGroupAssignment = documentRequirementGroupAssignment; exports.documentComplianceStatus = documentComplianceStatus; exports.documentShareSchema = documentShareSchema; exports.allowedDocumentTypeSchema = allowedDocumentTypeSchema; exports.flightLogSchema = flightLogSchema; exports.invoiceSchema = invoiceSchema; exports.scheduledFlightSchema = scheduledFlightSchema; exports.qualificationSchema = qualificationSchema; exports.expenseSchema = expenseSchema; exports.tagSchema = tagSchema; exports.courseSchema = courseSchema; exports.courseEnrollmentMetricsSchema = courseEnrollmentMetricsSchema; exports.courseEnrollmentSchema = courseEnrollmentSchema; exports.membershipSignupSchema = membershipSignupSchema; exports.eventSchema = eventSchema; exports.addressSchema = addressSchema; exports.roleSchema = roleSchema; exports.landingSchema = landingSchema; exports.ticketSchema = ticketSchema; exports.runwaySchema = runwaySchema; exports.settingSchema = settingSchema; exports.postSchema = postSchema; exports.commentSchema = commentSchema; exports.airplaneIssueSeverityEnum = airplaneIssueSeverityEnum; exports.airplaneIssueStatusEnum = airplaneIssueStatusEnum; exports.airplaneIssueSchema = airplaneIssueSchema; exports.specialFlightSchema = specialFlightSchema; exports.prePaidPackageSchema = prePaidPackageSchema; exports.expenseItemSchema = expenseItemSchema; exports.waypointSchema = waypointSchema; exports.approachTypeSchema = approachTypeSchema; exports.FaqStatus = FaqStatus; exports.FaqSchema = FaqSchema; exports.SubmitFaqQuestionSchema = SubmitFaqQuestionSchema; exports.ReviewFaqSchema = ReviewFaqSchema; exports.SafetyReportStatusEnum = SafetyReportStatusEnum; exports.SafetyReportCategorySchema = SafetyReportCategorySchema; exports.SafetyReportCategoryFormSchema = SafetyReportCategoryFormSchema; exports.SafetyReportMediaSchema = SafetyReportMediaSchema; exports.SafetyReportSchema = SafetyReportSchema; exports.SafetyReportListResponseSchema = SafetyReportListResponseSchema; exports.SafetyReportFormSchema = SafetyReportFormSchema; exports.SafetyReportUpdateSchema = SafetyReportUpdateSchema; exports.SafetyReportFilterSchema = SafetyReportFilterSchema; exports.SafetyReportSubmissionResponseSchema = SafetyReportSubmissionResponseSchema; exports.SAFETY_REPORT_STATUS_LABELS = SAFETY_REPORT_STATUS_LABELS; exports.SAFETY_REPORT_STATUS_COLORS = SAFETY_REPORT_STATUS_COLORS; exports.FormFieldType = FormFieldType; exports.FormSubmissionStatus = FormSubmissionStatus; exports.FormSubmissionSource = FormSubmissionSource; exports.FieldLabelSchema = FieldLabelSchema; exports.ShowWhenSchema = ShowWhenSchema; exports.SchemaFieldSchema = SchemaFieldSchema; exports.SchemaSectionSchema = SchemaSectionSchema; exports.TemplateSchemaSchema = TemplateSchemaSchema; exports.FormTemplateSchema = FormTemplateSchema; exports.FormTemplateAssignmentSchema = FormTemplateAssignmentSchema; exports.SignatureSchema = SignatureSchema; exports.SubmissionFileSchema = SubmissionFileSchema; exports.FormSubmissionShareBaseSchema = FormSubmissionShareBaseSchema; exports.FormSubmissionSchema = FormSubmissionSchema; exports.FormSubmissionShareSchema = FormSubmissionShareSchema; exports.RequiredFormViaCrewSchema = RequiredFormViaCrewSchema; exports.RequiredFormViaSchema = RequiredFormViaSchema; exports.RequiredFormSchema = RequiredFormSchema; exports.CourseMilestoneKindEnum = CourseMilestoneKindEnum; exports.courseMilestoneSchema = courseMilestoneSchema; exports.CourseMilestoneFormSchema = CourseMilestoneFormSchema; exports.courseEnrollmentMilestoneSchema = courseEnrollmentMilestoneSchema; exports.NewsletterBlockType = NewsletterBlockType; exports.TipTapNodeSchema = TipTapNodeSchema; exports.HeadingBlockSchema = HeadingBlockSchema; exports.ParagraphBlockSchema = ParagraphBlockSchema; exports.ButtonBlockSchema = ButtonBlockSchema; exports.DividerBlockSchema = DividerBlockSchema; exports.NewsletterBlockSchema = NewsletterBlockSchema; exports.NewsletterCategorySchema = NewsletterCategorySchema; exports.NewsletterTemplateSchemaSchema = NewsletterTemplateSchemaSchema; exports.NewsletterTemplateSchema = NewsletterTemplateSchema; exports.CreateNewsletterTemplateInputSchema = CreateNewsletterTemplateInputSchema; exports.AudienceBucketType = AudienceBucketType; exports.AllUsersBucketSchema = AllUsersBucketSchema; exports.CompanyUsersBucketSchema = CompanyUsersBucketSchema; exports.RoleMembersBucketSchema = RoleMembersBucketSchema; exports.AudienceBucketSchema = AudienceBucketSchema; exports.NewsletterAudienceSchema = NewsletterAudienceSchema; exports.companyAudienceInclude = companyAudienceInclude; exports.NewsletterCampaignStatus = NewsletterCampaignStatus; exports.NewsletterCampaignSchema = NewsletterCampaignSchema; exports.CreateNewsletterCampaignInputSchema = CreateNewsletterCampaignInputSchema; exports.NewsletterRecipientStatus = NewsletterRecipientStatus; exports.NewsletterCampaignRecipientSchema = NewsletterCampaignRecipientSchema; exports.NewsletterPreferenceRowSchema = NewsletterPreferenceRowSchema; exports.ALLOWED_NEWSLETTER_VARIABLES = ALLOWED_NEWSLETTER_VARIABLES; exports.LocationMapKind = LocationMapKind; exports.LocationFeatureVisibility = LocationFeatureVisibility; exports.ALLOWED_GEOMETRY_TYPES = ALLOWED_GEOMETRY_TYPES; exports.ViewportSchema = ViewportSchema; exports.GeometrySchema = GeometrySchema; exports.CreateLocationMapSchema = CreateLocationMapSchema; exports.UpdateLocationMapSchema = UpdateLocationMapSchema; exports.CreateLocationMapFeatureSchema = CreateLocationMapFeatureSchema; exports.UpdateLocationMapFeatureSchema = UpdateLocationMapFeatureSchema; exports.ImportFeaturesSchema = ImportFeaturesSchema; exports.TodoActionSchema = TodoActionSchema; exports.TodoKey = TodoKey; exports.TodoSchema = TodoSchema;
|
|
2743
|
+
|
|
2744
|
+
|
|
2745
|
+
exports.zNullableBool = zNullableBool; exports.zNetGross = zNetGross; exports.zContactDTO = zContactDTO; exports.zPhpMoneyObject = zPhpMoneyObject; exports.contactAttributeSchema = contactAttributeSchema; exports.BaseModel = BaseModel; exports.mediaSchema = mediaSchema; exports.mediaCollection = mediaCollection; exports.impersonationParticipantSchema = impersonationParticipantSchema; exports.impersonationStateSchema = impersonationStateSchema; exports.userSchema = userSchema; exports.companySchema = companySchema; exports.equipmentSchema = equipmentSchema; exports.gradingScalePointSchema = gradingScalePointSchema; exports.gradingScaleSchema = gradingScaleSchema; exports.GradingScaleFormSchema = GradingScaleFormSchema; exports.TrainingElementKindEnum = TrainingElementKindEnum; exports.trainingElementSchema = trainingElementSchema; exports.TrainingElementFormSchema = TrainingElementFormSchema; exports.SyllabusKindEnum = SyllabusKindEnum; exports.syllabusElementSchema = syllabusElementSchema; exports.AttachSyllabusElementFormSchema = AttachSyllabusElementFormSchema; exports.UpdateSyllabusElementFormSchema = UpdateSyllabusElementFormSchema; exports.ReorderSyllabusElementItemSchema = ReorderSyllabusElementItemSchema; exports.usedByCourseSchema = usedByCourseSchema; exports.syllabusSchema = syllabusSchema; exports.StoreSyllabusFormSchema = StoreSyllabusFormSchema; exports.UpdateSyllabusFormSchema = UpdateSyllabusFormSchema; exports.courseCheckSyllabusSchema = courseCheckSyllabusSchema; exports.syllabusElementMutationResultSchema = syllabusElementMutationResultSchema; exports.syllabusRolloutResultItemSchema = syllabusRolloutResultItemSchema; exports.syllabusRolloutSkippedItemSchema = syllabusRolloutSkippedItemSchema; exports.syllabusRolloutResultSchema = syllabusRolloutResultSchema; exports.EnrollmentTrainingStatusEnum = EnrollmentTrainingStatusEnum; exports.gradeHistoryItemSchema = gradeHistoryItemSchema; exports.enrollmentTrainingElementSchema = enrollmentTrainingElementSchema; exports.SignOffTrainingElementFormSchema = SignOffTrainingElementFormSchema; exports.TrainingRecordStatusEnum = TrainingRecordStatusEnum; exports.TrainingRecordResultEnum = TrainingRecordResultEnum; exports.trainingRecordEntrySchema = trainingRecordEntrySchema; exports.trainingRecordEntryInputSchema = trainingRecordEntryInputSchema; exports.trainingSignatureSchema = trainingSignatureSchema; exports.trainingRecordSchema = trainingRecordSchema; exports.UpsertTrainingRecordFormSchema = UpsertTrainingRecordFormSchema; exports.invalidateTrainingRecordResponseSchema = invalidateTrainingRecordResponseSchema; exports.trainingTemplatePackSchema = trainingTemplatePackSchema; exports.CreateSyllabusFromTemplateFormSchema = CreateSyllabusFromTemplateFormSchema; exports.createSyllabusFromTemplateResultSchema = createSyllabusFromTemplateResultSchema; exports.baseMembershipSchema = baseMembershipSchema; exports.membershipSchema = membershipSchema; exports.documentType = documentType; exports.priceSchema = priceSchema; exports.feeSchema = feeSchema; exports.feeCategoryOptionsSchema = feeCategoryOptionsSchema; exports.courseFeeSchema = courseFeeSchema; exports.airplaneSchema = airplaneSchema; exports.aircraftPositionSchema = aircraftPositionSchema; exports.airplaneShareInviteSchema = airplaneShareInviteSchema; exports.airplanePermissionSchema = airplanePermissionSchema; exports.landingFeeSchema = landingFeeSchema; exports.aircraftRatingSchema = aircraftRatingSchema; exports.userAircraftRatingSchema = userAircraftRatingSchema; exports.userQualificationSchema = userQualificationSchema; exports.airportSchema = airportSchema; exports.recurringFlightSchema = recurringFlightSchema; exports.maintenanceEventSchema = maintenanceEventSchema; exports.maintenanceEventEstimationSchema = maintenanceEventEstimationSchema; exports.maintenanceStatusSchema = maintenanceStatusSchema; exports.extendedAirplaneSchema = extendedAirplaneSchema; exports.availSchema = availSchema; exports.bookingWaypointSchema = bookingWaypointSchema; exports.activitySchema = activitySchema; exports.bookingSchema = bookingSchema; exports.alertSchema = alertSchema; exports.documentSchema = documentSchema; exports.documentRequirement = documentRequirement; exports.documentRequirementGroup = documentRequirementGroup; exports.documentRequirementGroupAssignment = documentRequirementGroupAssignment; exports.documentComplianceStatus = documentComplianceStatus; exports.documentShareSchema = documentShareSchema; exports.allowedDocumentTypeSchema = allowedDocumentTypeSchema; exports.billingProfileSchema = billingProfileSchema; exports.flightLogSchema = flightLogSchema; exports.invoiceSchema = invoiceSchema; exports.scheduledFlightSchema = scheduledFlightSchema; exports.qualificationSchema = qualificationSchema; exports.expenseSchema = expenseSchema; exports.tagSchema = tagSchema; exports.courseSchema = courseSchema; exports.courseEnrollmentMetricsSchema = courseEnrollmentMetricsSchema; exports.courseEnrollmentSchema = courseEnrollmentSchema; exports.membershipSignupSchema = membershipSignupSchema; exports.eventSchema = eventSchema; exports.addressSchema = addressSchema; exports.roleSchema = roleSchema; exports.landingSchema = landingSchema; exports.ticketSchema = ticketSchema; exports.runwaySchema = runwaySchema; exports.settingSchema = settingSchema; exports.postSchema = postSchema; exports.commentSchema = commentSchema; exports.airplaneIssueSeverityEnum = airplaneIssueSeverityEnum; exports.airplaneIssueStatusEnum = airplaneIssueStatusEnum; exports.airplaneIssueSchema = airplaneIssueSchema; exports.specialFlightSchema = specialFlightSchema; exports.prePaidPackageSchema = prePaidPackageSchema; exports.prePaidPackageAssignmentSchema = prePaidPackageAssignmentSchema; exports.expenseItemSchema = expenseItemSchema; exports.waypointSchema = waypointSchema; exports.approachTypeSchema = approachTypeSchema; exports.FaqStatus = FaqStatus; exports.FaqSchema = FaqSchema; exports.SubmitFaqQuestionSchema = SubmitFaqQuestionSchema; exports.ReviewFaqSchema = ReviewFaqSchema; exports.SafetyReportStatusEnum = SafetyReportStatusEnum; exports.SafetyReportCategorySchema = SafetyReportCategorySchema; exports.SafetyReportCategoryFormSchema = SafetyReportCategoryFormSchema; exports.SafetyReportMediaSchema = SafetyReportMediaSchema; exports.SafetyReportSchema = SafetyReportSchema; exports.SafetyReportListResponseSchema = SafetyReportListResponseSchema; exports.SafetyReportFormSchema = SafetyReportFormSchema; exports.SafetyReportUpdateSchema = SafetyReportUpdateSchema; exports.SafetyReportFilterSchema = SafetyReportFilterSchema; exports.SafetyReportSubmissionResponseSchema = SafetyReportSubmissionResponseSchema; exports.SAFETY_REPORT_STATUS_LABELS = SAFETY_REPORT_STATUS_LABELS; exports.SAFETY_REPORT_STATUS_COLORS = SAFETY_REPORT_STATUS_COLORS; exports.FormFieldType = FormFieldType; exports.FormSubmissionStatus = FormSubmissionStatus; exports.FormSubmissionSource = FormSubmissionSource; exports.FieldLabelSchema = FieldLabelSchema; exports.ShowWhenSchema = ShowWhenSchema; exports.SchemaFieldSchema = SchemaFieldSchema; exports.SchemaSectionSchema = SchemaSectionSchema; exports.TemplateSchemaSchema = TemplateSchemaSchema; exports.FormTemplateSchema = FormTemplateSchema; exports.FormTemplateAssignmentSchema = FormTemplateAssignmentSchema; exports.SignatureSchema = SignatureSchema; exports.SubmissionFileSchema = SubmissionFileSchema; exports.FormSubmissionShareBaseSchema = FormSubmissionShareBaseSchema; exports.FormSubmissionSchema = FormSubmissionSchema; exports.FormSubmissionShareSchema = FormSubmissionShareSchema; exports.RequiredFormViaCrewSchema = RequiredFormViaCrewSchema; exports.RequiredFormViaSchema = RequiredFormViaSchema; exports.RequiredFormSchema = RequiredFormSchema; exports.CourseMilestoneKindEnum = CourseMilestoneKindEnum; exports.courseMilestoneSchema = courseMilestoneSchema; exports.CourseMilestoneFormSchema = CourseMilestoneFormSchema; exports.courseEnrollmentMilestoneSchema = courseEnrollmentMilestoneSchema; exports.NewsletterBlockType = NewsletterBlockType; exports.TipTapNodeSchema = TipTapNodeSchema; exports.HeadingBlockSchema = HeadingBlockSchema; exports.ParagraphBlockSchema = ParagraphBlockSchema; exports.ButtonBlockSchema = ButtonBlockSchema; exports.DividerBlockSchema = DividerBlockSchema; exports.NewsletterBlockSchema = NewsletterBlockSchema; exports.NewsletterCategorySchema = NewsletterCategorySchema; exports.NewsletterTemplateSchemaSchema = NewsletterTemplateSchemaSchema; exports.NewsletterTemplateSchema = NewsletterTemplateSchema; exports.CreateNewsletterTemplateInputSchema = CreateNewsletterTemplateInputSchema; exports.AudienceBucketType = AudienceBucketType; exports.AllUsersBucketSchema = AllUsersBucketSchema; exports.CompanyUsersBucketSchema = CompanyUsersBucketSchema; exports.RoleMembersBucketSchema = RoleMembersBucketSchema; exports.AudienceBucketSchema = AudienceBucketSchema; exports.NewsletterAudienceSchema = NewsletterAudienceSchema; exports.companyAudienceInclude = companyAudienceInclude; exports.NewsletterCampaignStatus = NewsletterCampaignStatus; exports.NewsletterCampaignSchema = NewsletterCampaignSchema; exports.CreateNewsletterCampaignInputSchema = CreateNewsletterCampaignInputSchema; exports.NewsletterRecipientStatus = NewsletterRecipientStatus; exports.NewsletterCampaignRecipientSchema = NewsletterCampaignRecipientSchema; exports.NewsletterPreferenceRowSchema = NewsletterPreferenceRowSchema; exports.ALLOWED_NEWSLETTER_VARIABLES = ALLOWED_NEWSLETTER_VARIABLES; exports.LocationMapKind = LocationMapKind; exports.LocationFeatureVisibility = LocationFeatureVisibility; exports.ALLOWED_GEOMETRY_TYPES = ALLOWED_GEOMETRY_TYPES; exports.ViewportSchema = ViewportSchema; exports.GeometrySchema = GeometrySchema; exports.CreateLocationMapSchema = CreateLocationMapSchema; exports.UpdateLocationMapSchema = UpdateLocationMapSchema; exports.CreateLocationMapFeatureSchema = CreateLocationMapFeatureSchema; exports.UpdateLocationMapFeatureSchema = UpdateLocationMapFeatureSchema; exports.ImportFeaturesSchema = ImportFeaturesSchema; exports.TodoActionSchema = TodoActionSchema; exports.TodoKey = TodoKey; exports.TodoSchema = TodoSchema;
|
|
@@ -1092,6 +1092,40 @@ var allowedDocumentTypeSchema = z4.object({
|
|
|
1092
1092
|
).optional()
|
|
1093
1093
|
}).optional()
|
|
1094
1094
|
});
|
|
1095
|
+
var billingProfileSchema = z4.object({
|
|
1096
|
+
// BillingProfileResource never actually emits a `type` key today; kept
|
|
1097
|
+
// optional for forward-compat / discriminated-union consistency with
|
|
1098
|
+
// sibling schemas in this file.
|
|
1099
|
+
type: z4.literal("billing_profile").optional(),
|
|
1100
|
+
id: z4.number(),
|
|
1101
|
+
owner_type: z4.string(),
|
|
1102
|
+
owner_id: z4.number(),
|
|
1103
|
+
label: z4.string().nullable(),
|
|
1104
|
+
is_default: z4.boolean(),
|
|
1105
|
+
name: z4.string().nullable(),
|
|
1106
|
+
company: z4.string().nullable(),
|
|
1107
|
+
address_street_1: z4.string().nullable(),
|
|
1108
|
+
address_street_2: z4.string().nullable(),
|
|
1109
|
+
city: z4.string().nullable(),
|
|
1110
|
+
state: z4.string().nullable(),
|
|
1111
|
+
zip: z4.string().nullable(),
|
|
1112
|
+
phone: z4.string().nullable(),
|
|
1113
|
+
fax: z4.string().nullable(),
|
|
1114
|
+
iso_country: z4.string().nullable(),
|
|
1115
|
+
vat_id: z4.string().nullable(),
|
|
1116
|
+
email: z4.string().nullable(),
|
|
1117
|
+
archived_at: z4.string().nullable(),
|
|
1118
|
+
source_billing_profile_id: z4.number().nullable(),
|
|
1119
|
+
is_synced: z4.boolean(),
|
|
1120
|
+
frozen_at: z4.string().nullable(),
|
|
1121
|
+
// Present only when the profile is frozen (frozen_by_user_id !== null).
|
|
1122
|
+
frozen_by: z4.object({
|
|
1123
|
+
id: z4.number(),
|
|
1124
|
+
name: z4.string().nullable().optional()
|
|
1125
|
+
}).optional(),
|
|
1126
|
+
created_at: z4.string(),
|
|
1127
|
+
updated_at: z4.string()
|
|
1128
|
+
});
|
|
1095
1129
|
var flightLogSchema = z4.object({
|
|
1096
1130
|
type: z4.literal("flightLog"),
|
|
1097
1131
|
id: z4.number(),
|
|
@@ -1106,6 +1140,7 @@ var flightLogSchema = z4.object({
|
|
|
1106
1140
|
booking_id: z4.number().nullable().optional(),
|
|
1107
1141
|
membership_id: z4.number().nullable().optional(),
|
|
1108
1142
|
membership: baseMembershipSchema.optional(),
|
|
1143
|
+
billing_profile_id: z4.number().nullable().optional(),
|
|
1109
1144
|
author_id: z4.number(),
|
|
1110
1145
|
author: userSchema.optional(),
|
|
1111
1146
|
invoice_id: z4.number().nullable().optional(),
|
|
@@ -1150,6 +1185,14 @@ var invoiceSchema = z4.object({
|
|
|
1150
1185
|
title: z4.string(),
|
|
1151
1186
|
membership_id: z4.number(),
|
|
1152
1187
|
membership: baseMembershipSchema.optional(),
|
|
1188
|
+
// InvoiceResource.php always emits `billing_profile_id` (non-optional key,
|
|
1189
|
+
// nullable FK value). `billingProfile` is a `whenLoaded('billingProfile')`
|
|
1190
|
+
// relation, so it stays optional. (Fix round 1: as of the original Task 16
|
|
1191
|
+
// commit, InvoiceResource hadn't gained `billing_profile_id` yet — it was
|
|
1192
|
+
// added ~4 minutes later in the same session; tightened here now that the
|
|
1193
|
+
// key is always present.)
|
|
1194
|
+
billing_profile_id: z4.number().nullable(),
|
|
1195
|
+
billingProfile: billingProfileSchema.optional(),
|
|
1153
1196
|
company_id: z4.number().optional(),
|
|
1154
1197
|
company: companySchema.optional(),
|
|
1155
1198
|
sequence_number: z4.string().nullable().optional(),
|
|
@@ -1177,6 +1220,9 @@ var invoiceSchema = z4.object({
|
|
|
1177
1220
|
recipient_state: z4.string().nullable().optional(),
|
|
1178
1221
|
recipient_country: z4.string().nullable().optional(),
|
|
1179
1222
|
recipient_vat_id: z4.string().nullable().optional(),
|
|
1223
|
+
// Always computed by InvoiceResource (billingProfile email, else the
|
|
1224
|
+
// membership's user email) — used by InvoiceDialog today but was missing.
|
|
1225
|
+
recipient_email: z4.string().nullable().optional(),
|
|
1180
1226
|
issuer_name: z4.string().nullable().optional(),
|
|
1181
1227
|
issuer_address_street_1: z4.string().nullable().optional(),
|
|
1182
1228
|
issuer_address_street_2: z4.string().nullable().optional(),
|
|
@@ -1577,17 +1623,75 @@ var prePaidPackageSchema = z4.object({
|
|
|
1577
1623
|
assign: zNullableBool
|
|
1578
1624
|
}).optional()
|
|
1579
1625
|
});
|
|
1626
|
+
var prePaidPackageAssignmentSchema = z4.object({
|
|
1627
|
+
id: z4.number(),
|
|
1628
|
+
flight_log_id: z4.number().nullable().optional(),
|
|
1629
|
+
expense_item_id: z4.number().nullable().optional(),
|
|
1630
|
+
pre_paid_package_id: z4.number().nullable().optional(),
|
|
1631
|
+
gross_total: zPhpMoneyObject.nullable().optional(),
|
|
1632
|
+
created_at: z4.string().nullable().optional(),
|
|
1633
|
+
updated_at: z4.string().nullable().optional()
|
|
1634
|
+
});
|
|
1580
1635
|
var expenseItemSchema = z4.object({
|
|
1581
|
-
type
|
|
1636
|
+
// ExpenseItemResource never emits a `type` key; kept optional for
|
|
1637
|
+
// consistency with sibling schemas' discriminated-union literal.
|
|
1638
|
+
type: z4.literal("expenseItem").optional(),
|
|
1582
1639
|
id: z4.number(),
|
|
1640
|
+
date: z4.string(),
|
|
1641
|
+
model_id: z4.number(),
|
|
1642
|
+
model_type: z4.string(),
|
|
1643
|
+
identifier: z4.string().nullable(),
|
|
1644
|
+
// Provenance: the `prices` row this item was generated from. `price_id` is
|
|
1645
|
+
// always present (nullable FK); `price` only when the relation is
|
|
1646
|
+
// eager-loaded.
|
|
1647
|
+
price_id: z4.number().nullable(),
|
|
1648
|
+
price: priceSchema.optional(),
|
|
1649
|
+
description: z4.string(),
|
|
1650
|
+
description_lines: z4.array(z4.any()).nullable(),
|
|
1651
|
+
// Resource emits a trimmed decimal string (trailing zeros/dot stripped),
|
|
1652
|
+
// not a number.
|
|
1653
|
+
quantity: z4.string(),
|
|
1654
|
+
discount: z4.number(),
|
|
1655
|
+
applied_discounts: z4.array(z4.any()).nullable(),
|
|
1656
|
+
status: z4.string(),
|
|
1657
|
+
is_system_controlled: z4.boolean(),
|
|
1658
|
+
deferred: z4.boolean(),
|
|
1659
|
+
invoice_id: z4.number().nullable(),
|
|
1583
1660
|
company_id: z4.number(),
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1661
|
+
membership_id: z4.number(),
|
|
1662
|
+
billing_profile_id: z4.number().nullable(),
|
|
1663
|
+
gross_total_before_vouchers: zPhpMoneyObject,
|
|
1664
|
+
gross_total: zPhpMoneyObject,
|
|
1665
|
+
net_total: zPhpMoneyObject,
|
|
1666
|
+
tax_total: zPhpMoneyObject,
|
|
1667
|
+
// number_format(…, 2) string, not a number.
|
|
1668
|
+
tax_percentage: z4.string(),
|
|
1669
|
+
billable: z4.boolean(),
|
|
1670
|
+
meta: z4.record(z4.string(), z4.any()).nullable(),
|
|
1671
|
+
input_value: z4.number().nullable(),
|
|
1672
|
+
net_gross: zNetGross,
|
|
1673
|
+
refunds_expense_item_id: z4.number().nullable(),
|
|
1589
1674
|
created_at: z4.string(),
|
|
1590
|
-
updated_at: z4.string()
|
|
1675
|
+
updated_at: z4.string(),
|
|
1676
|
+
// Lazy + explicitly typed as ZodTypeAny (so `invoice` infers as `any`
|
|
1677
|
+
// rather than the full Invoice shape): invoiceSchema is large (60+ fields
|
|
1678
|
+
// incl. media/activities), and this field is additionally reached from
|
|
1679
|
+
// courseEnrollmentSchema/bookingSchema/flightLogSchema via their own lazy
|
|
1680
|
+
// expenseItems refs — inlining the full inferred type here blows past TS's
|
|
1681
|
+
// type-serialization size limit (TS7056: "inferred type … exceeds the
|
|
1682
|
+
// maximum length"). No true cycle: invoiceSchema does not reference
|
|
1683
|
+
// expenseItemSchema back.
|
|
1684
|
+
invoice: z4.lazy(() => invoiceSchema).optional(),
|
|
1685
|
+
membership: baseMembershipSchema.optional(),
|
|
1686
|
+
prePaidPackageAssignments: z4.array(prePaidPackageAssignmentSchema).optional(),
|
|
1687
|
+
// Loose record on purpose: gates are policy-reflected server-side and grow
|
|
1688
|
+
// over time — same convention as companySchema/invoiceSchema.
|
|
1689
|
+
can: z4.record(z4.string(), z4.boolean().nullable()).optional(),
|
|
1690
|
+
// Set true only by InvoiceItemSnapshotResource — the immutable,
|
|
1691
|
+
// frozen-at-release line-item shape reused for released/cancelled
|
|
1692
|
+
// invoices (same JSON shape as ExpenseItemResource by design). Absent on
|
|
1693
|
+
// a live ExpenseItemResource payload.
|
|
1694
|
+
is_snapshot: z4.boolean().optional()
|
|
1591
1695
|
});
|
|
1592
1696
|
var waypointSchema = z4.object({
|
|
1593
1697
|
type: z4.literal("waypoint"),
|
|
@@ -2433,6 +2537,7 @@ var TodoKey = z11.enum([
|
|
|
2433
2537
|
"log_booking",
|
|
2434
2538
|
"add_address",
|
|
2435
2539
|
"add_required_documents",
|
|
2540
|
+
"share_document",
|
|
2436
2541
|
"fill_training_record",
|
|
2437
2542
|
"sign_training_record"
|
|
2438
2543
|
]);
|
|
@@ -2532,6 +2637,7 @@ export {
|
|
|
2532
2637
|
documentComplianceStatus,
|
|
2533
2638
|
documentShareSchema,
|
|
2534
2639
|
allowedDocumentTypeSchema,
|
|
2640
|
+
billingProfileSchema,
|
|
2535
2641
|
flightLogSchema,
|
|
2536
2642
|
invoiceSchema,
|
|
2537
2643
|
scheduledFlightSchema,
|
|
@@ -2556,6 +2662,7 @@ export {
|
|
|
2556
2662
|
airplaneIssueSchema,
|
|
2557
2663
|
specialFlightSchema,
|
|
2558
2664
|
prePaidPackageSchema,
|
|
2665
|
+
prePaidPackageAssignmentSchema,
|
|
2559
2666
|
expenseItemSchema,
|
|
2560
2667
|
waypointSchema,
|
|
2561
2668
|
approachTypeSchema,
|
package/dist/index.cjs
CHANGED
|
@@ -183,7 +183,9 @@
|
|
|
183
183
|
|
|
184
184
|
|
|
185
185
|
|
|
186
|
-
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
var _chunk3WKOQDFNcjs = require('./chunk-3WKOQDFN.cjs');
|
|
187
189
|
require('./chunk-DCEOET63.cjs');
|
|
188
190
|
|
|
189
191
|
|
|
@@ -207,7 +209,6 @@ var _chunkMI4YBENQcjs = require('./chunk-MI4YBENQ.cjs');
|
|
|
207
209
|
|
|
208
210
|
|
|
209
211
|
|
|
210
|
-
var _chunkJRVRIKNMcjs = require('./chunk-JRVRIKNM.cjs');
|
|
211
212
|
|
|
212
213
|
|
|
213
214
|
|
|
@@ -215,6 +216,7 @@ var _chunkJRVRIKNMcjs = require('./chunk-JRVRIKNM.cjs');
|
|
|
215
216
|
|
|
216
217
|
|
|
217
218
|
|
|
219
|
+
var _chunkIVMOR5SWcjs = require('./chunk-IVMOR5SW.cjs');
|
|
218
220
|
|
|
219
221
|
|
|
220
222
|
|
|
@@ -229,7 +231,7 @@ var _chunkJRVRIKNMcjs = require('./chunk-JRVRIKNM.cjs');
|
|
|
229
231
|
|
|
230
232
|
|
|
231
233
|
|
|
232
|
-
var
|
|
234
|
+
var _chunkJRVRIKNMcjs = require('./chunk-JRVRIKNM.cjs');
|
|
233
235
|
|
|
234
236
|
|
|
235
237
|
|
|
@@ -472,4 +474,6 @@ var _chunkHQSF3WGFcjs = require('./chunk-HQSF3WGF.cjs');
|
|
|
472
474
|
|
|
473
475
|
|
|
474
476
|
|
|
475
|
-
exports.ALLOWED_GEOMETRY_TYPES = _chunkY26FRSPZcjs.ALLOWED_GEOMETRY_TYPES; exports.ALLOWED_NEWSLETTER_VARIABLES = _chunkY26FRSPZcjs.ALLOWED_NEWSLETTER_VARIABLES; exports.AllUsersBucketSchema = _chunkY26FRSPZcjs.AllUsersBucketSchema; exports.AttachSyllabusElementFormSchema = _chunkY26FRSPZcjs.AttachSyllabusElementFormSchema; exports.AudienceBucketSchema = _chunkY26FRSPZcjs.AudienceBucketSchema; exports.AudienceBucketType = _chunkY26FRSPZcjs.AudienceBucketType; exports.AvatarConversion = _chunkJRVRIKNMcjs.AvatarConversion; exports.BaseModel = _chunkY26FRSPZcjs.BaseModel; exports.ButtonBlockSchema = _chunkY26FRSPZcjs.ButtonBlockSchema; exports.CompanyUsersBucketSchema = _chunkY26FRSPZcjs.CompanyUsersBucketSchema; exports.CourseMilestoneFormSchema = _chunkY26FRSPZcjs.CourseMilestoneFormSchema; exports.CourseMilestoneKindEnum = _chunkY26FRSPZcjs.CourseMilestoneKindEnum; exports.CreateLocationMapFeatureSchema = _chunkY26FRSPZcjs.CreateLocationMapFeatureSchema; exports.CreateLocationMapSchema = _chunkY26FRSPZcjs.CreateLocationMapSchema; exports.CreateNewsletterCampaignInputSchema = _chunkY26FRSPZcjs.CreateNewsletterCampaignInputSchema; exports.CreateNewsletterTemplateInputSchema = _chunkY26FRSPZcjs.CreateNewsletterTemplateInputSchema; exports.CreateSyllabusFromTemplateFormSchema = _chunkY26FRSPZcjs.CreateSyllabusFromTemplateFormSchema; exports.DATE_FORMATS = _chunkIVMOR5SWcjs.DATE_FORMATS; exports.DividerBlockSchema = _chunkY26FRSPZcjs.DividerBlockSchema; exports.DocumentConversion = _chunkJRVRIKNMcjs.DocumentConversion; exports.EnrollmentTrainingStatusEnum = _chunkY26FRSPZcjs.EnrollmentTrainingStatusEnum; exports.FaqSchema = _chunkY26FRSPZcjs.FaqSchema; exports.FaqStatus = _chunkY26FRSPZcjs.FaqStatus; exports.FieldLabelSchema = _chunkY26FRSPZcjs.FieldLabelSchema; exports.FormFieldType = _chunkY26FRSPZcjs.FormFieldType; exports.FormSubmissionSchema = _chunkY26FRSPZcjs.FormSubmissionSchema; exports.FormSubmissionShareBaseSchema = _chunkY26FRSPZcjs.FormSubmissionShareBaseSchema; exports.FormSubmissionShareSchema = _chunkY26FRSPZcjs.FormSubmissionShareSchema; exports.FormSubmissionSource = _chunkY26FRSPZcjs.FormSubmissionSource; exports.FormSubmissionStatus = _chunkY26FRSPZcjs.FormSubmissionStatus; exports.FormTemplateAssignmentSchema = _chunkY26FRSPZcjs.FormTemplateAssignmentSchema; exports.FormTemplateSchema = _chunkY26FRSPZcjs.FormTemplateSchema; exports.GeometrySchema = _chunkY26FRSPZcjs.GeometrySchema; exports.GradingScaleFormSchema = _chunkY26FRSPZcjs.GradingScaleFormSchema; exports.HeaderConversion = _chunkJRVRIKNMcjs.HeaderConversion; exports.HeadingBlockSchema = _chunkY26FRSPZcjs.HeadingBlockSchema; exports.ImageConversion = _chunkJRVRIKNMcjs.ImageConversion; exports.ImportFeaturesSchema = _chunkY26FRSPZcjs.ImportFeaturesSchema; exports.LocationFeatureVisibility = _chunkY26FRSPZcjs.LocationFeatureVisibility; exports.LocationMapKind = _chunkY26FRSPZcjs.LocationMapKind; exports.MediaType = _chunkJRVRIKNMcjs.MediaType; exports.MimeTypes = _chunkJRVRIKNMcjs.MimeTypes; exports.NewsletterAudienceSchema = _chunkY26FRSPZcjs.NewsletterAudienceSchema; exports.NewsletterBlockSchema = _chunkY26FRSPZcjs.NewsletterBlockSchema; exports.NewsletterBlockType = _chunkY26FRSPZcjs.NewsletterBlockType; exports.NewsletterCampaignRecipientSchema = _chunkY26FRSPZcjs.NewsletterCampaignRecipientSchema; exports.NewsletterCampaignSchema = _chunkY26FRSPZcjs.NewsletterCampaignSchema; exports.NewsletterCampaignStatus = _chunkY26FRSPZcjs.NewsletterCampaignStatus; exports.NewsletterCategorySchema = _chunkY26FRSPZcjs.NewsletterCategorySchema; exports.NewsletterPreferenceRowSchema = _chunkY26FRSPZcjs.NewsletterPreferenceRowSchema; exports.NewsletterRecipientStatus = _chunkY26FRSPZcjs.NewsletterRecipientStatus; exports.NewsletterTemplateSchema = _chunkY26FRSPZcjs.NewsletterTemplateSchema; exports.NewsletterTemplateSchemaSchema = _chunkY26FRSPZcjs.NewsletterTemplateSchemaSchema; exports.ParagraphBlockSchema = _chunkY26FRSPZcjs.ParagraphBlockSchema; exports.ReorderSyllabusElementItemSchema = _chunkY26FRSPZcjs.ReorderSyllabusElementItemSchema; exports.RequiredFormSchema = _chunkY26FRSPZcjs.RequiredFormSchema; exports.RequiredFormViaCrewSchema = _chunkY26FRSPZcjs.RequiredFormViaCrewSchema; exports.RequiredFormViaSchema = _chunkY26FRSPZcjs.RequiredFormViaSchema; exports.ReviewFaqSchema = _chunkY26FRSPZcjs.ReviewFaqSchema; exports.RoleMembersBucketSchema = _chunkY26FRSPZcjs.RoleMembersBucketSchema; exports.SAFETY_REPORT_STATUS_COLORS = _chunkY26FRSPZcjs.SAFETY_REPORT_STATUS_COLORS; exports.SAFETY_REPORT_STATUS_LABELS = _chunkY26FRSPZcjs.SAFETY_REPORT_STATUS_LABELS; exports.SafetyReportCategoryFormSchema = _chunkY26FRSPZcjs.SafetyReportCategoryFormSchema; exports.SafetyReportCategorySchema = _chunkY26FRSPZcjs.SafetyReportCategorySchema; exports.SafetyReportFilterSchema = _chunkY26FRSPZcjs.SafetyReportFilterSchema; exports.SafetyReportFormSchema = _chunkY26FRSPZcjs.SafetyReportFormSchema; exports.SafetyReportListResponseSchema = _chunkY26FRSPZcjs.SafetyReportListResponseSchema; exports.SafetyReportMediaSchema = _chunkY26FRSPZcjs.SafetyReportMediaSchema; exports.SafetyReportSchema = _chunkY26FRSPZcjs.SafetyReportSchema; exports.SafetyReportStatusEnum = _chunkY26FRSPZcjs.SafetyReportStatusEnum; exports.SafetyReportSubmissionResponseSchema = _chunkY26FRSPZcjs.SafetyReportSubmissionResponseSchema; exports.SafetyReportUpdateSchema = _chunkY26FRSPZcjs.SafetyReportUpdateSchema; exports.SchemaFieldSchema = _chunkY26FRSPZcjs.SchemaFieldSchema; exports.SchemaSectionSchema = _chunkY26FRSPZcjs.SchemaSectionSchema; exports.ShowWhenSchema = _chunkY26FRSPZcjs.ShowWhenSchema; exports.SignOffTrainingElementFormSchema = _chunkY26FRSPZcjs.SignOffTrainingElementFormSchema; exports.SignatureSchema = _chunkY26FRSPZcjs.SignatureSchema; exports.StoreSyllabusFormSchema = _chunkY26FRSPZcjs.StoreSyllabusFormSchema; exports.SubmissionFileSchema = _chunkY26FRSPZcjs.SubmissionFileSchema; exports.SubmitFaqQuestionSchema = _chunkY26FRSPZcjs.SubmitFaqQuestionSchema; exports.SyllabusKindEnum = _chunkY26FRSPZcjs.SyllabusKindEnum; exports.TIME_FORMATS = _chunkIVMOR5SWcjs.TIME_FORMATS; exports.TemplateSchemaSchema = _chunkY26FRSPZcjs.TemplateSchemaSchema; exports.ThumbnailConversion = _chunkJRVRIKNMcjs.ThumbnailConversion; exports.TipTapNodeSchema = _chunkY26FRSPZcjs.TipTapNodeSchema; exports.TodoActionSchema = _chunkY26FRSPZcjs.TodoActionSchema; exports.TodoKey = _chunkY26FRSPZcjs.TodoKey; exports.TodoSchema = _chunkY26FRSPZcjs.TodoSchema; exports.TrainingElementFormSchema = _chunkY26FRSPZcjs.TrainingElementFormSchema; exports.TrainingElementKindEnum = _chunkY26FRSPZcjs.TrainingElementKindEnum; exports.TrainingRecordResultEnum = _chunkY26FRSPZcjs.TrainingRecordResultEnum; exports.TrainingRecordStatusEnum = _chunkY26FRSPZcjs.TrainingRecordStatusEnum; exports.UpdateLocationMapFeatureSchema = _chunkY26FRSPZcjs.UpdateLocationMapFeatureSchema; exports.UpdateLocationMapSchema = _chunkY26FRSPZcjs.UpdateLocationMapSchema; exports.UpdateSyllabusElementFormSchema = _chunkY26FRSPZcjs.UpdateSyllabusElementFormSchema; exports.UpdateSyllabusFormSchema = _chunkY26FRSPZcjs.UpdateSyllabusFormSchema; exports.UpsertTrainingRecordFormSchema = _chunkY26FRSPZcjs.UpsertTrainingRecordFormSchema; exports.ViewportSchema = _chunkY26FRSPZcjs.ViewportSchema; exports.activitySchema = _chunkY26FRSPZcjs.activitySchema; exports.addressSchema = _chunkY26FRSPZcjs.addressSchema; exports.aircraftPositionSchema = _chunkY26FRSPZcjs.aircraftPositionSchema; exports.aircraftRatingSchema = _chunkY26FRSPZcjs.aircraftRatingSchema; exports.airplaneIssueSchema = _chunkY26FRSPZcjs.airplaneIssueSchema; exports.airplaneIssueSeverityEnum = _chunkY26FRSPZcjs.airplaneIssueSeverityEnum; exports.airplaneIssueStatusEnum = _chunkY26FRSPZcjs.airplaneIssueStatusEnum; exports.airplanePermissionSchema = _chunkY26FRSPZcjs.airplanePermissionSchema; exports.airplaneSchema = _chunkY26FRSPZcjs.airplaneSchema; exports.airplaneShareInviteSchema = _chunkY26FRSPZcjs.airplaneShareInviteSchema; exports.airportSchema = _chunkY26FRSPZcjs.airportSchema; exports.alertSchema = _chunkY26FRSPZcjs.alertSchema; exports.allowedDocumentTypeSchema = _chunkY26FRSPZcjs.allowedDocumentTypeSchema; exports.approachTypeSchema = _chunkY26FRSPZcjs.approachTypeSchema; exports.availSchema = _chunkY26FRSPZcjs.availSchema; exports.baseMembershipSchema = _chunkY26FRSPZcjs.baseMembershipSchema; exports.bookingDuration = _chunkIVMOR5SWcjs.bookingDuration; exports.bookingSchema = _chunkY26FRSPZcjs.bookingSchema; exports.bookingWaypointSchema = _chunkY26FRSPZcjs.bookingWaypointSchema; exports.bytesToHuman = _chunkIVMOR5SWcjs.bytesToHuman; exports.canPreview = _chunkJRVRIKNMcjs.canPreview; exports.commentSchema = _chunkY26FRSPZcjs.commentSchema; exports.companyAudienceInclude = _chunkY26FRSPZcjs.companyAudienceInclude; exports.companySchema = _chunkY26FRSPZcjs.companySchema; exports.contactAttributeSchema = _chunkY26FRSPZcjs.contactAttributeSchema; exports.courseCheckSyllabusSchema = _chunkY26FRSPZcjs.courseCheckSyllabusSchema; exports.courseEnrollmentMetricsSchema = _chunkY26FRSPZcjs.courseEnrollmentMetricsSchema; exports.courseEnrollmentMilestoneSchema = _chunkY26FRSPZcjs.courseEnrollmentMilestoneSchema; exports.courseEnrollmentSchema = _chunkY26FRSPZcjs.courseEnrollmentSchema; exports.courseFeeSchema = _chunkY26FRSPZcjs.courseFeeSchema; exports.courseMilestoneSchema = _chunkY26FRSPZcjs.courseMilestoneSchema; exports.courseSchema = _chunkY26FRSPZcjs.courseSchema; exports.createCrewValidator = _chunkMI4YBENQcjs.createCrewValidator; exports.createSyllabusFromTemplateResultSchema = _chunkY26FRSPZcjs.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 = _chunkY26FRSPZcjs.documentComplianceStatus; exports.documentRequirement = _chunkY26FRSPZcjs.documentRequirement; exports.documentRequirementGroup = _chunkY26FRSPZcjs.documentRequirementGroup; exports.documentRequirementGroupAssignment = _chunkY26FRSPZcjs.documentRequirementGroupAssignment; exports.documentSchema = _chunkY26FRSPZcjs.documentSchema; exports.documentShareSchema = _chunkY26FRSPZcjs.documentShareSchema; exports.documentType = _chunkY26FRSPZcjs.documentType; exports.enrollmentTrainingElementSchema = _chunkY26FRSPZcjs.enrollmentTrainingElementSchema; exports.equipmentSchema = _chunkY26FRSPZcjs.equipmentSchema; exports.eventSchema = _chunkY26FRSPZcjs.eventSchema; exports.expenseItemSchema = _chunkY26FRSPZcjs.expenseItemSchema; exports.expenseSchema = _chunkY26FRSPZcjs.expenseSchema; exports.extendedAirplaneSchema = _chunkY26FRSPZcjs.extendedAirplaneSchema; exports.feeCategoryOptionsSchema = _chunkY26FRSPZcjs.feeCategoryOptionsSchema; exports.feeSchema = _chunkY26FRSPZcjs.feeSchema; exports.flightLogSchema = _chunkY26FRSPZcjs.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 = _chunkY26FRSPZcjs.gradeHistoryItemSchema; exports.gradingScalePointSchema = _chunkY26FRSPZcjs.gradingScalePointSchema; exports.gradingScaleSchema = _chunkY26FRSPZcjs.gradingScaleSchema; exports.hasMembershipRole = _chunkMI4YBENQcjs.hasMembershipRole; exports.impersonationParticipantSchema = _chunkY26FRSPZcjs.impersonationParticipantSchema; exports.impersonationStateSchema = _chunkY26FRSPZcjs.impersonationStateSchema; exports.invalidateTrainingRecordResponseSchema = _chunkY26FRSPZcjs.invalidateTrainingRecordResponseSchema; exports.invoiceSchema = _chunkY26FRSPZcjs.invoiceSchema; exports.landingFeeSchema = _chunkY26FRSPZcjs.landingFeeSchema; exports.landingSchema = _chunkY26FRSPZcjs.landingSchema; exports.maintenanceEventEstimationSchema = _chunkY26FRSPZcjs.maintenanceEventEstimationSchema; exports.maintenanceEventSchema = _chunkY26FRSPZcjs.maintenanceEventSchema; exports.maintenanceStatusSchema = _chunkY26FRSPZcjs.maintenanceStatusSchema; exports.mapMediaConversions = _chunkJRVRIKNMcjs.mapMediaConversions; exports.mediaCollection = _chunkY26FRSPZcjs.mediaCollection; exports.mediaSchema = _chunkY26FRSPZcjs.mediaSchema; exports.membershipSchema = _chunkY26FRSPZcjs.membershipSchema; exports.membershipSignupSchema = _chunkY26FRSPZcjs.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 = _chunkY26FRSPZcjs.postSchema; exports.prePaidPackageSchema = _chunkY26FRSPZcjs.prePaidPackageSchema; exports.priceSchema = _chunkY26FRSPZcjs.priceSchema; exports.qualificationSchema = _chunkY26FRSPZcjs.qualificationSchema; exports.recurringFlightSchema = _chunkY26FRSPZcjs.recurringFlightSchema; exports.roleSchema = _chunkY26FRSPZcjs.roleSchema; exports.runwaySchema = _chunkY26FRSPZcjs.runwaySchema; exports.scheduledFlightSchema = _chunkY26FRSPZcjs.scheduledFlightSchema; exports.settingSchema = _chunkY26FRSPZcjs.settingSchema; exports.specialFlightSchema = _chunkY26FRSPZcjs.specialFlightSchema; exports.syllabusElementMutationResultSchema = _chunkY26FRSPZcjs.syllabusElementMutationResultSchema; exports.syllabusElementSchema = _chunkY26FRSPZcjs.syllabusElementSchema; exports.syllabusRolloutResultItemSchema = _chunkY26FRSPZcjs.syllabusRolloutResultItemSchema; exports.syllabusRolloutResultSchema = _chunkY26FRSPZcjs.syllabusRolloutResultSchema; exports.syllabusRolloutSkippedItemSchema = _chunkY26FRSPZcjs.syllabusRolloutSkippedItemSchema; exports.syllabusSchema = _chunkY26FRSPZcjs.syllabusSchema; exports.tagSchema = _chunkY26FRSPZcjs.tagSchema; exports.ticketSchema = _chunkY26FRSPZcjs.ticketSchema; exports.timeDiffInDays = _chunkIVMOR5SWcjs.timeDiffInDays; exports.timeString = _chunkIVMOR5SWcjs.timeString; exports.timeUntil = _chunkIVMOR5SWcjs.timeUntil; exports.trainingElementSchema = _chunkY26FRSPZcjs.trainingElementSchema; exports.trainingRecordEntryInputSchema = _chunkY26FRSPZcjs.trainingRecordEntryInputSchema; exports.trainingRecordEntrySchema = _chunkY26FRSPZcjs.trainingRecordEntrySchema; exports.trainingRecordSchema = _chunkY26FRSPZcjs.trainingRecordSchema; exports.trainingSignatureSchema = _chunkY26FRSPZcjs.trainingSignatureSchema; exports.trainingTemplatePackSchema = _chunkY26FRSPZcjs.trainingTemplatePackSchema; exports.usedByCourseSchema = _chunkY26FRSPZcjs.usedByCourseSchema; exports.userAircraftRatingSchema = _chunkY26FRSPZcjs.userAircraftRatingSchema; exports.userQualificationSchema = _chunkY26FRSPZcjs.userQualificationSchema; exports.userSchema = _chunkY26FRSPZcjs.userSchema; exports.waypointSchema = _chunkY26FRSPZcjs.waypointSchema; exports.yearString = _chunkIVMOR5SWcjs.yearString; exports.zContactDTO = _chunkY26FRSPZcjs.zContactDTO; exports.zNetGross = _chunkY26FRSPZcjs.zNetGross; exports.zNullableBool = _chunkY26FRSPZcjs.zNullableBool; exports.zPhpMoneyObject = _chunkY26FRSPZcjs.zPhpMoneyObject;
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
exports.ALLOWED_GEOMETRY_TYPES = _chunk3WKOQDFNcjs.ALLOWED_GEOMETRY_TYPES; exports.ALLOWED_NEWSLETTER_VARIABLES = _chunk3WKOQDFNcjs.ALLOWED_NEWSLETTER_VARIABLES; exports.AllUsersBucketSchema = _chunk3WKOQDFNcjs.AllUsersBucketSchema; exports.AttachSyllabusElementFormSchema = _chunk3WKOQDFNcjs.AttachSyllabusElementFormSchema; exports.AudienceBucketSchema = _chunk3WKOQDFNcjs.AudienceBucketSchema; exports.AudienceBucketType = _chunk3WKOQDFNcjs.AudienceBucketType; exports.AvatarConversion = _chunkJRVRIKNMcjs.AvatarConversion; exports.BaseModel = _chunk3WKOQDFNcjs.BaseModel; exports.ButtonBlockSchema = _chunk3WKOQDFNcjs.ButtonBlockSchema; exports.CompanyUsersBucketSchema = _chunk3WKOQDFNcjs.CompanyUsersBucketSchema; exports.CourseMilestoneFormSchema = _chunk3WKOQDFNcjs.CourseMilestoneFormSchema; exports.CourseMilestoneKindEnum = _chunk3WKOQDFNcjs.CourseMilestoneKindEnum; exports.CreateLocationMapFeatureSchema = _chunk3WKOQDFNcjs.CreateLocationMapFeatureSchema; exports.CreateLocationMapSchema = _chunk3WKOQDFNcjs.CreateLocationMapSchema; exports.CreateNewsletterCampaignInputSchema = _chunk3WKOQDFNcjs.CreateNewsletterCampaignInputSchema; exports.CreateNewsletterTemplateInputSchema = _chunk3WKOQDFNcjs.CreateNewsletterTemplateInputSchema; exports.CreateSyllabusFromTemplateFormSchema = _chunk3WKOQDFNcjs.CreateSyllabusFromTemplateFormSchema; exports.DATE_FORMATS = _chunkIVMOR5SWcjs.DATE_FORMATS; exports.DividerBlockSchema = _chunk3WKOQDFNcjs.DividerBlockSchema; exports.DocumentConversion = _chunkJRVRIKNMcjs.DocumentConversion; exports.EnrollmentTrainingStatusEnum = _chunk3WKOQDFNcjs.EnrollmentTrainingStatusEnum; exports.FaqSchema = _chunk3WKOQDFNcjs.FaqSchema; exports.FaqStatus = _chunk3WKOQDFNcjs.FaqStatus; exports.FieldLabelSchema = _chunk3WKOQDFNcjs.FieldLabelSchema; exports.FormFieldType = _chunk3WKOQDFNcjs.FormFieldType; exports.FormSubmissionSchema = _chunk3WKOQDFNcjs.FormSubmissionSchema; exports.FormSubmissionShareBaseSchema = _chunk3WKOQDFNcjs.FormSubmissionShareBaseSchema; exports.FormSubmissionShareSchema = _chunk3WKOQDFNcjs.FormSubmissionShareSchema; exports.FormSubmissionSource = _chunk3WKOQDFNcjs.FormSubmissionSource; exports.FormSubmissionStatus = _chunk3WKOQDFNcjs.FormSubmissionStatus; exports.FormTemplateAssignmentSchema = _chunk3WKOQDFNcjs.FormTemplateAssignmentSchema; exports.FormTemplateSchema = _chunk3WKOQDFNcjs.FormTemplateSchema; exports.GeometrySchema = _chunk3WKOQDFNcjs.GeometrySchema; exports.GradingScaleFormSchema = _chunk3WKOQDFNcjs.GradingScaleFormSchema; exports.HeaderConversion = _chunkJRVRIKNMcjs.HeaderConversion; exports.HeadingBlockSchema = _chunk3WKOQDFNcjs.HeadingBlockSchema; exports.ImageConversion = _chunkJRVRIKNMcjs.ImageConversion; exports.ImportFeaturesSchema = _chunk3WKOQDFNcjs.ImportFeaturesSchema; exports.LocationFeatureVisibility = _chunk3WKOQDFNcjs.LocationFeatureVisibility; exports.LocationMapKind = _chunk3WKOQDFNcjs.LocationMapKind; exports.MediaType = _chunkJRVRIKNMcjs.MediaType; exports.MimeTypes = _chunkJRVRIKNMcjs.MimeTypes; exports.NewsletterAudienceSchema = _chunk3WKOQDFNcjs.NewsletterAudienceSchema; exports.NewsletterBlockSchema = _chunk3WKOQDFNcjs.NewsletterBlockSchema; exports.NewsletterBlockType = _chunk3WKOQDFNcjs.NewsletterBlockType; exports.NewsletterCampaignRecipientSchema = _chunk3WKOQDFNcjs.NewsletterCampaignRecipientSchema; exports.NewsletterCampaignSchema = _chunk3WKOQDFNcjs.NewsletterCampaignSchema; exports.NewsletterCampaignStatus = _chunk3WKOQDFNcjs.NewsletterCampaignStatus; exports.NewsletterCategorySchema = _chunk3WKOQDFNcjs.NewsletterCategorySchema; exports.NewsletterPreferenceRowSchema = _chunk3WKOQDFNcjs.NewsletterPreferenceRowSchema; exports.NewsletterRecipientStatus = _chunk3WKOQDFNcjs.NewsletterRecipientStatus; exports.NewsletterTemplateSchema = _chunk3WKOQDFNcjs.NewsletterTemplateSchema; exports.NewsletterTemplateSchemaSchema = _chunk3WKOQDFNcjs.NewsletterTemplateSchemaSchema; exports.ParagraphBlockSchema = _chunk3WKOQDFNcjs.ParagraphBlockSchema; exports.ReorderSyllabusElementItemSchema = _chunk3WKOQDFNcjs.ReorderSyllabusElementItemSchema; exports.RequiredFormSchema = _chunk3WKOQDFNcjs.RequiredFormSchema; exports.RequiredFormViaCrewSchema = _chunk3WKOQDFNcjs.RequiredFormViaCrewSchema; exports.RequiredFormViaSchema = _chunk3WKOQDFNcjs.RequiredFormViaSchema; exports.ReviewFaqSchema = _chunk3WKOQDFNcjs.ReviewFaqSchema; exports.RoleMembersBucketSchema = _chunk3WKOQDFNcjs.RoleMembersBucketSchema; exports.SAFETY_REPORT_STATUS_COLORS = _chunk3WKOQDFNcjs.SAFETY_REPORT_STATUS_COLORS; exports.SAFETY_REPORT_STATUS_LABELS = _chunk3WKOQDFNcjs.SAFETY_REPORT_STATUS_LABELS; exports.SafetyReportCategoryFormSchema = _chunk3WKOQDFNcjs.SafetyReportCategoryFormSchema; exports.SafetyReportCategorySchema = _chunk3WKOQDFNcjs.SafetyReportCategorySchema; exports.SafetyReportFilterSchema = _chunk3WKOQDFNcjs.SafetyReportFilterSchema; exports.SafetyReportFormSchema = _chunk3WKOQDFNcjs.SafetyReportFormSchema; exports.SafetyReportListResponseSchema = _chunk3WKOQDFNcjs.SafetyReportListResponseSchema; exports.SafetyReportMediaSchema = _chunk3WKOQDFNcjs.SafetyReportMediaSchema; exports.SafetyReportSchema = _chunk3WKOQDFNcjs.SafetyReportSchema; exports.SafetyReportStatusEnum = _chunk3WKOQDFNcjs.SafetyReportStatusEnum; exports.SafetyReportSubmissionResponseSchema = _chunk3WKOQDFNcjs.SafetyReportSubmissionResponseSchema; exports.SafetyReportUpdateSchema = _chunk3WKOQDFNcjs.SafetyReportUpdateSchema; exports.SchemaFieldSchema = _chunk3WKOQDFNcjs.SchemaFieldSchema; exports.SchemaSectionSchema = _chunk3WKOQDFNcjs.SchemaSectionSchema; exports.ShowWhenSchema = _chunk3WKOQDFNcjs.ShowWhenSchema; exports.SignOffTrainingElementFormSchema = _chunk3WKOQDFNcjs.SignOffTrainingElementFormSchema; exports.SignatureSchema = _chunk3WKOQDFNcjs.SignatureSchema; exports.StoreSyllabusFormSchema = _chunk3WKOQDFNcjs.StoreSyllabusFormSchema; exports.SubmissionFileSchema = _chunk3WKOQDFNcjs.SubmissionFileSchema; exports.SubmitFaqQuestionSchema = _chunk3WKOQDFNcjs.SubmitFaqQuestionSchema; exports.SyllabusKindEnum = _chunk3WKOQDFNcjs.SyllabusKindEnum; exports.TIME_FORMATS = _chunkIVMOR5SWcjs.TIME_FORMATS; exports.TemplateSchemaSchema = _chunk3WKOQDFNcjs.TemplateSchemaSchema; exports.ThumbnailConversion = _chunkJRVRIKNMcjs.ThumbnailConversion; exports.TipTapNodeSchema = _chunk3WKOQDFNcjs.TipTapNodeSchema; exports.TodoActionSchema = _chunk3WKOQDFNcjs.TodoActionSchema; exports.TodoKey = _chunk3WKOQDFNcjs.TodoKey; exports.TodoSchema = _chunk3WKOQDFNcjs.TodoSchema; exports.TrainingElementFormSchema = _chunk3WKOQDFNcjs.TrainingElementFormSchema; exports.TrainingElementKindEnum = _chunk3WKOQDFNcjs.TrainingElementKindEnum; exports.TrainingRecordResultEnum = _chunk3WKOQDFNcjs.TrainingRecordResultEnum; exports.TrainingRecordStatusEnum = _chunk3WKOQDFNcjs.TrainingRecordStatusEnum; exports.UpdateLocationMapFeatureSchema = _chunk3WKOQDFNcjs.UpdateLocationMapFeatureSchema; exports.UpdateLocationMapSchema = _chunk3WKOQDFNcjs.UpdateLocationMapSchema; exports.UpdateSyllabusElementFormSchema = _chunk3WKOQDFNcjs.UpdateSyllabusElementFormSchema; exports.UpdateSyllabusFormSchema = _chunk3WKOQDFNcjs.UpdateSyllabusFormSchema; exports.UpsertTrainingRecordFormSchema = _chunk3WKOQDFNcjs.UpsertTrainingRecordFormSchema; exports.ViewportSchema = _chunk3WKOQDFNcjs.ViewportSchema; exports.activitySchema = _chunk3WKOQDFNcjs.activitySchema; exports.addressSchema = _chunk3WKOQDFNcjs.addressSchema; exports.aircraftPositionSchema = _chunk3WKOQDFNcjs.aircraftPositionSchema; exports.aircraftRatingSchema = _chunk3WKOQDFNcjs.aircraftRatingSchema; exports.airplaneIssueSchema = _chunk3WKOQDFNcjs.airplaneIssueSchema; exports.airplaneIssueSeverityEnum = _chunk3WKOQDFNcjs.airplaneIssueSeverityEnum; exports.airplaneIssueStatusEnum = _chunk3WKOQDFNcjs.airplaneIssueStatusEnum; exports.airplanePermissionSchema = _chunk3WKOQDFNcjs.airplanePermissionSchema; exports.airplaneSchema = _chunk3WKOQDFNcjs.airplaneSchema; exports.airplaneShareInviteSchema = _chunk3WKOQDFNcjs.airplaneShareInviteSchema; exports.airportSchema = _chunk3WKOQDFNcjs.airportSchema; exports.alertSchema = _chunk3WKOQDFNcjs.alertSchema; exports.allowedDocumentTypeSchema = _chunk3WKOQDFNcjs.allowedDocumentTypeSchema; exports.approachTypeSchema = _chunk3WKOQDFNcjs.approachTypeSchema; exports.availSchema = _chunk3WKOQDFNcjs.availSchema; exports.baseMembershipSchema = _chunk3WKOQDFNcjs.baseMembershipSchema; exports.billingProfileSchema = _chunk3WKOQDFNcjs.billingProfileSchema; exports.bookingDuration = _chunkIVMOR5SWcjs.bookingDuration; exports.bookingSchema = _chunk3WKOQDFNcjs.bookingSchema; exports.bookingWaypointSchema = _chunk3WKOQDFNcjs.bookingWaypointSchema; exports.bytesToHuman = _chunkIVMOR5SWcjs.bytesToHuman; exports.canPreview = _chunkJRVRIKNMcjs.canPreview; exports.commentSchema = _chunk3WKOQDFNcjs.commentSchema; exports.companyAudienceInclude = _chunk3WKOQDFNcjs.companyAudienceInclude; exports.companySchema = _chunk3WKOQDFNcjs.companySchema; exports.contactAttributeSchema = _chunk3WKOQDFNcjs.contactAttributeSchema; exports.courseCheckSyllabusSchema = _chunk3WKOQDFNcjs.courseCheckSyllabusSchema; exports.courseEnrollmentMetricsSchema = _chunk3WKOQDFNcjs.courseEnrollmentMetricsSchema; exports.courseEnrollmentMilestoneSchema = _chunk3WKOQDFNcjs.courseEnrollmentMilestoneSchema; exports.courseEnrollmentSchema = _chunk3WKOQDFNcjs.courseEnrollmentSchema; exports.courseFeeSchema = _chunk3WKOQDFNcjs.courseFeeSchema; exports.courseMilestoneSchema = _chunk3WKOQDFNcjs.courseMilestoneSchema; exports.courseSchema = _chunk3WKOQDFNcjs.courseSchema; exports.createCrewValidator = _chunkMI4YBENQcjs.createCrewValidator; exports.createSyllabusFromTemplateResultSchema = _chunk3WKOQDFNcjs.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 = _chunk3WKOQDFNcjs.documentComplianceStatus; exports.documentRequirement = _chunk3WKOQDFNcjs.documentRequirement; exports.documentRequirementGroup = _chunk3WKOQDFNcjs.documentRequirementGroup; exports.documentRequirementGroupAssignment = _chunk3WKOQDFNcjs.documentRequirementGroupAssignment; exports.documentSchema = _chunk3WKOQDFNcjs.documentSchema; exports.documentShareSchema = _chunk3WKOQDFNcjs.documentShareSchema; exports.documentType = _chunk3WKOQDFNcjs.documentType; exports.enrollmentTrainingElementSchema = _chunk3WKOQDFNcjs.enrollmentTrainingElementSchema; exports.equipmentSchema = _chunk3WKOQDFNcjs.equipmentSchema; exports.eventSchema = _chunk3WKOQDFNcjs.eventSchema; exports.expenseItemSchema = _chunk3WKOQDFNcjs.expenseItemSchema; exports.expenseSchema = _chunk3WKOQDFNcjs.expenseSchema; exports.extendedAirplaneSchema = _chunk3WKOQDFNcjs.extendedAirplaneSchema; exports.feeCategoryOptionsSchema = _chunk3WKOQDFNcjs.feeCategoryOptionsSchema; exports.feeSchema = _chunk3WKOQDFNcjs.feeSchema; exports.flightLogSchema = _chunk3WKOQDFNcjs.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 = _chunk3WKOQDFNcjs.gradeHistoryItemSchema; exports.gradingScalePointSchema = _chunk3WKOQDFNcjs.gradingScalePointSchema; exports.gradingScaleSchema = _chunk3WKOQDFNcjs.gradingScaleSchema; exports.hasMembershipRole = _chunkMI4YBENQcjs.hasMembershipRole; exports.impersonationParticipantSchema = _chunk3WKOQDFNcjs.impersonationParticipantSchema; exports.impersonationStateSchema = _chunk3WKOQDFNcjs.impersonationStateSchema; exports.invalidateTrainingRecordResponseSchema = _chunk3WKOQDFNcjs.invalidateTrainingRecordResponseSchema; exports.invoiceSchema = _chunk3WKOQDFNcjs.invoiceSchema; exports.landingFeeSchema = _chunk3WKOQDFNcjs.landingFeeSchema; exports.landingSchema = _chunk3WKOQDFNcjs.landingSchema; exports.maintenanceEventEstimationSchema = _chunk3WKOQDFNcjs.maintenanceEventEstimationSchema; exports.maintenanceEventSchema = _chunk3WKOQDFNcjs.maintenanceEventSchema; exports.maintenanceStatusSchema = _chunk3WKOQDFNcjs.maintenanceStatusSchema; exports.mapMediaConversions = _chunkJRVRIKNMcjs.mapMediaConversions; exports.mediaCollection = _chunk3WKOQDFNcjs.mediaCollection; exports.mediaSchema = _chunk3WKOQDFNcjs.mediaSchema; exports.membershipSchema = _chunk3WKOQDFNcjs.membershipSchema; exports.membershipSignupSchema = _chunk3WKOQDFNcjs.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 = _chunk3WKOQDFNcjs.postSchema; exports.prePaidPackageAssignmentSchema = _chunk3WKOQDFNcjs.prePaidPackageAssignmentSchema; exports.prePaidPackageSchema = _chunk3WKOQDFNcjs.prePaidPackageSchema; exports.priceSchema = _chunk3WKOQDFNcjs.priceSchema; exports.qualificationSchema = _chunk3WKOQDFNcjs.qualificationSchema; exports.recurringFlightSchema = _chunk3WKOQDFNcjs.recurringFlightSchema; exports.roleSchema = _chunk3WKOQDFNcjs.roleSchema; exports.runwaySchema = _chunk3WKOQDFNcjs.runwaySchema; exports.scheduledFlightSchema = _chunk3WKOQDFNcjs.scheduledFlightSchema; exports.settingSchema = _chunk3WKOQDFNcjs.settingSchema; exports.specialFlightSchema = _chunk3WKOQDFNcjs.specialFlightSchema; exports.syllabusElementMutationResultSchema = _chunk3WKOQDFNcjs.syllabusElementMutationResultSchema; exports.syllabusElementSchema = _chunk3WKOQDFNcjs.syllabusElementSchema; exports.syllabusRolloutResultItemSchema = _chunk3WKOQDFNcjs.syllabusRolloutResultItemSchema; exports.syllabusRolloutResultSchema = _chunk3WKOQDFNcjs.syllabusRolloutResultSchema; exports.syllabusRolloutSkippedItemSchema = _chunk3WKOQDFNcjs.syllabusRolloutSkippedItemSchema; exports.syllabusSchema = _chunk3WKOQDFNcjs.syllabusSchema; exports.tagSchema = _chunk3WKOQDFNcjs.tagSchema; exports.ticketSchema = _chunk3WKOQDFNcjs.ticketSchema; exports.timeDiffInDays = _chunkIVMOR5SWcjs.timeDiffInDays; exports.timeString = _chunkIVMOR5SWcjs.timeString; exports.timeUntil = _chunkIVMOR5SWcjs.timeUntil; exports.trainingElementSchema = _chunk3WKOQDFNcjs.trainingElementSchema; exports.trainingRecordEntryInputSchema = _chunk3WKOQDFNcjs.trainingRecordEntryInputSchema; exports.trainingRecordEntrySchema = _chunk3WKOQDFNcjs.trainingRecordEntrySchema; exports.trainingRecordSchema = _chunk3WKOQDFNcjs.trainingRecordSchema; exports.trainingSignatureSchema = _chunk3WKOQDFNcjs.trainingSignatureSchema; exports.trainingTemplatePackSchema = _chunk3WKOQDFNcjs.trainingTemplatePackSchema; exports.usedByCourseSchema = _chunk3WKOQDFNcjs.usedByCourseSchema; exports.userAircraftRatingSchema = _chunk3WKOQDFNcjs.userAircraftRatingSchema; exports.userQualificationSchema = _chunk3WKOQDFNcjs.userQualificationSchema; exports.userSchema = _chunk3WKOQDFNcjs.userSchema; exports.waypointSchema = _chunk3WKOQDFNcjs.waypointSchema; exports.yearString = _chunkIVMOR5SWcjs.yearString; exports.zContactDTO = _chunk3WKOQDFNcjs.zContactDTO; exports.zNetGross = _chunk3WKOQDFNcjs.zNetGross; exports.zNullableBool = _chunk3WKOQDFNcjs.zNullableBool; exports.zPhpMoneyObject = _chunk3WKOQDFNcjs.zPhpMoneyObject;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
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, J as InvalidateTrainingRecordResponse, R as ReorderSyllabusElementItem, K as ReorderSyllabusElementItemSchema, L as RequiredForm, M as RequiredFormSchema, N as RequiredFormVia, O as RequiredFormViaCrew, P as RequiredFormViaCrewSchema, Q as RequiredFormViaSchema, S as ReviewFormSubmissionInput, T as SchemaField, U as SchemaFieldSchema, V as SchemaSection, W as SchemaSectionSchema, X as ShowWhen, Y as ShowWhenSchema, Z as SignOffTrainingElementForm, _ as SignOffTrainingElementFormSchema, $ as Signature, a0 as SignatureSchema, a1 as StoreSyllabusForm, a2 as StoreSyllabusFormSchema, a3 as SubmissionFile, a4 as SubmissionFileSchema, a5 as Syllabus, a6 as SyllabusElement, a7 as SyllabusElementMutationResult, a8 as SyllabusKind, a9 as SyllabusKindEnum, aa as SyllabusRolloutResult, ab as SyllabusRolloutResultItem, ac as SyllabusRolloutSkippedItem, ad as TemplateSchema, ae as TemplateSchemaSchema, af as TrainingElement, ag as TrainingElementForm, ah as TrainingElementFormSchema, ai as TrainingElementKind, aj as TrainingElementKindEnum, ak as TrainingRecord, al as TrainingRecordEntry, am as TrainingRecordEntryInput, an as TrainingRecordResult, ao as TrainingRecordResultEnum, ap as TrainingRecordStatus, aq as TrainingRecordStatusEnum, ar as TrainingSignature, as as TrainingTemplatePack, at as UpdateFormTemplateInput, au as UpdateSyllabusElementForm, av as UpdateSyllabusElementFormSchema, aw as UpdateSyllabusForm, ax as UpdateSyllabusFormSchema, ay as UpsertTrainingRecordForm, az as UpsertTrainingRecordFormSchema, aA as UsedByCourse, aB as activitySchema, aC as addressSchema, aD as aircraftPositionSchema, aE as aircraftRatingSchema, aF as airplaneIssueSchema, aG as airplaneIssueSeverityEnum, aH as airplaneIssueStatusEnum, aI as airplanePermissionSchema, aJ as airplaneSchema, aK as airplaneShareInviteSchema, aL as airportSchema, aM as alertSchema, aN as allowedDocumentTypeSchema, aO as approachTypeSchema, aP as availSchema, aQ as baseMembershipSchema, aR as
|
|
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, J as InvalidateTrainingRecordResponse, R as ReorderSyllabusElementItem, K as ReorderSyllabusElementItemSchema, L as RequiredForm, M as RequiredFormSchema, N as RequiredFormVia, O as RequiredFormViaCrew, P as RequiredFormViaCrewSchema, Q as RequiredFormViaSchema, S as ReviewFormSubmissionInput, T as SchemaField, U as SchemaFieldSchema, V as SchemaSection, W as SchemaSectionSchema, X as ShowWhen, Y as ShowWhenSchema, Z as SignOffTrainingElementForm, _ as SignOffTrainingElementFormSchema, $ as Signature, a0 as SignatureSchema, a1 as StoreSyllabusForm, a2 as StoreSyllabusFormSchema, a3 as SubmissionFile, a4 as SubmissionFileSchema, a5 as Syllabus, a6 as SyllabusElement, a7 as SyllabusElementMutationResult, a8 as SyllabusKind, a9 as SyllabusKindEnum, aa as SyllabusRolloutResult, ab as SyllabusRolloutResultItem, ac as SyllabusRolloutSkippedItem, ad as TemplateSchema, ae as TemplateSchemaSchema, af as TrainingElement, ag as TrainingElementForm, ah as TrainingElementFormSchema, ai as TrainingElementKind, aj as TrainingElementKindEnum, ak as TrainingRecord, al as TrainingRecordEntry, am as TrainingRecordEntryInput, an as TrainingRecordResult, ao as TrainingRecordResultEnum, ap as TrainingRecordStatus, aq as TrainingRecordStatusEnum, ar as TrainingSignature, as as TrainingTemplatePack, at as UpdateFormTemplateInput, au as UpdateSyllabusElementForm, av as UpdateSyllabusElementFormSchema, aw as UpdateSyllabusForm, ax as UpdateSyllabusFormSchema, ay as UpsertTrainingRecordForm, az as UpsertTrainingRecordFormSchema, aA as UsedByCourse, aB as activitySchema, aC as addressSchema, aD as aircraftPositionSchema, aE as aircraftRatingSchema, aF as airplaneIssueSchema, aG as airplaneIssueSeverityEnum, aH as airplaneIssueStatusEnum, aI as airplanePermissionSchema, aJ as airplaneSchema, aK as airplaneShareInviteSchema, aL as airportSchema, aM as alertSchema, aN as allowedDocumentTypeSchema, aO as approachTypeSchema, aP as availSchema, aQ as baseMembershipSchema, aR as billingProfileSchema, aS as bookingSchema, aT as bookingWaypointSchema, aU as commentSchema, aV as companySchema, aW as contactAttributeSchema, aX as courseCheckSyllabusSchema, aY as courseEnrollmentMetricsSchema, aZ as courseEnrollmentSchema, a_ as courseFeeSchema, a$ as courseSchema, b0 as createSyllabusFromTemplateResultSchema, b1 as documentComplianceStatus, b2 as documentRequirement, b3 as documentRequirementGroup, b4 as documentRequirementGroupAssignment, b5 as documentSchema, b6 as documentShareSchema, b7 as documentType, b8 as enrollmentTrainingElementSchema, b9 as eventSchema, ba as expenseItemSchema, bb as expenseSchema, bc as extendedAirplaneSchema, bd as feeCategoryOptionsSchema, be as feeSchema, bf as flightLogSchema, bg as gradeHistoryItemSchema, bh as gradingScalePointSchema, bi as gradingScaleSchema, bj as impersonationParticipantSchema, bk as impersonationStateSchema, bl as invalidateTrainingRecordResponseSchema, bm as invoiceSchema, bn as landingFeeSchema, bo as landingSchema, bp as maintenanceEventEstimationSchema, bq as maintenanceEventSchema, br as maintenanceStatusSchema, bs as mediaCollection, bt as mediaSchema, bu as membershipSchema, bv as membershipSignupSchema, bw as postSchema, bx as prePaidPackageAssignmentSchema, by as prePaidPackageSchema, bz as priceSchema, bA as qualificationSchema, bB as recurringFlightSchema, bC as roleSchema, bD as runwaySchema, bE as scheduledFlightSchema, bF as settingSchema, bG as specialFlightSchema, bH as syllabusElementMutationResultSchema, bI as syllabusElementSchema, bJ as syllabusRolloutResultItemSchema, bK as syllabusRolloutResultSchema, bL as syllabusRolloutSkippedItemSchema, bM as syllabusSchema, bN as tagSchema, bO as ticketSchema, bP as trainingElementSchema, bQ as trainingRecordEntryInputSchema, bR as trainingRecordEntrySchema, bS as trainingRecordSchema, bT as trainingSignatureSchema, bU as trainingTemplatePackSchema, bV as usedByCourseSchema, bW as userAircraftRatingSchema, bX as userQualificationSchema, bY as userSchema, bZ as waypointSchema, b_ as zContactDTO, b$ as zNetGross, c0 as zNullableBool, c1 as zPhpMoneyObject } from './training-nljZCLW5.cjs';
|
|
2
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
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';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
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, J as InvalidateTrainingRecordResponse, R as ReorderSyllabusElementItem, K as ReorderSyllabusElementItemSchema, L as RequiredForm, M as RequiredFormSchema, N as RequiredFormVia, O as RequiredFormViaCrew, P as RequiredFormViaCrewSchema, Q as RequiredFormViaSchema, S as ReviewFormSubmissionInput, T as SchemaField, U as SchemaFieldSchema, V as SchemaSection, W as SchemaSectionSchema, X as ShowWhen, Y as ShowWhenSchema, Z as SignOffTrainingElementForm, _ as SignOffTrainingElementFormSchema, $ as Signature, a0 as SignatureSchema, a1 as StoreSyllabusForm, a2 as StoreSyllabusFormSchema, a3 as SubmissionFile, a4 as SubmissionFileSchema, a5 as Syllabus, a6 as SyllabusElement, a7 as SyllabusElementMutationResult, a8 as SyllabusKind, a9 as SyllabusKindEnum, aa as SyllabusRolloutResult, ab as SyllabusRolloutResultItem, ac as SyllabusRolloutSkippedItem, ad as TemplateSchema, ae as TemplateSchemaSchema, af as TrainingElement, ag as TrainingElementForm, ah as TrainingElementFormSchema, ai as TrainingElementKind, aj as TrainingElementKindEnum, ak as TrainingRecord, al as TrainingRecordEntry, am as TrainingRecordEntryInput, an as TrainingRecordResult, ao as TrainingRecordResultEnum, ap as TrainingRecordStatus, aq as TrainingRecordStatusEnum, ar as TrainingSignature, as as TrainingTemplatePack, at as UpdateFormTemplateInput, au as UpdateSyllabusElementForm, av as UpdateSyllabusElementFormSchema, aw as UpdateSyllabusForm, ax as UpdateSyllabusFormSchema, ay as UpsertTrainingRecordForm, az as UpsertTrainingRecordFormSchema, aA as UsedByCourse, aB as activitySchema, aC as addressSchema, aD as aircraftPositionSchema, aE as aircraftRatingSchema, aF as airplaneIssueSchema, aG as airplaneIssueSeverityEnum, aH as airplaneIssueStatusEnum, aI as airplanePermissionSchema, aJ as airplaneSchema, aK as airplaneShareInviteSchema, aL as airportSchema, aM as alertSchema, aN as allowedDocumentTypeSchema, aO as approachTypeSchema, aP as availSchema, aQ as baseMembershipSchema, aR as
|
|
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, J as InvalidateTrainingRecordResponse, R as ReorderSyllabusElementItem, K as ReorderSyllabusElementItemSchema, L as RequiredForm, M as RequiredFormSchema, N as RequiredFormVia, O as RequiredFormViaCrew, P as RequiredFormViaCrewSchema, Q as RequiredFormViaSchema, S as ReviewFormSubmissionInput, T as SchemaField, U as SchemaFieldSchema, V as SchemaSection, W as SchemaSectionSchema, X as ShowWhen, Y as ShowWhenSchema, Z as SignOffTrainingElementForm, _ as SignOffTrainingElementFormSchema, $ as Signature, a0 as SignatureSchema, a1 as StoreSyllabusForm, a2 as StoreSyllabusFormSchema, a3 as SubmissionFile, a4 as SubmissionFileSchema, a5 as Syllabus, a6 as SyllabusElement, a7 as SyllabusElementMutationResult, a8 as SyllabusKind, a9 as SyllabusKindEnum, aa as SyllabusRolloutResult, ab as SyllabusRolloutResultItem, ac as SyllabusRolloutSkippedItem, ad as TemplateSchema, ae as TemplateSchemaSchema, af as TrainingElement, ag as TrainingElementForm, ah as TrainingElementFormSchema, ai as TrainingElementKind, aj as TrainingElementKindEnum, ak as TrainingRecord, al as TrainingRecordEntry, am as TrainingRecordEntryInput, an as TrainingRecordResult, ao as TrainingRecordResultEnum, ap as TrainingRecordStatus, aq as TrainingRecordStatusEnum, ar as TrainingSignature, as as TrainingTemplatePack, at as UpdateFormTemplateInput, au as UpdateSyllabusElementForm, av as UpdateSyllabusElementFormSchema, aw as UpdateSyllabusForm, ax as UpdateSyllabusFormSchema, ay as UpsertTrainingRecordForm, az as UpsertTrainingRecordFormSchema, aA as UsedByCourse, aB as activitySchema, aC as addressSchema, aD as aircraftPositionSchema, aE as aircraftRatingSchema, aF as airplaneIssueSchema, aG as airplaneIssueSeverityEnum, aH as airplaneIssueStatusEnum, aI as airplanePermissionSchema, aJ as airplaneSchema, aK as airplaneShareInviteSchema, aL as airportSchema, aM as alertSchema, aN as allowedDocumentTypeSchema, aO as approachTypeSchema, aP as availSchema, aQ as baseMembershipSchema, aR as billingProfileSchema, aS as bookingSchema, aT as bookingWaypointSchema, aU as commentSchema, aV as companySchema, aW as contactAttributeSchema, aX as courseCheckSyllabusSchema, aY as courseEnrollmentMetricsSchema, aZ as courseEnrollmentSchema, a_ as courseFeeSchema, a$ as courseSchema, b0 as createSyllabusFromTemplateResultSchema, b1 as documentComplianceStatus, b2 as documentRequirement, b3 as documentRequirementGroup, b4 as documentRequirementGroupAssignment, b5 as documentSchema, b6 as documentShareSchema, b7 as documentType, b8 as enrollmentTrainingElementSchema, b9 as eventSchema, ba as expenseItemSchema, bb as expenseSchema, bc as extendedAirplaneSchema, bd as feeCategoryOptionsSchema, be as feeSchema, bf as flightLogSchema, bg as gradeHistoryItemSchema, bh as gradingScalePointSchema, bi as gradingScaleSchema, bj as impersonationParticipantSchema, bk as impersonationStateSchema, bl as invalidateTrainingRecordResponseSchema, bm as invoiceSchema, bn as landingFeeSchema, bo as landingSchema, bp as maintenanceEventEstimationSchema, bq as maintenanceEventSchema, br as maintenanceStatusSchema, bs as mediaCollection, bt as mediaSchema, bu as membershipSchema, bv as membershipSignupSchema, bw as postSchema, bx as prePaidPackageAssignmentSchema, by as prePaidPackageSchema, bz as priceSchema, bA as qualificationSchema, bB as recurringFlightSchema, bC as roleSchema, bD as runwaySchema, bE as scheduledFlightSchema, bF as settingSchema, bG as specialFlightSchema, bH as syllabusElementMutationResultSchema, bI as syllabusElementSchema, bJ as syllabusRolloutResultItemSchema, bK as syllabusRolloutResultSchema, bL as syllabusRolloutSkippedItemSchema, bM as syllabusSchema, bN as tagSchema, bO as ticketSchema, bP as trainingElementSchema, bQ as trainingRecordEntryInputSchema, bR as trainingRecordEntrySchema, bS as trainingRecordSchema, bT as trainingSignatureSchema, bU as trainingTemplatePackSchema, bV as usedByCourseSchema, bW as userAircraftRatingSchema, bX as userQualificationSchema, bY as userSchema, bZ as waypointSchema, b_ as zContactDTO, b$ as zNetGross, c0 as zNullableBool, c1 as zPhpMoneyObject } from './training-nljZCLW5.js';
|
|
2
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
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';
|