@aya-flights/ngx-goox-lib 2.19.81 → 2.19.83
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 +5072 -5053
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +2 -2
- package/lib/AccountsEndPoint.d.ts +5 -5
- package/lib/Airplane.d.ts +5 -5
- package/lib/AirplanesEndPoint.d.ts +8 -8
- 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/Contact.d.ts +5 -5
- package/lib/ContactsEndPoint.d.ts +5 -5
- package/lib/CreditsFilter.d.ts +1 -1
- package/lib/Flight.d.ts +8 -8
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightPassenger.d.ts +1 -1
- package/lib/FlightPlan.d.ts +1 -1
- package/lib/FlightRisk.d.ts +5 -5
- package/lib/FlightsEndPoint.d.ts +8 -8
- package/lib/FlightsFilter.d.ts +1 -1
- package/lib/Group.d.ts +2 -2
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/Lead.d.ts +2 -2
- package/lib/Lesson.d.ts +2 -2
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/Maintenance.d.ts +1 -1
- package/lib/MyAuthEndPoint.d.ts +6 -1
- package/lib/MyBookingsEndPoint.d.ts +6 -2
- package/lib/MyFlightsEndPoint.d.ts +2 -2
- package/lib/PostFlightData.d.ts +2 -2
- package/lib/PreFlightData.d.ts +1 -1
- package/lib/PriceListEndPoint.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +3 -3
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/SyllabusFilter.d.ts +1 -1
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/TimeSeries.d.ts +1 -1
- package/lib/User.d.ts +1 -1
- package/lib/UserEndPoint.d.ts +1 -1
- package/lib/index.d.ts +114 -114
- package/lib/services.export.d.ts +20 -20
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { AccountTypeCode } from '.';
|
|
2
|
-
import { AccountStatusCode } from '.';
|
|
3
1
|
import { Address } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
5
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { AccountTypeCode } from '.';
|
|
5
|
+
import { AccountStatusCode } from '.';
|
|
6
6
|
export declare class Account extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
enName: string;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
3
|
+
import { Account } from '.';
|
|
4
|
+
import { FlightTypeCode } from '.';
|
|
5
|
+
import { FlightStateCode } from '.';
|
|
4
6
|
import { FlightPurposeCode } from '.';
|
|
5
7
|
import { Flight } from '.';
|
|
8
|
+
import { Credit } from '.';
|
|
6
9
|
import { Document } from '.';
|
|
7
|
-
import {
|
|
8
|
-
import { Account } from '.';
|
|
9
|
-
import { FlightStateCode } from '.';
|
|
10
|
+
import { AccountStatusCode } from '.';
|
|
10
11
|
import { StringKeyValue } from '.';
|
|
11
12
|
import { FlightStatusCode } from '.';
|
|
12
|
-
import { Credit } from '.';
|
|
13
13
|
import * as i0 from "@angular/core";
|
|
14
14
|
export declare class AccountsEndPoint {
|
|
15
15
|
private config;
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
2
|
import { AirplaneValidationFlag } from '.';
|
|
3
|
-
import { Engine } from '.';
|
|
4
3
|
import { Magneto } from '.';
|
|
5
|
-
import {
|
|
6
|
-
import { TypeRatingFlag } from '.';
|
|
4
|
+
import { Engine } from '.';
|
|
7
5
|
import { Propeller } from '.';
|
|
8
|
-
import {
|
|
6
|
+
import { Fuel } from '.';
|
|
9
7
|
import { ColumnDef } from '.';
|
|
8
|
+
import { TypeRatingFlag } from '.';
|
|
9
|
+
import { AirplaneStatusCode } from '.';
|
|
10
10
|
export declare class Airplane extends BaseEntityEx {
|
|
11
11
|
name: string;
|
|
12
12
|
description: string;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightTypeCode } from '.';
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
5
|
-
import { MaintenanceActionCode } from '.';
|
|
6
|
-
import { Document } from '.';
|
|
7
3
|
import { Airplane } from '.';
|
|
8
|
-
import {
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
5
|
+
import { StatusCode } from '.';
|
|
6
|
+
import { FlightStateCode } from '.';
|
|
9
7
|
import { Flight } from '.';
|
|
10
|
-
import { Maintenance } from '.';
|
|
11
8
|
import { AirplaneStatusCode } from '.';
|
|
9
|
+
import { Maintenance } from '.';
|
|
12
10
|
import { StringKeyValue } from '.';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
11
|
+
import { FlightTypeCode } from '.';
|
|
12
|
+
import { FlightPurposeCode } from '.';
|
|
13
|
+
import { Document } from '.';
|
|
14
|
+
import { MaintenanceActionCode } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
private config;
|
package/lib/Booking.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BookingTypeFlag } from '.';
|
|
2
1
|
import { BookingStatusCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { BookingTypeFlag } from '.';
|
|
5
5
|
export declare class Booking extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
accountId: string;
|
package/lib/BookingPlan.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { BookingTypeFlag } from '.';
|
|
2
|
-
import { FlightPurposeCode } from '.';
|
|
3
1
|
import { FlightStatusCode } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
5
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { BookingTypeFlag } from '.';
|
|
5
|
+
import { FlightPurposeCode } from '.';
|
|
6
6
|
export declare class BookingPlan extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { BookingSlots } from '.';
|
|
3
4
|
import { BookingSlotsSet } from '.';
|
|
4
5
|
import { BookingSlot } from '.';
|
|
5
|
-
import { BookingSlots } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class BookingSlotsEndPoint {
|
|
8
8
|
private config;
|
package/lib/BookingSlotsSet.d.ts
CHANGED
package/lib/Contact.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { Address } from '.';
|
|
2
|
-
import { TypeRatingFlag } from '.';
|
|
3
|
-
import { LicenseKindFlag } from '.';
|
|
4
1
|
import { MedicalCertClassCode } from '.';
|
|
5
|
-
import { ValidationFlag } from '.';
|
|
6
|
-
import { BaseEntityEx } from '.';
|
|
7
2
|
import { AccountStatusCode } from '.';
|
|
3
|
+
import { LicenseKindFlag } from '.';
|
|
4
|
+
import { ValidationFlag } from '.';
|
|
8
5
|
import { FlightCategoryCode } from '.';
|
|
6
|
+
import { BaseEntityEx } from '.';
|
|
9
7
|
import { ColumnDef } from '.';
|
|
8
|
+
import { Address } from '.';
|
|
9
|
+
import { TypeRatingFlag } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
11
11
|
accountId: string;
|
|
12
12
|
name: string;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { StringKeyValue } from '.';
|
|
4
|
+
import { FlightTypeCode } from '.';
|
|
4
5
|
import { FlightStateCode } from '.';
|
|
5
|
-
import {
|
|
6
|
-
import { Document } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
7
7
|
import { StatusCode } from '.';
|
|
8
8
|
import { Certificate } from '.';
|
|
9
|
-
import { FlightTypeCode } from '.';
|
|
10
9
|
import { FlightStatusCode } from '.';
|
|
11
|
-
import { Flight } from '.';
|
|
12
|
-
import { Contact } from '.';
|
|
13
10
|
import { MessageConfirm } from '.';
|
|
11
|
+
import { Contact } from '.';
|
|
12
|
+
import { Document } from '.';
|
|
13
|
+
import { FlightPurposeCode } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
|
16
16
|
private config;
|
package/lib/CreditsFilter.d.ts
CHANGED
package/lib/Flight.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { OnBoard } from '.';
|
|
2
|
-
import { Lesson } from '.';
|
|
3
|
-
import { BaseEntityEx } from '.';
|
|
4
|
-
import { BillingStatusCode } from '.';
|
|
5
2
|
import { RiskAssessment } from '.';
|
|
6
|
-
import {
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
7
4
|
import { FlightClassCode } from '.';
|
|
5
|
+
import { FlightStateCode } from '.';
|
|
6
|
+
import { BillingStatusCode } from '.';
|
|
7
|
+
import { ColumnDef } from '.';
|
|
8
|
+
import { FlightCategoryCode } from '.';
|
|
9
|
+
import { FlightTypeCode } from '.';
|
|
10
|
+
import { Lesson } from '.';
|
|
8
11
|
import { TOLData } from '.';
|
|
12
|
+
import { ReFuel } from '.';
|
|
9
13
|
import { Billing } from '.';
|
|
10
14
|
import { FlightPurposeCode } from '.';
|
|
11
|
-
import { FlightTypeCode } from '.';
|
|
12
15
|
import { FlightStatusCode } from '.';
|
|
13
|
-
import { ReFuel } from '.';
|
|
14
|
-
import { ColumnDef } from '.';
|
|
15
|
-
import { FlightCategoryCode } from '.';
|
|
16
16
|
export declare class Flight extends BaseEntityEx {
|
|
17
17
|
name: string;
|
|
18
18
|
description: string;
|
package/lib/FlightBilling.d.ts
CHANGED
package/lib/FlightPassenger.d.ts
CHANGED
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { FlightStatusCode } from '.';
|
|
2
1
|
import { FlightStateCode } from '.';
|
|
3
2
|
import { FlightPurposeCode } from '.';
|
|
4
3
|
import { TOLData } from '.';
|
|
5
4
|
import { BaseEntityEx } from '.';
|
|
6
5
|
import { ColumnDef } from '.';
|
|
7
6
|
import { FlightTypeCode } from '.';
|
|
7
|
+
import { FlightStatusCode } 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 {
|
|
2
|
-
import { TripRisks } from '.';
|
|
1
|
+
import { PilotQualificationsRisks } from '.';
|
|
3
2
|
import { WeatherRisks } from '.';
|
|
4
|
-
import { SpecialRisks } from '.';
|
|
5
3
|
import { Mitigation } from '.';
|
|
6
4
|
import { BaseEntityEx } from '.';
|
|
7
|
-
import {
|
|
5
|
+
import { ColumnDef } from '.';
|
|
8
6
|
import { CrewDutyDayRisks } from '.';
|
|
7
|
+
import { DepartureRisks } from '.';
|
|
9
8
|
import { DestinationRisks } from '.';
|
|
10
|
-
import {
|
|
9
|
+
import { TripRisks } from '.';
|
|
10
|
+
import { SpecialRisks } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/FlightsEndPoint.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
5
|
-
import { FlightPurposeCode } from '.';
|
|
6
|
-
import { FlightPlan } from '.';
|
|
7
|
-
import { Flight } from '.';
|
|
8
|
-
import { FlightTypeCode } from '.';
|
|
3
|
+
import { PostFlightInfo } from '.';
|
|
9
4
|
import { PreFlightInfo } from '.';
|
|
5
|
+
import { FlightTypeCode } from '.';
|
|
10
6
|
import { BillingStatusCode } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
7
|
+
import { Flight } from '.';
|
|
8
|
+
import { AnyKeyValue } from '.';
|
|
9
|
+
import { FlightPurposeCode } from '.';
|
|
13
10
|
import { Contact } from '.';
|
|
14
11
|
import { FlightTicket } from '.';
|
|
12
|
+
import { FlightPlan } from '.';
|
|
13
|
+
import { FlightStatusCode } from '.';
|
|
14
|
+
import { TimeSeries } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class FlightsEndPoint {
|
|
17
17
|
private config;
|
package/lib/FlightsFilter.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 FlightsFilter {
|
|
7
7
|
search: string;
|
|
8
8
|
period: TimeFrame;
|
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 { Group } from '.';
|
|
4
3
|
import { StringKeyValue } from '.';
|
|
4
|
+
import { Group } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class GroupsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Lead.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { Address } from '.';
|
|
4
2
|
import { LeadStatusCode } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Lead extends BaseEntityEx {
|
|
6
6
|
firstName: string;
|
|
7
7
|
lastName: string;
|
package/lib/Lesson.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { AssessmentCode } from '.';
|
|
2
|
-
import { LessonTypeCode } from '.';
|
|
3
1
|
import { FlightCategoryCode } from '.';
|
|
4
2
|
import { LessonSubjectCode } from '.';
|
|
3
|
+
import { AssessmentCode } from '.';
|
|
4
|
+
import { LessonTypeCode } from '.';
|
|
5
5
|
export declare class Lesson {
|
|
6
6
|
number: number;
|
|
7
7
|
type: LessonTypeCode;
|
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 { ColumnDef } from '.';
|
|
2
1
|
import { StatusCode } from '.';
|
|
3
2
|
import { MaintenanceActionCode } from '.';
|
|
4
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/MyAuthEndPoint.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { RestUtil, ActionResponse } from '../utils';
|
|
1
|
+
import { RestUtil, EntityResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Contact } from '.';
|
|
3
4
|
import { LoginParams } from '.';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class MyAuthEndPoint {
|
|
@@ -11,6 +12,10 @@ export declare class MyAuthEndPoint {
|
|
|
11
12
|
* Authenticate contact
|
|
12
13
|
*/
|
|
13
14
|
authenticate(body?: LoginParams): import("rxjs").Observable<ActionResponse>;
|
|
15
|
+
/**
|
|
16
|
+
* Authorize contact (the next version of authenticate which returns contact info including account type)
|
|
17
|
+
*/
|
|
18
|
+
authorize(body?: LoginParams): import("rxjs").Observable<EntityResponse<Contact>>;
|
|
14
19
|
/**
|
|
15
20
|
* Send SMS code
|
|
16
21
|
*/
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { BookingTypeFlag } from '.';
|
|
4
|
-
import { BookingSlots } from '.';
|
|
5
4
|
import { Lookup } from '.';
|
|
5
|
+
import { BookingSlots } from '.';
|
|
6
6
|
import { Booking } from '.';
|
|
7
7
|
import { BookingStatusCode } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
@@ -31,10 +31,14 @@ export declare class MyBookingsEndPoint {
|
|
|
31
31
|
* Find my bookings by query
|
|
32
32
|
*/
|
|
33
33
|
find(search?: string, airplaneId?: string, from?: number, to?: number, status?: BookingStatusCode[], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Booking>>;
|
|
34
|
+
/**
|
|
35
|
+
* Get list of booking airplanes according to booking type and date
|
|
36
|
+
*/
|
|
37
|
+
getBookingAirplanes(type?: BookingTypeFlag): import("rxjs").Observable<EntitiesResponse<Lookup>>;
|
|
34
38
|
/**
|
|
35
39
|
* Find open bookings slots
|
|
36
40
|
*/
|
|
37
|
-
getBookingSlots(year?: number, month?: number, type?: BookingTypeFlag, airplaneId?: string): import("rxjs").Observable<EntitiesResponse<BookingSlots>>;
|
|
41
|
+
getBookingSlots(year?: number, month?: number, day?: number, type?: BookingTypeFlag, airplaneId?: string): import("rxjs").Observable<EntitiesResponse<BookingSlots>>;
|
|
38
42
|
/**
|
|
39
43
|
* Find all instructors and mark the student's default instructor
|
|
40
44
|
*/
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { PostFlightInfo } from '.';
|
|
4
|
-
import { Flight } from '.';
|
|
5
|
-
import { FlightStatusCode } from '.';
|
|
6
4
|
import { FlightTypeCode } from '.';
|
|
7
5
|
import { FlightPlan } from '.';
|
|
8
6
|
import { PreFlightInfo } from '.';
|
|
7
|
+
import { Flight } from '.';
|
|
8
|
+
import { FlightStatusCode } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyFlightsEndPoint {
|
|
11
11
|
private config;
|
package/lib/PostFlightData.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
|
-
import { FlightTypeCode } from '.';
|
|
3
1
|
import { FlightPurposeCode } from '.';
|
|
4
2
|
import { OnBoard } from '.';
|
|
5
3
|
import { TOLData } from '.';
|
|
6
4
|
import { ReFuel } from '.';
|
|
7
5
|
import { Lesson } from '.';
|
|
8
6
|
import { BaseEntityEx } from '.';
|
|
7
|
+
import { ColumnDef } from '.';
|
|
8
|
+
import { FlightTypeCode } from '.';
|
|
9
9
|
export declare class PostFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/PreFlightData.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { TOLData } from '.';
|
|
2
1
|
import { ReFuel } from '.';
|
|
3
2
|
import { Lesson } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
@@ -6,6 +5,7 @@ import { ColumnDef } from '.';
|
|
|
6
5
|
import { FlightTypeCode } from '.';
|
|
7
6
|
import { FlightPurposeCode } from '.';
|
|
8
7
|
import { OnBoard } from '.';
|
|
8
|
+
import { TOLData } from '.';
|
|
9
9
|
export declare class PreFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Price } from '.';
|
|
4
3
|
import { FlightPurposeCode } from '.';
|
|
4
|
+
import { Price } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class PriceListEndPoint {
|
|
7
7
|
private config;
|
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { WeatherRisks } from '.';
|
|
2
|
-
import { SpecialRisks } from '.';
|
|
3
|
-
import { Mitigation } from '.';
|
|
4
1
|
import { PilotQualificationsRisks } from '.';
|
|
5
2
|
import { CrewDutyDayRisks } from '.';
|
|
6
3
|
import { DepartureRisks } from '.';
|
|
7
4
|
import { DestinationRisks } from '.';
|
|
8
5
|
import { TripRisks } from '.';
|
|
6
|
+
import { WeatherRisks } from '.';
|
|
7
|
+
import { SpecialRisks } from '.';
|
|
8
|
+
import { Mitigation } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Syllabus } from '.';
|
|
4
3
|
import { FlightCategoryCode } from '.';
|
|
5
4
|
import { InstructionTypeCode } from '.';
|
|
5
|
+
import { Syllabus } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SyllabusEndPoint {
|
|
8
8
|
private config;
|
package/lib/SyllabusFilter.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { SystemMessage } from '.';
|
|
3
4
|
import { MessageTypeCode } from '.';
|
|
4
5
|
import { MessageConfirm } from '.';
|
|
5
|
-
import { SystemMessage } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SystemMessagesEndPoint {
|
|
8
8
|
private config;
|
package/lib/TimeSeries.d.ts
CHANGED
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { UserTypeCode } from '.';
|
|
2
3
|
import { UserRoleFlag } from '.';
|
|
3
4
|
import { UserStatusCode } from '.';
|
|
4
5
|
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } 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 { 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;
|