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