@updraft-solutions/mcrit-sdk 0.8.0 → 0.10.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/index.js CHANGED
@@ -104,6 +104,7 @@ import {
104
104
  approachTypeSchema,
105
105
  availSchema,
106
106
  baseMembershipSchema,
107
+ billingProfileSchema,
107
108
  bookingSchema,
108
109
  bookingWaypointSchema,
109
110
  commentSchema,
@@ -151,6 +152,7 @@ import {
151
152
  membershipSchema,
152
153
  membershipSignupSchema,
153
154
  postSchema,
155
+ prePaidPackageAssignmentSchema,
154
156
  prePaidPackageSchema,
155
157
  priceSchema,
156
158
  qualificationSchema,
@@ -183,7 +185,16 @@ import {
183
185
  zNetGross,
184
186
  zNullableBool,
185
187
  zPhpMoneyObject
186
- } from "./chunk-QG44Y5LO.js";
188
+ } from "./chunk-ZKXYKICY.js";
189
+ import "./chunk-2WJHTRIE.js";
190
+ import {
191
+ parseCourse
192
+ } from "./chunk-TJXWL42D.js";
193
+ import {
194
+ createCrewValidator,
195
+ defaultCrewRoleForMembership,
196
+ hasMembershipRole
197
+ } from "./chunk-2M32EOYI.js";
187
198
  import {
188
199
  DATE_FORMATS,
189
200
  TIME_FORMATS,
@@ -206,14 +217,6 @@ import {
206
217
  timeUntil,
207
218
  yearString
208
219
  } from "./chunk-KIMCBEY7.js";
209
- import {
210
- parseCourse
211
- } from "./chunk-TJXWL42D.js";
212
- import {
213
- createCrewValidator,
214
- defaultCrewRoleForMembership,
215
- hasMembershipRole
216
- } from "./chunk-2M32EOYI.js";
217
220
  import {
218
221
  AvatarConversion,
219
222
  DocumentConversion,
@@ -241,7 +244,6 @@ import {
241
244
  import {
242
245
  paginationMeta
243
246
  } from "./chunk-NQV2D3FJ.js";
244
- import "./chunk-2WJHTRIE.js";
245
247
  export {
246
248
  ALLOWED_GEOMETRY_TYPES,
247
249
  ALLOWED_NEWSLETTER_VARIABLES,
@@ -357,6 +359,7 @@ export {
357
359
  approachTypeSchema,
358
360
  availSchema,
359
361
  baseMembershipSchema,
362
+ billingProfileSchema,
360
363
  bookingDuration,
361
364
  bookingSchema,
362
365
  bookingWaypointSchema,
@@ -436,6 +439,7 @@ export {
436
439
  parsePrice,
437
440
  percentage,
438
441
  postSchema,
442
+ prePaidPackageAssignmentSchema,
439
443
  prePaidPackageSchema,
440
444
  priceSchema,
441
445
  qualificationSchema,
@@ -0,0 +1,53 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/sanitize/index.ts
2
+ var richTextSanitizeConfig = {
3
+ ALLOWED_TAGS: [
4
+ "p",
5
+ "br",
6
+ "strong",
7
+ "em",
8
+ "u",
9
+ "s",
10
+ "a",
11
+ "h1",
12
+ "h2",
13
+ "h3",
14
+ "h4",
15
+ "h5",
16
+ "h6",
17
+ "ul",
18
+ "ol",
19
+ "li",
20
+ "blockquote",
21
+ "code",
22
+ "pre"
23
+ ],
24
+ ALLOWED_ATTR: ["href", "target", "rel", "class", "style"],
25
+ ALLOW_DATA_ATTR: false
26
+ };
27
+ var basicTextSanitizeConfig = {
28
+ ALLOWED_TAGS: ["br", "a", "strong", "em", "code", "p"],
29
+ ALLOWED_ATTR: ["href", "target", "rel", "class"],
30
+ ALLOW_DATA_ATTR: false
31
+ };
32
+ var stripSanitizeConfig = {
33
+ ALLOWED_TAGS: [],
34
+ ALLOWED_ATTR: []
35
+ };
36
+ function createHtmlSanitizers(purifier) {
37
+ const sanitize = (html, config) => {
38
+ if (!html) {
39
+ return "";
40
+ }
41
+ return purifier.sanitize(html, config);
42
+ };
43
+ const sanitizeRichText = (html) => sanitize(html, richTextSanitizeConfig);
44
+ const sanitizeBasicText = (html) => sanitize(html, basicTextSanitizeConfig);
45
+ const stripHtml = (html) => sanitize(html, stripSanitizeConfig).replace(/\s+/g, " ").trim();
46
+ return { sanitize, sanitizeRichText, sanitizeBasicText, stripHtml };
47
+ }
48
+
49
+
50
+
51
+
52
+
53
+ exports.basicTextSanitizeConfig = basicTextSanitizeConfig; exports.createHtmlSanitizers = createHtmlSanitizers; exports.richTextSanitizeConfig = richTextSanitizeConfig; exports.stripSanitizeConfig = stripSanitizeConfig;
@@ -0,0 +1,50 @@
1
+ /**
2
+ * Shared HTML-sanitizing policy for TipTap rich text (posts, knowledge
3
+ * articles, …). The allow-lists live HERE so the app that writes content
4
+ * (mcrit-app) and the surfaces that render it (homepage, future clients)
5
+ * can never drift apart — a drift would mean content is sanitized
6
+ * differently where it's written versus where it's publicly shown.
7
+ *
8
+ * The SDK deliberately has no DOMPurify dependency: consumers pass their
9
+ * own instance to {@link createHtmlSanitizers} (browser DOMPurify,
10
+ * isomorphic-dompurify on SSR, …).
11
+ */
12
+ /** Structural subset of DOMPurify we rely on — keeps it a peer concern. */
13
+ interface HtmlPurifier {
14
+ sanitize(html: string, config?: Record<string, unknown>): string;
15
+ }
16
+ /**
17
+ * Rich text from the TipTap post editor: common formatting, headings,
18
+ * links, lists, quotes and code.
19
+ */
20
+ declare const richTextSanitizeConfig: {
21
+ readonly ALLOWED_TAGS: readonly ["p", "br", "strong", "em", "u", "s", "a", "h1", "h2", "h3", "h4", "h5", "h6", "ul", "ol", "li", "blockquote", "code", "pre"];
22
+ readonly ALLOWED_ATTR: readonly ["href", "target", "rel", "class", "style"];
23
+ readonly ALLOW_DATA_ATTR: false;
24
+ };
25
+ /** Minimal inline formatting — simple comments and basic text fields. */
26
+ declare const basicTextSanitizeConfig: {
27
+ readonly ALLOWED_TAGS: readonly ["br", "a", "strong", "em", "code", "p"];
28
+ readonly ALLOWED_ATTR: readonly ["href", "target", "rel", "class"];
29
+ readonly ALLOW_DATA_ATTR: false;
30
+ };
31
+ /** Everything stripped — plain-text snippets and previews. */
32
+ declare const stripSanitizeConfig: {
33
+ readonly ALLOWED_TAGS: readonly [];
34
+ readonly ALLOWED_ATTR: readonly [];
35
+ };
36
+ /**
37
+ * Bind the shared policies to a DOMPurify(-compatible) instance.
38
+ *
39
+ * @example
40
+ * import DOMPurify from "dompurify";
41
+ * const { sanitizeRichText, stripHtml } = createHtmlSanitizers(DOMPurify);
42
+ */
43
+ declare function createHtmlSanitizers(purifier: HtmlPurifier): {
44
+ sanitize: (html: string | null | undefined, config?: Record<string, unknown>) => string;
45
+ sanitizeRichText: (html: string | null | undefined) => string;
46
+ sanitizeBasicText: (html: string | null | undefined) => string;
47
+ stripHtml: (html: string | null | undefined) => string;
48
+ };
49
+
50
+ export { type HtmlPurifier, basicTextSanitizeConfig, createHtmlSanitizers, richTextSanitizeConfig, stripSanitizeConfig };
@@ -0,0 +1,50 @@
1
+ /**
2
+ * Shared HTML-sanitizing policy for TipTap rich text (posts, knowledge
3
+ * articles, …). The allow-lists live HERE so the app that writes content
4
+ * (mcrit-app) and the surfaces that render it (homepage, future clients)
5
+ * can never drift apart — a drift would mean content is sanitized
6
+ * differently where it's written versus where it's publicly shown.
7
+ *
8
+ * The SDK deliberately has no DOMPurify dependency: consumers pass their
9
+ * own instance to {@link createHtmlSanitizers} (browser DOMPurify,
10
+ * isomorphic-dompurify on SSR, …).
11
+ */
12
+ /** Structural subset of DOMPurify we rely on — keeps it a peer concern. */
13
+ interface HtmlPurifier {
14
+ sanitize(html: string, config?: Record<string, unknown>): string;
15
+ }
16
+ /**
17
+ * Rich text from the TipTap post editor: common formatting, headings,
18
+ * links, lists, quotes and code.
19
+ */
20
+ declare const richTextSanitizeConfig: {
21
+ readonly ALLOWED_TAGS: readonly ["p", "br", "strong", "em", "u", "s", "a", "h1", "h2", "h3", "h4", "h5", "h6", "ul", "ol", "li", "blockquote", "code", "pre"];
22
+ readonly ALLOWED_ATTR: readonly ["href", "target", "rel", "class", "style"];
23
+ readonly ALLOW_DATA_ATTR: false;
24
+ };
25
+ /** Minimal inline formatting — simple comments and basic text fields. */
26
+ declare const basicTextSanitizeConfig: {
27
+ readonly ALLOWED_TAGS: readonly ["br", "a", "strong", "em", "code", "p"];
28
+ readonly ALLOWED_ATTR: readonly ["href", "target", "rel", "class"];
29
+ readonly ALLOW_DATA_ATTR: false;
30
+ };
31
+ /** Everything stripped — plain-text snippets and previews. */
32
+ declare const stripSanitizeConfig: {
33
+ readonly ALLOWED_TAGS: readonly [];
34
+ readonly ALLOWED_ATTR: readonly [];
35
+ };
36
+ /**
37
+ * Bind the shared policies to a DOMPurify(-compatible) instance.
38
+ *
39
+ * @example
40
+ * import DOMPurify from "dompurify";
41
+ * const { sanitizeRichText, stripHtml } = createHtmlSanitizers(DOMPurify);
42
+ */
43
+ declare function createHtmlSanitizers(purifier: HtmlPurifier): {
44
+ sanitize: (html: string | null | undefined, config?: Record<string, unknown>) => string;
45
+ sanitizeRichText: (html: string | null | undefined) => string;
46
+ sanitizeBasicText: (html: string | null | undefined) => string;
47
+ stripHtml: (html: string | null | undefined) => string;
48
+ };
49
+
50
+ export { type HtmlPurifier, basicTextSanitizeConfig, createHtmlSanitizers, richTextSanitizeConfig, stripSanitizeConfig };
@@ -0,0 +1,53 @@
1
+ // src/sanitize/index.ts
2
+ var richTextSanitizeConfig = {
3
+ ALLOWED_TAGS: [
4
+ "p",
5
+ "br",
6
+ "strong",
7
+ "em",
8
+ "u",
9
+ "s",
10
+ "a",
11
+ "h1",
12
+ "h2",
13
+ "h3",
14
+ "h4",
15
+ "h5",
16
+ "h6",
17
+ "ul",
18
+ "ol",
19
+ "li",
20
+ "blockquote",
21
+ "code",
22
+ "pre"
23
+ ],
24
+ ALLOWED_ATTR: ["href", "target", "rel", "class", "style"],
25
+ ALLOW_DATA_ATTR: false
26
+ };
27
+ var basicTextSanitizeConfig = {
28
+ ALLOWED_TAGS: ["br", "a", "strong", "em", "code", "p"],
29
+ ALLOWED_ATTR: ["href", "target", "rel", "class"],
30
+ ALLOW_DATA_ATTR: false
31
+ };
32
+ var stripSanitizeConfig = {
33
+ ALLOWED_TAGS: [],
34
+ ALLOWED_ATTR: []
35
+ };
36
+ function createHtmlSanitizers(purifier) {
37
+ const sanitize = (html, config) => {
38
+ if (!html) {
39
+ return "";
40
+ }
41
+ return purifier.sanitize(html, config);
42
+ };
43
+ const sanitizeRichText = (html) => sanitize(html, richTextSanitizeConfig);
44
+ const sanitizeBasicText = (html) => sanitize(html, basicTextSanitizeConfig);
45
+ const stripHtml = (html) => sanitize(html, stripSanitizeConfig).replace(/\s+/g, " ").trim();
46
+ return { sanitize, sanitizeRichText, sanitizeBasicText, stripHtml };
47
+ }
48
+ export {
49
+ basicTextSanitizeConfig,
50
+ createHtmlSanitizers,
51
+ richTextSanitizeConfig,
52
+ stripSanitizeConfig
53
+ };
@@ -183,9 +183,9 @@
183
183
 
184
184
 
185
185
 
186
- var _chunkTDONQRKUcjs = require('../chunk-TDONQRKU.cjs');
187
186
 
188
187
 
188
+ var _chunkIDEPTVFFcjs = require('../chunk-IDEPTVFF.cjs');
189
189
 
190
190
 
191
191
 
@@ -369,4 +369,8 @@ var _chunkTDONQRKUcjs = require('../chunk-TDONQRKU.cjs');
369
369
 
370
370
 
371
371
 
372
- exports.ALLOWED_GEOMETRY_TYPES = _chunkTDONQRKUcjs.ALLOWED_GEOMETRY_TYPES; exports.ALLOWED_NEWSLETTER_VARIABLES = _chunkTDONQRKUcjs.ALLOWED_NEWSLETTER_VARIABLES; exports.AllUsersBucketSchema = _chunkTDONQRKUcjs.AllUsersBucketSchema; exports.AttachSyllabusElementFormSchema = _chunkTDONQRKUcjs.AttachSyllabusElementFormSchema; exports.AudienceBucketSchema = _chunkTDONQRKUcjs.AudienceBucketSchema; exports.AudienceBucketType = _chunkTDONQRKUcjs.AudienceBucketType; exports.BaseModel = _chunkTDONQRKUcjs.BaseModel; exports.ButtonBlockSchema = _chunkTDONQRKUcjs.ButtonBlockSchema; exports.CompanyUsersBucketSchema = _chunkTDONQRKUcjs.CompanyUsersBucketSchema; exports.CourseMilestoneFormSchema = _chunkTDONQRKUcjs.CourseMilestoneFormSchema; exports.CourseMilestoneKindEnum = _chunkTDONQRKUcjs.CourseMilestoneKindEnum; exports.CreateLocationMapFeatureSchema = _chunkTDONQRKUcjs.CreateLocationMapFeatureSchema; exports.CreateLocationMapSchema = _chunkTDONQRKUcjs.CreateLocationMapSchema; exports.CreateNewsletterCampaignInputSchema = _chunkTDONQRKUcjs.CreateNewsletterCampaignInputSchema; exports.CreateNewsletterTemplateInputSchema = _chunkTDONQRKUcjs.CreateNewsletterTemplateInputSchema; exports.CreateSyllabusFromTemplateFormSchema = _chunkTDONQRKUcjs.CreateSyllabusFromTemplateFormSchema; exports.DividerBlockSchema = _chunkTDONQRKUcjs.DividerBlockSchema; exports.EnrollmentTrainingStatusEnum = _chunkTDONQRKUcjs.EnrollmentTrainingStatusEnum; exports.FaqSchema = _chunkTDONQRKUcjs.FaqSchema; exports.FaqStatus = _chunkTDONQRKUcjs.FaqStatus; exports.FieldLabelSchema = _chunkTDONQRKUcjs.FieldLabelSchema; exports.FormFieldType = _chunkTDONQRKUcjs.FormFieldType; exports.FormSubmissionSchema = _chunkTDONQRKUcjs.FormSubmissionSchema; exports.FormSubmissionShareBaseSchema = _chunkTDONQRKUcjs.FormSubmissionShareBaseSchema; exports.FormSubmissionShareSchema = _chunkTDONQRKUcjs.FormSubmissionShareSchema; exports.FormSubmissionSource = _chunkTDONQRKUcjs.FormSubmissionSource; exports.FormSubmissionStatus = _chunkTDONQRKUcjs.FormSubmissionStatus; exports.FormTemplateAssignmentSchema = _chunkTDONQRKUcjs.FormTemplateAssignmentSchema; exports.FormTemplateSchema = _chunkTDONQRKUcjs.FormTemplateSchema; exports.GeometrySchema = _chunkTDONQRKUcjs.GeometrySchema; exports.GradingScaleFormSchema = _chunkTDONQRKUcjs.GradingScaleFormSchema; exports.HeadingBlockSchema = _chunkTDONQRKUcjs.HeadingBlockSchema; exports.ImportFeaturesSchema = _chunkTDONQRKUcjs.ImportFeaturesSchema; exports.LocationFeatureVisibility = _chunkTDONQRKUcjs.LocationFeatureVisibility; exports.LocationMapKind = _chunkTDONQRKUcjs.LocationMapKind; exports.NewsletterAudienceSchema = _chunkTDONQRKUcjs.NewsletterAudienceSchema; exports.NewsletterBlockSchema = _chunkTDONQRKUcjs.NewsletterBlockSchema; exports.NewsletterBlockType = _chunkTDONQRKUcjs.NewsletterBlockType; exports.NewsletterCampaignRecipientSchema = _chunkTDONQRKUcjs.NewsletterCampaignRecipientSchema; exports.NewsletterCampaignSchema = _chunkTDONQRKUcjs.NewsletterCampaignSchema; exports.NewsletterCampaignStatus = _chunkTDONQRKUcjs.NewsletterCampaignStatus; exports.NewsletterCategorySchema = _chunkTDONQRKUcjs.NewsletterCategorySchema; exports.NewsletterPreferenceRowSchema = _chunkTDONQRKUcjs.NewsletterPreferenceRowSchema; exports.NewsletterRecipientStatus = _chunkTDONQRKUcjs.NewsletterRecipientStatus; exports.NewsletterTemplateSchema = _chunkTDONQRKUcjs.NewsletterTemplateSchema; exports.NewsletterTemplateSchemaSchema = _chunkTDONQRKUcjs.NewsletterTemplateSchemaSchema; exports.ParagraphBlockSchema = _chunkTDONQRKUcjs.ParagraphBlockSchema; exports.ReorderSyllabusElementItemSchema = _chunkTDONQRKUcjs.ReorderSyllabusElementItemSchema; exports.RequiredFormSchema = _chunkTDONQRKUcjs.RequiredFormSchema; exports.RequiredFormViaCrewSchema = _chunkTDONQRKUcjs.RequiredFormViaCrewSchema; exports.RequiredFormViaSchema = _chunkTDONQRKUcjs.RequiredFormViaSchema; exports.ReviewFaqSchema = _chunkTDONQRKUcjs.ReviewFaqSchema; exports.RoleMembersBucketSchema = _chunkTDONQRKUcjs.RoleMembersBucketSchema; exports.SAFETY_REPORT_STATUS_COLORS = _chunkTDONQRKUcjs.SAFETY_REPORT_STATUS_COLORS; exports.SAFETY_REPORT_STATUS_LABELS = _chunkTDONQRKUcjs.SAFETY_REPORT_STATUS_LABELS; exports.SafetyReportCategoryFormSchema = _chunkTDONQRKUcjs.SafetyReportCategoryFormSchema; exports.SafetyReportCategorySchema = _chunkTDONQRKUcjs.SafetyReportCategorySchema; exports.SafetyReportFilterSchema = _chunkTDONQRKUcjs.SafetyReportFilterSchema; exports.SafetyReportFormSchema = _chunkTDONQRKUcjs.SafetyReportFormSchema; exports.SafetyReportListResponseSchema = _chunkTDONQRKUcjs.SafetyReportListResponseSchema; exports.SafetyReportMediaSchema = _chunkTDONQRKUcjs.SafetyReportMediaSchema; exports.SafetyReportSchema = _chunkTDONQRKUcjs.SafetyReportSchema; exports.SafetyReportStatusEnum = _chunkTDONQRKUcjs.SafetyReportStatusEnum; exports.SafetyReportSubmissionResponseSchema = _chunkTDONQRKUcjs.SafetyReportSubmissionResponseSchema; exports.SafetyReportUpdateSchema = _chunkTDONQRKUcjs.SafetyReportUpdateSchema; exports.SchemaFieldSchema = _chunkTDONQRKUcjs.SchemaFieldSchema; exports.SchemaSectionSchema = _chunkTDONQRKUcjs.SchemaSectionSchema; exports.ShowWhenSchema = _chunkTDONQRKUcjs.ShowWhenSchema; exports.SignOffTrainingElementFormSchema = _chunkTDONQRKUcjs.SignOffTrainingElementFormSchema; exports.SignatureSchema = _chunkTDONQRKUcjs.SignatureSchema; exports.StoreSyllabusFormSchema = _chunkTDONQRKUcjs.StoreSyllabusFormSchema; exports.SubmissionFileSchema = _chunkTDONQRKUcjs.SubmissionFileSchema; exports.SubmitFaqQuestionSchema = _chunkTDONQRKUcjs.SubmitFaqQuestionSchema; exports.SyllabusKindEnum = _chunkTDONQRKUcjs.SyllabusKindEnum; exports.TemplateSchemaSchema = _chunkTDONQRKUcjs.TemplateSchemaSchema; exports.TipTapNodeSchema = _chunkTDONQRKUcjs.TipTapNodeSchema; exports.TodoActionSchema = _chunkTDONQRKUcjs.TodoActionSchema; exports.TodoKey = _chunkTDONQRKUcjs.TodoKey; exports.TodoSchema = _chunkTDONQRKUcjs.TodoSchema; exports.TrainingElementFormSchema = _chunkTDONQRKUcjs.TrainingElementFormSchema; exports.TrainingElementKindEnum = _chunkTDONQRKUcjs.TrainingElementKindEnum; exports.TrainingRecordResultEnum = _chunkTDONQRKUcjs.TrainingRecordResultEnum; exports.TrainingRecordStatusEnum = _chunkTDONQRKUcjs.TrainingRecordStatusEnum; exports.UpdateLocationMapFeatureSchema = _chunkTDONQRKUcjs.UpdateLocationMapFeatureSchema; exports.UpdateLocationMapSchema = _chunkTDONQRKUcjs.UpdateLocationMapSchema; exports.UpdateSyllabusElementFormSchema = _chunkTDONQRKUcjs.UpdateSyllabusElementFormSchema; exports.UpdateSyllabusFormSchema = _chunkTDONQRKUcjs.UpdateSyllabusFormSchema; exports.UpsertTrainingRecordFormSchema = _chunkTDONQRKUcjs.UpsertTrainingRecordFormSchema; exports.ViewportSchema = _chunkTDONQRKUcjs.ViewportSchema; exports.activitySchema = _chunkTDONQRKUcjs.activitySchema; exports.addressSchema = _chunkTDONQRKUcjs.addressSchema; exports.aircraftPositionSchema = _chunkTDONQRKUcjs.aircraftPositionSchema; exports.aircraftRatingSchema = _chunkTDONQRKUcjs.aircraftRatingSchema; exports.airplaneIssueSchema = _chunkTDONQRKUcjs.airplaneIssueSchema; exports.airplaneIssueSeverityEnum = _chunkTDONQRKUcjs.airplaneIssueSeverityEnum; exports.airplaneIssueStatusEnum = _chunkTDONQRKUcjs.airplaneIssueStatusEnum; exports.airplanePermissionSchema = _chunkTDONQRKUcjs.airplanePermissionSchema; exports.airplaneSchema = _chunkTDONQRKUcjs.airplaneSchema; exports.airplaneShareInviteSchema = _chunkTDONQRKUcjs.airplaneShareInviteSchema; exports.airportSchema = _chunkTDONQRKUcjs.airportSchema; exports.alertSchema = _chunkTDONQRKUcjs.alertSchema; exports.allowedDocumentTypeSchema = _chunkTDONQRKUcjs.allowedDocumentTypeSchema; exports.approachTypeSchema = _chunkTDONQRKUcjs.approachTypeSchema; exports.availSchema = _chunkTDONQRKUcjs.availSchema; exports.baseMembershipSchema = _chunkTDONQRKUcjs.baseMembershipSchema; exports.bookingSchema = _chunkTDONQRKUcjs.bookingSchema; exports.bookingWaypointSchema = _chunkTDONQRKUcjs.bookingWaypointSchema; exports.commentSchema = _chunkTDONQRKUcjs.commentSchema; exports.companyAudienceInclude = _chunkTDONQRKUcjs.companyAudienceInclude; exports.companySchema = _chunkTDONQRKUcjs.companySchema; exports.contactAttributeSchema = _chunkTDONQRKUcjs.contactAttributeSchema; exports.courseCheckSyllabusSchema = _chunkTDONQRKUcjs.courseCheckSyllabusSchema; exports.courseEnrollmentMetricsSchema = _chunkTDONQRKUcjs.courseEnrollmentMetricsSchema; exports.courseEnrollmentMilestoneSchema = _chunkTDONQRKUcjs.courseEnrollmentMilestoneSchema; exports.courseEnrollmentSchema = _chunkTDONQRKUcjs.courseEnrollmentSchema; exports.courseFeeSchema = _chunkTDONQRKUcjs.courseFeeSchema; exports.courseMilestoneSchema = _chunkTDONQRKUcjs.courseMilestoneSchema; exports.courseSchema = _chunkTDONQRKUcjs.courseSchema; exports.createSyllabusFromTemplateResultSchema = _chunkTDONQRKUcjs.createSyllabusFromTemplateResultSchema; exports.documentComplianceStatus = _chunkTDONQRKUcjs.documentComplianceStatus; exports.documentRequirement = _chunkTDONQRKUcjs.documentRequirement; exports.documentRequirementGroup = _chunkTDONQRKUcjs.documentRequirementGroup; exports.documentRequirementGroupAssignment = _chunkTDONQRKUcjs.documentRequirementGroupAssignment; exports.documentSchema = _chunkTDONQRKUcjs.documentSchema; exports.documentShareSchema = _chunkTDONQRKUcjs.documentShareSchema; exports.documentType = _chunkTDONQRKUcjs.documentType; exports.enrollmentTrainingElementSchema = _chunkTDONQRKUcjs.enrollmentTrainingElementSchema; exports.equipmentSchema = _chunkTDONQRKUcjs.equipmentSchema; exports.eventSchema = _chunkTDONQRKUcjs.eventSchema; exports.expenseItemSchema = _chunkTDONQRKUcjs.expenseItemSchema; exports.expenseSchema = _chunkTDONQRKUcjs.expenseSchema; exports.extendedAirplaneSchema = _chunkTDONQRKUcjs.extendedAirplaneSchema; exports.feeCategoryOptionsSchema = _chunkTDONQRKUcjs.feeCategoryOptionsSchema; exports.feeSchema = _chunkTDONQRKUcjs.feeSchema; exports.flightLogSchema = _chunkTDONQRKUcjs.flightLogSchema; exports.gradeHistoryItemSchema = _chunkTDONQRKUcjs.gradeHistoryItemSchema; exports.gradingScalePointSchema = _chunkTDONQRKUcjs.gradingScalePointSchema; exports.gradingScaleSchema = _chunkTDONQRKUcjs.gradingScaleSchema; exports.impersonationParticipantSchema = _chunkTDONQRKUcjs.impersonationParticipantSchema; exports.impersonationStateSchema = _chunkTDONQRKUcjs.impersonationStateSchema; exports.invalidateTrainingRecordResponseSchema = _chunkTDONQRKUcjs.invalidateTrainingRecordResponseSchema; exports.invoiceSchema = _chunkTDONQRKUcjs.invoiceSchema; exports.landingFeeSchema = _chunkTDONQRKUcjs.landingFeeSchema; exports.landingSchema = _chunkTDONQRKUcjs.landingSchema; exports.maintenanceEventEstimationSchema = _chunkTDONQRKUcjs.maintenanceEventEstimationSchema; exports.maintenanceEventSchema = _chunkTDONQRKUcjs.maintenanceEventSchema; exports.maintenanceStatusSchema = _chunkTDONQRKUcjs.maintenanceStatusSchema; exports.mediaCollection = _chunkTDONQRKUcjs.mediaCollection; exports.mediaSchema = _chunkTDONQRKUcjs.mediaSchema; exports.membershipSchema = _chunkTDONQRKUcjs.membershipSchema; exports.membershipSignupSchema = _chunkTDONQRKUcjs.membershipSignupSchema; exports.postSchema = _chunkTDONQRKUcjs.postSchema; exports.prePaidPackageSchema = _chunkTDONQRKUcjs.prePaidPackageSchema; exports.priceSchema = _chunkTDONQRKUcjs.priceSchema; exports.qualificationSchema = _chunkTDONQRKUcjs.qualificationSchema; exports.recurringFlightSchema = _chunkTDONQRKUcjs.recurringFlightSchema; exports.roleSchema = _chunkTDONQRKUcjs.roleSchema; exports.runwaySchema = _chunkTDONQRKUcjs.runwaySchema; exports.scheduledFlightSchema = _chunkTDONQRKUcjs.scheduledFlightSchema; exports.settingSchema = _chunkTDONQRKUcjs.settingSchema; exports.specialFlightSchema = _chunkTDONQRKUcjs.specialFlightSchema; exports.syllabusElementMutationResultSchema = _chunkTDONQRKUcjs.syllabusElementMutationResultSchema; exports.syllabusElementSchema = _chunkTDONQRKUcjs.syllabusElementSchema; exports.syllabusRolloutResultItemSchema = _chunkTDONQRKUcjs.syllabusRolloutResultItemSchema; exports.syllabusRolloutResultSchema = _chunkTDONQRKUcjs.syllabusRolloutResultSchema; exports.syllabusRolloutSkippedItemSchema = _chunkTDONQRKUcjs.syllabusRolloutSkippedItemSchema; exports.syllabusSchema = _chunkTDONQRKUcjs.syllabusSchema; exports.tagSchema = _chunkTDONQRKUcjs.tagSchema; exports.ticketSchema = _chunkTDONQRKUcjs.ticketSchema; exports.trainingElementSchema = _chunkTDONQRKUcjs.trainingElementSchema; exports.trainingRecordEntryInputSchema = _chunkTDONQRKUcjs.trainingRecordEntryInputSchema; exports.trainingRecordEntrySchema = _chunkTDONQRKUcjs.trainingRecordEntrySchema; exports.trainingRecordSchema = _chunkTDONQRKUcjs.trainingRecordSchema; exports.trainingSignatureSchema = _chunkTDONQRKUcjs.trainingSignatureSchema; exports.trainingTemplatePackSchema = _chunkTDONQRKUcjs.trainingTemplatePackSchema; exports.usedByCourseSchema = _chunkTDONQRKUcjs.usedByCourseSchema; exports.userAircraftRatingSchema = _chunkTDONQRKUcjs.userAircraftRatingSchema; exports.userQualificationSchema = _chunkTDONQRKUcjs.userQualificationSchema; exports.userSchema = _chunkTDONQRKUcjs.userSchema; exports.waypointSchema = _chunkTDONQRKUcjs.waypointSchema; exports.zContactDTO = _chunkTDONQRKUcjs.zContactDTO; exports.zNetGross = _chunkTDONQRKUcjs.zNetGross; exports.zNullableBool = _chunkTDONQRKUcjs.zNullableBool; exports.zPhpMoneyObject = _chunkTDONQRKUcjs.zPhpMoneyObject;
372
+
373
+
374
+
375
+
376
+ exports.ALLOWED_GEOMETRY_TYPES = _chunkIDEPTVFFcjs.ALLOWED_GEOMETRY_TYPES; exports.ALLOWED_NEWSLETTER_VARIABLES = _chunkIDEPTVFFcjs.ALLOWED_NEWSLETTER_VARIABLES; exports.AllUsersBucketSchema = _chunkIDEPTVFFcjs.AllUsersBucketSchema; exports.AttachSyllabusElementFormSchema = _chunkIDEPTVFFcjs.AttachSyllabusElementFormSchema; exports.AudienceBucketSchema = _chunkIDEPTVFFcjs.AudienceBucketSchema; exports.AudienceBucketType = _chunkIDEPTVFFcjs.AudienceBucketType; exports.BaseModel = _chunkIDEPTVFFcjs.BaseModel; exports.ButtonBlockSchema = _chunkIDEPTVFFcjs.ButtonBlockSchema; exports.CompanyUsersBucketSchema = _chunkIDEPTVFFcjs.CompanyUsersBucketSchema; exports.CourseMilestoneFormSchema = _chunkIDEPTVFFcjs.CourseMilestoneFormSchema; exports.CourseMilestoneKindEnum = _chunkIDEPTVFFcjs.CourseMilestoneKindEnum; exports.CreateLocationMapFeatureSchema = _chunkIDEPTVFFcjs.CreateLocationMapFeatureSchema; exports.CreateLocationMapSchema = _chunkIDEPTVFFcjs.CreateLocationMapSchema; exports.CreateNewsletterCampaignInputSchema = _chunkIDEPTVFFcjs.CreateNewsletterCampaignInputSchema; exports.CreateNewsletterTemplateInputSchema = _chunkIDEPTVFFcjs.CreateNewsletterTemplateInputSchema; exports.CreateSyllabusFromTemplateFormSchema = _chunkIDEPTVFFcjs.CreateSyllabusFromTemplateFormSchema; exports.DividerBlockSchema = _chunkIDEPTVFFcjs.DividerBlockSchema; exports.EnrollmentTrainingStatusEnum = _chunkIDEPTVFFcjs.EnrollmentTrainingStatusEnum; exports.FaqSchema = _chunkIDEPTVFFcjs.FaqSchema; exports.FaqStatus = _chunkIDEPTVFFcjs.FaqStatus; exports.FieldLabelSchema = _chunkIDEPTVFFcjs.FieldLabelSchema; exports.FormFieldType = _chunkIDEPTVFFcjs.FormFieldType; exports.FormSubmissionSchema = _chunkIDEPTVFFcjs.FormSubmissionSchema; exports.FormSubmissionShareBaseSchema = _chunkIDEPTVFFcjs.FormSubmissionShareBaseSchema; exports.FormSubmissionShareSchema = _chunkIDEPTVFFcjs.FormSubmissionShareSchema; exports.FormSubmissionSource = _chunkIDEPTVFFcjs.FormSubmissionSource; exports.FormSubmissionStatus = _chunkIDEPTVFFcjs.FormSubmissionStatus; exports.FormTemplateAssignmentSchema = _chunkIDEPTVFFcjs.FormTemplateAssignmentSchema; exports.FormTemplateSchema = _chunkIDEPTVFFcjs.FormTemplateSchema; exports.GeometrySchema = _chunkIDEPTVFFcjs.GeometrySchema; exports.GradingScaleFormSchema = _chunkIDEPTVFFcjs.GradingScaleFormSchema; exports.HeadingBlockSchema = _chunkIDEPTVFFcjs.HeadingBlockSchema; exports.ImportFeaturesSchema = _chunkIDEPTVFFcjs.ImportFeaturesSchema; exports.LocationFeatureVisibility = _chunkIDEPTVFFcjs.LocationFeatureVisibility; exports.LocationMapKind = _chunkIDEPTVFFcjs.LocationMapKind; exports.NewsletterAudienceSchema = _chunkIDEPTVFFcjs.NewsletterAudienceSchema; exports.NewsletterBlockSchema = _chunkIDEPTVFFcjs.NewsletterBlockSchema; exports.NewsletterBlockType = _chunkIDEPTVFFcjs.NewsletterBlockType; exports.NewsletterCampaignRecipientSchema = _chunkIDEPTVFFcjs.NewsletterCampaignRecipientSchema; exports.NewsletterCampaignSchema = _chunkIDEPTVFFcjs.NewsletterCampaignSchema; exports.NewsletterCampaignStatus = _chunkIDEPTVFFcjs.NewsletterCampaignStatus; exports.NewsletterCategorySchema = _chunkIDEPTVFFcjs.NewsletterCategorySchema; exports.NewsletterPreferenceRowSchema = _chunkIDEPTVFFcjs.NewsletterPreferenceRowSchema; exports.NewsletterRecipientStatus = _chunkIDEPTVFFcjs.NewsletterRecipientStatus; exports.NewsletterTemplateSchema = _chunkIDEPTVFFcjs.NewsletterTemplateSchema; exports.NewsletterTemplateSchemaSchema = _chunkIDEPTVFFcjs.NewsletterTemplateSchemaSchema; exports.ParagraphBlockSchema = _chunkIDEPTVFFcjs.ParagraphBlockSchema; exports.ReorderSyllabusElementItemSchema = _chunkIDEPTVFFcjs.ReorderSyllabusElementItemSchema; exports.RequiredFormSchema = _chunkIDEPTVFFcjs.RequiredFormSchema; exports.RequiredFormViaCrewSchema = _chunkIDEPTVFFcjs.RequiredFormViaCrewSchema; exports.RequiredFormViaSchema = _chunkIDEPTVFFcjs.RequiredFormViaSchema; exports.ReviewFaqSchema = _chunkIDEPTVFFcjs.ReviewFaqSchema; exports.RoleMembersBucketSchema = _chunkIDEPTVFFcjs.RoleMembersBucketSchema; exports.SAFETY_REPORT_STATUS_COLORS = _chunkIDEPTVFFcjs.SAFETY_REPORT_STATUS_COLORS; exports.SAFETY_REPORT_STATUS_LABELS = _chunkIDEPTVFFcjs.SAFETY_REPORT_STATUS_LABELS; exports.SafetyReportCategoryFormSchema = _chunkIDEPTVFFcjs.SafetyReportCategoryFormSchema; exports.SafetyReportCategorySchema = _chunkIDEPTVFFcjs.SafetyReportCategorySchema; exports.SafetyReportFilterSchema = _chunkIDEPTVFFcjs.SafetyReportFilterSchema; exports.SafetyReportFormSchema = _chunkIDEPTVFFcjs.SafetyReportFormSchema; exports.SafetyReportListResponseSchema = _chunkIDEPTVFFcjs.SafetyReportListResponseSchema; exports.SafetyReportMediaSchema = _chunkIDEPTVFFcjs.SafetyReportMediaSchema; exports.SafetyReportSchema = _chunkIDEPTVFFcjs.SafetyReportSchema; exports.SafetyReportStatusEnum = _chunkIDEPTVFFcjs.SafetyReportStatusEnum; exports.SafetyReportSubmissionResponseSchema = _chunkIDEPTVFFcjs.SafetyReportSubmissionResponseSchema; exports.SafetyReportUpdateSchema = _chunkIDEPTVFFcjs.SafetyReportUpdateSchema; exports.SchemaFieldSchema = _chunkIDEPTVFFcjs.SchemaFieldSchema; exports.SchemaSectionSchema = _chunkIDEPTVFFcjs.SchemaSectionSchema; exports.ShowWhenSchema = _chunkIDEPTVFFcjs.ShowWhenSchema; exports.SignOffTrainingElementFormSchema = _chunkIDEPTVFFcjs.SignOffTrainingElementFormSchema; exports.SignatureSchema = _chunkIDEPTVFFcjs.SignatureSchema; exports.StoreSyllabusFormSchema = _chunkIDEPTVFFcjs.StoreSyllabusFormSchema; exports.SubmissionFileSchema = _chunkIDEPTVFFcjs.SubmissionFileSchema; exports.SubmitFaqQuestionSchema = _chunkIDEPTVFFcjs.SubmitFaqQuestionSchema; exports.SyllabusKindEnum = _chunkIDEPTVFFcjs.SyllabusKindEnum; exports.TemplateSchemaSchema = _chunkIDEPTVFFcjs.TemplateSchemaSchema; exports.TipTapNodeSchema = _chunkIDEPTVFFcjs.TipTapNodeSchema; exports.TodoActionSchema = _chunkIDEPTVFFcjs.TodoActionSchema; exports.TodoKey = _chunkIDEPTVFFcjs.TodoKey; exports.TodoSchema = _chunkIDEPTVFFcjs.TodoSchema; exports.TrainingElementFormSchema = _chunkIDEPTVFFcjs.TrainingElementFormSchema; exports.TrainingElementKindEnum = _chunkIDEPTVFFcjs.TrainingElementKindEnum; exports.TrainingRecordResultEnum = _chunkIDEPTVFFcjs.TrainingRecordResultEnum; exports.TrainingRecordStatusEnum = _chunkIDEPTVFFcjs.TrainingRecordStatusEnum; exports.UpdateLocationMapFeatureSchema = _chunkIDEPTVFFcjs.UpdateLocationMapFeatureSchema; exports.UpdateLocationMapSchema = _chunkIDEPTVFFcjs.UpdateLocationMapSchema; exports.UpdateSyllabusElementFormSchema = _chunkIDEPTVFFcjs.UpdateSyllabusElementFormSchema; exports.UpdateSyllabusFormSchema = _chunkIDEPTVFFcjs.UpdateSyllabusFormSchema; exports.UpsertTrainingRecordFormSchema = _chunkIDEPTVFFcjs.UpsertTrainingRecordFormSchema; exports.ViewportSchema = _chunkIDEPTVFFcjs.ViewportSchema; exports.activitySchema = _chunkIDEPTVFFcjs.activitySchema; exports.addressSchema = _chunkIDEPTVFFcjs.addressSchema; exports.aircraftPositionSchema = _chunkIDEPTVFFcjs.aircraftPositionSchema; exports.aircraftRatingSchema = _chunkIDEPTVFFcjs.aircraftRatingSchema; exports.airplaneIssueSchema = _chunkIDEPTVFFcjs.airplaneIssueSchema; exports.airplaneIssueSeverityEnum = _chunkIDEPTVFFcjs.airplaneIssueSeverityEnum; exports.airplaneIssueStatusEnum = _chunkIDEPTVFFcjs.airplaneIssueStatusEnum; exports.airplanePermissionSchema = _chunkIDEPTVFFcjs.airplanePermissionSchema; exports.airplaneSchema = _chunkIDEPTVFFcjs.airplaneSchema; exports.airplaneShareInviteSchema = _chunkIDEPTVFFcjs.airplaneShareInviteSchema; exports.airportSchema = _chunkIDEPTVFFcjs.airportSchema; exports.alertSchema = _chunkIDEPTVFFcjs.alertSchema; exports.allowedDocumentTypeSchema = _chunkIDEPTVFFcjs.allowedDocumentTypeSchema; exports.approachTypeSchema = _chunkIDEPTVFFcjs.approachTypeSchema; exports.availSchema = _chunkIDEPTVFFcjs.availSchema; exports.baseMembershipSchema = _chunkIDEPTVFFcjs.baseMembershipSchema; exports.billingProfileSchema = _chunkIDEPTVFFcjs.billingProfileSchema; exports.bookingSchema = _chunkIDEPTVFFcjs.bookingSchema; exports.bookingWaypointSchema = _chunkIDEPTVFFcjs.bookingWaypointSchema; exports.commentSchema = _chunkIDEPTVFFcjs.commentSchema; exports.companyAudienceInclude = _chunkIDEPTVFFcjs.companyAudienceInclude; exports.companySchema = _chunkIDEPTVFFcjs.companySchema; exports.contactAttributeSchema = _chunkIDEPTVFFcjs.contactAttributeSchema; exports.courseCheckSyllabusSchema = _chunkIDEPTVFFcjs.courseCheckSyllabusSchema; exports.courseEnrollmentMetricsSchema = _chunkIDEPTVFFcjs.courseEnrollmentMetricsSchema; exports.courseEnrollmentMilestoneSchema = _chunkIDEPTVFFcjs.courseEnrollmentMilestoneSchema; exports.courseEnrollmentSchema = _chunkIDEPTVFFcjs.courseEnrollmentSchema; exports.courseFeeSchema = _chunkIDEPTVFFcjs.courseFeeSchema; exports.courseMilestoneSchema = _chunkIDEPTVFFcjs.courseMilestoneSchema; exports.courseSchema = _chunkIDEPTVFFcjs.courseSchema; exports.createSyllabusFromTemplateResultSchema = _chunkIDEPTVFFcjs.createSyllabusFromTemplateResultSchema; exports.documentComplianceStatus = _chunkIDEPTVFFcjs.documentComplianceStatus; exports.documentRequirement = _chunkIDEPTVFFcjs.documentRequirement; exports.documentRequirementGroup = _chunkIDEPTVFFcjs.documentRequirementGroup; exports.documentRequirementGroupAssignment = _chunkIDEPTVFFcjs.documentRequirementGroupAssignment; exports.documentSchema = _chunkIDEPTVFFcjs.documentSchema; exports.documentShareSchema = _chunkIDEPTVFFcjs.documentShareSchema; exports.documentType = _chunkIDEPTVFFcjs.documentType; exports.enrollmentTrainingElementSchema = _chunkIDEPTVFFcjs.enrollmentTrainingElementSchema; exports.equipmentSchema = _chunkIDEPTVFFcjs.equipmentSchema; exports.eventSchema = _chunkIDEPTVFFcjs.eventSchema; exports.expenseItemSchema = _chunkIDEPTVFFcjs.expenseItemSchema; exports.expenseSchema = _chunkIDEPTVFFcjs.expenseSchema; exports.extendedAirplaneSchema = _chunkIDEPTVFFcjs.extendedAirplaneSchema; exports.feeCategoryOptionsSchema = _chunkIDEPTVFFcjs.feeCategoryOptionsSchema; exports.feeSchema = _chunkIDEPTVFFcjs.feeSchema; exports.flightLogSchema = _chunkIDEPTVFFcjs.flightLogSchema; exports.gradeHistoryItemSchema = _chunkIDEPTVFFcjs.gradeHistoryItemSchema; exports.gradingScalePointSchema = _chunkIDEPTVFFcjs.gradingScalePointSchema; exports.gradingScaleSchema = _chunkIDEPTVFFcjs.gradingScaleSchema; exports.impersonationParticipantSchema = _chunkIDEPTVFFcjs.impersonationParticipantSchema; exports.impersonationStateSchema = _chunkIDEPTVFFcjs.impersonationStateSchema; exports.invalidateTrainingRecordResponseSchema = _chunkIDEPTVFFcjs.invalidateTrainingRecordResponseSchema; exports.invoiceSchema = _chunkIDEPTVFFcjs.invoiceSchema; exports.landingFeeSchema = _chunkIDEPTVFFcjs.landingFeeSchema; exports.landingSchema = _chunkIDEPTVFFcjs.landingSchema; exports.maintenanceEventEstimationSchema = _chunkIDEPTVFFcjs.maintenanceEventEstimationSchema; exports.maintenanceEventSchema = _chunkIDEPTVFFcjs.maintenanceEventSchema; exports.maintenanceStatusSchema = _chunkIDEPTVFFcjs.maintenanceStatusSchema; exports.mediaCollection = _chunkIDEPTVFFcjs.mediaCollection; exports.mediaSchema = _chunkIDEPTVFFcjs.mediaSchema; exports.membershipSchema = _chunkIDEPTVFFcjs.membershipSchema; exports.membershipSignupSchema = _chunkIDEPTVFFcjs.membershipSignupSchema; exports.postSchema = _chunkIDEPTVFFcjs.postSchema; exports.prePaidPackageAssignmentSchema = _chunkIDEPTVFFcjs.prePaidPackageAssignmentSchema; exports.prePaidPackageSchema = _chunkIDEPTVFFcjs.prePaidPackageSchema; exports.priceSchema = _chunkIDEPTVFFcjs.priceSchema; exports.qualificationSchema = _chunkIDEPTVFFcjs.qualificationSchema; exports.recurringFlightSchema = _chunkIDEPTVFFcjs.recurringFlightSchema; exports.roleSchema = _chunkIDEPTVFFcjs.roleSchema; exports.runwaySchema = _chunkIDEPTVFFcjs.runwaySchema; exports.scheduledFlightSchema = _chunkIDEPTVFFcjs.scheduledFlightSchema; exports.settingSchema = _chunkIDEPTVFFcjs.settingSchema; exports.specialFlightSchema = _chunkIDEPTVFFcjs.specialFlightSchema; exports.syllabusElementMutationResultSchema = _chunkIDEPTVFFcjs.syllabusElementMutationResultSchema; exports.syllabusElementSchema = _chunkIDEPTVFFcjs.syllabusElementSchema; exports.syllabusRolloutResultItemSchema = _chunkIDEPTVFFcjs.syllabusRolloutResultItemSchema; exports.syllabusRolloutResultSchema = _chunkIDEPTVFFcjs.syllabusRolloutResultSchema; exports.syllabusRolloutSkippedItemSchema = _chunkIDEPTVFFcjs.syllabusRolloutSkippedItemSchema; exports.syllabusSchema = _chunkIDEPTVFFcjs.syllabusSchema; exports.tagSchema = _chunkIDEPTVFFcjs.tagSchema; exports.ticketSchema = _chunkIDEPTVFFcjs.ticketSchema; exports.trainingElementSchema = _chunkIDEPTVFFcjs.trainingElementSchema; exports.trainingRecordEntryInputSchema = _chunkIDEPTVFFcjs.trainingRecordEntryInputSchema; exports.trainingRecordEntrySchema = _chunkIDEPTVFFcjs.trainingRecordEntrySchema; exports.trainingRecordSchema = _chunkIDEPTVFFcjs.trainingRecordSchema; exports.trainingSignatureSchema = _chunkIDEPTVFFcjs.trainingSignatureSchema; exports.trainingTemplatePackSchema = _chunkIDEPTVFFcjs.trainingTemplatePackSchema; exports.usedByCourseSchema = _chunkIDEPTVFFcjs.usedByCourseSchema; exports.userAircraftRatingSchema = _chunkIDEPTVFFcjs.userAircraftRatingSchema; exports.userQualificationSchema = _chunkIDEPTVFFcjs.userQualificationSchema; exports.userSchema = _chunkIDEPTVFFcjs.userSchema; exports.waypointSchema = _chunkIDEPTVFFcjs.waypointSchema; exports.zContactDTO = _chunkIDEPTVFFcjs.zContactDTO; exports.zNetGross = _chunkIDEPTVFFcjs.zNetGross; exports.zNullableBool = _chunkIDEPTVFFcjs.zNullableBool; exports.zPhpMoneyObject = _chunkIDEPTVFFcjs.zPhpMoneyObject;
@@ -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 bookingSchema, aS as bookingWaypointSchema, aT as commentSchema, aU as companySchema, aV as contactAttributeSchema, aW as courseCheckSyllabusSchema, aX as courseEnrollmentMetricsSchema, aY as courseEnrollmentSchema, aZ as courseFeeSchema, a_ as courseSchema, a$ as createSyllabusFromTemplateResultSchema, b0 as documentComplianceStatus, b1 as documentRequirement, b2 as documentRequirementGroup, b3 as documentRequirementGroupAssignment, b4 as documentSchema, b5 as documentShareSchema, b6 as documentType, b7 as enrollmentTrainingElementSchema, b8 as eventSchema, b9 as expenseItemSchema, ba as expenseSchema, bb as extendedAirplaneSchema, bc as feeCategoryOptionsSchema, bd as feeSchema, be as flightLogSchema, bf as gradeHistoryItemSchema, bg as gradingScalePointSchema, bh as gradingScaleSchema, bi as impersonationParticipantSchema, bj as impersonationStateSchema, bk as invalidateTrainingRecordResponseSchema, bl as invoiceSchema, bm as landingFeeSchema, bn as landingSchema, bo as maintenanceEventEstimationSchema, bp as maintenanceEventSchema, bq as maintenanceStatusSchema, br as mediaCollection, bs as mediaSchema, bt as membershipSchema, bu as membershipSignupSchema, bv as postSchema, bw as prePaidPackageSchema, bx as priceSchema, by as qualificationSchema, bz as recurringFlightSchema, bA as roleSchema, bB as runwaySchema, bC as scheduledFlightSchema, bD as settingSchema, bE as specialFlightSchema, bF as syllabusElementMutationResultSchema, bG as syllabusElementSchema, bH as syllabusRolloutResultItemSchema, bI as syllabusRolloutResultSchema, bJ as syllabusRolloutSkippedItemSchema, bK as syllabusSchema, bL as tagSchema, bM as ticketSchema, bN as trainingElementSchema, bO as trainingRecordEntryInputSchema, bP as trainingRecordEntrySchema, bQ as trainingRecordSchema, bR as trainingSignatureSchema, bS as trainingTemplatePackSchema, bT as usedByCourseSchema, bU as userAircraftRatingSchema, bV as userQualificationSchema, bW as userSchema, bX as waypointSchema, bY as zContactDTO, bZ as zNetGross, b_ as zNullableBool, b$ as zPhpMoneyObject } from '../training-BibD4HsC.cjs';
1
+ export { A as AttachSyllabusElementForm, a as AttachSyllabusElementFormSchema, B as BaseModel, C as CourseCheckSyllabus, b as CreateFormSubmissionInput, c as CreateFormTemplateAssignmentInput, d as CreateFormTemplateInput, e as CreateSyllabusFromTemplateForm, f as CreateSyllabusFromTemplateFormSchema, g as CreateSyllabusFromTemplateResult, E as EnrollmentTrainingElement, h as EnrollmentTrainingStatus, i as EnrollmentTrainingStatusEnum, F as FieldLabel, j as FieldLabelSchema, k as FormFieldType, l as FormSubmission, m as FormSubmissionSchema, n as FormSubmissionShare, o as FormSubmissionShareBase, p as FormSubmissionShareBaseSchema, q as FormSubmissionShareSchema, r as FormSubmissionSource, s as FormSubmissionStatus, t as FormTemplate, u as FormTemplateAssignment, v as FormTemplateAssignmentSchema, w as FormTemplateSchema, G as GradeHistoryItem, x as GradingScale, y as GradingScaleForm, z as GradingScaleFormSchema, D as GradingScalePoint, I as ImpersonationParticipant, H as ImpersonationState, 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-DRuphnSP.cjs';
2
2
  import { z } from 'zod';
3
3
 
4
4
  declare enum FaqStatus {
@@ -586,12 +586,6 @@ declare const SafetyReportListResponseSchema: z.ZodObject<{
586
586
  }[] | undefined;
587
587
  attachments_count?: number | undefined;
588
588
  }[];
589
- links?: {
590
- first?: string | null | undefined;
591
- last?: string | null | undefined;
592
- prev?: string | null | undefined;
593
- next?: string | null | undefined;
594
- } | undefined;
595
589
  meta?: {
596
590
  from: number | null;
597
591
  to: number | null;
@@ -600,6 +594,12 @@ declare const SafetyReportListResponseSchema: z.ZodObject<{
600
594
  last_page: number;
601
595
  per_page: number;
602
596
  } | undefined;
597
+ links?: {
598
+ first?: string | null | undefined;
599
+ last?: string | null | undefined;
600
+ prev?: string | null | undefined;
601
+ next?: string | null | undefined;
602
+ } | undefined;
603
603
  }, {
604
604
  data: {
605
605
  status: "new" | "under_review" | "action_taken" | "closed";
@@ -631,12 +631,6 @@ declare const SafetyReportListResponseSchema: z.ZodObject<{
631
631
  }[] | undefined;
632
632
  attachments_count?: number | undefined;
633
633
  }[];
634
- links?: {
635
- first?: string | null | undefined;
636
- last?: string | null | undefined;
637
- prev?: string | null | undefined;
638
- next?: string | null | undefined;
639
- } | undefined;
640
634
  meta?: {
641
635
  from: number | null;
642
636
  to: number | null;
@@ -645,6 +639,12 @@ declare const SafetyReportListResponseSchema: z.ZodObject<{
645
639
  last_page: number;
646
640
  per_page: number;
647
641
  } | undefined;
642
+ links?: {
643
+ first?: string | null | undefined;
644
+ last?: string | null | undefined;
645
+ prev?: string | null | undefined;
646
+ next?: string | null | undefined;
647
+ } | undefined;
648
648
  }>;
649
649
  type SafetyReportListResponse = z.infer<typeof SafetyReportListResponseSchema>;
650
650
  declare const SafetyReportFormSchema: z.ZodObject<{
@@ -4012,9 +4012,9 @@ declare const TodoSchema: z.ZodObject<{
4012
4012
  params?: Record<string, any> | undefined;
4013
4013
  };
4014
4014
  company_id?: number | null | undefined;
4015
+ meta?: Record<string, any> | undefined;
4015
4016
  due_date?: string | null | undefined;
4016
4017
  subtitle?: string | null | undefined;
4017
- meta?: Record<string, any> | undefined;
4018
4018
  }, {
4019
4019
  key: "fill_form" | "sign_form" | "review_form" | "log_booking" | "add_address" | "add_required_documents" | "share_document" | "fill_training_record" | "sign_training_record";
4020
4020
  title: string;
@@ -4026,10 +4026,10 @@ declare const TodoSchema: z.ZodObject<{
4026
4026
  params?: Record<string, any> | undefined;
4027
4027
  };
4028
4028
  company_id?: number | null | undefined;
4029
+ meta?: Record<string, any> | undefined;
4029
4030
  due_date?: string | null | undefined;
4030
4031
  subtitle?: string | null | undefined;
4031
4032
  priority?: "low" | "normal" | "high" | undefined;
4032
- meta?: Record<string, any> | undefined;
4033
4033
  is_overdue?: boolean | undefined;
4034
4034
  }>;
4035
4035
  type Todo = z.infer<typeof TodoSchema>;
@@ -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 bookingSchema, aS as bookingWaypointSchema, aT as commentSchema, aU as companySchema, aV as contactAttributeSchema, aW as courseCheckSyllabusSchema, aX as courseEnrollmentMetricsSchema, aY as courseEnrollmentSchema, aZ as courseFeeSchema, a_ as courseSchema, a$ as createSyllabusFromTemplateResultSchema, b0 as documentComplianceStatus, b1 as documentRequirement, b2 as documentRequirementGroup, b3 as documentRequirementGroupAssignment, b4 as documentSchema, b5 as documentShareSchema, b6 as documentType, b7 as enrollmentTrainingElementSchema, b8 as eventSchema, b9 as expenseItemSchema, ba as expenseSchema, bb as extendedAirplaneSchema, bc as feeCategoryOptionsSchema, bd as feeSchema, be as flightLogSchema, bf as gradeHistoryItemSchema, bg as gradingScalePointSchema, bh as gradingScaleSchema, bi as impersonationParticipantSchema, bj as impersonationStateSchema, bk as invalidateTrainingRecordResponseSchema, bl as invoiceSchema, bm as landingFeeSchema, bn as landingSchema, bo as maintenanceEventEstimationSchema, bp as maintenanceEventSchema, bq as maintenanceStatusSchema, br as mediaCollection, bs as mediaSchema, bt as membershipSchema, bu as membershipSignupSchema, bv as postSchema, bw as prePaidPackageSchema, bx as priceSchema, by as qualificationSchema, bz as recurringFlightSchema, bA as roleSchema, bB as runwaySchema, bC as scheduledFlightSchema, bD as settingSchema, bE as specialFlightSchema, bF as syllabusElementMutationResultSchema, bG as syllabusElementSchema, bH as syllabusRolloutResultItemSchema, bI as syllabusRolloutResultSchema, bJ as syllabusRolloutSkippedItemSchema, bK as syllabusSchema, bL as tagSchema, bM as ticketSchema, bN as trainingElementSchema, bO as trainingRecordEntryInputSchema, bP as trainingRecordEntrySchema, bQ as trainingRecordSchema, bR as trainingSignatureSchema, bS as trainingTemplatePackSchema, bT as usedByCourseSchema, bU as userAircraftRatingSchema, bV as userQualificationSchema, bW as userSchema, bX as waypointSchema, bY as zContactDTO, bZ as zNetGross, b_ as zNullableBool, b$ as zPhpMoneyObject } from '../training-BibD4HsC.js';
1
+ export { A as AttachSyllabusElementForm, a as AttachSyllabusElementFormSchema, B as BaseModel, C as CourseCheckSyllabus, b as CreateFormSubmissionInput, c as CreateFormTemplateAssignmentInput, d as CreateFormTemplateInput, e as CreateSyllabusFromTemplateForm, f as CreateSyllabusFromTemplateFormSchema, g as CreateSyllabusFromTemplateResult, E as EnrollmentTrainingElement, h as EnrollmentTrainingStatus, i as EnrollmentTrainingStatusEnum, F as FieldLabel, j as FieldLabelSchema, k as FormFieldType, l as FormSubmission, m as FormSubmissionSchema, n as FormSubmissionShare, o as FormSubmissionShareBase, p as FormSubmissionShareBaseSchema, q as FormSubmissionShareSchema, r as FormSubmissionSource, s as FormSubmissionStatus, t as FormTemplate, u as FormTemplateAssignment, v as FormTemplateAssignmentSchema, w as FormTemplateSchema, G as GradeHistoryItem, x as GradingScale, y as GradingScaleForm, z as GradingScaleFormSchema, D as GradingScalePoint, I as ImpersonationParticipant, H as ImpersonationState, 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-DRuphnSP.js';
2
2
  import { z } from 'zod';
3
3
 
4
4
  declare enum FaqStatus {
@@ -586,12 +586,6 @@ declare const SafetyReportListResponseSchema: z.ZodObject<{
586
586
  }[] | undefined;
587
587
  attachments_count?: number | undefined;
588
588
  }[];
589
- links?: {
590
- first?: string | null | undefined;
591
- last?: string | null | undefined;
592
- prev?: string | null | undefined;
593
- next?: string | null | undefined;
594
- } | undefined;
595
589
  meta?: {
596
590
  from: number | null;
597
591
  to: number | null;
@@ -600,6 +594,12 @@ declare const SafetyReportListResponseSchema: z.ZodObject<{
600
594
  last_page: number;
601
595
  per_page: number;
602
596
  } | undefined;
597
+ links?: {
598
+ first?: string | null | undefined;
599
+ last?: string | null | undefined;
600
+ prev?: string | null | undefined;
601
+ next?: string | null | undefined;
602
+ } | undefined;
603
603
  }, {
604
604
  data: {
605
605
  status: "new" | "under_review" | "action_taken" | "closed";
@@ -631,12 +631,6 @@ declare const SafetyReportListResponseSchema: z.ZodObject<{
631
631
  }[] | undefined;
632
632
  attachments_count?: number | undefined;
633
633
  }[];
634
- links?: {
635
- first?: string | null | undefined;
636
- last?: string | null | undefined;
637
- prev?: string | null | undefined;
638
- next?: string | null | undefined;
639
- } | undefined;
640
634
  meta?: {
641
635
  from: number | null;
642
636
  to: number | null;
@@ -645,6 +639,12 @@ declare const SafetyReportListResponseSchema: z.ZodObject<{
645
639
  last_page: number;
646
640
  per_page: number;
647
641
  } | undefined;
642
+ links?: {
643
+ first?: string | null | undefined;
644
+ last?: string | null | undefined;
645
+ prev?: string | null | undefined;
646
+ next?: string | null | undefined;
647
+ } | undefined;
648
648
  }>;
649
649
  type SafetyReportListResponse = z.infer<typeof SafetyReportListResponseSchema>;
650
650
  declare const SafetyReportFormSchema: z.ZodObject<{
@@ -4012,9 +4012,9 @@ declare const TodoSchema: z.ZodObject<{
4012
4012
  params?: Record<string, any> | undefined;
4013
4013
  };
4014
4014
  company_id?: number | null | undefined;
4015
+ meta?: Record<string, any> | undefined;
4015
4016
  due_date?: string | null | undefined;
4016
4017
  subtitle?: string | null | undefined;
4017
- meta?: Record<string, any> | undefined;
4018
4018
  }, {
4019
4019
  key: "fill_form" | "sign_form" | "review_form" | "log_booking" | "add_address" | "add_required_documents" | "share_document" | "fill_training_record" | "sign_training_record";
4020
4020
  title: string;
@@ -4026,10 +4026,10 @@ declare const TodoSchema: z.ZodObject<{
4026
4026
  params?: Record<string, any> | undefined;
4027
4027
  };
4028
4028
  company_id?: number | null | undefined;
4029
+ meta?: Record<string, any> | undefined;
4029
4030
  due_date?: string | null | undefined;
4030
4031
  subtitle?: string | null | undefined;
4031
4032
  priority?: "low" | "normal" | "high" | undefined;
4032
- meta?: Record<string, any> | undefined;
4033
4033
  is_overdue?: boolean | undefined;
4034
4034
  }>;
4035
4035
  type Todo = z.infer<typeof TodoSchema>;
@@ -104,6 +104,7 @@ import {
104
104
  approachTypeSchema,
105
105
  availSchema,
106
106
  baseMembershipSchema,
107
+ billingProfileSchema,
107
108
  bookingSchema,
108
109
  bookingWaypointSchema,
109
110
  commentSchema,
@@ -151,6 +152,7 @@ import {
151
152
  membershipSchema,
152
153
  membershipSignupSchema,
153
154
  postSchema,
155
+ prePaidPackageAssignmentSchema,
154
156
  prePaidPackageSchema,
155
157
  priceSchema,
156
158
  qualificationSchema,
@@ -183,7 +185,7 @@ import {
183
185
  zNetGross,
184
186
  zNullableBool,
185
187
  zPhpMoneyObject
186
- } from "../chunk-QG44Y5LO.js";
188
+ } from "../chunk-ZKXYKICY.js";
187
189
  export {
188
190
  ALLOWED_GEOMETRY_TYPES,
189
191
  ALLOWED_NEWSLETTER_VARIABLES,
@@ -290,6 +292,7 @@ export {
290
292
  approachTypeSchema,
291
293
  availSchema,
292
294
  baseMembershipSchema,
295
+ billingProfileSchema,
293
296
  bookingSchema,
294
297
  bookingWaypointSchema,
295
298
  commentSchema,
@@ -337,6 +340,7 @@ export {
337
340
  membershipSchema,
338
341
  membershipSignupSchema,
339
342
  postSchema,
343
+ prePaidPackageAssignmentSchema,
340
344
  prePaidPackageSchema,
341
345
  priceSchema,
342
346
  qualificationSchema,