@aya-flights/ngx-goox-lib 2.18.60 → 2.18.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/Account.mjs +1 -1
- package/esm2022/lib/AccountsEndPoint.mjs +1 -1
- package/esm2022/lib/AirplanesEndPoint.mjs +1 -1
- package/esm2022/lib/BookingPlan.mjs +1 -1
- package/esm2022/lib/BookingsFilter.mjs +1 -1
- package/esm2022/lib/Certificate.mjs +2 -2
- package/esm2022/lib/ContactsEndPoint.mjs +1 -1
- package/esm2022/lib/CreditsFilter.mjs +1 -1
- package/esm2022/lib/Document.mjs +2 -2
- package/esm2022/lib/Enums.mjs +255 -255
- package/esm2022/lib/Flight.mjs +1 -1
- package/esm2022/lib/FlightBilling.mjs +2 -2
- package/esm2022/lib/FlightRisk.mjs +2 -2
- package/esm2022/lib/FlightsEndPoint.mjs +1 -1
- package/esm2022/lib/Group.mjs +1 -1
- package/esm2022/lib/Lesson.mjs +1 -1
- package/esm2022/lib/LookupsEndPoint.mjs +1 -1
- package/esm2022/lib/Maintenance.mjs +1 -1
- package/esm2022/lib/MyFlightsEndPoint.mjs +1 -1
- package/esm2022/lib/PostFlightData.mjs +1 -1
- package/esm2022/lib/PostFlightInfo.mjs +1 -1
- package/esm2022/lib/PreFlightData.mjs +1 -1
- package/esm2022/lib/RiskAssessment.mjs +1 -1
- package/esm2022/lib/SyllabusEndPoint.mjs +5 -2
- package/esm2022/lib/SyllabusFilter.mjs +1 -1
- package/esm2022/lib/SystemMessage.mjs +2 -2
- package/esm2022/lib/User.mjs +1 -1
- package/esm2022/lib/UsersEndPoint.mjs +1 -1
- package/esm2022/lib/index.mjs +115 -115
- package/esm2022/lib/services.export.mjs +39 -39
- package/fesm2022/aya-flights-ngx-goox-lib.mjs +4986 -4983
- 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/AirplanesEndPoint.d.ts +2 -2
- package/lib/BookingPlan.d.ts +1 -1
- package/lib/BookingsFilter.d.ts +1 -1
- package/lib/Certificate.d.ts +1 -1
- package/lib/ContactsEndPoint.d.ts +2 -2
- package/lib/CreditsFilter.d.ts +1 -1
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +10 -10
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightRisk.d.ts +5 -5
- package/lib/FlightsEndPoint.d.ts +3 -3
- package/lib/Group.d.ts +1 -1
- package/lib/Lesson.d.ts +2 -2
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/Maintenance.d.ts +2 -2
- package/lib/MyFlightsEndPoint.d.ts +2 -2
- package/lib/PostFlightData.d.ts +3 -3
- package/lib/PostFlightInfo.d.ts +1 -1
- package/lib/PreFlightData.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +1 -1
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/SyllabusFilter.d.ts +1 -1
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/User.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +114 -114
- package/lib/services.export.d.ts +20 -20
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { AccountStatusCode } from '.';
|
|
2
|
-
import { Address } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { AccountStatusCode } from '.';
|
|
4
|
+
import { Address } 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 { StringKeyValue } from '.';
|
|
4
3
|
import { Account } from '.';
|
|
5
|
-
import {
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
6
5
|
import { Credit } from '.';
|
|
7
6
|
import { Document } from '.';
|
|
7
|
+
import { Flight } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AccountsEndPoint {
|
|
10
10
|
private config;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
3
|
+
import { Maintenance } from '.';
|
|
4
4
|
import { Flight } from '.';
|
|
5
5
|
import { Document } from '.';
|
|
6
|
-
import { Maintenance } from '.';
|
|
7
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;
|
package/lib/BookingPlan.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BookingTypeFlag } from '.';
|
|
1
2
|
import { FlightPurposeCode } from '.';
|
|
2
3
|
import { FlightStatusCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
5
|
import { ColumnDef } from '.';
|
|
5
|
-
import { BookingTypeFlag } from '.';
|
|
6
6
|
export declare class BookingPlan extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
package/lib/BookingsFilter.d.ts
CHANGED
package/lib/Certificate.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { ValidationFlag } from '.';
|
|
3
2
|
import { StatusCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Certificate extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
type: ValidationFlag;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Contact } from '.';
|
|
4
3
|
import { StringKeyValue } from '.';
|
|
5
|
-
import { Certificate } from '.';
|
|
6
4
|
import { Flight } from '.';
|
|
5
|
+
import { Contact } from '.';
|
|
6
|
+
import { Certificate } from '.';
|
|
7
7
|
import { MessageConfirm } from '.';
|
|
8
8
|
import { Document } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
package/lib/CreditsFilter.d.ts
CHANGED
package/lib/Document.d.ts
CHANGED
package/lib/Flight.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { Lesson } from '.';
|
|
1
|
+
import { FlightStatusCode } from '.';
|
|
2
|
+
import { TOLData } from '.';
|
|
4
3
|
import { Billing } from '.';
|
|
5
|
-
import { FlightClassCode } from '.';
|
|
6
|
-
import { BillingStatusCode } from '.';
|
|
7
4
|
import { ColumnDef } from '.';
|
|
8
|
-
import { FlightPurposeCode } from '.';
|
|
9
5
|
import { FlightCategoryCode } from '.';
|
|
10
6
|
import { FlightStateCode } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import { BaseEntityEx } from '.';
|
|
13
|
-
import { FlightStatusCode } from '.';
|
|
14
|
-
import { TOLData } from '.';
|
|
7
|
+
import { BillingStatusCode } from '.';
|
|
15
8
|
import { RiskAssessment } from '.';
|
|
9
|
+
import { BaseEntityEx } from '.';
|
|
10
|
+
import { FlightPurposeCode } from '.';
|
|
11
|
+
import { FlightClassCode } from '.';
|
|
12
|
+
import { FlightTypeCode } from '.';
|
|
13
|
+
import { OnBoard } from '.';
|
|
14
|
+
import { ReFuel } from '.';
|
|
15
|
+
import { Lesson } from '.';
|
|
16
16
|
export declare class Flight extends BaseEntityEx {
|
|
17
17
|
name: string;
|
|
18
18
|
description: string;
|
package/lib/FlightBilling.d.ts
CHANGED
package/lib/FlightRisk.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { TripRisks } from '.';
|
|
2
1
|
import { WeatherRisks } from '.';
|
|
3
|
-
import { Mitigation } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
|
-
import { DepartureRisks } from '.';
|
|
6
|
-
import { DestinationRisks } from '.';
|
|
7
2
|
import { SpecialRisks } from '.';
|
|
8
3
|
import { ColumnDef } from '.';
|
|
9
4
|
import { PilotQualificationsRisks } from '.';
|
|
10
5
|
import { CrewDutyDayRisks } from '.';
|
|
6
|
+
import { DepartureRisks } from '.';
|
|
7
|
+
import { DestinationRisks } from '.';
|
|
8
|
+
import { TripRisks } from '.';
|
|
9
|
+
import { Mitigation } from '.';
|
|
10
|
+
import { BaseEntityEx } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/FlightsEndPoint.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { TimeSeries } from '.';
|
|
4
|
+
import { PostFlightInfo } from '.';
|
|
5
|
+
import { AnyKeyValue } from '.';
|
|
4
6
|
import { FlightTicket } from '.';
|
|
7
|
+
import { PreFlightInfo } from '.';
|
|
5
8
|
import { Flight } from '.';
|
|
6
9
|
import { FlightPlan } from '.';
|
|
7
10
|
import { Contact } from '.';
|
|
8
|
-
import { PreFlightInfo } from '.';
|
|
9
|
-
import { AnyKeyValue } from '.';
|
|
10
|
-
import { PostFlightInfo } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class FlightsEndPoint {
|
|
13
13
|
private config;
|
package/lib/Group.d.ts
CHANGED
package/lib/Lesson.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { LessonTypeCode } from '.';
|
|
2
|
-
import { FlightCategoryCode } from '.';
|
|
3
1
|
import { LessonSubjectCode } from '.';
|
|
4
2
|
import { AssessmentCode } from '.';
|
|
3
|
+
import { LessonTypeCode } from '.';
|
|
4
|
+
import { FlightCategoryCode } from '.';
|
|
5
5
|
export declare class Lesson {
|
|
6
6
|
number: number;
|
|
7
7
|
type: LessonTypeCode;
|
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 { Lookup } from '.';
|
|
4
3
|
import { LookupGroup } from '.';
|
|
4
|
+
import { Lookup } 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,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightPlan } from '.';
|
|
4
|
-
import { PreFlightInfo } from '.';
|
|
5
3
|
import { PostFlightInfo } from '.';
|
|
6
4
|
import { Flight } from '.';
|
|
5
|
+
import { FlightPlan } from '.';
|
|
6
|
+
import { PreFlightInfo } 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 { FlightTypeCode } from '.';
|
|
2
|
+
import { FlightPurposeCode } from '.';
|
|
3
|
+
import { OnBoard } from '.';
|
|
1
4
|
import { TOLData } from '.';
|
|
2
5
|
import { ReFuel } from '.';
|
|
3
6
|
import { Lesson } from '.';
|
|
4
7
|
import { BaseEntityEx } from '.';
|
|
5
8
|
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/PostFlightInfo.d.ts
CHANGED
package/lib/PreFlightData.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { ReFuel } from '.';
|
|
2
1
|
import { Lesson } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
@@ -6,6 +5,7 @@ import { FlightTypeCode } from '.';
|
|
|
6
5
|
import { FlightPurposeCode } from '.';
|
|
7
6
|
import { OnBoard } from '.';
|
|
8
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 { DestinationRisks } from '.';
|
|
1
2
|
import { TripRisks } from '.';
|
|
2
3
|
import { WeatherRisks } from '.';
|
|
3
4
|
import { SpecialRisks } from '.';
|
|
@@ -5,7 +6,6 @@ import { Mitigation } from '.';
|
|
|
5
6
|
import { PilotQualificationsRisks } from '.';
|
|
6
7
|
import { CrewDutyDayRisks } from '.';
|
|
7
8
|
import { DepartureRisks } from '.';
|
|
8
|
-
import { DestinationRisks } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
|
@@ -30,7 +30,7 @@ export declare class SyllabusEndPoint {
|
|
|
30
30
|
/**
|
|
31
31
|
* Find Syllabus topics by query
|
|
32
32
|
*/
|
|
33
|
-
find(plan?: [], type?: [], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Syllabus>>;
|
|
33
|
+
find(search?: string, plan?: [], type?: [], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Syllabus>>;
|
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<SyllabusEndPoint, never>;
|
|
35
35
|
static ɵprov: i0.ɵɵInjectableDeclaration<SyllabusEndPoint>;
|
|
36
36
|
}
|
package/lib/SyllabusFilter.d.ts
CHANGED
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;
|
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { UserStatusCode } from '.';
|
|
1
2
|
import { BaseEntityEx } from '.';
|
|
2
3
|
import { ColumnDef } from '.';
|
|
3
4
|
import { UserTypeCode } from '.';
|
|
4
5
|
import { UserRoleFlag } from '.';
|
|
5
|
-
import { UserStatusCode } 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 { 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,153 +1,153 @@
|
|
|
1
|
+
export * from './TimeSeries';
|
|
2
|
+
export * from './BaseEntity';
|
|
1
3
|
export * from './BaseEntityEx';
|
|
2
4
|
export * from './Tuple';
|
|
3
5
|
export * from './ColumnDef';
|
|
4
6
|
export * from './TimeFrame';
|
|
5
7
|
export * from './TimeDataPoint';
|
|
6
|
-
export * from './TimeSeries';
|
|
7
|
-
export * from './BaseEntity';
|
|
8
|
-
export * from './InstructionTypeCode';
|
|
9
8
|
export * from './StatusCode';
|
|
10
|
-
export * from './
|
|
11
|
-
export * from './
|
|
12
|
-
export * from './
|
|
13
|
-
export * from './
|
|
9
|
+
export * from './TransactionTypeCode';
|
|
10
|
+
export * from './FilterFlag';
|
|
11
|
+
export * from './MessageTypeCode';
|
|
12
|
+
export * from './ModuleCode';
|
|
14
13
|
export * from './FlightStateCode';
|
|
15
|
-
export * from './
|
|
14
|
+
export * from './AccountStatusCode';
|
|
15
|
+
export * from './BookingTypeFlag';
|
|
16
|
+
export * from './CampaignTypeCode';
|
|
17
|
+
export * from './LessonSubjectCode';
|
|
18
|
+
export * from './UserStatusCode';
|
|
16
19
|
export * from './ADSBSourceFlag';
|
|
17
20
|
export * from './CampaignStatusCode';
|
|
18
|
-
export * from './AirplaneValidationFlag';
|
|
19
|
-
export * from './MaintenanceActionCode';
|
|
20
|
-
export * from './UserTypeCode';
|
|
21
21
|
export * from './LeadStatusCode';
|
|
22
|
-
export * from './
|
|
23
|
-
export * from './
|
|
24
|
-
export * from './AssessmentCode';
|
|
25
|
-
export * from './BillingStatusCode';
|
|
26
|
-
export * from './BookingTypeFlag';
|
|
22
|
+
export * from './FlightPurposeCode';
|
|
23
|
+
export * from './FlightStatusCode';
|
|
27
24
|
export * from './FlightTypeCode';
|
|
28
|
-
export * from './
|
|
25
|
+
export * from './LicenseTypeFlag';
|
|
29
26
|
export * from './TicketStatusCode';
|
|
30
|
-
export * from './
|
|
27
|
+
export * from './AirplaneValidationFlag';
|
|
28
|
+
export * from './BillingStatusCode';
|
|
31
29
|
export * from './BookingStatusCode';
|
|
32
|
-
export * from './
|
|
33
|
-
export * from './
|
|
30
|
+
export * from './FlightClassCode';
|
|
31
|
+
export * from './InstructionTypeCode';
|
|
32
|
+
export * from './MaintenanceActionCode';
|
|
33
|
+
export * from './PaymentMethodCode';
|
|
34
|
+
export * from './PermissionFlag';
|
|
35
|
+
export * from './ADSBCategoryCode';
|
|
36
|
+
export * from './AssessmentCode';
|
|
37
|
+
export * from './FlightCategoryCode';
|
|
34
38
|
export * from './PriorityCode';
|
|
35
|
-
export * from './UserRoleFlag';
|
|
36
39
|
export * from './ValidationFlag';
|
|
40
|
+
export * from './UserRoleFlag';
|
|
41
|
+
export * from './UserTypeCode';
|
|
42
|
+
export * from './AirplaneStatusCode';
|
|
37
43
|
export * from './CurrencyCode';
|
|
38
|
-
export * from './FilterFlag';
|
|
39
|
-
export * from './LicenseTypeFlag';
|
|
40
44
|
export * from './OperatorCode';
|
|
41
|
-
export * from './
|
|
42
|
-
export * from './PermissionFlag';
|
|
43
|
-
export * from './AccountStatusCode';
|
|
44
|
-
export * from './CampaignTypeCode';
|
|
45
|
+
export * from './ConfirmStatusCode';
|
|
45
46
|
export * from './ErrorCode';
|
|
46
|
-
export * from './
|
|
47
|
-
export * from './
|
|
48
|
-
export * from './
|
|
49
|
-
export * from './ContactsFilter';
|
|
50
|
-
export * from './Engine';
|
|
51
|
-
export * from './Booking';
|
|
52
|
-
export * from './CrewDutyDayRisks';
|
|
53
|
-
export * from './FlightTicket';
|
|
54
|
-
export * from './MaintenancesFilter';
|
|
55
|
-
export * from './TOLData';
|
|
47
|
+
export * from './LessonTypeCode';
|
|
48
|
+
export * from './Fuel';
|
|
49
|
+
export * from './BookingSlots';
|
|
56
50
|
export * from './RiskAssessment';
|
|
51
|
+
export * from './Propeller';
|
|
52
|
+
export * from './BookingSlotsSet';
|
|
53
|
+
export * from './Campaign';
|
|
54
|
+
export * from './Certificate';
|
|
55
|
+
export * from './Maintenance';
|
|
56
|
+
export * from './SyllabusFilter';
|
|
57
|
+
export * from './MaintenancesFilter';
|
|
58
|
+
export * from './ReFuel';
|
|
59
|
+
export * from './WeatherRisks';
|
|
60
|
+
export * from './FlightPlan';
|
|
57
61
|
export * from './FlightRisk';
|
|
58
|
-
export * from './
|
|
59
|
-
export * from './
|
|
60
|
-
export * from './
|
|
61
|
-
export * from './Airplane';
|
|
62
|
-
export * from './BookingPlan';
|
|
63
|
-
export * from './Lesson';
|
|
64
|
-
export * from './PilotQualificationsRisks';
|
|
62
|
+
export * from './FlightPassenger';
|
|
63
|
+
export * from './ContactsFilter';
|
|
64
|
+
export * from './OnBoard';
|
|
65
65
|
export * from './TripRisks';
|
|
66
|
-
export * from './FlightBilling';
|
|
67
|
-
export * from './LeadAction';
|
|
68
|
-
export * from './LogBookRecord';
|
|
69
66
|
export * from './CreditsFilter';
|
|
70
|
-
export * from './
|
|
71
|
-
export * from './Syllabus';
|
|
72
|
-
export * from './BookingSlot';
|
|
73
|
-
export * from './Address';
|
|
74
|
-
export * from './LoginParams';
|
|
75
|
-
export * from './DocumentRevision';
|
|
76
|
-
export * from './OnBoard';
|
|
77
|
-
export * from './SyllabusFilter';
|
|
78
|
-
export * from './Credit';
|
|
79
|
-
export * from './Price';
|
|
80
|
-
export * from './AirplanesFilter';
|
|
81
|
-
export * from './PreFlightData';
|
|
67
|
+
export * from './AuditLog';
|
|
82
68
|
export * from './Contact';
|
|
83
|
-
export * from './SystemConfig';
|
|
84
|
-
export * from './CertificatesFilter';
|
|
85
|
-
export * from './StringKeyValue';
|
|
86
|
-
export * from './BookingSlotsSet';
|
|
87
|
-
export * from './Campaign';
|
|
88
|
-
export * from './Flight';
|
|
89
|
-
export * from './DestinationRisks';
|
|
90
69
|
export * from './Mitigation';
|
|
91
|
-
export * from './
|
|
92
|
-
export * from './
|
|
93
|
-
export * from './
|
|
94
|
-
export * from './
|
|
95
|
-
export * from './
|
|
96
|
-
export * from './BookingsFilter';
|
|
97
|
-
export * from './UsersFilter';
|
|
98
|
-
export * from './Location';
|
|
99
|
-
export * from './Magneto';
|
|
100
|
-
export * from './ReFuel';
|
|
70
|
+
export * from './AirplanesFilter';
|
|
71
|
+
export * from './Lookup';
|
|
72
|
+
export * from './Price';
|
|
73
|
+
export * from './AnyKeyValue';
|
|
74
|
+
export * from './DocumentRevision';
|
|
101
75
|
export * from './Group';
|
|
102
|
-
export * from './
|
|
76
|
+
export * from './LogBookRecord';
|
|
77
|
+
export * from './Syllabus';
|
|
103
78
|
export * from './User';
|
|
104
|
-
export * from './
|
|
105
|
-
export * from './Fuel';
|
|
106
|
-
export * from './Maintenance';
|
|
107
|
-
export * from './LeadsFilter';
|
|
79
|
+
export * from './Engine';
|
|
108
80
|
export * from './IntKeyValue';
|
|
109
|
-
export * from './
|
|
110
|
-
export * from './
|
|
111
|
-
export * from './
|
|
112
|
-
export * from './
|
|
113
|
-
export * from './AuditLog';
|
|
114
|
-
export * from './BookingSlots';
|
|
81
|
+
export * from './Permission';
|
|
82
|
+
export * from './PreFlightInfo';
|
|
83
|
+
export * from './Booking';
|
|
84
|
+
export * from './BookingSlot';
|
|
115
85
|
export * from './Document';
|
|
116
|
-
export * from './
|
|
86
|
+
export * from './Flight';
|
|
87
|
+
export * from './LeadsFilter';
|
|
88
|
+
export * from './FlightTicket';
|
|
89
|
+
export * from './SystemConfig';
|
|
90
|
+
export * from './PilotQualificationsRisks';
|
|
91
|
+
export * from './Airplane';
|
|
92
|
+
export * from './BookingPlan';
|
|
93
|
+
export * from './DepartureRisks';
|
|
94
|
+
export * from './BookingsFilter';
|
|
95
|
+
export * from './Credit';
|
|
96
|
+
export * from './TOLData';
|
|
97
|
+
export * from './Lesson';
|
|
98
|
+
export * from './BillingRecord';
|
|
99
|
+
export * from './LeadAction';
|
|
100
|
+
export * from './PostFlightData';
|
|
101
|
+
export * from './FlightsFilter';
|
|
102
|
+
export * from './SpecialRisks';
|
|
103
|
+
export * from './FlightBilling';
|
|
104
|
+
export * from './SystemMessage';
|
|
105
|
+
export * from './CertificatesFilter';
|
|
106
|
+
export * from './Billing';
|
|
117
107
|
export * from './Lead';
|
|
118
108
|
export * from './ADSBState';
|
|
109
|
+
export * from './Magneto';
|
|
110
|
+
export * from './CrewDutyDayRisks';
|
|
111
|
+
export * from './DestinationRisks';
|
|
112
|
+
export * from './PreFlightData';
|
|
113
|
+
export * from './Account';
|
|
114
|
+
export * from './MessageConfirm';
|
|
119
115
|
export * from './AuditLogFilter';
|
|
120
|
-
export * from './
|
|
121
|
-
export * from './
|
|
122
|
-
export * from './
|
|
123
|
-
export * from './
|
|
124
|
-
export * from './
|
|
125
|
-
export * from './
|
|
126
|
-
export * from './
|
|
127
|
-
export * from './
|
|
128
|
-
export * from './
|
|
129
|
-
export * from './
|
|
116
|
+
export * from './UsersFilter';
|
|
117
|
+
export * from './Address';
|
|
118
|
+
export * from './StringKeyValue';
|
|
119
|
+
export * from './Location';
|
|
120
|
+
export * from './LoginParams';
|
|
121
|
+
export * from './PostFlightInfo';
|
|
122
|
+
export * from './TokenData';
|
|
123
|
+
export * from './LookupGroup';
|
|
124
|
+
export * from './AccountsFilter';
|
|
125
|
+
export * from './AccountsEndPoint';
|
|
126
|
+
export * from './CreditsEndPoint';
|
|
127
|
+
export * from './ContactsEndPoint';
|
|
128
|
+
export * from './LeadsEndPoint';
|
|
129
|
+
export * from './LookupsEndPoint';
|
|
130
130
|
export * from './MaintenancesEndPoint';
|
|
131
|
-
export * from './
|
|
131
|
+
export * from './MyAuthEndPoint';
|
|
132
|
+
export * from './AirplanesEndPoint';
|
|
133
|
+
export * from './BookingsEndPoint';
|
|
134
|
+
export * from './MyFlightsEndPoint';
|
|
132
135
|
export * from './AuditLogsEndPoint';
|
|
133
|
-
export * from './UsersEndPoint';
|
|
134
136
|
export * from './BookingSlotsEndPoint';
|
|
135
|
-
export * from './
|
|
136
|
-
export * from './FlightTicketsEndPoint';
|
|
137
|
-
export * from './AccountsEndPoint';
|
|
138
|
-
export * from './GroupsEndPoint';
|
|
139
|
-
export * from './MessageConfirmsEndPoint';
|
|
137
|
+
export * from './CampaignsEndPoint';
|
|
140
138
|
export * from './SyllabusEndPoint';
|
|
141
|
-
export * from './BookingsEndPoint';
|
|
142
|
-
export * from './LookupsEndPoint';
|
|
143
|
-
export * from './SystemMessagesEndPoint';
|
|
144
|
-
export * from './CreditsEndPoint';
|
|
145
|
-
export * from './SystemConfigsEndPoint';
|
|
146
139
|
export * from './UserEndPoint';
|
|
147
|
-
export * from './
|
|
140
|
+
export * from './DocumentsEndPoint';
|
|
141
|
+
export * from './MessageConfirmsEndPoint';
|
|
142
|
+
export * from './SystemMessagesEndPoint';
|
|
148
143
|
export * from './MyCreditsEndPoint';
|
|
149
|
-
export * from './
|
|
150
|
-
export * from './CampaignsEndPoint';
|
|
144
|
+
export * from './CertificatesEndPoint';
|
|
151
145
|
export * from './FlightsEndPoint';
|
|
152
|
-
export * from './
|
|
146
|
+
export * from './PriceListEndPoint';
|
|
147
|
+
export * from './MyBookingsEndPoint';
|
|
148
|
+
export * from './FlightTicketsEndPoint';
|
|
149
|
+
export * from './GroupsEndPoint';
|
|
150
|
+
export * from './SystemConfigsEndPoint';
|
|
151
|
+
export * from './SystemEndPoint';
|
|
152
|
+
export * from './UsersEndPoint';
|
|
153
153
|
export * from './Enums';
|
package/lib/services.export.d.ts
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { FlightTicketsEndPoint } from '.';
|
|
2
|
+
import { GroupsEndPoint } from '.';
|
|
3
|
+
import { SystemConfigsEndPoint } from '.';
|
|
2
4
|
import { SystemEndPoint } from '.';
|
|
3
|
-
import { MyFlightsEndPoint } from '.';
|
|
4
|
-
import { AuditLogsEndPoint } from '.';
|
|
5
|
-
import { CertificatesEndPoint } from '.';
|
|
6
|
-
import { DocumentsEndPoint } from '.';
|
|
7
|
-
import { MaintenancesEndPoint } from '.';
|
|
8
|
-
import { MyBookingsEndPoint } from '.';
|
|
9
|
-
import { BookingSlotsEndPoint } from '.';
|
|
10
5
|
import { UsersEndPoint } from '.';
|
|
6
|
+
import { MyBookingsEndPoint } from '.';
|
|
11
7
|
import { AccountsEndPoint } from '.';
|
|
8
|
+
import { CreditsEndPoint } from '.';
|
|
12
9
|
import { ContactsEndPoint } from '.';
|
|
13
|
-
import {
|
|
10
|
+
import { LeadsEndPoint } from '.';
|
|
11
|
+
import { LookupsEndPoint } from '.';
|
|
12
|
+
import { MaintenancesEndPoint } from '.';
|
|
13
|
+
import { MyAuthEndPoint } from '.';
|
|
14
|
+
import { AirplanesEndPoint } from '.';
|
|
14
15
|
import { BookingsEndPoint } from '.';
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
16
|
+
import { MyFlightsEndPoint } from '.';
|
|
17
|
+
import { AuditLogsEndPoint } from '.';
|
|
18
|
+
import { BookingSlotsEndPoint } from '.';
|
|
19
|
+
import { CampaignsEndPoint } from '.';
|
|
17
20
|
import { SyllabusEndPoint } from '.';
|
|
18
|
-
import { CreditsEndPoint } from '.';
|
|
19
|
-
import { LookupsEndPoint } from '.';
|
|
20
|
-
import { SystemMessagesEndPoint } from '.';
|
|
21
|
-
import { PriceListEndPoint } from '.';
|
|
22
|
-
import { SystemConfigsEndPoint } from '.';
|
|
23
21
|
import { UserEndPoint } from '.';
|
|
24
|
-
import {
|
|
22
|
+
import { DocumentsEndPoint } from '.';
|
|
23
|
+
import { MessageConfirmsEndPoint } from '.';
|
|
24
|
+
import { SystemMessagesEndPoint } from '.';
|
|
25
25
|
import { MyCreditsEndPoint } from '.';
|
|
26
|
-
import {
|
|
26
|
+
import { CertificatesEndPoint } from '.';
|
|
27
27
|
import { FlightsEndPoint } from '.';
|
|
28
|
-
import {
|
|
29
|
-
export declare const Services: (typeof
|
|
28
|
+
import { PriceListEndPoint } from '.';
|
|
29
|
+
export declare const Services: (typeof AccountsEndPoint | typeof CreditsEndPoint | typeof ContactsEndPoint | typeof LeadsEndPoint | typeof LookupsEndPoint | typeof MaintenancesEndPoint | typeof MyAuthEndPoint | typeof AirplanesEndPoint | typeof BookingsEndPoint | typeof MyFlightsEndPoint | typeof AuditLogsEndPoint | typeof BookingSlotsEndPoint | typeof CampaignsEndPoint | typeof SyllabusEndPoint | typeof UserEndPoint | typeof DocumentsEndPoint | typeof MessageConfirmsEndPoint | typeof SystemMessagesEndPoint | typeof MyCreditsEndPoint | typeof CertificatesEndPoint | typeof FlightsEndPoint | typeof PriceListEndPoint | typeof MyBookingsEndPoint | typeof FlightTicketsEndPoint | typeof GroupsEndPoint | typeof SystemConfigsEndPoint | typeof SystemEndPoint | typeof UsersEndPoint)[];
|