@aya-flights/ngx-goox-lib 2.19.71 → 2.19.73
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 +4931 -4899
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +2 -2
- package/lib/AccountsEndPoint.d.ts +5 -5
- package/lib/Airplane.d.ts +3 -3
- package/lib/AirplanesEndPoint.d.ts +8 -8
- package/lib/BookingPlan.d.ts +1 -1
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +1 -1
- package/lib/CertificatesEndPoint.d.ts +1 -1
- package/lib/Contact.d.ts +9 -10
- package/lib/ContactsEndPoint.d.ts +6 -6
- package/lib/Credit.d.ts +1 -1
- package/lib/Flight.d.ts +10 -10
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +5 -5
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +6 -6
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/Group.d.ts +1 -1
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/Lead.d.ts +1 -1
- package/lib/LeadsEndPoint.d.ts +1 -1
- package/lib/Lesson.d.ts +2 -2
- package/lib/LicenseKindFlag.d.ts +1 -1
- package/lib/Lookup.d.ts +1 -1
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/MaintenancesEndPoint.d.ts +1 -1
- package/lib/MedicalCertClassCode.d.ts +9 -0
- package/lib/MyBookingsEndPoint.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +3 -3
- package/lib/PostFlightData.d.ts +1 -1
- package/lib/PostFlightInfo.d.ts +1 -1
- package/lib/Price.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +1 -1
- package/lib/Syllabus.d.ts +1 -1
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/SystemConfig.d.ts +1 -1
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/TokenData.d.ts +1 -1
- package/lib/UserEndPoint.d.ts +1 -1
- package/lib/UsersFilter.d.ts +1 -1
- package/lib/index.d.ts +116 -115
- package/lib/services.export.d.ts +20 -20
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { AccountTypeCode } from '.';
|
|
2
|
+
import { AccountStatusCode } from '.';
|
|
1
3
|
import { Address } from '.';
|
|
2
4
|
import { BaseEntityEx } from '.';
|
|
3
5
|
import { ColumnDef } from '.';
|
|
4
|
-
import { AccountTypeCode } from '.';
|
|
5
|
-
import { AccountStatusCode } from '.';
|
|
6
6
|
export declare class Account extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
enName: string;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { FlightPurposeCode } from '.';
|
|
4
|
+
import { Account } from '.';
|
|
5
|
+
import { FlightStatusCode } from '.';
|
|
6
|
+
import { FlightStateCode } from '.';
|
|
7
|
+
import { Document } from '.';
|
|
3
8
|
import { AccountStatusCode } from '.';
|
|
4
9
|
import { StringKeyValue } from '.';
|
|
5
10
|
import { FlightTypeCode } from '.';
|
|
6
|
-
import { FlightStateCode } from '.';
|
|
7
11
|
import { Flight } from '.';
|
|
8
|
-
import { Account } from '.';
|
|
9
|
-
import { FlightStatusCode } from '.';
|
|
10
12
|
import { Credit } from '.';
|
|
11
|
-
import { FlightPurposeCode } from '.';
|
|
12
|
-
import { Document } 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 { Fuel } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
1
3
|
import { TypeRatingFlag } from '.';
|
|
2
4
|
import { AirplaneStatusCode } from '.';
|
|
3
|
-
import { Engine } from '.';
|
|
4
5
|
import { AirplaneValidationFlag } from '.';
|
|
6
|
+
import { Engine } from '.';
|
|
5
7
|
import { Magneto } from '.';
|
|
6
8
|
import { Propeller } from '.';
|
|
7
|
-
import { Fuel } from '.';
|
|
8
9
|
import { BaseEntityEx } from '.';
|
|
9
|
-
import { ColumnDef } 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 {
|
|
3
|
+
import { AirplaneStatusCode } from '.';
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
4
5
|
import { StringKeyValue } from '.';
|
|
6
|
+
import { FlightPurposeCode } from '.';
|
|
7
|
+
import { Flight } from '.';
|
|
8
|
+
import { StatusCode } from '.';
|
|
5
9
|
import { FlightTypeCode } from '.';
|
|
6
|
-
import {
|
|
10
|
+
import { FlightStateCode } from '.';
|
|
11
|
+
import { Document } from '.';
|
|
7
12
|
import { Airplane } from '.';
|
|
8
13
|
import { MaintenanceActionCode } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import { Document } from '.';
|
|
11
|
-
import { StatusCode } from '.';
|
|
12
|
-
import { Flight } from '.';
|
|
13
|
-
import { AirplaneStatusCode } from '.';
|
|
14
|
-
import { FlightStateCode } from '.';
|
|
14
|
+
import { Maintenance } 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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { BookingSlot } from '.';
|
|
4
3
|
import { BookingSlots } from '.';
|
|
5
4
|
import { BookingSlotsSet } from '.';
|
|
5
|
+
import { BookingSlot } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class BookingSlotsEndPoint {
|
|
8
8
|
private config;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { TimeSeries } from '.';
|
|
3
4
|
import { BookingPlan } from '.';
|
|
4
5
|
import { Booking } from '.';
|
|
5
6
|
import { BookingStatusCode } from '.';
|
|
6
|
-
import { TimeSeries } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class BookingsEndPoint {
|
|
9
9
|
private config;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { StatusCode } from '.';
|
|
4
3
|
import { Certificate } from '.';
|
|
4
|
+
import { StatusCode } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CertificatesEndPoint {
|
|
7
7
|
private config;
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
1
|
+
import { ValidationFlag } from '.';
|
|
3
2
|
import { ColumnDef } from '.';
|
|
4
3
|
import { AccountStatusCode } from '.';
|
|
5
4
|
import { Address } from '.';
|
|
6
|
-
import { TypeRatingFlag } from '.';
|
|
7
5
|
import { LicenseKindFlag } from '.';
|
|
8
|
-
import {
|
|
6
|
+
import { BaseEntityEx } from '.';
|
|
7
|
+
import { TypeRatingFlag } from '.';
|
|
8
|
+
import { MedicalCertClassCode } from '.';
|
|
9
|
+
import { FlightCategoryCode } from '.';
|
|
9
10
|
export declare class Contact extends BaseEntityEx {
|
|
10
11
|
accountId: string;
|
|
11
12
|
name: string;
|
|
@@ -18,25 +19,23 @@ export declare class Contact extends BaseEntityEx {
|
|
|
18
19
|
mobile: string;
|
|
19
20
|
email: string;
|
|
20
21
|
primaryAddress: Address;
|
|
21
|
-
singleEngineHours: number;
|
|
22
|
-
dualEngineHours: number;
|
|
23
|
-
totalFlightHours: number;
|
|
24
22
|
groups: string[];
|
|
25
23
|
idNumber: string;
|
|
26
|
-
startToFlyDate: number;
|
|
27
|
-
authorizedToFlyBy: string;
|
|
28
|
-
authorizedPhotographyBy: string;
|
|
29
24
|
pilotLicense: string;
|
|
30
25
|
licenseTypes: string[];
|
|
31
26
|
licenseGroup: string;
|
|
32
27
|
typesRating: TypeRatingFlag;
|
|
33
28
|
licenseKinds: LicenseKindFlag;
|
|
34
29
|
medicalCertClass: string;
|
|
30
|
+
medicalCertificate: MedicalCertClassCode;
|
|
35
31
|
validations: ValidationFlag;
|
|
36
32
|
isPilot: boolean;
|
|
37
33
|
instructor: string;
|
|
38
34
|
instructionPlan: FlightCategoryCode;
|
|
39
35
|
lastSignIn: number;
|
|
36
|
+
startToFlyDate: number;
|
|
37
|
+
authorizedToFlyBy: string;
|
|
38
|
+
authorizedPhotographyBy: string;
|
|
40
39
|
get(field: string): any;
|
|
41
40
|
}
|
|
42
41
|
export declare function GetContactColumnsDef(): ColumnDef[];
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Contact } from '.';
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
5
|
+
import { FlightStateCode } from '.';
|
|
6
|
+
import { Document } from '.';
|
|
3
7
|
import { StatusCode } from '.';
|
|
8
|
+
import { FlightPurposeCode } from '.';
|
|
4
9
|
import { MessageConfirm } from '.';
|
|
5
|
-
import { Document } from '.';
|
|
6
10
|
import { Certificate } from '.';
|
|
7
11
|
import { FlightTypeCode } from '.';
|
|
8
|
-
import { FlightStatusCode } from '.';
|
|
9
|
-
import { Flight } from '.';
|
|
10
|
-
import { Contact } from '.';
|
|
11
12
|
import { StringKeyValue } from '.';
|
|
12
|
-
import {
|
|
13
|
-
import { FlightPurposeCode } from '.';
|
|
13
|
+
import { Flight } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
|
16
16
|
private config;
|
package/lib/Credit.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { TransactionTypeCode } from '.';
|
|
1
2
|
import { CurrencyCode } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
4
|
import { ColumnDef } from '.';
|
|
4
|
-
import { TransactionTypeCode } from '.';
|
|
5
5
|
export declare class Credit extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { FlightPurposeCode } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
3
3
|
import { OnBoard } from '.';
|
|
4
4
|
import { TOLData } from '.';
|
|
5
|
-
import {
|
|
6
|
-
import { BaseEntityEx } from '.';
|
|
7
|
-
import { ColumnDef } from '.';
|
|
8
|
-
import { FlightStateCode } from '.';
|
|
5
|
+
import { Lesson } from '.';
|
|
9
6
|
import { Billing } from '.';
|
|
10
|
-
import { FlightCategoryCode } from '.';
|
|
11
|
-
import { FlightTypeCode } from '.';
|
|
12
7
|
import { RiskAssessment } from '.';
|
|
13
|
-
import {
|
|
8
|
+
import { FlightTypeCode } from '.';
|
|
9
|
+
import { BillingStatusCode } from '.';
|
|
14
10
|
import { FlightClassCode } from '.';
|
|
15
|
-
import {
|
|
11
|
+
import { ReFuel } from '.';
|
|
12
|
+
import { FlightStateCode } from '.';
|
|
13
|
+
import { BaseEntityEx } from '.';
|
|
14
|
+
import { FlightCategoryCode } from '.';
|
|
15
|
+
import { FlightStatusCode } from '.';
|
|
16
16
|
export declare class Flight extends BaseEntityEx {
|
|
17
17
|
name: string;
|
|
18
18
|
description: string;
|
package/lib/FlightBilling.d.ts
CHANGED
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { FlightTypeCode } from '.';
|
|
2
|
-
import { FlightStatusCode } from '.';
|
|
3
|
-
import { FlightStateCode } from '.';
|
|
4
1
|
import { FlightPurposeCode } from '.';
|
|
5
2
|
import { TOLData } from '.';
|
|
6
3
|
import { BaseEntityEx } from '.';
|
|
7
4
|
import { ColumnDef } from '.';
|
|
5
|
+
import { FlightTypeCode } from '.';
|
|
6
|
+
import { FlightStatusCode } from '.';
|
|
7
|
+
import { FlightStateCode } 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 { SpecialRisks } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
|
-
import { PilotQualificationsRisks } from '.';
|
|
4
|
-
import { CrewDutyDayRisks } from '.';
|
|
5
1
|
import { DepartureRisks } from '.';
|
|
6
2
|
import { TripRisks } from '.';
|
|
7
3
|
import { WeatherRisks } from '.';
|
|
8
|
-
import { DestinationRisks } from '.';
|
|
9
4
|
import { Mitigation } from '.';
|
|
10
5
|
import { BaseEntityEx } from '.';
|
|
6
|
+
import { PilotQualificationsRisks } from '.';
|
|
7
|
+
import { DestinationRisks } from '.';
|
|
8
|
+
import { SpecialRisks } from '.';
|
|
9
|
+
import { ColumnDef } from '.';
|
|
10
|
+
import { CrewDutyDayRisks } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/FlightTicket.d.ts
CHANGED
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 { AnyKeyValue } from '.';
|
|
4
3
|
import { FlightPurposeCode } from '.';
|
|
5
|
-
import { TimeSeries } from '.';
|
|
6
4
|
import { Contact } from '.';
|
|
7
|
-
import {
|
|
8
|
-
import { FlightPlan } from '.';
|
|
9
|
-
import { FlightTypeCode } from '.';
|
|
5
|
+
import { AnyKeyValue } from '.';
|
|
10
6
|
import { FlightStatusCode } from '.';
|
|
11
7
|
import { BillingStatusCode } from '.';
|
|
12
|
-
import { Flight } from '.';
|
|
13
8
|
import { PreFlightInfo } from '.';
|
|
9
|
+
import { TimeSeries } from '.';
|
|
14
10
|
import { FlightTicket } from '.';
|
|
11
|
+
import { Flight } from '.';
|
|
12
|
+
import { FlightTypeCode } from '.';
|
|
13
|
+
import { FlightPlan } from '.';
|
|
14
|
+
import { PostFlightInfo } 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 { TimeFrame } from '.';
|
|
2
|
+
import { FlightTypeCode } from '.';
|
|
1
3
|
import { FlightStatusCode } from '.';
|
|
2
4
|
import { BillingStatusCode } from '.';
|
|
3
5
|
import { FlightPurposeCode } from '.';
|
|
4
|
-
import { TimeFrame } from '.';
|
|
5
|
-
import { FlightTypeCode } 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/Lead.d.ts
CHANGED
package/lib/LeadsEndPoint.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { LeadAction } from '.';
|
|
4
3
|
import { Lead } from '.';
|
|
5
4
|
import { LeadStatusCode } from '.';
|
|
6
5
|
import { TimeSeries } from '.';
|
|
6
|
+
import { LeadAction } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class LeadsEndPoint {
|
|
9
9
|
private config;
|
package/lib/Lesson.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { AssessmentCode } from '.';
|
|
2
|
-
import { LessonTypeCode } from '.';
|
|
3
1
|
import { FlightCategoryCode } from '.';
|
|
4
2
|
import { LessonSubjectCode } from '.';
|
|
3
|
+
import { AssessmentCode } from '.';
|
|
4
|
+
import { LessonTypeCode } from '.';
|
|
5
5
|
export declare class Lesson {
|
|
6
6
|
number: number;
|
|
7
7
|
type: LessonTypeCode;
|
package/lib/LicenseKindFlag.d.ts
CHANGED
package/lib/Lookup.d.ts
CHANGED
package/lib/LookupGroup.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { StatusCode } from '.';
|
|
3
4
|
import { Maintenance } from '.';
|
|
4
5
|
import { MaintenanceActionCode } from '.';
|
|
5
|
-
import { StatusCode } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class MaintenancesEndPoint {
|
|
8
8
|
private config;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Tuple } from '.';
|
|
2
|
+
export declare enum MedicalCertClassCode {
|
|
3
|
+
UNDEFINED = 0,
|
|
4
|
+
CLASS_ATP = 1,
|
|
5
|
+
CLASS_CPL = 2,
|
|
6
|
+
CLASS_PPL = 3
|
|
7
|
+
}
|
|
8
|
+
export declare function GetMedicalCertClassCodes(): Tuple<MedicalCertClassCode, string>[];
|
|
9
|
+
export declare function MapMedicalCertClassCodes(): Map<MedicalCertClassCode, string>;
|
|
@@ -1,9 +1,9 @@
|
|
|
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 { BookingSlots } from '.';
|
|
5
6
|
import { Booking } from '.';
|
|
6
|
-
import { BookingStatusCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MyBookingsEndPoint {
|
|
9
9
|
private config;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightStatusCode } from '.';
|
|
4
|
-
import { FlightPlan } from '.';
|
|
5
3
|
import { PreFlightInfo } from '.';
|
|
4
|
+
import { FlightTypeCode } from '.';
|
|
5
|
+
import { FlightPlan } from '.';
|
|
6
|
+
import { FlightStatusCode } from '.';
|
|
6
7
|
import { PostFlightInfo } from '.';
|
|
7
8
|
import { Flight } from '.';
|
|
8
|
-
import { FlightTypeCode } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyFlightsEndPoint {
|
|
11
11
|
private config;
|
package/lib/PostFlightData.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { OnBoard } from '.';
|
|
1
2
|
import { TOLData } from '.';
|
|
2
3
|
import { ReFuel } from '.';
|
|
3
4
|
import { Lesson } from '.';
|
|
@@ -5,7 +6,6 @@ import { BaseEntityEx } from '.';
|
|
|
5
6
|
import { ColumnDef } from '.';
|
|
6
7
|
import { FlightTypeCode } from '.';
|
|
7
8
|
import { FlightPurposeCode } from '.';
|
|
8
|
-
import { OnBoard } from '.';
|
|
9
9
|
export declare class PostFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/PostFlightInfo.d.ts
CHANGED
package/lib/Price.d.ts
CHANGED
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { DepartureRisks } from '.';
|
|
2
1
|
import { DestinationRisks } from '.';
|
|
3
2
|
import { TripRisks } from '.';
|
|
4
3
|
import { WeatherRisks } from '.';
|
|
@@ -6,6 +5,7 @@ import { SpecialRisks } from '.';
|
|
|
6
5
|
import { Mitigation } from '.';
|
|
7
6
|
import { PilotQualificationsRisks } from '.';
|
|
8
7
|
import { CrewDutyDayRisks } from '.';
|
|
8
|
+
import { DepartureRisks } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/Syllabus.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { FlightCategoryCode } from '.';
|
|
2
1
|
import { InstructionTypeCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { FlightCategoryCode } from '.';
|
|
5
5
|
export declare class Syllabus extends BaseEntityEx {
|
|
6
6
|
plan: FlightCategoryCode;
|
|
7
7
|
type: InstructionTypeCode;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Syllabus } from '.';
|
|
4
3
|
import { FlightCategoryCode } from '.';
|
|
5
4
|
import { InstructionTypeCode } from '.';
|
|
5
|
+
import { Syllabus } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SyllabusEndPoint {
|
|
8
8
|
private config;
|
package/lib/SystemConfig.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { MessageConfirm } from '.';
|
|
3
4
|
import { SystemMessage } from '.';
|
|
4
5
|
import { MessageTypeCode } from '.';
|
|
5
|
-
import { MessageConfirm } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SystemMessagesEndPoint {
|
|
8
8
|
private config;
|
package/lib/TokenData.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;
|