@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,18 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
var _chunk2DRKSYW4cjs = require('../chunk-2DRKSYW4.cjs');
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
exports.displayFee = _chunk2DRKSYW4cjs.displayFee; exports.formatToEuroString = _chunk2DRKSYW4cjs.formatToEuroString; exports.fromCents = _chunk2DRKSYW4cjs.fromCents; exports.money = _chunk2DRKSYW4cjs.money; exports.moneyFormatted = _chunk2DRKSYW4cjs.moneyFormatted; exports.parseFee = _chunk2DRKSYW4cjs.parseFee; exports.parsePrice = _chunk2DRKSYW4cjs.parsePrice;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { Dinero } from 'dinero.js';
|
|
2
|
+
|
|
3
|
+
type NetGross = "net" | "gross";
|
|
4
|
+
interface PhpMoneyObject {
|
|
5
|
+
amount?: number;
|
|
6
|
+
currency?: string;
|
|
7
|
+
formatted?: string;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Permissive input shape for {@link parsePrice}. Mirrors the API
|
|
11
|
+
* `Price` resource but every field is optional so callers can pass
|
|
12
|
+
* partially-loaded data without casting.
|
|
13
|
+
*/
|
|
14
|
+
interface PriceLike {
|
|
15
|
+
id?: number;
|
|
16
|
+
net_total?: PhpMoneyObject;
|
|
17
|
+
gross_total?: PhpMoneyObject;
|
|
18
|
+
tax_percentage?: number;
|
|
19
|
+
valid_from?: string;
|
|
20
|
+
input_value?: number;
|
|
21
|
+
net_gross?: NetGross;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Permissive input shape for {@link parseFee}. Mirrors the API `Fee`
|
|
25
|
+
* resource — accepts both the marketing-site shape and the SPA shape.
|
|
26
|
+
*/
|
|
27
|
+
interface FeeLike {
|
|
28
|
+
id?: number;
|
|
29
|
+
price?: PriceLike | null;
|
|
30
|
+
prices?: PriceLike[] | null;
|
|
31
|
+
title?: string;
|
|
32
|
+
ident?: string;
|
|
33
|
+
[key: string]: unknown;
|
|
34
|
+
}
|
|
35
|
+
interface ParsedPrice extends Omit<PriceLike, "net_total" | "gross_total"> {
|
|
36
|
+
net_total: Dinero;
|
|
37
|
+
gross_total: Dinero;
|
|
38
|
+
}
|
|
39
|
+
interface ParsedFee {
|
|
40
|
+
currentPrice(netGross?: NetGross | null): Dinero | ParsedPrice | null;
|
|
41
|
+
upcomingPrice(netGross?: NetGross | null): Dinero | ParsedPrice | null;
|
|
42
|
+
}
|
|
43
|
+
interface MoneyShape {
|
|
44
|
+
amount?: number;
|
|
45
|
+
value?: {
|
|
46
|
+
amount?: number;
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
type MoneyInput = number | string | MoneyShape | PhpMoneyObject | null | undefined;
|
|
50
|
+
declare function money(amount: MoneyInput): Dinero;
|
|
51
|
+
declare function moneyFormatted(dinero: Dinero | null | undefined): string;
|
|
52
|
+
declare function parsePrice(price: PriceLike | null | undefined): ParsedPrice | null;
|
|
53
|
+
declare function parseFee(fee: FeeLike | null | undefined): ParsedFee | null;
|
|
54
|
+
declare function displayFee(fee: FeeLike | null | undefined, netGross?: NetGross, fallback?: string): string;
|
|
55
|
+
/**
|
|
56
|
+
* Strict-numeric alias of {@link money} for callers that already have
|
|
57
|
+
* a clean integer cents amount. Equivalent to `Dinero({amount, currency: "EUR"})`.
|
|
58
|
+
*/
|
|
59
|
+
declare function fromCents(amount: number): Dinero;
|
|
60
|
+
/**
|
|
61
|
+
* Formats an integer cents amount as a German Euro string
|
|
62
|
+
* (`"€ 1.234,56"`). Tolerates null/undefined/string input.
|
|
63
|
+
*/
|
|
64
|
+
declare function formatToEuroString(amount: number | string | null | undefined): string;
|
|
65
|
+
|
|
66
|
+
export { type FeeLike, type NetGross, type ParsedFee, type ParsedPrice, type PhpMoneyObject, type PriceLike, displayFee, formatToEuroString, fromCents, money, moneyFormatted, parseFee, parsePrice };
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { Dinero } from 'dinero.js';
|
|
2
|
+
|
|
3
|
+
type NetGross = "net" | "gross";
|
|
4
|
+
interface PhpMoneyObject {
|
|
5
|
+
amount?: number;
|
|
6
|
+
currency?: string;
|
|
7
|
+
formatted?: string;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Permissive input shape for {@link parsePrice}. Mirrors the API
|
|
11
|
+
* `Price` resource but every field is optional so callers can pass
|
|
12
|
+
* partially-loaded data without casting.
|
|
13
|
+
*/
|
|
14
|
+
interface PriceLike {
|
|
15
|
+
id?: number;
|
|
16
|
+
net_total?: PhpMoneyObject;
|
|
17
|
+
gross_total?: PhpMoneyObject;
|
|
18
|
+
tax_percentage?: number;
|
|
19
|
+
valid_from?: string;
|
|
20
|
+
input_value?: number;
|
|
21
|
+
net_gross?: NetGross;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Permissive input shape for {@link parseFee}. Mirrors the API `Fee`
|
|
25
|
+
* resource — accepts both the marketing-site shape and the SPA shape.
|
|
26
|
+
*/
|
|
27
|
+
interface FeeLike {
|
|
28
|
+
id?: number;
|
|
29
|
+
price?: PriceLike | null;
|
|
30
|
+
prices?: PriceLike[] | null;
|
|
31
|
+
title?: string;
|
|
32
|
+
ident?: string;
|
|
33
|
+
[key: string]: unknown;
|
|
34
|
+
}
|
|
35
|
+
interface ParsedPrice extends Omit<PriceLike, "net_total" | "gross_total"> {
|
|
36
|
+
net_total: Dinero;
|
|
37
|
+
gross_total: Dinero;
|
|
38
|
+
}
|
|
39
|
+
interface ParsedFee {
|
|
40
|
+
currentPrice(netGross?: NetGross | null): Dinero | ParsedPrice | null;
|
|
41
|
+
upcomingPrice(netGross?: NetGross | null): Dinero | ParsedPrice | null;
|
|
42
|
+
}
|
|
43
|
+
interface MoneyShape {
|
|
44
|
+
amount?: number;
|
|
45
|
+
value?: {
|
|
46
|
+
amount?: number;
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
type MoneyInput = number | string | MoneyShape | PhpMoneyObject | null | undefined;
|
|
50
|
+
declare function money(amount: MoneyInput): Dinero;
|
|
51
|
+
declare function moneyFormatted(dinero: Dinero | null | undefined): string;
|
|
52
|
+
declare function parsePrice(price: PriceLike | null | undefined): ParsedPrice | null;
|
|
53
|
+
declare function parseFee(fee: FeeLike | null | undefined): ParsedFee | null;
|
|
54
|
+
declare function displayFee(fee: FeeLike | null | undefined, netGross?: NetGross, fallback?: string): string;
|
|
55
|
+
/**
|
|
56
|
+
* Strict-numeric alias of {@link money} for callers that already have
|
|
57
|
+
* a clean integer cents amount. Equivalent to `Dinero({amount, currency: "EUR"})`.
|
|
58
|
+
*/
|
|
59
|
+
declare function fromCents(amount: number): Dinero;
|
|
60
|
+
/**
|
|
61
|
+
* Formats an integer cents amount as a German Euro string
|
|
62
|
+
* (`"€ 1.234,56"`). Tolerates null/undefined/string input.
|
|
63
|
+
*/
|
|
64
|
+
declare function formatToEuroString(amount: number | string | null | undefined): string;
|
|
65
|
+
|
|
66
|
+
export { type FeeLike, type NetGross, type ParsedFee, type ParsedPrice, type PhpMoneyObject, type PriceLike, displayFee, formatToEuroString, fromCents, money, moneyFormatted, parseFee, parsePrice };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import {
|
|
2
|
+
displayFee,
|
|
3
|
+
formatToEuroString,
|
|
4
|
+
fromCents,
|
|
5
|
+
money,
|
|
6
|
+
moneyFormatted,
|
|
7
|
+
parseFee,
|
|
8
|
+
parsePrice
|
|
9
|
+
} from "../chunk-JGIAOBZI.js";
|
|
10
|
+
export {
|
|
11
|
+
displayFee,
|
|
12
|
+
formatToEuroString,
|
|
13
|
+
fromCents,
|
|
14
|
+
money,
|
|
15
|
+
moneyFormatted,
|
|
16
|
+
parseFee,
|
|
17
|
+
parsePrice
|
|
18
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
interface PaginationOptions {
|
|
2
|
+
page: number;
|
|
3
|
+
itemsPerPage: number;
|
|
4
|
+
}
|
|
5
|
+
interface PaginationMeta {
|
|
6
|
+
start: number;
|
|
7
|
+
end: number;
|
|
8
|
+
total: number;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Compute the `start`/`end`/`total` window for a paginated UI footer.
|
|
12
|
+
* Returns `start: 0` when `total` is zero so empty states render cleanly.
|
|
13
|
+
*/
|
|
14
|
+
declare function paginationMeta(options: PaginationOptions, total: number): PaginationMeta;
|
|
15
|
+
|
|
16
|
+
export { type PaginationMeta, type PaginationOptions, paginationMeta };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
interface PaginationOptions {
|
|
2
|
+
page: number;
|
|
3
|
+
itemsPerPage: number;
|
|
4
|
+
}
|
|
5
|
+
interface PaginationMeta {
|
|
6
|
+
start: number;
|
|
7
|
+
end: number;
|
|
8
|
+
total: number;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Compute the `start`/`end`/`total` window for a paginated UI footer.
|
|
12
|
+
* Returns `start: 0` when `total` is zero so empty states render cleanly.
|
|
13
|
+
*/
|
|
14
|
+
declare function paginationMeta(options: PaginationOptions, total: number): PaginationMeta;
|
|
15
|
+
|
|
16
|
+
export { type PaginationMeta, type PaginationOptions, paginationMeta };
|
|
@@ -0,0 +1,158 @@
|
|
|
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
|
+
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
exports.BaseModel = _chunkXKZQ5W7Ecjs.BaseModel; exports.FaqSchema = _chunkXKZQ5W7Ecjs.FaqSchema; exports.FaqStatus = _chunkXKZQ5W7Ecjs.FaqStatus; exports.FeeCategoryOptionsSchema = _chunkXKZQ5W7Ecjs.FeeCategoryOptionsSchema; exports.FeeSchema = _chunkXKZQ5W7Ecjs.FeeSchema; 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.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.bookingSchema = _chunkXKZQ5W7Ecjs.bookingSchema; 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.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.invoiceSchema = _chunkXKZQ5W7Ecjs.invoiceSchema; exports.landingFeeSchema = _chunkXKZQ5W7Ecjs.landingFeeSchema; exports.landingSchema = _chunkXKZQ5W7Ecjs.landingSchema; exports.maintenanceEventEstimationSchema = _chunkXKZQ5W7Ecjs.maintenanceEventEstimationSchema; exports.maintenanceEventSchema = _chunkXKZQ5W7Ecjs.maintenanceEventSchema; exports.maintenanceStatusSchema = _chunkXKZQ5W7Ecjs.maintenanceStatusSchema; exports.mediaCollection = _chunkXKZQ5W7Ecjs.mediaCollection; exports.mediaSchema = _chunkXKZQ5W7Ecjs.mediaSchema; exports.membershipSchema = _chunkXKZQ5W7Ecjs.membershipSchema; 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.userAircraftRatingSchema = _chunkXKZQ5W7Ecjs.userAircraftRatingSchema; exports.userQualificationSchema = _chunkXKZQ5W7Ecjs.userQualificationSchema; exports.userSchema = _chunkXKZQ5W7Ecjs.userSchema; exports.waypointSchema = _chunkXKZQ5W7Ecjs.waypointSchema; exports.zContactDTO = _chunkXKZQ5W7Ecjs.zContactDTO; exports.zNetGross = _chunkXKZQ5W7Ecjs.zNetGross; exports.zNullableBool = _chunkXKZQ5W7Ecjs.zNullableBool; exports.zPhpMoneyObject = _chunkXKZQ5W7Ecjs.zPhpMoneyObject;
|