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