@aya-flights/ngx-goox-lib 2.19.28 → 2.19.29
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 +4331 -4291
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +2 -2
- package/lib/Airplane.d.ts +1 -1
- package/lib/AirplanesEndPoint.d.ts +2 -2
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/Certificate.d.ts +2 -2
- package/lib/Contact.d.ts +2 -2
- package/lib/ContactsEndPoint.d.ts +3 -3
- package/lib/Credit.d.ts +1 -1
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +7 -7
- package/lib/FlightPlan.d.ts +2 -2
- package/lib/FlightRisk.d.ts +6 -6
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +7 -3
- package/lib/FlightsFilter.d.ts +1 -1
- package/lib/Group.d.ts +2 -2
- package/lib/Lead.d.ts +1 -1
- package/lib/LogBookRecord.d.ts +1 -1
- package/lib/Lookup.d.ts +1 -1
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/Maintenance.d.ts +1 -1
- package/lib/MaintenancesFilter.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +1 -1
- package/lib/PostFlightData.d.ts +4 -4
- package/lib/PreFlightData.d.ts +2 -2
- package/lib/RiskAssessment.d.ts +1 -1
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/User.d.ts +1 -1
- package/lib/UsersFilter.d.ts +1 -1
- package/lib/index.d.ts +104 -104
- package/lib/services.export.d.ts +19 -19
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { StringKeyValue } from '.';
|
|
3
4
|
import { Flight } from '.';
|
|
5
|
+
import { Document } from '.';
|
|
4
6
|
import { Account } from '.';
|
|
5
7
|
import { Credit } from '.';
|
|
6
|
-
import { Document } from '.';
|
|
7
|
-
import { StringKeyValue } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AccountsEndPoint {
|
|
10
10
|
private config;
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AirplaneValidationFlag } from '.';
|
|
1
2
|
import { Engine } from '.';
|
|
2
3
|
import { Magneto } from '.';
|
|
3
4
|
import { Propeller } from '.';
|
|
@@ -5,7 +6,6 @@ import { Fuel } from '.';
|
|
|
5
6
|
import { BaseEntityEx } from '.';
|
|
6
7
|
import { ColumnDef } from '.';
|
|
7
8
|
import { AirplaneStatusCode } from '.';
|
|
8
|
-
import { AirplaneValidationFlag } from '.';
|
|
9
9
|
export declare class Airplane extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { StringKeyValue } from '.';
|
|
4
|
-
import { Document } from '.';
|
|
5
|
-
import { Airplane } from '.';
|
|
6
4
|
import { Flight } from '.';
|
|
7
5
|
import { Maintenance } from '.';
|
|
6
|
+
import { Document } from '.';
|
|
7
|
+
import { Airplane } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AirplanesEndPoint {
|
|
10
10
|
private config;
|
package/lib/Booking.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BookingTypeFlag } from '.';
|
|
2
1
|
import { BookingStatusCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { BookingTypeFlag } from '.';
|
|
5
5
|
export declare class Booking extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
accountId: string;
|
package/lib/BookingSlots.d.ts
CHANGED
package/lib/Certificate.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { ValidationFlag } from '.';
|
|
4
2
|
import { StatusCode } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Certificate extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
type: ValidationFlag;
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ValidationFlag } from '.';
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
3
1
|
import { ColumnDef } from '.';
|
|
4
2
|
import { AccountStatusCode } from '.';
|
|
5
3
|
import { Address } from '.';
|
|
4
|
+
import { ValidationFlag } from '.';
|
|
5
|
+
import { BaseEntityEx } from '.';
|
|
6
6
|
export declare class Contact extends BaseEntityEx {
|
|
7
7
|
accountId: string;
|
|
8
8
|
name: string;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { Flight } from '.';
|
|
4
|
-
import {
|
|
5
|
-
import { Document } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
6
5
|
import { Certificate } from '.';
|
|
6
|
+
import { Document } from '.';
|
|
7
7
|
import { Contact } from '.';
|
|
8
|
-
import {
|
|
8
|
+
import { MessageConfirm } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class ContactsEndPoint {
|
|
11
11
|
private config;
|
package/lib/Credit.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
1
|
import { ColumnDef } from '.';
|
|
3
2
|
import { TransactionTypeCode } from '.';
|
|
4
3
|
import { CurrencyCode } from '.';
|
|
4
|
+
import { BaseEntityEx } 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,16 +1,16 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
|
-
import { FlightTypeCode } from '.';
|
|
3
|
-
import { FlightStateCode } from '.';
|
|
4
|
-
import { FlightPurposeCode } from '.';
|
|
5
|
-
import { Lesson } from '.';
|
|
6
|
-
import { BaseEntityEx } from '.';
|
|
7
|
-
import { Billing } from '.';
|
|
8
1
|
import { RiskAssessment } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
9
3
|
import { FlightStatusCode } from '.';
|
|
10
4
|
import { BillingStatusCode } from '.';
|
|
5
|
+
import { FlightPurposeCode } from '.';
|
|
11
6
|
import { OnBoard } from '.';
|
|
12
7
|
import { TOLData } from '.';
|
|
8
|
+
import { Lesson } from '.';
|
|
9
|
+
import { FlightTypeCode } from '.';
|
|
10
|
+
import { FlightStateCode } from '.';
|
|
13
11
|
import { ReFuel } from '.';
|
|
12
|
+
import { Billing } from '.';
|
|
13
|
+
import { BaseEntityEx } from '.';
|
|
14
14
|
export declare class Flight extends BaseEntityEx {
|
|
15
15
|
name: string;
|
|
16
16
|
description: string;
|
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { FlightTypeCode } from '.';
|
|
4
2
|
import { FlightStatusCode } from '.';
|
|
5
3
|
import { FlightStateCode } from '.';
|
|
6
4
|
import { FlightPurposeCode } from '.';
|
|
7
5
|
import { TOLData } from '.';
|
|
6
|
+
import { BaseEntityEx } from '.';
|
|
7
|
+
import { ColumnDef } 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 {
|
|
2
|
-
import { CrewDutyDayRisks } from '.';
|
|
3
|
-
import { DepartureRisks } from '.';
|
|
4
|
-
import { TripRisks } from '.';
|
|
1
|
+
import { WeatherRisks } from '.';
|
|
5
2
|
import { Mitigation } from '.';
|
|
6
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
|
+
import { CrewDutyDayRisks } from '.';
|
|
7
6
|
import { DestinationRisks } from '.';
|
|
8
|
-
import {
|
|
7
|
+
import { TripRisks } from '.';
|
|
9
8
|
import { SpecialRisks } from '.';
|
|
10
|
-
import {
|
|
9
|
+
import { PilotQualificationsRisks } from '.';
|
|
10
|
+
import { DepartureRisks } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/FlightTicket.d.ts
CHANGED
package/lib/FlightsEndPoint.d.ts
CHANGED
|
@@ -3,11 +3,11 @@ import { GooxConfig } from '../config';
|
|
|
3
3
|
import { TimeSeries } from '.';
|
|
4
4
|
import { Contact } from '.';
|
|
5
5
|
import { FlightTicket } from '.';
|
|
6
|
-
import { PreFlightInfo } from '.';
|
|
7
|
-
import { FlightPlan } from '.';
|
|
8
6
|
import { PostFlightInfo } from '.';
|
|
9
|
-
import { Flight } from '.';
|
|
10
7
|
import { AnyKeyValue } from '.';
|
|
8
|
+
import { FlightPlan } from '.';
|
|
9
|
+
import { PreFlightInfo } from '.';
|
|
10
|
+
import { Flight } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class FlightsEndPoint {
|
|
13
13
|
private config;
|
|
@@ -50,6 +50,10 @@ export declare class FlightsEndPoint {
|
|
|
50
50
|
* Find flights by query
|
|
51
51
|
*/
|
|
52
52
|
find(search?: string, accountId?: string, contactId?: string, airplaneId?: string, from?: number, to?: number, type?: [], status?: [], billing?: [], purpose?: [], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Flight>>;
|
|
53
|
+
/**
|
|
54
|
+
* Download all flights by filter as XLSX document
|
|
55
|
+
*/
|
|
56
|
+
downloadFlightsXlsx(search?: string, accountId?: string, contactId?: string, airplaneId?: string, from?: number, to?: number, type?: [], status?: [], billing?: [], purpose?: [], sort?: string): import("rxjs").Observable<import("@angular/common/module.d-CnjH8Dlt").HttpEvent<Blob>>;
|
|
53
57
|
/**
|
|
54
58
|
* Find flights count histogram over time (up to last 30 days)
|
|
55
59
|
*/
|
package/lib/FlightsFilter.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { FlightPurposeCode } from '.';
|
|
1
2
|
import { TimeFrame } from '.';
|
|
2
3
|
import { FlightTypeCode } from '.';
|
|
3
4
|
import { FlightStatusCode } from '.';
|
|
4
5
|
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 { 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/Lead.d.ts
CHANGED
package/lib/LogBookRecord.d.ts
CHANGED
package/lib/Lookup.d.ts
CHANGED
package/lib/LookupGroup.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
1
|
import { MaintenanceActionCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { StatusCode } 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 { PostFlightInfo } from '.';
|
|
4
3
|
import { Flight } from '.';
|
|
5
4
|
import { FlightPlan } from '.';
|
|
6
5
|
import { PreFlightInfo } from '.';
|
|
6
|
+
import { PostFlightInfo } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MyFlightsEndPoint {
|
|
9
9
|
private config;
|
package/lib/PostFlightData.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
|
-
import { FlightTypeCode } from '.';
|
|
4
|
-
import { FlightPurposeCode } from '.';
|
|
5
1
|
import { OnBoard } from '.';
|
|
6
2
|
import { TOLData } from '.';
|
|
7
3
|
import { ReFuel } from '.';
|
|
8
4
|
import { Lesson } from '.';
|
|
5
|
+
import { BaseEntityEx } from '.';
|
|
6
|
+
import { ColumnDef } from '.';
|
|
7
|
+
import { FlightTypeCode } from '.';
|
|
8
|
+
import { FlightPurposeCode } from '.';
|
|
9
9
|
export declare class PostFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/PreFlightData.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { TOLData } from '.';
|
|
2
|
-
import { ReFuel } from '.';
|
|
3
1
|
import { Lesson } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
5
3
|
import { ColumnDef } from '.';
|
|
6
4
|
import { FlightTypeCode } from '.';
|
|
7
5
|
import { FlightPurposeCode } from '.';
|
|
8
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/RiskAssessment.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { WeatherRisks } from '.';
|
|
1
2
|
import { SpecialRisks } from '.';
|
|
2
3
|
import { Mitigation } from '.';
|
|
3
4
|
import { PilotQualificationsRisks } from '.';
|
|
@@ -5,7 +6,6 @@ import { CrewDutyDayRisks } from '.';
|
|
|
5
6
|
import { DepartureRisks } from '.';
|
|
6
7
|
import { DestinationRisks } from '.';
|
|
7
8
|
import { TripRisks } from '.';
|
|
8
|
-
import { WeatherRisks } 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 { 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 { UserTypeCode } from '.';
|
|
1
2
|
import { UserRoleFlag } from '.';
|
|
2
3
|
import { UserStatusCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
5
|
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/UsersFilter.d.ts
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -1,144 +1,144 @@
|
|
|
1
|
-
export * from './TimeFrame';
|
|
2
1
|
export * from './TimeDataPoint';
|
|
3
2
|
export * from './TimeSeries';
|
|
4
3
|
export * from './BaseEntity';
|
|
5
4
|
export * from './BaseEntityEx';
|
|
6
5
|
export * from './Tuple';
|
|
7
6
|
export * from './ColumnDef';
|
|
7
|
+
export * from './TimeFrame';
|
|
8
|
+
export * from './FilterFlag';
|
|
9
|
+
export * from './FlightPurposeCode';
|
|
10
|
+
export * from './PriorityCode';
|
|
11
|
+
export * from './UserTypeCode';
|
|
12
|
+
export * from './CampaignStatusCode';
|
|
13
|
+
export * from './MaintenanceActionCode';
|
|
14
|
+
export * from './MessageTypeCode';
|
|
8
15
|
export * from './PermissionFlag';
|
|
9
|
-
export * from './
|
|
10
|
-
export * from './
|
|
16
|
+
export * from './TransactionTypeCode';
|
|
17
|
+
export * from './UserRoleFlag';
|
|
11
18
|
export * from './ADSBSourceFlag';
|
|
12
19
|
export * from './BillingStatusCode';
|
|
13
|
-
export * from './BookingTypeFlag';
|
|
14
|
-
export * from './CampaignTypeCode';
|
|
15
|
-
export * from './FlightStateCode';
|
|
16
|
-
export * from './ValidationFlag';
|
|
17
20
|
export * from './ErrorCode';
|
|
18
|
-
export * from './
|
|
19
|
-
export * from './
|
|
20
|
-
export * from './
|
|
21
|
-
export * from './
|
|
22
|
-
export * from './
|
|
23
|
-
export * from './
|
|
21
|
+
export * from './OperatorCode';
|
|
22
|
+
export * from './PaymentMethodCode';
|
|
23
|
+
export * from './ValidationFlag';
|
|
24
|
+
export * from './AirplaneStatusCode';
|
|
25
|
+
export * from './StatusCode';
|
|
26
|
+
export * from './TicketStatusCode';
|
|
24
27
|
export * from './ModuleCode';
|
|
25
|
-
export * from './
|
|
28
|
+
export * from './ConfirmStatusCode';
|
|
29
|
+
export * from './FlightStateCode';
|
|
30
|
+
export * from './LeadStatusCode';
|
|
31
|
+
export * from './AirplaneValidationFlag';
|
|
32
|
+
export * from './AssessmentCode';
|
|
33
|
+
export * from './BookingTypeFlag';
|
|
34
|
+
export * from './LessonSubjectCode';
|
|
26
35
|
export * from './AccountStatusCode';
|
|
27
|
-
export * from './CampaignStatusCode';
|
|
28
|
-
export * from './PaymentMethodCode';
|
|
29
36
|
export * from './CurrencyCode';
|
|
30
|
-
export * from './LessonSubjectCode';
|
|
31
37
|
export * from './FlightTypeCode';
|
|
32
|
-
export * from './
|
|
33
|
-
export * from './
|
|
34
|
-
export * from './
|
|
35
|
-
export * from './FilterFlag';
|
|
36
|
-
export * from './FlightPurposeCode';
|
|
38
|
+
export * from './UserStatusCode';
|
|
39
|
+
export * from './ADSBCategoryCode';
|
|
40
|
+
export * from './CampaignTypeCode';
|
|
37
41
|
export * from './FlightStatusCode';
|
|
38
|
-
export * from './
|
|
39
|
-
export * from './
|
|
40
|
-
export * from './
|
|
41
|
-
export * from './
|
|
42
|
-
export * from './
|
|
43
|
-
export * from './
|
|
42
|
+
export * from './BookingStatusCode';
|
|
43
|
+
export * from './Airplane';
|
|
44
|
+
export * from './Permission';
|
|
45
|
+
export * from './IntKeyValue';
|
|
46
|
+
export * from './DocumentRevision';
|
|
47
|
+
export * from './RiskAssessment';
|
|
48
|
+
export * from './CrewDutyDayRisks';
|
|
49
|
+
export * from './FlightBilling';
|
|
50
|
+
export * from './LeadAction';
|
|
51
|
+
export * from './LogBookRecord';
|
|
52
|
+
export * from './AnyKeyValue';
|
|
53
|
+
export * from './SystemConfig';
|
|
44
54
|
export * from './Billing';
|
|
45
55
|
export * from './Group';
|
|
46
|
-
export * from './
|
|
47
|
-
export * from './
|
|
48
|
-
export * from './
|
|
56
|
+
export * from './BookingsFilter';
|
|
57
|
+
export * from './Flight';
|
|
58
|
+
export * from './ReFuel';
|
|
49
59
|
export * from './BillingRecord';
|
|
60
|
+
export * from './TripRisks';
|
|
50
61
|
export * from './FlightPassenger';
|
|
51
|
-
export * from './
|
|
52
|
-
export * from './
|
|
53
|
-
export * from './FlightsFilter';
|
|
54
|
-
export * from './StringKeyValue';
|
|
55
|
-
export * from './Flight';
|
|
56
|
-
export * from './TOLData';
|
|
57
|
-
export * from './PostFlightInfo';
|
|
58
|
-
export * from './Fuel';
|
|
59
|
-
export * from './BookingSlots';
|
|
60
|
-
export * from './BookingSlotsSet';
|
|
61
|
-
export * from './Credit';
|
|
62
|
-
export * from './LookupGroup';
|
|
63
|
-
export * from './Account';
|
|
62
|
+
export * from './Propeller';
|
|
63
|
+
export * from './TokenData';
|
|
64
64
|
export * from './AuditLog';
|
|
65
|
-
export * from './
|
|
66
|
-
export * from './
|
|
65
|
+
export * from './BookingSlotsSet';
|
|
66
|
+
export * from './Lesson';
|
|
67
|
+
export * from './Lead';
|
|
67
68
|
export * from './User';
|
|
68
|
-
export * from './AuditLogFilter';
|
|
69
|
-
export * from './UsersFilter';
|
|
70
|
-
export * from './IntKeyValue';
|
|
71
|
-
export * from './Document';
|
|
72
|
-
export * from './ReFuel';
|
|
73
69
|
export * from './AccountsFilter';
|
|
74
|
-
export * from './
|
|
75
|
-
export * from './FlightBilling';
|
|
76
|
-
export * from './MessageConfirm';
|
|
77
|
-
export * from './WeatherRisks';
|
|
78
|
-
export * from './Mitigation';
|
|
79
|
-
export * from './Price';
|
|
80
|
-
export * from './AnyKeyValue';
|
|
81
|
-
export * from './Airplane';
|
|
82
|
-
export * from './Propeller';
|
|
70
|
+
export * from './Magneto';
|
|
83
71
|
export * from './Booking';
|
|
84
|
-
export * from './BookingSlot';
|
|
85
|
-
export * from './LeadsFilter';
|
|
86
|
-
export * from './Engine';
|
|
87
|
-
export * from './OnBoard';
|
|
88
|
-
export * from './PreFlightData';
|
|
89
|
-
export * from './PostFlightData';
|
|
90
|
-
export * from './AirplanesFilter';
|
|
91
|
-
export * from './Campaign';
|
|
92
72
|
export * from './Certificate';
|
|
73
|
+
export * from './Account';
|
|
74
|
+
export * from './ContactsFilter';
|
|
75
|
+
export * from './PreFlightData';
|
|
76
|
+
export * from './Engine';
|
|
77
|
+
export * from './Location';
|
|
78
|
+
export * from './Document';
|
|
93
79
|
export * from './DepartureRisks';
|
|
94
|
-
export * from './
|
|
95
|
-
export * from './
|
|
96
|
-
export * from './
|
|
80
|
+
export * from './SystemMessage';
|
|
81
|
+
export * from './CreditsFilter';
|
|
82
|
+
export * from './StringKeyValue';
|
|
83
|
+
export * from './TOLData';
|
|
84
|
+
export * from './WeatherRisks';
|
|
97
85
|
export * from './FlightTicket';
|
|
98
|
-
export * from './
|
|
99
|
-
export * from './
|
|
86
|
+
export * from './Lookup';
|
|
87
|
+
export * from './MessageConfirm';
|
|
88
|
+
export * from './MaintenancesFilter';
|
|
89
|
+
export * from './BookingSlot';
|
|
90
|
+
export * from './DestinationRisks';
|
|
91
|
+
export * from './SpecialRisks';
|
|
92
|
+
export * from './FlightPlan';
|
|
93
|
+
export * from './FlightRisk';
|
|
100
94
|
export * from './PreFlightInfo';
|
|
101
|
-
export * from './Magneto';
|
|
102
|
-
export * from './Contact';
|
|
103
|
-
export * from './RiskAssessment';
|
|
104
95
|
export * from './CertificatesFilter';
|
|
105
|
-
export * from './
|
|
106
|
-
export * from './
|
|
107
|
-
export * from './
|
|
108
|
-
export * from './Lookup';
|
|
96
|
+
export * from './Mitigation';
|
|
97
|
+
export * from './Maintenance';
|
|
98
|
+
export * from './Price';
|
|
109
99
|
export * from './Address';
|
|
110
|
-
export * from './
|
|
100
|
+
export * from './LeadsFilter';
|
|
111
101
|
export * from './LoginParams';
|
|
112
|
-
export * from './
|
|
113
|
-
export * from './
|
|
114
|
-
export * from './
|
|
102
|
+
export * from './BookingSlots';
|
|
103
|
+
export * from './ADSBState';
|
|
104
|
+
export * from './Fuel';
|
|
105
|
+
export * from './PostFlightInfo';
|
|
106
|
+
export * from './FlightsFilter';
|
|
107
|
+
export * from './UsersFilter';
|
|
108
|
+
export * from './Campaign';
|
|
109
|
+
export * from './Contact';
|
|
110
|
+
export * from './Credit';
|
|
115
111
|
export * from './PilotQualificationsRisks';
|
|
116
|
-
export * from './
|
|
117
|
-
export * from './
|
|
118
|
-
export * from './
|
|
119
|
-
export * from './
|
|
120
|
-
export * from './
|
|
121
|
-
export * from './AccountsEndPoint';
|
|
112
|
+
export * from './LookupGroup';
|
|
113
|
+
export * from './AirplanesFilter';
|
|
114
|
+
export * from './OnBoard';
|
|
115
|
+
export * from './PostFlightData';
|
|
116
|
+
export * from './AuditLogFilter';
|
|
122
117
|
export * from './DocumentsEndPoint';
|
|
123
|
-
export * from './SystemMessagesEndPoint';
|
|
124
|
-
export * from './BookingsEndPoint';
|
|
125
|
-
export * from './MessageConfirmsEndPoint';
|
|
126
|
-
export * from './SystemConfigsEndPoint';
|
|
127
|
-
export * from './AuditLogsEndPoint';
|
|
128
|
-
export * from './CreditsEndPoint';
|
|
129
118
|
export * from './FlightTicketsEndPoint';
|
|
130
|
-
export * from './
|
|
131
|
-
export * from './
|
|
132
|
-
export * from './
|
|
133
|
-
export * from './PriceListEndPoint';
|
|
134
|
-
export * from './UserEndPoint';
|
|
119
|
+
export * from './SystemConfigsEndPoint';
|
|
120
|
+
export * from './UsersEndPoint';
|
|
121
|
+
export * from './MessageConfirmsEndPoint';
|
|
135
122
|
export * from './BookingSlotsEndPoint';
|
|
136
|
-
export * from './
|
|
137
|
-
export * from './MyCreditsEndPoint';
|
|
138
|
-
export * from './MyFlightsEndPoint';
|
|
123
|
+
export * from './ContactsEndPoint';
|
|
139
124
|
export * from './AirplanesEndPoint';
|
|
125
|
+
export * from './BookingsEndPoint';
|
|
140
126
|
export * from './FlightsEndPoint';
|
|
127
|
+
export * from './MyBookingsEndPoint';
|
|
128
|
+
export * from './CertificatesEndPoint';
|
|
141
129
|
export * from './LookupsEndPoint';
|
|
130
|
+
export * from './PriceListEndPoint';
|
|
142
131
|
export * from './SystemEndPoint';
|
|
132
|
+
export * from './UserEndPoint';
|
|
133
|
+
export * from './MyCreditsEndPoint';
|
|
134
|
+
export * from './MyFlightsEndPoint';
|
|
135
|
+
export * from './LeadsEndPoint';
|
|
136
|
+
export * from './SystemMessagesEndPoint';
|
|
137
|
+
export * from './AccountsEndPoint';
|
|
138
|
+
export * from './CampaignsEndPoint';
|
|
139
|
+
export * from './CreditsEndPoint';
|
|
140
|
+
export * from './MaintenancesEndPoint';
|
|
143
141
|
export * from './MyAuthEndPoint';
|
|
142
|
+
export * from './AuditLogsEndPoint';
|
|
143
|
+
export * from './GroupsEndPoint';
|
|
144
144
|
export * from './Enums';
|