@aya-flights/ngx-goox-lib 2.19.64 → 2.19.68
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 +4536 -4442
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +5 -1
- package/lib/AccountTypeCode.d.ts +11 -0
- package/lib/AccountsEndPoint.d.ts +10 -5
- package/lib/Airplane.d.ts +6 -4
- package/lib/AirplanesEndPoint.d.ts +12 -5
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingPlan.d.ts +2 -2
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/BookingSlotsSet.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +3 -3
- package/lib/BookingsFilter.d.ts +1 -1
- package/lib/Campaign.d.ts +2 -2
- package/lib/CertificatesEndPoint.d.ts +2 -1
- package/lib/Contact.d.ts +5 -1
- package/lib/ContactsEndPoint.d.ts +12 -7
- package/lib/Flight.d.ts +10 -10
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightPlan.d.ts +2 -2
- package/lib/FlightRisk.d.ts +4 -4
- package/lib/FlightTicketsEndPoint.d.ts +2 -1
- package/lib/FlightsEndPoint.d.ts +11 -7
- package/lib/Lead.d.ts +2 -2
- package/lib/LeadsEndPoint.d.ts +4 -3
- package/lib/LicenseKindFlag.d.ts +17 -0
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/Maintenance.d.ts +1 -1
- package/lib/MaintenancesEndPoint.d.ts +3 -1
- package/lib/MaintenancesFilter.d.ts +1 -1
- package/lib/MessageConfirm.d.ts +2 -2
- package/lib/MessageConfirmsEndPoint.d.ts +4 -1
- package/lib/MyBookingsEndPoint.d.ts +2 -1
- package/lib/MyFlightsEndPoint.d.ts +5 -3
- package/lib/PostFlightData.d.ts +4 -4
- package/lib/PreFlightData.d.ts +4 -4
- package/lib/PriceListEndPoint.d.ts +2 -1
- package/lib/RiskAssessment.d.ts +3 -3
- package/lib/Syllabus.d.ts +1 -1
- package/lib/SyllabusEndPoint.d.ts +3 -1
- package/lib/SystemConfig.d.ts +1 -1
- package/lib/SystemMessagesEndPoint.d.ts +3 -2
- package/lib/TypeRatingFlag.d.ts +10 -0
- package/lib/User.d.ts +2 -2
- package/lib/UserEndPoint.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +4 -2
- package/lib/index.d.ts +116 -114
- package/lib/services.export.d.ts +21 -21
- package/package.json +1 -1
- package/lib/LicenseTypeFlag.d.ts +0 -16
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
3
|
+
import { FlightTypeCode } from '.';
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
5
5
|
import { PostFlightInfo } from '.';
|
|
6
6
|
import { Flight } from '.';
|
|
7
|
+
import { FlightPlan } from '.';
|
|
8
|
+
import { PreFlightInfo } from '.';
|
|
7
9
|
import * as i0 from "@angular/core";
|
|
8
10
|
export declare class MyFlightsEndPoint {
|
|
9
11
|
private config;
|
|
@@ -17,7 +19,7 @@ export declare class MyFlightsEndPoint {
|
|
|
17
19
|
/**
|
|
18
20
|
* Find my flights by query
|
|
19
21
|
*/
|
|
20
|
-
find(search?: string, type?: [], status?: [], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Flight>>;
|
|
22
|
+
find(search?: string, type?: FlightTypeCode[], status?: FlightStatusCode[], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Flight>>;
|
|
21
23
|
/**
|
|
22
24
|
* Get flight plans data for gantt, the result size is limited to 1000 entries
|
|
23
25
|
*/
|
package/lib/PostFlightData.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 PostFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/PreFlightData.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { OnBoard } from '.';
|
|
2
|
-
import { TOLData } from '.';
|
|
3
|
-
import { ReFuel } from '.';
|
|
4
|
-
import { Lesson } from '.';
|
|
5
1
|
import { BaseEntityEx } from '.';
|
|
6
2
|
import { ColumnDef } from '.';
|
|
7
3
|
import { FlightTypeCode } from '.';
|
|
8
4
|
import { FlightPurposeCode } from '.';
|
|
5
|
+
import { OnBoard } from '.';
|
|
6
|
+
import { TOLData } from '.';
|
|
7
|
+
import { ReFuel } from '.';
|
|
8
|
+
import { Lesson } from '.';
|
|
9
9
|
export declare class PreFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { Price } from '.';
|
|
4
|
+
import { FlightPurposeCode } from '.';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class PriceListEndPoint {
|
|
6
7
|
private config;
|
|
@@ -30,7 +31,7 @@ export declare class PriceListEndPoint {
|
|
|
30
31
|
/**
|
|
31
32
|
* Find Prices by query
|
|
32
33
|
*/
|
|
33
|
-
find(airplaneId?: string, purpose?: [], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Price>>;
|
|
34
|
+
find(airplaneId?: string, purpose?: FlightPurposeCode[], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Price>>;
|
|
34
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<PriceListEndPoint, never>;
|
|
35
36
|
static ɵprov: i0.ɵɵInjectableDeclaration<PriceListEndPoint>;
|
|
36
37
|
}
|
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import { PilotQualificationsRisks } from '.';
|
|
2
|
+
import { CrewDutyDayRisks } from '.';
|
|
3
|
+
import { DepartureRisks } from '.';
|
|
1
4
|
import { DestinationRisks } from '.';
|
|
2
5
|
import { TripRisks } from '.';
|
|
3
6
|
import { WeatherRisks } from '.';
|
|
4
7
|
import { SpecialRisks } from '.';
|
|
5
8
|
import { Mitigation } from '.';
|
|
6
|
-
import { PilotQualificationsRisks } from '.';
|
|
7
|
-
import { CrewDutyDayRisks } from '.';
|
|
8
|
-
import { DepartureRisks } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/Syllabus.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { FlightCategoryCode } from '.';
|
|
3
2
|
import { InstructionTypeCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Syllabus extends BaseEntityEx {
|
|
6
6
|
plan: FlightCategoryCode;
|
|
7
7
|
type: InstructionTypeCode;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
3
|
+
import { Syllabus } from '.';
|
|
4
|
+
import { FlightCategoryCode } from '.';
|
|
5
|
+
import { InstructionTypeCode } from '.';
|
|
4
6
|
import * as i0 from "@angular/core";
|
|
5
7
|
export declare class SyllabusEndPoint {
|
|
6
8
|
private config;
|
package/lib/SystemConfig.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
3
|
+
import { MessageTypeCode } from '.';
|
|
4
4
|
import { MessageConfirm } from '.';
|
|
5
|
+
import { SystemMessage } from '.';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class SystemMessagesEndPoint {
|
|
7
8
|
private config;
|
|
@@ -31,7 +32,7 @@ export declare class SystemMessagesEndPoint {
|
|
|
31
32
|
/**
|
|
32
33
|
* Find systemMessages by query
|
|
33
34
|
*/
|
|
34
|
-
find(search?: string, type?: [], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<SystemMessage>>;
|
|
35
|
+
find(search?: string, type?: MessageTypeCode[], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<SystemMessage>>;
|
|
35
36
|
/**
|
|
36
37
|
* Find message confirmations
|
|
37
38
|
*/
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Tuple } from '.';
|
|
2
|
+
export declare enum TypeRatingFlag {
|
|
3
|
+
UNDEFINED = 0,
|
|
4
|
+
C172P = 32,
|
|
5
|
+
C172XP = 64,
|
|
6
|
+
C207 = 128,
|
|
7
|
+
PA31 = 256
|
|
8
|
+
}
|
|
9
|
+
export declare function GetTypeRatingFlags(): Tuple<TypeRatingFlag, string>[];
|
|
10
|
+
export declare function MapTypeRatingFlags(): Map<TypeRatingFlag, string>;
|
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
|
-
import { UserTypeCode } from '.';
|
|
3
1
|
import { UserRoleFlag } from '.';
|
|
4
2
|
import { UserStatusCode } from '.';
|
|
5
3
|
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,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { UserStatusCode } from '.';
|
|
3
4
|
import { StringKeyValue } from '.';
|
|
4
5
|
import { User } from '.';
|
|
6
|
+
import { UserTypeCode } from '.';
|
|
5
7
|
import * as i0 from "@angular/core";
|
|
6
8
|
export declare class UsersEndPoint {
|
|
7
9
|
private config;
|
|
@@ -31,11 +33,11 @@ export declare class UsersEndPoint {
|
|
|
31
33
|
/**
|
|
32
34
|
* Find users by query
|
|
33
35
|
*/
|
|
34
|
-
find(search?: string, type?: [], status?: [], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<User>>;
|
|
36
|
+
find(search?: string, type?: UserTypeCode[], status?: UserStatusCode[], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<User>>;
|
|
35
37
|
/**
|
|
36
38
|
* Lookup users ID->Name by filter
|
|
37
39
|
*/
|
|
38
|
-
lookup(search?: string, type?: [], status?: [], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<StringKeyValue>>;
|
|
40
|
+
lookup(search?: string, type?: UserTypeCode[], status?: UserStatusCode[], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<StringKeyValue>>;
|
|
39
41
|
/**
|
|
40
42
|
* Lookup groups ID->Name
|
|
41
43
|
*/
|
package/lib/index.d.ts
CHANGED
|
@@ -1,153 +1,155 @@
|
|
|
1
|
+
export * from './BaseEntity';
|
|
2
|
+
export * from './BaseEntityEx';
|
|
3
|
+
export * from './Tuple';
|
|
1
4
|
export * from './ColumnDef';
|
|
2
5
|
export * from './TimeFrame';
|
|
3
6
|
export * from './TimeDataPoint';
|
|
4
7
|
export * from './TimeSeries';
|
|
5
|
-
export * from './
|
|
6
|
-
export * from './BaseEntityEx';
|
|
7
|
-
export * from './Tuple';
|
|
8
|
-
export * from './AirplaneValidationFlag';
|
|
9
|
-
export * from './FlightPurposeCode';
|
|
8
|
+
export * from './ADSBSourceFlag';
|
|
10
9
|
export * from './AirplaneStatusCode';
|
|
11
|
-
export * from './
|
|
12
|
-
export * from './
|
|
13
|
-
export * from './MaintenanceActionCode';
|
|
14
|
-
export * from './ModuleCode';
|
|
15
|
-
export * from './ValidationFlag';
|
|
16
|
-
export * from './AccountStatusCode';
|
|
17
|
-
export * from './ConfirmStatusCode';
|
|
18
|
-
export * from './ErrorCode';
|
|
19
|
-
export * from './FlightClassCode';
|
|
10
|
+
export * from './AssessmentCode';
|
|
11
|
+
export * from './CampaignStatusCode';
|
|
20
12
|
export * from './FlightStatusCode';
|
|
21
|
-
export * from './FlightTypeCode';
|
|
22
13
|
export * from './PermissionFlag';
|
|
14
|
+
export * from './UserTypeCode';
|
|
15
|
+
export * from './AccountTypeCode';
|
|
16
|
+
export * from './BookingTypeFlag';
|
|
17
|
+
export * from './CurrencyCode';
|
|
18
|
+
export * from './ErrorCode';
|
|
19
|
+
export * from './FilterFlag';
|
|
20
|
+
export * from './FlightClassCode';
|
|
21
|
+
export * from './FlightPurposeCode';
|
|
22
|
+
export * from './LicenseKindFlag';
|
|
23
23
|
export * from './UserStatusCode';
|
|
24
|
-
export * from './
|
|
25
|
-
export * from './
|
|
26
|
-
export * from './FlightCategoryCode';
|
|
24
|
+
export * from './AirplaneValidationFlag';
|
|
25
|
+
export * from './ConfirmStatusCode';
|
|
27
26
|
export * from './LessonTypeCode';
|
|
28
|
-
export * from './
|
|
29
|
-
export * from './
|
|
27
|
+
export * from './PriorityCode';
|
|
28
|
+
export * from './TypeRatingFlag';
|
|
30
29
|
export * from './UserRoleFlag';
|
|
31
|
-
export * from './
|
|
32
|
-
export * from './
|
|
33
|
-
export * from './
|
|
34
|
-
export * from './
|
|
35
|
-
export * from './InstructionTypeCode';
|
|
30
|
+
export * from './AccountStatusCode';
|
|
31
|
+
export * from './BookingStatusCode';
|
|
32
|
+
export * from './CampaignTypeCode';
|
|
33
|
+
export * from './FlightCategoryCode';
|
|
36
34
|
export * from './LessonSubjectCode';
|
|
37
|
-
export * from './
|
|
38
|
-
export * from './
|
|
35
|
+
export * from './ModuleCode';
|
|
36
|
+
export * from './TicketStatusCode';
|
|
37
|
+
export * from './TransactionTypeCode';
|
|
38
|
+
export * from './InstructionTypeCode';
|
|
39
|
+
export * from './LeadStatusCode';
|
|
40
|
+
export * from './MaintenanceActionCode';
|
|
41
|
+
export * from './MessageTypeCode';
|
|
39
42
|
export * from './ADSBCategoryCode';
|
|
40
|
-
export * from './BillingStatusCode';
|
|
41
43
|
export * from './FlightStateCode';
|
|
42
|
-
export * from './
|
|
44
|
+
export * from './FlightTypeCode';
|
|
43
45
|
export * from './OperatorCode';
|
|
44
|
-
export * from './
|
|
45
|
-
export * from './
|
|
46
|
-
export * from './
|
|
47
|
-
export * from './
|
|
48
|
-
export * from './
|
|
49
|
-
export * from './
|
|
50
|
-
export * from './BillingRecord';
|
|
51
|
-
export * from './DepartureRisks';
|
|
52
|
-
export * from './FlightTicket';
|
|
53
|
-
export * from './BookingsFilter';
|
|
54
|
-
export * from './Price';
|
|
55
|
-
export * from './ContactsFilter';
|
|
56
|
-
export * from './UsersFilter';
|
|
46
|
+
export * from './ValidationFlag';
|
|
47
|
+
export * from './BillingStatusCode';
|
|
48
|
+
export * from './PaymentMethodCode';
|
|
49
|
+
export * from './StatusCode';
|
|
50
|
+
export * from './SystemConfig';
|
|
51
|
+
export * from './Contact';
|
|
57
52
|
export * from './PostFlightData';
|
|
58
|
-
export * from './
|
|
59
|
-
export * from './
|
|
53
|
+
export * from './Price';
|
|
54
|
+
export * from './AirplanesFilter';
|
|
55
|
+
export * from './LookupGroup';
|
|
56
|
+
export * from './AuditLog';
|
|
57
|
+
export * from './Lesson';
|
|
60
58
|
export * from './LeadsFilter';
|
|
61
|
-
export * from './
|
|
59
|
+
export * from './PostFlightInfo';
|
|
60
|
+
export * from './Flight';
|
|
61
|
+
export * from './DepartureRisks';
|
|
62
|
+
export * from './Lead';
|
|
63
|
+
export * from './Permission';
|
|
64
|
+
export * from './Account';
|
|
65
|
+
export * from './TokenData';
|
|
66
|
+
export * from './FlightsFilter';
|
|
67
|
+
export * from './SystemMessage';
|
|
62
68
|
export * from './SyllabusFilter';
|
|
69
|
+
export * from './UsersFilter';
|
|
70
|
+
export * from './StringKeyValue';
|
|
71
|
+
export * from './ReFuel';
|
|
72
|
+
export * from './BillingRecord';
|
|
63
73
|
export * from './FlightRisk';
|
|
64
|
-
export * from './
|
|
65
|
-
export * from './
|
|
66
|
-
export * from './
|
|
74
|
+
export * from './BookingsFilter';
|
|
75
|
+
export * from './ContactsFilter';
|
|
76
|
+
export * from './Group';
|
|
77
|
+
export * from './AnyKeyValue';
|
|
78
|
+
export * from './DocumentRevision';
|
|
79
|
+
export * from './User';
|
|
80
|
+
export * from './PreFlightInfo';
|
|
81
|
+
export * from './Mitigation';
|
|
67
82
|
export * from './BookingPlan';
|
|
83
|
+
export * from './BookingSlotsSet';
|
|
84
|
+
export * from './Certificate';
|
|
85
|
+
export * from './Billing';
|
|
86
|
+
export * from './WeatherRisks';
|
|
68
87
|
export * from './FlightBilling';
|
|
69
|
-
export * from './
|
|
88
|
+
export * from './Engine';
|
|
89
|
+
export * from './Fuel';
|
|
70
90
|
export * from './FlightPlan';
|
|
71
|
-
export * from './
|
|
72
|
-
export * from './
|
|
73
|
-
export * from './Account';
|
|
74
|
-
export * from './AuditLog';
|
|
75
|
-
export * from './Flight';
|
|
91
|
+
export * from './Document';
|
|
92
|
+
export * from './OnBoard';
|
|
76
93
|
export * from './RiskAssessment';
|
|
77
|
-
export * from './IntKeyValue';
|
|
78
|
-
export * from './ReFuel';
|
|
79
|
-
export * from './Lesson';
|
|
80
|
-
export * from './Billing';
|
|
81
|
-
export * from './Mitigation';
|
|
82
|
-
export * from './Permission';
|
|
83
|
-
export * from './TOLData';
|
|
84
|
-
export * from './PilotQualificationsRisks';
|
|
85
|
-
export * from './DestinationRisks';
|
|
86
|
-
export * from './Lead';
|
|
87
|
-
export * from './TokenData';
|
|
88
|
-
export * from './Engine';
|
|
89
94
|
export * from './TripRisks';
|
|
90
|
-
export * from './
|
|
91
|
-
export * from './
|
|
92
|
-
export * from './PreFlightData';
|
|
93
|
-
export * from './DocumentRevision';
|
|
94
|
-
export * from './LookupGroup';
|
|
95
|
-
export * from './SystemMessage';
|
|
95
|
+
export * from './FlightPassenger';
|
|
96
|
+
export * from './Syllabus';
|
|
96
97
|
export * from './Address';
|
|
97
|
-
export * from './
|
|
98
|
-
export * from './
|
|
99
|
-
export * from './PreFlightInfo';
|
|
100
|
-
export * from './Magneto';
|
|
101
|
-
export * from './OnBoard';
|
|
102
|
-
export * from './User';
|
|
103
|
-
export * from './StringKeyValue';
|
|
98
|
+
export * from './Location';
|
|
99
|
+
export * from './Airplane';
|
|
104
100
|
export * from './Propeller';
|
|
105
|
-
export * from './Contact';
|
|
106
|
-
export * from './Document';
|
|
107
|
-
export * from './Group';
|
|
108
|
-
export * from './Lookup';
|
|
109
|
-
export * from './Booking';
|
|
110
|
-
export * from './BookingSlot';
|
|
111
101
|
export * from './BookingSlots';
|
|
112
|
-
export * from './
|
|
113
|
-
export * from './
|
|
102
|
+
export * from './FlightTicket';
|
|
103
|
+
export * from './Lookup';
|
|
114
104
|
export * from './MessageConfirm';
|
|
115
|
-
export * from './
|
|
116
|
-
export * from './
|
|
117
|
-
export * from './Location';
|
|
105
|
+
export * from './ADSBState';
|
|
106
|
+
export * from './AuditLogFilter';
|
|
118
107
|
export * from './Campaign';
|
|
119
|
-
export * from './
|
|
120
|
-
export * from './
|
|
121
|
-
export * from './
|
|
122
|
-
export * from './
|
|
123
|
-
export * from './
|
|
108
|
+
export * from './Credit';
|
|
109
|
+
export * from './TOLData';
|
|
110
|
+
export * from './PilotQualificationsRisks';
|
|
111
|
+
export * from './IntKeyValue';
|
|
112
|
+
export * from './Magneto';
|
|
113
|
+
export * from './PreFlightData';
|
|
114
|
+
export * from './SpecialRisks';
|
|
115
|
+
export * from './LogBookRecord';
|
|
116
|
+
export * from './MaintenancesFilter';
|
|
117
|
+
export * from './Booking';
|
|
124
118
|
export * from './CrewDutyDayRisks';
|
|
119
|
+
export * from './LeadAction';
|
|
120
|
+
export * from './AccountsFilter';
|
|
121
|
+
export * from './CertificatesFilter';
|
|
122
|
+
export * from './BookingSlot';
|
|
123
|
+
export * from './DestinationRisks';
|
|
124
|
+
export * from './Maintenance';
|
|
125
|
+
export * from './CreditsFilter';
|
|
126
|
+
export * from './LoginParams';
|
|
127
|
+
export * from './CampaignsEndPoint';
|
|
125
128
|
export * from './CertificatesEndPoint';
|
|
126
|
-
export * from './MyAuthEndPoint';
|
|
127
|
-
export * from './MaintenancesEndPoint';
|
|
128
|
-
export * from './PriceListEndPoint';
|
|
129
|
-
export * from './AirplanesEndPoint';
|
|
130
|
-
export * from './DocumentsEndPoint';
|
|
131
|
-
export * from './FlightsEndPoint';
|
|
132
|
-
export * from './LeadsEndPoint';
|
|
133
129
|
export * from './LookupsEndPoint';
|
|
134
|
-
export * from './
|
|
135
|
-
export * from './UsersEndPoint';
|
|
136
|
-
export * from './AccountsEndPoint';
|
|
130
|
+
export * from './MyAuthEndPoint';
|
|
137
131
|
export * from './FlightTicketsEndPoint';
|
|
138
|
-
export * from './
|
|
139
|
-
export * from './GroupsEndPoint';
|
|
140
|
-
export * from './UserEndPoint';
|
|
141
|
-
export * from './MyBookingsEndPoint';
|
|
142
|
-
export * from './MyFlightsEndPoint';
|
|
132
|
+
export * from './AuditLogsEndPoint';
|
|
143
133
|
export * from './BookingsEndPoint';
|
|
134
|
+
export * from './ContactsEndPoint';
|
|
144
135
|
export * from './CreditsEndPoint';
|
|
145
|
-
export * from './
|
|
136
|
+
export * from './AccountsEndPoint';
|
|
137
|
+
export * from './AirplanesEndPoint';
|
|
138
|
+
export * from './PriceListEndPoint';
|
|
146
139
|
export * from './SystemConfigsEndPoint';
|
|
147
|
-
export * from './BookingSlotsEndPoint';
|
|
148
|
-
export * from './ContactsEndPoint';
|
|
149
140
|
export * from './SystemEndPoint';
|
|
141
|
+
export * from './DocumentsEndPoint';
|
|
142
|
+
export * from './MyBookingsEndPoint';
|
|
150
143
|
export * from './MyCreditsEndPoint';
|
|
151
|
-
export * from './
|
|
144
|
+
export * from './MyFlightsEndPoint';
|
|
152
145
|
export * from './MessageConfirmsEndPoint';
|
|
146
|
+
export * from './SyllabusEndPoint';
|
|
147
|
+
export * from './GroupsEndPoint';
|
|
148
|
+
export * from './LeadsEndPoint';
|
|
149
|
+
export * from './SystemMessagesEndPoint';
|
|
150
|
+
export * from './UsersEndPoint';
|
|
151
|
+
export * from './BookingSlotsEndPoint';
|
|
152
|
+
export * from './FlightsEndPoint';
|
|
153
|
+
export * from './MaintenancesEndPoint';
|
|
154
|
+
export * from './UserEndPoint';
|
|
153
155
|
export * from './Enums';
|
package/lib/services.export.d.ts
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { MessageConfirmsEndPoint } from '.';
|
|
3
|
-
import { CertificatesEndPoint } from '.';
|
|
4
|
-
import { MyAuthEndPoint } from '.';
|
|
5
|
-
import { PriceListEndPoint } from '.';
|
|
1
|
+
import { AccountsEndPoint } from '.';
|
|
6
2
|
import { AirplanesEndPoint } from '.';
|
|
3
|
+
import { PriceListEndPoint } from '.';
|
|
4
|
+
import { SystemConfigsEndPoint } from '.';
|
|
5
|
+
import { SystemEndPoint } from '.';
|
|
7
6
|
import { DocumentsEndPoint } from '.';
|
|
8
|
-
import {
|
|
7
|
+
import { MyBookingsEndPoint } from '.';
|
|
8
|
+
import { MyCreditsEndPoint } from '.';
|
|
9
|
+
import { MyFlightsEndPoint } from '.';
|
|
10
|
+
import { MessageConfirmsEndPoint } from '.';
|
|
11
|
+
import { SyllabusEndPoint } from '.';
|
|
12
|
+
import { GroupsEndPoint } from '.';
|
|
9
13
|
import { LeadsEndPoint } from '.';
|
|
10
|
-
import { MaintenancesEndPoint } from '.';
|
|
11
|
-
import { LookupsEndPoint } from '.';
|
|
12
14
|
import { SystemMessagesEndPoint } from '.';
|
|
13
15
|
import { UsersEndPoint } from '.';
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import { GroupsEndPoint } from '.';
|
|
16
|
+
import { BookingSlotsEndPoint } from '.';
|
|
17
|
+
import { FlightsEndPoint } from '.';
|
|
18
|
+
import { MaintenancesEndPoint } from '.';
|
|
18
19
|
import { UserEndPoint } from '.';
|
|
19
|
-
import {
|
|
20
|
+
import { CampaignsEndPoint } from '.';
|
|
21
|
+
import { CertificatesEndPoint } from '.';
|
|
22
|
+
import { LookupsEndPoint } from '.';
|
|
23
|
+
import { MyAuthEndPoint } from '.';
|
|
24
|
+
import { FlightTicketsEndPoint } from '.';
|
|
25
|
+
import { AuditLogsEndPoint } from '.';
|
|
20
26
|
import { BookingsEndPoint } from '.';
|
|
21
|
-
import { CreditsEndPoint } from '.';
|
|
22
|
-
import { SyllabusEndPoint } from '.';
|
|
23
|
-
import { SystemConfigsEndPoint } from '.';
|
|
24
|
-
import { MyFlightsEndPoint } from '.';
|
|
25
|
-
import { BookingSlotsEndPoint } from '.';
|
|
26
27
|
import { ContactsEndPoint } from '.';
|
|
27
|
-
import {
|
|
28
|
-
|
|
29
|
-
export declare const Services: (typeof CertificatesEndPoint | typeof MyAuthEndPoint | typeof MaintenancesEndPoint | typeof PriceListEndPoint | typeof AirplanesEndPoint | typeof DocumentsEndPoint | typeof FlightsEndPoint | typeof LeadsEndPoint | typeof LookupsEndPoint | typeof SystemMessagesEndPoint | typeof UsersEndPoint | typeof AccountsEndPoint | typeof FlightTicketsEndPoint | typeof CampaignsEndPoint | typeof GroupsEndPoint | typeof UserEndPoint | typeof MyBookingsEndPoint | typeof MyFlightsEndPoint | typeof BookingsEndPoint | typeof CreditsEndPoint | typeof SyllabusEndPoint | typeof SystemConfigsEndPoint | typeof BookingSlotsEndPoint | typeof ContactsEndPoint | typeof SystemEndPoint | typeof MyCreditsEndPoint | typeof AuditLogsEndPoint | typeof MessageConfirmsEndPoint)[];
|
|
28
|
+
import { CreditsEndPoint } from '.';
|
|
29
|
+
export declare const Services: (typeof CampaignsEndPoint | typeof CertificatesEndPoint | typeof LookupsEndPoint | typeof MyAuthEndPoint | typeof FlightTicketsEndPoint | typeof AuditLogsEndPoint | typeof BookingsEndPoint | typeof ContactsEndPoint | typeof CreditsEndPoint | typeof AccountsEndPoint | typeof AirplanesEndPoint | typeof PriceListEndPoint | typeof SystemConfigsEndPoint | typeof SystemEndPoint | typeof DocumentsEndPoint | typeof MyBookingsEndPoint | typeof MyCreditsEndPoint | typeof MyFlightsEndPoint | typeof MessageConfirmsEndPoint | typeof SyllabusEndPoint | typeof GroupsEndPoint | typeof LeadsEndPoint | typeof SystemMessagesEndPoint | typeof UsersEndPoint | typeof BookingSlotsEndPoint | typeof FlightsEndPoint | typeof MaintenancesEndPoint | typeof UserEndPoint)[];
|
package/package.json
CHANGED
package/lib/LicenseTypeFlag.d.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { Tuple } from '.';
|
|
2
|
-
export declare enum LicenseTypeFlag {
|
|
3
|
-
UNDEFINED = 0,
|
|
4
|
-
PILOT = 1,
|
|
5
|
-
STUDENT = 2,
|
|
6
|
-
PPL = 4,
|
|
7
|
-
CPL = 8,
|
|
8
|
-
CFI = 16,
|
|
9
|
-
IFR = 32,
|
|
10
|
-
C172P = 64,
|
|
11
|
-
C172XP = 128,
|
|
12
|
-
C207 = 256,
|
|
13
|
-
PA31 = 512
|
|
14
|
-
}
|
|
15
|
-
export declare function GetLicenseTypeFlags(): Tuple<LicenseTypeFlag, string>[];
|
|
16
|
-
export declare function MapLicenseTypeFlags(): Map<LicenseTypeFlag, string>;
|