@aya-flights/ngx-goox-lib 2.19.197 → 2.19.198
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 +5754 -5713
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +2 -2
- package/lib/AccountsEndPoint.d.ts +7 -7
- package/lib/Airplane.d.ts +5 -5
- package/lib/AirplanesEndPoint.d.ts +8 -8
- package/lib/AuditLog.d.ts +1 -1
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingPlan.d.ts +2 -2
- package/lib/BookingSlot.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +1 -1
- package/lib/Campaign.d.ts +1 -1
- package/lib/CertificatesEndPoint.d.ts +1 -1
- package/lib/CertificatesFilter.d.ts +1 -1
- package/lib/Contact.d.ts +4 -4
- package/lib/ContactsEndPoint.d.ts +9 -9
- package/lib/ContactsFilter.d.ts +1 -1
- package/lib/Credit.d.ts +1 -1
- package/lib/Distribution.d.ts +6 -0
- package/lib/Document.d.ts +1 -1
- package/lib/DocumentsEndPoint.d.ts +1 -1
- package/lib/Flight.d.ts +6 -6
- package/lib/FlightPlan.d.ts +2 -2
- package/lib/FlightRisk.d.ts +3 -3
- package/lib/FlightTicketsEndPoint.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +21 -7
- package/lib/FlightsFilter.d.ts +1 -1
- package/lib/Group.d.ts +2 -2
- package/lib/LeadAction.d.ts +1 -1
- package/lib/LeadsEndPoint.d.ts +4 -4
- package/lib/Lesson.d.ts +1 -1
- package/lib/LookupsEndPoint.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/Metar.d.ts +1 -1
- package/lib/MyAuthEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +4 -4
- package/lib/MyFlightsEndPoint.d.ts +4 -4
- package/lib/Notification.d.ts +2 -2
- package/lib/PreFlightInfo.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +4 -4
- 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 +130 -129
- package/lib/services.export.d.ts +25 -25
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { AccountTypeCode } from '.';
|
|
2
|
-
import { AccountStatusCode } from '.';
|
|
3
1
|
import { Address } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
5
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { AccountTypeCode } from '.';
|
|
5
|
+
import { AccountStatusCode } from '.';
|
|
6
6
|
export declare class Account extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
enName: string;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
3
|
+
import { Document } from '.';
|
|
4
4
|
import { AccountTypeCode } from '.';
|
|
5
|
-
import { FlightStateCode } from '.';
|
|
6
|
-
import { FlightPurposeCode } from '.';
|
|
7
|
-
import { Account } from '.';
|
|
8
|
-
import { FlightTypeCode } from '.';
|
|
9
5
|
import { FlightStatusCode } from '.';
|
|
10
|
-
import { StringKeyValue } from '.';
|
|
11
6
|
import { Flight } from '.';
|
|
12
7
|
import { Credit } from '.';
|
|
13
|
-
import {
|
|
8
|
+
import { AccountStatusCode } from '.';
|
|
9
|
+
import { FlightPurposeCode } from '.';
|
|
10
|
+
import { Account } from '.';
|
|
11
|
+
import { StringKeyValue } from '.';
|
|
12
|
+
import { FlightTypeCode } from '.';
|
|
13
|
+
import { FlightStateCode } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class AccountsEndPoint {
|
|
16
16
|
private config;
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { TypeRatingFlag } from '.';
|
|
2
|
-
import { AirplaneValidationFlag } from '.';
|
|
3
|
-
import { BaseEntityEx } from '.';
|
|
4
|
-
import { AirplaneStatusCode } from '.';
|
|
5
1
|
import { Engine } from '.';
|
|
6
|
-
import { Magneto } from '.';
|
|
7
2
|
import { Propeller } from '.';
|
|
8
3
|
import { Fuel } from '.';
|
|
9
4
|
import { WBConfig } from '.';
|
|
5
|
+
import { TypeRatingFlag } from '.';
|
|
6
|
+
import { Magneto } from '.';
|
|
7
|
+
import { BaseEntityEx } from '.';
|
|
10
8
|
import { ColumnDef } from '.';
|
|
9
|
+
import { AirplaneStatusCode } from '.';
|
|
10
|
+
import { AirplaneValidationFlag } from '.';
|
|
11
11
|
export declare class Airplane extends BaseEntityEx {
|
|
12
12
|
name: string;
|
|
13
13
|
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 { FlightPurposeCode } from '.';
|
|
5
|
-
import { Maintenance } from '.';
|
|
6
|
-
import { FlightStateCode } from '.';
|
|
3
|
+
import { Document } from '.';
|
|
7
4
|
import { StatusCode } from '.';
|
|
8
|
-
import {
|
|
5
|
+
import { MaintenanceActionCode } from '.';
|
|
6
|
+
import { Maintenance } from '.';
|
|
9
7
|
import { FlightStatusCode } from '.';
|
|
8
|
+
import { Airplane } from '.';
|
|
9
|
+
import { FlightStateCode } from '.';
|
|
10
10
|
import { Flight } from '.';
|
|
11
|
-
import { MaintenanceActionCode } from '.';
|
|
12
|
-
import { StringKeyValue } from '.';
|
|
13
|
-
import { Document } from '.';
|
|
14
11
|
import { AirplaneStatusCode } from '.';
|
|
12
|
+
import { FlightTypeCode } from '.';
|
|
13
|
+
import { FlightPurposeCode } from '.';
|
|
14
|
+
import { StringKeyValue } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
private config;
|
package/lib/AuditLog.d.ts
CHANGED
package/lib/Booking.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { BookingStatusCode } from '.';
|
|
1
2
|
import { BaseEntityEx } from '.';
|
|
2
3
|
import { ColumnDef } from '.';
|
|
3
4
|
import { BookingTypeFlag } from '.';
|
|
4
|
-
import { BookingStatusCode } 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 { FlightPurposeCode } from '.';
|
|
2
|
+
import { FlightStatusCode } from '.';
|
|
1
3
|
import { BaseEntityEx } from '.';
|
|
2
4
|
import { ColumnDef } from '.';
|
|
3
5
|
import { BookingTypeFlag } from '.';
|
|
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/BookingSlot.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 '.';
|
|
3
4
|
import { TimeSeries } from '.';
|
|
4
5
|
import { BookingPlan } from '.';
|
|
5
6
|
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 '.';
|
|
1
2
|
import { CampaignTypeCode } from '.';
|
|
2
3
|
import { CampaignStatusCode } from '.';
|
|
3
4
|
import { CurrencyCode } from '.';
|
|
4
5
|
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 { Certificate } from '.';
|
|
4
3
|
import { StatusCode } from '.';
|
|
4
|
+
import { Certificate } 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 { ColumnDef } from '.';
|
|
2
|
-
import { AccountStatusCode } from '.';
|
|
3
1
|
import { Address } from '.';
|
|
4
|
-
import { MedicalCertClassCode } from '.';
|
|
5
|
-
import { FlightCategoryCode } from '.';
|
|
6
2
|
import { TypeRatingFlag } from '.';
|
|
3
|
+
import { FlightCategoryCode } from '.';
|
|
4
|
+
import { AccountStatusCode } from '.';
|
|
7
5
|
import { LicenseKindFlag } from '.';
|
|
6
|
+
import { MedicalCertClassCode } from '.';
|
|
8
7
|
import { ValidationFlag } from '.';
|
|
9
8
|
import { BaseEntityEx } from '.';
|
|
9
|
+
import { ColumnDef } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
11
11
|
accountId: string;
|
|
12
12
|
name: string;
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { MessageConfirm } from '.';
|
|
4
|
-
import { FlightCategoryCode } from '.';
|
|
5
|
-
import { FlightTypeCode } from '.';
|
|
6
|
-
import { FlightPurposeCode } from '.';
|
|
7
|
-
import { Flight } from '.';
|
|
8
3
|
import { StatusCode } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import { LicenseKindFlag } from '.';
|
|
4
|
+
import { Certificate } from '.';
|
|
11
5
|
import { FlightStatusCode } from '.';
|
|
12
6
|
import { Document } from '.';
|
|
13
|
-
import { Contact } from '.';
|
|
14
7
|
import { TypeRatingFlag } from '.';
|
|
8
|
+
import { LicenseKindFlag } from '.';
|
|
15
9
|
import { StringKeyValue } from '.';
|
|
16
|
-
import {
|
|
10
|
+
import { MessageConfirm } from '.';
|
|
11
|
+
import { Contact } from '.';
|
|
12
|
+
import { FlightCategoryCode } from '.';
|
|
13
|
+
import { FlightPurposeCode } from '.';
|
|
14
|
+
import { Flight } from '.';
|
|
15
|
+
import { FlightTypeCode } from '.';
|
|
16
|
+
import { FlightStateCode } from '.';
|
|
17
17
|
import * as i0 from "@angular/core";
|
|
18
18
|
export declare class ContactsEndPoint {
|
|
19
19
|
private config;
|
package/lib/ContactsFilter.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { LicenseKindFlag } from '.';
|
|
2
1
|
import { StatusCode } from '.';
|
|
3
2
|
import { FlightCategoryCode } from '.';
|
|
4
3
|
import { TypeRatingFlag } from '.';
|
|
4
|
+
import { LicenseKindFlag } from '.';
|
|
5
5
|
export declare class ContactsFilter {
|
|
6
6
|
search: string;
|
|
7
7
|
status: StatusCode[];
|
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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { StorageItem } from '.';
|
|
4
3
|
import { Document } from '.';
|
|
4
|
+
import { StorageItem } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class DocumentsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { FlightPurposeCode } from '.';
|
|
2
|
-
import { FlightTypeCode } from '.';
|
|
3
1
|
import { FlightStatusCode } from '.';
|
|
4
|
-
import {
|
|
2
|
+
import { TOLData } from '.';
|
|
5
3
|
import { Lesson } from '.';
|
|
6
4
|
import { RiskAssessment } from '.';
|
|
7
|
-
import {
|
|
8
|
-
import { FlightClassCode } from '.';
|
|
5
|
+
import { FlightPurposeCode } from '.';
|
|
9
6
|
import { FlightCategoryCode } from '.';
|
|
10
|
-
import {
|
|
7
|
+
import { BillingStatusCode } from '.';
|
|
8
|
+
import { BaseEntityEx } from '.';
|
|
11
9
|
import { ColumnDef } from '.';
|
|
10
|
+
import { FlightClassCode } from '.';
|
|
11
|
+
import { FlightTypeCode } from '.';
|
|
12
12
|
export declare class Flight extends BaseEntityEx {
|
|
13
13
|
name: string;
|
|
14
14
|
description: string;
|
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import { FlightStateCode } from '.';
|
|
2
|
+
import { FlightPurposeCode } from '.';
|
|
1
3
|
import { TOLData } from '.';
|
|
2
4
|
import { BaseEntityEx } from '.';
|
|
3
5
|
import { ColumnDef } from '.';
|
|
4
6
|
import { FlightTypeCode } from '.';
|
|
5
7
|
import { FlightStatusCode } from '.';
|
|
6
|
-
import { FlightStateCode } from '.';
|
|
7
|
-
import { FlightPurposeCode } 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 { DepartureRisks } from '.';
|
|
3
2
|
import { TripRisks } from '.';
|
|
4
3
|
import { WeatherRisks } from '.';
|
|
5
4
|
import { Mitigation } from '.';
|
|
6
|
-
import { BaseEntityEx } from '.';
|
|
7
|
-
import { ColumnDef } from '.';
|
|
8
5
|
import { CrewDutyDayRisks } from '.';
|
|
6
|
+
import { DepartureRisks } from '.';
|
|
9
7
|
import { DestinationRisks } from '.';
|
|
10
8
|
import { SpecialRisks } from '.';
|
|
9
|
+
import { BaseEntityEx } from '.';
|
|
10
|
+
import { ColumnDef } 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 { FlightTicket } from '.';
|
|
4
3
|
import { TicketStatusCode } from '.';
|
|
4
|
+
import { FlightTicket } 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,18 +1,20 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { FlightStatusCode } from '.';
|
|
4
|
-
import {
|
|
5
|
-
import { Point } from '.';
|
|
6
|
-
import { BillingStatusCode } from '.';
|
|
7
|
-
import { TimeSeries } from '.';
|
|
8
|
-
import { Contact } from '.';
|
|
4
|
+
import { FlightClassCode } from '.';
|
|
9
5
|
import { PreFlightInfo } from '.';
|
|
10
|
-
import { Flight } from '.';
|
|
11
6
|
import { PostFlightInfo } from '.';
|
|
7
|
+
import { FlightTicket } from '.';
|
|
12
8
|
import { AnyKeyValue } from '.';
|
|
9
|
+
import { BillingStatusCode } from '.';
|
|
10
|
+
import { TimeSeries } from '.';
|
|
11
|
+
import { Distribution } from '.';
|
|
12
|
+
import { Contact } from '.';
|
|
13
13
|
import { FlightTypeCode } from '.';
|
|
14
|
+
import { FlightPurposeCode } from '.';
|
|
14
15
|
import { FlightPlan } from '.';
|
|
15
|
-
import {
|
|
16
|
+
import { Point } from '.';
|
|
17
|
+
import { Flight } from '.';
|
|
16
18
|
import * as i0 from "@angular/core";
|
|
17
19
|
export declare class FlightsEndPoint {
|
|
18
20
|
private config;
|
|
@@ -75,6 +77,18 @@ export declare class FlightsEndPoint {
|
|
|
75
77
|
* Get monthly daily flight hours for specific month, for income forecast
|
|
76
78
|
*/
|
|
77
79
|
monthlyHours(year?: number, month?: number, airplaneId?: string): import("rxjs").Observable<EntityResponse<TimeSeries<Point>>>;
|
|
80
|
+
/**
|
|
81
|
+
* Get monthly flight hours distribution by class for specific month
|
|
82
|
+
*/
|
|
83
|
+
monthlyHoursDistributionByClass(year?: number, month?: number, airplaneId?: string): import("rxjs").Observable<EntityResponse<Distribution<FlightClassCode, number>>>;
|
|
84
|
+
/**
|
|
85
|
+
* Get monthly flight hours distribution by airplane for specific month
|
|
86
|
+
*/
|
|
87
|
+
monthlyHoursDistributionByAirplane(year?: number, month?: number): import("rxjs").Observable<EntityResponse<Distribution<string, number>>>;
|
|
88
|
+
/**
|
|
89
|
+
* Get monthly flight number distribution by flight status for specific month
|
|
90
|
+
*/
|
|
91
|
+
monthlyFlightsDistributionByStatus(year?: number, month?: number, airplaneId?: string): import("rxjs").Observable<EntityResponse<Distribution<FlightStatusCode, number>>>;
|
|
78
92
|
/**
|
|
79
93
|
* Find list of contacts (pilot / first officer) on this flight
|
|
80
94
|
*/
|
package/lib/FlightsFilter.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { FlightPurposeCode } from '.';
|
|
2
1
|
import { TimeFrame } from '.';
|
|
3
2
|
import { FlightTypeCode } from '.';
|
|
4
3
|
import { FlightStatusCode } from '.';
|
|
5
4
|
import { BillingStatusCode } from '.';
|
|
5
|
+
import { FlightPurposeCode } 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 { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { Permission } from '.';
|
|
4
2
|
import { StringKeyValue } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Group extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
email: string;
|
package/lib/LeadAction.d.ts
CHANGED
package/lib/LeadsEndPoint.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import { LeadAction } from '.';
|
|
5
|
-
import { Booking } from '.';
|
|
3
|
+
import { TimeSeries } from '.';
|
|
6
4
|
import { Point } from '.';
|
|
7
5
|
import { IntEnumValue } from '.';
|
|
8
6
|
import { IntKeyValue } from '.';
|
|
9
7
|
import { Lead } from '.';
|
|
10
|
-
import {
|
|
8
|
+
import { LeadAction } from '.';
|
|
9
|
+
import { Booking } from '.';
|
|
10
|
+
import { LeadStatusCode } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class LeadsEndPoint {
|
|
13
13
|
private config;
|
package/lib/Lesson.d.ts
CHANGED
package/lib/LookupsEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { LookupGroup } from '.';
|
|
4
3
|
import { Lookup } from '.';
|
|
4
|
+
import { LookupGroup } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class LookupsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Maintenance.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { StatusCode } from '.';
|
|
2
|
-
import { MaintenanceActionCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { StatusCode } from '.';
|
|
4
|
+
import { MaintenanceActionCode } from '.';
|
|
5
5
|
export declare class Maintenance extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Maintenance } from '.';
|
|
4
3
|
import { MaintenanceActionCode } from '.';
|
|
5
4
|
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 { ColumnDef } from '.';
|
|
2
1
|
import { ConfirmStatusCode } from '.';
|
|
3
2
|
import { MessageTypeCode } from '.';
|
|
4
3
|
import { PriorityCode } from '.';
|
|
5
4
|
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } 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 { ConfirmStatusCode } from '.';
|
|
3
4
|
import { PriorityCode } from '.';
|
|
4
5
|
import { MessageConfirm } from '.';
|
|
5
6
|
import { MessageTypeCode } from '.';
|
|
6
|
-
import { ConfirmStatusCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MessageConfirmsEndPoint {
|
|
9
9
|
private config;
|
package/lib/Metar.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { MetarReport } from '.';
|
|
3
2
|
import { TafReport } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Metar extends BaseEntityEx {
|
|
6
6
|
metarReports: MetarReport[];
|
|
7
7
|
tafReports: TafReport[];
|
package/lib/MyAuthEndPoint.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Contact } from '.';
|
|
4
3
|
import { Notification } from '.';
|
|
5
4
|
import { LoginParams } from '.';
|
|
5
|
+
import { Contact } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class MyAuthEndPoint {
|
|
8
8
|
private config;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Airplane } from '.';
|
|
4
|
-
import { BookingStatusCode } from '.';
|
|
5
|
-
import { Lookup } from '.';
|
|
6
|
-
import { Booking } from '.';
|
|
7
3
|
import { BookingTypeFlag } from '.';
|
|
4
|
+
import { Lookup } from '.';
|
|
8
5
|
import { BookingSlot } from '.';
|
|
6
|
+
import { Booking } from '.';
|
|
7
|
+
import { BookingStatusCode } from '.';
|
|
8
|
+
import { Airplane } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyBookingsEndPoint {
|
|
11
11
|
private config;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import { PreFlightInfo } from '.';
|
|
3
|
+
import { FlightTypeCode } from '.';
|
|
5
4
|
import { FlightStatusCode } from '.';
|
|
5
|
+
import { Syllabus } from '.';
|
|
6
6
|
import { PostFlightInfo } from '.';
|
|
7
|
-
import { Flight } from '.';
|
|
8
|
-
import { FlightTypeCode } from '.';
|
|
9
7
|
import { FlightPlan } from '.';
|
|
10
8
|
import { InstructionTypeCode } from '.';
|
|
9
|
+
import { PreFlightInfo } from '.';
|
|
10
|
+
import { Flight } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class MyFlightsEndPoint {
|
|
13
13
|
private config;
|
package/lib/Notification.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
|
-
import { NotificationTypeCode } from '.';
|
|
3
1
|
import { PriorityCode } from '.';
|
|
4
2
|
import { StringKeyValue } from '.';
|
|
5
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
|
+
import { NotificationTypeCode } from '.';
|
|
6
6
|
export declare class Notification extends BaseEntityEx {
|
|
7
7
|
type: NotificationTypeCode;
|
|
8
8
|
description: string;
|
package/lib/PreFlightInfo.d.ts
CHANGED
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { TripRisks } from '.';
|
|
2
|
-
import { WeatherRisks } from '.';
|
|
3
|
-
import { SpecialRisks } from '.';
|
|
4
|
-
import { Mitigation } from '.';
|
|
5
1
|
import { PilotQualificationsRisks } from '.';
|
|
6
2
|
import { CrewDutyDayRisks } from '.';
|
|
7
3
|
import { DepartureRisks } from '.';
|
|
8
4
|
import { DestinationRisks } from '.';
|
|
5
|
+
import { TripRisks } from '.';
|
|
6
|
+
import { WeatherRisks } from '.';
|
|
7
|
+
import { SpecialRisks } from '.';
|
|
8
|
+
import { Mitigation } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/SystemMessage.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { PriorityCode } from '.';
|
|
2
1
|
import { BaseEntityEx } from '.';
|
|
3
2
|
import { ColumnDef } from '.';
|
|
4
3
|
import { MessageTypeCode } from '.';
|
|
4
|
+
import { PriorityCode } 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 { 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;
|