@aya-flights/ngx-goox-lib 2.18.106 → 2.18.107
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/esm2022/lib/Account.mjs +1 -1
- package/esm2022/lib/AccountsEndPoint.mjs +1 -1
- package/esm2022/lib/Airplane.mjs +2 -2
- package/esm2022/lib/AirplanesEndPoint.mjs +1 -1
- package/esm2022/lib/Booking.mjs +1 -1
- package/esm2022/lib/BookingPlan.mjs +1 -1
- package/esm2022/lib/BookingSlots.mjs +1 -1
- package/esm2022/lib/BookingSlotsEndPoint.mjs +1 -1
- package/esm2022/lib/BookingSlotsSet.mjs +2 -2
- package/esm2022/lib/CampaignsEndPoint.mjs +1 -1
- package/esm2022/lib/Certificate.mjs +1 -1
- package/esm2022/lib/CertificatesEndPoint.mjs +1 -1
- package/esm2022/lib/Contact.mjs +2 -2
- package/esm2022/lib/ContactsEndPoint.mjs +1 -1
- package/esm2022/lib/Credit.mjs +1 -1
- package/esm2022/lib/Enums.mjs +292 -289
- package/esm2022/lib/Flight.mjs +2 -8
- package/esm2022/lib/FlightBilling.mjs +1 -1
- package/esm2022/lib/FlightCategoryCode.mjs +18 -6
- package/esm2022/lib/FlightPlan.mjs +1 -1
- package/esm2022/lib/FlightRisk.mjs +1 -1
- package/esm2022/lib/FlightsEndPoint.mjs +1 -1
- package/esm2022/lib/FlightsFilter.mjs +1 -1
- package/esm2022/lib/MessageConfirm.mjs +1 -1
- package/esm2022/lib/MessageConfirmsEndPoint.mjs +1 -1
- package/esm2022/lib/MyBookingsEndPoint.mjs +1 -1
- package/esm2022/lib/MyFlightsEndPoint.mjs +1 -1
- package/esm2022/lib/PreFlightInfo.mjs +2 -8
- package/esm2022/lib/Price.mjs +1 -1
- package/esm2022/lib/SyllabusEndPoint.mjs +1 -1
- package/esm2022/lib/SystemMessage.mjs +1 -1
- package/esm2022/lib/SystemMessagesEndPoint.mjs +1 -1
- package/esm2022/lib/User.mjs +1 -1
- package/esm2022/lib/index.mjs +114 -114
- package/esm2022/lib/services.export.mjs +43 -43
- package/fesm2022/aya-flights-ngx-goox-lib.mjs +5124 -5121
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +1 -1
- package/lib/AccountsEndPoint.d.ts +6 -6
- package/lib/Airplane.d.ts +5 -5
- package/lib/AirplanesEndPoint.d.ts +6 -6
- package/lib/Booking.d.ts +2 -2
- package/lib/BookingPlan.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/CampaignsEndPoint.d.ts +1 -1
- package/lib/Certificate.d.ts +2 -2
- package/lib/CertificatesEndPoint.d.ts +1 -1
- package/lib/Contact.d.ts +3 -3
- package/lib/ContactsEndPoint.d.ts +6 -6
- package/lib/Credit.d.ts +2 -2
- package/lib/Flight.d.ts +8 -18
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightCategoryCode.d.ts +5 -2
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +4 -4
- package/lib/FlightsEndPoint.d.ts +7 -7
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/MessageConfirm.d.ts +2 -2
- package/lib/MessageConfirmsEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +2 -2
- package/lib/MyFlightsEndPoint.d.ts +4 -4
- package/lib/PreFlightInfo.d.ts +1 -3
- package/lib/Price.d.ts +1 -1
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/index.d.ts +113 -113
- package/lib/services.export.d.ts +22 -22
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { AccountTypeCode } from '.';
|
|
2
1
|
import { AccountStatusCode } from '.';
|
|
3
2
|
import { Address } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
5
4
|
import { ColumnDef } from '.';
|
|
5
|
+
import { AccountTypeCode } 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 {
|
|
4
|
-
import { AccountStatusCode } from '.';
|
|
3
|
+
import { Document } from '.';
|
|
5
4
|
import { StringKeyValue } from '.';
|
|
6
|
-
import { FlightTypeCode } from '.';
|
|
7
5
|
import { FlightStatusCode } from '.';
|
|
8
|
-
import { FlightPurposeCode } from '.';
|
|
9
6
|
import { Flight } from '.';
|
|
10
|
-
import {
|
|
11
|
-
import { Document } from '.';
|
|
7
|
+
import { FlightPurposeCode } from '.';
|
|
12
8
|
import { FlightStateCode } from '.';
|
|
9
|
+
import { Account } from '.';
|
|
10
|
+
import { Credit } from '.';
|
|
11
|
+
import { AccountStatusCode } from '.';
|
|
12
|
+
import { FlightTypeCode } 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 { AirplaneStatusCode } from '.';
|
|
2
|
+
import { AirplaneValidationFlag } from '.';
|
|
1
3
|
import { Engine } from '.';
|
|
4
|
+
import { Magneto } from '.';
|
|
2
5
|
import { Propeller } from '.';
|
|
3
6
|
import { Fuel } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
|
-
import { TypeRatingFlag } from '.';
|
|
6
|
-
import { AirplaneValidationFlag } from '.';
|
|
7
|
-
import { Magneto } from '.';
|
|
8
7
|
import { ColumnDef } from '.';
|
|
9
|
-
import {
|
|
8
|
+
import { TypeRatingFlag } from '.';
|
|
9
|
+
import { BaseEntityEx } 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 {
|
|
4
|
-
import {
|
|
5
|
-
import { FlightStateCode } from '.';
|
|
3
|
+
import { Airplane } from '.';
|
|
4
|
+
import { FlightPurposeCode } from '.';
|
|
6
5
|
import { Document } from '.';
|
|
6
|
+
import { StringKeyValue } from '.';
|
|
7
|
+
import { FlightStateCode } from '.';
|
|
7
8
|
import { StatusCode } from '.';
|
|
8
|
-
import { Airplane } from '.';
|
|
9
9
|
import { AirplaneStatusCode } from '.';
|
|
10
10
|
import { FlightTypeCode } from '.';
|
|
11
|
-
import {
|
|
11
|
+
import { Flight } from '.';
|
|
12
12
|
import { MaintenanceActionCode } from '.';
|
|
13
13
|
import { FlightStatusCode } from '.';
|
|
14
|
-
import {
|
|
14
|
+
import { Maintenance } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
private config;
|
package/lib/Booking.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { BookingTypeFlag } from '.';
|
|
4
2
|
import { BookingStatusCode } from '.';
|
|
3
|
+
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 { FlightStatusCode } from '.';
|
|
2
1
|
import { BaseEntityEx } from '.';
|
|
3
2
|
import { ColumnDef } from '.';
|
|
4
3
|
import { BookingTypeFlag } from '.';
|
|
5
4
|
import { FlightPurposeCode } from '.';
|
|
5
|
+
import { FlightStatusCode } 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;
|
package/lib/BookingSlotsSet.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { StringKeyValue } from '.';
|
|
4
3
|
import { Campaign } from '.';
|
|
4
|
+
import { StringKeyValue } 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 { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { ValidationFlag } from '.';
|
|
4
2
|
import { StatusCode } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Certificate extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
type: ValidationFlag;
|
|
@@ -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,12 +1,12 @@
|
|
|
1
|
+
import { LicenseKindFlag } from '.';
|
|
2
|
+
import { BaseEntityEx } from '.';
|
|
1
3
|
import { MedicalCertClassCode } from '.';
|
|
4
|
+
import { ValidationFlag } from '.';
|
|
2
5
|
import { FlightCategoryCode } from '.';
|
|
3
6
|
import { ColumnDef } from '.';
|
|
4
7
|
import { AccountStatusCode } from '.';
|
|
5
8
|
import { Address } from '.';
|
|
6
|
-
import { LicenseKindFlag } from '.';
|
|
7
9
|
import { TypeRatingFlag } from '.';
|
|
8
|
-
import { ValidationFlag } from '.';
|
|
9
|
-
import { BaseEntityEx } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
11
11
|
accountId: string;
|
|
12
12
|
name: string;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightStateCode } from '.';
|
|
4
|
-
import { FlightPurposeCode } from '.';
|
|
5
|
-
import { Flight } from '.';
|
|
6
3
|
import { Contact } from '.';
|
|
4
|
+
import { FlightPurposeCode } from '.';
|
|
5
|
+
import { Document } from '.';
|
|
6
|
+
import { StatusCode } from '.';
|
|
7
7
|
import { StringKeyValue } from '.';
|
|
8
|
+
import { FlightTypeCode } from '.';
|
|
9
|
+
import { FlightStateCode } from '.';
|
|
8
10
|
import { MessageConfirm } from '.';
|
|
9
|
-
import { Document } from '.';
|
|
10
11
|
import { Certificate } from '.';
|
|
12
|
+
import { Flight } from '.';
|
|
11
13
|
import { FlightStatusCode } from '.';
|
|
12
|
-
import { StatusCode } from '.';
|
|
13
|
-
import { FlightTypeCode } 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 '.';
|
|
2
|
-
import { CurrencyCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { TransactionTypeCode } from '.';
|
|
4
|
+
import { CurrencyCode } 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,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { FlightPurposeCode } from '.';
|
|
3
|
-
import { FlightStatusCode } from '.';
|
|
4
|
-
import { ReFuel } from '.';
|
|
5
|
-
import { FlightClassCode } from '.';
|
|
6
|
-
import { FlightTypeCode } from '.';
|
|
1
|
+
import { BillingStatusCode } from '.';
|
|
7
2
|
import { TOLData } from '.';
|
|
8
3
|
import { Lesson } from '.';
|
|
9
|
-
import { RiskAssessment } from '.';
|
|
10
4
|
import { BaseEntityEx } from '.';
|
|
11
|
-
import {
|
|
5
|
+
import { FlightClassCode } from '.';
|
|
12
6
|
import { FlightCategoryCode } from '.';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
7
|
+
import { FlightStatusCode } from '.';
|
|
8
|
+
import { RiskAssessment } from '.';
|
|
9
|
+
import { ColumnDef } from '.';
|
|
10
|
+
import { FlightPurposeCode } from '.';
|
|
11
|
+
import { FlightTypeCode } from '.';
|
|
16
12
|
export declare class Flight extends BaseEntityEx {
|
|
17
13
|
name: string;
|
|
18
14
|
description: string;
|
|
@@ -26,14 +22,12 @@ export declare class Flight extends BaseEntityEx {
|
|
|
26
22
|
firstOfficer: string;
|
|
27
23
|
passengers: string[];
|
|
28
24
|
crew: string[];
|
|
29
|
-
onBoard: OnBoard;
|
|
30
25
|
purpose: FlightPurposeCode;
|
|
31
26
|
purposeOt: string;
|
|
32
27
|
flightClass: FlightClassCode;
|
|
33
28
|
flightCategory: FlightCategoryCode;
|
|
34
29
|
type: FlightTypeCode;
|
|
35
30
|
status: FlightStatusCode;
|
|
36
|
-
state: FlightStateCode;
|
|
37
31
|
billingStatus: BillingStatusCode;
|
|
38
32
|
attendingTime: string;
|
|
39
33
|
boardingTime: string;
|
|
@@ -41,20 +35,16 @@ export declare class Flight extends BaseEntityEx {
|
|
|
41
35
|
landing: TOLData;
|
|
42
36
|
wbConfig: string;
|
|
43
37
|
wbManual: string;
|
|
44
|
-
hasCompetency: boolean;
|
|
45
|
-
hasFlightPlan: boolean;
|
|
46
38
|
preFlightNotes: string;
|
|
47
39
|
operationNotes: string;
|
|
48
|
-
fuelStatus: ReFuel;
|
|
49
|
-
oilStatus: ReFuel;
|
|
50
40
|
fuelLevel: number;
|
|
51
41
|
oilLevel: number;
|
|
52
42
|
lesson: Lesson;
|
|
53
|
-
billing: Billing;
|
|
54
43
|
pilotCertCheck: number;
|
|
55
44
|
riskAssessment: RiskAssessment;
|
|
56
45
|
preFlightReporter: string;
|
|
57
46
|
postFlightReporter: string;
|
|
47
|
+
instructorReporter: string;
|
|
58
48
|
bookingReference: string;
|
|
59
49
|
get(field: string): any;
|
|
60
50
|
}
|
package/lib/FlightBilling.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export declare enum FlightCategoryCode {
|
|
|
4
4
|
COMMERCIAL_PHOTO = 65,
|
|
5
5
|
COMMERCIAL_TAXI = 66,
|
|
6
6
|
COMMERCIAL_OTHER = 67,
|
|
7
|
+
COMMERCIAL_TRANSFER = 68,
|
|
7
8
|
EXAM_ANN_PROFICIENCY = 257,
|
|
8
9
|
EXAM_ANN_IFR = 258,
|
|
9
10
|
EXAM_CAA_PPL = 259,
|
|
@@ -26,8 +27,10 @@ export declare enum FlightCategoryCode {
|
|
|
26
27
|
INSTRUCTION_CPL_20 = 525,
|
|
27
28
|
INSTRUCTION_IFR_20 = 526,
|
|
28
29
|
INSTRUCTION_PPL_25 = 527,
|
|
29
|
-
|
|
30
|
-
|
|
30
|
+
INSTRUCTION_ADD_RATING = 540,
|
|
31
|
+
MAINTENANCE_ENGINE_RUNNING = 1025,
|
|
32
|
+
MAINTENANCE_TRANSFER = 1026,
|
|
33
|
+
OTHER = 2048
|
|
31
34
|
}
|
|
32
35
|
export declare function GetFlightCategoryCodes(): Tuple<FlightCategoryCode, string>[];
|
|
33
36
|
export declare function MapFlightCategoryCodes(): Map<FlightCategoryCode, 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,12 +1,12 @@
|
|
|
1
|
-
import { Mitigation } from '.';
|
|
2
|
-
import { CrewDutyDayRisks } from '.';
|
|
3
|
-
import { DestinationRisks } from '.';
|
|
4
|
-
import { WeatherRisks } from '.';
|
|
5
1
|
import { SpecialRisks } from '.';
|
|
2
|
+
import { Mitigation } from '.';
|
|
6
3
|
import { ColumnDef } from '.';
|
|
7
4
|
import { PilotQualificationsRisks } from '.';
|
|
8
5
|
import { DepartureRisks } from '.';
|
|
6
|
+
import { DestinationRisks } from '.';
|
|
9
7
|
import { TripRisks } from '.';
|
|
8
|
+
import { CrewDutyDayRisks } from '.';
|
|
9
|
+
import { WeatherRisks } from '.';
|
|
10
10
|
import { BaseEntityEx } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
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 { FlightStatusCode } from '.';
|
|
4
|
-
import { FlightPurposeCode } from '.';
|
|
5
|
-
import { PostFlightInfo } from '.';
|
|
6
3
|
import { BillingStatusCode } from '.';
|
|
7
|
-
import {
|
|
4
|
+
import { FlightPurposeCode } from '.';
|
|
8
5
|
import { TimeSeries } from '.';
|
|
6
|
+
import { PostFlightInfo } from '.';
|
|
7
|
+
import { Flight } from '.';
|
|
8
|
+
import { FlightStatusCode } from '.';
|
|
9
9
|
import { FlightPlan } from '.';
|
|
10
|
-
import { PreFlightInfo } from '.';
|
|
11
10
|
import { Contact } from '.';
|
|
12
|
-
import { Flight } from '.';
|
|
13
|
-
import { AnyKeyValue } from '.';
|
|
14
11
|
import { FlightTypeCode } from '.';
|
|
12
|
+
import { FlightTicket } from '.';
|
|
13
|
+
import { PreFlightInfo } from '.';
|
|
14
|
+
import { AnyKeyValue } 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 { FlightTypeCode } from '.';
|
|
2
|
+
import { FlightStatusCode } from '.';
|
|
1
3
|
import { BillingStatusCode } from '.';
|
|
2
4
|
import { FlightPurposeCode } from '.';
|
|
3
5
|
import { TimeFrame } from '.';
|
|
4
|
-
import { FlightTypeCode } from '.';
|
|
5
|
-
import { FlightStatusCode } from '.';
|
|
6
6
|
export declare class FlightsFilter {
|
|
7
7
|
search: string;
|
|
8
8
|
period: TimeFrame;
|
package/lib/MessageConfirm.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { ConfirmStatusCode } from '.';
|
|
2
|
+
import { MessageTypeCode } from '.';
|
|
1
3
|
import { PriorityCode } from '.';
|
|
2
4
|
import { BaseEntityEx } from '.';
|
|
3
5
|
import { ColumnDef } from '.';
|
|
4
|
-
import { ConfirmStatusCode } from '.';
|
|
5
|
-
import { MessageTypeCode } from '.';
|
|
6
6
|
export declare class MessageConfirm extends BaseEntityEx {
|
|
7
7
|
messageId: string;
|
|
8
8
|
contactId: string;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { MessageConfirm } from '.';
|
|
4
3
|
import { MessageTypeCode } from '.';
|
|
5
4
|
import { ConfirmStatusCode } from '.';
|
|
6
5
|
import { PriorityCode } from '.';
|
|
6
|
+
import { MessageConfirm } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MessageConfirmsEndPoint {
|
|
9
9
|
private config;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Booking } from '.';
|
|
4
|
+
import { BookingStatusCode } from '.';
|
|
3
5
|
import { BookingTypeFlag } from '.';
|
|
4
6
|
import { Lookup } from '.';
|
|
5
7
|
import { BookingSlot } from '.';
|
|
6
|
-
import { Booking } from '.';
|
|
7
|
-
import { BookingStatusCode } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class MyBookingsEndPoint {
|
|
10
10
|
private config;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { PostFlightInfo } from '.';
|
|
4
|
+
import { InstructionTypeCode } from '.';
|
|
5
|
+
import { PreFlightInfo } from '.';
|
|
6
|
+
import { FlightTypeCode } from '.';
|
|
3
7
|
import { FlightStatusCode } from '.';
|
|
4
8
|
import { FlightPlan } from '.';
|
|
5
9
|
import { Syllabus } from '.';
|
|
6
10
|
import { Flight } from '.';
|
|
7
|
-
import { FlightTypeCode } from '.';
|
|
8
|
-
import { InstructionTypeCode } from '.';
|
|
9
|
-
import { PreFlightInfo } from '.';
|
|
10
|
-
import { PostFlightInfo } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class MyFlightsEndPoint {
|
|
13
13
|
private config;
|
package/lib/PreFlightInfo.d.ts
CHANGED
|
@@ -30,8 +30,6 @@ export declare class PreFlightInfo {
|
|
|
30
30
|
lessonFlightCounter: number;
|
|
31
31
|
preFlightNotes: string;
|
|
32
32
|
operationNotes: string;
|
|
33
|
-
hasCompetency: boolean;
|
|
34
|
-
hasFlightPlan: boolean;
|
|
35
33
|
reportedBy: string;
|
|
36
|
-
constructor(flightId?: string, flightNumber?: number, airplane?: string, hoursToInspection?: number, takeoffPlannedTime?: number, takeoffActualTime?: number, takeoffField?: string, landingField?: string, purpose?: FlightPurposeCode, purposeOt?: string, type?: FlightTypeCode, destination?: string, secondaryCallSign?: string, captain?: string, firstOfficer?: string, captainName?: string, firstOfficerName?: string, estimatedFuelOnBoard?: number, estimatedEndurance?: number, actualFuelOnBoard?: number, actualOilOnBoard?: number, passengers?: string[], crew?: string[], wBConfig?: string, wBManual?: string, lessonSubject?: string, lessonFlightCounter?: number, preFlightNotes?: string, operationNotes?: string,
|
|
34
|
+
constructor(flightId?: string, flightNumber?: number, airplane?: string, hoursToInspection?: number, takeoffPlannedTime?: number, takeoffActualTime?: number, takeoffField?: string, landingField?: string, purpose?: FlightPurposeCode, purposeOt?: string, type?: FlightTypeCode, destination?: string, secondaryCallSign?: string, captain?: string, firstOfficer?: string, captainName?: string, firstOfficerName?: string, estimatedFuelOnBoard?: number, estimatedEndurance?: number, actualFuelOnBoard?: number, actualOilOnBoard?: number, passengers?: string[], crew?: string[], wBConfig?: string, wBManual?: string, lessonSubject?: string, lessonFlightCounter?: number, preFlightNotes?: string, operationNotes?: string, reportedBy?: string);
|
|
37
35
|
}
|
package/lib/Price.d.ts
CHANGED
|
@@ -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/SystemMessage.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { PriorityCode } from '.';
|
|
1
2
|
import { BaseEntityEx } from '.';
|
|
2
3
|
import { ColumnDef } from '.';
|
|
3
4
|
import { MessageTypeCode } from '.';
|
|
4
|
-
import { PriorityCode } from '.';
|
|
5
5
|
export declare class SystemMessage extends BaseEntityEx {
|
|
6
6
|
subject: 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 { MessageConfirm } from '.';
|
|
4
3
|
import { SystemMessage } from '.';
|
|
5
4
|
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/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UserRoleFlag } from '.';
|
|
2
|
-
import { UserStatusCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
5
3
|
import { UserTypeCode } from '.';
|
|
4
|
+
import { UserRoleFlag } from '.';
|
|
5
|
+
import { UserStatusCode } from '.';
|
|
6
6
|
export declare class User extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
email: string;
|