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