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