@aya-flights/ngx-goox-lib 2.19.2 → 2.19.5
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 +4178 -3691
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +1 -1
- package/lib/AccountsEndPoint.d.ts +3 -3
- package/lib/Airplane.d.ts +2 -2
- package/lib/AuditLog.d.ts +1 -1
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/BookingSlotsSet.d.ts +1 -1
- package/lib/BookingStatusCode.d.ts +4 -2
- package/lib/BookingsEndPoint.d.ts +1 -1
- package/lib/Campaign.d.ts +1 -1
- package/lib/Certificate.d.ts +2 -2
- package/lib/Contact.d.ts +1 -1
- package/lib/ContactsEndPoint.d.ts +1 -1
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +8 -8
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightFilter.d.ts +2 -2
- package/lib/FlightPlan.d.ts +1 -1
- package/lib/FlightRisk.d.ts +6 -6
- package/lib/FlightsEndPoint.d.ts +2 -2
- package/lib/Group.d.ts +1 -1
- package/lib/Lesson.d.ts +3 -1
- package/lib/LessonSubjectCode.d.ts +97 -0
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/Maintenance.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +2 -2
- package/lib/PostFlightData.d.ts +2 -2
- package/lib/PostFlightInfo.d.ts +1 -1
- package/lib/PreFlightData.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +4 -4
- package/lib/SystemConfig.d.ts +1 -1
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/index.d.ts +108 -107
- package/lib/services.export.d.ts +20 -20
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { StringKeyValue } from '.';
|
|
4
|
-
import { Document } from '.';
|
|
5
|
-
import { Flight } from '.';
|
|
6
3
|
import { Credit } from '.';
|
|
7
4
|
import { Account } from '.';
|
|
5
|
+
import { StringKeyValue } from '.';
|
|
6
|
+
import { Flight } 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 { BaseEntityEx } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
1
3
|
import { AirplaneStatusCode } from '.';
|
|
2
4
|
import { AirplaneValidationFlag } from '.';
|
|
3
5
|
import { Engine } from '.';
|
|
4
6
|
import { Magneto } from '.';
|
|
5
7
|
import { Propeller } from '.';
|
|
6
8
|
import { Fuel } from '.';
|
|
7
|
-
import { BaseEntityEx } from '.';
|
|
8
|
-
import { ColumnDef } from '.';
|
|
9
9
|
export declare class Airplane extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/AuditLog.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { AuditLog } from '.';
|
|
4
3
|
import { TimeSeries } from '.';
|
|
4
|
+
import { AuditLog } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class AuditLogsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Booking.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { BookingTypeFlag } from '.';
|
|
1
2
|
import { BookingStatusCode } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
4
|
import { ColumnDef } from '.';
|
|
4
|
-
import { BookingTypeFlag } from '.';
|
|
5
5
|
export declare class Booking extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
title: 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;
|
package/lib/BookingSlotsSet.d.ts
CHANGED
|
@@ -6,8 +6,10 @@ export declare enum BookingStatusCode {
|
|
|
6
6
|
REJECTED = 3,
|
|
7
7
|
CONFIRMED = 4,
|
|
8
8
|
CANCELLED = 5,
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
FLIGHT_LAUNCHED = 6,
|
|
10
|
+
FLIGHT_CANCELLED = 7,
|
|
11
|
+
FLIGHT_COMPLETED = 8,
|
|
12
|
+
FLIGHT_ABORTED = 9
|
|
11
13
|
}
|
|
12
14
|
export declare function GetBookingStatusCodes(): Tuple<BookingStatusCode, string>[];
|
|
13
15
|
export declare function MapBookingStatusCodes(): Map<BookingStatusCode, string>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { TimeSeries } from '.';
|
|
3
4
|
import { Booking } from '.';
|
|
4
5
|
import { BookingStatusCode } from '.';
|
|
5
|
-
import { TimeSeries } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class BookingsEndPoint {
|
|
8
8
|
private config;
|
package/lib/Campaign.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
1
2
|
import { ColumnDef } from '.';
|
|
2
3
|
import { CampaignTypeCode } from '.';
|
|
3
4
|
import { CampaignStatusCode } from '.';
|
|
4
5
|
import { CurrencyCode } from '.';
|
|
5
|
-
import { BaseEntityEx } 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,8 +1,8 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
1
2
|
import { ColumnDef } from '.';
|
|
2
3
|
import { AccountStatusCode } from '.';
|
|
3
4
|
import { Address } from '.';
|
|
4
5
|
import { ValidationFlag } from '.';
|
|
5
|
-
import { BaseEntityEx } from '.';
|
|
6
6
|
export declare class Contact extends BaseEntityEx {
|
|
7
7
|
accountId: string;
|
|
8
8
|
name: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { Contact } from '.';
|
|
4
|
-
import { StringKeyValue } from '.';
|
|
5
4
|
import { Certificate } from '.';
|
|
6
5
|
import { Flight } from '.';
|
|
7
6
|
import { MessageConfirm } from '.';
|
|
7
|
+
import { StringKeyValue } from '.';
|
|
8
8
|
import { Document } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class ContactsEndPoint {
|
package/lib/Document.d.ts
CHANGED
package/lib/Flight.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
+
import { FlightTypeCode } from '.';
|
|
2
|
+
import { FlightPurposeCode } from '.';
|
|
3
|
+
import { ReFuel } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
|
+
import { RiskAssessment } from '.';
|
|
6
|
+
import { FlightStatusCode } from '.';
|
|
1
7
|
import { FlightStateCode } from '.';
|
|
2
8
|
import { BillingStatusCode } from '.';
|
|
9
|
+
import { OnBoard } from '.';
|
|
10
|
+
import { TOLData } from '.';
|
|
3
11
|
import { Lesson } from '.';
|
|
4
12
|
import { Billing } from '.';
|
|
5
|
-
import { RiskAssessment } from '.';
|
|
6
13
|
import { BaseEntityEx } from '.';
|
|
7
|
-
import { ColumnDef } from '.';
|
|
8
|
-
import { FlightTypeCode } from '.';
|
|
9
|
-
import { FlightStatusCode } from '.';
|
|
10
|
-
import { FlightPurposeCode } from '.';
|
|
11
|
-
import { OnBoard } from '.';
|
|
12
|
-
import { TOLData } from '.';
|
|
13
|
-
import { ReFuel } from '.';
|
|
14
14
|
export declare class Flight extends BaseEntityEx {
|
|
15
15
|
name: string;
|
|
16
16
|
description: string;
|
package/lib/FlightBilling.d.ts
CHANGED
package/lib/FlightFilter.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { BillingStatusCode } from '.';
|
|
2
|
-
import { FlightPurposeCode } from '.';
|
|
3
1
|
import { TimeFrame } from '.';
|
|
4
2
|
import { FlightTypeCode } from '.';
|
|
5
3
|
import { FlightStatusCode } from '.';
|
|
4
|
+
import { BillingStatusCode } from '.';
|
|
5
|
+
import { FlightPurposeCode } from '.';
|
|
6
6
|
export declare class FlightFilter {
|
|
7
7
|
search: string;
|
|
8
8
|
accountId: string;
|
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 { CrewDutyDayRisks } from '.';
|
|
2
|
-
import { DestinationRisks } from '.';
|
|
3
|
-
import { SpecialRisks } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
|
-
import { PilotQualificationsRisks } from '.';
|
|
6
1
|
import { DepartureRisks } from '.';
|
|
7
|
-
import { TripRisks } from '.';
|
|
8
2
|
import { WeatherRisks } from '.';
|
|
3
|
+
import { SpecialRisks } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
9
5
|
import { Mitigation } from '.';
|
|
10
6
|
import { BaseEntityEx } from '.';
|
|
7
|
+
import { PilotQualificationsRisks } from '.';
|
|
8
|
+
import { CrewDutyDayRisks } from '.';
|
|
9
|
+
import { DestinationRisks } from '.';
|
|
10
|
+
import { TripRisks } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/FlightsEndPoint.d.ts
CHANGED
|
@@ -2,12 +2,12 @@ import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities }
|
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { PreFlightInfo } from '.';
|
|
4
4
|
import { PostFlightInfo } from '.';
|
|
5
|
-
import { Flight } from '.';
|
|
6
5
|
import { TimeSeries } from '.';
|
|
7
6
|
import { FlightPlan } from '.';
|
|
8
7
|
import { FlightTicket } from '.';
|
|
9
|
-
import {
|
|
8
|
+
import { Flight } from '.';
|
|
10
9
|
import { AnyKeyValue } from '.';
|
|
10
|
+
import { Contact } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class FlightsEndPoint {
|
|
13
13
|
private config;
|
package/lib/Group.d.ts
CHANGED
package/lib/Lesson.d.ts
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
|
+
import { LessonSubjectCode } from '.';
|
|
1
2
|
import { AssessmentCode } from '.';
|
|
2
3
|
export declare class Lesson {
|
|
3
4
|
number: number;
|
|
4
5
|
subject: string;
|
|
6
|
+
lessonSubject: LessonSubjectCode;
|
|
5
7
|
assessment: AssessmentCode;
|
|
6
8
|
comments: string;
|
|
7
9
|
flightCounter: number;
|
|
8
10
|
instructedFlightTime: number;
|
|
9
11
|
instrumentsFlightTime: number;
|
|
10
12
|
soloFlightTime: number;
|
|
11
|
-
constructor(number?: number, subject?: string, assessment?: AssessmentCode, comments?: string, flightCounter?: number, instructedFlightTime?: number, instrumentsFlightTime?: number, soloFlightTime?: number);
|
|
13
|
+
constructor(number?: number, subject?: string, lessonSubject?: LessonSubjectCode, assessment?: AssessmentCode, comments?: string, flightCounter?: number, instructedFlightTime?: number, instrumentsFlightTime?: number, soloFlightTime?: number);
|
|
12
14
|
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { Tuple } from '.';
|
|
2
|
+
export declare enum LessonSubjectCode {
|
|
3
|
+
UNDEFINED = 0,
|
|
4
|
+
PPL_01 = 1,
|
|
5
|
+
PPL_02 = 2,
|
|
6
|
+
PPL_03 = 3,
|
|
7
|
+
PPL_04 = 4,
|
|
8
|
+
PPL_05 = 5,
|
|
9
|
+
PPL_06 = 6,
|
|
10
|
+
PPL_07 = 7,
|
|
11
|
+
PPL_08 = 8,
|
|
12
|
+
PPL_09 = 9,
|
|
13
|
+
PPL_10 = 10,
|
|
14
|
+
PPL_11 = 11,
|
|
15
|
+
PPL_12 = 12,
|
|
16
|
+
PPL_13 = 13,
|
|
17
|
+
PPL_14 = 14,
|
|
18
|
+
PPL_15 = 15,
|
|
19
|
+
PPL_16 = 16,
|
|
20
|
+
PPL_17 = 17,
|
|
21
|
+
PPL_18 = 18,
|
|
22
|
+
PPL_19 = 19,
|
|
23
|
+
PPL_20 = 20,
|
|
24
|
+
PPL_21 = 21,
|
|
25
|
+
PPL_22 = 22,
|
|
26
|
+
PPL_23 = 23,
|
|
27
|
+
PPL_24 = 24,
|
|
28
|
+
PPL_25 = 25,
|
|
29
|
+
PPL_26 = 26,
|
|
30
|
+
PPL_27 = 27,
|
|
31
|
+
PPL_28 = 28,
|
|
32
|
+
PPL_29 = 29,
|
|
33
|
+
PPL_30 = 30,
|
|
34
|
+
PPL_31 = 31,
|
|
35
|
+
PPL_32 = 32,
|
|
36
|
+
PPL_33 = 33,
|
|
37
|
+
PPL_34 = 34,
|
|
38
|
+
PPL_35 = 35,
|
|
39
|
+
PPL_36 = 36,
|
|
40
|
+
PPL_37 = 37,
|
|
41
|
+
PPL_38 = 38,
|
|
42
|
+
PPL_39 = 39,
|
|
43
|
+
PPL_AZM_01 = 51,
|
|
44
|
+
PPL_AZM_02 = 52,
|
|
45
|
+
PPL_AZM_03 = 53,
|
|
46
|
+
PPL_AZM_04 = 54,
|
|
47
|
+
PPL_AZM_05 = 55,
|
|
48
|
+
PPL_AZM_06 = 56,
|
|
49
|
+
PPL_AZM_07 = 57,
|
|
50
|
+
PPL_AZM_08 = 58,
|
|
51
|
+
PPL_AZM_09 = 59,
|
|
52
|
+
PPL_AZM_10 = 60,
|
|
53
|
+
PPL_AZM_11 = 61,
|
|
54
|
+
PPL_AZM_12 = 62,
|
|
55
|
+
PPL_AZM_13 = 63,
|
|
56
|
+
PPL_AZM_14 = 64,
|
|
57
|
+
PPL_AZM_15 = 65,
|
|
58
|
+
PPL_AZM_16 = 66,
|
|
59
|
+
CPL_01 = 101,
|
|
60
|
+
CPL_02 = 102,
|
|
61
|
+
CPL_03 = 103,
|
|
62
|
+
CPL_04 = 104,
|
|
63
|
+
CPL_05 = 105,
|
|
64
|
+
CPL_06 = 106,
|
|
65
|
+
CPL_07 = 107,
|
|
66
|
+
CPL_08 = 108,
|
|
67
|
+
CPL_09 = 109,
|
|
68
|
+
CPL_10 = 110,
|
|
69
|
+
CPL_11 = 111,
|
|
70
|
+
CPL_12 = 112,
|
|
71
|
+
CPL_13 = 113,
|
|
72
|
+
IFR_05_01 = 201,
|
|
73
|
+
IFR_05_02 = 202,
|
|
74
|
+
IFR_05_03 = 203,
|
|
75
|
+
IFR_05_04 = 204,
|
|
76
|
+
IFR_05_05 = 205,
|
|
77
|
+
IFR_20_01 = 221,
|
|
78
|
+
IFR_20_02 = 222,
|
|
79
|
+
IFR_20_03 = 223,
|
|
80
|
+
IFR_20_04 = 224,
|
|
81
|
+
IFR_20_05 = 225,
|
|
82
|
+
IFR_20_06 = 226,
|
|
83
|
+
IFR_20_07 = 227,
|
|
84
|
+
IFR_20_08 = 228,
|
|
85
|
+
IFR_20_09 = 229,
|
|
86
|
+
IFR_20_10 = 230,
|
|
87
|
+
IFR_20_11 = 231,
|
|
88
|
+
IFR_20_12 = 232,
|
|
89
|
+
IFR_20_13 = 233,
|
|
90
|
+
IFR_20_14 = 234,
|
|
91
|
+
IFR_20_15 = 235,
|
|
92
|
+
IFR_20_16 = 236,
|
|
93
|
+
IFR_20_17 = 237,
|
|
94
|
+
IFR_20_18 = 238
|
|
95
|
+
}
|
|
96
|
+
export declare function GetLessonSubjectCodes(): Tuple<LessonSubjectCode, string>[];
|
|
97
|
+
export declare function MapLessonSubjectCodes(): Map<LessonSubjectCode, string>;
|
package/lib/LookupGroup.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 { StatusCode } from '.';
|
|
1
2
|
import { MaintenanceActionCode } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
4
|
import { ColumnDef } from '.';
|
|
4
|
-
import { StatusCode } from '.';
|
|
5
5
|
export declare class Maintenance extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { BookingTypeFlag } from '.';
|
|
3
4
|
import { BookingSlots } from '.';
|
|
4
5
|
import { Booking } from '.';
|
|
5
|
-
import { BookingTypeFlag } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class MyBookingsEndPoint {
|
|
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 { PreFlightInfo } from '.';
|
|
4
|
-
import { PostFlightInfo } from '.';
|
|
5
3
|
import { Flight } from '.';
|
|
6
4
|
import { FlightPlan } from '.';
|
|
5
|
+
import { PreFlightInfo } from '.';
|
|
6
|
+
import { PostFlightInfo } 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,11 +1,11 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
|
-
import { FlightTypeCode } from '.';
|
|
3
1
|
import { FlightPurposeCode } from '.';
|
|
4
2
|
import { OnBoard } from '.';
|
|
5
3
|
import { TOLData } from '.';
|
|
6
4
|
import { ReFuel } from '.';
|
|
7
5
|
import { Lesson } from '.';
|
|
8
6
|
import { BaseEntityEx } from '.';
|
|
7
|
+
import { ColumnDef } from '.';
|
|
8
|
+
import { FlightTypeCode } 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,3 +1,4 @@
|
|
|
1
|
+
import { FlightPurposeCode } from '.';
|
|
1
2
|
import { OnBoard } from '.';
|
|
2
3
|
import { TOLData } from '.';
|
|
3
4
|
import { ReFuel } from '.';
|
|
@@ -5,7 +6,6 @@ import { Lesson } from '.';
|
|
|
5
6
|
import { BaseEntityEx } from '.';
|
|
6
7
|
import { ColumnDef } from '.';
|
|
7
8
|
import { FlightTypeCode } from '.';
|
|
8
|
-
import { FlightPurposeCode } 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 { TripRisks } from '.';
|
|
2
|
-
import { WeatherRisks } from '.';
|
|
3
|
-
import { SpecialRisks } from '.';
|
|
4
|
-
import { Mitigation } from '.';
|
|
5
1
|
import { PilotQualificationsRisks } from '.';
|
|
6
2
|
import { CrewDutyDayRisks } from '.';
|
|
7
3
|
import { DepartureRisks } from '.';
|
|
8
4
|
import { DestinationRisks } from '.';
|
|
5
|
+
import { TripRisks } from '.';
|
|
6
|
+
import { WeatherRisks } from '.';
|
|
7
|
+
import { SpecialRisks } from '.';
|
|
8
|
+
import { Mitigation } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/SystemConfig.d.ts
CHANGED
|
@@ -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/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { UserStatusCode } from '.';
|
|
2
|
+
import { BaseEntityEx } from '.';
|
|
1
3
|
import { ColumnDef } from '.';
|
|
2
4
|
import { UserTypeCode } from '.';
|
|
3
5
|
import { UserRoleFlag } from '.';
|
|
4
|
-
import { UserStatusCode } from '.';
|
|
5
|
-
import { BaseEntityEx } from '.';
|
|
6
6
|
export declare class User extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
email: string;
|