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