@updraft-solutions/mcrit-sdk 0.3.0 → 0.3.1
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-S632QB2N.cjs → chunk-7QF3OJ45.cjs} +15 -0
- package/dist/{chunk-4A2CDUAO.js → chunk-FS5I4MBG.js} +15 -0
- package/dist/index.cjs +7 -7
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +6 -6
- package/dist/{models-DOcMz5Pd.d.cts → models-BWmpcfR8.d.cts} +315 -0
- package/dist/{models-DOcMz5Pd.d.ts → models-BWmpcfR8.d.ts} +315 -0
- package/dist/schemas/index.cjs +2 -2
- package/dist/schemas/index.d.cts +1 -1
- package/dist/schemas/index.d.ts +1 -1
- package/dist/schemas/index.js +1 -1
- package/dist/types/index.d.cts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +2 -1
- package/src/schemas/models.ts +15 -0
|
@@ -5708,6 +5708,21 @@ declare const airplaneSchema: z.ZodObject<{
|
|
|
5708
5708
|
id: number;
|
|
5709
5709
|
name: string;
|
|
5710
5710
|
}>, "many">>;
|
|
5711
|
+
is_simulator: z.ZodOptional<z.ZodBoolean>;
|
|
5712
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5713
|
+
averageFuelConsumption: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5714
|
+
weightUnitString: z.ZodOptional<z.ZodString>;
|
|
5715
|
+
fuelUnitString: z.ZodOptional<z.ZodString>;
|
|
5716
|
+
isoCountryCodeFromRegistration: z.ZodOptional<z.ZodString>;
|
|
5717
|
+
registrationWithoutSpecialChars: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5718
|
+
equipmentCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
5719
|
+
compliance_required: z.ZodOptional<z.ZodBoolean>;
|
|
5720
|
+
show_on_website: z.ZodOptional<z.ZodBoolean>;
|
|
5721
|
+
is_public: z.ZodOptional<z.ZodBoolean>;
|
|
5722
|
+
company_timezone: z.ZodOptional<z.ZodString>;
|
|
5723
|
+
defaultFlightType: z.ZodOptional<z.ZodString>;
|
|
5724
|
+
defaultFlightRule: z.ZodOptional<z.ZodString>;
|
|
5725
|
+
status: z.ZodOptional<z.ZodString>;
|
|
5711
5726
|
can: z.ZodObject<{
|
|
5712
5727
|
view: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
5713
5728
|
update: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -5873,6 +5888,7 @@ declare const airplaneSchema: z.ZodObject<{
|
|
|
5873
5888
|
course_count?: number | undefined;
|
|
5874
5889
|
} | undefined;
|
|
5875
5890
|
length?: string | undefined;
|
|
5891
|
+
status?: string | undefined;
|
|
5876
5892
|
media?: {
|
|
5877
5893
|
avatar?: {
|
|
5878
5894
|
id: number;
|
|
@@ -5928,6 +5944,7 @@ declare const airplaneSchema: z.ZodObject<{
|
|
|
5928
5944
|
}[] | null | undefined;
|
|
5929
5945
|
} | null | undefined;
|
|
5930
5946
|
description?: string | undefined;
|
|
5947
|
+
category?: string | null | undefined;
|
|
5931
5948
|
booking_fee?: {
|
|
5932
5949
|
id: number;
|
|
5933
5950
|
valid_from: string;
|
|
@@ -6079,6 +6096,19 @@ declare const airplaneSchema: z.ZodObject<{
|
|
|
6079
6096
|
id: number;
|
|
6080
6097
|
name: string;
|
|
6081
6098
|
}[] | undefined;
|
|
6099
|
+
is_simulator?: boolean | undefined;
|
|
6100
|
+
averageFuelConsumption?: string | null | undefined;
|
|
6101
|
+
weightUnitString?: string | undefined;
|
|
6102
|
+
fuelUnitString?: string | undefined;
|
|
6103
|
+
isoCountryCodeFromRegistration?: string | undefined;
|
|
6104
|
+
registrationWithoutSpecialChars?: string | null | undefined;
|
|
6105
|
+
equipmentCodes?: string[] | null | undefined;
|
|
6106
|
+
compliance_required?: boolean | undefined;
|
|
6107
|
+
show_on_website?: boolean | undefined;
|
|
6108
|
+
is_public?: boolean | undefined;
|
|
6109
|
+
company_timezone?: string | undefined;
|
|
6110
|
+
defaultFlightType?: string | undefined;
|
|
6111
|
+
defaultFlightRule?: string | undefined;
|
|
6082
6112
|
}, {
|
|
6083
6113
|
id: number;
|
|
6084
6114
|
type: "airplane";
|
|
@@ -6222,6 +6252,7 @@ declare const airplaneSchema: z.ZodObject<{
|
|
|
6222
6252
|
course_count?: number | undefined;
|
|
6223
6253
|
} | undefined;
|
|
6224
6254
|
length?: string | undefined;
|
|
6255
|
+
status?: string | undefined;
|
|
6225
6256
|
media?: {
|
|
6226
6257
|
avatar?: {
|
|
6227
6258
|
id: number;
|
|
@@ -6277,6 +6308,7 @@ declare const airplaneSchema: z.ZodObject<{
|
|
|
6277
6308
|
}[] | null | undefined;
|
|
6278
6309
|
} | null | undefined;
|
|
6279
6310
|
description?: string | undefined;
|
|
6311
|
+
category?: string | null | undefined;
|
|
6280
6312
|
booking_fee?: {
|
|
6281
6313
|
id: number;
|
|
6282
6314
|
valid_from: string;
|
|
@@ -6428,6 +6460,19 @@ declare const airplaneSchema: z.ZodObject<{
|
|
|
6428
6460
|
id: number;
|
|
6429
6461
|
name: string;
|
|
6430
6462
|
}[] | undefined;
|
|
6463
|
+
is_simulator?: boolean | undefined;
|
|
6464
|
+
averageFuelConsumption?: string | null | undefined;
|
|
6465
|
+
weightUnitString?: string | undefined;
|
|
6466
|
+
fuelUnitString?: string | undefined;
|
|
6467
|
+
isoCountryCodeFromRegistration?: string | undefined;
|
|
6468
|
+
registrationWithoutSpecialChars?: string | null | undefined;
|
|
6469
|
+
equipmentCodes?: string[] | null | undefined;
|
|
6470
|
+
compliance_required?: boolean | undefined;
|
|
6471
|
+
show_on_website?: boolean | undefined;
|
|
6472
|
+
is_public?: boolean | undefined;
|
|
6473
|
+
company_timezone?: string | undefined;
|
|
6474
|
+
defaultFlightType?: string | undefined;
|
|
6475
|
+
defaultFlightRule?: string | undefined;
|
|
6431
6476
|
}>;
|
|
6432
6477
|
declare const airplaneShareInviteSchema: z.ZodObject<{
|
|
6433
6478
|
id: z.ZodNumber;
|
|
@@ -8438,6 +8483,21 @@ declare const airplanePermissionSchema: z.ZodObject<{
|
|
|
8438
8483
|
id: number;
|
|
8439
8484
|
name: string;
|
|
8440
8485
|
}>, "many">>;
|
|
8486
|
+
is_simulator: z.ZodOptional<z.ZodBoolean>;
|
|
8487
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8488
|
+
averageFuelConsumption: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8489
|
+
weightUnitString: z.ZodOptional<z.ZodString>;
|
|
8490
|
+
fuelUnitString: z.ZodOptional<z.ZodString>;
|
|
8491
|
+
isoCountryCodeFromRegistration: z.ZodOptional<z.ZodString>;
|
|
8492
|
+
registrationWithoutSpecialChars: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8493
|
+
equipmentCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
8494
|
+
compliance_required: z.ZodOptional<z.ZodBoolean>;
|
|
8495
|
+
show_on_website: z.ZodOptional<z.ZodBoolean>;
|
|
8496
|
+
is_public: z.ZodOptional<z.ZodBoolean>;
|
|
8497
|
+
company_timezone: z.ZodOptional<z.ZodString>;
|
|
8498
|
+
defaultFlightType: z.ZodOptional<z.ZodString>;
|
|
8499
|
+
defaultFlightRule: z.ZodOptional<z.ZodString>;
|
|
8500
|
+
status: z.ZodOptional<z.ZodString>;
|
|
8441
8501
|
can: z.ZodObject<{
|
|
8442
8502
|
view: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
8443
8503
|
update: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -8603,6 +8663,7 @@ declare const airplanePermissionSchema: z.ZodObject<{
|
|
|
8603
8663
|
course_count?: number | undefined;
|
|
8604
8664
|
} | undefined;
|
|
8605
8665
|
length?: string | undefined;
|
|
8666
|
+
status?: string | undefined;
|
|
8606
8667
|
media?: {
|
|
8607
8668
|
avatar?: {
|
|
8608
8669
|
id: number;
|
|
@@ -8658,6 +8719,7 @@ declare const airplanePermissionSchema: z.ZodObject<{
|
|
|
8658
8719
|
}[] | null | undefined;
|
|
8659
8720
|
} | null | undefined;
|
|
8660
8721
|
description?: string | undefined;
|
|
8722
|
+
category?: string | null | undefined;
|
|
8661
8723
|
booking_fee?: {
|
|
8662
8724
|
id: number;
|
|
8663
8725
|
valid_from: string;
|
|
@@ -8809,6 +8871,19 @@ declare const airplanePermissionSchema: z.ZodObject<{
|
|
|
8809
8871
|
id: number;
|
|
8810
8872
|
name: string;
|
|
8811
8873
|
}[] | undefined;
|
|
8874
|
+
is_simulator?: boolean | undefined;
|
|
8875
|
+
averageFuelConsumption?: string | null | undefined;
|
|
8876
|
+
weightUnitString?: string | undefined;
|
|
8877
|
+
fuelUnitString?: string | undefined;
|
|
8878
|
+
isoCountryCodeFromRegistration?: string | undefined;
|
|
8879
|
+
registrationWithoutSpecialChars?: string | null | undefined;
|
|
8880
|
+
equipmentCodes?: string[] | null | undefined;
|
|
8881
|
+
compliance_required?: boolean | undefined;
|
|
8882
|
+
show_on_website?: boolean | undefined;
|
|
8883
|
+
is_public?: boolean | undefined;
|
|
8884
|
+
company_timezone?: string | undefined;
|
|
8885
|
+
defaultFlightType?: string | undefined;
|
|
8886
|
+
defaultFlightRule?: string | undefined;
|
|
8812
8887
|
}, {
|
|
8813
8888
|
id: number;
|
|
8814
8889
|
type: "airplane";
|
|
@@ -8952,6 +9027,7 @@ declare const airplanePermissionSchema: z.ZodObject<{
|
|
|
8952
9027
|
course_count?: number | undefined;
|
|
8953
9028
|
} | undefined;
|
|
8954
9029
|
length?: string | undefined;
|
|
9030
|
+
status?: string | undefined;
|
|
8955
9031
|
media?: {
|
|
8956
9032
|
avatar?: {
|
|
8957
9033
|
id: number;
|
|
@@ -9007,6 +9083,7 @@ declare const airplanePermissionSchema: z.ZodObject<{
|
|
|
9007
9083
|
}[] | null | undefined;
|
|
9008
9084
|
} | null | undefined;
|
|
9009
9085
|
description?: string | undefined;
|
|
9086
|
+
category?: string | null | undefined;
|
|
9010
9087
|
booking_fee?: {
|
|
9011
9088
|
id: number;
|
|
9012
9089
|
valid_from: string;
|
|
@@ -9158,6 +9235,19 @@ declare const airplanePermissionSchema: z.ZodObject<{
|
|
|
9158
9235
|
id: number;
|
|
9159
9236
|
name: string;
|
|
9160
9237
|
}[] | undefined;
|
|
9238
|
+
is_simulator?: boolean | undefined;
|
|
9239
|
+
averageFuelConsumption?: string | null | undefined;
|
|
9240
|
+
weightUnitString?: string | undefined;
|
|
9241
|
+
fuelUnitString?: string | undefined;
|
|
9242
|
+
isoCountryCodeFromRegistration?: string | undefined;
|
|
9243
|
+
registrationWithoutSpecialChars?: string | null | undefined;
|
|
9244
|
+
equipmentCodes?: string[] | null | undefined;
|
|
9245
|
+
compliance_required?: boolean | undefined;
|
|
9246
|
+
show_on_website?: boolean | undefined;
|
|
9247
|
+
is_public?: boolean | undefined;
|
|
9248
|
+
company_timezone?: string | undefined;
|
|
9249
|
+
defaultFlightType?: string | undefined;
|
|
9250
|
+
defaultFlightRule?: string | undefined;
|
|
9161
9251
|
}>>;
|
|
9162
9252
|
membership_id: z.ZodNumber;
|
|
9163
9253
|
membership: z.ZodOptional<z.ZodObject<{
|
|
@@ -10090,6 +10180,7 @@ declare const airplanePermissionSchema: z.ZodObject<{
|
|
|
10090
10180
|
course_count?: number | undefined;
|
|
10091
10181
|
} | undefined;
|
|
10092
10182
|
length?: string | undefined;
|
|
10183
|
+
status?: string | undefined;
|
|
10093
10184
|
media?: {
|
|
10094
10185
|
avatar?: {
|
|
10095
10186
|
id: number;
|
|
@@ -10145,6 +10236,7 @@ declare const airplanePermissionSchema: z.ZodObject<{
|
|
|
10145
10236
|
}[] | null | undefined;
|
|
10146
10237
|
} | null | undefined;
|
|
10147
10238
|
description?: string | undefined;
|
|
10239
|
+
category?: string | null | undefined;
|
|
10148
10240
|
booking_fee?: {
|
|
10149
10241
|
id: number;
|
|
10150
10242
|
valid_from: string;
|
|
@@ -10296,6 +10388,19 @@ declare const airplanePermissionSchema: z.ZodObject<{
|
|
|
10296
10388
|
id: number;
|
|
10297
10389
|
name: string;
|
|
10298
10390
|
}[] | undefined;
|
|
10391
|
+
is_simulator?: boolean | undefined;
|
|
10392
|
+
averageFuelConsumption?: string | null | undefined;
|
|
10393
|
+
weightUnitString?: string | undefined;
|
|
10394
|
+
fuelUnitString?: string | undefined;
|
|
10395
|
+
isoCountryCodeFromRegistration?: string | undefined;
|
|
10396
|
+
registrationWithoutSpecialChars?: string | null | undefined;
|
|
10397
|
+
equipmentCodes?: string[] | null | undefined;
|
|
10398
|
+
compliance_required?: boolean | undefined;
|
|
10399
|
+
show_on_website?: boolean | undefined;
|
|
10400
|
+
is_public?: boolean | undefined;
|
|
10401
|
+
company_timezone?: string | undefined;
|
|
10402
|
+
defaultFlightType?: string | undefined;
|
|
10403
|
+
defaultFlightRule?: string | undefined;
|
|
10299
10404
|
} | undefined;
|
|
10300
10405
|
notes?: string | null | undefined;
|
|
10301
10406
|
conditions?: string | null | undefined;
|
|
@@ -10560,6 +10665,7 @@ declare const airplanePermissionSchema: z.ZodObject<{
|
|
|
10560
10665
|
course_count?: number | undefined;
|
|
10561
10666
|
} | undefined;
|
|
10562
10667
|
length?: string | undefined;
|
|
10668
|
+
status?: string | undefined;
|
|
10563
10669
|
media?: {
|
|
10564
10670
|
avatar?: {
|
|
10565
10671
|
id: number;
|
|
@@ -10615,6 +10721,7 @@ declare const airplanePermissionSchema: z.ZodObject<{
|
|
|
10615
10721
|
}[] | null | undefined;
|
|
10616
10722
|
} | null | undefined;
|
|
10617
10723
|
description?: string | undefined;
|
|
10724
|
+
category?: string | null | undefined;
|
|
10618
10725
|
booking_fee?: {
|
|
10619
10726
|
id: number;
|
|
10620
10727
|
valid_from: string;
|
|
@@ -10766,6 +10873,19 @@ declare const airplanePermissionSchema: z.ZodObject<{
|
|
|
10766
10873
|
id: number;
|
|
10767
10874
|
name: string;
|
|
10768
10875
|
}[] | undefined;
|
|
10876
|
+
is_simulator?: boolean | undefined;
|
|
10877
|
+
averageFuelConsumption?: string | null | undefined;
|
|
10878
|
+
weightUnitString?: string | undefined;
|
|
10879
|
+
fuelUnitString?: string | undefined;
|
|
10880
|
+
isoCountryCodeFromRegistration?: string | undefined;
|
|
10881
|
+
registrationWithoutSpecialChars?: string | null | undefined;
|
|
10882
|
+
equipmentCodes?: string[] | null | undefined;
|
|
10883
|
+
compliance_required?: boolean | undefined;
|
|
10884
|
+
show_on_website?: boolean | undefined;
|
|
10885
|
+
is_public?: boolean | undefined;
|
|
10886
|
+
company_timezone?: string | undefined;
|
|
10887
|
+
defaultFlightType?: string | undefined;
|
|
10888
|
+
defaultFlightRule?: string | undefined;
|
|
10769
10889
|
} | undefined;
|
|
10770
10890
|
notes?: string | null | undefined;
|
|
10771
10891
|
conditions?: string | null | undefined;
|
|
@@ -12980,6 +13100,21 @@ declare const extendedAirplaneSchema: z.ZodObject<{
|
|
|
12980
13100
|
id: number;
|
|
12981
13101
|
name: string;
|
|
12982
13102
|
}>, "many">>;
|
|
13103
|
+
is_simulator: z.ZodOptional<z.ZodBoolean>;
|
|
13104
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13105
|
+
averageFuelConsumption: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13106
|
+
weightUnitString: z.ZodOptional<z.ZodString>;
|
|
13107
|
+
fuelUnitString: z.ZodOptional<z.ZodString>;
|
|
13108
|
+
isoCountryCodeFromRegistration: z.ZodOptional<z.ZodString>;
|
|
13109
|
+
registrationWithoutSpecialChars: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13110
|
+
equipmentCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
13111
|
+
compliance_required: z.ZodOptional<z.ZodBoolean>;
|
|
13112
|
+
show_on_website: z.ZodOptional<z.ZodBoolean>;
|
|
13113
|
+
is_public: z.ZodOptional<z.ZodBoolean>;
|
|
13114
|
+
company_timezone: z.ZodOptional<z.ZodString>;
|
|
13115
|
+
defaultFlightType: z.ZodOptional<z.ZodString>;
|
|
13116
|
+
defaultFlightRule: z.ZodOptional<z.ZodString>;
|
|
13117
|
+
status: z.ZodOptional<z.ZodString>;
|
|
12983
13118
|
} & {
|
|
12984
13119
|
manufacturer: z.ZodOptional<z.ZodString>;
|
|
12985
13120
|
capacity: z.ZodOptional<z.ZodNumber>;
|
|
@@ -13464,6 +13599,7 @@ declare const extendedAirplaneSchema: z.ZodObject<{
|
|
|
13464
13599
|
course_count?: number | undefined;
|
|
13465
13600
|
} | undefined;
|
|
13466
13601
|
length?: string | undefined;
|
|
13602
|
+
status?: string | undefined;
|
|
13467
13603
|
media?: {
|
|
13468
13604
|
avatar?: any;
|
|
13469
13605
|
header?: any;
|
|
@@ -13475,6 +13611,7 @@ declare const extendedAirplaneSchema: z.ZodObject<{
|
|
|
13475
13611
|
update?: boolean | null | undefined;
|
|
13476
13612
|
viewMaintenanceEvents?: boolean | null | undefined;
|
|
13477
13613
|
} | undefined;
|
|
13614
|
+
category?: string | null | undefined;
|
|
13478
13615
|
booking_fee?: {
|
|
13479
13616
|
id: number;
|
|
13480
13617
|
valid_from: string;
|
|
@@ -13626,6 +13763,19 @@ declare const extendedAirplaneSchema: z.ZodObject<{
|
|
|
13626
13763
|
id: number;
|
|
13627
13764
|
name: string;
|
|
13628
13765
|
}[] | undefined;
|
|
13766
|
+
is_simulator?: boolean | undefined;
|
|
13767
|
+
averageFuelConsumption?: string | null | undefined;
|
|
13768
|
+
weightUnitString?: string | undefined;
|
|
13769
|
+
fuelUnitString?: string | undefined;
|
|
13770
|
+
isoCountryCodeFromRegistration?: string | undefined;
|
|
13771
|
+
registrationWithoutSpecialChars?: string | null | undefined;
|
|
13772
|
+
equipmentCodes?: string[] | null | undefined;
|
|
13773
|
+
compliance_required?: boolean | undefined;
|
|
13774
|
+
show_on_website?: boolean | undefined;
|
|
13775
|
+
is_public?: boolean | undefined;
|
|
13776
|
+
company_timezone?: string | undefined;
|
|
13777
|
+
defaultFlightType?: string | undefined;
|
|
13778
|
+
defaultFlightRule?: string | undefined;
|
|
13629
13779
|
empty_weight?: string | undefined;
|
|
13630
13780
|
max_takeoff_mass?: string | undefined;
|
|
13631
13781
|
max_speed?: string | undefined;
|
|
@@ -13848,6 +13998,7 @@ declare const extendedAirplaneSchema: z.ZodObject<{
|
|
|
13848
13998
|
course_count?: number | undefined;
|
|
13849
13999
|
} | undefined;
|
|
13850
14000
|
length?: string | undefined;
|
|
14001
|
+
status?: string | undefined;
|
|
13851
14002
|
media?: {
|
|
13852
14003
|
avatar?: any;
|
|
13853
14004
|
header?: any;
|
|
@@ -13859,6 +14010,7 @@ declare const extendedAirplaneSchema: z.ZodObject<{
|
|
|
13859
14010
|
update?: boolean | null | undefined;
|
|
13860
14011
|
viewMaintenanceEvents?: boolean | null | undefined;
|
|
13861
14012
|
} | undefined;
|
|
14013
|
+
category?: string | null | undefined;
|
|
13862
14014
|
booking_fee?: {
|
|
13863
14015
|
id: number;
|
|
13864
14016
|
valid_from: string;
|
|
@@ -14010,6 +14162,19 @@ declare const extendedAirplaneSchema: z.ZodObject<{
|
|
|
14010
14162
|
id: number;
|
|
14011
14163
|
name: string;
|
|
14012
14164
|
}[] | undefined;
|
|
14165
|
+
is_simulator?: boolean | undefined;
|
|
14166
|
+
averageFuelConsumption?: string | null | undefined;
|
|
14167
|
+
weightUnitString?: string | undefined;
|
|
14168
|
+
fuelUnitString?: string | undefined;
|
|
14169
|
+
isoCountryCodeFromRegistration?: string | undefined;
|
|
14170
|
+
registrationWithoutSpecialChars?: string | null | undefined;
|
|
14171
|
+
equipmentCodes?: string[] | null | undefined;
|
|
14172
|
+
compliance_required?: boolean | undefined;
|
|
14173
|
+
show_on_website?: boolean | undefined;
|
|
14174
|
+
is_public?: boolean | undefined;
|
|
14175
|
+
company_timezone?: string | undefined;
|
|
14176
|
+
defaultFlightType?: string | undefined;
|
|
14177
|
+
defaultFlightRule?: string | undefined;
|
|
14013
14178
|
empty_weight?: string | undefined;
|
|
14014
14179
|
max_takeoff_mass?: string | undefined;
|
|
14015
14180
|
max_speed?: string | undefined;
|
|
@@ -16478,6 +16643,21 @@ declare const bookingSchema: z.ZodObject<{
|
|
|
16478
16643
|
id: number;
|
|
16479
16644
|
name: string;
|
|
16480
16645
|
}>, "many">>;
|
|
16646
|
+
is_simulator: z.ZodOptional<z.ZodBoolean>;
|
|
16647
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16648
|
+
averageFuelConsumption: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16649
|
+
weightUnitString: z.ZodOptional<z.ZodString>;
|
|
16650
|
+
fuelUnitString: z.ZodOptional<z.ZodString>;
|
|
16651
|
+
isoCountryCodeFromRegistration: z.ZodOptional<z.ZodString>;
|
|
16652
|
+
registrationWithoutSpecialChars: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16653
|
+
equipmentCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
16654
|
+
compliance_required: z.ZodOptional<z.ZodBoolean>;
|
|
16655
|
+
show_on_website: z.ZodOptional<z.ZodBoolean>;
|
|
16656
|
+
is_public: z.ZodOptional<z.ZodBoolean>;
|
|
16657
|
+
company_timezone: z.ZodOptional<z.ZodString>;
|
|
16658
|
+
defaultFlightType: z.ZodOptional<z.ZodString>;
|
|
16659
|
+
defaultFlightRule: z.ZodOptional<z.ZodString>;
|
|
16660
|
+
status: z.ZodOptional<z.ZodString>;
|
|
16481
16661
|
can: z.ZodObject<{
|
|
16482
16662
|
view: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
16483
16663
|
update: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -16643,6 +16823,7 @@ declare const bookingSchema: z.ZodObject<{
|
|
|
16643
16823
|
course_count?: number | undefined;
|
|
16644
16824
|
} | undefined;
|
|
16645
16825
|
length?: string | undefined;
|
|
16826
|
+
status?: string | undefined;
|
|
16646
16827
|
media?: {
|
|
16647
16828
|
avatar?: {
|
|
16648
16829
|
id: number;
|
|
@@ -16698,6 +16879,7 @@ declare const bookingSchema: z.ZodObject<{
|
|
|
16698
16879
|
}[] | null | undefined;
|
|
16699
16880
|
} | null | undefined;
|
|
16700
16881
|
description?: string | undefined;
|
|
16882
|
+
category?: string | null | undefined;
|
|
16701
16883
|
booking_fee?: {
|
|
16702
16884
|
id: number;
|
|
16703
16885
|
valid_from: string;
|
|
@@ -16849,6 +17031,19 @@ declare const bookingSchema: z.ZodObject<{
|
|
|
16849
17031
|
id: number;
|
|
16850
17032
|
name: string;
|
|
16851
17033
|
}[] | undefined;
|
|
17034
|
+
is_simulator?: boolean | undefined;
|
|
17035
|
+
averageFuelConsumption?: string | null | undefined;
|
|
17036
|
+
weightUnitString?: string | undefined;
|
|
17037
|
+
fuelUnitString?: string | undefined;
|
|
17038
|
+
isoCountryCodeFromRegistration?: string | undefined;
|
|
17039
|
+
registrationWithoutSpecialChars?: string | null | undefined;
|
|
17040
|
+
equipmentCodes?: string[] | null | undefined;
|
|
17041
|
+
compliance_required?: boolean | undefined;
|
|
17042
|
+
show_on_website?: boolean | undefined;
|
|
17043
|
+
is_public?: boolean | undefined;
|
|
17044
|
+
company_timezone?: string | undefined;
|
|
17045
|
+
defaultFlightType?: string | undefined;
|
|
17046
|
+
defaultFlightRule?: string | undefined;
|
|
16852
17047
|
}, {
|
|
16853
17048
|
id: number;
|
|
16854
17049
|
type: "airplane";
|
|
@@ -16992,6 +17187,7 @@ declare const bookingSchema: z.ZodObject<{
|
|
|
16992
17187
|
course_count?: number | undefined;
|
|
16993
17188
|
} | undefined;
|
|
16994
17189
|
length?: string | undefined;
|
|
17190
|
+
status?: string | undefined;
|
|
16995
17191
|
media?: {
|
|
16996
17192
|
avatar?: {
|
|
16997
17193
|
id: number;
|
|
@@ -17047,6 +17243,7 @@ declare const bookingSchema: z.ZodObject<{
|
|
|
17047
17243
|
}[] | null | undefined;
|
|
17048
17244
|
} | null | undefined;
|
|
17049
17245
|
description?: string | undefined;
|
|
17246
|
+
category?: string | null | undefined;
|
|
17050
17247
|
booking_fee?: {
|
|
17051
17248
|
id: number;
|
|
17052
17249
|
valid_from: string;
|
|
@@ -17198,6 +17395,19 @@ declare const bookingSchema: z.ZodObject<{
|
|
|
17198
17395
|
id: number;
|
|
17199
17396
|
name: string;
|
|
17200
17397
|
}[] | undefined;
|
|
17398
|
+
is_simulator?: boolean | undefined;
|
|
17399
|
+
averageFuelConsumption?: string | null | undefined;
|
|
17400
|
+
weightUnitString?: string | undefined;
|
|
17401
|
+
fuelUnitString?: string | undefined;
|
|
17402
|
+
isoCountryCodeFromRegistration?: string | undefined;
|
|
17403
|
+
registrationWithoutSpecialChars?: string | null | undefined;
|
|
17404
|
+
equipmentCodes?: string[] | null | undefined;
|
|
17405
|
+
compliance_required?: boolean | undefined;
|
|
17406
|
+
show_on_website?: boolean | undefined;
|
|
17407
|
+
is_public?: boolean | undefined;
|
|
17408
|
+
company_timezone?: string | undefined;
|
|
17409
|
+
defaultFlightType?: string | undefined;
|
|
17410
|
+
defaultFlightRule?: string | undefined;
|
|
17201
17411
|
}>>;
|
|
17202
17412
|
etdZ: z.ZodString;
|
|
17203
17413
|
etaZ: z.ZodString;
|
|
@@ -17517,6 +17727,7 @@ declare const bookingSchema: z.ZodObject<{
|
|
|
17517
17727
|
course_count?: number | undefined;
|
|
17518
17728
|
} | undefined;
|
|
17519
17729
|
length?: string | undefined;
|
|
17730
|
+
status?: string | undefined;
|
|
17520
17731
|
media?: {
|
|
17521
17732
|
avatar?: {
|
|
17522
17733
|
id: number;
|
|
@@ -17572,6 +17783,7 @@ declare const bookingSchema: z.ZodObject<{
|
|
|
17572
17783
|
}[] | null | undefined;
|
|
17573
17784
|
} | null | undefined;
|
|
17574
17785
|
description?: string | undefined;
|
|
17786
|
+
category?: string | null | undefined;
|
|
17575
17787
|
booking_fee?: {
|
|
17576
17788
|
id: number;
|
|
17577
17789
|
valid_from: string;
|
|
@@ -17723,6 +17935,19 @@ declare const bookingSchema: z.ZodObject<{
|
|
|
17723
17935
|
id: number;
|
|
17724
17936
|
name: string;
|
|
17725
17937
|
}[] | undefined;
|
|
17938
|
+
is_simulator?: boolean | undefined;
|
|
17939
|
+
averageFuelConsumption?: string | null | undefined;
|
|
17940
|
+
weightUnitString?: string | undefined;
|
|
17941
|
+
fuelUnitString?: string | undefined;
|
|
17942
|
+
isoCountryCodeFromRegistration?: string | undefined;
|
|
17943
|
+
registrationWithoutSpecialChars?: string | null | undefined;
|
|
17944
|
+
equipmentCodes?: string[] | null | undefined;
|
|
17945
|
+
compliance_required?: boolean | undefined;
|
|
17946
|
+
show_on_website?: boolean | undefined;
|
|
17947
|
+
is_public?: boolean | undefined;
|
|
17948
|
+
company_timezone?: string | undefined;
|
|
17949
|
+
defaultFlightType?: string | undefined;
|
|
17950
|
+
defaultFlightRule?: string | undefined;
|
|
17726
17951
|
} | undefined;
|
|
17727
17952
|
departure_airport_id?: number | undefined;
|
|
17728
17953
|
departure_airport?: {
|
|
@@ -17987,6 +18212,7 @@ declare const bookingSchema: z.ZodObject<{
|
|
|
17987
18212
|
course_count?: number | undefined;
|
|
17988
18213
|
} | undefined;
|
|
17989
18214
|
length?: string | undefined;
|
|
18215
|
+
status?: string | undefined;
|
|
17990
18216
|
media?: {
|
|
17991
18217
|
avatar?: {
|
|
17992
18218
|
id: number;
|
|
@@ -18042,6 +18268,7 @@ declare const bookingSchema: z.ZodObject<{
|
|
|
18042
18268
|
}[] | null | undefined;
|
|
18043
18269
|
} | null | undefined;
|
|
18044
18270
|
description?: string | undefined;
|
|
18271
|
+
category?: string | null | undefined;
|
|
18045
18272
|
booking_fee?: {
|
|
18046
18273
|
id: number;
|
|
18047
18274
|
valid_from: string;
|
|
@@ -18193,6 +18420,19 @@ declare const bookingSchema: z.ZodObject<{
|
|
|
18193
18420
|
id: number;
|
|
18194
18421
|
name: string;
|
|
18195
18422
|
}[] | undefined;
|
|
18423
|
+
is_simulator?: boolean | undefined;
|
|
18424
|
+
averageFuelConsumption?: string | null | undefined;
|
|
18425
|
+
weightUnitString?: string | undefined;
|
|
18426
|
+
fuelUnitString?: string | undefined;
|
|
18427
|
+
isoCountryCodeFromRegistration?: string | undefined;
|
|
18428
|
+
registrationWithoutSpecialChars?: string | null | undefined;
|
|
18429
|
+
equipmentCodes?: string[] | null | undefined;
|
|
18430
|
+
compliance_required?: boolean | undefined;
|
|
18431
|
+
show_on_website?: boolean | undefined;
|
|
18432
|
+
is_public?: boolean | undefined;
|
|
18433
|
+
company_timezone?: string | undefined;
|
|
18434
|
+
defaultFlightType?: string | undefined;
|
|
18435
|
+
defaultFlightRule?: string | undefined;
|
|
18196
18436
|
} | undefined;
|
|
18197
18437
|
departure_airport_id?: number | undefined;
|
|
18198
18438
|
departure_airport?: {
|
|
@@ -22514,6 +22754,21 @@ declare const flightLogSchema: z.ZodObject<{
|
|
|
22514
22754
|
id: number;
|
|
22515
22755
|
name: string;
|
|
22516
22756
|
}>, "many">>;
|
|
22757
|
+
is_simulator: z.ZodOptional<z.ZodBoolean>;
|
|
22758
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22759
|
+
averageFuelConsumption: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22760
|
+
weightUnitString: z.ZodOptional<z.ZodString>;
|
|
22761
|
+
fuelUnitString: z.ZodOptional<z.ZodString>;
|
|
22762
|
+
isoCountryCodeFromRegistration: z.ZodOptional<z.ZodString>;
|
|
22763
|
+
registrationWithoutSpecialChars: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22764
|
+
equipmentCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
22765
|
+
compliance_required: z.ZodOptional<z.ZodBoolean>;
|
|
22766
|
+
show_on_website: z.ZodOptional<z.ZodBoolean>;
|
|
22767
|
+
is_public: z.ZodOptional<z.ZodBoolean>;
|
|
22768
|
+
company_timezone: z.ZodOptional<z.ZodString>;
|
|
22769
|
+
defaultFlightType: z.ZodOptional<z.ZodString>;
|
|
22770
|
+
defaultFlightRule: z.ZodOptional<z.ZodString>;
|
|
22771
|
+
status: z.ZodOptional<z.ZodString>;
|
|
22517
22772
|
can: z.ZodObject<{
|
|
22518
22773
|
view: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
22519
22774
|
update: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -22679,6 +22934,7 @@ declare const flightLogSchema: z.ZodObject<{
|
|
|
22679
22934
|
course_count?: number | undefined;
|
|
22680
22935
|
} | undefined;
|
|
22681
22936
|
length?: string | undefined;
|
|
22937
|
+
status?: string | undefined;
|
|
22682
22938
|
media?: {
|
|
22683
22939
|
avatar?: {
|
|
22684
22940
|
id: number;
|
|
@@ -22734,6 +22990,7 @@ declare const flightLogSchema: z.ZodObject<{
|
|
|
22734
22990
|
}[] | null | undefined;
|
|
22735
22991
|
} | null | undefined;
|
|
22736
22992
|
description?: string | undefined;
|
|
22993
|
+
category?: string | null | undefined;
|
|
22737
22994
|
booking_fee?: {
|
|
22738
22995
|
id: number;
|
|
22739
22996
|
valid_from: string;
|
|
@@ -22885,6 +23142,19 @@ declare const flightLogSchema: z.ZodObject<{
|
|
|
22885
23142
|
id: number;
|
|
22886
23143
|
name: string;
|
|
22887
23144
|
}[] | undefined;
|
|
23145
|
+
is_simulator?: boolean | undefined;
|
|
23146
|
+
averageFuelConsumption?: string | null | undefined;
|
|
23147
|
+
weightUnitString?: string | undefined;
|
|
23148
|
+
fuelUnitString?: string | undefined;
|
|
23149
|
+
isoCountryCodeFromRegistration?: string | undefined;
|
|
23150
|
+
registrationWithoutSpecialChars?: string | null | undefined;
|
|
23151
|
+
equipmentCodes?: string[] | null | undefined;
|
|
23152
|
+
compliance_required?: boolean | undefined;
|
|
23153
|
+
show_on_website?: boolean | undefined;
|
|
23154
|
+
is_public?: boolean | undefined;
|
|
23155
|
+
company_timezone?: string | undefined;
|
|
23156
|
+
defaultFlightType?: string | undefined;
|
|
23157
|
+
defaultFlightRule?: string | undefined;
|
|
22888
23158
|
}, {
|
|
22889
23159
|
id: number;
|
|
22890
23160
|
type: "airplane";
|
|
@@ -23028,6 +23298,7 @@ declare const flightLogSchema: z.ZodObject<{
|
|
|
23028
23298
|
course_count?: number | undefined;
|
|
23029
23299
|
} | undefined;
|
|
23030
23300
|
length?: string | undefined;
|
|
23301
|
+
status?: string | undefined;
|
|
23031
23302
|
media?: {
|
|
23032
23303
|
avatar?: {
|
|
23033
23304
|
id: number;
|
|
@@ -23083,6 +23354,7 @@ declare const flightLogSchema: z.ZodObject<{
|
|
|
23083
23354
|
}[] | null | undefined;
|
|
23084
23355
|
} | null | undefined;
|
|
23085
23356
|
description?: string | undefined;
|
|
23357
|
+
category?: string | null | undefined;
|
|
23086
23358
|
booking_fee?: {
|
|
23087
23359
|
id: number;
|
|
23088
23360
|
valid_from: string;
|
|
@@ -23234,6 +23506,19 @@ declare const flightLogSchema: z.ZodObject<{
|
|
|
23234
23506
|
id: number;
|
|
23235
23507
|
name: string;
|
|
23236
23508
|
}[] | undefined;
|
|
23509
|
+
is_simulator?: boolean | undefined;
|
|
23510
|
+
averageFuelConsumption?: string | null | undefined;
|
|
23511
|
+
weightUnitString?: string | undefined;
|
|
23512
|
+
fuelUnitString?: string | undefined;
|
|
23513
|
+
isoCountryCodeFromRegistration?: string | undefined;
|
|
23514
|
+
registrationWithoutSpecialChars?: string | null | undefined;
|
|
23515
|
+
equipmentCodes?: string[] | null | undefined;
|
|
23516
|
+
compliance_required?: boolean | undefined;
|
|
23517
|
+
show_on_website?: boolean | undefined;
|
|
23518
|
+
is_public?: boolean | undefined;
|
|
23519
|
+
company_timezone?: string | undefined;
|
|
23520
|
+
defaultFlightType?: string | undefined;
|
|
23521
|
+
defaultFlightRule?: string | undefined;
|
|
23237
23522
|
}>>;
|
|
23238
23523
|
ac_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23239
23524
|
ac_reg: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24265,6 +24550,7 @@ declare const flightLogSchema: z.ZodObject<{
|
|
|
24265
24550
|
course_count?: number | undefined;
|
|
24266
24551
|
} | undefined;
|
|
24267
24552
|
length?: string | undefined;
|
|
24553
|
+
status?: string | undefined;
|
|
24268
24554
|
media?: {
|
|
24269
24555
|
avatar?: {
|
|
24270
24556
|
id: number;
|
|
@@ -24320,6 +24606,7 @@ declare const flightLogSchema: z.ZodObject<{
|
|
|
24320
24606
|
}[] | null | undefined;
|
|
24321
24607
|
} | null | undefined;
|
|
24322
24608
|
description?: string | undefined;
|
|
24609
|
+
category?: string | null | undefined;
|
|
24323
24610
|
booking_fee?: {
|
|
24324
24611
|
id: number;
|
|
24325
24612
|
valid_from: string;
|
|
@@ -24471,6 +24758,19 @@ declare const flightLogSchema: z.ZodObject<{
|
|
|
24471
24758
|
id: number;
|
|
24472
24759
|
name: string;
|
|
24473
24760
|
}[] | undefined;
|
|
24761
|
+
is_simulator?: boolean | undefined;
|
|
24762
|
+
averageFuelConsumption?: string | null | undefined;
|
|
24763
|
+
weightUnitString?: string | undefined;
|
|
24764
|
+
fuelUnitString?: string | undefined;
|
|
24765
|
+
isoCountryCodeFromRegistration?: string | undefined;
|
|
24766
|
+
registrationWithoutSpecialChars?: string | null | undefined;
|
|
24767
|
+
equipmentCodes?: string[] | null | undefined;
|
|
24768
|
+
compliance_required?: boolean | undefined;
|
|
24769
|
+
show_on_website?: boolean | undefined;
|
|
24770
|
+
is_public?: boolean | undefined;
|
|
24771
|
+
company_timezone?: string | undefined;
|
|
24772
|
+
defaultFlightType?: string | undefined;
|
|
24773
|
+
defaultFlightRule?: string | undefined;
|
|
24474
24774
|
} | undefined;
|
|
24475
24775
|
membership_id?: number | null | undefined;
|
|
24476
24776
|
author?: {
|
|
@@ -24779,6 +25079,7 @@ declare const flightLogSchema: z.ZodObject<{
|
|
|
24779
25079
|
course_count?: number | undefined;
|
|
24780
25080
|
} | undefined;
|
|
24781
25081
|
length?: string | undefined;
|
|
25082
|
+
status?: string | undefined;
|
|
24782
25083
|
media?: {
|
|
24783
25084
|
avatar?: {
|
|
24784
25085
|
id: number;
|
|
@@ -24834,6 +25135,7 @@ declare const flightLogSchema: z.ZodObject<{
|
|
|
24834
25135
|
}[] | null | undefined;
|
|
24835
25136
|
} | null | undefined;
|
|
24836
25137
|
description?: string | undefined;
|
|
25138
|
+
category?: string | null | undefined;
|
|
24837
25139
|
booking_fee?: {
|
|
24838
25140
|
id: number;
|
|
24839
25141
|
valid_from: string;
|
|
@@ -24985,6 +25287,19 @@ declare const flightLogSchema: z.ZodObject<{
|
|
|
24985
25287
|
id: number;
|
|
24986
25288
|
name: string;
|
|
24987
25289
|
}[] | undefined;
|
|
25290
|
+
is_simulator?: boolean | undefined;
|
|
25291
|
+
averageFuelConsumption?: string | null | undefined;
|
|
25292
|
+
weightUnitString?: string | undefined;
|
|
25293
|
+
fuelUnitString?: string | undefined;
|
|
25294
|
+
isoCountryCodeFromRegistration?: string | undefined;
|
|
25295
|
+
registrationWithoutSpecialChars?: string | null | undefined;
|
|
25296
|
+
equipmentCodes?: string[] | null | undefined;
|
|
25297
|
+
compliance_required?: boolean | undefined;
|
|
25298
|
+
show_on_website?: boolean | undefined;
|
|
25299
|
+
is_public?: boolean | undefined;
|
|
25300
|
+
company_timezone?: string | undefined;
|
|
25301
|
+
defaultFlightType?: string | undefined;
|
|
25302
|
+
defaultFlightRule?: string | undefined;
|
|
24988
25303
|
} | undefined;
|
|
24989
25304
|
membership_id?: number | null | undefined;
|
|
24990
25305
|
author?: {
|