@aya-flights/ngx-goox-lib 2.18.113 → 2.18.115
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/AccountsEndPoint.mjs +1 -1
- package/esm2022/lib/Airplane.mjs +1 -1
- package/esm2022/lib/AirplanesEndPoint.mjs +1 -1
- package/esm2022/lib/AuditLog.mjs +2 -2
- package/esm2022/lib/AuditLogsEndPoint.mjs +1 -1
- package/esm2022/lib/Booking.mjs +2 -2
- package/esm2022/lib/BookingPlan.mjs +2 -2
- package/esm2022/lib/BookingSlotsSet.mjs +1 -1
- package/esm2022/lib/BookingsEndPoint.mjs +1 -1
- package/esm2022/lib/BookingsFilter.mjs +1 -1
- package/esm2022/lib/CertificatesEndPoint.mjs +1 -1
- package/esm2022/lib/Contact.mjs +1 -1
- package/esm2022/lib/ContactsEndPoint.mjs +1 -1
- package/esm2022/lib/Enums.mjs +361 -361
- package/esm2022/lib/Flight.mjs +2 -2
- package/esm2022/lib/FlightPlan.mjs +1 -1
- package/esm2022/lib/FlightRisk.mjs +2 -2
- package/esm2022/lib/FlightsEndPoint.mjs +1 -1
- package/esm2022/lib/FlightsFilter.mjs +1 -1
- package/esm2022/lib/Group.mjs +2 -2
- package/esm2022/lib/Lead.mjs +1 -1
- package/esm2022/lib/LeadsEndPoint.mjs +1 -1
- package/esm2022/lib/Lesson.mjs +11 -8
- package/esm2022/lib/Maintenance.mjs +1 -1
- package/esm2022/lib/MaintenancesFilter.mjs +1 -1
- package/esm2022/lib/MessageConfirmsEndPoint.mjs +1 -1
- package/esm2022/lib/MyAuthEndPoint.mjs +1 -1
- package/esm2022/lib/MyBookingsEndPoint.mjs +1 -1
- package/esm2022/lib/MyFlightsEndPoint.mjs +13 -1
- package/esm2022/lib/PostFlightInfo.mjs +4 -4
- package/esm2022/lib/PreFlightInfo.mjs +4 -4
- package/esm2022/lib/RiskAssessment.mjs +1 -1
- package/esm2022/lib/Syllabus.mjs +1 -1
- package/esm2022/lib/SyllabusEndPoint.mjs +1 -1
- package/esm2022/lib/SystemMessage.mjs +1 -1
- package/esm2022/lib/TokenData.mjs +1 -1
- package/esm2022/lib/UsersEndPoint.mjs +1 -1
- package/esm2022/lib/index.mjs +116 -116
- package/esm2022/lib/services.export.mjs +41 -41
- package/fesm2022/aya-flights-ngx-goox-lib.mjs +5206 -5191
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +5 -5
- package/lib/Airplane.d.ts +4 -4
- package/lib/AirplanesEndPoint.d.ts +7 -7
- package/lib/AuditLog.d.ts +1 -1
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingPlan.d.ts +2 -2
- package/lib/BookingSlotsSet.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +2 -2
- package/lib/BookingsFilter.d.ts +1 -1
- package/lib/CertificatesEndPoint.d.ts +1 -1
- package/lib/Contact.d.ts +5 -5
- package/lib/ContactsEndPoint.d.ts +5 -5
- package/lib/Flight.d.ts +4 -4
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +6 -6
- package/lib/FlightsEndPoint.d.ts +6 -6
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/Group.d.ts +1 -1
- package/lib/Lead.d.ts +2 -2
- package/lib/LeadsEndPoint.d.ts +1 -1
- package/lib/Lesson.d.ts +5 -5
- package/lib/Maintenance.d.ts +2 -2
- package/lib/MaintenancesFilter.d.ts +1 -1
- package/lib/MessageConfirmsEndPoint.d.ts +1 -1
- package/lib/MyAuthEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +2 -2
- package/lib/MyFlightsEndPoint.d.ts +12 -4
- package/lib/PostFlightInfo.d.ts +3 -3
- package/lib/PreFlightInfo.d.ts +2 -2
- package/lib/RiskAssessment.d.ts +4 -4
- package/lib/Syllabus.d.ts +1 -1
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/SystemMessage.d.ts +2 -2
- package/lib/TokenData.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +115 -115
- package/lib/services.export.d.ts +21 -21
- package/package.json +1 -1
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightStateCode } from '.';
|
|
4
|
-
import { Account } from '.';
|
|
5
|
-
import { FlightTypeCode } from '.';
|
|
6
3
|
import { FlightPurposeCode } from '.';
|
|
4
|
+
import { FlightTypeCode } from '.';
|
|
5
|
+
import { Account } from '.';
|
|
6
|
+
import { AccountStatusCode } from '.';
|
|
7
7
|
import { FlightStatusCode } from '.';
|
|
8
|
-
import { Flight } from '.';
|
|
9
8
|
import { Credit } from '.';
|
|
10
9
|
import { Document } from '.';
|
|
11
|
-
import { AccountStatusCode } from '.';
|
|
12
10
|
import { StringKeyValue } from '.';
|
|
11
|
+
import { FlightStateCode } from '.';
|
|
12
|
+
import { Flight } 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,11 +1,11 @@
|
|
|
1
|
-
import { AirplaneStatusCode } from '.';
|
|
2
|
-
import { AirplaneValidationFlag } from '.';
|
|
3
1
|
import { Engine } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
|
-
import { TypeRatingFlag } from '.';
|
|
6
2
|
import { Propeller } from '.';
|
|
7
3
|
import { Fuel } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
|
+
import { TypeRatingFlag } from '.';
|
|
6
|
+
import { AirplaneValidationFlag } from '.';
|
|
8
7
|
import { BaseEntityEx } from '.';
|
|
8
|
+
import { AirplaneStatusCode } from '.';
|
|
9
9
|
import { Magneto } from '.';
|
|
10
10
|
export declare class Airplane extends BaseEntityEx {
|
|
11
11
|
name: 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 { StatusCode } from '.';
|
|
3
|
+
import { FlightPurposeCode } from '.';
|
|
6
4
|
import { Maintenance } from '.';
|
|
5
|
+
import { Airplane } from '.';
|
|
7
6
|
import { AirplaneStatusCode } from '.';
|
|
7
|
+
import { FlightStatusCode } from '.';
|
|
8
|
+
import { StatusCode } from '.';
|
|
9
|
+
import { MaintenanceActionCode } from '.';
|
|
10
|
+
import { Flight } from '.';
|
|
11
|
+
import { Document } from '.';
|
|
8
12
|
import { StringKeyValue } from '.';
|
|
9
|
-
import { FlightPurposeCode } from '.';
|
|
10
13
|
import { FlightTypeCode } from '.';
|
|
11
14
|
import { FlightStateCode } from '.';
|
|
12
|
-
import { Airplane } 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/AuditLog.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { AuditLog } from '.';
|
|
4
3
|
import { TimeSeries } from '.';
|
|
4
|
+
import { AuditLog } 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 { BaseEntityEx } from '.';
|
|
2
1
|
import { ColumnDef } from '.';
|
|
3
2
|
import { BookingTypeFlag } from '.';
|
|
4
3
|
import { BookingStatusCode } from '.';
|
|
4
|
+
import { BaseEntityEx } 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 '.';
|
|
3
1
|
import { ColumnDef } from '.';
|
|
4
2
|
import { BookingTypeFlag } from '.';
|
|
5
3
|
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;
|
package/lib/BookingSlotsSet.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { BookingStatusCode } from '.';
|
|
4
|
-
import { TimeSeries } from '.';
|
|
5
3
|
import { BookingPlan } from '.';
|
|
6
4
|
import { Booking } from '.';
|
|
5
|
+
import { BookingStatusCode } from '.';
|
|
6
|
+
import { TimeSeries } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class BookingsEndPoint {
|
|
9
9
|
private config;
|
package/lib/BookingsFilter.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { StatusCode } from '.';
|
|
4
3
|
import { Certificate } from '.';
|
|
4
|
+
import { StatusCode } 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 { AccountStatusCode } from '.';
|
|
2
|
-
import { Address } from '.';
|
|
3
1
|
import { LicenseKindFlag } from '.';
|
|
4
|
-
import { MedicalCertClassCode } from '.';
|
|
5
|
-
import { TypeRatingFlag } from '.';
|
|
6
|
-
import { ValidationFlag } from '.';
|
|
7
2
|
import { FlightCategoryCode } from '.';
|
|
8
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { Address } from '.';
|
|
5
|
+
import { TypeRatingFlag } from '.';
|
|
6
|
+
import { MedicalCertClassCode } from '.';
|
|
7
|
+
import { ValidationFlag } from '.';
|
|
9
8
|
import { ColumnDef } from '.';
|
|
9
|
+
import { AccountStatusCode } 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 { FlightStateCode } from '.';
|
|
4
|
+
import { FlightPurposeCode } from '.';
|
|
4
5
|
import { Document } from '.';
|
|
6
|
+
import { MessageConfirm } from '.';
|
|
7
|
+
import { Contact } from '.';
|
|
8
|
+
import { StringKeyValue } from '.';
|
|
9
|
+
import { Certificate } from '.';
|
|
5
10
|
import { StatusCode } from '.';
|
|
6
11
|
import { FlightTypeCode } from '.';
|
|
7
12
|
import { FlightStatusCode } from '.';
|
|
8
|
-
import { FlightPurposeCode } from '.';
|
|
9
|
-
import { StringKeyValue } from '.';
|
|
10
13
|
import { Flight } from '.';
|
|
11
|
-
import { Contact } from '.';
|
|
12
|
-
import { Certificate } from '.';
|
|
13
|
-
import { MessageConfirm } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
|
16
16
|
private config;
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { FlightPurposeCode } from '.';
|
|
2
2
|
import { FlightClassCode } from '.';
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
3
|
+
import { Lesson } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
import { RiskAssessment } from '.';
|
|
6
6
|
import { BaseEntityEx } from '.';
|
|
7
7
|
import { FlightCategoryCode } from '.';
|
|
8
8
|
import { FlightTypeCode } from '.';
|
|
9
|
+
import { FlightStatusCode } from '.';
|
|
10
|
+
import { BillingStatusCode } from '.';
|
|
9
11
|
import { TOLData } from '.';
|
|
10
|
-
import { Lesson } from '.';
|
|
11
|
-
import { ColumnDef } from '.';
|
|
12
12
|
export declare class Flight extends BaseEntityEx {
|
|
13
13
|
name: string;
|
|
14
14
|
description: string;
|
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
|
-
import { FlightTypeCode } from '.';
|
|
4
1
|
import { FlightStatusCode } from '.';
|
|
5
2
|
import { FlightStateCode } from '.';
|
|
6
3
|
import { FlightPurposeCode } from '.';
|
|
7
4
|
import { TOLData } from '.';
|
|
5
|
+
import { BaseEntityEx } from '.';
|
|
6
|
+
import { ColumnDef } from '.';
|
|
7
|
+
import { FlightTypeCode } 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 { DepartureRisks } from '.';
|
|
1
|
+
import { CrewDutyDayRisks } from '.';
|
|
3
2
|
import { DestinationRisks } from '.';
|
|
4
3
|
import { TripRisks } from '.';
|
|
5
|
-
import { WeatherRisks } from '.';
|
|
6
|
-
import { SpecialRisks } from '.';
|
|
7
|
-
import { ColumnDef } from '.';
|
|
8
|
-
import { CrewDutyDayRisks } from '.';
|
|
9
4
|
import { Mitigation } from '.';
|
|
10
5
|
import { BaseEntityEx } from '.';
|
|
6
|
+
import { ColumnDef } from '.';
|
|
7
|
+
import { PilotQualificationsRisks } from '.';
|
|
8
|
+
import { DepartureRisks } from '.';
|
|
9
|
+
import { WeatherRisks } 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
3
|
import { PreFlightInfo } from '.';
|
|
4
|
-
import {
|
|
4
|
+
import { Flight } from '.';
|
|
5
|
+
import { FlightTypeCode } from '.';
|
|
6
|
+
import { FlightStatusCode } from '.';
|
|
5
7
|
import { FlightPurposeCode } from '.';
|
|
6
|
-
import { TimeSeries } from '.';
|
|
7
8
|
import { FlightPlan } from '.';
|
|
8
|
-
import { Flight } from '.';
|
|
9
9
|
import { Contact } from '.';
|
|
10
|
+
import { BillingStatusCode } from '.';
|
|
11
|
+
import { TimeSeries } from '.';
|
|
10
12
|
import { FlightTicket } from '.';
|
|
11
13
|
import { PostFlightInfo } from '.';
|
|
12
|
-
import {
|
|
13
|
-
import { BillingStatusCode } from '.';
|
|
14
|
-
import { FlightTypeCode } 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 { BillingStatusCode } from '.';
|
|
2
|
-
import { FlightPurposeCode } from '.';
|
|
3
1
|
import { TimeFrame } from '.';
|
|
4
2
|
import { FlightTypeCode } from '.';
|
|
5
3
|
import { FlightStatusCode } from '.';
|
|
4
|
+
import { BillingStatusCode } from '.';
|
|
5
|
+
import { FlightPurposeCode } from '.';
|
|
6
6
|
export declare class FlightsFilter {
|
|
7
7
|
search: string;
|
|
8
8
|
period: TimeFrame;
|
package/lib/Group.d.ts
CHANGED
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/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 { LeadAction } from '.';
|
|
3
4
|
import { Lead } from '.';
|
|
4
5
|
import { LeadStatusCode } from '.';
|
|
5
6
|
import { TimeSeries } from '.';
|
|
6
|
-
import { LeadAction } 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,19 +1,19 @@
|
|
|
1
|
+
import { LessonTypeCode } from '.';
|
|
1
2
|
import { FlightCategoryCode } from '.';
|
|
2
|
-
import { LessonSubjectCode } from '.';
|
|
3
3
|
import { AssessmentCode } from '.';
|
|
4
|
-
import { LessonTypeCode } from '.';
|
|
5
4
|
export declare class Lesson {
|
|
6
5
|
number: number;
|
|
7
6
|
type: LessonTypeCode;
|
|
8
7
|
instructionPlan: FlightCategoryCode;
|
|
9
8
|
topicId: string;
|
|
10
|
-
subject: string;
|
|
11
|
-
lessonSubject: LessonSubjectCode;
|
|
12
9
|
assessment: AssessmentCode;
|
|
13
10
|
comments: string;
|
|
14
11
|
flightCounter: number;
|
|
15
12
|
instructedFlightTime: number;
|
|
16
13
|
instrumentsFlightTime: number;
|
|
17
14
|
soloFlightTime: number;
|
|
18
|
-
|
|
15
|
+
instructedNavTime: number;
|
|
16
|
+
soloNavTime: number;
|
|
17
|
+
nightTime: number;
|
|
18
|
+
constructor(number?: number, type?: LessonTypeCode, instructionPlan?: FlightCategoryCode, topicId?: string, assessment?: AssessmentCode, comments?: string, flightCounter?: number, instructedFlightTime?: number, instrumentsFlightTime?: number, soloFlightTime?: number, instructedNavTime?: number, soloNavTime?: number, nightTime?: number);
|
|
19
19
|
}
|
package/lib/Maintenance.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { StatusCode } from '.';
|
|
2
|
-
import { MaintenanceActionCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { StatusCode } from '.';
|
|
4
|
+
import { MaintenanceActionCode } from '.';
|
|
5
5
|
export declare class Maintenance extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { PriorityCode } from '.';
|
|
4
3
|
import { MessageConfirm } from '.';
|
|
5
4
|
import { MessageTypeCode } from '.';
|
|
6
5
|
import { ConfirmStatusCode } from '.';
|
|
6
|
+
import { PriorityCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MessageConfirmsEndPoint {
|
|
9
9
|
private config;
|
package/lib/MyAuthEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { LoginParams } from '.';
|
|
4
3
|
import { Contact } from '.';
|
|
4
|
+
import { LoginParams } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class MyAuthEndPoint {
|
|
7
7
|
private config;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Booking } from '.';
|
|
4
|
+
import { BookingStatusCode } from '.';
|
|
3
5
|
import { BookingTypeFlag } from '.';
|
|
4
6
|
import { Lookup } from '.';
|
|
5
7
|
import { BookingSlot } from '.';
|
|
6
|
-
import { Booking } from '.';
|
|
7
|
-
import { BookingStatusCode } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class MyBookingsEndPoint {
|
|
10
10
|
private config;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { FlightPlan } from '.';
|
|
4
|
-
import { InstructionTypeCode } from '.';
|
|
5
|
-
import { FlightStatusCode } from '.';
|
|
6
|
-
import { Flight } from '.';
|
|
7
|
-
import { FlightTypeCode } from '.';
|
|
8
4
|
import { Syllabus } from '.';
|
|
9
5
|
import { PreFlightInfo } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
7
|
+
import { FlightTypeCode } from '.';
|
|
8
|
+
import { FlightStatusCode } from '.';
|
|
9
|
+
import { InstructionTypeCode } from '.';
|
|
10
10
|
import { PostFlightInfo } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class MyFlightsEndPoint {
|
|
@@ -46,6 +46,14 @@ export declare class MyFlightsEndPoint {
|
|
|
46
46
|
* Update flight with post-flight info
|
|
47
47
|
*/
|
|
48
48
|
setPostFlight(body?: PostFlightInfo): import("rxjs").Observable<ActionResponse>;
|
|
49
|
+
/**
|
|
50
|
+
* Get post-flight assessment info by flight id
|
|
51
|
+
*/
|
|
52
|
+
getPostFlightAssessment(id?: string): import("rxjs").Observable<EntityResponse<PostFlightInfo>>;
|
|
53
|
+
/**
|
|
54
|
+
* Update flight with post-flight assessment info
|
|
55
|
+
*/
|
|
56
|
+
setPostFlightAssessment(body?: PostFlightInfo): import("rxjs").Observable<ActionResponse>;
|
|
49
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<MyFlightsEndPoint, never>;
|
|
50
58
|
static ɵprov: i0.ɵɵInjectableDeclaration<MyFlightsEndPoint>;
|
|
51
59
|
}
|
package/lib/PostFlightInfo.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { AssessmentCode } from '.';
|
|
2
1
|
import { FlightPurposeCode } from '.';
|
|
3
2
|
import { FlightTypeCode } from '.';
|
|
3
|
+
import { AssessmentCode } from '.';
|
|
4
4
|
export declare class PostFlightInfo {
|
|
5
5
|
flightId: string;
|
|
6
6
|
flightNumber: number;
|
|
@@ -27,7 +27,7 @@ export declare class PostFlightInfo {
|
|
|
27
27
|
multiEngineHours: number;
|
|
28
28
|
flightHoursLastMonth: number;
|
|
29
29
|
lessonNumber: number;
|
|
30
|
-
|
|
30
|
+
lessonTopicId: string;
|
|
31
31
|
lessonFlightCounter: number;
|
|
32
32
|
assessment: AssessmentCode;
|
|
33
33
|
instructedFlightTime: number;
|
|
@@ -36,5 +36,5 @@ export declare class PostFlightInfo {
|
|
|
36
36
|
lessonComments: string;
|
|
37
37
|
description: string;
|
|
38
38
|
reportedBy: string;
|
|
39
|
-
constructor(flightId?: string, flightNumber?: number, airplane?: string, hoursToInspection?: number, purpose?: FlightPurposeCode, type?: FlightTypeCode, takeoffPlannedTime?: number, takeoffActualTime?: number, takeoffField?: string, takeoffHobbs?: number, takeoffTach?: number, landingPlannedTime?: number, landingActualTime?: number, landingField?: string, landingHobbs?: number, landingTach?: number, captain?: string, firstOfficer?: string, destination?: string, actualFuelOnBoard?: number, actualOilOnBoard?: number, singleEngineHours?: number, multiEngineHours?: number, flightHoursLastMonth?: number, lessonNumber?: number,
|
|
39
|
+
constructor(flightId?: string, flightNumber?: number, airplane?: string, hoursToInspection?: number, purpose?: FlightPurposeCode, type?: FlightTypeCode, takeoffPlannedTime?: number, takeoffActualTime?: number, takeoffField?: string, takeoffHobbs?: number, takeoffTach?: number, landingPlannedTime?: number, landingActualTime?: number, landingField?: string, landingHobbs?: number, landingTach?: number, captain?: string, firstOfficer?: string, destination?: string, actualFuelOnBoard?: number, actualOilOnBoard?: number, singleEngineHours?: number, multiEngineHours?: number, flightHoursLastMonth?: number, lessonNumber?: number, lessonTopicId?: string, lessonFlightCounter?: number, lessonAssessment?: AssessmentCode, instructedFlightTime?: number, instrumentsFlightTime?: number, soloFlightTime?: number, lessonComments?: string, description?: string, reportedBy?: string);
|
|
40
40
|
}
|
package/lib/PreFlightInfo.d.ts
CHANGED
|
@@ -26,10 +26,10 @@ export declare class PreFlightInfo {
|
|
|
26
26
|
crew: string[];
|
|
27
27
|
wbConfig: string;
|
|
28
28
|
wbManual: string;
|
|
29
|
-
|
|
29
|
+
lessonTopicId: string;
|
|
30
30
|
lessonFlightCounter: number;
|
|
31
31
|
preFlightNotes: string;
|
|
32
32
|
operationNotes: string;
|
|
33
33
|
reportedBy: string;
|
|
34
|
-
constructor(flightId?: string, flightNumber?: number, airplane?: string, hoursToInspection?: number, takeoffPlannedTime?: number, takeoffActualTime?: number, takeoffField?: string, landingField?: string, purpose?: FlightPurposeCode, purposeOt?: string, type?: FlightTypeCode, destination?: string, secondaryCallSign?: string, captain?: string, firstOfficer?: string, captainName?: string, firstOfficerName?: string, estimatedFuelOnBoard?: number, estimatedEndurance?: number, actualFuelOnBoard?: number, actualOilOnBoard?: number, passengers?: string[], crew?: string[], wBConfig?: string, wBManual?: string,
|
|
34
|
+
constructor(flightId?: string, flightNumber?: number, airplane?: string, hoursToInspection?: number, takeoffPlannedTime?: number, takeoffActualTime?: number, takeoffField?: string, landingField?: string, purpose?: FlightPurposeCode, purposeOt?: string, type?: FlightTypeCode, destination?: string, secondaryCallSign?: string, captain?: string, firstOfficer?: string, captainName?: string, firstOfficerName?: string, estimatedFuelOnBoard?: number, estimatedEndurance?: number, actualFuelOnBoard?: number, actualOilOnBoard?: number, passengers?: string[], crew?: string[], wBConfig?: string, wBManual?: string, lessonTopicId?: string, lessonFlightCounter?: number, preFlightNotes?: string, operationNotes?: string, reportedBy?: string);
|
|
35
35
|
}
|
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { TripRisks } from '.';
|
|
2
|
-
import { WeatherRisks } from '.';
|
|
3
|
-
import { SpecialRisks } from '.';
|
|
4
|
-
import { Mitigation } from '.';
|
|
5
1
|
import { PilotQualificationsRisks } from '.';
|
|
6
2
|
import { CrewDutyDayRisks } from '.';
|
|
7
3
|
import { DepartureRisks } from '.';
|
|
8
4
|
import { DestinationRisks } from '.';
|
|
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;
|
package/lib/Syllabus.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { FlightCategoryCode } from '.';
|
|
1
2
|
import { InstructionTypeCode } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
4
|
import { ColumnDef } from '.';
|
|
4
|
-
import { FlightCategoryCode } from '.';
|
|
5
5
|
export declare class Syllabus extends BaseEntityEx {
|
|
6
6
|
plan: FlightCategoryCode;
|
|
7
7
|
type: InstructionTypeCode;
|
|
@@ -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/SystemMessage.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { MessageTypeCode } from '.';
|
|
4
2
|
import { PriorityCode } from '.';
|
|
3
|
+
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/TokenData.d.ts
CHANGED
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 { StringKeyValue } from '.';
|
|
4
3
|
import { User } from '.';
|
|
5
4
|
import { UserTypeCode } from '.';
|
|
6
5
|
import { UserStatusCode } from '.';
|
|
6
|
+
import { StringKeyValue } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class UsersEndPoint {
|
|
9
9
|
private config;
|