@aya-flights/ngx-goox-lib 2.18.78 → 2.18.81
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/BookingSlotsEndPoint.mjs +1 -1
- package/esm2022/lib/BookingsEndPoint.mjs +1 -1
- package/esm2022/lib/Certificate.mjs +2 -2
- package/esm2022/lib/CertificatesFilter.mjs +1 -1
- package/esm2022/lib/Contact.mjs +2 -1
- package/esm2022/lib/ContactsEndPoint.mjs +1 -1
- package/esm2022/lib/Document.mjs +1 -1
- package/esm2022/lib/Enums.mjs +274 -274
- package/esm2022/lib/Flight.mjs +1 -1
- package/esm2022/lib/FlightBilling.mjs +1 -1
- package/esm2022/lib/FlightPlan.mjs +2 -2
- package/esm2022/lib/FlightRisk.mjs +1 -1
- package/esm2022/lib/FlightsEndPoint.mjs +1 -1
- package/esm2022/lib/FlightsFilter.mjs +1 -1
- package/esm2022/lib/Group.mjs +1 -1
- package/esm2022/lib/GroupsEndPoint.mjs +1 -1
- package/esm2022/lib/Lead.mjs +2 -2
- package/esm2022/lib/LeadsEndPoint.mjs +1 -1
- package/esm2022/lib/Lesson.mjs +1 -1
- package/esm2022/lib/LogBookRecord.mjs +2 -2
- package/esm2022/lib/Maintenance.mjs +2 -2
- package/esm2022/lib/MaintenancesEndPoint.mjs +1 -1
- package/esm2022/lib/MyBookingsEndPoint.mjs +26 -3
- package/esm2022/lib/MyFlightsEndPoint.mjs +1 -1
- package/esm2022/lib/PostFlightData.mjs +2 -2
- package/esm2022/lib/PreFlightData.mjs +1 -1
- package/esm2022/lib/RiskAssessment.mjs +1 -1
- package/esm2022/lib/SyllabusFilter.mjs +1 -1
- package/esm2022/lib/SystemMessagesEndPoint.mjs +1 -1
- package/esm2022/lib/UserEndPoint.mjs +1 -1
- package/esm2022/lib/UsersEndPoint.mjs +1 -1
- package/esm2022/lib/index.mjs +115 -115
- package/esm2022/lib/services.export.mjs +39 -39
- package/fesm2022/aya-flights-ngx-goox-lib.mjs +4783 -4759
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +6 -6
- package/lib/Airplane.d.ts +4 -4
- package/lib/AirplanesEndPoint.d.ts +8 -8
- package/lib/AuditLog.d.ts +1 -1
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +2 -2
- package/lib/Certificate.d.ts +1 -1
- package/lib/CertificatesFilter.d.ts +1 -1
- package/lib/Contact.d.ts +5 -4
- package/lib/ContactsEndPoint.d.ts +5 -5
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +9 -9
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightPlan.d.ts +2 -2
- 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 +1 -1
- package/lib/LeadsEndPoint.d.ts +1 -1
- package/lib/Lesson.d.ts +1 -1
- package/lib/LogBookRecord.d.ts +1 -1
- package/lib/Maintenance.d.ts +1 -1
- package/lib/MaintenancesEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +11 -2
- package/lib/MyFlightsEndPoint.d.ts +2 -2
- package/lib/PostFlightData.d.ts +2 -2
- package/lib/PreFlightData.d.ts +2 -2
- package/lib/RiskAssessment.d.ts +3 -3
- package/lib/SyllabusFilter.d.ts +1 -1
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/UserEndPoint.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +114 -114
- package/lib/services.export.d.ts +20 -20
- 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 { Document } from '.';
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
5
|
-
import { FlightStateCode } from '.';
|
|
6
3
|
import { AccountStatusCode } from '.';
|
|
7
|
-
import { StringKeyValue } from '.';
|
|
8
4
|
import { FlightPurposeCode } from '.';
|
|
9
5
|
import { Flight } from '.';
|
|
10
|
-
import {
|
|
11
|
-
import { Account } from '.';
|
|
6
|
+
import { Document } from '.';
|
|
12
7
|
import { FlightTypeCode } from '.';
|
|
8
|
+
import { Account } from '.';
|
|
9
|
+
import { FlightStateCode } from '.';
|
|
10
|
+
import { StringKeyValue } from '.';
|
|
11
|
+
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
1
|
import { AirplaneStatusCode } from '.';
|
|
2
|
-
import {
|
|
2
|
+
import { AirplaneValidationFlag } from '.';
|
|
3
3
|
import { Engine } from '.';
|
|
4
|
-
import {
|
|
4
|
+
import { Magneto } from '.';
|
|
5
5
|
import { Fuel } from '.';
|
|
6
|
+
import { TypeRatingFlag } from '.';
|
|
7
|
+
import { Propeller } from '.';
|
|
6
8
|
import { BaseEntityEx } from '.';
|
|
7
9
|
import { ColumnDef } from '.';
|
|
8
|
-
import { TypeRatingFlag } 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 {
|
|
3
|
+
import { FlightTypeCode } from '.';
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
5
|
+
import { MaintenanceActionCode } from '.';
|
|
6
|
+
import { Document } from '.';
|
|
5
7
|
import { Airplane } from '.';
|
|
6
|
-
import {
|
|
8
|
+
import { FlightPurposeCode } from '.';
|
|
7
9
|
import { Flight } from '.';
|
|
8
|
-
import {
|
|
9
|
-
import { MaintenanceActionCode } from '.';
|
|
10
|
+
import { Maintenance } from '.';
|
|
10
11
|
import { AirplaneStatusCode } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import { FlightTypeCode } from '.';
|
|
13
|
-
import { FlightStatusCode } from '.';
|
|
12
|
+
import { StringKeyValue } from '.';
|
|
14
13
|
import { FlightStateCode } from '.';
|
|
14
|
+
import { StatusCode } 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 { 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;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { BookingSlots } from '.';
|
|
4
3
|
import { BookingSlotsSet } from '.';
|
|
5
4
|
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;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Booking } from '.';
|
|
4
|
-
import { BookingStatusCode } from '.';
|
|
5
3
|
import { TimeSeries } from '.';
|
|
6
4
|
import { BookingPlan } from '.';
|
|
5
|
+
import { Booking } from '.';
|
|
6
|
+
import { BookingStatusCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class BookingsEndPoint {
|
|
9
9
|
private config;
|
package/lib/Certificate.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { ValidationFlag } from '.';
|
|
2
3
|
import { StatusCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Certificate extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
type: ValidationFlag;
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
1
|
+
import { Address } from '.';
|
|
3
2
|
import { TypeRatingFlag } from '.';
|
|
3
|
+
import { LicenseKindFlag } from '.';
|
|
4
4
|
import { MedicalCertClassCode } from '.';
|
|
5
5
|
import { ValidationFlag } from '.';
|
|
6
|
+
import { BaseEntityEx } from '.';
|
|
7
|
+
import { AccountStatusCode } from '.';
|
|
6
8
|
import { FlightCategoryCode } from '.';
|
|
7
9
|
import { ColumnDef } from '.';
|
|
8
|
-
import { AccountStatusCode } from '.';
|
|
9
|
-
import { Address } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
11
11
|
accountId: string;
|
|
12
12
|
name: string;
|
|
@@ -33,6 +33,7 @@ export declare class Contact extends BaseEntityEx {
|
|
|
33
33
|
startToFlyDate: number;
|
|
34
34
|
authorizedToFlyBy: string;
|
|
35
35
|
authorizedPhotographyBy: string;
|
|
36
|
+
updateFlags: number;
|
|
36
37
|
get(field: string): any;
|
|
37
38
|
}
|
|
38
39
|
export declare function GetContactColumnsDef(): ColumnDef[];
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import { Contact } from '.';
|
|
5
|
-
import { FlightTypeCode } from '.';
|
|
3
|
+
import { StringKeyValue } from '.';
|
|
6
4
|
import { FlightStateCode } from '.';
|
|
7
5
|
import { FlightPurposeCode } from '.';
|
|
6
|
+
import { Document } from '.';
|
|
7
|
+
import { StatusCode } from '.';
|
|
8
8
|
import { Certificate } from '.';
|
|
9
|
-
import {
|
|
9
|
+
import { FlightTypeCode } from '.';
|
|
10
10
|
import { FlightStatusCode } from '.';
|
|
11
11
|
import { Flight } from '.';
|
|
12
|
+
import { Contact } from '.';
|
|
12
13
|
import { MessageConfirm } from '.';
|
|
13
|
-
import { StatusCode } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
|
16
16
|
private config;
|
package/lib/Document.d.ts
CHANGED
package/lib/Flight.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnBoard } from '.';
|
|
2
2
|
import { Lesson } from '.';
|
|
3
|
-
import { FlightStatusCode } from '.';
|
|
4
|
-
import { TOLData } from '.';
|
|
5
|
-
import { FlightPurposeCode } from '.';
|
|
6
|
-
import { FlightStateCode } from '.';
|
|
7
|
-
import { Billing } from '.';
|
|
8
|
-
import { RiskAssessment } from '.';
|
|
9
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { BillingStatusCode } from '.';
|
|
5
|
+
import { RiskAssessment } from '.';
|
|
6
|
+
import { FlightStateCode } from '.';
|
|
10
7
|
import { FlightClassCode } from '.';
|
|
11
|
-
import {
|
|
8
|
+
import { TOLData } from '.';
|
|
9
|
+
import { Billing } from '.';
|
|
10
|
+
import { FlightPurposeCode } from '.';
|
|
12
11
|
import { FlightTypeCode } from '.';
|
|
13
|
-
import {
|
|
12
|
+
import { FlightStatusCode } from '.';
|
|
14
13
|
import { ReFuel } from '.';
|
|
15
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/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
|
-
import { FlightTypeCode } from '.';
|
|
3
1
|
import { FlightStatusCode } from '.';
|
|
4
2
|
import { FlightStateCode } from '.';
|
|
5
3
|
import { FlightPurposeCode } from '.';
|
|
6
4
|
import { TOLData } from '.';
|
|
7
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 { PilotQualificationsRisks } from '.';
|
|
2
|
-
import { CrewDutyDayRisks } from '.';
|
|
3
1
|
import { DepartureRisks } from '.';
|
|
2
|
+
import { TripRisks } from '.';
|
|
4
3
|
import { WeatherRisks } from '.';
|
|
5
4
|
import { SpecialRisks } from '.';
|
|
5
|
+
import { Mitigation } from '.';
|
|
6
6
|
import { BaseEntityEx } from '.';
|
|
7
|
-
import {
|
|
7
|
+
import { PilotQualificationsRisks } from '.';
|
|
8
|
+
import { CrewDutyDayRisks } from '.';
|
|
8
9
|
import { DestinationRisks } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import { Mitigation } from '.';
|
|
10
|
+
import { ColumnDef } 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 { Flight } from '.';
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
5
|
-
import { FlightTicket } from '.';
|
|
6
|
-
import { PreFlightInfo } from '.';
|
|
7
|
-
import { FlightTypeCode } from '.';
|
|
8
|
-
import { TimeSeries } from '.';
|
|
9
3
|
import { AnyKeyValue } from '.';
|
|
10
|
-
import {
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
11
5
|
import { FlightPurposeCode } from '.';
|
|
12
6
|
import { FlightPlan } from '.';
|
|
13
|
-
import {
|
|
7
|
+
import { Flight } from '.';
|
|
8
|
+
import { FlightTypeCode } from '.';
|
|
9
|
+
import { PreFlightInfo } from '.';
|
|
10
|
+
import { BillingStatusCode } from '.';
|
|
11
|
+
import { TimeSeries } from '.';
|
|
14
12
|
import { PostFlightInfo } from '.';
|
|
13
|
+
import { Contact } from '.';
|
|
14
|
+
import { FlightTicket } 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 { FlightTypeCode } from '.';
|
|
1
2
|
import { FlightStatusCode } from '.';
|
|
2
3
|
import { BillingStatusCode } from '.';
|
|
3
4
|
import { FlightPurposeCode } from '.';
|
|
4
5
|
import { TimeFrame } from '.';
|
|
5
|
-
import { FlightTypeCode } 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 { Permission } from '.';
|
|
2
|
-
import { StringKeyValue } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { Permission } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
export declare class Group extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
email: string;
|
package/lib/GroupsEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { StringKeyValue } from '.';
|
|
4
3
|
import { Group } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class GroupsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Lead.d.ts
CHANGED
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 { Lead } from '.';
|
|
3
4
|
import { LeadStatusCode } from '.';
|
|
4
5
|
import { TimeSeries } from '.';
|
|
5
6
|
import { LeadAction } from '.';
|
|
6
|
-
import { Lead } 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 { AssessmentCode } from '.';
|
|
1
2
|
import { LessonTypeCode } from '.';
|
|
2
3
|
import { FlightCategoryCode } from '.';
|
|
3
4
|
import { LessonSubjectCode } from '.';
|
|
4
|
-
import { AssessmentCode } from '.';
|
|
5
5
|
export declare class Lesson {
|
|
6
6
|
number: number;
|
|
7
7
|
type: LessonTypeCode;
|
package/lib/LogBookRecord.d.ts
CHANGED
package/lib/Maintenance.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { StatusCode } from '.';
|
|
2
3
|
import { MaintenanceActionCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Maintenance extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Maintenance } from '.';
|
|
3
4
|
import { MaintenanceActionCode } from '.';
|
|
4
5
|
import { StatusCode } from '.';
|
|
5
|
-
import { Maintenance } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class MaintenancesEndPoint {
|
|
8
8
|
private config;
|
|
@@ -2,6 +2,7 @@ import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../u
|
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { BookingTypeFlag } from '.';
|
|
4
4
|
import { BookingSlots } from '.';
|
|
5
|
+
import { Lookup } from '.';
|
|
5
6
|
import { Booking } from '.';
|
|
6
7
|
import { BookingStatusCode } from '.';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
@@ -31,9 +32,17 @@ export declare class MyBookingsEndPoint {
|
|
|
31
32
|
*/
|
|
32
33
|
find(search?: string, airplaneId?: string, from?: number, to?: number, status?: BookingStatusCode[], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Booking>>;
|
|
33
34
|
/**
|
|
34
|
-
* Find
|
|
35
|
+
* Find open bookings slots
|
|
36
|
+
*/
|
|
37
|
+
getBookingSlots(year?: number, month?: number, type?: BookingTypeFlag, airplaneId?: string): import("rxjs").Observable<EntitiesResponse<BookingSlots>>;
|
|
38
|
+
/**
|
|
39
|
+
* Find all instructors and mark the student's default instructor
|
|
40
|
+
*/
|
|
41
|
+
findInstructors(search?: string): import("rxjs").Observable<EntitiesResponse<Lookup>>;
|
|
42
|
+
/**
|
|
43
|
+
* Find all active pilots
|
|
35
44
|
*/
|
|
36
|
-
|
|
45
|
+
findPilots(search?: string): import("rxjs").Observable<EntitiesResponse<Lookup>>;
|
|
37
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<MyBookingsEndPoint, never>;
|
|
38
47
|
static ɵprov: i0.ɵɵInjectableDeclaration<MyBookingsEndPoint>;
|
|
39
48
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightStatusCode } from '.';
|
|
4
|
-
import { FlightPlan } from '.';
|
|
5
3
|
import { PostFlightInfo } from '.';
|
|
6
4
|
import { Flight } from '.';
|
|
5
|
+
import { FlightStatusCode } from '.';
|
|
7
6
|
import { FlightTypeCode } from '.';
|
|
7
|
+
import { FlightPlan } from '.';
|
|
8
8
|
import { PreFlightInfo } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyFlightsEndPoint {
|
package/lib/PostFlightData.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Lesson } from '.';
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
3
1
|
import { ColumnDef } from '.';
|
|
4
2
|
import { FlightTypeCode } from '.';
|
|
5
3
|
import { FlightPurposeCode } from '.';
|
|
6
4
|
import { OnBoard } from '.';
|
|
7
5
|
import { TOLData } from '.';
|
|
8
6
|
import { ReFuel } from '.';
|
|
7
|
+
import { Lesson } from '.';
|
|
8
|
+
import { BaseEntityEx } 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 { TOLData } from '.';
|
|
2
|
+
import { ReFuel } from '.';
|
|
1
3
|
import { Lesson } from '.';
|
|
2
4
|
import { BaseEntityEx } from '.';
|
|
3
5
|
import { ColumnDef } from '.';
|
|
4
6
|
import { FlightTypeCode } from '.';
|
|
5
7
|
import { FlightPurposeCode } from '.';
|
|
6
8
|
import { OnBoard } from '.';
|
|
7
|
-
import { TOLData } from '.';
|
|
8
|
-
import { ReFuel } from '.';
|
|
9
9
|
export declare class PreFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import { WeatherRisks } from '.';
|
|
2
|
+
import { SpecialRisks } from '.';
|
|
3
|
+
import { Mitigation } from '.';
|
|
1
4
|
import { PilotQualificationsRisks } from '.';
|
|
2
5
|
import { CrewDutyDayRisks } from '.';
|
|
3
6
|
import { DepartureRisks } from '.';
|
|
4
7
|
import { DestinationRisks } from '.';
|
|
5
8
|
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/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 '.';
|
|
4
3
|
import { MessageTypeCode } from '.';
|
|
5
4
|
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/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,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;
|