@aya-flights/ngx-goox-lib 2.19.113 → 2.19.114
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 +4970 -4967
- 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 +7 -7
- package/lib/Booking.d.ts +2 -2
- package/lib/BookingPlan.d.ts +2 -2
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/BookingSlotsSet.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +1 -1
- package/lib/Campaign.d.ts +2 -2
- package/lib/Certificate.d.ts +1 -1
- package/lib/CertificatesEndPoint.d.ts +1 -1
- package/lib/CertificatesFilter.d.ts +1 -1
- package/lib/Contact.d.ts +4 -4
- package/lib/ContactsEndPoint.d.ts +8 -8
- package/lib/Credit.d.ts +1 -1
- package/lib/Flight.d.ts +5 -5
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightPlan.d.ts +2 -2
- package/lib/FlightRisk.d.ts +4 -4
- package/lib/FlightsEndPoint.d.ts +8 -8
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/Group.d.ts +1 -1
- package/lib/Lead.d.ts +2 -2
- package/lib/Lesson.d.ts +5 -5
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/MessageConfirm.d.ts +1 -1
- package/lib/MessageConfirmsEndPoint.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +6 -6
- package/lib/PostFlightInfo.d.ts +3 -3
- package/lib/PreFlightInfo.d.ts +2 -2
- package/lib/Price.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +4 -4
- package/lib/Syllabus.d.ts +1 -1
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/User.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +114 -114
- package/lib/services.export.d.ts +22 -22
- 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
3
|
import { FlightTypeCode } from '.';
|
|
6
|
-
import {
|
|
4
|
+
import { Account } from '.';
|
|
7
5
|
import { FlightStatusCode } from '.';
|
|
8
|
-
import { Flight } from '.';
|
|
9
6
|
import { Credit } from '.';
|
|
10
|
-
import { Document } from '.';
|
|
11
|
-
import { AccountStatusCode } from '.';
|
|
12
7
|
import { StringKeyValue } from '.';
|
|
8
|
+
import { FlightPurposeCode } from '.';
|
|
9
|
+
import { Flight } from '.';
|
|
10
|
+
import { AccountStatusCode } from '.';
|
|
11
|
+
import { FlightStateCode } from '.';
|
|
12
|
+
import { Document } 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 {
|
|
3
|
-
import {
|
|
2
|
+
import { Magneto } from '.';
|
|
3
|
+
import { Propeller } from '.';
|
|
4
4
|
import { ColumnDef } from '.';
|
|
5
5
|
import { TypeRatingFlag } from '.';
|
|
6
|
-
import {
|
|
6
|
+
import { AirplaneValidationFlag } from '.';
|
|
7
|
+
import { Engine } from '.';
|
|
7
8
|
import { Fuel } from '.';
|
|
8
9
|
import { BaseEntityEx } from '.';
|
|
9
|
-
import { Magneto } from '.';
|
|
10
10
|
export declare class Airplane extends BaseEntityEx {
|
|
11
11
|
name: string;
|
|
12
12
|
description: string;
|
|
@@ -1,16 +1,16 @@
|
|
|
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 '.';
|
|
6
|
-
import { Maintenance } from '.';
|
|
3
|
+
import { Airplane } from '.';
|
|
7
4
|
import { AirplaneStatusCode } from '.';
|
|
8
5
|
import { StringKeyValue } from '.';
|
|
9
6
|
import { FlightPurposeCode } from '.';
|
|
10
|
-
import { FlightTypeCode } from '.';
|
|
11
|
-
import { FlightStateCode } from '.';
|
|
12
|
-
import { Airplane } from '.';
|
|
13
7
|
import { Document } from '.';
|
|
8
|
+
import { StatusCode } from '.';
|
|
9
|
+
import { Maintenance } from '.';
|
|
10
|
+
import { FlightStatusCode } from '.';
|
|
11
|
+
import { FlightStateCode } from '.';
|
|
12
|
+
import { Flight } from '.';
|
|
13
|
+
import { FlightTypeCode } from '.';
|
|
14
14
|
import { MaintenanceActionCode } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
package/lib/Booking.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { BookingTypeFlag } from '.';
|
|
4
2
|
import { BookingStatusCode } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } 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 '.';
|
|
1
3
|
import { FlightStatusCode } from '.';
|
|
2
4
|
import { BaseEntityEx } from '.';
|
|
3
5
|
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;
|
package/lib/BookingSlots.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { BookingSlot } from '.';
|
|
4
3
|
import { BookingSlots } from '.';
|
|
5
4
|
import { BookingSlotsSet } from '.';
|
|
5
|
+
import { BookingSlot } 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
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Booking } from '.';
|
|
3
4
|
import { BookingStatusCode } from '.';
|
|
4
5
|
import { TimeSeries } from '.';
|
|
5
6
|
import { BookingPlan } from '.';
|
|
6
|
-
import { Booking } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class BookingsEndPoint {
|
|
9
9
|
private config;
|
package/lib/Campaign.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { CampaignTypeCode } from '.';
|
|
2
|
-
import { CampaignStatusCode } from '.';
|
|
3
1
|
import { CurrencyCode } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
5
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { CampaignTypeCode } from '.';
|
|
5
|
+
import { CampaignStatusCode } from '.';
|
|
6
6
|
export declare class Campaign extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
type: CampaignTypeCode;
|
package/lib/Certificate.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ValidationFlag } from '.';
|
|
2
1
|
import { StatusCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { ValidationFlag } from '.';
|
|
5
5
|
export declare class Certificate extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
type: ValidationFlag;
|
|
@@ -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 {
|
|
1
|
+
import { ColumnDef } from '.';
|
|
2
2
|
import { Address } from '.';
|
|
3
|
-
import { LicenseKindFlag } from '.';
|
|
4
|
-
import { MedicalCertClassCode } from '.';
|
|
5
3
|
import { TypeRatingFlag } from '.';
|
|
4
|
+
import { MedicalCertClassCode } from '.';
|
|
6
5
|
import { ValidationFlag } from '.';
|
|
6
|
+
import { AccountStatusCode } from '.';
|
|
7
|
+
import { LicenseKindFlag } from '.';
|
|
7
8
|
import { FlightCategoryCode } from '.';
|
|
8
9
|
import { BaseEntityEx } from '.';
|
|
9
|
-
import { ColumnDef } 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
|
-
import { FlightStateCode } from '.';
|
|
4
|
-
import { Document } from '.';
|
|
5
|
-
import { StatusCode } from '.';
|
|
6
|
-
import { FlightTypeCode } from '.';
|
|
7
3
|
import { FlightStatusCode } from '.';
|
|
8
|
-
import { FlightPurposeCode } from '.';
|
|
9
|
-
import { StringKeyValue } from '.';
|
|
10
|
-
import { Flight } from '.';
|
|
11
|
-
import { Contact } from '.';
|
|
12
4
|
import { Certificate } from '.';
|
|
5
|
+
import { FlightTypeCode } from '.';
|
|
6
|
+
import { Contact } from '.';
|
|
13
7
|
import { MessageConfirm } from '.';
|
|
8
|
+
import { FlightPurposeCode } from '.';
|
|
9
|
+
import { Flight } from '.';
|
|
10
|
+
import { Document } from '.';
|
|
11
|
+
import { StatusCode } from '.';
|
|
12
|
+
import { StringKeyValue } from '.';
|
|
13
|
+
import { FlightStateCode } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
|
16
16
|
private config;
|
package/lib/Credit.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { TransactionTypeCode } from '.';
|
|
2
1
|
import { CurrencyCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { TransactionTypeCode } from '.';
|
|
5
5
|
export declare class Credit extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { FlightPurposeCode } from '.';
|
|
2
|
-
import { FlightClassCode } from '.';
|
|
3
|
-
import { FlightStatusCode } from '.';
|
|
4
|
-
import { BillingStatusCode } from '.';
|
|
5
|
-
import { RiskAssessment } from '.';
|
|
6
1
|
import { BaseEntityEx } from '.';
|
|
7
2
|
import { FlightCategoryCode } from '.';
|
|
8
3
|
import { FlightTypeCode } from '.';
|
|
4
|
+
import { BillingStatusCode } from '.';
|
|
9
5
|
import { TOLData } from '.';
|
|
10
6
|
import { Lesson } from '.';
|
|
7
|
+
import { FlightPurposeCode } from '.';
|
|
8
|
+
import { FlightClassCode } from '.';
|
|
9
|
+
import { FlightStatusCode } from '.';
|
|
10
|
+
import { RiskAssessment } from '.';
|
|
11
11
|
import { ColumnDef } from '.';
|
|
12
12
|
export declare class Flight extends BaseEntityEx {
|
|
13
13
|
name: string;
|
package/lib/FlightBilling.d.ts
CHANGED
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { FlightTypeCode } from '.';
|
|
4
2
|
import { FlightStatusCode } from '.';
|
|
5
3
|
import { FlightStateCode } from '.';
|
|
6
4
|
import { FlightPurposeCode } from '.';
|
|
7
5
|
import { TOLData } from '.';
|
|
6
|
+
import { BaseEntityEx } from '.';
|
|
7
|
+
import { ColumnDef } 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
1
|
import { PilotQualificationsRisks } from '.';
|
|
2
|
-
import { DepartureRisks } from '.';
|
|
3
|
-
import { DestinationRisks } from '.';
|
|
4
2
|
import { TripRisks } from '.';
|
|
5
3
|
import { WeatherRisks } from '.';
|
|
6
|
-
import { SpecialRisks } from '.';
|
|
7
|
-
import { ColumnDef } from '.';
|
|
8
4
|
import { CrewDutyDayRisks } from '.';
|
|
5
|
+
import { DepartureRisks } from '.';
|
|
6
|
+
import { DestinationRisks } from '.';
|
|
7
|
+
import { SpecialRisks } from '.';
|
|
9
8
|
import { Mitigation } from '.';
|
|
10
9
|
import { BaseEntityEx } 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 { PreFlightInfo } from '.';
|
|
4
3
|
import { AnyKeyValue } from '.';
|
|
5
|
-
import { FlightPurposeCode } from '.';
|
|
6
|
-
import { TimeSeries } from '.';
|
|
7
|
-
import { FlightPlan } from '.';
|
|
8
|
-
import { Flight } from '.';
|
|
9
|
-
import { Contact } from '.';
|
|
10
4
|
import { FlightTicket } from '.';
|
|
5
|
+
import { FlightTypeCode } from '.';
|
|
6
|
+
import { BillingStatusCode } from '.';
|
|
7
|
+
import { PreFlightInfo } from '.';
|
|
8
|
+
import { FlightPlan } from '.';
|
|
11
9
|
import { PostFlightInfo } from '.';
|
|
10
|
+
import { Flight } from '.';
|
|
11
|
+
import { TimeSeries } from '.';
|
|
12
12
|
import { FlightStatusCode } from '.';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
13
|
+
import { FlightPurposeCode } from '.';
|
|
14
|
+
import { Contact } 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/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/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/MessageConfirm.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { ConfirmStatusCode } from '.';
|
|
2
3
|
import { MessageTypeCode } from '.';
|
|
3
4
|
import { PriorityCode } from '.';
|
|
4
5
|
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
6
|
export declare class MessageConfirm extends BaseEntityEx {
|
|
7
7
|
messageId: string;
|
|
8
8
|
contactId: 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;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import { InstructionTypeCode } from '.';
|
|
5
|
-
import { FlightStatusCode } from '.';
|
|
6
|
-
import { Flight } from '.';
|
|
7
|
-
import { FlightTypeCode } from '.';
|
|
3
|
+
import { PostFlightInfo } from '.';
|
|
8
4
|
import { Syllabus } from '.';
|
|
9
5
|
import { PreFlightInfo } from '.';
|
|
10
|
-
import {
|
|
6
|
+
import { Flight } from '.';
|
|
7
|
+
import { FlightTypeCode } from '.';
|
|
8
|
+
import { FlightStatusCode } from '.';
|
|
9
|
+
import { FlightPlan } from '.';
|
|
10
|
+
import { InstructionTypeCode } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class MyFlightsEndPoint {
|
|
13
13
|
private config;
|
package/lib/PostFlightInfo.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { FlightTypeCode } from '.';
|
|
1
2
|
import { AssessmentCode } from '.';
|
|
2
3
|
import { FlightPurposeCode } from '.';
|
|
3
|
-
import { FlightTypeCode } 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/Price.d.ts
CHANGED
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;
|
package/lib/SystemMessage.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { PriorityCode } from '.';
|
|
1
2
|
import { BaseEntityEx } from '.';
|
|
2
3
|
import { ColumnDef } from '.';
|
|
3
4
|
import { MessageTypeCode } from '.';
|
|
4
|
-
import { PriorityCode } from '.';
|
|
5
5
|
export declare class SystemMessage extends BaseEntityEx {
|
|
6
6
|
subject: 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 { MessageConfirm } from '.';
|
|
3
4
|
import { SystemMessage } from '.';
|
|
4
5
|
import { MessageTypeCode } from '.';
|
|
5
|
-
import { MessageConfirm } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SystemMessagesEndPoint {
|
|
8
8
|
private config;
|
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/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 { UserStatusCode } from '.';
|
|
3
4
|
import { StringKeyValue } from '.';
|
|
4
5
|
import { User } from '.';
|
|
5
6
|
import { UserTypeCode } from '.';
|
|
6
|
-
import { UserStatusCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class UsersEndPoint {
|
|
9
9
|
private config;
|