@aya-flights/ngx-goox-lib 2.18.77 → 2.18.79
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 +2 -2
- package/esm2022/lib/AccountsEndPoint.mjs +1 -1
- package/esm2022/lib/Airplane.mjs +1 -1
- package/esm2022/lib/AirplanesEndPoint.mjs +1 -1
- package/esm2022/lib/AuditLogsEndPoint.mjs +1 -1
- package/esm2022/lib/BookingSlotsEndPoint.mjs +1 -1
- package/esm2022/lib/BookingSlotsSet.mjs +1 -1
- package/esm2022/lib/Campaign.mjs +1 -1
- package/esm2022/lib/CampaignsEndPoint.mjs +1 -1
- package/esm2022/lib/Contact.mjs +2 -1
- package/esm2022/lib/ContactsEndPoint.mjs +1 -1
- package/esm2022/lib/Credit.mjs +1 -1
- package/esm2022/lib/Document.mjs +1 -1
- package/esm2022/lib/Enums.mjs +279 -279
- package/esm2022/lib/Flight.mjs +1 -1
- package/esm2022/lib/FlightPlan.mjs +2 -2
- package/esm2022/lib/FlightRisk.mjs +2 -2
- package/esm2022/lib/FlightsEndPoint.mjs +1 -1
- package/esm2022/lib/FlightsFilter.mjs +1 -1
- package/esm2022/lib/Group.mjs +1 -1
- package/esm2022/lib/GroupsEndPoint.mjs +1 -1
- package/esm2022/lib/Lead.mjs +2 -2
- package/esm2022/lib/LeadsEndPoint.mjs +1 -1
- package/esm2022/lib/Maintenance.mjs +2 -2
- package/esm2022/lib/MaintenancesEndPoint.mjs +1 -1
- package/esm2022/lib/MyBookingsEndPoint.mjs +1 -1
- package/esm2022/lib/MyFlightsEndPoint.mjs +1 -1
- package/esm2022/lib/PreFlightData.mjs +1 -1
- package/esm2022/lib/Price.mjs +1 -1
- package/esm2022/lib/PriceListEndPoint.mjs +1 -1
- package/esm2022/lib/RiskAssessment.mjs +1 -1
- package/esm2022/lib/Syllabus.mjs +2 -2
- package/esm2022/lib/SyllabusEndPoint.mjs +1 -1
- package/esm2022/lib/SystemMessage.mjs +1 -1
- package/esm2022/lib/SystemMessagesEndPoint.mjs +1 -1
- package/esm2022/lib/UserEndPoint.mjs +1 -1
- package/esm2022/lib/UsersEndPoint.mjs +1 -1
- package/esm2022/lib/index.mjs +113 -113
- package/esm2022/lib/services.export.mjs +41 -41
- package/fesm2022/aya-flights-ngx-goox-lib.mjs +4867 -4866
- 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 +2 -2
- package/lib/AirplanesEndPoint.d.ts +7 -7
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/BookingSlotsSet.d.ts +1 -1
- package/lib/Campaign.d.ts +2 -2
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/Contact.d.ts +5 -4
- package/lib/ContactsEndPoint.d.ts +6 -6
- package/lib/Credit.d.ts +1 -1
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +8 -8
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +5 -5
- package/lib/FlightsEndPoint.d.ts +8 -8
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/Group.d.ts +2 -2
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/Lead.d.ts +1 -1
- package/lib/LeadsEndPoint.d.ts +1 -1
- package/lib/Maintenance.d.ts +1 -1
- package/lib/MaintenancesEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +2 -2
- package/lib/PreFlightData.d.ts +3 -3
- package/lib/Price.d.ts +1 -1
- package/lib/PriceListEndPoint.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +1 -1
- package/lib/Syllabus.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/UserEndPoint.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +2 -2
- package/lib/index.d.ts +112 -112
- package/lib/services.export.d.ts +21 -21
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { AccountTypeCode } from '.';
|
|
2
3
|
import { AccountStatusCode } from '.';
|
|
3
4
|
import { Address } from '.';
|
|
4
5
|
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } 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 { FlightStatusCode } from '.';
|
|
3
|
+
import { FlightTypeCode } from '.';
|
|
5
4
|
import { FlightStateCode } from '.';
|
|
6
|
-
import { AccountStatusCode } from '.';
|
|
7
|
-
import { StringKeyValue } from '.';
|
|
8
|
-
import { FlightPurposeCode } from '.';
|
|
9
5
|
import { Flight } from '.';
|
|
10
6
|
import { Credit } from '.';
|
|
11
7
|
import { Account } from '.';
|
|
12
|
-
import {
|
|
8
|
+
import { StringKeyValue } from '.';
|
|
9
|
+
import { FlightStatusCode } from '.';
|
|
10
|
+
import { FlightPurposeCode } from '.';
|
|
11
|
+
import { AccountStatusCode } from '.';
|
|
12
|
+
import { Document } 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
1
|
import { AirplaneStatusCode } from '.';
|
|
2
|
-
import { Magneto } from '.';
|
|
3
2
|
import { Engine } from '.';
|
|
4
|
-
import { Propeller } from '.';
|
|
5
3
|
import { Fuel } from '.';
|
|
6
4
|
import { BaseEntityEx } from '.';
|
|
7
5
|
import { ColumnDef } from '.';
|
|
8
6
|
import { TypeRatingFlag } from '.';
|
|
9
7
|
import { AirplaneValidationFlag } from '.';
|
|
8
|
+
import { Magneto } from '.';
|
|
9
|
+
import { Propeller } 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 { Maintenance } from '.';
|
|
3
|
+
import { StatusCode } from '.';
|
|
5
4
|
import { Airplane } from '.';
|
|
5
|
+
import { FlightTypeCode } from '.';
|
|
6
|
+
import { FlightPurposeCode } from '.';
|
|
7
|
+
import { MaintenanceActionCode } from '.';
|
|
6
8
|
import { StringKeyValue } from '.';
|
|
7
|
-
import {
|
|
9
|
+
import { FlightStateCode } from '.';
|
|
8
10
|
import { Document } from '.';
|
|
9
|
-
import {
|
|
11
|
+
import { Maintenance } from '.';
|
|
10
12
|
import { AirplaneStatusCode } from '.';
|
|
11
|
-
import { StatusCode } from '.';
|
|
12
|
-
import { FlightTypeCode } from '.';
|
|
13
13
|
import { FlightStatusCode } from '.';
|
|
14
|
-
import {
|
|
14
|
+
import { Flight } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
private config;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { TimeSeries } from '.';
|
|
4
3
|
import { AuditLog } from '.';
|
|
4
|
+
import { TimeSeries } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class AuditLogsEndPoint {
|
|
7
7
|
private config;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { BookingSlot } from '.';
|
|
3
4
|
import { BookingSlots } from '.';
|
|
4
5
|
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
package/lib/Campaign.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
1
3
|
import { CampaignTypeCode } from '.';
|
|
2
4
|
import { CampaignStatusCode } from '.';
|
|
3
5
|
import { CurrencyCode } from '.';
|
|
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/Contact.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
import { Address } from '.';
|
|
1
2
|
import { LicenseKindFlag } from '.';
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
3
|
-
import { TypeRatingFlag } from '.';
|
|
4
3
|
import { MedicalCertClassCode } from '.';
|
|
5
4
|
import { ValidationFlag } from '.';
|
|
6
|
-
import {
|
|
5
|
+
import { BaseEntityEx } from '.';
|
|
7
6
|
import { ColumnDef } from '.';
|
|
8
7
|
import { AccountStatusCode } from '.';
|
|
9
|
-
import {
|
|
8
|
+
import { TypeRatingFlag } from '.';
|
|
9
|
+
import { FlightCategoryCode } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
11
11
|
accountId: string;
|
|
12
12
|
name: string;
|
|
@@ -33,6 +33,7 @@ export declare class Contact extends BaseEntityEx {
|
|
|
33
33
|
startToFlyDate: number;
|
|
34
34
|
authorizedToFlyBy: string;
|
|
35
35
|
authorizedPhotographyBy: string;
|
|
36
|
+
updateFlags: number;
|
|
36
37
|
get(field: string): any;
|
|
37
38
|
}
|
|
38
39
|
export declare function GetContactColumnsDef(): ColumnDef[];
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Document } from '.';
|
|
4
3
|
import { Contact } from '.';
|
|
5
|
-
import {
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
6
5
|
import { FlightStateCode } from '.';
|
|
7
|
-
import { FlightPurposeCode } from '.';
|
|
8
|
-
import { Certificate } from '.';
|
|
9
6
|
import { StringKeyValue } from '.';
|
|
10
|
-
import {
|
|
11
|
-
import { Flight } from '.';
|
|
7
|
+
import { FlightPurposeCode } from '.';
|
|
12
8
|
import { MessageConfirm } from '.';
|
|
9
|
+
import { Certificate } from '.';
|
|
10
|
+
import { Document } from '.';
|
|
13
11
|
import { StatusCode } from '.';
|
|
12
|
+
import { FlightTypeCode } from '.';
|
|
13
|
+
import { Flight } 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
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,18 +1,18 @@
|
|
|
1
1
|
import { BillingStatusCode } from '.';
|
|
2
|
+
import { BaseEntityEx } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
4
|
+
import { OnBoard } from '.';
|
|
5
|
+
import { ReFuel } from '.';
|
|
2
6
|
import { Lesson } from '.';
|
|
7
|
+
import { FlightCategoryCode } from '.';
|
|
3
8
|
import { FlightStatusCode } from '.';
|
|
4
|
-
import { TOLData } from '.';
|
|
5
|
-
import { FlightPurposeCode } from '.';
|
|
6
9
|
import { FlightStateCode } from '.';
|
|
7
|
-
import { Billing } from '.';
|
|
8
10
|
import { RiskAssessment } from '.';
|
|
9
|
-
import {
|
|
11
|
+
import { FlightPurposeCode } from '.';
|
|
10
12
|
import { FlightClassCode } from '.';
|
|
11
|
-
import { FlightCategoryCode } from '.';
|
|
12
13
|
import { FlightTypeCode } from '.';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import { ColumnDef } from '.';
|
|
14
|
+
import { TOLData } from '.';
|
|
15
|
+
import { Billing } from '.';
|
|
16
16
|
export declare class Flight extends BaseEntityEx {
|
|
17
17
|
name: string;
|
|
18
18
|
description: string;
|
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
1
|
import { PilotQualificationsRisks } from '.';
|
|
2
|
-
import { CrewDutyDayRisks } from '.';
|
|
3
2
|
import { DepartureRisks } from '.';
|
|
4
|
-
import { WeatherRisks } from '.';
|
|
5
|
-
import { SpecialRisks } from '.';
|
|
6
|
-
import { BaseEntityEx } from '.';
|
|
7
|
-
import { ColumnDef } from '.';
|
|
8
3
|
import { DestinationRisks } from '.';
|
|
9
4
|
import { TripRisks } from '.';
|
|
5
|
+
import { SpecialRisks } from '.';
|
|
6
|
+
import { ColumnDef } from '.';
|
|
7
|
+
import { CrewDutyDayRisks } from '.';
|
|
8
|
+
import { WeatherRisks } from '.';
|
|
10
9
|
import { Mitigation } from '.';
|
|
10
|
+
import { BaseEntityEx } 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
|
-
import { Flight } from '.';
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
5
|
-
import { FlightTicket } from '.';
|
|
6
|
-
import { PreFlightInfo } from '.';
|
|
7
|
-
import { FlightTypeCode } from '.';
|
|
8
|
-
import { TimeSeries } from '.';
|
|
9
3
|
import { AnyKeyValue } from '.';
|
|
10
|
-
import {
|
|
4
|
+
import { FlightTypeCode } from '.';
|
|
5
|
+
import { FlightStatusCode } from '.';
|
|
6
|
+
import { PostFlightInfo } from '.';
|
|
11
7
|
import { FlightPurposeCode } from '.';
|
|
8
|
+
import { TimeSeries } from '.';
|
|
12
9
|
import { FlightPlan } from '.';
|
|
13
10
|
import { Contact } from '.';
|
|
14
|
-
import {
|
|
11
|
+
import { Flight } from '.';
|
|
12
|
+
import { PreFlightInfo } from '.';
|
|
13
|
+
import { BillingStatusCode } from '.';
|
|
14
|
+
import { FlightTicket } 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
|
+
import { FlightTypeCode } from '.';
|
|
1
3
|
import { FlightStatusCode } from '.';
|
|
2
4
|
import { BillingStatusCode } from '.';
|
|
3
5
|
import { FlightPurposeCode } from '.';
|
|
4
|
-
import { TimeFrame } from '.';
|
|
5
|
-
import { FlightTypeCode } from '.';
|
|
6
6
|
export declare class FlightsFilter {
|
|
7
7
|
search: string;
|
|
8
8
|
period: TimeFrame;
|
package/lib/Group.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Permission } from '.';
|
|
2
|
-
import { StringKeyValue } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { Permission } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
export declare class Group extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
email: string;
|
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
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 { Lead } from '.';
|
|
3
4
|
import { LeadStatusCode } from '.';
|
|
4
5
|
import { TimeSeries } from '.';
|
|
5
6
|
import { LeadAction } from '.';
|
|
6
|
-
import { Lead } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class LeadsEndPoint {
|
|
9
9
|
private config;
|
package/lib/Maintenance.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { StatusCode } from '.';
|
|
2
3
|
import { MaintenanceActionCode } from '.';
|
|
3
4
|
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;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { BookingStatusCode } from '.';
|
|
3
4
|
import { BookingTypeFlag } from '.';
|
|
4
5
|
import { BookingSlots } from '.';
|
|
5
6
|
import { Booking } from '.';
|
|
6
|
-
import { BookingStatusCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MyBookingsEndPoint {
|
|
9
9
|
private config;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Flight } from '.';
|
|
3
4
|
import { FlightStatusCode } from '.';
|
|
4
5
|
import { FlightPlan } from '.';
|
|
6
|
+
import { PreFlightInfo } from '.';
|
|
5
7
|
import { PostFlightInfo } from '.';
|
|
6
|
-
import { Flight } from '.';
|
|
7
8
|
import { FlightTypeCode } from '.';
|
|
8
|
-
import { PreFlightInfo } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyFlightsEndPoint {
|
|
11
11
|
private config;
|
package/lib/PreFlightData.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import { OnBoard } from '.';
|
|
2
|
+
import { TOLData } from '.';
|
|
3
|
+
import { ReFuel } from '.';
|
|
1
4
|
import { Lesson } from '.';
|
|
2
5
|
import { BaseEntityEx } from '.';
|
|
3
6
|
import { ColumnDef } from '.';
|
|
4
7
|
import { FlightTypeCode } from '.';
|
|
5
8
|
import { FlightPurposeCode } from '.';
|
|
6
|
-
import { OnBoard } from '.';
|
|
7
|
-
import { TOLData } from '.';
|
|
8
|
-
import { ReFuel } from '.';
|
|
9
9
|
export declare class PreFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/Price.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Price } from '.';
|
|
4
3
|
import { FlightPurposeCode } from '.';
|
|
4
|
+
import { Price } 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,3 +1,4 @@
|
|
|
1
|
+
import { Mitigation } from '.';
|
|
1
2
|
import { PilotQualificationsRisks } from '.';
|
|
2
3
|
import { CrewDutyDayRisks } from '.';
|
|
3
4
|
import { DepartureRisks } from '.';
|
|
@@ -5,7 +6,6 @@ import { DestinationRisks } from '.';
|
|
|
5
6
|
import { TripRisks } from '.';
|
|
6
7
|
import { WeatherRisks } from '.';
|
|
7
8
|
import { SpecialRisks } from '.';
|
|
8
|
-
import { Mitigation } 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 '.';
|
|
1
2
|
import { FlightCategoryCode } from '.';
|
|
2
3
|
import { InstructionTypeCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Syllabus extends BaseEntityEx {
|
|
6
6
|
plan: FlightCategoryCode;
|
|
7
7
|
type: InstructionTypeCode;
|
|
@@ -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 { 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;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { SystemMessage } from '.';
|
|
4
3
|
import { MessageTypeCode } from '.';
|
|
5
4
|
import { MessageConfirm } from '.';
|
|
5
|
+
import { SystemMessage } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SystemMessagesEndPoint {
|
|
8
8
|
private config;
|
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 { User } from '.';
|
|
4
3
|
import { LoginParams } from '.';
|
|
4
|
+
import { User } 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 { StringKeyValue } from '.';
|
|
4
|
-
import { User } from '.';
|
|
5
3
|
import { UserTypeCode } from '.';
|
|
6
4
|
import { UserStatusCode } from '.';
|
|
5
|
+
import { StringKeyValue } from '.';
|
|
6
|
+
import { User } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class UsersEndPoint {
|
|
9
9
|
private config;
|