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