@aya-flights/ngx-goox-lib 2.19.53 → 2.19.56
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 +4875 -4517
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +1 -2
- package/lib/AccountsEndPoint.d.ts +2 -2
- package/lib/Airplane.d.ts +2 -2
- package/lib/AirplanesEndPoint.d.ts +2 -2
- package/lib/AuditLog.d.ts +1 -1
- package/lib/BookingPlan.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +2 -2
- package/lib/Campaign.d.ts +2 -2
- package/lib/Certificate.d.ts +2 -2
- package/lib/Contact.d.ts +4 -5
- package/lib/ContactsEndPoint.d.ts +3 -3
- package/lib/Flight.d.ts +13 -7
- package/lib/FlightCategoryCode.d.ts +33 -0
- package/lib/FlightClassCode.d.ts +13 -0
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +6 -6
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +4 -4
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/Group.d.ts +1 -1
- package/lib/Lesson.d.ts +7 -2
- package/lib/LessonTypeCode.d.ts +12 -0
- package/lib/LicenseTypeFlag.d.ts +16 -0
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/Maintenance.d.ts +2 -2
- package/lib/MaintenancesFilter.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +1 -1
- package/lib/PostFlightData.d.ts +1 -1
- package/lib/PostFlightInfo.d.ts +1 -1
- package/lib/PreFlightData.d.ts +2 -2
- package/lib/Price.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +2 -2
- package/lib/Syllabus.d.ts +11 -0
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/UsersFilter.d.ts +1 -1
- package/lib/index.d.ts +112 -107
- package/lib/services.export.d.ts +20 -20
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
import { AccountStatusCode } from '.';
|
|
2
1
|
import { Address } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { AccountStatusCode } from '.';
|
|
5
5
|
export declare class Account extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
enName: string;
|
|
8
8
|
description: string;
|
|
9
9
|
status: AccountStatusCode;
|
|
10
10
|
phone: string;
|
|
11
|
-
fax: string;
|
|
12
11
|
mobile: string;
|
|
13
12
|
email: string;
|
|
14
13
|
billingAddress: Address;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
3
|
+
import { Credit } from '.';
|
|
4
4
|
import { Document } from '.';
|
|
5
5
|
import { Account } from '.';
|
|
6
6
|
import { StringKeyValue } from '.';
|
|
7
|
-
import {
|
|
7
|
+
import { Flight } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AccountsEndPoint {
|
|
10
10
|
private config;
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Magneto } from '.';
|
|
2
|
-
import { Propeller } from '.';
|
|
3
1
|
import { Fuel } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
5
3
|
import { ColumnDef } from '.';
|
|
6
4
|
import { AirplaneStatusCode } from '.';
|
|
7
5
|
import { AirplaneValidationFlag } from '.';
|
|
8
6
|
import { Engine } from '.';
|
|
7
|
+
import { Magneto } from '.';
|
|
8
|
+
import { Propeller } from '.';
|
|
9
9
|
export declare class Airplane extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { Airplane } from '.';
|
|
4
|
-
import { Flight } from '.';
|
|
5
|
-
import { StringKeyValue } from '.';
|
|
6
4
|
import { Document } from '.';
|
|
5
|
+
import { StringKeyValue } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
7
7
|
import { Maintenance } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AirplanesEndPoint {
|
package/lib/AuditLog.d.ts
CHANGED
package/lib/BookingPlan.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BookingTypeFlag } from '.';
|
|
1
2
|
import { FlightPurposeCode } from '.';
|
|
2
3
|
import { FlightStatusCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
5
|
import { ColumnDef } from '.';
|
|
5
|
-
import { BookingTypeFlag } from '.';
|
|
6
6
|
export declare class BookingPlan extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { BookingSlotsSet } from '.';
|
|
3
4
|
import { BookingSlot } from '.';
|
|
4
5
|
import { BookingSlots } from '.';
|
|
5
|
-
import { BookingSlotsSet } 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 '.';
|
|
4
|
-
import { BookingPlan } from '.';
|
|
5
3
|
import { Booking } from '.';
|
|
6
4
|
import { BookingStatusCode } from '.';
|
|
5
|
+
import { TimeSeries } from '.';
|
|
6
|
+
import { BookingPlan } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class BookingsEndPoint {
|
|
9
9
|
private config;
|
package/lib/Campaign.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
1
3
|
import { CampaignTypeCode } from '.';
|
|
2
4
|
import { CampaignStatusCode } from '.';
|
|
3
5
|
import { CurrencyCode } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
6
|
export declare class Campaign extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
type: CampaignTypeCode;
|
package/lib/Certificate.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ValidationFlag } from '.';
|
|
2
|
-
import { StatusCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { ValidationFlag } from '.';
|
|
4
|
+
import { StatusCode } from '.';
|
|
5
5
|
export declare class Certificate extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
type: ValidationFlag;
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,20 +1,18 @@
|
|
|
1
|
-
import { AccountStatusCode } from '.';
|
|
2
|
-
import { Address } from '.';
|
|
3
1
|
import { ValidationFlag } from '.';
|
|
2
|
+
import { FlightCategoryCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
5
4
|
import { ColumnDef } from '.';
|
|
5
|
+
import { AccountStatusCode } from '.';
|
|
6
|
+
import { Address } from '.';
|
|
6
7
|
export declare class Contact extends BaseEntityEx {
|
|
7
8
|
accountId: string;
|
|
8
9
|
name: string;
|
|
9
10
|
enName: string;
|
|
10
|
-
firstName: string;
|
|
11
|
-
lastName: string;
|
|
12
11
|
description: string;
|
|
13
12
|
title: string;
|
|
14
13
|
birthDay: number;
|
|
15
14
|
status: AccountStatusCode;
|
|
16
15
|
phone: string;
|
|
17
|
-
fax: string;
|
|
18
16
|
mobile: string;
|
|
19
17
|
email: string;
|
|
20
18
|
primaryAddress: Address;
|
|
@@ -33,6 +31,7 @@ export declare class Contact extends BaseEntityEx {
|
|
|
33
31
|
validations: ValidationFlag;
|
|
34
32
|
isPilot: boolean;
|
|
35
33
|
instructor: string;
|
|
34
|
+
instructionPlan: FlightCategoryCode;
|
|
36
35
|
lastSignIn: number;
|
|
37
36
|
get(field: string): any;
|
|
38
37
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { StringKeyValue } from '.';
|
|
4
|
-
import { Certificate } from '.';
|
|
5
|
-
import { Document } from '.';
|
|
6
|
-
import { Contact } from '.';
|
|
7
4
|
import { Flight } from '.';
|
|
5
|
+
import { Contact } from '.';
|
|
6
|
+
import { Certificate } from '.';
|
|
8
7
|
import { MessageConfirm } from '.';
|
|
8
|
+
import { Document } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class ContactsEndPoint {
|
|
11
11
|
private config;
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { FlightCategoryCode } from '.';
|
|
2
|
+
import { BillingStatusCode } from '.';
|
|
3
|
+
import { OnBoard } from '.';
|
|
4
|
+
import { FlightPurposeCode } from '.';
|
|
5
|
+
import { TOLData } from '.';
|
|
3
6
|
import { BaseEntityEx } from '.';
|
|
7
|
+
import { ColumnDef } from '.';
|
|
4
8
|
import { FlightStatusCode } from '.';
|
|
5
|
-
import { TOLData } from '.';
|
|
6
9
|
import { FlightStateCode } from '.';
|
|
7
|
-
import { BillingStatusCode } from '.';
|
|
8
|
-
import { OnBoard } from '.';
|
|
9
10
|
import { ReFuel } from '.';
|
|
11
|
+
import { Lesson } from '.';
|
|
10
12
|
import { RiskAssessment } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import { FlightPurposeCode } from '.';
|
|
13
|
+
import { FlightClassCode } from '.';
|
|
13
14
|
import { FlightTypeCode } from '.';
|
|
15
|
+
import { Billing } from '.';
|
|
14
16
|
export declare class Flight extends BaseEntityEx {
|
|
15
17
|
name: string;
|
|
16
18
|
description: string;
|
|
@@ -24,6 +26,8 @@ export declare class Flight extends BaseEntityEx {
|
|
|
24
26
|
firstOfficer: string;
|
|
25
27
|
purpose: FlightPurposeCode;
|
|
26
28
|
purposeOt: string;
|
|
29
|
+
flightClass: FlightClassCode;
|
|
30
|
+
flightCategory: FlightCategoryCode;
|
|
27
31
|
type: FlightTypeCode;
|
|
28
32
|
status: FlightStatusCode;
|
|
29
33
|
state: FlightStateCode;
|
|
@@ -41,6 +45,8 @@ export declare class Flight extends BaseEntityEx {
|
|
|
41
45
|
operationNotes: string;
|
|
42
46
|
fuelStatus: ReFuel;
|
|
43
47
|
oilStatus: ReFuel;
|
|
48
|
+
fuelLevel: number;
|
|
49
|
+
oilLevel: number;
|
|
44
50
|
lesson: Lesson;
|
|
45
51
|
billing: Billing;
|
|
46
52
|
pilotCertCheck: number;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { Tuple } from '.';
|
|
2
|
+
export declare enum FlightCategoryCode {
|
|
3
|
+
UNDEFINED = 0,
|
|
4
|
+
COMMERCIAL_PHOTO = 65,
|
|
5
|
+
COMMERCIAL_TEST = 66,
|
|
6
|
+
COMMERCIAL_TAXI = 67,
|
|
7
|
+
EXAM_ANN_PROFICIENCY = 257,
|
|
8
|
+
EXAM_ANN_IFR = 258,
|
|
9
|
+
EXAM_CAA_PPL = 259,
|
|
10
|
+
EXAM_CAA_CPL = 260,
|
|
11
|
+
EXAM_CAA_CFI = 261,
|
|
12
|
+
EXAM_CAA_IFR = 262,
|
|
13
|
+
EXAM_CAA_CONVERSION = 263,
|
|
14
|
+
INSTRUCTION_PPL = 513,
|
|
15
|
+
INSTRUCTION_CPL = 514,
|
|
16
|
+
INSTRUCTION_CFI = 515,
|
|
17
|
+
INSTRUCTION_IFR = 516,
|
|
18
|
+
INSTRUCTION_UL_CONV = 517,
|
|
19
|
+
INSTRUCTION_COPTER_CONV = 518,
|
|
20
|
+
INSTRUCTION_CPL_5 = 519,
|
|
21
|
+
INSTRUCTION_IFR_5 = 520,
|
|
22
|
+
INSTRUCTION_CPL_10 = 521,
|
|
23
|
+
INSTRUCTION_IFR_10 = 522,
|
|
24
|
+
INSTRUCTION_CPL_15 = 523,
|
|
25
|
+
INSTRUCTION_IFR_15 = 524,
|
|
26
|
+
INSTRUCTION_CPL_20 = 525,
|
|
27
|
+
INSTRUCTION_IFR_20 = 526,
|
|
28
|
+
INSTRUCTION_PPL_25 = 527,
|
|
29
|
+
MAINTENANCE_ENGINE_RUNNING = 2049,
|
|
30
|
+
MAINTENANCE_TRANSFER = 2050
|
|
31
|
+
}
|
|
32
|
+
export declare function GetFlightCategoryCodes(): Tuple<FlightCategoryCode, string>[];
|
|
33
|
+
export declare function MapFlightCategoryCodes(): Map<FlightCategoryCode, string>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Tuple } from '.';
|
|
2
|
+
export declare enum FlightClassCode {
|
|
3
|
+
UNDEFINED = 0,
|
|
4
|
+
PRIVATE = 32,
|
|
5
|
+
COMMERCIAL = 64,
|
|
6
|
+
INTRODUCTORY = 128,
|
|
7
|
+
EXAM = 256,
|
|
8
|
+
INSTRUCTION = 512,
|
|
9
|
+
MAINTENANCE = 1024,
|
|
10
|
+
OTHER = 2048
|
|
11
|
+
}
|
|
12
|
+
export declare function GetFlightClassCodes(): Tuple<FlightClassCode, string>[];
|
|
13
|
+
export declare function MapFlightClassCodes(): Map<FlightClassCode, string>;
|
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 { DestinationRisks } from '.';
|
|
2
1
|
import { TripRisks } from '.';
|
|
3
|
-
import {
|
|
2
|
+
import { SpecialRisks } from '.';
|
|
4
3
|
import { Mitigation } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
|
-
import { CrewDutyDayRisks } from '.';
|
|
7
|
-
import { DepartureRisks } from '.';
|
|
8
4
|
import { BaseEntityEx } from '.';
|
|
9
5
|
import { PilotQualificationsRisks } from '.';
|
|
10
|
-
import {
|
|
6
|
+
import { CrewDutyDayRisks } from '.';
|
|
7
|
+
import { DepartureRisks } from '.';
|
|
8
|
+
import { DestinationRisks } from '.';
|
|
9
|
+
import { WeatherRisks } from '.';
|
|
10
|
+
import { ColumnDef } 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,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { PreFlightInfo } from '.';
|
|
4
|
-
import { PostFlightInfo } from '.';
|
|
5
3
|
import { AnyKeyValue } from '.';
|
|
6
|
-
import {
|
|
4
|
+
import { FlightTicket } from '.';
|
|
5
|
+
import { PreFlightInfo } from '.';
|
|
7
6
|
import { FlightPlan } from '.';
|
|
8
7
|
import { Contact } from '.';
|
|
9
|
-
import {
|
|
8
|
+
import { Flight } from '.';
|
|
10
9
|
import { TimeSeries } from '.';
|
|
10
|
+
import { PostFlightInfo } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class FlightsEndPoint {
|
|
13
13
|
private config;
|
package/lib/FlightsFilter.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { FlightStatusCode } from '.';
|
|
2
|
-
import { BillingStatusCode } from '.';
|
|
3
1
|
import { FlightPurposeCode } from '.';
|
|
4
2
|
import { TimeFrame } from '.';
|
|
5
3
|
import { FlightTypeCode } from '.';
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
5
|
+
import { BillingStatusCode } from '.';
|
|
6
6
|
export declare class FlightsFilter {
|
|
7
7
|
search: string;
|
|
8
8
|
period: TimeFrame;
|
package/lib/Group.d.ts
CHANGED
package/lib/Lesson.d.ts
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
|
-
import { LessonSubjectCode } from '.';
|
|
2
1
|
import { AssessmentCode } from '.';
|
|
2
|
+
import { LessonTypeCode } from '.';
|
|
3
|
+
import { FlightCategoryCode } from '.';
|
|
4
|
+
import { LessonSubjectCode } from '.';
|
|
3
5
|
export declare class Lesson {
|
|
4
6
|
number: number;
|
|
7
|
+
type: LessonTypeCode;
|
|
8
|
+
instructionPlan: FlightCategoryCode;
|
|
9
|
+
topicId: string;
|
|
5
10
|
subject: string;
|
|
6
11
|
lessonSubject: LessonSubjectCode;
|
|
7
12
|
assessment: AssessmentCode;
|
|
@@ -10,5 +15,5 @@ export declare class Lesson {
|
|
|
10
15
|
instructedFlightTime: number;
|
|
11
16
|
instrumentsFlightTime: number;
|
|
12
17
|
soloFlightTime: number;
|
|
13
|
-
constructor(number?: number, subject?: string, lessonSubject?: LessonSubjectCode, assessment?: AssessmentCode, comments?: string, flightCounter?: number, instructedFlightTime?: number, instrumentsFlightTime?: number, soloFlightTime?: number);
|
|
18
|
+
constructor(number?: number, type?: LessonTypeCode, instructionPlan?: FlightCategoryCode, topicId?: string, subject?: string, lessonSubject?: LessonSubjectCode, assessment?: AssessmentCode, comments?: string, flightCounter?: number, instructedFlightTime?: number, instrumentsFlightTime?: number, soloFlightTime?: number);
|
|
14
19
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Tuple } from '.';
|
|
2
|
+
export declare enum LessonTypeCode {
|
|
3
|
+
UNDEFINED = 0,
|
|
4
|
+
INSTRUCTION = 1,
|
|
5
|
+
INSTRUCTION_CVFR = 2,
|
|
6
|
+
INSTRUCTION_IFR = 3,
|
|
7
|
+
INSTRUCTION_NAV = 4,
|
|
8
|
+
INSTRUCTION_NIGHT = 5,
|
|
9
|
+
OTHER = 6
|
|
10
|
+
}
|
|
11
|
+
export declare function GetLessonTypeCodes(): Tuple<LessonTypeCode, string>[];
|
|
12
|
+
export declare function MapLessonTypeCodes(): Map<LessonTypeCode, string>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Tuple } from '.';
|
|
2
|
+
export declare enum LicenseTypeFlag {
|
|
3
|
+
UNDEFINED = 0,
|
|
4
|
+
PILOT = 1,
|
|
5
|
+
STUDENT = 2,
|
|
6
|
+
PPL = 4,
|
|
7
|
+
CPL = 8,
|
|
8
|
+
CFI = 16,
|
|
9
|
+
IFR = 32,
|
|
10
|
+
C172P = 64,
|
|
11
|
+
C172XP = 128,
|
|
12
|
+
C207 = 256,
|
|
13
|
+
PA31 = 512
|
|
14
|
+
}
|
|
15
|
+
export declare function GetLicenseTypeFlags(): Tuple<LicenseTypeFlag, string>[];
|
|
16
|
+
export declare function MapLicenseTypeFlags(): Map<LicenseTypeFlag, string>;
|
package/lib/LookupsEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { LookupGroup } from '.';
|
|
4
3
|
import { Lookup } from '.';
|
|
4
|
+
import { LookupGroup } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class LookupsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Maintenance.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { StatusCode } from '.';
|
|
4
2
|
import { MaintenanceActionCode } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Maintenance extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Flight } from '.';
|
|
3
4
|
import { FlightPlan } from '.';
|
|
4
5
|
import { PreFlightInfo } from '.';
|
|
5
6
|
import { PostFlightInfo } from '.';
|
|
6
|
-
import { Flight } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MyFlightsEndPoint {
|
|
9
9
|
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/PreFlightData.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { FlightTypeCode } from '.';
|
|
4
2
|
import { FlightPurposeCode } from '.';
|
|
5
3
|
import { OnBoard } from '.';
|
|
6
4
|
import { TOLData } from '.';
|
|
7
5
|
import { ReFuel } from '.';
|
|
8
6
|
import { Lesson } from '.';
|
|
7
|
+
import { BaseEntityEx } from '.';
|
|
8
|
+
import { ColumnDef } from '.';
|
|
9
9
|
export declare class PreFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/Price.d.ts
CHANGED
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { DepartureRisks } from '.';
|
|
2
|
-
import { DestinationRisks } from '.';
|
|
3
1
|
import { TripRisks } from '.';
|
|
4
2
|
import { WeatherRisks } from '.';
|
|
5
3
|
import { SpecialRisks } from '.';
|
|
6
4
|
import { Mitigation } from '.';
|
|
7
5
|
import { PilotQualificationsRisks } from '.';
|
|
8
6
|
import { CrewDutyDayRisks } from '.';
|
|
7
|
+
import { DepartureRisks } from '.';
|
|
8
|
+
import { DestinationRisks } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { FlightCategoryCode } from '.';
|
|
2
|
+
import { BaseEntityEx } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
4
|
+
export declare class Syllabus extends BaseEntityEx {
|
|
5
|
+
category: FlightCategoryCode;
|
|
6
|
+
number: string;
|
|
7
|
+
name: string;
|
|
8
|
+
duration: string;
|
|
9
|
+
get(field: string): any;
|
|
10
|
+
}
|
|
11
|
+
export declare function GetSyllabusColumnsDef(): ColumnDef[];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { MessageConfirm } from '.';
|
|
4
3
|
import { SystemMessage } from '.';
|
|
4
|
+
import { MessageConfirm } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class SystemMessagesEndPoint {
|
|
7
7
|
private config;
|
package/lib/UsersEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { User } from '.';
|
|
4
3
|
import { StringKeyValue } from '.';
|
|
4
|
+
import { User } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class UsersEndPoint {
|
|
7
7
|
private config;
|