@aya-flights/ngx-goox-lib 2.19.102 → 2.19.105
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/fesm2022/aya-flights-ngx-goox-lib.mjs +5492 -5506
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +7 -7
- package/lib/Airplane.d.ts +4 -4
- package/lib/AirplanesEndPoint.d.ts +6 -6
- package/lib/BookingPlan.d.ts +1 -1
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/Campaign.d.ts +1 -1
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/Certificate.d.ts +1 -1
- package/lib/Contact.d.ts +3 -3
- package/lib/ContactsEndPoint.d.ts +6 -6
- package/lib/Flight.d.ts +8 -11
- package/lib/FlightPassenger.d.ts +1 -1
- package/lib/FlightPlan.d.ts +1 -1
- package/lib/FlightRisk.d.ts +6 -6
- package/lib/FlightsEndPoint.d.ts +5 -5
- package/lib/FlightsFilter.d.ts +1 -1
- package/lib/Group.d.ts +1 -1
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/LogBookRecord.d.ts +1 -1
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/Maintenance.d.ts +2 -2
- package/lib/MyBookingsEndPoint.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +4 -4
- package/lib/Permission.d.ts +1 -1
- package/lib/PostFlightInfo.d.ts +3 -5
- package/lib/PreFlightInfo.d.ts +2 -4
- package/lib/RiskAssessment.d.ts +2 -2
- package/lib/SystemConfig.d.ts +1 -1
- package/lib/TimeSeries.d.ts +1 -1
- package/lib/UserEndPoint.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +2 -2
- package/lib/index.d.ts +119 -119
- package/lib/services.export.d.ts +23 -23
- package/package.json +1 -1
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightStatusCode } from '.';
|
|
4
|
-
import { FlightStateCode } from '.';
|
|
5
|
-
import { Flight } from '.';
|
|
6
|
-
import { FlightTypeCode } from '.';
|
|
7
|
-
import { Credit } from '.';
|
|
8
|
-
import { StringKeyValue } from '.';
|
|
9
3
|
import { AccountStatusCode } from '.';
|
|
10
|
-
import {
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
|
+
import { Flight } from '.';
|
|
11
6
|
import { Document } from '.';
|
|
12
7
|
import { Account } from '.';
|
|
8
|
+
import { FlightStateCode } from '.';
|
|
9
|
+
import { FlightPurposeCode } from '.';
|
|
10
|
+
import { Credit } from '.';
|
|
11
|
+
import { FlightStatusCode } from '.';
|
|
12
|
+
import { FlightTypeCode } from '.';
|
|
13
13
|
import * as i0 from "@angular/core";
|
|
14
14
|
export declare class AccountsEndPoint {
|
|
15
15
|
private config;
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { AirplaneValidationFlag } from '.';
|
|
2
|
-
import { Engine } from '.';
|
|
3
1
|
import { Magneto } from '.';
|
|
4
|
-
import { Fuel } from '.';
|
|
5
|
-
import { BaseEntityEx } from '.';
|
|
6
2
|
import { ColumnDef } from '.';
|
|
7
3
|
import { TypeRatingFlag } from '.';
|
|
8
4
|
import { AirplaneStatusCode } from '.';
|
|
9
5
|
import { Propeller } from '.';
|
|
6
|
+
import { Fuel } from '.';
|
|
7
|
+
import { BaseEntityEx } from '.';
|
|
8
|
+
import { AirplaneValidationFlag } from '.';
|
|
9
|
+
import { Engine } from '.';
|
|
10
10
|
export declare class Airplane extends BaseEntityEx {
|
|
11
11
|
name: string;
|
|
12
12
|
description: string;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Airplane } from '.';
|
|
4
|
+
import { FlightTypeCode } from '.';
|
|
3
5
|
import { FlightStatusCode } from '.';
|
|
4
|
-
import { StatusCode } from '.';
|
|
5
6
|
import { FlightStateCode } from '.';
|
|
7
|
+
import { FlightPurposeCode } from '.';
|
|
6
8
|
import { Flight } from '.';
|
|
7
|
-
import {
|
|
8
|
-
import { MaintenanceActionCode } from '.';
|
|
9
|
+
import { StatusCode } from '.';
|
|
9
10
|
import { Maintenance } from '.';
|
|
11
|
+
import { MaintenanceActionCode } from '.';
|
|
10
12
|
import { AirplaneStatusCode } from '.';
|
|
11
13
|
import { StringKeyValue } from '.';
|
|
12
|
-
import {
|
|
13
|
-
import { Airplane } from '.';
|
|
14
|
-
import { FlightTypeCode } from '.';
|
|
14
|
+
import { Document } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
private config;
|
package/lib/BookingPlan.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { BookingTypeFlag } from '.';
|
|
3
2
|
import { FlightPurposeCode } from '.';
|
|
4
3
|
import { FlightStatusCode } from '.';
|
|
5
4
|
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
6
|
export declare class BookingPlan extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
package/lib/BookingSlots.d.ts
CHANGED
package/lib/Campaign.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { CampaignTypeCode } from '.';
|
|
2
3
|
import { CampaignStatusCode } from '.';
|
|
3
4
|
import { CurrencyCode } from '.';
|
|
4
5
|
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
6
|
export declare class Campaign extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
type: CampaignTypeCode;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Campaign } from '.';
|
|
4
3
|
import { StringKeyValue } from '.';
|
|
4
|
+
import { Campaign } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CampaignsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Certificate.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { ValidationFlag } from '.';
|
|
3
2
|
import { StatusCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Certificate extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
type: ValidationFlag;
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
import { AccountStatusCode } from '.';
|
|
1
2
|
import { Address } from '.';
|
|
2
3
|
import { TypeRatingFlag } from '.';
|
|
4
|
+
import { LicenseKindFlag } from '.';
|
|
3
5
|
import { MedicalCertClassCode } from '.';
|
|
4
6
|
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
|
-
import { AccountStatusCode } from '.';
|
|
7
|
-
import { LicenseKindFlag } from '.';
|
|
8
7
|
import { ValidationFlag } from '.';
|
|
9
8
|
import { FlightCategoryCode } from '.';
|
|
9
|
+
import { ColumnDef } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
11
11
|
accountId: string;
|
|
12
12
|
name: string;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Contact } from '.';
|
|
3
4
|
import { StatusCode } from '.';
|
|
4
|
-
import {
|
|
5
|
+
import { FlightTypeCode } from '.';
|
|
6
|
+
import { FlightStateCode } from '.';
|
|
5
7
|
import { FlightPurposeCode } from '.';
|
|
6
|
-
import { MessageConfirm } from '.';
|
|
7
|
-
import { Contact } from '.';
|
|
8
8
|
import { StringKeyValue } from '.';
|
|
9
|
-
import { FlightTypeCode } from '.';
|
|
10
9
|
import { FlightStatusCode } from '.';
|
|
11
|
-
import { FlightStateCode } from '.';
|
|
12
|
-
import { Flight } from '.';
|
|
13
10
|
import { Document } from '.';
|
|
11
|
+
import { Certificate } from '.';
|
|
12
|
+
import { Flight } from '.';
|
|
13
|
+
import { MessageConfirm } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
|
16
16
|
private config;
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,18 +1,17 @@
|
|
|
1
|
+
import { Lesson } from '.';
|
|
1
2
|
import { FlightTypeCode } from '.';
|
|
2
3
|
import { FlightStateCode } from '.';
|
|
3
|
-
import {
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
|
-
import { OnBoard } from '.';
|
|
4
|
+
import { BillingStatusCode } from '.';
|
|
6
5
|
import { RiskAssessment } from '.';
|
|
7
|
-
import { BaseEntityEx } from '.';
|
|
8
|
-
import { FlightPurposeCode } from '.';
|
|
9
|
-
import { FlightClassCode } from '.';
|
|
10
6
|
import { FlightStatusCode } from '.';
|
|
11
|
-
import { BillingStatusCode } from '.';
|
|
12
7
|
import { FlightCategoryCode } from '.';
|
|
13
|
-
import { ReFuel } from '.';
|
|
14
|
-
import { Lesson } from '.';
|
|
15
8
|
import { TOLData } from '.';
|
|
9
|
+
import { BaseEntityEx } from '.';
|
|
10
|
+
import { FlightPurposeCode } from '.';
|
|
11
|
+
import { OnBoard } from '.';
|
|
12
|
+
import { Billing } from '.';
|
|
13
|
+
import { ColumnDef } from '.';
|
|
14
|
+
import { FlightClassCode } from '.';
|
|
16
15
|
export declare class Flight extends BaseEntityEx {
|
|
17
16
|
name: string;
|
|
18
17
|
description: string;
|
|
@@ -43,8 +42,6 @@ export declare class Flight extends BaseEntityEx {
|
|
|
43
42
|
hasFlightPlan: boolean;
|
|
44
43
|
preFlightNotes: string;
|
|
45
44
|
operationNotes: string;
|
|
46
|
-
fuelStatus: ReFuel;
|
|
47
|
-
oilStatus: ReFuel;
|
|
48
45
|
fuelLevel: number;
|
|
49
46
|
oilLevel: number;
|
|
50
47
|
lesson: Lesson;
|
package/lib/FlightPassenger.d.ts
CHANGED
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
1
2
|
import { ColumnDef } from '.';
|
|
2
3
|
import { FlightTypeCode } from '.';
|
|
3
4
|
import { FlightStatusCode } from '.';
|
|
4
5
|
import { FlightStateCode } from '.';
|
|
5
6
|
import { FlightPurposeCode } from '.';
|
|
6
7
|
import { TOLData } from '.';
|
|
7
|
-
import { BaseEntityEx } from '.';
|
|
8
8
|
export declare class FlightPlan extends BaseEntityEx {
|
|
9
9
|
name: string;
|
|
10
10
|
description: string;
|
package/lib/FlightRisk.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { DepartureRisks } from '.';
|
|
1
|
+
import { DestinationRisks } from '.';
|
|
3
2
|
import { TripRisks } from '.';
|
|
4
3
|
import { WeatherRisks } from '.';
|
|
5
|
-
import { BaseEntityEx } from '.';
|
|
6
|
-
import { PilotQualificationsRisks } from '.';
|
|
7
|
-
import { DestinationRisks } from '.';
|
|
8
4
|
import { SpecialRisks } from '.';
|
|
9
|
-
import { Mitigation } from '.';
|
|
10
5
|
import { ColumnDef } from '.';
|
|
6
|
+
import { DepartureRisks } from '.';
|
|
7
|
+
import { CrewDutyDayRisks } from '.';
|
|
8
|
+
import { Mitigation } from '.';
|
|
9
|
+
import { BaseEntityEx } from '.';
|
|
10
|
+
import { PilotQualificationsRisks } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/FlightsEndPoint.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
3
|
+
import { AnyKeyValue } from '.';
|
|
4
4
|
import { BillingStatusCode } from '.';
|
|
5
5
|
import { Contact } from '.';
|
|
6
|
-
import {
|
|
7
|
-
import { AnyKeyValue } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
8
7
|
import { FlightTypeCode } from '.';
|
|
9
|
-
import { TimeSeries } from '.';
|
|
10
8
|
import { FlightStatusCode } from '.';
|
|
11
9
|
import { FlightPurposeCode } from '.';
|
|
12
|
-
import { FlightPlan } from '.';
|
|
13
10
|
import { PreFlightInfo } from '.';
|
|
11
|
+
import { FlightPlan } from '.';
|
|
12
|
+
import { FlightTicket } from '.';
|
|
14
13
|
import { PostFlightInfo } from '.';
|
|
14
|
+
import { TimeSeries } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class FlightsEndPoint {
|
|
17
17
|
private config;
|
package/lib/FlightsFilter.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { FlightPurposeCode } from '.';
|
|
2
1
|
import { TimeFrame } from '.';
|
|
3
2
|
import { FlightTypeCode } from '.';
|
|
4
3
|
import { FlightStatusCode } from '.';
|
|
5
4
|
import { BillingStatusCode } from '.';
|
|
5
|
+
import { FlightPurposeCode } from '.';
|
|
6
6
|
export declare class FlightsFilter {
|
|
7
7
|
search: string;
|
|
8
8
|
period: TimeFrame;
|
package/lib/Group.d.ts
CHANGED
package/lib/GroupsEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Group } from '.';
|
|
4
3
|
import { StringKeyValue } from '.';
|
|
4
|
+
import { Group } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class GroupsEndPoint {
|
|
7
7
|
private config;
|
package/lib/LogBookRecord.d.ts
CHANGED
package/lib/LookupGroup.d.ts
CHANGED
package/lib/Maintenance.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { StatusCode } from '.';
|
|
2
|
-
import { MaintenanceActionCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { StatusCode } from '.';
|
|
4
|
+
import { MaintenanceActionCode } from '.';
|
|
5
5
|
export declare class Maintenance extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { BookingStatusCode } from '.';
|
|
3
4
|
import { BookingTypeFlag } from '.';
|
|
4
5
|
import { Lookup } from '.';
|
|
5
6
|
import { BookingSlot } from '.';
|
|
6
7
|
import { Booking } from '.';
|
|
7
|
-
import { BookingStatusCode } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class MyBookingsEndPoint {
|
|
10
10
|
private config;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
3
|
+
import { PostFlightInfo } from '.';
|
|
4
|
+
import { PreFlightInfo } from '.';
|
|
4
5
|
import { FlightTypeCode } from '.';
|
|
6
|
+
import { FlightStatusCode } from '.';
|
|
5
7
|
import { FlightPlan } from '.';
|
|
6
8
|
import { InstructionTypeCode } from '.';
|
|
7
|
-
import { PreFlightInfo } from '.';
|
|
8
|
-
import { PostFlightInfo } from '.';
|
|
9
|
-
import { FlightStatusCode } from '.';
|
|
10
9
|
import { Syllabus } from '.';
|
|
10
|
+
import { Flight } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class MyFlightsEndPoint {
|
|
13
13
|
private config;
|
package/lib/Permission.d.ts
CHANGED
package/lib/PostFlightInfo.d.ts
CHANGED
|
@@ -21,13 +21,11 @@ export declare class PostFlightInfo {
|
|
|
21
21
|
captain: string;
|
|
22
22
|
firstOfficer: string;
|
|
23
23
|
destination: string;
|
|
24
|
+
actualFuelOnBoard: number;
|
|
25
|
+
actualOilOnBoard: number;
|
|
24
26
|
singleEngineHours: number;
|
|
25
27
|
multiEngineHours: number;
|
|
26
28
|
flightHoursLastMonth: number;
|
|
27
|
-
refuelBeforeFlight: number;
|
|
28
|
-
refuelAfterFlight: number;
|
|
29
|
-
refilledOilBeforeFlight: number;
|
|
30
|
-
refillOilAfterFlight: number;
|
|
31
29
|
lessonNumber: number;
|
|
32
30
|
lessonSubject: string;
|
|
33
31
|
lessonFlightCounter: number;
|
|
@@ -38,5 +36,5 @@ export declare class PostFlightInfo {
|
|
|
38
36
|
lessonComments: string;
|
|
39
37
|
description: string;
|
|
40
38
|
reportedBy: string;
|
|
41
|
-
constructor(flightId?: string, flightNumber?: number, airplane?: string, hoursToInspection?: number, purpose?: FlightPurposeCode, type?: FlightTypeCode, takeoffPlannedTime?: number, takeoffActualTime?: number, takeoffField?: string, takeoffHobbs?: number, takeoffTach?: number, landingPlannedTime?: number, landingActualTime?: number, landingField?: string, landingHobbs?: number, landingTach?: number, captain?: string, firstOfficer?: string, destination?: string,
|
|
39
|
+
constructor(flightId?: string, flightNumber?: number, airplane?: string, hoursToInspection?: number, purpose?: FlightPurposeCode, type?: FlightTypeCode, takeoffPlannedTime?: number, takeoffActualTime?: number, takeoffField?: string, takeoffHobbs?: number, takeoffTach?: number, landingPlannedTime?: number, landingActualTime?: number, landingField?: string, landingHobbs?: number, landingTach?: number, captain?: string, firstOfficer?: string, destination?: string, actualFuelOnBoard?: number, actualOilOnBoard?: number, singleEngineHours?: number, multiEngineHours?: number, flightHoursLastMonth?: number, lessonNumber?: number, lessonSubject?: string, lessonFlightCounter?: number, lessonAssessment?: AssessmentCode, instructedFlightTime?: number, instrumentsFlightTime?: number, soloFlightTime?: number, lessonComments?: string, description?: string, reportedBy?: string);
|
|
42
40
|
}
|
package/lib/PreFlightInfo.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { FlightPurposeCode } from '.';
|
|
2
1
|
import { FlightTypeCode } from '.';
|
|
2
|
+
import { FlightPurposeCode } from '.';
|
|
3
3
|
export declare class PreFlightInfo {
|
|
4
4
|
flightId: string;
|
|
5
5
|
flightNumber: number;
|
|
@@ -21,9 +21,7 @@ export declare class PreFlightInfo {
|
|
|
21
21
|
estimatedFuelOnBoard: number;
|
|
22
22
|
estimatedEndurance: number;
|
|
23
23
|
actualFuelOnBoard: number;
|
|
24
|
-
refuelBeforeFlight: number;
|
|
25
24
|
actualOilOnBoard: number;
|
|
26
|
-
refillOilBeforeFlight: number;
|
|
27
25
|
passengers: string[];
|
|
28
26
|
crew: string[];
|
|
29
27
|
wbConfig: string;
|
|
@@ -35,5 +33,5 @@ export declare class PreFlightInfo {
|
|
|
35
33
|
hasCompetency: boolean;
|
|
36
34
|
hasFlightPlan: boolean;
|
|
37
35
|
reportedBy: string;
|
|
38
|
-
constructor(flightId?: string, flightNumber?: number, airplane?: string, hoursToInspection?: number, takeoffPlannedTime?: number, takeoffActualTime?: number, takeoffField?: string, landingField?: string, purpose?: FlightPurposeCode, purposeOt?: string, type?: FlightTypeCode, destination?: string, secondaryCallSign?: string, captain?: string, firstOfficer?: string, captainName?: string, firstOfficerName?: string, estimatedFuelOnBoard?: number, estimatedEndurance?: number, actualFuelOnBoard?: number,
|
|
36
|
+
constructor(flightId?: string, flightNumber?: number, airplane?: string, hoursToInspection?: number, takeoffPlannedTime?: number, takeoffActualTime?: number, takeoffField?: string, landingField?: string, purpose?: FlightPurposeCode, purposeOt?: string, type?: FlightTypeCode, destination?: string, secondaryCallSign?: string, captain?: string, firstOfficer?: string, captainName?: string, firstOfficerName?: string, estimatedFuelOnBoard?: number, estimatedEndurance?: number, actualFuelOnBoard?: number, actualOilOnBoard?: number, passengers?: string[], crew?: string[], wBConfig?: string, wBManual?: string, lessonSubject?: string, lessonFlightCounter?: number, preFlightNotes?: string, operationNotes?: string, hasCompetency?: boolean, hasFlightPlan?: boolean, reportedBy?: string);
|
|
39
37
|
}
|
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { WeatherRisks } from '.';
|
|
2
|
-
import { SpecialRisks } from '.';
|
|
3
1
|
import { Mitigation } from '.';
|
|
4
2
|
import { PilotQualificationsRisks } from '.';
|
|
5
3
|
import { CrewDutyDayRisks } from '.';
|
|
6
4
|
import { DepartureRisks } from '.';
|
|
7
5
|
import { DestinationRisks } from '.';
|
|
8
6
|
import { TripRisks } from '.';
|
|
7
|
+
import { WeatherRisks } from '.';
|
|
8
|
+
import { SpecialRisks } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/SystemConfig.d.ts
CHANGED
package/lib/TimeSeries.d.ts
CHANGED
package/lib/UserEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { User } from '.';
|
|
4
3
|
import { LoginParams } from '.';
|
|
4
|
+
import { User } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class UserEndPoint {
|
|
7
7
|
private config;
|
package/lib/UsersEndPoint.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { User } from '.';
|
|
4
|
-
import { UserTypeCode } from '.';
|
|
5
3
|
import { UserStatusCode } from '.';
|
|
6
4
|
import { StringKeyValue } from '.';
|
|
5
|
+
import { User } from '.';
|
|
6
|
+
import { UserTypeCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class UsersEndPoint {
|
|
9
9
|
private config;
|