@updraft-solutions/mcrit-sdk 0.1.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/README.md +240 -0
- package/dist/chunk-2DRKSYW4.cjs +99 -0
- package/dist/chunk-2M32EOYI.js +145 -0
- package/dist/chunk-AN55SAGU.js +1189 -0
- package/dist/chunk-D5DUVW34.js +176 -0
- package/dist/chunk-HQSF3WGF.cjs +14 -0
- package/dist/chunk-JGIAOBZI.js +99 -0
- package/dist/chunk-JRVRIKNM.cjs +168 -0
- package/dist/chunk-LVTDNDWE.cjs +124 -0
- package/dist/chunk-LXNCAKJZ.js +0 -0
- package/dist/chunk-MF7G76QS.cjs +176 -0
- package/dist/chunk-MI4YBENQ.cjs +145 -0
- package/dist/chunk-MOOGM3DW.cjs +1 -0
- package/dist/chunk-NQV2D3FJ.js +14 -0
- package/dist/chunk-TJXWL42D.js +124 -0
- package/dist/chunk-VYT5KQWF.js +168 -0
- package/dist/chunk-XKZQ5W7E.cjs +1189 -0
- package/dist/courses/index.cjs +7 -0
- package/dist/courses/index.d.cts +58 -0
- package/dist/courses/index.d.ts +58 -0
- package/dist/courses/index.js +7 -0
- package/dist/crew/index.cjs +10 -0
- package/dist/crew/index.d.cts +102 -0
- package/dist/crew/index.d.ts +102 -0
- package/dist/crew/index.js +10 -0
- package/dist/crew/vue.cjs +34 -0
- package/dist/crew/vue.d.cts +31 -0
- package/dist/crew/vue.d.ts +31 -0
- package/dist/crew/vue.js +34 -0
- package/dist/format/index.cjs +44 -0
- package/dist/format/index.d.cts +69 -0
- package/dist/format/index.d.ts +69 -0
- package/dist/format/index.js +44 -0
- package/dist/index.cjs +261 -0
- package/dist/index.d.cts +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +261 -0
- package/dist/media/index.cjs +30 -0
- package/dist/media/index.d.cts +89 -0
- package/dist/media/index.d.ts +89 -0
- package/dist/media/index.js +30 -0
- package/dist/models-CY3MmvCg.d.cts +33801 -0
- package/dist/models-CY3MmvCg.d.ts +33801 -0
- package/dist/money/index.cjs +18 -0
- package/dist/money/index.d.cts +66 -0
- package/dist/money/index.d.ts +66 -0
- package/dist/money/index.js +18 -0
- package/dist/pagination/index.cjs +6 -0
- package/dist/pagination/index.d.cts +16 -0
- package/dist/pagination/index.d.ts +16 -0
- package/dist/pagination/index.js +6 -0
- package/dist/schemas/index.cjs +158 -0
- package/dist/schemas/index.d.cts +1019 -0
- package/dist/schemas/index.d.ts +1019 -0
- package/dist/schemas/index.js +158 -0
- package/dist/types/index.cjs +1 -0
- package/dist/types/index.d.cts +143 -0
- package/dist/types/index.d.ts +143 -0
- package/dist/types/index.js +1 -0
- package/package.json +171 -0
- package/src/courses/index.ts +202 -0
- package/src/crew/index.ts +255 -0
- package/src/crew/vue.ts +70 -0
- package/src/format/index.ts +265 -0
- package/src/index.ts +76 -0
- package/src/media/index.ts +224 -0
- package/src/money/index.ts +168 -0
- package/src/pagination/index.ts +27 -0
- package/src/schemas/common.ts +73 -0
- package/src/schemas/faq.ts +94 -0
- package/src/schemas/fee.ts +37 -0
- package/src/schemas/index.ts +6 -0
- package/src/schemas/models.ts +996 -0
- package/src/schemas/report.ts +306 -0
- package/src/schemas/safety-report.ts +163 -0
- package/src/types/api.ts +37 -0
- package/src/types/compliance.ts +44 -0
- package/src/types/index.ts +3 -0
- package/src/types/models.ts +124 -0
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Note on German locale: the SDK does not eagerly load `moment/locale/de`.
|
|
3
|
+
* Consumers that want German formatting should import it once at their
|
|
4
|
+
* app entry: `import "moment/locale/de"`. Otherwise `timeUntil` and other
|
|
5
|
+
* locale-dependent functions will fall back to English.
|
|
6
|
+
*/
|
|
7
|
+
/** Predefined moment format strings, frozen so callers can reference them safely. */
|
|
8
|
+
declare const DATE_FORMATS: Readonly<{
|
|
9
|
+
readonly DATE: "DD.MM.YYYY";
|
|
10
|
+
readonly TIME: "HH:mm";
|
|
11
|
+
readonly TIME_TZ: "HH:mm z";
|
|
12
|
+
readonly DATETIME: "DD.MM.YYYY HH:mm";
|
|
13
|
+
readonly DATETIME_TZ: "DD.MM.YYYY HH:mm z";
|
|
14
|
+
readonly YEAR: "YYYY";
|
|
15
|
+
readonly DAY: "DD";
|
|
16
|
+
readonly MONTH_SHORT: "MMM";
|
|
17
|
+
}>;
|
|
18
|
+
declare const TIME_FORMATS: Readonly<{
|
|
19
|
+
readonly TIME: "HH:mm";
|
|
20
|
+
readonly TIME_WITH_SECONDS: "HH:mm:ss";
|
|
21
|
+
}>;
|
|
22
|
+
type DateFormat = (typeof DATE_FORMATS)[keyof typeof DATE_FORMATS];
|
|
23
|
+
type TimeFormat = (typeof TIME_FORMATS)[keyof typeof TIME_FORMATS];
|
|
24
|
+
/**
|
|
25
|
+
* Format a strict `YYYY-MM-DD` date string with the given moment format.
|
|
26
|
+
* Returns `""` for invalid input.
|
|
27
|
+
*/
|
|
28
|
+
declare function formatDate(date: string | null | undefined, format?: string, locale?: string): string;
|
|
29
|
+
/**
|
|
30
|
+
* Normalize an `HH:mm[:ss]`-ish string into a chosen format. Pads
|
|
31
|
+
* components and clamps each to its valid range.
|
|
32
|
+
*/
|
|
33
|
+
declare function formatTime(time: string | null | undefined, format?: string): string;
|
|
34
|
+
/**
|
|
35
|
+
* Format an ISO date-time string or Date in a specific timezone+locale.
|
|
36
|
+
* Returns `""` for invalid input.
|
|
37
|
+
*/
|
|
38
|
+
declare function formatDateTime(dateTime: string | Date | null | undefined, timezone?: string, format?: string, locale?: string): string;
|
|
39
|
+
declare function bytesToHuman(bytes: number | null | undefined): string;
|
|
40
|
+
declare function monthString(date: string | Date | null | undefined): string;
|
|
41
|
+
declare function getMonthFromDate(date: string | Date | null | undefined): string;
|
|
42
|
+
declare function yearString(date: string | Date | null | undefined, timezone?: string): string;
|
|
43
|
+
declare function percentage(value: number | string | null | undefined): string;
|
|
44
|
+
interface MembershipStatusBadge {
|
|
45
|
+
text: string;
|
|
46
|
+
color: string;
|
|
47
|
+
}
|
|
48
|
+
declare function membershipStatus(value: string | null | undefined): MembershipStatusBadge;
|
|
49
|
+
declare function dayString(date: string | Date | null | undefined, timezone?: string): string;
|
|
50
|
+
declare function dateString(date: string | Date | null | undefined, timezone?: string): string;
|
|
51
|
+
declare function dateTimeString(date: string | Date | null | undefined, timezone?: string, includeTimezone?: boolean): string | null;
|
|
52
|
+
declare function timeString(date: string | Date | null | undefined, timezone?: string, includeTimezone?: boolean): string;
|
|
53
|
+
declare function timeUntil(dateTime: string | Date | null | undefined, locale?: string): string;
|
|
54
|
+
declare function minutesFormatted(minutes: number | null | undefined): string;
|
|
55
|
+
interface CrewMember {
|
|
56
|
+
name?: string;
|
|
57
|
+
role?: string;
|
|
58
|
+
}
|
|
59
|
+
declare function crewObjectToString(crew: CrewMember[] | string | null | undefined, { includeRoles }?: {
|
|
60
|
+
includeRoles?: boolean;
|
|
61
|
+
}): string;
|
|
62
|
+
declare function timeDiffInDays(startDateTime: string | Date | null | undefined, endDateTime: string | Date | null | undefined): string | null;
|
|
63
|
+
interface BookingTimespan {
|
|
64
|
+
etdZ: string | Date;
|
|
65
|
+
etaZ: string | Date;
|
|
66
|
+
}
|
|
67
|
+
declare function bookingDuration(booking: BookingTimespan): string;
|
|
68
|
+
|
|
69
|
+
export { type BookingTimespan, type CrewMember, DATE_FORMATS, type DateFormat, type MembershipStatusBadge, TIME_FORMATS, type TimeFormat, bookingDuration, bytesToHuman, crewObjectToString, dateString, dateTimeString, dayString, formatDate, formatDateTime, formatTime, getMonthFromDate, membershipStatus, minutesFormatted, monthString, percentage, timeDiffInDays, timeString, timeUntil, yearString };
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import {
|
|
2
|
+
DATE_FORMATS,
|
|
3
|
+
TIME_FORMATS,
|
|
4
|
+
bookingDuration,
|
|
5
|
+
bytesToHuman,
|
|
6
|
+
crewObjectToString,
|
|
7
|
+
dateString,
|
|
8
|
+
dateTimeString,
|
|
9
|
+
dayString,
|
|
10
|
+
formatDate,
|
|
11
|
+
formatDateTime,
|
|
12
|
+
formatTime,
|
|
13
|
+
getMonthFromDate,
|
|
14
|
+
membershipStatus,
|
|
15
|
+
minutesFormatted,
|
|
16
|
+
monthString,
|
|
17
|
+
percentage,
|
|
18
|
+
timeDiffInDays,
|
|
19
|
+
timeString,
|
|
20
|
+
timeUntil,
|
|
21
|
+
yearString
|
|
22
|
+
} from "../chunk-D5DUVW34.js";
|
|
23
|
+
export {
|
|
24
|
+
DATE_FORMATS,
|
|
25
|
+
TIME_FORMATS,
|
|
26
|
+
bookingDuration,
|
|
27
|
+
bytesToHuman,
|
|
28
|
+
crewObjectToString,
|
|
29
|
+
dateString,
|
|
30
|
+
dateTimeString,
|
|
31
|
+
dayString,
|
|
32
|
+
formatDate,
|
|
33
|
+
formatDateTime,
|
|
34
|
+
formatTime,
|
|
35
|
+
getMonthFromDate,
|
|
36
|
+
membershipStatus,
|
|
37
|
+
minutesFormatted,
|
|
38
|
+
monthString,
|
|
39
|
+
percentage,
|
|
40
|
+
timeDiffInDays,
|
|
41
|
+
timeString,
|
|
42
|
+
timeUntil,
|
|
43
|
+
yearString
|
|
44
|
+
};
|
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,261 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
var _chunkXKZQ5W7Ecjs = require('./chunk-XKZQ5W7E.cjs');
|
|
80
|
+
require('./chunk-MOOGM3DW.cjs');
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
var _chunkLVTDNDWEcjs = require('./chunk-LVTDNDWE.cjs');
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
var _chunkMI4YBENQcjs = require('./chunk-MI4YBENQ.cjs');
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
var _chunkMF7G76QScjs = require('./chunk-MF7G76QS.cjs');
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
var _chunkJRVRIKNMcjs = require('./chunk-JRVRIKNM.cjs');
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
var _chunk2DRKSYW4cjs = require('./chunk-2DRKSYW4.cjs');
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
var _chunkHQSF3WGFcjs = require('./chunk-HQSF3WGF.cjs');
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
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
|
+
exports.AvatarConversion = _chunkJRVRIKNMcjs.AvatarConversion; exports.BaseModel = _chunkXKZQ5W7Ecjs.BaseModel; exports.DATE_FORMATS = _chunkMF7G76QScjs.DATE_FORMATS; exports.DocumentConversion = _chunkJRVRIKNMcjs.DocumentConversion; exports.FaqSchema = _chunkXKZQ5W7Ecjs.FaqSchema; exports.FaqStatus = _chunkXKZQ5W7Ecjs.FaqStatus; exports.FeeCategoryOptionsSchema = _chunkXKZQ5W7Ecjs.FeeCategoryOptionsSchema; exports.FeeSchema = _chunkXKZQ5W7Ecjs.FeeSchema; exports.HeaderConversion = _chunkJRVRIKNMcjs.HeaderConversion; exports.ImageConversion = _chunkJRVRIKNMcjs.ImageConversion; exports.MediaType = _chunkJRVRIKNMcjs.MediaType; exports.MimeTypes = _chunkJRVRIKNMcjs.MimeTypes; exports.ReviewFaqSchema = _chunkXKZQ5W7Ecjs.ReviewFaqSchema; exports.SAFETY_REPORT_STATUS_COLORS = _chunkXKZQ5W7Ecjs.SAFETY_REPORT_STATUS_COLORS; exports.SAFETY_REPORT_STATUS_LABELS = _chunkXKZQ5W7Ecjs.SAFETY_REPORT_STATUS_LABELS; exports.SafetyReportCategoryFormSchema = _chunkXKZQ5W7Ecjs.SafetyReportCategoryFormSchema; exports.SafetyReportCategorySchema = _chunkXKZQ5W7Ecjs.SafetyReportCategorySchema; exports.SafetyReportFilterSchema = _chunkXKZQ5W7Ecjs.SafetyReportFilterSchema; exports.SafetyReportFormSchema = _chunkXKZQ5W7Ecjs.SafetyReportFormSchema; exports.SafetyReportListResponseSchema = _chunkXKZQ5W7Ecjs.SafetyReportListResponseSchema; exports.SafetyReportMediaSchema = _chunkXKZQ5W7Ecjs.SafetyReportMediaSchema; exports.SafetyReportSchema = _chunkXKZQ5W7Ecjs.SafetyReportSchema; exports.SafetyReportStatusEnum = _chunkXKZQ5W7Ecjs.SafetyReportStatusEnum; exports.SafetyReportSubmissionResponseSchema = _chunkXKZQ5W7Ecjs.SafetyReportSubmissionResponseSchema; exports.SafetyReportUpdateSchema = _chunkXKZQ5W7Ecjs.SafetyReportUpdateSchema; exports.SubmitFaqQuestionSchema = _chunkXKZQ5W7Ecjs.SubmitFaqQuestionSchema; exports.TIME_FORMATS = _chunkMF7G76QScjs.TIME_FORMATS; exports.ThumbnailConversion = _chunkJRVRIKNMcjs.ThumbnailConversion; exports.addressSchema = _chunkXKZQ5W7Ecjs.addressSchema; exports.aircraftRatingSchema = _chunkXKZQ5W7Ecjs.aircraftRatingSchema; exports.airplanePermissionSchema = _chunkXKZQ5W7Ecjs.airplanePermissionSchema; exports.airplaneSchema = _chunkXKZQ5W7Ecjs.airplaneSchema; exports.airportSchema = _chunkXKZQ5W7Ecjs.airportSchema; exports.alertSchema = _chunkXKZQ5W7Ecjs.alertSchema; exports.allowedDocumentTypeSchema = _chunkXKZQ5W7Ecjs.allowedDocumentTypeSchema; exports.approachTypeSchema = _chunkXKZQ5W7Ecjs.approachTypeSchema; exports.availSchema = _chunkXKZQ5W7Ecjs.availSchema; exports.baseMembershipSchema = _chunkXKZQ5W7Ecjs.baseMembershipSchema; exports.bookingDuration = _chunkMF7G76QScjs.bookingDuration; exports.bookingSchema = _chunkXKZQ5W7Ecjs.bookingSchema; exports.bytesToHuman = _chunkMF7G76QScjs.bytesToHuman; exports.canPreview = _chunkJRVRIKNMcjs.canPreview; exports.commentSchema = _chunkXKZQ5W7Ecjs.commentSchema; exports.companySchema = _chunkXKZQ5W7Ecjs.companySchema; exports.contactAttributeSchema = _chunkXKZQ5W7Ecjs.contactAttributeSchema; exports.courseEnrollmentSchema = _chunkXKZQ5W7Ecjs.courseEnrollmentSchema; exports.courseFeeSchema = _chunkXKZQ5W7Ecjs.courseFeeSchema; exports.courseSchema = _chunkXKZQ5W7Ecjs.courseSchema; exports.createCrewValidator = _chunkMI4YBENQcjs.createCrewValidator; exports.crewObjectToString = _chunkMF7G76QScjs.crewObjectToString; exports.dateString = _chunkMF7G76QScjs.dateString; exports.dateTimeString = _chunkMF7G76QScjs.dateTimeString; exports.dayString = _chunkMF7G76QScjs.dayString; exports.defaultCrewRoleForMembership = _chunkMI4YBENQcjs.defaultCrewRoleForMembership; exports.displayFee = _chunk2DRKSYW4cjs.displayFee; exports.documentComplianceStatus = _chunkXKZQ5W7Ecjs.documentComplianceStatus; exports.documentRequirement = _chunkXKZQ5W7Ecjs.documentRequirement; exports.documentRequirementGroup = _chunkXKZQ5W7Ecjs.documentRequirementGroup; exports.documentRequirementGroupAssignment = _chunkXKZQ5W7Ecjs.documentRequirementGroupAssignment; exports.documentSchema = _chunkXKZQ5W7Ecjs.documentSchema; exports.documentShareSchema = _chunkXKZQ5W7Ecjs.documentShareSchema; exports.documentType = _chunkXKZQ5W7Ecjs.documentType; exports.eventSchema = _chunkXKZQ5W7Ecjs.eventSchema; exports.expenseItemSchema = _chunkXKZQ5W7Ecjs.expenseItemSchema; exports.expenseSchema = _chunkXKZQ5W7Ecjs.expenseSchema; exports.extendedAirplaneSchema = _chunkXKZQ5W7Ecjs.extendedAirplaneSchema; exports.feeSchema = _chunkXKZQ5W7Ecjs.feeSchema; exports.flightLogSchema = _chunkXKZQ5W7Ecjs.flightLogSchema; exports.formatDate = _chunkMF7G76QScjs.formatDate; exports.formatDateTime = _chunkMF7G76QScjs.formatDateTime; exports.formatTime = _chunkMF7G76QScjs.formatTime; exports.formatToEuroString = _chunk2DRKSYW4cjs.formatToEuroString; exports.fromCents = _chunk2DRKSYW4cjs.fromCents; exports.getDocumentIcon = _chunkJRVRIKNMcjs.getDocumentIcon; exports.getMediaDisplayName = _chunkJRVRIKNMcjs.getMediaDisplayName; exports.getMediaIcon = _chunkJRVRIKNMcjs.getMediaIcon; exports.getMediaType = _chunkJRVRIKNMcjs.getMediaType; exports.getMonthFromDate = _chunkMF7G76QScjs.getMonthFromDate; exports.hasMembershipRole = _chunkMI4YBENQcjs.hasMembershipRole; exports.invoiceSchema = _chunkXKZQ5W7Ecjs.invoiceSchema; exports.landingFeeSchema = _chunkXKZQ5W7Ecjs.landingFeeSchema; exports.landingSchema = _chunkXKZQ5W7Ecjs.landingSchema; exports.maintenanceEventEstimationSchema = _chunkXKZQ5W7Ecjs.maintenanceEventEstimationSchema; exports.maintenanceEventSchema = _chunkXKZQ5W7Ecjs.maintenanceEventSchema; exports.maintenanceStatusSchema = _chunkXKZQ5W7Ecjs.maintenanceStatusSchema; exports.mapMediaConversions = _chunkJRVRIKNMcjs.mapMediaConversions; exports.mediaCollection = _chunkXKZQ5W7Ecjs.mediaCollection; exports.mediaSchema = _chunkXKZQ5W7Ecjs.mediaSchema; exports.membershipSchema = _chunkXKZQ5W7Ecjs.membershipSchema; exports.membershipStatus = _chunkMF7G76QScjs.membershipStatus; exports.minutesFormatted = _chunkMF7G76QScjs.minutesFormatted; exports.money = _chunk2DRKSYW4cjs.money; exports.moneyFormatted = _chunk2DRKSYW4cjs.moneyFormatted; exports.monthString = _chunkMF7G76QScjs.monthString; exports.paginationMeta = _chunkHQSF3WGFcjs.paginationMeta; exports.parseCourse = _chunkLVTDNDWEcjs.parseCourse; exports.parseFee = _chunk2DRKSYW4cjs.parseFee; exports.parsePrice = _chunk2DRKSYW4cjs.parsePrice; exports.percentage = _chunkMF7G76QScjs.percentage; exports.postSchema = _chunkXKZQ5W7Ecjs.postSchema; exports.prePaidPackageSchema = _chunkXKZQ5W7Ecjs.prePaidPackageSchema; exports.priceSchema = _chunkXKZQ5W7Ecjs.priceSchema; exports.qualificationSchema = _chunkXKZQ5W7Ecjs.qualificationSchema; exports.recurringFlightSchema = _chunkXKZQ5W7Ecjs.recurringFlightSchema; exports.roleSchema = _chunkXKZQ5W7Ecjs.roleSchema; exports.runwaySchema = _chunkXKZQ5W7Ecjs.runwaySchema; exports.scheduledFlightSchema = _chunkXKZQ5W7Ecjs.scheduledFlightSchema; exports.settingSchema = _chunkXKZQ5W7Ecjs.settingSchema; exports.specialFlightSchema = _chunkXKZQ5W7Ecjs.specialFlightSchema; exports.ticketSchema = _chunkXKZQ5W7Ecjs.ticketSchema; exports.timeDiffInDays = _chunkMF7G76QScjs.timeDiffInDays; exports.timeString = _chunkMF7G76QScjs.timeString; exports.timeUntil = _chunkMF7G76QScjs.timeUntil; exports.userAircraftRatingSchema = _chunkXKZQ5W7Ecjs.userAircraftRatingSchema; exports.userQualificationSchema = _chunkXKZQ5W7Ecjs.userQualificationSchema; exports.userSchema = _chunkXKZQ5W7Ecjs.userSchema; exports.waypointSchema = _chunkXKZQ5W7Ecjs.waypointSchema; exports.yearString = _chunkMF7G76QScjs.yearString; exports.zContactDTO = _chunkXKZQ5W7Ecjs.zContactDTO; exports.zNetGross = _chunkXKZQ5W7Ecjs.zNetGross; exports.zNullableBool = _chunkXKZQ5W7Ecjs.zNullableBool; exports.zPhpMoneyObject = _chunkXKZQ5W7Ecjs.zPhpMoneyObject;
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export { B as BaseModel, a as addressSchema, b as aircraftRatingSchema, c as airplanePermissionSchema, d as airplaneSchema, e as airportSchema, f as alertSchema, g as allowedDocumentTypeSchema, h as approachTypeSchema, i as availSchema, j as baseMembershipSchema, k as bookingSchema, l as commentSchema, m as companySchema, n as contactAttributeSchema, o as courseEnrollmentSchema, p as courseFeeSchema, q as courseSchema, r as documentComplianceStatus, s as documentRequirement, t as documentRequirementGroup, u as documentRequirementGroupAssignment, v as documentSchema, w as documentShareSchema, x as documentType, y as eventSchema, z as expenseItemSchema, A as expenseSchema, C as extendedAirplaneSchema, D as feeSchema, E as flightLogSchema, F as invoiceSchema, G as landingFeeSchema, H as landingSchema, I as maintenanceEventEstimationSchema, J as maintenanceEventSchema, K as maintenanceStatusSchema, L as mediaCollection, M as mediaSchema, N as membershipSchema, O as postSchema, P as prePaidPackageSchema, Q as priceSchema, R as qualificationSchema, S as recurringFlightSchema, T as roleSchema, U as runwaySchema, V as scheduledFlightSchema, W as settingSchema, X as specialFlightSchema, Y as ticketSchema, Z as userAircraftRatingSchema, _ as userQualificationSchema, $ as userSchema, a0 as waypointSchema, a1 as zContactDTO, a2 as zNetGross, a3 as zNullableBool, a4 as zPhpMoneyObject } from './models-CY3MmvCg.cjs';
|
|
2
|
+
export { AircraftUtilization, BookingsData, CompanyDevelopmentReportData, CreateFaqInput, ExpenseData, Faq, FaqSchema, FaqStatus, Fee, FeeCategoryOptions, FeeCategoryOptionsSchema, FeeSchema, FinancialReportData, FinancialSummaryData, FlightHoursData, InstructorData, InstructorEfficiencyReportData, InstructorSummaryData, InvoiceData, LandingsData, Media, MemberActivityData, OperationalReportData, PeriodData, PrepaidPackageData, Report, ReportData, ReportGenerationParams, ReportGenerationResponse, ReportGranularity, ReportListItem, ReportMedia, ReportMetadata, ReportParameters, ReportStatus, ReportStatusResponse, ReportType, RevenueData, ReviewFaqInput, ReviewFaqSchema, SAFETY_REPORT_STATUS_COLORS, SAFETY_REPORT_STATUS_LABELS, SafetyReport, SafetyReportCategory, SafetyReportCategoryForm, SafetyReportCategoryFormSchema, SafetyReportCategorySchema, SafetyReportFilter, SafetyReportFilterSchema, SafetyReportForm, SafetyReportFormSchema, SafetyReportListResponse, SafetyReportListResponseSchema, SafetyReportMedia, SafetyReportMediaSchema, SafetyReportSchema, SafetyReportStatus, SafetyReportStatusEnum, SafetyReportSubmissionResponse, SafetyReportSubmissionResponseSchema, SafetyReportUpdate, SafetyReportUpdateSchema, SubmitFaqQuestionInput, SubmitFaqQuestionSchema, UpdateFaqInput } from './schemas/index.cjs';
|
|
3
|
+
export { Address, AircraftRating, Airplane, AirplanePermission, Airport, Alert, AllowedDocumentType, ApproachType, Avail, BaseMembership, Booking, Comment, Company, ComplianceData, ComplianceGroup, ComplianceRequirement, ComplianceRequirementGroup, ComplianceResponse, ComplianceSummary, Course, CourseEnrollment, CourseFee, CreateCommentInput, DataWrappedResponse, Document, DocumentComplianceStatus, DocumentRequirement, DocumentRequirementGroup, DocumentRequirementGroupAssignment, DocumentShare, DocumentType, Event, Expense, ExpenseItem, ExtendedAirplane, FlightLog, Invoice, Landing, LandingFee, MaintenanceEvent, MaintenanceEventEstimation, MaintenanceStatus, MediaCollection, Membership, PaginatedResponse, Post, PrePaidPackage, Price, Qualification, RecurringFlight, Resource, Role, Runway, ScheduledFlight, Setting, SpecialFlight, Ticket, ToggleFavoriteResponse, UpdateCommentInput, User, UserAircraftRating, UserQualification, Waypoint } from './types/index.cjs';
|
|
4
|
+
export { FeeLike, NetGross, ParsedFee, ParsedPrice, PhpMoneyObject, PriceLike, displayFee, formatToEuroString, fromCents, money, moneyFormatted, parseFee, parsePrice } from './money/index.cjs';
|
|
5
|
+
export { CourseFeeLike, CourseLike, CourseVariant, ParsedCourse, ParsedCourseFee, parseCourse } from './courses/index.cjs';
|
|
6
|
+
export { BookingTimespan, CrewMember, DATE_FORMATS, DateFormat, MembershipStatusBadge, TIME_FORMATS, TimeFormat, bookingDuration, bytesToHuman, crewObjectToString, dateString, dateTimeString, dayString, formatDate, formatDateTime, formatTime, getMonthFromDate, membershipStatus, minutesFormatted, monthString, percentage, timeDiffInDays, timeString, timeUntil, yearString } from './format/index.cjs';
|
|
7
|
+
export { Constraint, ConstraintKind, CrewConfig, CrewEntry, CrewValidator, MembershipRoleHolder, PicResolution, PositionAttributes, PositionDefinition, Violation, createCrewValidator, defaultCrewRoleForMembership, hasMembershipRole } from './crew/index.cjs';
|
|
8
|
+
export { AvatarConversion, DocumentConversion, HeaderConversion, ImageConversion, MappedMedia, MediaLike, MediaType, MediaTypeValue, MimeTypes, ThumbnailConversion, canPreview, getDocumentIcon, getMediaDisplayName, getMediaIcon, getMediaType, mapMediaConversions } from './media/index.cjs';
|
|
9
|
+
export { PaginationMeta, PaginationOptions, paginationMeta } from './pagination/index.cjs';
|
|
10
|
+
import 'zod';
|
|
11
|
+
import 'dinero.js';
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export { B as BaseModel, a as addressSchema, b as aircraftRatingSchema, c as airplanePermissionSchema, d as airplaneSchema, e as airportSchema, f as alertSchema, g as allowedDocumentTypeSchema, h as approachTypeSchema, i as availSchema, j as baseMembershipSchema, k as bookingSchema, l as commentSchema, m as companySchema, n as contactAttributeSchema, o as courseEnrollmentSchema, p as courseFeeSchema, q as courseSchema, r as documentComplianceStatus, s as documentRequirement, t as documentRequirementGroup, u as documentRequirementGroupAssignment, v as documentSchema, w as documentShareSchema, x as documentType, y as eventSchema, z as expenseItemSchema, A as expenseSchema, C as extendedAirplaneSchema, D as feeSchema, E as flightLogSchema, F as invoiceSchema, G as landingFeeSchema, H as landingSchema, I as maintenanceEventEstimationSchema, J as maintenanceEventSchema, K as maintenanceStatusSchema, L as mediaCollection, M as mediaSchema, N as membershipSchema, O as postSchema, P as prePaidPackageSchema, Q as priceSchema, R as qualificationSchema, S as recurringFlightSchema, T as roleSchema, U as runwaySchema, V as scheduledFlightSchema, W as settingSchema, X as specialFlightSchema, Y as ticketSchema, Z as userAircraftRatingSchema, _ as userQualificationSchema, $ as userSchema, a0 as waypointSchema, a1 as zContactDTO, a2 as zNetGross, a3 as zNullableBool, a4 as zPhpMoneyObject } from './models-CY3MmvCg.js';
|
|
2
|
+
export { AircraftUtilization, BookingsData, CompanyDevelopmentReportData, CreateFaqInput, ExpenseData, Faq, FaqSchema, FaqStatus, Fee, FeeCategoryOptions, FeeCategoryOptionsSchema, FeeSchema, FinancialReportData, FinancialSummaryData, FlightHoursData, InstructorData, InstructorEfficiencyReportData, InstructorSummaryData, InvoiceData, LandingsData, Media, MemberActivityData, OperationalReportData, PeriodData, PrepaidPackageData, Report, ReportData, ReportGenerationParams, ReportGenerationResponse, ReportGranularity, ReportListItem, ReportMedia, ReportMetadata, ReportParameters, ReportStatus, ReportStatusResponse, ReportType, RevenueData, ReviewFaqInput, ReviewFaqSchema, SAFETY_REPORT_STATUS_COLORS, SAFETY_REPORT_STATUS_LABELS, SafetyReport, SafetyReportCategory, SafetyReportCategoryForm, SafetyReportCategoryFormSchema, SafetyReportCategorySchema, SafetyReportFilter, SafetyReportFilterSchema, SafetyReportForm, SafetyReportFormSchema, SafetyReportListResponse, SafetyReportListResponseSchema, SafetyReportMedia, SafetyReportMediaSchema, SafetyReportSchema, SafetyReportStatus, SafetyReportStatusEnum, SafetyReportSubmissionResponse, SafetyReportSubmissionResponseSchema, SafetyReportUpdate, SafetyReportUpdateSchema, SubmitFaqQuestionInput, SubmitFaqQuestionSchema, UpdateFaqInput } from './schemas/index.js';
|
|
3
|
+
export { Address, AircraftRating, Airplane, AirplanePermission, Airport, Alert, AllowedDocumentType, ApproachType, Avail, BaseMembership, Booking, Comment, Company, ComplianceData, ComplianceGroup, ComplianceRequirement, ComplianceRequirementGroup, ComplianceResponse, ComplianceSummary, Course, CourseEnrollment, CourseFee, CreateCommentInput, DataWrappedResponse, Document, DocumentComplianceStatus, DocumentRequirement, DocumentRequirementGroup, DocumentRequirementGroupAssignment, DocumentShare, DocumentType, Event, Expense, ExpenseItem, ExtendedAirplane, FlightLog, Invoice, Landing, LandingFee, MaintenanceEvent, MaintenanceEventEstimation, MaintenanceStatus, MediaCollection, Membership, PaginatedResponse, Post, PrePaidPackage, Price, Qualification, RecurringFlight, Resource, Role, Runway, ScheduledFlight, Setting, SpecialFlight, Ticket, ToggleFavoriteResponse, UpdateCommentInput, User, UserAircraftRating, UserQualification, Waypoint } from './types/index.js';
|
|
4
|
+
export { FeeLike, NetGross, ParsedFee, ParsedPrice, PhpMoneyObject, PriceLike, displayFee, formatToEuroString, fromCents, money, moneyFormatted, parseFee, parsePrice } from './money/index.js';
|
|
5
|
+
export { CourseFeeLike, CourseLike, CourseVariant, ParsedCourse, ParsedCourseFee, parseCourse } from './courses/index.js';
|
|
6
|
+
export { BookingTimespan, CrewMember, DATE_FORMATS, DateFormat, MembershipStatusBadge, TIME_FORMATS, TimeFormat, bookingDuration, bytesToHuman, crewObjectToString, dateString, dateTimeString, dayString, formatDate, formatDateTime, formatTime, getMonthFromDate, membershipStatus, minutesFormatted, monthString, percentage, timeDiffInDays, timeString, timeUntil, yearString } from './format/index.js';
|
|
7
|
+
export { Constraint, ConstraintKind, CrewConfig, CrewEntry, CrewValidator, MembershipRoleHolder, PicResolution, PositionAttributes, PositionDefinition, Violation, createCrewValidator, defaultCrewRoleForMembership, hasMembershipRole } from './crew/index.js';
|
|
8
|
+
export { AvatarConversion, DocumentConversion, HeaderConversion, ImageConversion, MappedMedia, MediaLike, MediaType, MediaTypeValue, MimeTypes, ThumbnailConversion, canPreview, getDocumentIcon, getMediaDisplayName, getMediaIcon, getMediaType, mapMediaConversions } from './media/index.js';
|
|
9
|
+
export { PaginationMeta, PaginationOptions, paginationMeta } from './pagination/index.js';
|
|
10
|
+
import 'zod';
|
|
11
|
+
import 'dinero.js';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,261 @@
|
|
|
1
|
+
import {
|
|
2
|
+
BaseModel,
|
|
3
|
+
FaqSchema,
|
|
4
|
+
FaqStatus,
|
|
5
|
+
FeeCategoryOptionsSchema,
|
|
6
|
+
FeeSchema,
|
|
7
|
+
ReviewFaqSchema,
|
|
8
|
+
SAFETY_REPORT_STATUS_COLORS,
|
|
9
|
+
SAFETY_REPORT_STATUS_LABELS,
|
|
10
|
+
SafetyReportCategoryFormSchema,
|
|
11
|
+
SafetyReportCategorySchema,
|
|
12
|
+
SafetyReportFilterSchema,
|
|
13
|
+
SafetyReportFormSchema,
|
|
14
|
+
SafetyReportListResponseSchema,
|
|
15
|
+
SafetyReportMediaSchema,
|
|
16
|
+
SafetyReportSchema,
|
|
17
|
+
SafetyReportStatusEnum,
|
|
18
|
+
SafetyReportSubmissionResponseSchema,
|
|
19
|
+
SafetyReportUpdateSchema,
|
|
20
|
+
SubmitFaqQuestionSchema,
|
|
21
|
+
addressSchema,
|
|
22
|
+
aircraftRatingSchema,
|
|
23
|
+
airplanePermissionSchema,
|
|
24
|
+
airplaneSchema,
|
|
25
|
+
airportSchema,
|
|
26
|
+
alertSchema,
|
|
27
|
+
allowedDocumentTypeSchema,
|
|
28
|
+
approachTypeSchema,
|
|
29
|
+
availSchema,
|
|
30
|
+
baseMembershipSchema,
|
|
31
|
+
bookingSchema,
|
|
32
|
+
commentSchema,
|
|
33
|
+
companySchema,
|
|
34
|
+
contactAttributeSchema,
|
|
35
|
+
courseEnrollmentSchema,
|
|
36
|
+
courseFeeSchema,
|
|
37
|
+
courseSchema,
|
|
38
|
+
documentComplianceStatus,
|
|
39
|
+
documentRequirement,
|
|
40
|
+
documentRequirementGroup,
|
|
41
|
+
documentRequirementGroupAssignment,
|
|
42
|
+
documentSchema,
|
|
43
|
+
documentShareSchema,
|
|
44
|
+
documentType,
|
|
45
|
+
eventSchema,
|
|
46
|
+
expenseItemSchema,
|
|
47
|
+
expenseSchema,
|
|
48
|
+
extendedAirplaneSchema,
|
|
49
|
+
feeSchema,
|
|
50
|
+
flightLogSchema,
|
|
51
|
+
invoiceSchema,
|
|
52
|
+
landingFeeSchema,
|
|
53
|
+
landingSchema,
|
|
54
|
+
maintenanceEventEstimationSchema,
|
|
55
|
+
maintenanceEventSchema,
|
|
56
|
+
maintenanceStatusSchema,
|
|
57
|
+
mediaCollection,
|
|
58
|
+
mediaSchema,
|
|
59
|
+
membershipSchema,
|
|
60
|
+
postSchema,
|
|
61
|
+
prePaidPackageSchema,
|
|
62
|
+
priceSchema,
|
|
63
|
+
qualificationSchema,
|
|
64
|
+
recurringFlightSchema,
|
|
65
|
+
roleSchema,
|
|
66
|
+
runwaySchema,
|
|
67
|
+
scheduledFlightSchema,
|
|
68
|
+
settingSchema,
|
|
69
|
+
specialFlightSchema,
|
|
70
|
+
ticketSchema,
|
|
71
|
+
userAircraftRatingSchema,
|
|
72
|
+
userQualificationSchema,
|
|
73
|
+
userSchema,
|
|
74
|
+
waypointSchema,
|
|
75
|
+
zContactDTO,
|
|
76
|
+
zNetGross,
|
|
77
|
+
zNullableBool,
|
|
78
|
+
zPhpMoneyObject
|
|
79
|
+
} from "./chunk-AN55SAGU.js";
|
|
80
|
+
import "./chunk-LXNCAKJZ.js";
|
|
81
|
+
import {
|
|
82
|
+
parseCourse
|
|
83
|
+
} from "./chunk-TJXWL42D.js";
|
|
84
|
+
import {
|
|
85
|
+
createCrewValidator,
|
|
86
|
+
defaultCrewRoleForMembership,
|
|
87
|
+
hasMembershipRole
|
|
88
|
+
} from "./chunk-2M32EOYI.js";
|
|
89
|
+
import {
|
|
90
|
+
DATE_FORMATS,
|
|
91
|
+
TIME_FORMATS,
|
|
92
|
+
bookingDuration,
|
|
93
|
+
bytesToHuman,
|
|
94
|
+
crewObjectToString,
|
|
95
|
+
dateString,
|
|
96
|
+
dateTimeString,
|
|
97
|
+
dayString,
|
|
98
|
+
formatDate,
|
|
99
|
+
formatDateTime,
|
|
100
|
+
formatTime,
|
|
101
|
+
getMonthFromDate,
|
|
102
|
+
membershipStatus,
|
|
103
|
+
minutesFormatted,
|
|
104
|
+
monthString,
|
|
105
|
+
percentage,
|
|
106
|
+
timeDiffInDays,
|
|
107
|
+
timeString,
|
|
108
|
+
timeUntil,
|
|
109
|
+
yearString
|
|
110
|
+
} from "./chunk-D5DUVW34.js";
|
|
111
|
+
import {
|
|
112
|
+
AvatarConversion,
|
|
113
|
+
DocumentConversion,
|
|
114
|
+
HeaderConversion,
|
|
115
|
+
ImageConversion,
|
|
116
|
+
MediaType,
|
|
117
|
+
MimeTypes,
|
|
118
|
+
ThumbnailConversion,
|
|
119
|
+
canPreview,
|
|
120
|
+
getDocumentIcon,
|
|
121
|
+
getMediaDisplayName,
|
|
122
|
+
getMediaIcon,
|
|
123
|
+
getMediaType,
|
|
124
|
+
mapMediaConversions
|
|
125
|
+
} from "./chunk-VYT5KQWF.js";
|
|
126
|
+
import {
|
|
127
|
+
displayFee,
|
|
128
|
+
formatToEuroString,
|
|
129
|
+
fromCents,
|
|
130
|
+
money,
|
|
131
|
+
moneyFormatted,
|
|
132
|
+
parseFee,
|
|
133
|
+
parsePrice
|
|
134
|
+
} from "./chunk-JGIAOBZI.js";
|
|
135
|
+
import {
|
|
136
|
+
paginationMeta
|
|
137
|
+
} from "./chunk-NQV2D3FJ.js";
|
|
138
|
+
export {
|
|
139
|
+
AvatarConversion,
|
|
140
|
+
BaseModel,
|
|
141
|
+
DATE_FORMATS,
|
|
142
|
+
DocumentConversion,
|
|
143
|
+
FaqSchema,
|
|
144
|
+
FaqStatus,
|
|
145
|
+
FeeCategoryOptionsSchema,
|
|
146
|
+
FeeSchema,
|
|
147
|
+
HeaderConversion,
|
|
148
|
+
ImageConversion,
|
|
149
|
+
MediaType,
|
|
150
|
+
MimeTypes,
|
|
151
|
+
ReviewFaqSchema,
|
|
152
|
+
SAFETY_REPORT_STATUS_COLORS,
|
|
153
|
+
SAFETY_REPORT_STATUS_LABELS,
|
|
154
|
+
SafetyReportCategoryFormSchema,
|
|
155
|
+
SafetyReportCategorySchema,
|
|
156
|
+
SafetyReportFilterSchema,
|
|
157
|
+
SafetyReportFormSchema,
|
|
158
|
+
SafetyReportListResponseSchema,
|
|
159
|
+
SafetyReportMediaSchema,
|
|
160
|
+
SafetyReportSchema,
|
|
161
|
+
SafetyReportStatusEnum,
|
|
162
|
+
SafetyReportSubmissionResponseSchema,
|
|
163
|
+
SafetyReportUpdateSchema,
|
|
164
|
+
SubmitFaqQuestionSchema,
|
|
165
|
+
TIME_FORMATS,
|
|
166
|
+
ThumbnailConversion,
|
|
167
|
+
addressSchema,
|
|
168
|
+
aircraftRatingSchema,
|
|
169
|
+
airplanePermissionSchema,
|
|
170
|
+
airplaneSchema,
|
|
171
|
+
airportSchema,
|
|
172
|
+
alertSchema,
|
|
173
|
+
allowedDocumentTypeSchema,
|
|
174
|
+
approachTypeSchema,
|
|
175
|
+
availSchema,
|
|
176
|
+
baseMembershipSchema,
|
|
177
|
+
bookingDuration,
|
|
178
|
+
bookingSchema,
|
|
179
|
+
bytesToHuman,
|
|
180
|
+
canPreview,
|
|
181
|
+
commentSchema,
|
|
182
|
+
companySchema,
|
|
183
|
+
contactAttributeSchema,
|
|
184
|
+
courseEnrollmentSchema,
|
|
185
|
+
courseFeeSchema,
|
|
186
|
+
courseSchema,
|
|
187
|
+
createCrewValidator,
|
|
188
|
+
crewObjectToString,
|
|
189
|
+
dateString,
|
|
190
|
+
dateTimeString,
|
|
191
|
+
dayString,
|
|
192
|
+
defaultCrewRoleForMembership,
|
|
193
|
+
displayFee,
|
|
194
|
+
documentComplianceStatus,
|
|
195
|
+
documentRequirement,
|
|
196
|
+
documentRequirementGroup,
|
|
197
|
+
documentRequirementGroupAssignment,
|
|
198
|
+
documentSchema,
|
|
199
|
+
documentShareSchema,
|
|
200
|
+
documentType,
|
|
201
|
+
eventSchema,
|
|
202
|
+
expenseItemSchema,
|
|
203
|
+
expenseSchema,
|
|
204
|
+
extendedAirplaneSchema,
|
|
205
|
+
feeSchema,
|
|
206
|
+
flightLogSchema,
|
|
207
|
+
formatDate,
|
|
208
|
+
formatDateTime,
|
|
209
|
+
formatTime,
|
|
210
|
+
formatToEuroString,
|
|
211
|
+
fromCents,
|
|
212
|
+
getDocumentIcon,
|
|
213
|
+
getMediaDisplayName,
|
|
214
|
+
getMediaIcon,
|
|
215
|
+
getMediaType,
|
|
216
|
+
getMonthFromDate,
|
|
217
|
+
hasMembershipRole,
|
|
218
|
+
invoiceSchema,
|
|
219
|
+
landingFeeSchema,
|
|
220
|
+
landingSchema,
|
|
221
|
+
maintenanceEventEstimationSchema,
|
|
222
|
+
maintenanceEventSchema,
|
|
223
|
+
maintenanceStatusSchema,
|
|
224
|
+
mapMediaConversions,
|
|
225
|
+
mediaCollection,
|
|
226
|
+
mediaSchema,
|
|
227
|
+
membershipSchema,
|
|
228
|
+
membershipStatus,
|
|
229
|
+
minutesFormatted,
|
|
230
|
+
money,
|
|
231
|
+
moneyFormatted,
|
|
232
|
+
monthString,
|
|
233
|
+
paginationMeta,
|
|
234
|
+
parseCourse,
|
|
235
|
+
parseFee,
|
|
236
|
+
parsePrice,
|
|
237
|
+
percentage,
|
|
238
|
+
postSchema,
|
|
239
|
+
prePaidPackageSchema,
|
|
240
|
+
priceSchema,
|
|
241
|
+
qualificationSchema,
|
|
242
|
+
recurringFlightSchema,
|
|
243
|
+
roleSchema,
|
|
244
|
+
runwaySchema,
|
|
245
|
+
scheduledFlightSchema,
|
|
246
|
+
settingSchema,
|
|
247
|
+
specialFlightSchema,
|
|
248
|
+
ticketSchema,
|
|
249
|
+
timeDiffInDays,
|
|
250
|
+
timeString,
|
|
251
|
+
timeUntil,
|
|
252
|
+
userAircraftRatingSchema,
|
|
253
|
+
userQualificationSchema,
|
|
254
|
+
userSchema,
|
|
255
|
+
waypointSchema,
|
|
256
|
+
yearString,
|
|
257
|
+
zContactDTO,
|
|
258
|
+
zNetGross,
|
|
259
|
+
zNullableBool,
|
|
260
|
+
zPhpMoneyObject
|
|
261
|
+
};
|