@aya-flights/ngx-goox-lib 2.19.98 → 2.19.100
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 +4277 -4330
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +2 -2
- package/lib/AccountsEndPoint.d.ts +6 -6
- package/lib/Airplane.d.ts +5 -5
- package/lib/AirplanesEndPoint.d.ts +8 -8
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/Booking.d.ts +2 -2
- package/lib/BookingPlan.d.ts +2 -2
- package/lib/BookingsEndPoint.d.ts +1 -1
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/CertificatesEndPoint.d.ts +1 -1
- package/lib/CertificatesFilter.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 +9 -9
- 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 +6 -6
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightTicketsEndPoint.d.ts +1 -1
- package/lib/FlightTypeCode.d.ts +5 -1
- package/lib/FlightsEndPoint.d.ts +6 -6
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/LeadsEndPoint.d.ts +1 -1
- 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/MessageConfirm.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +8 -2
- package/lib/RiskAssessment.d.ts +2 -2
- package/lib/Syllabus.d.ts +1 -1
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/UsersFilter.d.ts +1 -1
- package/lib/index.d.ts +119 -121
- package/lib/services.export.d.ts +19 -19
- package/package.json +1 -1
- package/lib/PostFlightData.d.ts +0 -37
- package/lib/PreFlightData.d.ts +0 -37
package/lib/Account.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { AccountTypeCode } from '.';
|
|
4
2
|
import { AccountStatusCode } from '.';
|
|
5
3
|
import { Address } from '.';
|
|
4
|
+
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } 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 { Flight } from '.';
|
|
4
|
-
import { Account } from '.';
|
|
5
|
-
import { FlightTypeCode } from '.';
|
|
6
3
|
import { FlightStateCode } from '.';
|
|
7
|
-
import { FlightStatusCode } from '.';
|
|
8
|
-
import { FlightPurposeCode } from '.';
|
|
9
4
|
import { Credit } from '.';
|
|
10
|
-
import { Document } from '.';
|
|
11
5
|
import { AccountStatusCode } from '.';
|
|
12
6
|
import { StringKeyValue } from '.';
|
|
7
|
+
import { FlightTypeCode } from '.';
|
|
8
|
+
import { Document } from '.';
|
|
9
|
+
import { Account } from '.';
|
|
10
|
+
import { FlightPurposeCode } from '.';
|
|
11
|
+
import { Flight } from '.';
|
|
12
|
+
import { FlightStatusCode } 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 {
|
|
2
|
-
import { AirplaneValidationFlag } from '.';
|
|
3
|
-
import { Engine } from '.';
|
|
4
|
-
import { Magneto } from '.';
|
|
1
|
+
import { AirplaneStatusCode } from '.';
|
|
5
2
|
import { Propeller } from '.';
|
|
6
3
|
import { Fuel } from '.';
|
|
7
4
|
import { TypeRatingFlag } from '.';
|
|
8
|
-
import {
|
|
5
|
+
import { Engine } from '.';
|
|
6
|
+
import { Magneto } from '.';
|
|
9
7
|
import { BaseEntityEx } from '.';
|
|
8
|
+
import { ColumnDef } from '.';
|
|
9
|
+
import { AirplaneValidationFlag } 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 {
|
|
4
|
-
import { Flight } from '.';
|
|
5
|
-
import { Document } from '.';
|
|
6
|
-
import { FlightTypeCode } from '.';
|
|
3
|
+
import { StringKeyValue } from '.';
|
|
7
4
|
import { FlightStateCode } from '.';
|
|
8
|
-
import { AirplaneStatusCode } from '.';
|
|
9
|
-
import { FlightStatusCode } from '.';
|
|
10
|
-
import { StatusCode } from '.';
|
|
11
5
|
import { MaintenanceActionCode } from '.';
|
|
6
|
+
import { Maintenance } from '.';
|
|
7
|
+
import { FlightStatusCode } from '.';
|
|
12
8
|
import { FlightPurposeCode } from '.';
|
|
9
|
+
import { Document } from '.';
|
|
10
|
+
import { AirplaneStatusCode } from '.';
|
|
11
|
+
import { FlightTypeCode } from '.';
|
|
13
12
|
import { Airplane } from '.';
|
|
14
|
-
import {
|
|
13
|
+
import { Flight } from '.';
|
|
14
|
+
import { StatusCode } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
private config;
|
|
@@ -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/Booking.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
|
-
import { BookingTypeFlag } from '.';
|
|
3
1
|
import { BookingStatusCode } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
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 { FlightStatusCode } from '.';
|
|
2
|
+
import { BaseEntityEx } from '.';
|
|
1
3
|
import { ColumnDef } from '.';
|
|
2
4
|
import { BookingTypeFlag } from '.';
|
|
3
5
|
import { FlightPurposeCode } from '.';
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
5
|
-
import { BaseEntityEx } from '.';
|
|
6
6
|
export declare class BookingPlan extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { BookingPlan } from '.';
|
|
4
3
|
import { Booking } from '.';
|
|
5
4
|
import { BookingStatusCode } from '.';
|
|
6
5
|
import { TimeSeries } from '.';
|
|
6
|
+
import { BookingPlan } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class BookingsEndPoint {
|
|
9
9
|
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;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Certificate } from '.';
|
|
4
3
|
import { StatusCode } from '.';
|
|
4
|
+
import { Certificate } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CertificatesEndPoint {
|
|
7
7
|
private config;
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { TypeRatingFlag } from '.';
|
|
2
|
+
import { LicenseKindFlag } from '.';
|
|
3
3
|
import { ColumnDef } from '.';
|
|
4
4
|
import { AccountStatusCode } from '.';
|
|
5
5
|
import { Address } from '.';
|
|
6
|
-
import { TypeRatingFlag } from '.';
|
|
7
|
-
import { LicenseKindFlag } from '.';
|
|
8
|
-
import { ValidationFlag } from '.';
|
|
9
6
|
import { FlightCategoryCode } from '.';
|
|
7
|
+
import { BaseEntityEx } from '.';
|
|
8
|
+
import { MedicalCertClassCode } from '.';
|
|
9
|
+
import { ValidationFlag } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
11
11
|
accountId: string;
|
|
12
12
|
name: string;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
3
|
+
import { StringKeyValue } from '.';
|
|
4
|
+
import { FlightTypeCode } from '.';
|
|
5
|
+
import { MessageConfirm } from '.';
|
|
4
6
|
import { FlightStatusCode } from '.';
|
|
7
|
+
import { FlightStateCode } from '.';
|
|
5
8
|
import { FlightPurposeCode } from '.';
|
|
6
9
|
import { Contact } from '.';
|
|
10
|
+
import { StatusCode } from '.';
|
|
7
11
|
import { Certificate } from '.';
|
|
8
12
|
import { Flight } from '.';
|
|
9
|
-
import { MessageConfirm } from '.';
|
|
10
|
-
import { StringKeyValue } from '.';
|
|
11
|
-
import { FlightTypeCode } from '.';
|
|
12
|
-
import { FlightStateCode } from '.';
|
|
13
13
|
import { Document } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
package/lib/CreditsFilter.d.ts
CHANGED
package/lib/Flight.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { FlightTypeCode } from '.';
|
|
2
|
-
import { ReFuel } from '.';
|
|
3
|
-
import { BaseEntityEx } from '.';
|
|
4
1
|
import { FlightPurposeCode } from '.';
|
|
5
|
-
import { FlightStatusCode } from '.';
|
|
6
|
-
import { FlightStateCode } from '.';
|
|
7
|
-
import { Lesson } from '.';
|
|
8
|
-
import { RiskAssessment } from '.';
|
|
9
|
-
import { ColumnDef } from '.';
|
|
10
2
|
import { FlightClassCode } from '.';
|
|
3
|
+
import { Billing } from '.';
|
|
4
|
+
import { BaseEntityEx } from '.';
|
|
5
|
+
import { FlightStatusCode } from '.';
|
|
11
6
|
import { OnBoard } from '.';
|
|
12
7
|
import { TOLData } from '.';
|
|
8
|
+
import { ReFuel } from '.';
|
|
13
9
|
import { FlightCategoryCode } from '.';
|
|
10
|
+
import { Lesson } from '.';
|
|
11
|
+
import { ColumnDef } from '.';
|
|
12
|
+
import { FlightTypeCode } from '.';
|
|
13
|
+
import { FlightStateCode } from '.';
|
|
14
14
|
import { BillingStatusCode } from '.';
|
|
15
|
-
import {
|
|
15
|
+
import { RiskAssessment } 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 { FlightPurposeCode } from '.';
|
|
1
2
|
import { TOLData } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
4
|
import { ColumnDef } from '.';
|
|
4
5
|
import { FlightTypeCode } from '.';
|
|
5
6
|
import { FlightStatusCode } from '.';
|
|
6
7
|
import { FlightStateCode } from '.';
|
|
7
|
-
import { FlightPurposeCode } 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 { WeatherRisks } from '.';
|
|
3
|
-
import { SpecialRisks } from '.';
|
|
1
|
+
import { TripRisks } from '.';
|
|
4
2
|
import { Mitigation } from '.';
|
|
5
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
6
5
|
import { PilotQualificationsRisks } from '.';
|
|
7
|
-
import { CrewDutyDayRisks } from '.';
|
|
8
6
|
import { DepartureRisks } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
7
|
+
import { WeatherRisks } from '.';
|
|
8
|
+
import { SpecialRisks } from '.';
|
|
9
|
+
import { CrewDutyDayRisks } from '.';
|
|
10
|
+
import { DestinationRisks } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/FlightTicket.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightTicket } from '.';
|
|
4
3
|
import { TicketStatusCode } from '.';
|
|
4
|
+
import { FlightTicket } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class FlightTicketsEndPoint {
|
|
7
7
|
private config;
|
package/lib/FlightTypeCode.d.ts
CHANGED
|
@@ -11,7 +11,11 @@ export declare enum FlightTypeCode {
|
|
|
11
11
|
INSTRUCTION_CVFR = 8,
|
|
12
12
|
INSTRUCTION_IFR = 9,
|
|
13
13
|
INSTRUCTION_NAV = 10,
|
|
14
|
-
INSTRUCTION_NIGHT = 11
|
|
14
|
+
INSTRUCTION_NIGHT = 11,
|
|
15
|
+
CVFR = 100,
|
|
16
|
+
IFR = 101,
|
|
17
|
+
NAV = 102,
|
|
18
|
+
NIGHT = 103
|
|
15
19
|
}
|
|
16
20
|
export declare function GetFlightTypeCodes(): Tuple<FlightTypeCode, string>[];
|
|
17
21
|
export declare function MapFlightTypeCodes(): Map<FlightTypeCode, string>;
|
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 { Contact } from '.';
|
|
4
3
|
import { PreFlightInfo } from '.';
|
|
5
|
-
import {
|
|
4
|
+
import { AnyKeyValue } from '.';
|
|
6
5
|
import { BillingStatusCode } from '.';
|
|
7
|
-
import { TimeSeries } from '.';
|
|
8
6
|
import { FlightPlan } from '.';
|
|
7
|
+
import { TimeSeries } from '.';
|
|
8
|
+
import { PostFlightInfo } from '.';
|
|
9
|
+
import { Contact } from '.';
|
|
10
|
+
import { FlightTicket } from '.';
|
|
9
11
|
import { FlightTypeCode } from '.';
|
|
12
|
+
import { FlightStatusCode } from '.';
|
|
10
13
|
import { FlightPurposeCode } from '.';
|
|
11
14
|
import { Flight } from '.';
|
|
12
|
-
import { FlightTicket } from '.';
|
|
13
|
-
import { PostFlightInfo } from '.';
|
|
14
|
-
import { AnyKeyValue } 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 '.';
|
|
2
|
+
import { FlightTypeCode } from '.';
|
|
1
3
|
import { FlightStatusCode } from '.';
|
|
2
4
|
import { BillingStatusCode } from '.';
|
|
3
5
|
import { FlightPurposeCode } from '.';
|
|
4
|
-
import { TimeFrame } from '.';
|
|
5
|
-
import { FlightTypeCode } from '.';
|
|
6
6
|
export declare class FlightsFilter {
|
|
7
7
|
search: string;
|
|
8
8
|
period: TimeFrame;
|
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/LeadsEndPoint.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { TimeSeries } from '.';
|
|
3
4
|
import { LeadAction } from '.';
|
|
4
5
|
import { Lead } from '.';
|
|
5
6
|
import { LeadStatusCode } from '.';
|
|
6
|
-
import { TimeSeries } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class LeadsEndPoint {
|
|
9
9
|
private config;
|
package/lib/Lesson.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { FlightCategoryCode } from '.';
|
|
2
|
-
import { LessonSubjectCode } from '.';
|
|
3
1
|
import { AssessmentCode } from '.';
|
|
4
2
|
import { LessonTypeCode } from '.';
|
|
3
|
+
import { FlightCategoryCode } from '.';
|
|
4
|
+
import { LessonSubjectCode } 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/MessageConfirm.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { ConfirmStatusCode } from '.';
|
|
3
2
|
import { MessageTypeCode } from '.';
|
|
4
3
|
import { PriorityCode } from '.';
|
|
5
4
|
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
6
|
export declare class MessageConfirm extends BaseEntityEx {
|
|
7
7
|
messageId: string;
|
|
8
8
|
contactId: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Booking } from '.';
|
|
4
3
|
import { BookingStatusCode } from '.';
|
|
5
4
|
import { BookingTypeFlag } from '.';
|
|
6
5
|
import { Lookup } from '.';
|
|
7
6
|
import { BookingSlot } from '.';
|
|
7
|
+
import { Booking } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class MyBookingsEndPoint {
|
|
10
10
|
private config;
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { FlightTypeCode } from '.';
|
|
4
|
-
import {
|
|
4
|
+
import { Syllabus } from '.';
|
|
5
|
+
import { PreFlightInfo } from '.';
|
|
5
6
|
import { PostFlightInfo } from '.';
|
|
6
7
|
import { Flight } from '.';
|
|
7
|
-
import {
|
|
8
|
+
import { FlightStatusCode } from '.';
|
|
8
9
|
import { FlightPlan } from '.';
|
|
10
|
+
import { InstructionTypeCode } from '.';
|
|
9
11
|
import * as i0 from "@angular/core";
|
|
10
12
|
export declare class MyFlightsEndPoint {
|
|
11
13
|
private config;
|
|
@@ -24,6 +26,10 @@ export declare class MyFlightsEndPoint {
|
|
|
24
26
|
* Get flight plans data for gantt, the result size is limited to 1000 entries
|
|
25
27
|
*/
|
|
26
28
|
gantt(from?: number, to?: number): import("rxjs").Observable<EntitiesResponse<FlightPlan>>;
|
|
29
|
+
/**
|
|
30
|
+
* Get lesson topics based on the contact flight syllabus
|
|
31
|
+
*/
|
|
32
|
+
topics(contact?: string, type?: InstructionTypeCode): import("rxjs").Observable<EntitiesResponse<Syllabus>>;
|
|
27
33
|
/**
|
|
28
34
|
* Get pre-flight info by id
|
|
29
35
|
*/
|
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { CrewDutyDayRisks } from '.';
|
|
2
|
-
import { DepartureRisks } from '.';
|
|
3
1
|
import { DestinationRisks } from '.';
|
|
4
2
|
import { TripRisks } from '.';
|
|
5
3
|
import { WeatherRisks } from '.';
|
|
6
4
|
import { SpecialRisks } from '.';
|
|
7
5
|
import { Mitigation } from '.';
|
|
8
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 { BaseEntityEx } from '.';
|
|
1
2
|
import { ColumnDef } from '.';
|
|
2
3
|
import { FlightCategoryCode } from '.';
|
|
3
4
|
import { InstructionTypeCode } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
5
|
export declare class Syllabus extends BaseEntityEx {
|
|
6
6
|
plan: FlightCategoryCode;
|
|
7
7
|
type: InstructionTypeCode;
|
package/lib/SystemMessage.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { MessageTypeCode } from '.';
|
|
2
3
|
import { PriorityCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
5
|
export declare class SystemMessage extends BaseEntityEx {
|
|
6
6
|
subject: string;
|
|
7
7
|
description: string;
|
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UserRoleFlag } from '.';
|
|
2
|
-
import { UserStatusCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
5
3
|
import { UserTypeCode } from '.';
|
|
4
|
+
import { UserRoleFlag } from '.';
|
|
5
|
+
import { UserStatusCode } from '.';
|
|
6
6
|
export declare class User extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
email: string;
|
package/lib/UsersEndPoint.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { User } from '.';
|
|
3
4
|
import { UserTypeCode } from '.';
|
|
4
5
|
import { UserStatusCode } from '.';
|
|
5
6
|
import { StringKeyValue } from '.';
|
|
6
|
-
import { User } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class UsersEndPoint {
|
|
9
9
|
private config;
|