@aya-flights/ngx-goox-lib 2.19.2 → 2.19.4
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 +4341 -3859
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +1 -1
- package/lib/Airplane.d.ts +1 -1
- package/lib/AirplanesEndPoint.d.ts +3 -3
- package/lib/AuditLog.d.ts +1 -1
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingFilter.d.ts +1 -1
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/BookingSlotsSet.d.ts +1 -1
- package/lib/BookingStatusCode.d.ts +4 -3
- package/lib/BookingsEndPoint.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 +1 -1
- package/lib/ContactsEndPoint.d.ts +2 -2
- package/lib/Credit.d.ts +1 -1
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +6 -6
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightFilter.d.ts +1 -1
- package/lib/FlightPlan.d.ts +1 -1
- package/lib/FlightRisk.d.ts +3 -3
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +4 -4
- package/lib/Group.d.ts +1 -1
- package/lib/Lesson.d.ts +3 -1
- package/lib/LessonSubjectCode.d.ts +97 -0
- package/lib/Lookup.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 +1 -1
- package/lib/PostFlightInfo.d.ts +1 -1
- package/lib/PreFlightData.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +4 -4
- package/lib/TokenData.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/UserFilter.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +103 -102
- package/lib/services.export.d.ts +21 -21
- package/package.json +1 -1
|
@@ -2,9 +2,9 @@ import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../u
|
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { StringKeyValue } from '.';
|
|
4
4
|
import { Document } from '.';
|
|
5
|
+
import { Account } from '.';
|
|
5
6
|
import { Flight } from '.';
|
|
6
7
|
import { Credit } from '.';
|
|
7
|
-
import { Account } 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,4 +1,3 @@
|
|
|
1
|
-
import { AirplaneStatusCode } from '.';
|
|
2
1
|
import { AirplaneValidationFlag } from '.';
|
|
3
2
|
import { Engine } from '.';
|
|
4
3
|
import { Magneto } from '.';
|
|
@@ -6,6 +5,7 @@ import { Propeller } from '.';
|
|
|
6
5
|
import { Fuel } from '.';
|
|
7
6
|
import { BaseEntityEx } from '.';
|
|
8
7
|
import { ColumnDef } from '.';
|
|
8
|
+
import { AirplaneStatusCode } from '.';
|
|
9
9
|
export declare class Airplane extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import { Flight } from '.';
|
|
3
|
+
import { StringKeyValue } from '.';
|
|
5
4
|
import { Document } from '.';
|
|
6
5
|
import { Maintenance } from '.';
|
|
7
|
-
import {
|
|
6
|
+
import { Airplane } from '.';
|
|
7
|
+
import { Flight } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AirplanesEndPoint {
|
|
10
10
|
private config;
|
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/BookingFilter.d.ts
CHANGED
package/lib/BookingSlots.d.ts
CHANGED
package/lib/BookingSlotsSet.d.ts
CHANGED
|
@@ -5,9 +5,10 @@ export declare enum BookingStatusCode {
|
|
|
5
5
|
APPROVED = 2,
|
|
6
6
|
REJECTED = 3,
|
|
7
7
|
CONFIRMED = 4,
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
FLIGHT_LAUNCHED = 5,
|
|
9
|
+
FLIGHT_CANCELLED = 6,
|
|
10
|
+
FLIGHT_COMPLETED = 7,
|
|
11
|
+
FLIGHT_ABORTED = 8
|
|
11
12
|
}
|
|
12
13
|
export declare function GetBookingStatusCodes(): Tuple<BookingStatusCode, string>[];
|
|
13
14
|
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 { ColumnDef } from '.';
|
|
2
1
|
import { CampaignTypeCode } from '.';
|
|
3
2
|
import { CampaignStatusCode } from '.';
|
|
4
3
|
import { CurrencyCode } from '.';
|
|
5
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
1
|
import { StatusCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { ValidationFlag } 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
|
-
import { Contact } from '.';
|
|
4
3
|
import { StringKeyValue } from '.';
|
|
4
|
+
import { MessageConfirm } from '.';
|
|
5
|
+
import { Contact } from '.';
|
|
5
6
|
import { Certificate } from '.';
|
|
6
7
|
import { Flight } from '.';
|
|
7
|
-
import { MessageConfirm } from '.';
|
|
8
8
|
import { Document } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class ContactsEndPoint {
|
package/lib/Credit.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { TransactionTypeCode } from '.';
|
|
2
1
|
import { CurrencyCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
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/Document.d.ts
CHANGED
package/lib/Flight.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
+
import { Lesson } from '.';
|
|
2
|
+
import { FlightTypeCode } from '.';
|
|
1
3
|
import { FlightStateCode } from '.';
|
|
2
4
|
import { BillingStatusCode } from '.';
|
|
3
|
-
import {
|
|
5
|
+
import { FlightPurposeCode } from '.';
|
|
6
|
+
import { OnBoard } from '.';
|
|
7
|
+
import { TOLData } from '.';
|
|
8
|
+
import { ReFuel } from '.';
|
|
4
9
|
import { Billing } from '.';
|
|
5
10
|
import { RiskAssessment } from '.';
|
|
6
11
|
import { BaseEntityEx } from '.';
|
|
7
12
|
import { ColumnDef } from '.';
|
|
8
|
-
import { FlightTypeCode } from '.';
|
|
9
13
|
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 { FlightStatusCode } from '.';
|
|
1
2
|
import { BillingStatusCode } from '.';
|
|
2
3
|
import { FlightPurposeCode } from '.';
|
|
3
4
|
import { TimeFrame } from '.';
|
|
4
5
|
import { FlightTypeCode } from '.';
|
|
5
|
-
import { FlightStatusCode } 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
1
|
import { DestinationRisks } from '.';
|
|
3
2
|
import { SpecialRisks } from '.';
|
|
3
|
+
import { Mitigation } from '.';
|
|
4
4
|
import { ColumnDef } from '.';
|
|
5
5
|
import { PilotQualificationsRisks } from '.';
|
|
6
6
|
import { DepartureRisks } from '.';
|
|
7
|
-
import { TripRisks } from '.';
|
|
8
7
|
import { WeatherRisks } from '.';
|
|
9
|
-
import { Mitigation } from '.';
|
|
10
8
|
import { BaseEntityEx } from '.';
|
|
9
|
+
import { CrewDutyDayRisks } from '.';
|
|
10
|
+
import { TripRisks } 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 '.';
|
|
4
|
+
import { TimeSeries } from '.';
|
|
5
|
+
import { Contact } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
3
7
|
import { PreFlightInfo } from '.';
|
|
4
8
|
import { PostFlightInfo } from '.';
|
|
5
|
-
import { Flight } from '.';
|
|
6
|
-
import { TimeSeries } from '.';
|
|
7
9
|
import { FlightPlan } from '.';
|
|
8
10
|
import { FlightTicket } from '.';
|
|
9
|
-
import { Contact } from '.';
|
|
10
|
-
import { AnyKeyValue } 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/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 { MaintenanceActionCode } from '.';
|
|
2
1
|
import { BaseEntityEx } from '.';
|
|
3
2
|
import { ColumnDef } from '.';
|
|
4
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,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,4 +1,3 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { FlightTypeCode } from '.';
|
|
3
2
|
import { FlightPurposeCode } from '.';
|
|
4
3
|
import { OnBoard } from '.';
|
|
@@ -6,6 +5,7 @@ import { TOLData } from '.';
|
|
|
6
5
|
import { ReFuel } from '.';
|
|
7
6
|
import { Lesson } from '.';
|
|
8
7
|
import { BaseEntityEx } from '.';
|
|
8
|
+
import { ColumnDef } 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/TokenData.d.ts
CHANGED
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;
|
package/lib/UserFilter.d.ts
CHANGED
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;
|