@aya-flights/ngx-goox-lib 2.19.53 → 2.19.57
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 +4328 -3864
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +1 -2
- package/lib/AccountsEndPoint.d.ts +3 -3
- package/lib/Airplane.d.ts +3 -3
- package/lib/AirplanesEndPoint.d.ts +1 -1
- package/lib/AuditLog.d.ts +1 -1
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingPlan.d.ts +1 -1
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/BookingSlotsSet.d.ts +1 -1
- package/lib/Campaign.d.ts +2 -2
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/Certificate.d.ts +2 -2
- package/lib/Contact.d.ts +2 -3
- package/lib/ContactsEndPoint.d.ts +3 -3
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +14 -8
- package/lib/FlightCategoryCode.d.ts +33 -0
- package/lib/FlightClassCode.d.ts +13 -0
- package/lib/FlightRisk.d.ts +7 -7
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +3 -3
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/Group.d.ts +1 -1
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/InstructionTypeCode.d.ts +9 -0
- package/lib/Lesson.d.ts +6 -1
- package/lib/LessonTypeCode.d.ts +12 -0
- package/lib/LicenseTypeFlag.d.ts +16 -0
- package/lib/Lookup.d.ts +1 -1
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/Maintenance.d.ts +2 -2
- package/lib/MessageConfirm.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +1 -1
- package/lib/PostFlightData.d.ts +2 -2
- package/lib/PreFlightData.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +2 -2
- package/lib/Syllabus.d.ts +14 -0
- package/lib/SyllabusEndPoint.d.ts +37 -0
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/UsersFilter.d.ts +1 -1
- package/lib/index.d.ts +113 -106
- package/lib/services.export.d.ts +22 -21
- 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 { Flight } from '.';
|
|
4
|
-
import { Document } from '.';
|
|
5
|
-
import { Account } from '.';
|
|
6
3
|
import { StringKeyValue } from '.';
|
|
4
|
+
import { Flight } from '.';
|
|
7
5
|
import { Credit } from '.';
|
|
6
|
+
import { Account } from '.';
|
|
7
|
+
import { Document } 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 { AirplaneStatusCode } from '.';
|
|
2
|
+
import { AirplaneValidationFlag } from '.';
|
|
3
|
+
import { Engine } from '.';
|
|
1
4
|
import { Magneto } from '.';
|
|
2
5
|
import { Propeller } from '.';
|
|
3
6
|
import { Fuel } from '.';
|
|
4
7
|
import { BaseEntityEx } from '.';
|
|
5
8
|
import { ColumnDef } from '.';
|
|
6
|
-
import { AirplaneStatusCode } from '.';
|
|
7
|
-
import { AirplaneValidationFlag } from '.';
|
|
8
|
-
import { Engine } from '.';
|
|
9
9
|
export declare class Airplane extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
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
4
|
import { StringKeyValue } from '.';
|
|
5
|
+
import { Flight } from '.';
|
|
6
6
|
import { Document } from '.';
|
|
7
7
|
import { Maintenance } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
package/lib/AuditLog.d.ts
CHANGED
package/lib/Booking.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { BookingTypeFlag } from '.';
|
|
2
3
|
import { BookingStatusCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Booking extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
accountId: string;
|
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;
|
package/lib/BookingSlots.d.ts
CHANGED
package/lib/BookingSlotsSet.d.ts
CHANGED
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;
|
|
@@ -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 { 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
1
|
import { AccountStatusCode } from '.';
|
|
2
2
|
import { Address } from '.';
|
|
3
3
|
import { ValidationFlag } from '.';
|
|
4
|
+
import { FlightCategoryCode } from '.';
|
|
4
5
|
import { BaseEntityEx } from '.';
|
|
5
6
|
import { ColumnDef } 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
|
-
import { StringKeyValue } from '.';
|
|
4
|
-
import { Certificate } from '.';
|
|
5
|
-
import { Document } from '.';
|
|
6
3
|
import { Contact } from '.';
|
|
7
4
|
import { Flight } from '.';
|
|
8
5
|
import { MessageConfirm } from '.';
|
|
6
|
+
import { Document } from '.';
|
|
7
|
+
import { StringKeyValue } from '.';
|
|
8
|
+
import { Certificate } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class ContactsEndPoint {
|
|
11
11
|
private config;
|
package/lib/Document.d.ts
CHANGED
package/lib/Flight.d.ts
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
|
-
import { Lesson } from '.';
|
|
2
|
-
import { Billing } from '.';
|
|
3
|
-
import { BaseEntityEx } from '.';
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
5
|
-
import { TOLData } from '.';
|
|
6
1
|
import { FlightStateCode } from '.';
|
|
7
|
-
import { BillingStatusCode } from '.';
|
|
8
2
|
import { OnBoard } from '.';
|
|
3
|
+
import { FlightClassCode } from '.';
|
|
4
|
+
import { FlightTypeCode } from '.';
|
|
5
|
+
import { FlightStatusCode } from '.';
|
|
9
6
|
import { ReFuel } from '.';
|
|
10
|
-
import {
|
|
7
|
+
import { Lesson } from '.';
|
|
11
8
|
import { ColumnDef } from '.';
|
|
12
9
|
import { FlightPurposeCode } from '.';
|
|
13
|
-
import {
|
|
10
|
+
import { FlightCategoryCode } from '.';
|
|
11
|
+
import { BillingStatusCode } from '.';
|
|
12
|
+
import { RiskAssessment } from '.';
|
|
13
|
+
import { TOLData } from '.';
|
|
14
|
+
import { Billing } from '.';
|
|
15
|
+
import { BaseEntityEx } 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_TAXI = 66,
|
|
6
|
+
COMMERCIAL_OTHER = 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/FlightRisk.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { TripRisks } from '.';
|
|
3
|
-
import { WeatherRisks } from '.';
|
|
4
|
-
import { Mitigation } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
6
2
|
import { CrewDutyDayRisks } from '.';
|
|
7
3
|
import { DepartureRisks } from '.';
|
|
8
|
-
import {
|
|
9
|
-
import { PilotQualificationsRisks } from '.';
|
|
4
|
+
import { WeatherRisks } from '.';
|
|
10
5
|
import { SpecialRisks } from '.';
|
|
6
|
+
import { Mitigation } from '.';
|
|
7
|
+
import { PilotQualificationsRisks } from '.';
|
|
8
|
+
import { DestinationRisks } from '.';
|
|
9
|
+
import { TripRisks } 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 { AnyKeyValue } from '.';
|
|
3
4
|
import { PreFlightInfo } from '.';
|
|
4
5
|
import { PostFlightInfo } from '.';
|
|
5
|
-
import { AnyKeyValue } from '.';
|
|
6
|
-
import { Flight } from '.';
|
|
7
|
-
import { FlightPlan } from '.';
|
|
8
6
|
import { Contact } from '.';
|
|
9
7
|
import { FlightTicket } from '.';
|
|
10
8
|
import { TimeSeries } from '.';
|
|
9
|
+
import { FlightPlan } from '.';
|
|
10
|
+
import { Flight } 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 { 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;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Tuple } from '.';
|
|
2
|
+
export declare enum InstructionTypeCode {
|
|
3
|
+
UNDEFINED = 0,
|
|
4
|
+
FLIGHT = 1,
|
|
5
|
+
CLASS = 2,
|
|
6
|
+
SIMULATOR = 3
|
|
7
|
+
}
|
|
8
|
+
export declare function GetInstructionTypeCodes(): Tuple<InstructionTypeCode, string>[];
|
|
9
|
+
export declare function MapInstructionTypeCodes(): Map<InstructionTypeCode, string>;
|
package/lib/Lesson.d.ts
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
|
+
import { LessonTypeCode } from '.';
|
|
2
|
+
import { FlightCategoryCode } from '.';
|
|
1
3
|
import { LessonSubjectCode } from '.';
|
|
2
4
|
import { AssessmentCode } 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/Lookup.d.ts
CHANGED
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;
|
package/lib/MessageConfirm.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { ConfirmStatusCode } from '.';
|
|
2
3
|
import { MessageTypeCode } from '.';
|
|
3
4
|
import { PriorityCode } from '.';
|
|
4
5
|
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
6
|
export declare class MessageConfirm extends BaseEntityEx {
|
|
7
7
|
messageId: string;
|
|
8
8
|
contactId: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { BookingSlots } from '.';
|
|
3
4
|
import { Booking } from '.';
|
|
4
5
|
import { BookingTypeFlag } from '.';
|
|
5
|
-
import { BookingSlots } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class MyBookingsEndPoint {
|
|
8
8
|
private config;
|
package/lib/PostFlightData.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { TOLData } from '.';
|
|
2
|
-
import { ReFuel } from '.';
|
|
3
1
|
import { Lesson } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
5
3
|
import { ColumnDef } from '.';
|
|
6
4
|
import { FlightTypeCode } from '.';
|
|
7
5
|
import { FlightPurposeCode } from '.';
|
|
8
6
|
import { OnBoard } from '.';
|
|
7
|
+
import { TOLData } from '.';
|
|
8
|
+
import { ReFuel } from '.';
|
|
9
9
|
export declare class PostFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/PreFlightData.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
1
|
import { ColumnDef } from '.';
|
|
3
2
|
import { FlightTypeCode } from '.';
|
|
4
3
|
import { FlightPurposeCode } from '.';
|
|
@@ -6,6 +5,7 @@ import { OnBoard } from '.';
|
|
|
6
5
|
import { TOLData } from '.';
|
|
7
6
|
import { ReFuel } from '.';
|
|
8
7
|
import { Lesson } from '.';
|
|
8
|
+
import { BaseEntityEx } from '.';
|
|
9
9
|
export declare class PreFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import { PilotQualificationsRisks } from '.';
|
|
2
|
+
import { CrewDutyDayRisks } from '.';
|
|
1
3
|
import { DepartureRisks } from '.';
|
|
2
4
|
import { DestinationRisks } from '.';
|
|
3
5
|
import { TripRisks } from '.';
|
|
4
6
|
import { WeatherRisks } from '.';
|
|
5
7
|
import { SpecialRisks } from '.';
|
|
6
8
|
import { Mitigation } from '.';
|
|
7
|
-
import { PilotQualificationsRisks } from '.';
|
|
8
|
-
import { CrewDutyDayRisks } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { FlightCategoryCode } from '.';
|
|
2
|
+
import { InstructionTypeCode } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
|
+
export declare class Syllabus extends BaseEntityEx {
|
|
6
|
+
category: FlightCategoryCode;
|
|
7
|
+
type: InstructionTypeCode;
|
|
8
|
+
seq: string;
|
|
9
|
+
num: number;
|
|
10
|
+
name: string;
|
|
11
|
+
duration: number;
|
|
12
|
+
get(field: string): any;
|
|
13
|
+
}
|
|
14
|
+
export declare function GetSyllabusColumnsDef(): ColumnDef[];
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
|
+
import { GooxConfig } from '../config';
|
|
3
|
+
import { FlightCategoryCode } from '.';
|
|
4
|
+
import { Syllabus } from '.';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class SyllabusEndPoint {
|
|
7
|
+
private config;
|
|
8
|
+
private rest;
|
|
9
|
+
private baseUrl;
|
|
10
|
+
constructor(config: GooxConfig, rest: RestUtil);
|
|
11
|
+
/**
|
|
12
|
+
* Get new and empty syllabus template
|
|
13
|
+
*/
|
|
14
|
+
new(): import("rxjs").Observable<EntityResponse<Syllabus>>;
|
|
15
|
+
/**
|
|
16
|
+
* Create new syllabus
|
|
17
|
+
*/
|
|
18
|
+
create(body?: Syllabus): import("rxjs").Observable<EntityResponse<Syllabus>>;
|
|
19
|
+
/**
|
|
20
|
+
* Update existing Syllabus
|
|
21
|
+
*/
|
|
22
|
+
update(body?: Syllabus): import("rxjs").Observable<EntityResponse<Syllabus>>;
|
|
23
|
+
/**
|
|
24
|
+
* Delete Syllabus and all its content
|
|
25
|
+
*/
|
|
26
|
+
delete(id?: string): import("rxjs").Observable<ActionResponse>;
|
|
27
|
+
/**
|
|
28
|
+
* Get a single Syllabus by id
|
|
29
|
+
*/
|
|
30
|
+
get(id?: string): import("rxjs").Observable<EntityResponse<Syllabus>>;
|
|
31
|
+
/**
|
|
32
|
+
* Find Syllabus topics by query
|
|
33
|
+
*/
|
|
34
|
+
find(plan?: FlightCategoryCode, sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Syllabus>>;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SyllabusEndPoint, never>;
|
|
36
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SyllabusEndPoint>;
|
|
37
|
+
}
|
package/lib/SystemMessage.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { MessageTypeCode } from '.';
|
|
2
1
|
import { PriorityCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { MessageTypeCode } from '.';
|
|
5
5
|
export declare class SystemMessage extends BaseEntityEx {
|
|
6
6
|
subject: string;
|
|
7
7
|
description: string;
|
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;
|