@updraft-solutions/mcrit-sdk 0.3.1 → 0.5.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-AKLFMP7G.cjs +2525 -0
- package/dist/{chunk-MF7G76QS.cjs → chunk-IVMOR5SW.cjs} +26 -1
- package/dist/{chunk-D5DUVW34.js → chunk-KIMCBEY7.js} +26 -1
- package/dist/chunk-YCIXOVEC.js +2525 -0
- package/dist/format/index.cjs +2 -2
- package/dist/format/index.d.cts +13 -4
- package/dist/format/index.d.ts +13 -4
- package/dist/format/index.js +1 -1
- package/dist/index.cjs +201 -5
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +208 -12
- package/dist/schemas/index.cjs +198 -2
- package/dist/schemas/index.d.cts +3157 -128
- package/dist/schemas/index.d.ts +3157 -128
- package/dist/schemas/index.js +201 -5
- package/dist/{models-BWmpcfR8.d.cts → training-Der1DPU-.d.cts} +23757 -6528
- package/dist/{models-BWmpcfR8.d.ts → training-Der1DPU-.d.ts} +23757 -6528
- package/dist/types/index.cjs +1 -1
- package/dist/types/index.d.cts +277 -6
- package/dist/types/index.d.ts +277 -6
- package/dist/types/index.js +1 -1
- package/package.json +1 -1
- package/src/format/index.ts +51 -5
- package/src/index.ts +39 -0
- package/src/schemas/common.ts +37 -0
- package/src/schemas/course-milestone.ts +78 -0
- package/src/schemas/equipment.ts +27 -0
- package/src/schemas/form-template.ts +413 -0
- package/src/schemas/index.ts +7 -1
- package/src/schemas/location-map.ts +175 -0
- package/src/schemas/models.ts +110 -28
- package/src/schemas/newsletter.ts +362 -0
- package/src/schemas/todo.ts +46 -0
- package/src/schemas/training.ts +500 -0
- package/src/types/ai.ts +85 -0
- package/src/types/aircraft-block.ts +23 -0
- package/src/types/api.ts +3 -1
- package/src/types/background-task.ts +28 -0
- package/src/types/compliance.ts +27 -3
- package/src/types/index.ts +5 -0
- package/src/types/landing-fee.ts +92 -0
- package/src/types/models.ts +44 -0
- package/src/types/roles.ts +26 -0
- package/dist/chunk-7QF3OJ45.cjs +0 -1325
- package/dist/chunk-FS5I4MBG.js +0 -1325
- package/src/schemas/fee.ts +0 -37
- /package/dist/{chunk-LXNCAKJZ.js → chunk-2WJHTRIE.js} +0 -0
- /package/dist/{chunk-MOOGM3DW.cjs → chunk-DCEOET63.cjs} +0 -0
package/dist/index.js
CHANGED
|
@@ -1,10 +1,57 @@
|
|
|
1
1
|
import {
|
|
2
|
+
ALLOWED_GEOMETRY_TYPES,
|
|
3
|
+
ALLOWED_NEWSLETTER_VARIABLES,
|
|
4
|
+
AllUsersBucketSchema,
|
|
5
|
+
AttachSyllabusElementFormSchema,
|
|
6
|
+
AudienceBucketSchema,
|
|
7
|
+
AudienceBucketType,
|
|
2
8
|
BaseModel,
|
|
9
|
+
ButtonBlockSchema,
|
|
10
|
+
CompanyUsersBucketSchema,
|
|
11
|
+
CourseMilestoneFormSchema,
|
|
12
|
+
CourseMilestoneKindEnum,
|
|
13
|
+
CreateLocationMapFeatureSchema,
|
|
14
|
+
CreateLocationMapSchema,
|
|
15
|
+
CreateNewsletterCampaignInputSchema,
|
|
16
|
+
CreateNewsletterTemplateInputSchema,
|
|
17
|
+
CreateSyllabusFromTemplateFormSchema,
|
|
18
|
+
DividerBlockSchema,
|
|
19
|
+
EnrollmentTrainingStatusEnum,
|
|
3
20
|
FaqSchema,
|
|
4
21
|
FaqStatus,
|
|
5
|
-
|
|
6
|
-
|
|
22
|
+
FieldLabelSchema,
|
|
23
|
+
FormFieldType,
|
|
24
|
+
FormSubmissionSchema,
|
|
25
|
+
FormSubmissionShareBaseSchema,
|
|
26
|
+
FormSubmissionShareSchema,
|
|
27
|
+
FormSubmissionSource,
|
|
28
|
+
FormSubmissionStatus,
|
|
29
|
+
FormTemplateAssignmentSchema,
|
|
30
|
+
FormTemplateSchema,
|
|
31
|
+
GeometrySchema,
|
|
32
|
+
GradingScaleFormSchema,
|
|
33
|
+
HeadingBlockSchema,
|
|
34
|
+
ImportFeaturesSchema,
|
|
35
|
+
LocationFeatureVisibility,
|
|
36
|
+
LocationMapKind,
|
|
37
|
+
NewsletterAudienceSchema,
|
|
38
|
+
NewsletterBlockSchema,
|
|
39
|
+
NewsletterBlockType,
|
|
40
|
+
NewsletterCampaignRecipientSchema,
|
|
41
|
+
NewsletterCampaignSchema,
|
|
42
|
+
NewsletterCampaignStatus,
|
|
43
|
+
NewsletterCategorySchema,
|
|
44
|
+
NewsletterPreferenceRowSchema,
|
|
45
|
+
NewsletterRecipientStatus,
|
|
46
|
+
NewsletterTemplateSchema,
|
|
47
|
+
NewsletterTemplateSchemaSchema,
|
|
48
|
+
ParagraphBlockSchema,
|
|
49
|
+
ReorderSyllabusElementItemSchema,
|
|
50
|
+
RequiredFormSchema,
|
|
51
|
+
RequiredFormViaCrewSchema,
|
|
52
|
+
RequiredFormViaSchema,
|
|
7
53
|
ReviewFaqSchema,
|
|
54
|
+
RoleMembersBucketSchema,
|
|
8
55
|
SAFETY_REPORT_STATUS_COLORS,
|
|
9
56
|
SAFETY_REPORT_STATUS_LABELS,
|
|
10
57
|
SafetyReportCategoryFormSchema,
|
|
@@ -17,7 +64,30 @@ import {
|
|
|
17
64
|
SafetyReportStatusEnum,
|
|
18
65
|
SafetyReportSubmissionResponseSchema,
|
|
19
66
|
SafetyReportUpdateSchema,
|
|
67
|
+
SchemaFieldSchema,
|
|
68
|
+
SchemaSectionSchema,
|
|
69
|
+
ShowWhenSchema,
|
|
70
|
+
SignOffTrainingElementFormSchema,
|
|
71
|
+
SignatureSchema,
|
|
72
|
+
StoreSyllabusFormSchema,
|
|
73
|
+
SubmissionFileSchema,
|
|
20
74
|
SubmitFaqQuestionSchema,
|
|
75
|
+
SyllabusKindEnum,
|
|
76
|
+
TemplateSchemaSchema,
|
|
77
|
+
TipTapNodeSchema,
|
|
78
|
+
TodoActionSchema,
|
|
79
|
+
TodoKey,
|
|
80
|
+
TodoSchema,
|
|
81
|
+
TrainingElementFormSchema,
|
|
82
|
+
TrainingElementKindEnum,
|
|
83
|
+
TrainingRecordResultEnum,
|
|
84
|
+
TrainingRecordStatusEnum,
|
|
85
|
+
UpdateLocationMapFeatureSchema,
|
|
86
|
+
UpdateLocationMapSchema,
|
|
87
|
+
UpdateSyllabusElementFormSchema,
|
|
88
|
+
UpdateSyllabusFormSchema,
|
|
89
|
+
UpsertTrainingRecordFormSchema,
|
|
90
|
+
ViewportSchema,
|
|
21
91
|
addressSchema,
|
|
22
92
|
aircraftRatingSchema,
|
|
23
93
|
airplaneIssueSchema,
|
|
@@ -33,13 +103,19 @@ import {
|
|
|
33
103
|
availSchema,
|
|
34
104
|
baseMembershipSchema,
|
|
35
105
|
bookingSchema,
|
|
106
|
+
bookingWaypointSchema,
|
|
36
107
|
commentSchema,
|
|
108
|
+
companyAudienceInclude,
|
|
37
109
|
companySchema,
|
|
38
110
|
contactAttributeSchema,
|
|
111
|
+
courseCheckSyllabusSchema,
|
|
39
112
|
courseEnrollmentMetricsSchema,
|
|
113
|
+
courseEnrollmentMilestoneSchema,
|
|
40
114
|
courseEnrollmentSchema,
|
|
41
115
|
courseFeeSchema,
|
|
116
|
+
courseMilestoneSchema,
|
|
42
117
|
courseSchema,
|
|
118
|
+
createSyllabusFromTemplateResultSchema,
|
|
43
119
|
documentComplianceStatus,
|
|
44
120
|
documentRequirement,
|
|
45
121
|
documentRequirementGroup,
|
|
@@ -47,12 +123,20 @@ import {
|
|
|
47
123
|
documentSchema,
|
|
48
124
|
documentShareSchema,
|
|
49
125
|
documentType,
|
|
126
|
+
enrollmentTrainingElementSchema,
|
|
127
|
+
equipmentSchema,
|
|
50
128
|
eventSchema,
|
|
51
129
|
expenseItemSchema,
|
|
52
130
|
expenseSchema,
|
|
53
131
|
extendedAirplaneSchema,
|
|
132
|
+
feeCategoryOptionsSchema,
|
|
54
133
|
feeSchema,
|
|
55
134
|
flightLogSchema,
|
|
135
|
+
gradeHistoryItemSchema,
|
|
136
|
+
gradingScalePointSchema,
|
|
137
|
+
gradingScaleSchema,
|
|
138
|
+
impersonationParticipantSchema,
|
|
139
|
+
impersonationStateSchema,
|
|
56
140
|
invoiceSchema,
|
|
57
141
|
landingFeeSchema,
|
|
58
142
|
landingSchema,
|
|
@@ -72,7 +156,21 @@ import {
|
|
|
72
156
|
scheduledFlightSchema,
|
|
73
157
|
settingSchema,
|
|
74
158
|
specialFlightSchema,
|
|
159
|
+
syllabusElementMutationResultSchema,
|
|
160
|
+
syllabusElementSchema,
|
|
161
|
+
syllabusRolloutResultItemSchema,
|
|
162
|
+
syllabusRolloutResultSchema,
|
|
163
|
+
syllabusRolloutSkippedItemSchema,
|
|
164
|
+
syllabusSchema,
|
|
165
|
+
tagSchema,
|
|
75
166
|
ticketSchema,
|
|
167
|
+
trainingElementSchema,
|
|
168
|
+
trainingRecordEntryInputSchema,
|
|
169
|
+
trainingRecordEntrySchema,
|
|
170
|
+
trainingRecordSchema,
|
|
171
|
+
trainingSignatureSchema,
|
|
172
|
+
trainingTemplatePackSchema,
|
|
173
|
+
usedByCourseSchema,
|
|
76
174
|
userAircraftRatingSchema,
|
|
77
175
|
userQualificationSchema,
|
|
78
176
|
userSchema,
|
|
@@ -81,11 +179,16 @@ import {
|
|
|
81
179
|
zNetGross,
|
|
82
180
|
zNullableBool,
|
|
83
181
|
zPhpMoneyObject
|
|
84
|
-
} from "./chunk-
|
|
85
|
-
import "./chunk-
|
|
182
|
+
} from "./chunk-YCIXOVEC.js";
|
|
183
|
+
import "./chunk-2WJHTRIE.js";
|
|
86
184
|
import {
|
|
87
185
|
parseCourse
|
|
88
186
|
} from "./chunk-TJXWL42D.js";
|
|
187
|
+
import {
|
|
188
|
+
createCrewValidator,
|
|
189
|
+
defaultCrewRoleForMembership,
|
|
190
|
+
hasMembershipRole
|
|
191
|
+
} from "./chunk-2M32EOYI.js";
|
|
89
192
|
import {
|
|
90
193
|
DATE_FORMATS,
|
|
91
194
|
TIME_FORMATS,
|
|
@@ -107,7 +210,7 @@ import {
|
|
|
107
210
|
timeString,
|
|
108
211
|
timeUntil,
|
|
109
212
|
yearString
|
|
110
|
-
} from "./chunk-
|
|
213
|
+
} from "./chunk-KIMCBEY7.js";
|
|
111
214
|
import {
|
|
112
215
|
AvatarConversion,
|
|
113
216
|
DocumentConversion,
|
|
@@ -135,25 +238,67 @@ import {
|
|
|
135
238
|
import {
|
|
136
239
|
paginationMeta
|
|
137
240
|
} from "./chunk-NQV2D3FJ.js";
|
|
138
|
-
import {
|
|
139
|
-
createCrewValidator,
|
|
140
|
-
defaultCrewRoleForMembership,
|
|
141
|
-
hasMembershipRole
|
|
142
|
-
} from "./chunk-2M32EOYI.js";
|
|
143
241
|
export {
|
|
242
|
+
ALLOWED_GEOMETRY_TYPES,
|
|
243
|
+
ALLOWED_NEWSLETTER_VARIABLES,
|
|
244
|
+
AllUsersBucketSchema,
|
|
245
|
+
AttachSyllabusElementFormSchema,
|
|
246
|
+
AudienceBucketSchema,
|
|
247
|
+
AudienceBucketType,
|
|
144
248
|
AvatarConversion,
|
|
145
249
|
BaseModel,
|
|
250
|
+
ButtonBlockSchema,
|
|
251
|
+
CompanyUsersBucketSchema,
|
|
252
|
+
CourseMilestoneFormSchema,
|
|
253
|
+
CourseMilestoneKindEnum,
|
|
254
|
+
CreateLocationMapFeatureSchema,
|
|
255
|
+
CreateLocationMapSchema,
|
|
256
|
+
CreateNewsletterCampaignInputSchema,
|
|
257
|
+
CreateNewsletterTemplateInputSchema,
|
|
258
|
+
CreateSyllabusFromTemplateFormSchema,
|
|
146
259
|
DATE_FORMATS,
|
|
260
|
+
DividerBlockSchema,
|
|
147
261
|
DocumentConversion,
|
|
262
|
+
EnrollmentTrainingStatusEnum,
|
|
148
263
|
FaqSchema,
|
|
149
264
|
FaqStatus,
|
|
150
|
-
|
|
151
|
-
|
|
265
|
+
FieldLabelSchema,
|
|
266
|
+
FormFieldType,
|
|
267
|
+
FormSubmissionSchema,
|
|
268
|
+
FormSubmissionShareBaseSchema,
|
|
269
|
+
FormSubmissionShareSchema,
|
|
270
|
+
FormSubmissionSource,
|
|
271
|
+
FormSubmissionStatus,
|
|
272
|
+
FormTemplateAssignmentSchema,
|
|
273
|
+
FormTemplateSchema,
|
|
274
|
+
GeometrySchema,
|
|
275
|
+
GradingScaleFormSchema,
|
|
152
276
|
HeaderConversion,
|
|
277
|
+
HeadingBlockSchema,
|
|
153
278
|
ImageConversion,
|
|
279
|
+
ImportFeaturesSchema,
|
|
280
|
+
LocationFeatureVisibility,
|
|
281
|
+
LocationMapKind,
|
|
154
282
|
MediaType,
|
|
155
283
|
MimeTypes,
|
|
284
|
+
NewsletterAudienceSchema,
|
|
285
|
+
NewsletterBlockSchema,
|
|
286
|
+
NewsletterBlockType,
|
|
287
|
+
NewsletterCampaignRecipientSchema,
|
|
288
|
+
NewsletterCampaignSchema,
|
|
289
|
+
NewsletterCampaignStatus,
|
|
290
|
+
NewsletterCategorySchema,
|
|
291
|
+
NewsletterPreferenceRowSchema,
|
|
292
|
+
NewsletterRecipientStatus,
|
|
293
|
+
NewsletterTemplateSchema,
|
|
294
|
+
NewsletterTemplateSchemaSchema,
|
|
295
|
+
ParagraphBlockSchema,
|
|
296
|
+
ReorderSyllabusElementItemSchema,
|
|
297
|
+
RequiredFormSchema,
|
|
298
|
+
RequiredFormViaCrewSchema,
|
|
299
|
+
RequiredFormViaSchema,
|
|
156
300
|
ReviewFaqSchema,
|
|
301
|
+
RoleMembersBucketSchema,
|
|
157
302
|
SAFETY_REPORT_STATUS_COLORS,
|
|
158
303
|
SAFETY_REPORT_STATUS_LABELS,
|
|
159
304
|
SafetyReportCategoryFormSchema,
|
|
@@ -166,9 +311,32 @@ export {
|
|
|
166
311
|
SafetyReportStatusEnum,
|
|
167
312
|
SafetyReportSubmissionResponseSchema,
|
|
168
313
|
SafetyReportUpdateSchema,
|
|
314
|
+
SchemaFieldSchema,
|
|
315
|
+
SchemaSectionSchema,
|
|
316
|
+
ShowWhenSchema,
|
|
317
|
+
SignOffTrainingElementFormSchema,
|
|
318
|
+
SignatureSchema,
|
|
319
|
+
StoreSyllabusFormSchema,
|
|
320
|
+
SubmissionFileSchema,
|
|
169
321
|
SubmitFaqQuestionSchema,
|
|
322
|
+
SyllabusKindEnum,
|
|
170
323
|
TIME_FORMATS,
|
|
324
|
+
TemplateSchemaSchema,
|
|
171
325
|
ThumbnailConversion,
|
|
326
|
+
TipTapNodeSchema,
|
|
327
|
+
TodoActionSchema,
|
|
328
|
+
TodoKey,
|
|
329
|
+
TodoSchema,
|
|
330
|
+
TrainingElementFormSchema,
|
|
331
|
+
TrainingElementKindEnum,
|
|
332
|
+
TrainingRecordResultEnum,
|
|
333
|
+
TrainingRecordStatusEnum,
|
|
334
|
+
UpdateLocationMapFeatureSchema,
|
|
335
|
+
UpdateLocationMapSchema,
|
|
336
|
+
UpdateSyllabusElementFormSchema,
|
|
337
|
+
UpdateSyllabusFormSchema,
|
|
338
|
+
UpsertTrainingRecordFormSchema,
|
|
339
|
+
ViewportSchema,
|
|
172
340
|
addressSchema,
|
|
173
341
|
aircraftRatingSchema,
|
|
174
342
|
airplaneIssueSchema,
|
|
@@ -185,16 +353,22 @@ export {
|
|
|
185
353
|
baseMembershipSchema,
|
|
186
354
|
bookingDuration,
|
|
187
355
|
bookingSchema,
|
|
356
|
+
bookingWaypointSchema,
|
|
188
357
|
bytesToHuman,
|
|
189
358
|
canPreview,
|
|
190
359
|
commentSchema,
|
|
360
|
+
companyAudienceInclude,
|
|
191
361
|
companySchema,
|
|
192
362
|
contactAttributeSchema,
|
|
363
|
+
courseCheckSyllabusSchema,
|
|
193
364
|
courseEnrollmentMetricsSchema,
|
|
365
|
+
courseEnrollmentMilestoneSchema,
|
|
194
366
|
courseEnrollmentSchema,
|
|
195
367
|
courseFeeSchema,
|
|
368
|
+
courseMilestoneSchema,
|
|
196
369
|
courseSchema,
|
|
197
370
|
createCrewValidator,
|
|
371
|
+
createSyllabusFromTemplateResultSchema,
|
|
198
372
|
crewObjectToString,
|
|
199
373
|
dateString,
|
|
200
374
|
dateTimeString,
|
|
@@ -208,10 +382,13 @@ export {
|
|
|
208
382
|
documentSchema,
|
|
209
383
|
documentShareSchema,
|
|
210
384
|
documentType,
|
|
385
|
+
enrollmentTrainingElementSchema,
|
|
386
|
+
equipmentSchema,
|
|
211
387
|
eventSchema,
|
|
212
388
|
expenseItemSchema,
|
|
213
389
|
expenseSchema,
|
|
214
390
|
extendedAirplaneSchema,
|
|
391
|
+
feeCategoryOptionsSchema,
|
|
215
392
|
feeSchema,
|
|
216
393
|
flightLogSchema,
|
|
217
394
|
formatDate,
|
|
@@ -224,7 +401,12 @@ export {
|
|
|
224
401
|
getMediaIcon,
|
|
225
402
|
getMediaType,
|
|
226
403
|
getMonthFromDate,
|
|
404
|
+
gradeHistoryItemSchema,
|
|
405
|
+
gradingScalePointSchema,
|
|
406
|
+
gradingScaleSchema,
|
|
227
407
|
hasMembershipRole,
|
|
408
|
+
impersonationParticipantSchema,
|
|
409
|
+
impersonationStateSchema,
|
|
228
410
|
invoiceSchema,
|
|
229
411
|
landingFeeSchema,
|
|
230
412
|
landingSchema,
|
|
@@ -255,10 +437,24 @@ export {
|
|
|
255
437
|
scheduledFlightSchema,
|
|
256
438
|
settingSchema,
|
|
257
439
|
specialFlightSchema,
|
|
440
|
+
syllabusElementMutationResultSchema,
|
|
441
|
+
syllabusElementSchema,
|
|
442
|
+
syllabusRolloutResultItemSchema,
|
|
443
|
+
syllabusRolloutResultSchema,
|
|
444
|
+
syllabusRolloutSkippedItemSchema,
|
|
445
|
+
syllabusSchema,
|
|
446
|
+
tagSchema,
|
|
258
447
|
ticketSchema,
|
|
259
448
|
timeDiffInDays,
|
|
260
449
|
timeString,
|
|
261
450
|
timeUntil,
|
|
451
|
+
trainingElementSchema,
|
|
452
|
+
trainingRecordEntryInputSchema,
|
|
453
|
+
trainingRecordEntrySchema,
|
|
454
|
+
trainingRecordSchema,
|
|
455
|
+
trainingSignatureSchema,
|
|
456
|
+
trainingTemplatePackSchema,
|
|
457
|
+
usedByCourseSchema,
|
|
262
458
|
userAircraftRatingSchema,
|
|
263
459
|
userQualificationSchema,
|
|
264
460
|
userSchema,
|
package/dist/schemas/index.cjs
CHANGED
|
@@ -81,7 +81,6 @@
|
|
|
81
81
|
|
|
82
82
|
|
|
83
83
|
|
|
84
|
-
var _chunk7QF3OJ45cjs = require('../chunk-7QF3OJ45.cjs');
|
|
85
84
|
|
|
86
85
|
|
|
87
86
|
|
|
@@ -165,4 +164,201 @@ var _chunk7QF3OJ45cjs = require('../chunk-7QF3OJ45.cjs');
|
|
|
165
164
|
|
|
166
165
|
|
|
167
166
|
|
|
168
|
-
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
var _chunkAKLFMP7Gcjs = require('../chunk-AKLFMP7G.cjs');
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
exports.ALLOWED_GEOMETRY_TYPES = _chunkAKLFMP7Gcjs.ALLOWED_GEOMETRY_TYPES; exports.ALLOWED_NEWSLETTER_VARIABLES = _chunkAKLFMP7Gcjs.ALLOWED_NEWSLETTER_VARIABLES; exports.AllUsersBucketSchema = _chunkAKLFMP7Gcjs.AllUsersBucketSchema; exports.AttachSyllabusElementFormSchema = _chunkAKLFMP7Gcjs.AttachSyllabusElementFormSchema; exports.AudienceBucketSchema = _chunkAKLFMP7Gcjs.AudienceBucketSchema; exports.AudienceBucketType = _chunkAKLFMP7Gcjs.AudienceBucketType; exports.BaseModel = _chunkAKLFMP7Gcjs.BaseModel; exports.ButtonBlockSchema = _chunkAKLFMP7Gcjs.ButtonBlockSchema; exports.CompanyUsersBucketSchema = _chunkAKLFMP7Gcjs.CompanyUsersBucketSchema; exports.CourseMilestoneFormSchema = _chunkAKLFMP7Gcjs.CourseMilestoneFormSchema; exports.CourseMilestoneKindEnum = _chunkAKLFMP7Gcjs.CourseMilestoneKindEnum; exports.CreateLocationMapFeatureSchema = _chunkAKLFMP7Gcjs.CreateLocationMapFeatureSchema; exports.CreateLocationMapSchema = _chunkAKLFMP7Gcjs.CreateLocationMapSchema; exports.CreateNewsletterCampaignInputSchema = _chunkAKLFMP7Gcjs.CreateNewsletterCampaignInputSchema; exports.CreateNewsletterTemplateInputSchema = _chunkAKLFMP7Gcjs.CreateNewsletterTemplateInputSchema; exports.CreateSyllabusFromTemplateFormSchema = _chunkAKLFMP7Gcjs.CreateSyllabusFromTemplateFormSchema; exports.DividerBlockSchema = _chunkAKLFMP7Gcjs.DividerBlockSchema; exports.EnrollmentTrainingStatusEnum = _chunkAKLFMP7Gcjs.EnrollmentTrainingStatusEnum; exports.FaqSchema = _chunkAKLFMP7Gcjs.FaqSchema; exports.FaqStatus = _chunkAKLFMP7Gcjs.FaqStatus; exports.FieldLabelSchema = _chunkAKLFMP7Gcjs.FieldLabelSchema; exports.FormFieldType = _chunkAKLFMP7Gcjs.FormFieldType; exports.FormSubmissionSchema = _chunkAKLFMP7Gcjs.FormSubmissionSchema; exports.FormSubmissionShareBaseSchema = _chunkAKLFMP7Gcjs.FormSubmissionShareBaseSchema; exports.FormSubmissionShareSchema = _chunkAKLFMP7Gcjs.FormSubmissionShareSchema; exports.FormSubmissionSource = _chunkAKLFMP7Gcjs.FormSubmissionSource; exports.FormSubmissionStatus = _chunkAKLFMP7Gcjs.FormSubmissionStatus; exports.FormTemplateAssignmentSchema = _chunkAKLFMP7Gcjs.FormTemplateAssignmentSchema; exports.FormTemplateSchema = _chunkAKLFMP7Gcjs.FormTemplateSchema; exports.GeometrySchema = _chunkAKLFMP7Gcjs.GeometrySchema; exports.GradingScaleFormSchema = _chunkAKLFMP7Gcjs.GradingScaleFormSchema; exports.HeadingBlockSchema = _chunkAKLFMP7Gcjs.HeadingBlockSchema; exports.ImportFeaturesSchema = _chunkAKLFMP7Gcjs.ImportFeaturesSchema; exports.LocationFeatureVisibility = _chunkAKLFMP7Gcjs.LocationFeatureVisibility; exports.LocationMapKind = _chunkAKLFMP7Gcjs.LocationMapKind; exports.NewsletterAudienceSchema = _chunkAKLFMP7Gcjs.NewsletterAudienceSchema; exports.NewsletterBlockSchema = _chunkAKLFMP7Gcjs.NewsletterBlockSchema; exports.NewsletterBlockType = _chunkAKLFMP7Gcjs.NewsletterBlockType; exports.NewsletterCampaignRecipientSchema = _chunkAKLFMP7Gcjs.NewsletterCampaignRecipientSchema; exports.NewsletterCampaignSchema = _chunkAKLFMP7Gcjs.NewsletterCampaignSchema; exports.NewsletterCampaignStatus = _chunkAKLFMP7Gcjs.NewsletterCampaignStatus; exports.NewsletterCategorySchema = _chunkAKLFMP7Gcjs.NewsletterCategorySchema; exports.NewsletterPreferenceRowSchema = _chunkAKLFMP7Gcjs.NewsletterPreferenceRowSchema; exports.NewsletterRecipientStatus = _chunkAKLFMP7Gcjs.NewsletterRecipientStatus; exports.NewsletterTemplateSchema = _chunkAKLFMP7Gcjs.NewsletterTemplateSchema; exports.NewsletterTemplateSchemaSchema = _chunkAKLFMP7Gcjs.NewsletterTemplateSchemaSchema; exports.ParagraphBlockSchema = _chunkAKLFMP7Gcjs.ParagraphBlockSchema; exports.ReorderSyllabusElementItemSchema = _chunkAKLFMP7Gcjs.ReorderSyllabusElementItemSchema; exports.RequiredFormSchema = _chunkAKLFMP7Gcjs.RequiredFormSchema; exports.RequiredFormViaCrewSchema = _chunkAKLFMP7Gcjs.RequiredFormViaCrewSchema; exports.RequiredFormViaSchema = _chunkAKLFMP7Gcjs.RequiredFormViaSchema; exports.ReviewFaqSchema = _chunkAKLFMP7Gcjs.ReviewFaqSchema; exports.RoleMembersBucketSchema = _chunkAKLFMP7Gcjs.RoleMembersBucketSchema; exports.SAFETY_REPORT_STATUS_COLORS = _chunkAKLFMP7Gcjs.SAFETY_REPORT_STATUS_COLORS; exports.SAFETY_REPORT_STATUS_LABELS = _chunkAKLFMP7Gcjs.SAFETY_REPORT_STATUS_LABELS; exports.SafetyReportCategoryFormSchema = _chunkAKLFMP7Gcjs.SafetyReportCategoryFormSchema; exports.SafetyReportCategorySchema = _chunkAKLFMP7Gcjs.SafetyReportCategorySchema; exports.SafetyReportFilterSchema = _chunkAKLFMP7Gcjs.SafetyReportFilterSchema; exports.SafetyReportFormSchema = _chunkAKLFMP7Gcjs.SafetyReportFormSchema; exports.SafetyReportListResponseSchema = _chunkAKLFMP7Gcjs.SafetyReportListResponseSchema; exports.SafetyReportMediaSchema = _chunkAKLFMP7Gcjs.SafetyReportMediaSchema; exports.SafetyReportSchema = _chunkAKLFMP7Gcjs.SafetyReportSchema; exports.SafetyReportStatusEnum = _chunkAKLFMP7Gcjs.SafetyReportStatusEnum; exports.SafetyReportSubmissionResponseSchema = _chunkAKLFMP7Gcjs.SafetyReportSubmissionResponseSchema; exports.SafetyReportUpdateSchema = _chunkAKLFMP7Gcjs.SafetyReportUpdateSchema; exports.SchemaFieldSchema = _chunkAKLFMP7Gcjs.SchemaFieldSchema; exports.SchemaSectionSchema = _chunkAKLFMP7Gcjs.SchemaSectionSchema; exports.ShowWhenSchema = _chunkAKLFMP7Gcjs.ShowWhenSchema; exports.SignOffTrainingElementFormSchema = _chunkAKLFMP7Gcjs.SignOffTrainingElementFormSchema; exports.SignatureSchema = _chunkAKLFMP7Gcjs.SignatureSchema; exports.StoreSyllabusFormSchema = _chunkAKLFMP7Gcjs.StoreSyllabusFormSchema; exports.SubmissionFileSchema = _chunkAKLFMP7Gcjs.SubmissionFileSchema; exports.SubmitFaqQuestionSchema = _chunkAKLFMP7Gcjs.SubmitFaqQuestionSchema; exports.SyllabusKindEnum = _chunkAKLFMP7Gcjs.SyllabusKindEnum; exports.TemplateSchemaSchema = _chunkAKLFMP7Gcjs.TemplateSchemaSchema; exports.TipTapNodeSchema = _chunkAKLFMP7Gcjs.TipTapNodeSchema; exports.TodoActionSchema = _chunkAKLFMP7Gcjs.TodoActionSchema; exports.TodoKey = _chunkAKLFMP7Gcjs.TodoKey; exports.TodoSchema = _chunkAKLFMP7Gcjs.TodoSchema; exports.TrainingElementFormSchema = _chunkAKLFMP7Gcjs.TrainingElementFormSchema; exports.TrainingElementKindEnum = _chunkAKLFMP7Gcjs.TrainingElementKindEnum; exports.TrainingRecordResultEnum = _chunkAKLFMP7Gcjs.TrainingRecordResultEnum; exports.TrainingRecordStatusEnum = _chunkAKLFMP7Gcjs.TrainingRecordStatusEnum; exports.UpdateLocationMapFeatureSchema = _chunkAKLFMP7Gcjs.UpdateLocationMapFeatureSchema; exports.UpdateLocationMapSchema = _chunkAKLFMP7Gcjs.UpdateLocationMapSchema; exports.UpdateSyllabusElementFormSchema = _chunkAKLFMP7Gcjs.UpdateSyllabusElementFormSchema; exports.UpdateSyllabusFormSchema = _chunkAKLFMP7Gcjs.UpdateSyllabusFormSchema; exports.UpsertTrainingRecordFormSchema = _chunkAKLFMP7Gcjs.UpsertTrainingRecordFormSchema; exports.ViewportSchema = _chunkAKLFMP7Gcjs.ViewportSchema; exports.addressSchema = _chunkAKLFMP7Gcjs.addressSchema; exports.aircraftRatingSchema = _chunkAKLFMP7Gcjs.aircraftRatingSchema; exports.airplaneIssueSchema = _chunkAKLFMP7Gcjs.airplaneIssueSchema; exports.airplaneIssueSeverityEnum = _chunkAKLFMP7Gcjs.airplaneIssueSeverityEnum; exports.airplaneIssueStatusEnum = _chunkAKLFMP7Gcjs.airplaneIssueStatusEnum; exports.airplanePermissionSchema = _chunkAKLFMP7Gcjs.airplanePermissionSchema; exports.airplaneSchema = _chunkAKLFMP7Gcjs.airplaneSchema; exports.airplaneShareInviteSchema = _chunkAKLFMP7Gcjs.airplaneShareInviteSchema; exports.airportSchema = _chunkAKLFMP7Gcjs.airportSchema; exports.alertSchema = _chunkAKLFMP7Gcjs.alertSchema; exports.allowedDocumentTypeSchema = _chunkAKLFMP7Gcjs.allowedDocumentTypeSchema; exports.approachTypeSchema = _chunkAKLFMP7Gcjs.approachTypeSchema; exports.availSchema = _chunkAKLFMP7Gcjs.availSchema; exports.baseMembershipSchema = _chunkAKLFMP7Gcjs.baseMembershipSchema; exports.bookingSchema = _chunkAKLFMP7Gcjs.bookingSchema; exports.bookingWaypointSchema = _chunkAKLFMP7Gcjs.bookingWaypointSchema; exports.commentSchema = _chunkAKLFMP7Gcjs.commentSchema; exports.companyAudienceInclude = _chunkAKLFMP7Gcjs.companyAudienceInclude; exports.companySchema = _chunkAKLFMP7Gcjs.companySchema; exports.contactAttributeSchema = _chunkAKLFMP7Gcjs.contactAttributeSchema; exports.courseCheckSyllabusSchema = _chunkAKLFMP7Gcjs.courseCheckSyllabusSchema; exports.courseEnrollmentMetricsSchema = _chunkAKLFMP7Gcjs.courseEnrollmentMetricsSchema; exports.courseEnrollmentMilestoneSchema = _chunkAKLFMP7Gcjs.courseEnrollmentMilestoneSchema; exports.courseEnrollmentSchema = _chunkAKLFMP7Gcjs.courseEnrollmentSchema; exports.courseFeeSchema = _chunkAKLFMP7Gcjs.courseFeeSchema; exports.courseMilestoneSchema = _chunkAKLFMP7Gcjs.courseMilestoneSchema; exports.courseSchema = _chunkAKLFMP7Gcjs.courseSchema; exports.createSyllabusFromTemplateResultSchema = _chunkAKLFMP7Gcjs.createSyllabusFromTemplateResultSchema; exports.documentComplianceStatus = _chunkAKLFMP7Gcjs.documentComplianceStatus; exports.documentRequirement = _chunkAKLFMP7Gcjs.documentRequirement; exports.documentRequirementGroup = _chunkAKLFMP7Gcjs.documentRequirementGroup; exports.documentRequirementGroupAssignment = _chunkAKLFMP7Gcjs.documentRequirementGroupAssignment; exports.documentSchema = _chunkAKLFMP7Gcjs.documentSchema; exports.documentShareSchema = _chunkAKLFMP7Gcjs.documentShareSchema; exports.documentType = _chunkAKLFMP7Gcjs.documentType; exports.enrollmentTrainingElementSchema = _chunkAKLFMP7Gcjs.enrollmentTrainingElementSchema; exports.equipmentSchema = _chunkAKLFMP7Gcjs.equipmentSchema; exports.eventSchema = _chunkAKLFMP7Gcjs.eventSchema; exports.expenseItemSchema = _chunkAKLFMP7Gcjs.expenseItemSchema; exports.expenseSchema = _chunkAKLFMP7Gcjs.expenseSchema; exports.extendedAirplaneSchema = _chunkAKLFMP7Gcjs.extendedAirplaneSchema; exports.feeCategoryOptionsSchema = _chunkAKLFMP7Gcjs.feeCategoryOptionsSchema; exports.feeSchema = _chunkAKLFMP7Gcjs.feeSchema; exports.flightLogSchema = _chunkAKLFMP7Gcjs.flightLogSchema; exports.gradeHistoryItemSchema = _chunkAKLFMP7Gcjs.gradeHistoryItemSchema; exports.gradingScalePointSchema = _chunkAKLFMP7Gcjs.gradingScalePointSchema; exports.gradingScaleSchema = _chunkAKLFMP7Gcjs.gradingScaleSchema; exports.impersonationParticipantSchema = _chunkAKLFMP7Gcjs.impersonationParticipantSchema; exports.impersonationStateSchema = _chunkAKLFMP7Gcjs.impersonationStateSchema; exports.invoiceSchema = _chunkAKLFMP7Gcjs.invoiceSchema; exports.landingFeeSchema = _chunkAKLFMP7Gcjs.landingFeeSchema; exports.landingSchema = _chunkAKLFMP7Gcjs.landingSchema; exports.maintenanceEventEstimationSchema = _chunkAKLFMP7Gcjs.maintenanceEventEstimationSchema; exports.maintenanceEventSchema = _chunkAKLFMP7Gcjs.maintenanceEventSchema; exports.maintenanceStatusSchema = _chunkAKLFMP7Gcjs.maintenanceStatusSchema; exports.mediaCollection = _chunkAKLFMP7Gcjs.mediaCollection; exports.mediaSchema = _chunkAKLFMP7Gcjs.mediaSchema; exports.membershipSchema = _chunkAKLFMP7Gcjs.membershipSchema; exports.postSchema = _chunkAKLFMP7Gcjs.postSchema; exports.prePaidPackageSchema = _chunkAKLFMP7Gcjs.prePaidPackageSchema; exports.priceSchema = _chunkAKLFMP7Gcjs.priceSchema; exports.qualificationSchema = _chunkAKLFMP7Gcjs.qualificationSchema; exports.recurringFlightSchema = _chunkAKLFMP7Gcjs.recurringFlightSchema; exports.roleSchema = _chunkAKLFMP7Gcjs.roleSchema; exports.runwaySchema = _chunkAKLFMP7Gcjs.runwaySchema; exports.scheduledFlightSchema = _chunkAKLFMP7Gcjs.scheduledFlightSchema; exports.settingSchema = _chunkAKLFMP7Gcjs.settingSchema; exports.specialFlightSchema = _chunkAKLFMP7Gcjs.specialFlightSchema; exports.syllabusElementMutationResultSchema = _chunkAKLFMP7Gcjs.syllabusElementMutationResultSchema; exports.syllabusElementSchema = _chunkAKLFMP7Gcjs.syllabusElementSchema; exports.syllabusRolloutResultItemSchema = _chunkAKLFMP7Gcjs.syllabusRolloutResultItemSchema; exports.syllabusRolloutResultSchema = _chunkAKLFMP7Gcjs.syllabusRolloutResultSchema; exports.syllabusRolloutSkippedItemSchema = _chunkAKLFMP7Gcjs.syllabusRolloutSkippedItemSchema; exports.syllabusSchema = _chunkAKLFMP7Gcjs.syllabusSchema; exports.tagSchema = _chunkAKLFMP7Gcjs.tagSchema; exports.ticketSchema = _chunkAKLFMP7Gcjs.ticketSchema; exports.trainingElementSchema = _chunkAKLFMP7Gcjs.trainingElementSchema; exports.trainingRecordEntryInputSchema = _chunkAKLFMP7Gcjs.trainingRecordEntryInputSchema; exports.trainingRecordEntrySchema = _chunkAKLFMP7Gcjs.trainingRecordEntrySchema; exports.trainingRecordSchema = _chunkAKLFMP7Gcjs.trainingRecordSchema; exports.trainingSignatureSchema = _chunkAKLFMP7Gcjs.trainingSignatureSchema; exports.trainingTemplatePackSchema = _chunkAKLFMP7Gcjs.trainingTemplatePackSchema; exports.usedByCourseSchema = _chunkAKLFMP7Gcjs.usedByCourseSchema; exports.userAircraftRatingSchema = _chunkAKLFMP7Gcjs.userAircraftRatingSchema; exports.userQualificationSchema = _chunkAKLFMP7Gcjs.userQualificationSchema; exports.userSchema = _chunkAKLFMP7Gcjs.userSchema; exports.waypointSchema = _chunkAKLFMP7Gcjs.waypointSchema; exports.zContactDTO = _chunkAKLFMP7Gcjs.zContactDTO; exports.zNetGross = _chunkAKLFMP7Gcjs.zNetGross; exports.zNullableBool = _chunkAKLFMP7Gcjs.zNullableBool; exports.zPhpMoneyObject = _chunkAKLFMP7Gcjs.zPhpMoneyObject;
|