@aya-flights/ngx-goox-lib 2.18.105 → 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 +1 -1
- package/esm2022/lib/AirplanesEndPoint.mjs +1 -1
- package/esm2022/lib/BookingPlan.mjs +1 -1
- package/esm2022/lib/BookingSlots.mjs +1 -1
- package/esm2022/lib/BookingsEndPoint.mjs +1 -1
- package/esm2022/lib/Campaign.mjs +2 -2
- package/esm2022/lib/CampaignsEndPoint.mjs +1 -1
- package/esm2022/lib/CertificatesFilter.mjs +1 -1
- package/esm2022/lib/Contact.mjs +1 -1
- package/esm2022/lib/ContactsEndPoint.mjs +1 -1
- package/esm2022/lib/Credit.mjs +1 -1
- package/esm2022/lib/Enums.mjs +235 -232
- package/esm2022/lib/Flight.mjs +4 -6
- package/esm2022/lib/FlightBilling.mjs +1 -1
- package/esm2022/lib/FlightCategoryCode.mjs +18 -6
- package/esm2022/lib/FlightPassenger.mjs +2 -2
- package/esm2022/lib/FlightPlan.mjs +1 -1
- package/esm2022/lib/FlightRisk.mjs +1 -1
- package/esm2022/lib/FlightTicketsEndPoint.mjs +1 -1
- package/esm2022/lib/FlightsEndPoint.mjs +1 -1
- package/esm2022/lib/FlightsFilter.mjs +1 -1
- package/esm2022/lib/Group.mjs +1 -1
- package/esm2022/lib/Lesson.mjs +1 -1
- package/esm2022/lib/LogBookRecord.mjs +2 -2
- package/esm2022/lib/LookupGroup.mjs +2 -2
- package/esm2022/lib/Maintenance.mjs +1 -1
- package/esm2022/lib/MessageConfirmsEndPoint.mjs +1 -1
- package/esm2022/lib/MyAuthEndPoint.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/SystemConfig.mjs +2 -2
- package/esm2022/lib/SystemMessage.mjs +1 -1
- package/esm2022/lib/User.mjs +1 -1
- package/esm2022/lib/UserEndPoint.mjs +1 -1
- package/esm2022/lib/UsersEndPoint.mjs +1 -1
- package/esm2022/lib/index.mjs +116 -116
- package/esm2022/lib/services.export.mjs +37 -37
- package/fesm2022/aya-flights-ngx-goox-lib.mjs +4229 -4222
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +1 -1
- package/lib/AccountsEndPoint.d.ts +5 -5
- package/lib/Airplane.d.ts +5 -5
- package/lib/AirplanesEndPoint.d.ts +8 -8
- package/lib/BookingPlan.d.ts +2 -2
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +2 -2
- package/lib/Campaign.d.ts +1 -1
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/CertificatesFilter.d.ts +1 -1
- package/lib/Contact.d.ts +4 -4
- package/lib/ContactsEndPoint.d.ts +5 -5
- package/lib/Credit.d.ts +2 -2
- package/lib/Flight.d.ts +10 -15
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightCategoryCode.d.ts +5 -2
- package/lib/FlightPassenger.d.ts +1 -1
- package/lib/FlightPlan.d.ts +2 -2
- package/lib/FlightRisk.d.ts +5 -5
- package/lib/FlightTicketsEndPoint.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +7 -7
- package/lib/FlightsFilter.d.ts +1 -1
- package/lib/Group.d.ts +1 -1
- package/lib/Lesson.d.ts +1 -1
- package/lib/LogBookRecord.d.ts +1 -1
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/Maintenance.d.ts +2 -2
- package/lib/MessageConfirmsEndPoint.d.ts +1 -1
- package/lib/MyAuthEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +1 -1
- package/lib/PreFlightInfo.d.ts +2 -4
- package/lib/Price.d.ts +1 -1
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/SystemConfig.d.ts +1 -1
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/UserEndPoint.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +2 -2
- package/lib/index.d.ts +115 -115
- package/lib/services.export.d.ts +19 -19
- 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,14 +1,14 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
3
|
+
import { Document } from '.';
|
|
4
4
|
import { StringKeyValue } from '.';
|
|
5
|
+
import { FlightStatusCode } from '.';
|
|
5
6
|
import { Flight } from '.';
|
|
6
|
-
import { Document } from '.';
|
|
7
|
-
import { Account } from '.';
|
|
8
|
-
import { FlightStateCode } from '.';
|
|
9
7
|
import { FlightPurposeCode } from '.';
|
|
8
|
+
import { FlightStateCode } from '.';
|
|
9
|
+
import { Account } from '.';
|
|
10
10
|
import { Credit } from '.';
|
|
11
|
-
import {
|
|
11
|
+
import { AccountStatusCode } from '.';
|
|
12
12
|
import { FlightTypeCode } from '.';
|
|
13
13
|
import * as i0 from "@angular/core";
|
|
14
14
|
export declare class AccountsEndPoint {
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { Magneto } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
|
-
import { TypeRatingFlag } from '.';
|
|
4
1
|
import { AirplaneStatusCode } from '.';
|
|
2
|
+
import { AirplaneValidationFlag } from '.';
|
|
3
|
+
import { Engine } from '.';
|
|
4
|
+
import { Magneto } from '.';
|
|
5
5
|
import { Propeller } from '.';
|
|
6
6
|
import { Fuel } from '.';
|
|
7
|
+
import { ColumnDef } from '.';
|
|
8
|
+
import { TypeRatingFlag } from '.';
|
|
7
9
|
import { BaseEntityEx } from '.';
|
|
8
|
-
import { AirplaneValidationFlag } from '.';
|
|
9
|
-
import { Engine } 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
3
|
import { Airplane } from '.';
|
|
4
|
-
import { FlightTypeCode } from '.';
|
|
5
|
-
import { FlightStatusCode } from '.';
|
|
6
|
-
import { FlightStateCode } from '.';
|
|
7
4
|
import { FlightPurposeCode } from '.';
|
|
8
|
-
import {
|
|
5
|
+
import { Document } from '.';
|
|
6
|
+
import { StringKeyValue } from '.';
|
|
7
|
+
import { FlightStateCode } from '.';
|
|
9
8
|
import { StatusCode } from '.';
|
|
10
|
-
import { Maintenance } from '.';
|
|
11
|
-
import { MaintenanceActionCode } from '.';
|
|
12
9
|
import { AirplaneStatusCode } from '.';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
10
|
+
import { FlightTypeCode } from '.';
|
|
11
|
+
import { Flight } from '.';
|
|
12
|
+
import { MaintenanceActionCode } from '.';
|
|
13
|
+
import { FlightStatusCode } from '.';
|
|
14
|
+
import { Maintenance } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
private config;
|
package/lib/BookingPlan.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
1
3
|
import { BookingTypeFlag } from '.';
|
|
2
4
|
import { FlightPurposeCode } from '.';
|
|
3
5
|
import { FlightStatusCode } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
6
|
export declare class BookingPlan extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
package/lib/BookingSlots.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Booking } from '.';
|
|
4
|
-
import { BookingStatusCode } from '.';
|
|
5
3
|
import { TimeSeries } from '.';
|
|
6
4
|
import { BookingPlan } from '.';
|
|
5
|
+
import { Booking } from '.';
|
|
6
|
+
import { BookingStatusCode } 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 { 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 { 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/Contact.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { AccountStatusCode } from '.';
|
|
2
|
-
import { Address } from '.';
|
|
3
|
-
import { TypeRatingFlag } from '.';
|
|
4
1
|
import { LicenseKindFlag } from '.';
|
|
5
|
-
import { MedicalCertClassCode } from '.';
|
|
6
2
|
import { BaseEntityEx } from '.';
|
|
3
|
+
import { MedicalCertClassCode } from '.';
|
|
7
4
|
import { ValidationFlag } from '.';
|
|
8
5
|
import { FlightCategoryCode } from '.';
|
|
9
6
|
import { ColumnDef } from '.';
|
|
7
|
+
import { AccountStatusCode } from '.';
|
|
8
|
+
import { Address } from '.';
|
|
9
|
+
import { TypeRatingFlag } 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
3
|
import { Contact } from '.';
|
|
4
|
+
import { FlightPurposeCode } from '.';
|
|
5
|
+
import { Document } from '.';
|
|
4
6
|
import { StatusCode } from '.';
|
|
7
|
+
import { StringKeyValue } from '.';
|
|
5
8
|
import { FlightTypeCode } from '.';
|
|
6
9
|
import { FlightStateCode } from '.';
|
|
7
|
-
import {
|
|
8
|
-
import { StringKeyValue } from '.';
|
|
9
|
-
import { FlightStatusCode } from '.';
|
|
10
|
-
import { Document } from '.';
|
|
10
|
+
import { MessageConfirm } from '.';
|
|
11
11
|
import { Certificate } from '.';
|
|
12
12
|
import { Flight } from '.';
|
|
13
|
-
import {
|
|
13
|
+
import { FlightStatusCode } 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,17 +1,14 @@
|
|
|
1
|
-
import { Lesson } from '.';
|
|
2
|
-
import { FlightTypeCode } from '.';
|
|
3
|
-
import { FlightStateCode } from '.';
|
|
4
1
|
import { BillingStatusCode } from '.';
|
|
5
|
-
import { RiskAssessment } from '.';
|
|
6
|
-
import { FlightStatusCode } from '.';
|
|
7
|
-
import { FlightCategoryCode } from '.';
|
|
8
2
|
import { TOLData } from '.';
|
|
3
|
+
import { Lesson } from '.';
|
|
9
4
|
import { BaseEntityEx } from '.';
|
|
10
|
-
import { FlightPurposeCode } from '.';
|
|
11
|
-
import { OnBoard } from '.';
|
|
12
|
-
import { Billing } from '.';
|
|
13
|
-
import { ColumnDef } from '.';
|
|
14
5
|
import { FlightClassCode } from '.';
|
|
6
|
+
import { FlightCategoryCode } from '.';
|
|
7
|
+
import { FlightStatusCode } from '.';
|
|
8
|
+
import { RiskAssessment } from '.';
|
|
9
|
+
import { ColumnDef } from '.';
|
|
10
|
+
import { FlightPurposeCode } from '.';
|
|
11
|
+
import { FlightTypeCode } from '.';
|
|
15
12
|
export declare class Flight extends BaseEntityEx {
|
|
16
13
|
name: string;
|
|
17
14
|
description: string;
|
|
@@ -23,33 +20,31 @@ export declare class Flight extends BaseEntityEx {
|
|
|
23
20
|
airplaneId: string;
|
|
24
21
|
captain: string;
|
|
25
22
|
firstOfficer: string;
|
|
23
|
+
passengers: string[];
|
|
24
|
+
crew: string[];
|
|
26
25
|
purpose: FlightPurposeCode;
|
|
27
26
|
purposeOt: string;
|
|
28
27
|
flightClass: FlightClassCode;
|
|
29
28
|
flightCategory: FlightCategoryCode;
|
|
30
29
|
type: FlightTypeCode;
|
|
31
30
|
status: FlightStatusCode;
|
|
32
|
-
state: FlightStateCode;
|
|
33
31
|
billingStatus: BillingStatusCode;
|
|
34
|
-
onBoard: OnBoard;
|
|
35
32
|
attendingTime: string;
|
|
36
33
|
boardingTime: string;
|
|
37
34
|
takeoff: TOLData;
|
|
38
35
|
landing: TOLData;
|
|
39
36
|
wbConfig: string;
|
|
40
37
|
wbManual: string;
|
|
41
|
-
hasCompetency: boolean;
|
|
42
|
-
hasFlightPlan: boolean;
|
|
43
38
|
preFlightNotes: string;
|
|
44
39
|
operationNotes: string;
|
|
45
40
|
fuelLevel: number;
|
|
46
41
|
oilLevel: number;
|
|
47
42
|
lesson: Lesson;
|
|
48
|
-
billing: Billing;
|
|
49
43
|
pilotCertCheck: number;
|
|
50
44
|
riskAssessment: RiskAssessment;
|
|
51
45
|
preFlightReporter: string;
|
|
52
46
|
postFlightReporter: string;
|
|
47
|
+
instructorReporter: string;
|
|
53
48
|
bookingReference: string;
|
|
54
49
|
get(field: string): any;
|
|
55
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/FlightPassenger.d.ts
CHANGED
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import { FlightPurposeCode } from '.';
|
|
2
|
+
import { TOLData } from '.';
|
|
1
3
|
import { BaseEntityEx } from '.';
|
|
2
4
|
import { ColumnDef } from '.';
|
|
3
5
|
import { FlightTypeCode } from '.';
|
|
4
6
|
import { FlightStatusCode } from '.';
|
|
5
7
|
import { FlightStateCode } from '.';
|
|
6
|
-
import { FlightPurposeCode } from '.';
|
|
7
|
-
import { TOLData } 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
|
-
import { TripRisks } from '.';
|
|
3
|
-
import { WeatherRisks } from '.';
|
|
4
1
|
import { SpecialRisks } from '.';
|
|
2
|
+
import { Mitigation } from '.';
|
|
5
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { PilotQualificationsRisks } from '.';
|
|
6
5
|
import { DepartureRisks } from '.';
|
|
6
|
+
import { DestinationRisks } from '.';
|
|
7
|
+
import { TripRisks } from '.';
|
|
7
8
|
import { CrewDutyDayRisks } from '.';
|
|
8
|
-
import {
|
|
9
|
+
import { WeatherRisks } from '.';
|
|
9
10
|
import { BaseEntityEx } from '.';
|
|
10
|
-
import { PilotQualificationsRisks } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { TicketStatusCode } from '.';
|
|
4
3
|
import { FlightTicket } from '.';
|
|
4
|
+
import { TicketStatusCode } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class FlightTicketsEndPoint {
|
|
7
7
|
private config;
|
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 { AnyKeyValue } from '.';
|
|
4
3
|
import { BillingStatusCode } from '.';
|
|
5
|
-
import {
|
|
4
|
+
import { FlightPurposeCode } from '.';
|
|
5
|
+
import { TimeSeries } from '.';
|
|
6
|
+
import { PostFlightInfo } from '.';
|
|
6
7
|
import { Flight } from '.';
|
|
7
|
-
import { FlightTypeCode } from '.';
|
|
8
8
|
import { FlightStatusCode } from '.';
|
|
9
|
-
import { FlightPurposeCode } from '.';
|
|
10
|
-
import { PreFlightInfo } from '.';
|
|
11
9
|
import { FlightPlan } from '.';
|
|
10
|
+
import { Contact } from '.';
|
|
11
|
+
import { FlightTypeCode } from '.';
|
|
12
12
|
import { FlightTicket } from '.';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
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 { TimeFrame } from '.';
|
|
2
1
|
import { FlightTypeCode } from '.';
|
|
3
2
|
import { FlightStatusCode } from '.';
|
|
4
3
|
import { BillingStatusCode } from '.';
|
|
5
4
|
import { FlightPurposeCode } from '.';
|
|
5
|
+
import { TimeFrame } 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,7 @@
|
|
|
1
|
-
import { AssessmentCode } from '.';
|
|
2
1
|
import { LessonTypeCode } from '.';
|
|
3
2
|
import { FlightCategoryCode } from '.';
|
|
4
3
|
import { LessonSubjectCode } from '.';
|
|
4
|
+
import { AssessmentCode } from '.';
|
|
5
5
|
export declare class Lesson {
|
|
6
6
|
number: number;
|
|
7
7
|
type: LessonTypeCode;
|
package/lib/LogBookRecord.d.ts
CHANGED
package/lib/LookupGroup.d.ts
CHANGED
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 { 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;
|
package/lib/MyAuthEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { LoginParams } from '.';
|
|
4
3
|
import { Contact } from '.';
|
|
4
|
+
import { LoginParams } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class MyAuthEndPoint {
|
|
7
7
|
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 '.';
|
|
3
4
|
import { BookingStatusCode } from '.';
|
|
4
5
|
import { BookingTypeFlag } from '.';
|
|
5
6
|
import { Lookup } from '.';
|
|
6
7
|
import { BookingSlot } from '.';
|
|
7
|
-
import { Booking } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class MyBookingsEndPoint {
|
|
10
10
|
private config;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { PostFlightInfo } from '.';
|
|
4
|
+
import { InstructionTypeCode } from '.';
|
|
4
5
|
import { PreFlightInfo } from '.';
|
|
5
6
|
import { FlightTypeCode } from '.';
|
|
6
7
|
import { FlightStatusCode } from '.';
|
|
7
8
|
import { FlightPlan } from '.';
|
|
8
|
-
import { InstructionTypeCode } from '.';
|
|
9
9
|
import { Syllabus } from '.';
|
|
10
10
|
import { Flight } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
package/lib/PreFlightInfo.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { FlightTypeCode } from '.';
|
|
2
1
|
import { FlightPurposeCode } from '.';
|
|
2
|
+
import { FlightTypeCode } from '.';
|
|
3
3
|
export declare class PreFlightInfo {
|
|
4
4
|
flightId: string;
|
|
5
5
|
flightNumber: number;
|
|
@@ -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/SystemConfig.d.ts
CHANGED
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/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
1
3
|
import { UserTypeCode } from '.';
|
|
2
4
|
import { UserRoleFlag } from '.';
|
|
3
5
|
import { UserStatusCode } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
6
|
export declare class User extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
email: string;
|
package/lib/UserEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { LoginParams } from '.';
|
|
4
3
|
import { User } from '.';
|
|
4
|
+
import { LoginParams } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class UserEndPoint {
|
|
7
7
|
private config;
|
package/lib/UsersEndPoint.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { UserStatusCode } from '.';
|
|
4
|
-
import { StringKeyValue } from '.';
|
|
5
3
|
import { User } from '.';
|
|
6
4
|
import { UserTypeCode } from '.';
|
|
5
|
+
import { UserStatusCode } from '.';
|
|
6
|
+
import { StringKeyValue } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class UsersEndPoint {
|
|
9
9
|
private config;
|