@aya-flights/ngx-goox-lib 2.19.139 → 2.19.141
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 +4955 -4933
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +7 -7
- package/lib/Airplane.d.ts +6 -6
- package/lib/AirplanesEndPoint.d.ts +7 -7
- package/lib/BookingPlan.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/CertificatesFilter.d.ts +1 -1
- package/lib/Contact.d.ts +2 -2
- package/lib/ContactsEndPoint.d.ts +6 -6
- package/lib/Credit.d.ts +2 -2
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +6 -6
- package/lib/FlightPassenger.d.ts +1 -1
- package/lib/FlightPlan.d.ts +2 -2
- package/lib/FlightRisk.d.ts +4 -4
- package/lib/FlightsEndPoint.d.ts +7 -7
- package/lib/FlightsFilter.d.ts +1 -1
- 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 +1 -1
- package/lib/MaintenancesEndPoint.d.ts +1 -1
- package/lib/MaintenancesFilter.d.ts +1 -1
- package/lib/MessageConfirmsEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +3 -3
- package/lib/MyFlightsEndPoint.d.ts +3 -3
- package/lib/MyStudentsEndPoint.d.ts +13 -0
- package/lib/PostFlightInfo.d.ts +2 -2
- package/lib/Price.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +1 -1
- package/lib/Syllabus.d.ts +1 -1
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/SystemMessage.d.ts +2 -2
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/TokenData.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 +115 -115
- package/lib/services.export.d.ts +20 -20
- package/package.json +1 -1
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { StringKeyValue } from '.';
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
5
|
+
import { Flight } from '.';
|
|
3
6
|
import { AccountTypeCode } from '.';
|
|
7
|
+
import { FlightStateCode } from '.';
|
|
8
|
+
import { AccountStatusCode } from '.';
|
|
9
|
+
import { Credit } from '.';
|
|
4
10
|
import { FlightTypeCode } from '.';
|
|
5
|
-
import {
|
|
11
|
+
import { FlightPurposeCode } from '.';
|
|
6
12
|
import { Document } from '.';
|
|
7
|
-
import { Credit } from '.';
|
|
8
13
|
import { Account } from '.';
|
|
9
|
-
import { FlightPurposeCode } from '.';
|
|
10
|
-
import { StringKeyValue } from '.';
|
|
11
|
-
import { AccountStatusCode } from '.';
|
|
12
|
-
import { FlightStateCode } from '.';
|
|
13
|
-
import { Flight } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class AccountsEndPoint {
|
|
16
16
|
private config;
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
+
import { Engine } from '.';
|
|
2
|
+
import { Magneto } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
1
5
|
import { TypeRatingFlag } from '.';
|
|
2
6
|
import { AirplaneStatusCode } from '.';
|
|
3
|
-
import { Fuel } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
|
-
import { WBConfig } from '.';
|
|
6
|
-
import { BaseEntityEx } from '.';
|
|
7
7
|
import { AirplaneValidationFlag } from '.';
|
|
8
|
-
import { Engine } from '.';
|
|
9
|
-
import { Magneto } from '.';
|
|
10
8
|
import { Propeller } from '.';
|
|
9
|
+
import { Fuel } from '.';
|
|
10
|
+
import { WBConfig } from '.';
|
|
11
11
|
export declare class Airplane extends BaseEntityEx {
|
|
12
12
|
name: string;
|
|
13
13
|
description: string;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Document } from '.';
|
|
4
|
-
import { Maintenance } from '.';
|
|
5
3
|
import { FlightTypeCode } from '.';
|
|
6
|
-
import {
|
|
4
|
+
import { Document } from '.';
|
|
5
|
+
import { Airplane } from '.';
|
|
6
|
+
import { StringKeyValue } from '.';
|
|
7
7
|
import { FlightPurposeCode } from '.';
|
|
8
8
|
import { Flight } from '.';
|
|
9
|
-
import { AirplaneStatusCode } from '.';
|
|
10
|
-
import { StringKeyValue } from '.';
|
|
11
|
-
import { FlightStateCode } from '.';
|
|
12
|
-
import { Airplane } from '.';
|
|
13
9
|
import { MaintenanceActionCode } from '.';
|
|
10
|
+
import { Maintenance } from '.';
|
|
11
|
+
import { FlightStateCode } from '.';
|
|
12
|
+
import { AirplaneStatusCode } from '.';
|
|
13
|
+
import { FlightStatusCode } from '.';
|
|
14
14
|
import { StatusCode } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
package/lib/BookingPlan.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
1
2
|
import { ColumnDef } from '.';
|
|
2
3
|
import { BookingTypeFlag } from '.';
|
|
3
4
|
import { FlightPurposeCode } from '.';
|
|
4
5
|
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 { 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;
|
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 { ColumnDef } from '.';
|
|
2
1
|
import { ValidationFlag } from '.';
|
|
3
2
|
import { StatusCode } from '.';
|
|
4
3
|
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,10 +1,10 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
|
+
import { Address } from '.';
|
|
1
3
|
import { LicenseKindFlag } from '.';
|
|
2
4
|
import { MedicalCertClassCode } from '.';
|
|
3
5
|
import { ValidationFlag } from '.';
|
|
4
6
|
import { FlightCategoryCode } from '.';
|
|
5
|
-
import { BaseEntityEx } from '.';
|
|
6
7
|
import { AccountStatusCode } from '.';
|
|
7
|
-
import { Address } from '.';
|
|
8
8
|
import { TypeRatingFlag } from '.';
|
|
9
9
|
import { ColumnDef } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Contact } from '.';
|
|
3
4
|
import { StringKeyValue } from '.';
|
|
4
|
-
import { MessageConfirm } from '.';
|
|
5
|
-
import { Document } from '.';
|
|
6
|
-
import { FlightStatusCode } from '.';
|
|
7
5
|
import { FlightStateCode } from '.';
|
|
8
|
-
import {
|
|
6
|
+
import { Flight } from '.';
|
|
9
7
|
import { StatusCode } from '.';
|
|
10
8
|
import { Certificate } from '.';
|
|
11
9
|
import { FlightTypeCode } from '.';
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
10
|
+
import { MessageConfirm } from '.';
|
|
11
|
+
import { FlightPurposeCode } from '.';
|
|
12
|
+
import { Document } from '.';
|
|
13
|
+
import { FlightStatusCode } 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 { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { TransactionTypeCode } from '.';
|
|
4
2
|
import { CurrencyCode } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Credit extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
package/lib/Document.d.ts
CHANGED
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
+
import { FlightPurposeCode } from '.';
|
|
1
2
|
import { FlightCategoryCode } from '.';
|
|
2
|
-
import { FlightTypeCode } from '.';
|
|
3
|
-
import { TOLData } from '.';
|
|
4
3
|
import { RiskAssessment } from '.';
|
|
5
|
-
import {
|
|
4
|
+
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
|
+
import { Lesson } from '.';
|
|
6
7
|
import { FlightClassCode } from '.';
|
|
8
|
+
import { FlightTypeCode } from '.';
|
|
7
9
|
import { FlightStatusCode } from '.';
|
|
8
10
|
import { BillingStatusCode } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import { BaseEntityEx } from '.';
|
|
11
|
-
import { ColumnDef } from '.';
|
|
11
|
+
import { TOLData } from '.';
|
|
12
12
|
export declare class Flight extends BaseEntityEx {
|
|
13
13
|
name: string;
|
|
14
14
|
description: string;
|
package/lib/FlightPassenger.d.ts
CHANGED
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { FlightTypeCode } from '.';
|
|
2
|
-
import { FlightStatusCode } from '.';
|
|
3
1
|
import { FlightStateCode } from '.';
|
|
4
2
|
import { FlightPurposeCode } from '.';
|
|
5
3
|
import { TOLData } from '.';
|
|
6
4
|
import { BaseEntityEx } from '.';
|
|
7
5
|
import { ColumnDef } from '.';
|
|
6
|
+
import { FlightTypeCode } from '.';
|
|
7
|
+
import { FlightStatusCode } from '.';
|
|
8
8
|
export declare class FlightPlan extends BaseEntityEx {
|
|
9
9
|
name: string;
|
|
10
10
|
description: string;
|
package/lib/FlightRisk.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
+
import { SpecialRisks } from '.';
|
|
1
2
|
import { Mitigation } from '.';
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
3
3
|
import { ColumnDef } from '.';
|
|
4
4
|
import { PilotQualificationsRisks } from '.';
|
|
5
|
-
import {
|
|
5
|
+
import { DepartureRisks } from '.';
|
|
6
6
|
import { DestinationRisks } from '.';
|
|
7
|
+
import { BaseEntityEx } from '.';
|
|
8
|
+
import { CrewDutyDayRisks } from '.';
|
|
7
9
|
import { TripRisks } from '.';
|
|
8
10
|
import { WeatherRisks } from '.';
|
|
9
|
-
import { CrewDutyDayRisks } from '.';
|
|
10
|
-
import { DepartureRisks } 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 { PostFlightInfo } from '.';
|
|
4
|
+
import { FlightPlan } from '.';
|
|
5
|
+
import { AnyKeyValue } from '.';
|
|
6
|
+
import { FlightTypeCode } from '.';
|
|
7
|
+
import { FlightStatusCode } from '.';
|
|
8
|
+
import { FlightPurposeCode } from '.';
|
|
3
9
|
import { PreFlightInfo } from '.';
|
|
4
10
|
import { Flight } from '.';
|
|
5
|
-
import { FlightPurposeCode } from '.';
|
|
6
|
-
import { Contact } from '.';
|
|
7
|
-
import { FlightStatusCode } from '.';
|
|
8
|
-
import { FlightPlan } from '.';
|
|
9
11
|
import { BillingStatusCode } from '.';
|
|
10
12
|
import { TimeSeries } from '.';
|
|
13
|
+
import { Contact } from '.';
|
|
11
14
|
import { FlightTicket } from '.';
|
|
12
|
-
import { AnyKeyValue } from '.';
|
|
13
|
-
import { FlightTypeCode } from '.';
|
|
14
|
-
import { PostFlightInfo } 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 '.';
|
|
1
2
|
import { FlightPurposeCode } from '.';
|
|
2
3
|
import { TimeFrame } from '.';
|
|
3
4
|
import { FlightTypeCode } from '.';
|
|
4
5
|
import { FlightStatusCode } from '.';
|
|
5
|
-
import { BillingStatusCode } 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 { Address } from '.';
|
|
2
|
-
import { LeadStatusCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { Address } from '.';
|
|
4
|
+
import { LeadStatusCode } 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 { Lead } from '.';
|
|
4
3
|
import { LeadStatusCode } from '.';
|
|
5
4
|
import { TimeSeries } from '.';
|
|
6
5
|
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,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { StatusCode } from '.';
|
|
3
4
|
import { Maintenance } from '.';
|
|
4
5
|
import { MaintenanceActionCode } from '.';
|
|
5
|
-
import { StatusCode } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class MaintenancesEndPoint {
|
|
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 { MessageConfirm } from '.';
|
|
3
4
|
import { MessageTypeCode } from '.';
|
|
4
5
|
import { ConfirmStatusCode } from '.';
|
|
5
6
|
import { PriorityCode } from '.';
|
|
6
|
-
import { MessageConfirm } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MessageConfirmsEndPoint {
|
|
9
9
|
private config;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import { Airplane } from '.';
|
|
3
|
+
import { Lookup } from '.';
|
|
5
4
|
import { Booking } from '.';
|
|
6
5
|
import { BookingStatusCode } from '.';
|
|
7
6
|
import { BookingTypeFlag } from '.';
|
|
8
|
-
import {
|
|
7
|
+
import { BookingSlot } from '.';
|
|
8
|
+
import { Airplane } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyBookingsEndPoint {
|
|
11
11
|
private config;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { PreFlightInfo } from '.';
|
|
3
4
|
import { InstructionTypeCode } from '.';
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
5
|
-
import { FlightPlan } from '.';
|
|
6
5
|
import { Syllabus } from '.';
|
|
7
|
-
import { PreFlightInfo } from '.';
|
|
8
6
|
import { PostFlightInfo } from '.';
|
|
9
7
|
import { Flight } from '.';
|
|
10
8
|
import { FlightTypeCode } from '.';
|
|
9
|
+
import { FlightStatusCode } from '.';
|
|
10
|
+
import { FlightPlan } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class MyFlightsEndPoint {
|
|
13
13
|
private config;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { Contact } from '.';
|
|
4
|
+
import { Flight } from '.';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class MyStudentsEndPoint {
|
|
6
7
|
private config;
|
|
@@ -15,6 +16,18 @@ export declare class MyStudentsEndPoint {
|
|
|
15
16
|
* List my students by query
|
|
16
17
|
*/
|
|
17
18
|
list(): import("rxjs").Observable<EntitiesResponse<Contact>>;
|
|
19
|
+
/**
|
|
20
|
+
* Find contact related flights for student sheet (all flights of type LESSON that the student is captain of first officer)
|
|
21
|
+
*/
|
|
22
|
+
getStudentSheet(id?: string, sort?: string): import("rxjs").Observable<EntitiesResponse<Flight>>;
|
|
23
|
+
/**
|
|
24
|
+
* Download student sheet as XLSX document
|
|
25
|
+
*/
|
|
26
|
+
downloadStudentSheetXlsx(id?: string): import("rxjs").Observable<import("@angular/common/module.d-CnjH8Dlt").HttpEvent<Blob>>;
|
|
27
|
+
/**
|
|
28
|
+
* Download student sheet as CSV document
|
|
29
|
+
*/
|
|
30
|
+
downloadStudentSheetCsv(id?: string): import("rxjs").Observable<import("@angular/common/module.d-CnjH8Dlt").HttpEvent<Blob>>;
|
|
18
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<MyStudentsEndPoint, never>;
|
|
19
32
|
static ɵprov: i0.ɵɵInjectableDeclaration<MyStudentsEndPoint>;
|
|
20
33
|
}
|
package/lib/PostFlightInfo.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { FlightPurposeCode } from '.';
|
|
2
|
-
import { FlightTypeCode } from '.';
|
|
3
1
|
import { FlightCategoryCode } from '.';
|
|
4
2
|
import { AssessmentCode } from '.';
|
|
3
|
+
import { FlightPurposeCode } from '.';
|
|
4
|
+
import { FlightTypeCode } from '.';
|
|
5
5
|
export declare class PostFlightInfo {
|
|
6
6
|
flightId: string;
|
|
7
7
|
flightNumber: number;
|
package/lib/Price.d.ts
CHANGED
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { PilotQualificationsRisks } from '.';
|
|
1
2
|
import { CrewDutyDayRisks } from '.';
|
|
2
3
|
import { DepartureRisks } from '.';
|
|
3
4
|
import { DestinationRisks } from '.';
|
|
@@ -5,7 +6,6 @@ import { TripRisks } from '.';
|
|
|
5
6
|
import { WeatherRisks } from '.';
|
|
6
7
|
import { SpecialRisks } from '.';
|
|
7
8
|
import { Mitigation } from '.';
|
|
8
|
-
import { PilotQualificationsRisks } 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 '.';
|
|
2
1
|
import { InstructionTypeCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
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 { InstructionTypeCode } from '.';
|
|
3
4
|
import { Syllabus } from '.';
|
|
4
5
|
import { FlightCategoryCode } from '.';
|
|
5
|
-
import { InstructionTypeCode } 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 { PriorityCode } from '.';
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
3
1
|
import { ColumnDef } from '.';
|
|
4
2
|
import { MessageTypeCode } from '.';
|
|
3
|
+
import { PriorityCode } from '.';
|
|
4
|
+
import { BaseEntityEx } 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/TokenData.d.ts
CHANGED
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { UserTypeCode } from '.';
|
|
4
2
|
import { UserRoleFlag } from '.';
|
|
5
3
|
import { UserStatusCode } from '.';
|
|
4
|
+
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 { User } from '.';
|
|
4
3
|
import { UserTypeCode } from '.';
|
|
5
4
|
import { UserStatusCode } from '.';
|
|
6
5
|
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;
|