@aya-flights/ngx-goox-lib 2.19.67 → 2.19.69
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 +4685 -4591
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +6 -2
- package/lib/AccountTypeCode.d.ts +11 -0
- package/lib/AccountsEndPoint.d.ts +6 -6
- package/lib/Airplane.d.ts +4 -2
- package/lib/AirplanesEndPoint.d.ts +7 -7
- package/lib/BookingPlan.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/BookingSlotsSet.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +2 -2
- package/lib/BookingsFilter.d.ts +1 -1
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/Certificate.d.ts +1 -1
- package/lib/Contact.d.ts +5 -1
- package/lib/ContactsEndPoint.d.ts +6 -6
- package/lib/Flight.d.ts +9 -9
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +5 -5
- package/lib/FlightsEndPoint.d.ts +5 -5
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/Lead.d.ts +2 -2
- package/lib/LeadsEndPoint.d.ts +1 -1
- package/lib/LicenseKindFlag.d.ts +17 -0
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/Maintenance.d.ts +2 -2
- package/lib/MaintenancesEndPoint.d.ts +1 -1
- package/lib/MaintenancesFilter.d.ts +1 -1
- package/lib/MessageConfirm.d.ts +1 -1
- package/lib/MessageConfirmsEndPoint.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 +2 -2
- package/lib/PriceListEndPoint.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +3 -3
- package/lib/Syllabus.d.ts +1 -1
- package/lib/SystemMessage.d.ts +2 -2
- package/lib/TypeRatingFlag.d.ts +10 -0
- package/lib/User.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +111 -109
- package/lib/services.export.d.ts +23 -23
- package/package.json +1 -1
- package/lib/LicenseTypeFlag.d.ts +0 -16
package/lib/Account.d.ts
CHANGED
|
@@ -1,15 +1,18 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ColumnDef } from '.';
|
|
1
|
+
import { AccountTypeCode } from '.';
|
|
3
2
|
import { AccountStatusCode } from '.';
|
|
4
3
|
import { Address } from '.';
|
|
4
|
+
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
5
6
|
export declare class Account extends BaseEntityEx {
|
|
6
7
|
name: string;
|
|
7
8
|
enName: string;
|
|
9
|
+
type: AccountTypeCode;
|
|
8
10
|
description: string;
|
|
9
11
|
status: AccountStatusCode;
|
|
10
12
|
phone: string;
|
|
11
13
|
mobile: string;
|
|
12
14
|
email: string;
|
|
15
|
+
address: Address;
|
|
13
16
|
billingAddress: Address;
|
|
14
17
|
shippingAddress: Address;
|
|
15
18
|
campaignId: string;
|
|
@@ -17,6 +20,7 @@ export declare class Account extends BaseEntityEx {
|
|
|
17
20
|
currentCredit: number;
|
|
18
21
|
baseRate: number;
|
|
19
22
|
percentageDiscount: number;
|
|
23
|
+
discount: number;
|
|
20
24
|
invoiceId: string;
|
|
21
25
|
get(field: string): any;
|
|
22
26
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Tuple } from '.';
|
|
2
|
+
export declare enum AccountTypeCode {
|
|
3
|
+
UNDEFINED = 0,
|
|
4
|
+
STUDENT = 1,
|
|
5
|
+
PRIVATE = 2,
|
|
6
|
+
INSTRUCTOR = 3,
|
|
7
|
+
STAFF = 4,
|
|
8
|
+
BUSINESS = 5
|
|
9
|
+
}
|
|
10
|
+
export declare function GetAccountTypeCodes(): Tuple<AccountTypeCode, string>[];
|
|
11
|
+
export declare function MapAccountTypeCodes(): Map<AccountTypeCode, string>;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Credit } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
|
+
import { Flight } from '.';
|
|
6
|
+
import { FlightPurposeCode } from '.';
|
|
7
|
+
import { Document } from '.';
|
|
3
8
|
import { AccountStatusCode } from '.';
|
|
4
9
|
import { FlightStatusCode } from '.';
|
|
5
|
-
import { Account } from '.';
|
|
6
10
|
import { FlightStateCode } from '.';
|
|
7
|
-
import { Credit } from '.';
|
|
8
|
-
import { FlightPurposeCode } from '.';
|
|
9
|
-
import { Flight } from '.';
|
|
10
|
-
import { StringKeyValue } from '.';
|
|
11
11
|
import { FlightTypeCode } from '.';
|
|
12
|
-
import {
|
|
12
|
+
import { Account } 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,8 +1,9 @@
|
|
|
1
|
+
import { TypeRatingFlag } from '.';
|
|
2
|
+
import { AirplaneStatusCode } from '.';
|
|
3
|
+
import { AirplaneValidationFlag } from '.';
|
|
1
4
|
import { Fuel } from '.';
|
|
2
5
|
import { BaseEntityEx } from '.';
|
|
3
6
|
import { ColumnDef } from '.';
|
|
4
|
-
import { AirplaneStatusCode } from '.';
|
|
5
|
-
import { AirplaneValidationFlag } from '.';
|
|
6
7
|
import { Engine } from '.';
|
|
7
8
|
import { Magneto } from '.';
|
|
8
9
|
import { Propeller } from '.';
|
|
@@ -11,6 +12,7 @@ export declare class Airplane extends BaseEntityEx {
|
|
|
11
12
|
description: string;
|
|
12
13
|
model: string;
|
|
13
14
|
serialNo: string;
|
|
15
|
+
typeRating: TypeRatingFlag;
|
|
14
16
|
status: AirplaneStatusCode;
|
|
15
17
|
isActive: boolean;
|
|
16
18
|
hobs: number;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
3
|
+
import { FlightPurposeCode } from '.';
|
|
4
|
+
import { FlightTypeCode } from '.';
|
|
4
5
|
import { Maintenance } from '.';
|
|
6
|
+
import { Airplane } from '.';
|
|
7
|
+
import { FlightStatusCode } from '.';
|
|
5
8
|
import { FlightStateCode } from '.';
|
|
9
|
+
import { StatusCode } from '.';
|
|
6
10
|
import { Document } from '.';
|
|
7
|
-
import {
|
|
11
|
+
import { MaintenanceActionCode } from '.';
|
|
12
|
+
import { AirplaneStatusCode } from '.';
|
|
8
13
|
import { StringKeyValue } from '.';
|
|
9
|
-
import { FlightTypeCode } from '.';
|
|
10
14
|
import { Flight } from '.';
|
|
11
|
-
import { AirplaneStatusCode } from '.';
|
|
12
|
-
import { FlightStatusCode } from '.';
|
|
13
|
-
import { FlightPurposeCode } from '.';
|
|
14
|
-
import { StatusCode } 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 { ColumnDef } from '.';
|
|
2
1
|
import { BookingTypeFlag } from '.';
|
|
3
2
|
import { FlightPurposeCode } from '.';
|
|
4
3
|
import { FlightStatusCode } from '.';
|
|
5
4
|
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
6
|
export declare class BookingPlan extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { BookingSlotsSet } from '.';
|
|
3
4
|
import { BookingSlot } from '.';
|
|
4
5
|
import { BookingSlots } from '.';
|
|
5
|
-
import { BookingSlotsSet } 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,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { BookingStatusCode } from '.';
|
|
4
|
-
import { TimeSeries } from '.';
|
|
5
3
|
import { BookingPlan } from '.';
|
|
6
4
|
import { Booking } from '.';
|
|
5
|
+
import { BookingStatusCode } from '.';
|
|
6
|
+
import { TimeSeries } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class BookingsEndPoint {
|
|
9
9
|
private config;
|
package/lib/BookingsFilter.d.ts
CHANGED
|
@@ -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 { ColumnDef } from '.';
|
|
2
1
|
import { ValidationFlag } from '.';
|
|
3
2
|
import { StatusCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Certificate extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
type: ValidationFlag;
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import { ValidationFlag } from '.';
|
|
2
1
|
import { FlightCategoryCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
5
4
|
import { AccountStatusCode } from '.';
|
|
6
5
|
import { Address } from '.';
|
|
6
|
+
import { TypeRatingFlag } from '.';
|
|
7
|
+
import { LicenseKindFlag } from '.';
|
|
8
|
+
import { ValidationFlag } from '.';
|
|
7
9
|
export declare class Contact extends BaseEntityEx {
|
|
8
10
|
accountId: string;
|
|
9
11
|
name: string;
|
|
@@ -27,6 +29,8 @@ export declare class Contact extends BaseEntityEx {
|
|
|
27
29
|
pilotLicense: string;
|
|
28
30
|
licenseTypes: string[];
|
|
29
31
|
licenseGroup: string;
|
|
32
|
+
typesRating: TypeRatingFlag;
|
|
33
|
+
licenseKinds: LicenseKindFlag;
|
|
30
34
|
medicalCertClass: string;
|
|
31
35
|
validations: ValidationFlag;
|
|
32
36
|
isPilot: boolean;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
3
|
+
import { FlightStatusCode } from '.';
|
|
4
|
+
import { FlightStateCode } from '.';
|
|
5
|
+
import { FlightPurposeCode } from '.';
|
|
4
6
|
import { Flight } from '.';
|
|
7
|
+
import { StringKeyValue } from '.';
|
|
5
8
|
import { Document } from '.';
|
|
6
9
|
import { Contact } from '.';
|
|
7
10
|
import { StatusCode } from '.';
|
|
8
|
-
import { FlightStatusCode } from '.';
|
|
9
|
-
import { FlightPurposeCode } from '.';
|
|
10
|
-
import { MessageConfirm } from '.';
|
|
11
|
-
import { FlightStateCode } from '.';
|
|
12
|
-
import { StringKeyValue } from '.';
|
|
13
11
|
import { Certificate } from '.';
|
|
12
|
+
import { FlightTypeCode } from '.';
|
|
13
|
+
import { MessageConfirm } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
|
16
16
|
private config;
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { FlightStatusCode } from '.';
|
|
2
|
+
import { BillingStatusCode } from '.';
|
|
3
3
|
import { ReFuel } from '.';
|
|
4
|
-
import { RiskAssessment } from '.';
|
|
5
4
|
import { ColumnDef } from '.';
|
|
6
|
-
import {
|
|
7
|
-
import { FlightTypeCode } from '.';
|
|
5
|
+
import { FlightCategoryCode } from '.';
|
|
8
6
|
import { FlightStateCode } from '.';
|
|
7
|
+
import { FlightTypeCode } from '.';
|
|
9
8
|
import { Lesson } from '.';
|
|
10
|
-
import {
|
|
9
|
+
import { RiskAssessment } from '.';
|
|
11
10
|
import { BaseEntityEx } from '.';
|
|
12
11
|
import { FlightPurposeCode } from '.';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
12
|
+
import { FlightClassCode } from '.';
|
|
13
|
+
import { Billing } from '.';
|
|
14
|
+
import { OnBoard } from '.';
|
|
15
|
+
import { TOLData } from '.';
|
|
16
16
|
export declare class Flight extends BaseEntityEx {
|
|
17
17
|
name: string;
|
|
18
18
|
description: string;
|
package/lib/FlightBilling.d.ts
CHANGED
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
|
-
import { FlightTypeCode } from '.';
|
|
3
|
-
import { FlightStatusCode } from '.';
|
|
4
1
|
import { FlightStateCode } from '.';
|
|
5
2
|
import { FlightPurposeCode } from '.';
|
|
6
3
|
import { TOLData } from '.';
|
|
7
4
|
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
|
+
import { FlightTypeCode } from '.';
|
|
7
|
+
import { FlightStatusCode } 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 {
|
|
1
|
+
import { PilotQualificationsRisks } from '.';
|
|
2
2
|
import { CrewDutyDayRisks } from '.';
|
|
3
|
+
import { DepartureRisks } from '.';
|
|
3
4
|
import { DestinationRisks } from '.';
|
|
4
5
|
import { TripRisks } from '.';
|
|
5
|
-
import {
|
|
6
|
-
import { ColumnDef } from '.';
|
|
7
|
-
import { PilotQualificationsRisks } from '.';
|
|
8
|
-
import { DepartureRisks } from '.';
|
|
6
|
+
import { Mitigation } from '.';
|
|
9
7
|
import { WeatherRisks } from '.';
|
|
8
|
+
import { SpecialRisks } from '.';
|
|
10
9
|
import { BaseEntityEx } from '.';
|
|
10
|
+
import { ColumnDef } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
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
3
|
import { FlightPlan } from '.';
|
|
4
|
+
import { Contact } from '.';
|
|
5
|
+
import { FlightTicket } from '.';
|
|
4
6
|
import { PreFlightInfo } from '.';
|
|
5
|
-
import { PostFlightInfo } from '.';
|
|
6
7
|
import { Flight } from '.';
|
|
7
|
-
import { FlightPurposeCode } from '.';
|
|
8
|
-
import { FlightTicket } from '.';
|
|
9
8
|
import { AnyKeyValue } from '.';
|
|
9
|
+
import { FlightStatusCode } from '.';
|
|
10
10
|
import { BillingStatusCode } from '.';
|
|
11
11
|
import { TimeSeries } from '.';
|
|
12
|
-
import {
|
|
12
|
+
import { PostFlightInfo } from '.';
|
|
13
13
|
import { FlightTypeCode } from '.';
|
|
14
|
-
import {
|
|
14
|
+
import { FlightPurposeCode } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class FlightsEndPoint {
|
|
17
17
|
private config;
|
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 { StringKeyValue } from '.';
|
|
4
3
|
import { Group } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class GroupsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Lead.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { Address } from '.';
|
|
4
2
|
import { LeadStatusCode } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Lead extends BaseEntityEx {
|
|
6
6
|
firstName: string;
|
|
7
7
|
lastName: string;
|
package/lib/LeadsEndPoint.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { LeadAction } from '.';
|
|
3
4
|
import { Lead } from '.';
|
|
4
5
|
import { LeadStatusCode } from '.';
|
|
5
6
|
import { TimeSeries } from '.';
|
|
6
|
-
import { LeadAction } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class LeadsEndPoint {
|
|
9
9
|
private config;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Tuple } from '.';
|
|
2
|
+
export declare enum LicenseKindFlag {
|
|
3
|
+
UNDEFINED = 0,
|
|
4
|
+
SPL = 1,
|
|
5
|
+
LAPL = 2,
|
|
6
|
+
PPL = 4,
|
|
7
|
+
IR = 8,
|
|
8
|
+
NR = 16,
|
|
9
|
+
ME = 32,
|
|
10
|
+
CPL = 64,
|
|
11
|
+
ATPL = 128,
|
|
12
|
+
CFI = 256,
|
|
13
|
+
CFII = 512,
|
|
14
|
+
FTE = 1024
|
|
15
|
+
}
|
|
16
|
+
export declare function GetLicenseKindFlags(): Tuple<LicenseKindFlag, string>[];
|
|
17
|
+
export declare function MapLicenseKindFlags(): Map<LicenseKindFlag, string>;
|
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,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Maintenance } from '.';
|
|
3
4
|
import { MaintenanceActionCode } from '.';
|
|
4
5
|
import { StatusCode } from '.';
|
|
5
|
-
import { Maintenance } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class MaintenancesEndPoint {
|
|
8
8
|
private config;
|
package/lib/MessageConfirm.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { ConfirmStatusCode } from '.';
|
|
1
2
|
import { MessageTypeCode } from '.';
|
|
2
3
|
import { PriorityCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
5
|
import { ColumnDef } from '.';
|
|
5
|
-
import { ConfirmStatusCode } 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 { PriorityCode } from '.';
|
|
3
4
|
import { MessageConfirm } from '.';
|
|
4
5
|
import { MessageTypeCode } from '.';
|
|
5
6
|
import { ConfirmStatusCode } from '.';
|
|
6
|
-
import { PriorityCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MessageConfirmsEndPoint {
|
|
9
9
|
private config;
|
|
@@ -1,9 +1,9 @@
|
|
|
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 { BookingSlots } from '.';
|
|
6
|
-
import { Booking } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MyBookingsEndPoint {
|
|
9
9
|
private config;
|
|
@@ -2,10 +2,10 @@ import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../u
|
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { FlightTypeCode } from '.';
|
|
4
4
|
import { FlightStatusCode } from '.';
|
|
5
|
+
import { PostFlightInfo } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
5
7
|
import { FlightPlan } from '.';
|
|
6
8
|
import { PreFlightInfo } from '.';
|
|
7
|
-
import { Flight } from '.';
|
|
8
|
-
import { PostFlightInfo } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyFlightsEndPoint {
|
|
11
11
|
private config;
|
package/lib/PostFlightData.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { OnBoard } from '.';
|
|
2
1
|
import { TOLData } from '.';
|
|
3
2
|
import { ReFuel } from '.';
|
|
4
3
|
import { Lesson } from '.';
|
|
@@ -6,6 +5,7 @@ import { BaseEntityEx } from '.';
|
|
|
6
5
|
import { ColumnDef } from '.';
|
|
7
6
|
import { FlightTypeCode } from '.';
|
|
8
7
|
import { FlightPurposeCode } from '.';
|
|
8
|
+
import { OnBoard } 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,11 +1,11 @@
|
|
|
1
|
-
import { ReFuel } from '.';
|
|
2
|
-
import { Lesson } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
5
3
|
import { FlightTypeCode } from '.';
|
|
6
4
|
import { FlightPurposeCode } from '.';
|
|
7
5
|
import { OnBoard } from '.';
|
|
8
6
|
import { TOLData } from '.';
|
|
7
|
+
import { ReFuel } from '.';
|
|
8
|
+
import { Lesson } from '.';
|
|
9
9
|
export declare class PreFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightPurposeCode } from '.';
|
|
4
3
|
import { Price } from '.';
|
|
4
|
+
import { FlightPurposeCode } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class PriceListEndPoint {
|
|
7
7
|
private config;
|
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import { PilotQualificationsRisks } from '.';
|
|
2
|
+
import { CrewDutyDayRisks } from '.';
|
|
3
|
+
import { DepartureRisks } from '.';
|
|
1
4
|
import { DestinationRisks } from '.';
|
|
2
5
|
import { TripRisks } from '.';
|
|
3
6
|
import { WeatherRisks } from '.';
|
|
4
7
|
import { SpecialRisks } from '.';
|
|
5
8
|
import { Mitigation } from '.';
|
|
6
|
-
import { PilotQualificationsRisks } from '.';
|
|
7
|
-
import { CrewDutyDayRisks } from '.';
|
|
8
|
-
import { DepartureRisks } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/Syllabus.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { FlightCategoryCode } from '.';
|
|
3
2
|
import { InstructionTypeCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Syllabus extends BaseEntityEx {
|
|
6
6
|
plan: FlightCategoryCode;
|
|
7
7
|
type: InstructionTypeCode;
|
package/lib/SystemMessage.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { MessageTypeCode } from '.';
|
|
4
2
|
import { PriorityCode } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class SystemMessage extends BaseEntityEx {
|
|
6
6
|
subject: string;
|
|
7
7
|
description: string;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Tuple } from '.';
|
|
2
|
+
export declare enum TypeRatingFlag {
|
|
3
|
+
UNDEFINED = 0,
|
|
4
|
+
C172P = 32,
|
|
5
|
+
C172XP = 64,
|
|
6
|
+
C207 = 128,
|
|
7
|
+
PA31 = 256
|
|
8
|
+
}
|
|
9
|
+
export declare function GetTypeRatingFlags(): Tuple<TypeRatingFlag, string>[];
|
|
10
|
+
export declare function MapTypeRatingFlags(): Map<TypeRatingFlag, string>;
|
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UserTypeCode } from '.';
|
|
2
1
|
import { UserRoleFlag } from '.';
|
|
3
2
|
import { UserStatusCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
5
4
|
import { ColumnDef } from '.';
|
|
5
|
+
import { UserTypeCode } from '.';
|
|
6
6
|
export declare class User extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
email: string;
|
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 { UserTypeCode } from '.';
|
|
4
3
|
import { UserStatusCode } from '.';
|
|
5
4
|
import { StringKeyValue } from '.';
|
|
6
5
|
import { User } from '.';
|
|
6
|
+
import { UserTypeCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class UsersEndPoint {
|
|
9
9
|
private config;
|