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