@updraft-solutions/mcrit-sdk 0.11.0 → 0.11.2

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.
@@ -5396,6 +5396,9 @@ declare const courseFeeSchema: z.ZodObject<{
5396
5396
  feeable_type: string;
5397
5397
  }[] | undefined;
5398
5398
  }>;
5399
+ /** Fuel quantity unit as printed in the AFM/POH; per hour when used for `cruise_fuel_flow`. */
5400
+ declare const fuelUnitSchema: z.ZodEnum<["l", "usgal", "kg", "lb"]>;
5401
+ type FuelUnit = z.infer<typeof fuelUnitSchema>;
5399
5402
  declare const airplaneSchema: z.ZodObject<{
5400
5403
  created_at: z.ZodString;
5401
5404
  updated_at: z.ZodString;
@@ -7598,9 +7601,6 @@ declare const airplaneSchema: z.ZodObject<{
7598
7601
  }>, "many">>;
7599
7602
  is_simulator: z.ZodOptional<z.ZodBoolean>;
7600
7603
  category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7601
- averageFuelConsumption: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7602
- weightUnitString: z.ZodOptional<z.ZodString>;
7603
- fuelUnitString: z.ZodOptional<z.ZodString>;
7604
7604
  isoCountryCodeFromRegistration: z.ZodOptional<z.ZodString>;
7605
7605
  registrationWithoutSpecialChars: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7606
7606
  equipmentCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
@@ -7628,6 +7628,8 @@ declare const airplaneSchema: z.ZodObject<{
7628
7628
  max_takeoff_mass: z.ZodOptional<z.ZodString>;
7629
7629
  max_speed: z.ZodOptional<z.ZodString>;
7630
7630
  max_range: z.ZodOptional<z.ZodString>;
7631
+ cruise_fuel_flow: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7632
+ cruise_fuel_flow_unit: z.ZodOptional<z.ZodNullable<z.ZodEnum<["l", "usgal", "kg", "lb"]>>>;
7631
7633
  equipment: z.ZodOptional<z.ZodArray<z.ZodObject<{
7632
7634
  type: z.ZodOptional<z.ZodLiteral<"equipment">>;
7633
7635
  id: z.ZodNumber;
@@ -8071,9 +8073,6 @@ declare const airplaneSchema: z.ZodObject<{
8071
8073
  id: number;
8072
8074
  }[] | undefined;
8073
8075
  is_simulator?: boolean | undefined;
8074
- averageFuelConsumption?: string | null | undefined;
8075
- weightUnitString?: string | undefined;
8076
- fuelUnitString?: string | undefined;
8077
8076
  isoCountryCodeFromRegistration?: string | undefined;
8078
8077
  registrationWithoutSpecialChars?: string | null | undefined;
8079
8078
  equipmentCodes?: string[] | null | undefined;
@@ -8100,6 +8099,8 @@ declare const airplaneSchema: z.ZodObject<{
8100
8099
  max_takeoff_mass?: string | undefined;
8101
8100
  max_speed?: string | undefined;
8102
8101
  max_range?: string | undefined;
8102
+ cruise_fuel_flow?: number | null | undefined;
8103
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
8103
8104
  has_pre_paid_package?: boolean | undefined;
8104
8105
  logging_required_from?: string | undefined;
8105
8106
  fee_id?: number | null | undefined;
@@ -8515,9 +8516,6 @@ declare const airplaneSchema: z.ZodObject<{
8515
8516
  id: number;
8516
8517
  }[] | undefined;
8517
8518
  is_simulator?: boolean | undefined;
8518
- averageFuelConsumption?: string | null | undefined;
8519
- weightUnitString?: string | undefined;
8520
- fuelUnitString?: string | undefined;
8521
8519
  isoCountryCodeFromRegistration?: string | undefined;
8522
8520
  registrationWithoutSpecialChars?: string | null | undefined;
8523
8521
  equipmentCodes?: string[] | null | undefined;
@@ -8544,6 +8542,8 @@ declare const airplaneSchema: z.ZodObject<{
8544
8542
  max_takeoff_mass?: string | undefined;
8545
8543
  max_speed?: string | undefined;
8546
8544
  max_range?: string | undefined;
8545
+ cruise_fuel_flow?: number | null | undefined;
8546
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
8547
8547
  has_pre_paid_package?: boolean | undefined;
8548
8548
  logging_required_from?: string | undefined;
8549
8549
  fee_id?: number | null | undefined;
@@ -10852,9 +10852,6 @@ declare const airplanePermissionSchema: z.ZodObject<{
10852
10852
  }>, "many">>;
10853
10853
  is_simulator: z.ZodOptional<z.ZodBoolean>;
10854
10854
  category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10855
- averageFuelConsumption: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10856
- weightUnitString: z.ZodOptional<z.ZodString>;
10857
- fuelUnitString: z.ZodOptional<z.ZodString>;
10858
10855
  isoCountryCodeFromRegistration: z.ZodOptional<z.ZodString>;
10859
10856
  registrationWithoutSpecialChars: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10860
10857
  equipmentCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
@@ -10882,6 +10879,8 @@ declare const airplanePermissionSchema: z.ZodObject<{
10882
10879
  max_takeoff_mass: z.ZodOptional<z.ZodString>;
10883
10880
  max_speed: z.ZodOptional<z.ZodString>;
10884
10881
  max_range: z.ZodOptional<z.ZodString>;
10882
+ cruise_fuel_flow: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
10883
+ cruise_fuel_flow_unit: z.ZodOptional<z.ZodNullable<z.ZodEnum<["l", "usgal", "kg", "lb"]>>>;
10885
10884
  equipment: z.ZodOptional<z.ZodArray<z.ZodObject<{
10886
10885
  type: z.ZodOptional<z.ZodLiteral<"equipment">>;
10887
10886
  id: z.ZodNumber;
@@ -11325,9 +11324,6 @@ declare const airplanePermissionSchema: z.ZodObject<{
11325
11324
  id: number;
11326
11325
  }[] | undefined;
11327
11326
  is_simulator?: boolean | undefined;
11328
- averageFuelConsumption?: string | null | undefined;
11329
- weightUnitString?: string | undefined;
11330
- fuelUnitString?: string | undefined;
11331
11327
  isoCountryCodeFromRegistration?: string | undefined;
11332
11328
  registrationWithoutSpecialChars?: string | null | undefined;
11333
11329
  equipmentCodes?: string[] | null | undefined;
@@ -11354,6 +11350,8 @@ declare const airplanePermissionSchema: z.ZodObject<{
11354
11350
  max_takeoff_mass?: string | undefined;
11355
11351
  max_speed?: string | undefined;
11356
11352
  max_range?: string | undefined;
11353
+ cruise_fuel_flow?: number | null | undefined;
11354
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
11357
11355
  has_pre_paid_package?: boolean | undefined;
11358
11356
  logging_required_from?: string | undefined;
11359
11357
  fee_id?: number | null | undefined;
@@ -11769,9 +11767,6 @@ declare const airplanePermissionSchema: z.ZodObject<{
11769
11767
  id: number;
11770
11768
  }[] | undefined;
11771
11769
  is_simulator?: boolean | undefined;
11772
- averageFuelConsumption?: string | null | undefined;
11773
- weightUnitString?: string | undefined;
11774
- fuelUnitString?: string | undefined;
11775
11770
  isoCountryCodeFromRegistration?: string | undefined;
11776
11771
  registrationWithoutSpecialChars?: string | null | undefined;
11777
11772
  equipmentCodes?: string[] | null | undefined;
@@ -11798,6 +11793,8 @@ declare const airplanePermissionSchema: z.ZodObject<{
11798
11793
  max_takeoff_mass?: string | undefined;
11799
11794
  max_speed?: string | undefined;
11800
11795
  max_range?: string | undefined;
11796
+ cruise_fuel_flow?: number | null | undefined;
11797
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
11801
11798
  has_pre_paid_package?: boolean | undefined;
11802
11799
  logging_required_from?: string | undefined;
11803
11800
  fee_id?: number | null | undefined;
@@ -13801,9 +13798,6 @@ declare const airplanePermissionSchema: z.ZodObject<{
13801
13798
  id: number;
13802
13799
  }[] | undefined;
13803
13800
  is_simulator?: boolean | undefined;
13804
- averageFuelConsumption?: string | null | undefined;
13805
- weightUnitString?: string | undefined;
13806
- fuelUnitString?: string | undefined;
13807
13801
  isoCountryCodeFromRegistration?: string | undefined;
13808
13802
  registrationWithoutSpecialChars?: string | null | undefined;
13809
13803
  equipmentCodes?: string[] | null | undefined;
@@ -13830,6 +13824,8 @@ declare const airplanePermissionSchema: z.ZodObject<{
13830
13824
  max_takeoff_mass?: string | undefined;
13831
13825
  max_speed?: string | undefined;
13832
13826
  max_range?: string | undefined;
13827
+ cruise_fuel_flow?: number | null | undefined;
13828
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
13833
13829
  has_pre_paid_package?: boolean | undefined;
13834
13830
  logging_required_from?: string | undefined;
13835
13831
  fee_id?: number | null | undefined;
@@ -14470,9 +14466,6 @@ declare const airplanePermissionSchema: z.ZodObject<{
14470
14466
  id: number;
14471
14467
  }[] | undefined;
14472
14468
  is_simulator?: boolean | undefined;
14473
- averageFuelConsumption?: string | null | undefined;
14474
- weightUnitString?: string | undefined;
14475
- fuelUnitString?: string | undefined;
14476
14469
  isoCountryCodeFromRegistration?: string | undefined;
14477
14470
  registrationWithoutSpecialChars?: string | null | undefined;
14478
14471
  equipmentCodes?: string[] | null | undefined;
@@ -14499,6 +14492,8 @@ declare const airplanePermissionSchema: z.ZodObject<{
14499
14492
  max_takeoff_mass?: string | undefined;
14500
14493
  max_speed?: string | undefined;
14501
14494
  max_range?: string | undefined;
14495
+ cruise_fuel_flow?: number | null | undefined;
14496
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
14502
14497
  has_pre_paid_package?: boolean | undefined;
14503
14498
  logging_required_from?: string | undefined;
14504
14499
  fee_id?: number | null | undefined;
@@ -17355,9 +17350,6 @@ declare const extendedAirplaneSchema: z.ZodObject<{
17355
17350
  }>, "many">>;
17356
17351
  is_simulator: z.ZodOptional<z.ZodBoolean>;
17357
17352
  category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17358
- averageFuelConsumption: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17359
- weightUnitString: z.ZodOptional<z.ZodString>;
17360
- fuelUnitString: z.ZodOptional<z.ZodString>;
17361
17353
  isoCountryCodeFromRegistration: z.ZodOptional<z.ZodString>;
17362
17354
  registrationWithoutSpecialChars: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17363
17355
  equipmentCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
@@ -17385,6 +17377,8 @@ declare const extendedAirplaneSchema: z.ZodObject<{
17385
17377
  max_takeoff_mass: z.ZodOptional<z.ZodString>;
17386
17378
  max_speed: z.ZodOptional<z.ZodString>;
17387
17379
  max_range: z.ZodOptional<z.ZodString>;
17380
+ cruise_fuel_flow: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
17381
+ cruise_fuel_flow_unit: z.ZodOptional<z.ZodNullable<z.ZodEnum<["l", "usgal", "kg", "lb"]>>>;
17388
17382
  equipment: z.ZodOptional<z.ZodArray<z.ZodObject<{
17389
17383
  type: z.ZodOptional<z.ZodLiteral<"equipment">>;
17390
17384
  id: z.ZodNumber;
@@ -18713,9 +18707,6 @@ declare const extendedAirplaneSchema: z.ZodObject<{
18713
18707
  id: number;
18714
18708
  }[] | undefined;
18715
18709
  is_simulator?: boolean | undefined;
18716
- averageFuelConsumption?: string | null | undefined;
18717
- weightUnitString?: string | undefined;
18718
- fuelUnitString?: string | undefined;
18719
18710
  isoCountryCodeFromRegistration?: string | undefined;
18720
18711
  registrationWithoutSpecialChars?: string | null | undefined;
18721
18712
  equipmentCodes?: string[] | null | undefined;
@@ -18742,6 +18733,8 @@ declare const extendedAirplaneSchema: z.ZodObject<{
18742
18733
  max_takeoff_mass?: string | undefined;
18743
18734
  max_speed?: string | undefined;
18744
18735
  max_range?: string | undefined;
18736
+ cruise_fuel_flow?: number | null | undefined;
18737
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
18745
18738
  has_pre_paid_package?: boolean | undefined;
18746
18739
  logging_required_from?: string | undefined;
18747
18740
  fee_id?: number | null | undefined;
@@ -19327,9 +19320,6 @@ declare const extendedAirplaneSchema: z.ZodObject<{
19327
19320
  id: number;
19328
19321
  }[] | undefined;
19329
19322
  is_simulator?: boolean | undefined;
19330
- averageFuelConsumption?: string | null | undefined;
19331
- weightUnitString?: string | undefined;
19332
- fuelUnitString?: string | undefined;
19333
19323
  isoCountryCodeFromRegistration?: string | undefined;
19334
19324
  registrationWithoutSpecialChars?: string | null | undefined;
19335
19325
  equipmentCodes?: string[] | null | undefined;
@@ -19356,6 +19346,8 @@ declare const extendedAirplaneSchema: z.ZodObject<{
19356
19346
  max_takeoff_mass?: string | undefined;
19357
19347
  max_speed?: string | undefined;
19358
19348
  max_range?: string | undefined;
19349
+ cruise_fuel_flow?: number | null | undefined;
19350
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
19359
19351
  has_pre_paid_package?: boolean | undefined;
19360
19352
  logging_required_from?: string | undefined;
19361
19353
  fee_id?: number | null | undefined;
@@ -22952,9 +22944,6 @@ declare const bookingSchema: z.ZodObject<{
22952
22944
  }>, "many">>;
22953
22945
  is_simulator: z.ZodOptional<z.ZodBoolean>;
22954
22946
  category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22955
- averageFuelConsumption: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22956
- weightUnitString: z.ZodOptional<z.ZodString>;
22957
- fuelUnitString: z.ZodOptional<z.ZodString>;
22958
22947
  isoCountryCodeFromRegistration: z.ZodOptional<z.ZodString>;
22959
22948
  registrationWithoutSpecialChars: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22960
22949
  equipmentCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
@@ -22982,6 +22971,8 @@ declare const bookingSchema: z.ZodObject<{
22982
22971
  max_takeoff_mass: z.ZodOptional<z.ZodString>;
22983
22972
  max_speed: z.ZodOptional<z.ZodString>;
22984
22973
  max_range: z.ZodOptional<z.ZodString>;
22974
+ cruise_fuel_flow: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
22975
+ cruise_fuel_flow_unit: z.ZodOptional<z.ZodNullable<z.ZodEnum<["l", "usgal", "kg", "lb"]>>>;
22985
22976
  equipment: z.ZodOptional<z.ZodArray<z.ZodObject<{
22986
22977
  type: z.ZodOptional<z.ZodLiteral<"equipment">>;
22987
22978
  id: z.ZodNumber;
@@ -23425,9 +23416,6 @@ declare const bookingSchema: z.ZodObject<{
23425
23416
  id: number;
23426
23417
  }[] | undefined;
23427
23418
  is_simulator?: boolean | undefined;
23428
- averageFuelConsumption?: string | null | undefined;
23429
- weightUnitString?: string | undefined;
23430
- fuelUnitString?: string | undefined;
23431
23419
  isoCountryCodeFromRegistration?: string | undefined;
23432
23420
  registrationWithoutSpecialChars?: string | null | undefined;
23433
23421
  equipmentCodes?: string[] | null | undefined;
@@ -23454,6 +23442,8 @@ declare const bookingSchema: z.ZodObject<{
23454
23442
  max_takeoff_mass?: string | undefined;
23455
23443
  max_speed?: string | undefined;
23456
23444
  max_range?: string | undefined;
23445
+ cruise_fuel_flow?: number | null | undefined;
23446
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
23457
23447
  has_pre_paid_package?: boolean | undefined;
23458
23448
  logging_required_from?: string | undefined;
23459
23449
  fee_id?: number | null | undefined;
@@ -23869,9 +23859,6 @@ declare const bookingSchema: z.ZodObject<{
23869
23859
  id: number;
23870
23860
  }[] | undefined;
23871
23861
  is_simulator?: boolean | undefined;
23872
- averageFuelConsumption?: string | null | undefined;
23873
- weightUnitString?: string | undefined;
23874
- fuelUnitString?: string | undefined;
23875
23862
  isoCountryCodeFromRegistration?: string | undefined;
23876
23863
  registrationWithoutSpecialChars?: string | null | undefined;
23877
23864
  equipmentCodes?: string[] | null | undefined;
@@ -23898,6 +23885,8 @@ declare const bookingSchema: z.ZodObject<{
23898
23885
  max_takeoff_mass?: string | undefined;
23899
23886
  max_speed?: string | undefined;
23900
23887
  max_range?: string | undefined;
23888
+ cruise_fuel_flow?: number | null | undefined;
23889
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
23901
23890
  has_pre_paid_package?: boolean | undefined;
23902
23891
  logging_required_from?: string | undefined;
23903
23892
  fee_id?: number | null | undefined;
@@ -26736,9 +26725,6 @@ declare const bookingSchema: z.ZodObject<{
26736
26725
  }>, "many">>;
26737
26726
  is_simulator: z.ZodOptional<z.ZodBoolean>;
26738
26727
  category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
26739
- averageFuelConsumption: z.ZodOptional<z.ZodNullable<z.ZodString>>;
26740
- weightUnitString: z.ZodOptional<z.ZodString>;
26741
- fuelUnitString: z.ZodOptional<z.ZodString>;
26742
26728
  isoCountryCodeFromRegistration: z.ZodOptional<z.ZodString>;
26743
26729
  registrationWithoutSpecialChars: z.ZodOptional<z.ZodNullable<z.ZodString>>;
26744
26730
  equipmentCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
@@ -26766,6 +26752,8 @@ declare const bookingSchema: z.ZodObject<{
26766
26752
  max_takeoff_mass: z.ZodOptional<z.ZodString>;
26767
26753
  max_speed: z.ZodOptional<z.ZodString>;
26768
26754
  max_range: z.ZodOptional<z.ZodString>;
26755
+ cruise_fuel_flow: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
26756
+ cruise_fuel_flow_unit: z.ZodOptional<z.ZodNullable<z.ZodEnum<["l", "usgal", "kg", "lb"]>>>;
26769
26757
  equipment: z.ZodOptional<z.ZodArray<z.ZodObject<{
26770
26758
  type: z.ZodOptional<z.ZodLiteral<"equipment">>;
26771
26759
  id: z.ZodNumber;
@@ -27209,9 +27197,6 @@ declare const bookingSchema: z.ZodObject<{
27209
27197
  id: number;
27210
27198
  }[] | undefined;
27211
27199
  is_simulator?: boolean | undefined;
27212
- averageFuelConsumption?: string | null | undefined;
27213
- weightUnitString?: string | undefined;
27214
- fuelUnitString?: string | undefined;
27215
27200
  isoCountryCodeFromRegistration?: string | undefined;
27216
27201
  registrationWithoutSpecialChars?: string | null | undefined;
27217
27202
  equipmentCodes?: string[] | null | undefined;
@@ -27238,6 +27223,8 @@ declare const bookingSchema: z.ZodObject<{
27238
27223
  max_takeoff_mass?: string | undefined;
27239
27224
  max_speed?: string | undefined;
27240
27225
  max_range?: string | undefined;
27226
+ cruise_fuel_flow?: number | null | undefined;
27227
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
27241
27228
  has_pre_paid_package?: boolean | undefined;
27242
27229
  logging_required_from?: string | undefined;
27243
27230
  fee_id?: number | null | undefined;
@@ -27653,9 +27640,6 @@ declare const bookingSchema: z.ZodObject<{
27653
27640
  id: number;
27654
27641
  }[] | undefined;
27655
27642
  is_simulator?: boolean | undefined;
27656
- averageFuelConsumption?: string | null | undefined;
27657
- weightUnitString?: string | undefined;
27658
- fuelUnitString?: string | undefined;
27659
27643
  isoCountryCodeFromRegistration?: string | undefined;
27660
27644
  registrationWithoutSpecialChars?: string | null | undefined;
27661
27645
  equipmentCodes?: string[] | null | undefined;
@@ -27682,6 +27666,8 @@ declare const bookingSchema: z.ZodObject<{
27682
27666
  max_takeoff_mass?: string | undefined;
27683
27667
  max_speed?: string | undefined;
27684
27668
  max_range?: string | undefined;
27669
+ cruise_fuel_flow?: number | null | undefined;
27670
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
27685
27671
  has_pre_paid_package?: boolean | undefined;
27686
27672
  logging_required_from?: string | undefined;
27687
27673
  fee_id?: number | null | undefined;
@@ -31579,9 +31565,6 @@ declare const bookingSchema: z.ZodObject<{
31579
31565
  id: number;
31580
31566
  }[] | undefined;
31581
31567
  is_simulator?: boolean | undefined;
31582
- averageFuelConsumption?: string | null | undefined;
31583
- weightUnitString?: string | undefined;
31584
- fuelUnitString?: string | undefined;
31585
31568
  isoCountryCodeFromRegistration?: string | undefined;
31586
31569
  registrationWithoutSpecialChars?: string | null | undefined;
31587
31570
  equipmentCodes?: string[] | null | undefined;
@@ -31608,6 +31591,8 @@ declare const bookingSchema: z.ZodObject<{
31608
31591
  max_takeoff_mass?: string | undefined;
31609
31592
  max_speed?: string | undefined;
31610
31593
  max_range?: string | undefined;
31594
+ cruise_fuel_flow?: number | null | undefined;
31595
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
31611
31596
  has_pre_paid_package?: boolean | undefined;
31612
31597
  logging_required_from?: string | undefined;
31613
31598
  fee_id?: number | null | undefined;
@@ -32540,9 +32525,6 @@ declare const bookingSchema: z.ZodObject<{
32540
32525
  id: number;
32541
32526
  }[] | undefined;
32542
32527
  is_simulator?: boolean | undefined;
32543
- averageFuelConsumption?: string | null | undefined;
32544
- weightUnitString?: string | undefined;
32545
- fuelUnitString?: string | undefined;
32546
32528
  isoCountryCodeFromRegistration?: string | undefined;
32547
32529
  registrationWithoutSpecialChars?: string | null | undefined;
32548
32530
  equipmentCodes?: string[] | null | undefined;
@@ -32569,6 +32551,8 @@ declare const bookingSchema: z.ZodObject<{
32569
32551
  max_takeoff_mass?: string | undefined;
32570
32552
  max_speed?: string | undefined;
32571
32553
  max_range?: string | undefined;
32554
+ cruise_fuel_flow?: number | null | undefined;
32555
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
32572
32556
  has_pre_paid_package?: boolean | undefined;
32573
32557
  logging_required_from?: string | undefined;
32574
32558
  fee_id?: number | null | undefined;
@@ -35196,9 +35180,6 @@ declare const bookingSchema: z.ZodObject<{
35196
35180
  id: number;
35197
35181
  }[] | undefined;
35198
35182
  is_simulator?: boolean | undefined;
35199
- averageFuelConsumption?: string | null | undefined;
35200
- weightUnitString?: string | undefined;
35201
- fuelUnitString?: string | undefined;
35202
35183
  isoCountryCodeFromRegistration?: string | undefined;
35203
35184
  registrationWithoutSpecialChars?: string | null | undefined;
35204
35185
  equipmentCodes?: string[] | null | undefined;
@@ -35225,6 +35206,8 @@ declare const bookingSchema: z.ZodObject<{
35225
35206
  max_takeoff_mass?: string | undefined;
35226
35207
  max_speed?: string | undefined;
35227
35208
  max_range?: string | undefined;
35209
+ cruise_fuel_flow?: number | null | undefined;
35210
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
35228
35211
  has_pre_paid_package?: boolean | undefined;
35229
35212
  logging_required_from?: string | undefined;
35230
35213
  fee_id?: number | null | undefined;
@@ -35995,9 +35978,6 @@ declare const bookingSchema: z.ZodObject<{
35995
35978
  id: number;
35996
35979
  }[] | undefined;
35997
35980
  is_simulator?: boolean | undefined;
35998
- averageFuelConsumption?: string | null | undefined;
35999
- weightUnitString?: string | undefined;
36000
- fuelUnitString?: string | undefined;
36001
35981
  isoCountryCodeFromRegistration?: string | undefined;
36002
35982
  registrationWithoutSpecialChars?: string | null | undefined;
36003
35983
  equipmentCodes?: string[] | null | undefined;
@@ -36024,6 +36004,8 @@ declare const bookingSchema: z.ZodObject<{
36024
36004
  max_takeoff_mass?: string | undefined;
36025
36005
  max_speed?: string | undefined;
36026
36006
  max_range?: string | undefined;
36007
+ cruise_fuel_flow?: number | null | undefined;
36008
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
36027
36009
  has_pre_paid_package?: boolean | undefined;
36028
36010
  logging_required_from?: string | undefined;
36029
36011
  fee_id?: number | null | undefined;
@@ -37114,9 +37096,6 @@ declare const bookingSchema: z.ZodObject<{
37114
37096
  id: number;
37115
37097
  }[] | undefined;
37116
37098
  is_simulator?: boolean | undefined;
37117
- averageFuelConsumption?: string | null | undefined;
37118
- weightUnitString?: string | undefined;
37119
- fuelUnitString?: string | undefined;
37120
37099
  isoCountryCodeFromRegistration?: string | undefined;
37121
37100
  registrationWithoutSpecialChars?: string | null | undefined;
37122
37101
  equipmentCodes?: string[] | null | undefined;
@@ -37143,6 +37122,8 @@ declare const bookingSchema: z.ZodObject<{
37143
37122
  max_takeoff_mass?: string | undefined;
37144
37123
  max_speed?: string | undefined;
37145
37124
  max_range?: string | undefined;
37125
+ cruise_fuel_flow?: number | null | undefined;
37126
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
37146
37127
  has_pre_paid_package?: boolean | undefined;
37147
37128
  logging_required_from?: string | undefined;
37148
37129
  fee_id?: number | null | undefined;
@@ -37913,9 +37894,6 @@ declare const bookingSchema: z.ZodObject<{
37913
37894
  id: number;
37914
37895
  }[] | undefined;
37915
37896
  is_simulator?: boolean | undefined;
37916
- averageFuelConsumption?: string | null | undefined;
37917
- weightUnitString?: string | undefined;
37918
- fuelUnitString?: string | undefined;
37919
37897
  isoCountryCodeFromRegistration?: string | undefined;
37920
37898
  registrationWithoutSpecialChars?: string | null | undefined;
37921
37899
  equipmentCodes?: string[] | null | undefined;
@@ -37942,6 +37920,8 @@ declare const bookingSchema: z.ZodObject<{
37942
37920
  max_takeoff_mass?: string | undefined;
37943
37921
  max_speed?: string | undefined;
37944
37922
  max_range?: string | undefined;
37923
+ cruise_fuel_flow?: number | null | undefined;
37924
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
37945
37925
  has_pre_paid_package?: boolean | undefined;
37946
37926
  logging_required_from?: string | undefined;
37947
37927
  fee_id?: number | null | undefined;
@@ -43549,9 +43529,6 @@ declare const flightLogSchema: z.ZodObject<{
43549
43529
  }>, "many">>;
43550
43530
  is_simulator: z.ZodOptional<z.ZodBoolean>;
43551
43531
  category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
43552
- averageFuelConsumption: z.ZodOptional<z.ZodNullable<z.ZodString>>;
43553
- weightUnitString: z.ZodOptional<z.ZodString>;
43554
- fuelUnitString: z.ZodOptional<z.ZodString>;
43555
43532
  isoCountryCodeFromRegistration: z.ZodOptional<z.ZodString>;
43556
43533
  registrationWithoutSpecialChars: z.ZodOptional<z.ZodNullable<z.ZodString>>;
43557
43534
  equipmentCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
@@ -43579,6 +43556,8 @@ declare const flightLogSchema: z.ZodObject<{
43579
43556
  max_takeoff_mass: z.ZodOptional<z.ZodString>;
43580
43557
  max_speed: z.ZodOptional<z.ZodString>;
43581
43558
  max_range: z.ZodOptional<z.ZodString>;
43559
+ cruise_fuel_flow: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
43560
+ cruise_fuel_flow_unit: z.ZodOptional<z.ZodNullable<z.ZodEnum<["l", "usgal", "kg", "lb"]>>>;
43582
43561
  equipment: z.ZodOptional<z.ZodArray<z.ZodObject<{
43583
43562
  type: z.ZodOptional<z.ZodLiteral<"equipment">>;
43584
43563
  id: z.ZodNumber;
@@ -44022,9 +44001,6 @@ declare const flightLogSchema: z.ZodObject<{
44022
44001
  id: number;
44023
44002
  }[] | undefined;
44024
44003
  is_simulator?: boolean | undefined;
44025
- averageFuelConsumption?: string | null | undefined;
44026
- weightUnitString?: string | undefined;
44027
- fuelUnitString?: string | undefined;
44028
44004
  isoCountryCodeFromRegistration?: string | undefined;
44029
44005
  registrationWithoutSpecialChars?: string | null | undefined;
44030
44006
  equipmentCodes?: string[] | null | undefined;
@@ -44051,6 +44027,8 @@ declare const flightLogSchema: z.ZodObject<{
44051
44027
  max_takeoff_mass?: string | undefined;
44052
44028
  max_speed?: string | undefined;
44053
44029
  max_range?: string | undefined;
44030
+ cruise_fuel_flow?: number | null | undefined;
44031
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
44054
44032
  has_pre_paid_package?: boolean | undefined;
44055
44033
  logging_required_from?: string | undefined;
44056
44034
  fee_id?: number | null | undefined;
@@ -44466,9 +44444,6 @@ declare const flightLogSchema: z.ZodObject<{
44466
44444
  id: number;
44467
44445
  }[] | undefined;
44468
44446
  is_simulator?: boolean | undefined;
44469
- averageFuelConsumption?: string | null | undefined;
44470
- weightUnitString?: string | undefined;
44471
- fuelUnitString?: string | undefined;
44472
44447
  isoCountryCodeFromRegistration?: string | undefined;
44473
44448
  registrationWithoutSpecialChars?: string | null | undefined;
44474
44449
  equipmentCodes?: string[] | null | undefined;
@@ -44495,6 +44470,8 @@ declare const flightLogSchema: z.ZodObject<{
44495
44470
  max_takeoff_mass?: string | undefined;
44496
44471
  max_speed?: string | undefined;
44497
44472
  max_range?: string | undefined;
44473
+ cruise_fuel_flow?: number | null | undefined;
44474
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
44498
44475
  has_pre_paid_package?: boolean | undefined;
44499
44476
  logging_required_from?: string | undefined;
44500
44477
  fee_id?: number | null | undefined;
@@ -48392,9 +48369,6 @@ declare const flightLogSchema: z.ZodObject<{
48392
48369
  id: number;
48393
48370
  }[] | undefined;
48394
48371
  is_simulator?: boolean | undefined;
48395
- averageFuelConsumption?: string | null | undefined;
48396
- weightUnitString?: string | undefined;
48397
- fuelUnitString?: string | undefined;
48398
48372
  isoCountryCodeFromRegistration?: string | undefined;
48399
48373
  registrationWithoutSpecialChars?: string | null | undefined;
48400
48374
  equipmentCodes?: string[] | null | undefined;
@@ -48421,6 +48395,8 @@ declare const flightLogSchema: z.ZodObject<{
48421
48395
  max_takeoff_mass?: string | undefined;
48422
48396
  max_speed?: string | undefined;
48423
48397
  max_range?: string | undefined;
48398
+ cruise_fuel_flow?: number | null | undefined;
48399
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
48424
48400
  has_pre_paid_package?: boolean | undefined;
48425
48401
  logging_required_from?: string | undefined;
48426
48402
  fee_id?: number | null | undefined;
@@ -49353,9 +49329,6 @@ declare const flightLogSchema: z.ZodObject<{
49353
49329
  id: number;
49354
49330
  }[] | undefined;
49355
49331
  is_simulator?: boolean | undefined;
49356
- averageFuelConsumption?: string | null | undefined;
49357
- weightUnitString?: string | undefined;
49358
- fuelUnitString?: string | undefined;
49359
49332
  isoCountryCodeFromRegistration?: string | undefined;
49360
49333
  registrationWithoutSpecialChars?: string | null | undefined;
49361
49334
  equipmentCodes?: string[] | null | undefined;
@@ -49382,6 +49355,8 @@ declare const flightLogSchema: z.ZodObject<{
49382
49355
  max_takeoff_mass?: string | undefined;
49383
49356
  max_speed?: string | undefined;
49384
49357
  max_range?: string | undefined;
49358
+ cruise_fuel_flow?: number | null | undefined;
49359
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
49385
49360
  has_pre_paid_package?: boolean | undefined;
49386
49361
  logging_required_from?: string | undefined;
49387
49362
  fee_id?: number | null | undefined;
@@ -69457,9 +69432,6 @@ declare const courseEnrollmentSchema: z.ZodObject<{
69457
69432
  }>, "many">>;
69458
69433
  is_simulator: z.ZodOptional<z.ZodBoolean>;
69459
69434
  category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
69460
- averageFuelConsumption: z.ZodOptional<z.ZodNullable<z.ZodString>>;
69461
- weightUnitString: z.ZodOptional<z.ZodString>;
69462
- fuelUnitString: z.ZodOptional<z.ZodString>;
69463
69435
  isoCountryCodeFromRegistration: z.ZodOptional<z.ZodString>;
69464
69436
  registrationWithoutSpecialChars: z.ZodOptional<z.ZodNullable<z.ZodString>>;
69465
69437
  equipmentCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
@@ -69487,6 +69459,8 @@ declare const courseEnrollmentSchema: z.ZodObject<{
69487
69459
  max_takeoff_mass: z.ZodOptional<z.ZodString>;
69488
69460
  max_speed: z.ZodOptional<z.ZodString>;
69489
69461
  max_range: z.ZodOptional<z.ZodString>;
69462
+ cruise_fuel_flow: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
69463
+ cruise_fuel_flow_unit: z.ZodOptional<z.ZodNullable<z.ZodEnum<["l", "usgal", "kg", "lb"]>>>;
69490
69464
  equipment: z.ZodOptional<z.ZodArray<z.ZodObject<{
69491
69465
  type: z.ZodOptional<z.ZodLiteral<"equipment">>;
69492
69466
  id: z.ZodNumber;
@@ -69930,9 +69904,6 @@ declare const courseEnrollmentSchema: z.ZodObject<{
69930
69904
  id: number;
69931
69905
  }[] | undefined;
69932
69906
  is_simulator?: boolean | undefined;
69933
- averageFuelConsumption?: string | null | undefined;
69934
- weightUnitString?: string | undefined;
69935
- fuelUnitString?: string | undefined;
69936
69907
  isoCountryCodeFromRegistration?: string | undefined;
69937
69908
  registrationWithoutSpecialChars?: string | null | undefined;
69938
69909
  equipmentCodes?: string[] | null | undefined;
@@ -69959,6 +69930,8 @@ declare const courseEnrollmentSchema: z.ZodObject<{
69959
69930
  max_takeoff_mass?: string | undefined;
69960
69931
  max_speed?: string | undefined;
69961
69932
  max_range?: string | undefined;
69933
+ cruise_fuel_flow?: number | null | undefined;
69934
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
69962
69935
  has_pre_paid_package?: boolean | undefined;
69963
69936
  logging_required_from?: string | undefined;
69964
69937
  fee_id?: number | null | undefined;
@@ -70374,9 +70347,6 @@ declare const courseEnrollmentSchema: z.ZodObject<{
70374
70347
  id: number;
70375
70348
  }[] | undefined;
70376
70349
  is_simulator?: boolean | undefined;
70377
- averageFuelConsumption?: string | null | undefined;
70378
- weightUnitString?: string | undefined;
70379
- fuelUnitString?: string | undefined;
70380
70350
  isoCountryCodeFromRegistration?: string | undefined;
70381
70351
  registrationWithoutSpecialChars?: string | null | undefined;
70382
70352
  equipmentCodes?: string[] | null | undefined;
@@ -70403,6 +70373,8 @@ declare const courseEnrollmentSchema: z.ZodObject<{
70403
70373
  max_takeoff_mass?: string | undefined;
70404
70374
  max_speed?: string | undefined;
70405
70375
  max_range?: string | undefined;
70376
+ cruise_fuel_flow?: number | null | undefined;
70377
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
70406
70378
  has_pre_paid_package?: boolean | undefined;
70407
70379
  logging_required_from?: string | undefined;
70408
70380
  fee_id?: number | null | undefined;
@@ -73241,9 +73213,6 @@ declare const courseEnrollmentSchema: z.ZodObject<{
73241
73213
  }>, "many">>;
73242
73214
  is_simulator: z.ZodOptional<z.ZodBoolean>;
73243
73215
  category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73244
- averageFuelConsumption: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73245
- weightUnitString: z.ZodOptional<z.ZodString>;
73246
- fuelUnitString: z.ZodOptional<z.ZodString>;
73247
73216
  isoCountryCodeFromRegistration: z.ZodOptional<z.ZodString>;
73248
73217
  registrationWithoutSpecialChars: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73249
73218
  equipmentCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
@@ -73271,6 +73240,8 @@ declare const courseEnrollmentSchema: z.ZodObject<{
73271
73240
  max_takeoff_mass: z.ZodOptional<z.ZodString>;
73272
73241
  max_speed: z.ZodOptional<z.ZodString>;
73273
73242
  max_range: z.ZodOptional<z.ZodString>;
73243
+ cruise_fuel_flow: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
73244
+ cruise_fuel_flow_unit: z.ZodOptional<z.ZodNullable<z.ZodEnum<["l", "usgal", "kg", "lb"]>>>;
73274
73245
  equipment: z.ZodOptional<z.ZodArray<z.ZodObject<{
73275
73246
  type: z.ZodOptional<z.ZodLiteral<"equipment">>;
73276
73247
  id: z.ZodNumber;
@@ -73714,9 +73685,6 @@ declare const courseEnrollmentSchema: z.ZodObject<{
73714
73685
  id: number;
73715
73686
  }[] | undefined;
73716
73687
  is_simulator?: boolean | undefined;
73717
- averageFuelConsumption?: string | null | undefined;
73718
- weightUnitString?: string | undefined;
73719
- fuelUnitString?: string | undefined;
73720
73688
  isoCountryCodeFromRegistration?: string | undefined;
73721
73689
  registrationWithoutSpecialChars?: string | null | undefined;
73722
73690
  equipmentCodes?: string[] | null | undefined;
@@ -73743,6 +73711,8 @@ declare const courseEnrollmentSchema: z.ZodObject<{
73743
73711
  max_takeoff_mass?: string | undefined;
73744
73712
  max_speed?: string | undefined;
73745
73713
  max_range?: string | undefined;
73714
+ cruise_fuel_flow?: number | null | undefined;
73715
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
73746
73716
  has_pre_paid_package?: boolean | undefined;
73747
73717
  logging_required_from?: string | undefined;
73748
73718
  fee_id?: number | null | undefined;
@@ -74158,9 +74128,6 @@ declare const courseEnrollmentSchema: z.ZodObject<{
74158
74128
  id: number;
74159
74129
  }[] | undefined;
74160
74130
  is_simulator?: boolean | undefined;
74161
- averageFuelConsumption?: string | null | undefined;
74162
- weightUnitString?: string | undefined;
74163
- fuelUnitString?: string | undefined;
74164
74131
  isoCountryCodeFromRegistration?: string | undefined;
74165
74132
  registrationWithoutSpecialChars?: string | null | undefined;
74166
74133
  equipmentCodes?: string[] | null | undefined;
@@ -74187,6 +74154,8 @@ declare const courseEnrollmentSchema: z.ZodObject<{
74187
74154
  max_takeoff_mass?: string | undefined;
74188
74155
  max_speed?: string | undefined;
74189
74156
  max_range?: string | undefined;
74157
+ cruise_fuel_flow?: number | null | undefined;
74158
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
74190
74159
  has_pre_paid_package?: boolean | undefined;
74191
74160
  logging_required_from?: string | undefined;
74192
74161
  fee_id?: number | null | undefined;
@@ -78084,9 +78053,6 @@ declare const courseEnrollmentSchema: z.ZodObject<{
78084
78053
  id: number;
78085
78054
  }[] | undefined;
78086
78055
  is_simulator?: boolean | undefined;
78087
- averageFuelConsumption?: string | null | undefined;
78088
- weightUnitString?: string | undefined;
78089
- fuelUnitString?: string | undefined;
78090
78056
  isoCountryCodeFromRegistration?: string | undefined;
78091
78057
  registrationWithoutSpecialChars?: string | null | undefined;
78092
78058
  equipmentCodes?: string[] | null | undefined;
@@ -78113,6 +78079,8 @@ declare const courseEnrollmentSchema: z.ZodObject<{
78113
78079
  max_takeoff_mass?: string | undefined;
78114
78080
  max_speed?: string | undefined;
78115
78081
  max_range?: string | undefined;
78082
+ cruise_fuel_flow?: number | null | undefined;
78083
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
78116
78084
  has_pre_paid_package?: boolean | undefined;
78117
78085
  logging_required_from?: string | undefined;
78118
78086
  fee_id?: number | null | undefined;
@@ -79045,9 +79013,6 @@ declare const courseEnrollmentSchema: z.ZodObject<{
79045
79013
  id: number;
79046
79014
  }[] | undefined;
79047
79015
  is_simulator?: boolean | undefined;
79048
- averageFuelConsumption?: string | null | undefined;
79049
- weightUnitString?: string | undefined;
79050
- fuelUnitString?: string | undefined;
79051
79016
  isoCountryCodeFromRegistration?: string | undefined;
79052
79017
  registrationWithoutSpecialChars?: string | null | undefined;
79053
79018
  equipmentCodes?: string[] | null | undefined;
@@ -79074,6 +79039,8 @@ declare const courseEnrollmentSchema: z.ZodObject<{
79074
79039
  max_takeoff_mass?: string | undefined;
79075
79040
  max_speed?: string | undefined;
79076
79041
  max_range?: string | undefined;
79042
+ cruise_fuel_flow?: number | null | undefined;
79043
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
79077
79044
  has_pre_paid_package?: boolean | undefined;
79078
79045
  logging_required_from?: string | undefined;
79079
79046
  fee_id?: number | null | undefined;
@@ -81701,9 +81668,6 @@ declare const courseEnrollmentSchema: z.ZodObject<{
81701
81668
  id: number;
81702
81669
  }[] | undefined;
81703
81670
  is_simulator?: boolean | undefined;
81704
- averageFuelConsumption?: string | null | undefined;
81705
- weightUnitString?: string | undefined;
81706
- fuelUnitString?: string | undefined;
81707
81671
  isoCountryCodeFromRegistration?: string | undefined;
81708
81672
  registrationWithoutSpecialChars?: string | null | undefined;
81709
81673
  equipmentCodes?: string[] | null | undefined;
@@ -81730,6 +81694,8 @@ declare const courseEnrollmentSchema: z.ZodObject<{
81730
81694
  max_takeoff_mass?: string | undefined;
81731
81695
  max_speed?: string | undefined;
81732
81696
  max_range?: string | undefined;
81697
+ cruise_fuel_flow?: number | null | undefined;
81698
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
81733
81699
  has_pre_paid_package?: boolean | undefined;
81734
81700
  logging_required_from?: string | undefined;
81735
81701
  fee_id?: number | null | undefined;
@@ -82500,9 +82466,6 @@ declare const courseEnrollmentSchema: z.ZodObject<{
82500
82466
  id: number;
82501
82467
  }[] | undefined;
82502
82468
  is_simulator?: boolean | undefined;
82503
- averageFuelConsumption?: string | null | undefined;
82504
- weightUnitString?: string | undefined;
82505
- fuelUnitString?: string | undefined;
82506
82469
  isoCountryCodeFromRegistration?: string | undefined;
82507
82470
  registrationWithoutSpecialChars?: string | null | undefined;
82508
82471
  equipmentCodes?: string[] | null | undefined;
@@ -82529,6 +82492,8 @@ declare const courseEnrollmentSchema: z.ZodObject<{
82529
82492
  max_takeoff_mass?: string | undefined;
82530
82493
  max_speed?: string | undefined;
82531
82494
  max_range?: string | undefined;
82495
+ cruise_fuel_flow?: number | null | undefined;
82496
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
82532
82497
  has_pre_paid_package?: boolean | undefined;
82533
82498
  logging_required_from?: string | undefined;
82534
82499
  fee_id?: number | null | undefined;
@@ -83619,9 +83584,6 @@ declare const courseEnrollmentSchema: z.ZodObject<{
83619
83584
  id: number;
83620
83585
  }[] | undefined;
83621
83586
  is_simulator?: boolean | undefined;
83622
- averageFuelConsumption?: string | null | undefined;
83623
- weightUnitString?: string | undefined;
83624
- fuelUnitString?: string | undefined;
83625
83587
  isoCountryCodeFromRegistration?: string | undefined;
83626
83588
  registrationWithoutSpecialChars?: string | null | undefined;
83627
83589
  equipmentCodes?: string[] | null | undefined;
@@ -83648,6 +83610,8 @@ declare const courseEnrollmentSchema: z.ZodObject<{
83648
83610
  max_takeoff_mass?: string | undefined;
83649
83611
  max_speed?: string | undefined;
83650
83612
  max_range?: string | undefined;
83613
+ cruise_fuel_flow?: number | null | undefined;
83614
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
83651
83615
  has_pre_paid_package?: boolean | undefined;
83652
83616
  logging_required_from?: string | undefined;
83653
83617
  fee_id?: number | null | undefined;
@@ -84418,9 +84382,6 @@ declare const courseEnrollmentSchema: z.ZodObject<{
84418
84382
  id: number;
84419
84383
  }[] | undefined;
84420
84384
  is_simulator?: boolean | undefined;
84421
- averageFuelConsumption?: string | null | undefined;
84422
- weightUnitString?: string | undefined;
84423
- fuelUnitString?: string | undefined;
84424
84385
  isoCountryCodeFromRegistration?: string | undefined;
84425
84386
  registrationWithoutSpecialChars?: string | null | undefined;
84426
84387
  equipmentCodes?: string[] | null | undefined;
@@ -84447,6 +84408,8 @@ declare const courseEnrollmentSchema: z.ZodObject<{
84447
84408
  max_takeoff_mass?: string | undefined;
84448
84409
  max_speed?: string | undefined;
84449
84410
  max_range?: string | undefined;
84411
+ cruise_fuel_flow?: number | null | undefined;
84412
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
84450
84413
  has_pre_paid_package?: boolean | undefined;
84451
84414
  logging_required_from?: string | undefined;
84452
84415
  fee_id?: number | null | undefined;
@@ -86561,9 +86524,6 @@ declare const courseEnrollmentSchema: z.ZodObject<{
86561
86524
  id: number;
86562
86525
  }[] | undefined;
86563
86526
  is_simulator?: boolean | undefined;
86564
- averageFuelConsumption?: string | null | undefined;
86565
- weightUnitString?: string | undefined;
86566
- fuelUnitString?: string | undefined;
86567
86527
  isoCountryCodeFromRegistration?: string | undefined;
86568
86528
  registrationWithoutSpecialChars?: string | null | undefined;
86569
86529
  equipmentCodes?: string[] | null | undefined;
@@ -86590,6 +86550,8 @@ declare const courseEnrollmentSchema: z.ZodObject<{
86590
86550
  max_takeoff_mass?: string | undefined;
86591
86551
  max_speed?: string | undefined;
86592
86552
  max_range?: string | undefined;
86553
+ cruise_fuel_flow?: number | null | undefined;
86554
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
86593
86555
  has_pre_paid_package?: boolean | undefined;
86594
86556
  logging_required_from?: string | undefined;
86595
86557
  fee_id?: number | null | undefined;
@@ -87360,9 +87322,6 @@ declare const courseEnrollmentSchema: z.ZodObject<{
87360
87322
  id: number;
87361
87323
  }[] | undefined;
87362
87324
  is_simulator?: boolean | undefined;
87363
- averageFuelConsumption?: string | null | undefined;
87364
- weightUnitString?: string | undefined;
87365
- fuelUnitString?: string | undefined;
87366
87325
  isoCountryCodeFromRegistration?: string | undefined;
87367
87326
  registrationWithoutSpecialChars?: string | null | undefined;
87368
87327
  equipmentCodes?: string[] | null | undefined;
@@ -87389,6 +87348,8 @@ declare const courseEnrollmentSchema: z.ZodObject<{
87389
87348
  max_takeoff_mass?: string | undefined;
87390
87349
  max_speed?: string | undefined;
87391
87350
  max_range?: string | undefined;
87351
+ cruise_fuel_flow?: number | null | undefined;
87352
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
87392
87353
  has_pre_paid_package?: boolean | undefined;
87393
87354
  logging_required_from?: string | undefined;
87394
87355
  fee_id?: number | null | undefined;
@@ -89498,9 +89459,6 @@ declare const courseEnrollmentSchema: z.ZodObject<{
89498
89459
  id: number;
89499
89460
  }[] | undefined;
89500
89461
  is_simulator?: boolean | undefined;
89501
- averageFuelConsumption?: string | null | undefined;
89502
- weightUnitString?: string | undefined;
89503
- fuelUnitString?: string | undefined;
89504
89462
  isoCountryCodeFromRegistration?: string | undefined;
89505
89463
  registrationWithoutSpecialChars?: string | null | undefined;
89506
89464
  equipmentCodes?: string[] | null | undefined;
@@ -89527,6 +89485,8 @@ declare const courseEnrollmentSchema: z.ZodObject<{
89527
89485
  max_takeoff_mass?: string | undefined;
89528
89486
  max_speed?: string | undefined;
89529
89487
  max_range?: string | undefined;
89488
+ cruise_fuel_flow?: number | null | undefined;
89489
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
89530
89490
  has_pre_paid_package?: boolean | undefined;
89531
89491
  logging_required_from?: string | undefined;
89532
89492
  fee_id?: number | null | undefined;
@@ -90297,9 +90257,6 @@ declare const courseEnrollmentSchema: z.ZodObject<{
90297
90257
  id: number;
90298
90258
  }[] | undefined;
90299
90259
  is_simulator?: boolean | undefined;
90300
- averageFuelConsumption?: string | null | undefined;
90301
- weightUnitString?: string | undefined;
90302
- fuelUnitString?: string | undefined;
90303
90260
  isoCountryCodeFromRegistration?: string | undefined;
90304
90261
  registrationWithoutSpecialChars?: string | null | undefined;
90305
90262
  equipmentCodes?: string[] | null | undefined;
@@ -90326,6 +90283,8 @@ declare const courseEnrollmentSchema: z.ZodObject<{
90326
90283
  max_takeoff_mass?: string | undefined;
90327
90284
  max_speed?: string | undefined;
90328
90285
  max_range?: string | undefined;
90286
+ cruise_fuel_flow?: number | null | undefined;
90287
+ cruise_fuel_flow_unit?: "l" | "usgal" | "kg" | "lb" | null | undefined;
90329
90288
  has_pre_paid_package?: boolean | undefined;
90330
90289
  logging_required_from?: string | undefined;
90331
90290
  fee_id?: number | null | undefined;
@@ -114525,4 +114484,4 @@ declare const createSyllabusFromTemplateResultSchema: z.ZodObject<{
114525
114484
  }>;
114526
114485
  type CreateSyllabusFromTemplateResult = z.infer<typeof createSyllabusFromTemplateResultSchema>;
114527
114486
 
114528
- export { type Signature as $, type AttachSyllabusElementForm as A, BaseModel as B, type CourseCheckSyllabus as C, type GradingScalePoint as D, type EnrollmentTrainingElement as E, type FieldLabel as F, type GradeHistoryItem as G, type ImpersonationState as H, type ImpersonationParticipant as I, type InvalidateTrainingRecordResponse as J, ReorderSyllabusElementItemSchema as K, type RequiredForm as L, RequiredFormSchema as M, type RequiredFormVia as N, type RequiredFormViaCrew as O, RequiredFormViaCrewSchema as P, RequiredFormViaSchema as Q, type ReorderSyllabusElementItem as R, type ReviewFormSubmissionInput as S, type SchemaField as T, SchemaFieldSchema as U, type SchemaSection as V, SchemaSectionSchema as W, type ShowWhen as X, ShowWhenSchema as Y, type SignOffTrainingElementForm as Z, SignOffTrainingElementFormSchema as _, AttachSyllabusElementFormSchema as a, courseSchema as a$, SignatureSchema as a0, type StoreSyllabusForm as a1, StoreSyllabusFormSchema as a2, type SubmissionFile as a3, SubmissionFileSchema as a4, type Syllabus as a5, type SyllabusElement as a6, type SyllabusElementMutationResult as a7, type SyllabusKind as a8, SyllabusKindEnum as a9, type UsedByCourse as aA, activitySchema as aB, addressSchema as aC, aircraftPositionSchema as aD, aircraftRatingSchema as aE, airplaneIssueSchema as aF, airplaneIssueSeverityEnum as aG, airplaneIssueStatusEnum as aH, airplanePermissionSchema as aI, airplaneSchema as aJ, airplaneShareInviteSchema as aK, airportSchema as aL, alertSchema as aM, allowedDocumentTypeSchema as aN, approachTypeSchema as aO, availSchema as aP, baseMembershipSchema as aQ, billingProfileSchema as aR, bookingSchema as aS, bookingWaypointSchema as aT, commentSchema as aU, companySchema as aV, contactAttributeSchema as aW, courseCheckSyllabusSchema as aX, courseEnrollmentMetricsSchema as aY, courseEnrollmentSchema as aZ, courseFeeSchema as a_, type SyllabusRolloutResult as aa, type SyllabusRolloutResultItem as ab, type SyllabusRolloutSkippedItem as ac, type TemplateSchema as ad, TemplateSchemaSchema as ae, type TrainingElement as af, type TrainingElementForm as ag, TrainingElementFormSchema as ah, type TrainingElementKind as ai, TrainingElementKindEnum as aj, type TrainingRecord as ak, type TrainingRecordEntry as al, type TrainingRecordEntryInput as am, type TrainingRecordResult as an, TrainingRecordResultEnum as ao, type TrainingRecordStatus as ap, TrainingRecordStatusEnum as aq, type TrainingSignature as ar, type TrainingTemplatePack as as, type UpdateFormTemplateInput as at, type UpdateSyllabusElementForm as au, UpdateSyllabusElementFormSchema as av, type UpdateSyllabusForm as aw, UpdateSyllabusFormSchema as ax, type UpsertTrainingRecordForm as ay, UpsertTrainingRecordFormSchema as az, type CreateFormSubmissionInput as b, zContactDTO as b$, createSyllabusFromTemplateResultSchema as b0, documentComplianceStatus as b1, documentRequirement as b2, documentRequirementGroup as b3, documentRequirementGroupAssignment as b4, documentSchema as b5, documentShareSchema as b6, documentType as b7, enrollmentTrainingElementSchema as b8, eventSchema as b9, priceSchema as bA, qualificationSchema as bB, recurringFlightSchema as bC, roleSchema as bD, runwaySchema as bE, scheduledFlightSchema as bF, settingSchema as bG, specialFlightSchema as bH, syllabusElementMutationResultSchema as bI, syllabusElementSchema as bJ, syllabusRolloutResultItemSchema as bK, syllabusRolloutResultSchema as bL, syllabusRolloutSkippedItemSchema as bM, syllabusSchema as bN, tagSchema as bO, ticketSchema as bP, trainingElementSchema as bQ, trainingRecordEntryInputSchema as bR, trainingRecordEntrySchema as bS, trainingRecordSchema as bT, trainingSignatureSchema as bU, trainingTemplatePackSchema as bV, usedByCourseSchema as bW, userAircraftRatingSchema as bX, userQualificationSchema as bY, userSchema as bZ, waypointSchema as b_, expenseItemSchema as ba, expenseSchema as bb, extendedAirplaneSchema as bc, feeCategoryOptionsSchema as bd, feeSchema as be, flightLogSchema as bf, gradeHistoryItemSchema as bg, gradingScalePointSchema as bh, gradingScaleSchema as bi, impersonationParticipantSchema as bj, impersonationStateSchema as bk, invalidateTrainingRecordResponseSchema as bl, invoiceSchema as bm, landingFeeSchema as bn, landingSchema as bo, maintenanceEventEstimationSchema as bp, maintenanceEventSchema as bq, maintenanceStatusSchema as br, mediaCollection as bs, mediaSchema as bt, membershipSchema as bu, membershipSignupSchema as bv, postSchema as bw, postSubjectSchema as bx, prePaidPackageAssignmentSchema as by, prePaidPackageSchema as bz, type CreateFormTemplateAssignmentInput as c, zMoneyObject as c0, zNetGross as c1, zNullableBool as c2, type CreateFormTemplateInput as d, type CreateSyllabusFromTemplateForm as e, CreateSyllabusFromTemplateFormSchema as f, type CreateSyllabusFromTemplateResult as g, type EnrollmentTrainingStatus as h, EnrollmentTrainingStatusEnum as i, FieldLabelSchema as j, FormFieldType as k, type FormSubmission as l, FormSubmissionSchema as m, type FormSubmissionShare as n, type FormSubmissionShareBase as o, FormSubmissionShareBaseSchema as p, FormSubmissionShareSchema as q, FormSubmissionSource as r, FormSubmissionStatus as s, type FormTemplate as t, type FormTemplateAssignment as u, FormTemplateAssignmentSchema as v, FormTemplateSchema as w, type GradingScale as x, type GradingScaleForm as y, GradingScaleFormSchema as z };
114487
+ export { SignOffTrainingElementFormSchema as $, type AttachSyllabusElementForm as A, BaseModel as B, type CourseCheckSyllabus as C, GradingScaleFormSchema as D, type EnrollmentTrainingElement as E, type FieldLabel as F, type GradeHistoryItem as G, type GradingScalePoint as H, type ImpersonationParticipant as I, type ImpersonationState as J, type InvalidateTrainingRecordResponse as K, ReorderSyllabusElementItemSchema as L, type RequiredForm as M, RequiredFormSchema as N, type RequiredFormVia as O, type RequiredFormViaCrew as P, RequiredFormViaCrewSchema as Q, type ReorderSyllabusElementItem as R, RequiredFormViaSchema as S, type ReviewFormSubmissionInput as T, type SchemaField as U, SchemaFieldSchema as V, type SchemaSection as W, SchemaSectionSchema as X, type ShowWhen as Y, ShowWhenSchema as Z, type SignOffTrainingElementForm as _, AttachSyllabusElementFormSchema as a, courseFeeSchema as a$, type Signature as a0, SignatureSchema as a1, type StoreSyllabusForm as a2, StoreSyllabusFormSchema as a3, type SubmissionFile as a4, SubmissionFileSchema as a5, type Syllabus as a6, type SyllabusElement as a7, type SyllabusElementMutationResult as a8, type SyllabusKind as a9, UpsertTrainingRecordFormSchema as aA, type UsedByCourse as aB, activitySchema as aC, addressSchema as aD, aircraftPositionSchema as aE, aircraftRatingSchema as aF, airplaneIssueSchema as aG, airplaneIssueSeverityEnum as aH, airplaneIssueStatusEnum as aI, airplanePermissionSchema as aJ, airplaneSchema as aK, airplaneShareInviteSchema as aL, airportSchema as aM, alertSchema as aN, allowedDocumentTypeSchema as aO, approachTypeSchema as aP, availSchema as aQ, baseMembershipSchema as aR, billingProfileSchema as aS, bookingSchema as aT, bookingWaypointSchema as aU, commentSchema as aV, companySchema as aW, contactAttributeSchema as aX, courseCheckSyllabusSchema as aY, courseEnrollmentMetricsSchema as aZ, courseEnrollmentSchema as a_, SyllabusKindEnum as aa, type SyllabusRolloutResult as ab, type SyllabusRolloutResultItem as ac, type SyllabusRolloutSkippedItem as ad, type TemplateSchema as ae, TemplateSchemaSchema as af, type TrainingElement as ag, type TrainingElementForm as ah, TrainingElementFormSchema as ai, type TrainingElementKind as aj, TrainingElementKindEnum as ak, type TrainingRecord as al, type TrainingRecordEntry as am, type TrainingRecordEntryInput as an, type TrainingRecordResult as ao, TrainingRecordResultEnum as ap, type TrainingRecordStatus as aq, TrainingRecordStatusEnum as ar, type TrainingSignature as as, type TrainingTemplatePack as at, type UpdateFormTemplateInput as au, type UpdateSyllabusElementForm as av, UpdateSyllabusElementFormSchema as aw, type UpdateSyllabusForm as ax, UpdateSyllabusFormSchema as ay, type UpsertTrainingRecordForm as az, type CreateFormSubmissionInput as b, userSchema as b$, courseSchema as b0, createSyllabusFromTemplateResultSchema as b1, documentComplianceStatus as b2, documentRequirement as b3, documentRequirementGroup as b4, documentRequirementGroupAssignment as b5, documentSchema as b6, documentShareSchema as b7, documentType as b8, enrollmentTrainingElementSchema as b9, prePaidPackageAssignmentSchema as bA, prePaidPackageSchema as bB, priceSchema as bC, qualificationSchema as bD, recurringFlightSchema as bE, roleSchema as bF, runwaySchema as bG, scheduledFlightSchema as bH, settingSchema as bI, specialFlightSchema as bJ, syllabusElementMutationResultSchema as bK, syllabusElementSchema as bL, syllabusRolloutResultItemSchema as bM, syllabusRolloutResultSchema as bN, syllabusRolloutSkippedItemSchema as bO, syllabusSchema as bP, tagSchema as bQ, ticketSchema as bR, trainingElementSchema as bS, trainingRecordEntryInputSchema as bT, trainingRecordEntrySchema as bU, trainingRecordSchema as bV, trainingSignatureSchema as bW, trainingTemplatePackSchema as bX, usedByCourseSchema as bY, userAircraftRatingSchema as bZ, userQualificationSchema as b_, eventSchema as ba, expenseItemSchema as bb, expenseSchema as bc, extendedAirplaneSchema as bd, feeCategoryOptionsSchema as be, feeSchema as bf, flightLogSchema as bg, fuelUnitSchema as bh, gradeHistoryItemSchema as bi, gradingScalePointSchema as bj, gradingScaleSchema as bk, impersonationParticipantSchema as bl, impersonationStateSchema as bm, invalidateTrainingRecordResponseSchema as bn, invoiceSchema as bo, landingFeeSchema as bp, landingSchema as bq, maintenanceEventEstimationSchema as br, maintenanceEventSchema as bs, maintenanceStatusSchema as bt, mediaCollection as bu, mediaSchema as bv, membershipSchema as bw, membershipSignupSchema as bx, postSchema as by, postSubjectSchema as bz, type CreateFormTemplateAssignmentInput as c, waypointSchema as c0, zContactDTO as c1, zMoneyObject as c2, zNetGross as c3, zNullableBool as c4, type CreateFormTemplateInput as d, type CreateSyllabusFromTemplateForm as e, CreateSyllabusFromTemplateFormSchema as f, type CreateSyllabusFromTemplateResult as g, type EnrollmentTrainingStatus as h, EnrollmentTrainingStatusEnum as i, FieldLabelSchema as j, FormFieldType as k, type FormSubmission as l, FormSubmissionSchema as m, type FormSubmissionShare as n, type FormSubmissionShareBase as o, FormSubmissionShareBaseSchema as p, FormSubmissionShareSchema as q, FormSubmissionSource as r, FormSubmissionStatus as s, type FormTemplate as t, type FormTemplateAssignment as u, FormTemplateAssignmentSchema as v, FormTemplateSchema as w, type FuelUnit as x, type GradingScale as y, type GradingScaleForm as z };