@aya-flights/ngx-goox-lib 2.19.173 → 2.19.176
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 +5530 -5456
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +6 -6
- package/lib/Airplane.d.ts +5 -5
- package/lib/AirplanesEndPoint.d.ts +8 -8
- package/lib/Booking.d.ts +2 -2
- package/lib/BookingPlan.d.ts +1 -1
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +1 -1
- package/lib/Certificate.d.ts +2 -2
- 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 +5 -5
- package/lib/Credit.d.ts +1 -1
- package/lib/Document.d.ts +1 -1
- package/lib/DocumentsEndPoint.d.ts +1 -1
- package/lib/Flight.d.ts +6 -6
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +6 -6
- package/lib/FlightsEndPoint.d.ts +7 -7
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/Group.d.ts +2 -2
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/LeadsEndPoint.d.ts +4 -4
- package/lib/LogBookRecord.d.ts +1 -1
- package/lib/Lookup.d.ts +1 -1
- package/lib/Maintenance.d.ts +2 -2
- package/lib/MessageConfirmsEndPoint.d.ts +1 -1
- package/lib/Metar.d.ts +10 -0
- package/lib/MetarReport.d.ts +8 -0
- package/lib/MyBookingsEndPoint.d.ts +2 -2
- package/lib/MyFlightsEndPoint.d.ts +4 -4
- package/lib/MyInfoEndPoint.d.ts +10 -1
- package/lib/MyMessagesEndPoint.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +3 -3
- package/lib/StorageItem.d.ts +1 -1
- package/lib/Syllabus.d.ts +2 -2
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/TafReport.d.ts +8 -0
- package/lib/TransactionTypeCode.d.ts +1 -1
- package/lib/User.d.ts +1 -1
- package/lib/UserEndPoint.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +2 -2
- package/lib/UsersFilter.d.ts +1 -1
- package/lib/index.d.ts +122 -119
- package/lib/services.export.d.ts +26 -26
- 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 {
|
|
3
|
+
import { StringKeyValue } from '.';
|
|
4
4
|
import { FlightPurposeCode } from '.';
|
|
5
|
+
import { FlightStatusCode } from '.';
|
|
5
6
|
import { Document } from '.';
|
|
7
|
+
import { AccountStatusCode } from '.';
|
|
8
|
+
import { AccountTypeCode } from '.';
|
|
6
9
|
import { FlightTypeCode } from '.';
|
|
7
|
-
import {
|
|
8
|
-
import { StringKeyValue } from '.';
|
|
10
|
+
import { Account } from '.';
|
|
9
11
|
import { Flight } from '.';
|
|
10
|
-
import { Credit } from '.';
|
|
11
12
|
import { FlightStateCode } from '.';
|
|
12
|
-
import {
|
|
13
|
-
import { AccountStatusCode } from '.';
|
|
13
|
+
import { Credit } 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 { AirplaneValidationFlag } from '.';
|
|
2
|
-
import { Magneto } from '.';
|
|
3
|
-
import { WBConfig } from '.';
|
|
4
1
|
import { TypeRatingFlag } from '.';
|
|
2
|
+
import { AirplaneValidationFlag } from '.';
|
|
5
3
|
import { Engine } from '.';
|
|
6
|
-
import { Propeller } from '.';
|
|
7
4
|
import { Fuel } from '.';
|
|
8
|
-
import {
|
|
5
|
+
import { WBConfig } from '.';
|
|
9
6
|
import { ColumnDef } from '.';
|
|
10
7
|
import { AirplaneStatusCode } from '.';
|
|
8
|
+
import { Magneto } from '.';
|
|
9
|
+
import { Propeller } from '.';
|
|
10
|
+
import { BaseEntityEx } from '.';
|
|
11
11
|
export declare class Airplane extends BaseEntityEx {
|
|
12
12
|
name: string;
|
|
13
13
|
description: string;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Airplane } from '.';
|
|
4
|
-
import { AirplaneStatusCode } from '.';
|
|
5
|
-
import { StringKeyValue } from '.';
|
|
6
|
-
import { FlightTypeCode } from '.';
|
|
7
3
|
import { FlightPurposeCode } from '.';
|
|
8
|
-
import {
|
|
4
|
+
import { StatusCode } from '.';
|
|
5
|
+
import { AirplaneStatusCode } from '.';
|
|
6
|
+
import { Document } from '.';
|
|
9
7
|
import { MaintenanceActionCode } from '.';
|
|
8
|
+
import { FlightTypeCode } from '.';
|
|
10
9
|
import { FlightStatusCode } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
10
|
+
import { Maintenance } from '.';
|
|
11
|
+
import { Airplane } from '.';
|
|
12
|
+
import { StringKeyValue } from '.';
|
|
13
13
|
import { FlightStateCode } from '.';
|
|
14
|
-
import {
|
|
14
|
+
import { Flight } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
private config;
|
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 '.';
|
|
1
2
|
import { FlightPurposeCode } from '.';
|
|
2
3
|
import { FlightStatusCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
5
|
import { ColumnDef } from '.';
|
|
5
|
-
import { BookingTypeFlag } from '.';
|
|
6
6
|
export declare class BookingPlan extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
package/lib/BookingSlots.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 '.';
|
|
3
4
|
import { TimeSeries } from '.';
|
|
4
5
|
import { BookingPlan } from '.';
|
|
5
6
|
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 { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { ValidationFlag } from '.';
|
|
4
2
|
import { StatusCode } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } 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 { AccountStatusCode } from '.';
|
|
2
|
+
import { Address } from '.';
|
|
3
|
+
import { MedicalCertClassCode } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
1
5
|
import { TypeRatingFlag } from '.';
|
|
2
6
|
import { LicenseKindFlag } from '.';
|
|
3
|
-
import { MedicalCertClassCode } from '.';
|
|
4
7
|
import { ValidationFlag } from '.';
|
|
5
|
-
import { AccountStatusCode } from '.';
|
|
6
|
-
import { Address } 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 {
|
|
3
|
+
import { Flight } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
4
5
|
import { FlightTypeCode } from '.';
|
|
5
6
|
import { FlightStateCode } from '.';
|
|
6
7
|
import { FlightPurposeCode } from '.';
|
|
7
|
-
import {
|
|
8
|
+
import { Document } from '.';
|
|
9
|
+
import { Contact } from '.';
|
|
8
10
|
import { StatusCode } from '.';
|
|
9
|
-
import { StringKeyValue } from '.';
|
|
10
11
|
import { Certificate } from '.';
|
|
11
|
-
import {
|
|
12
|
+
import { FlightStatusCode } from '.';
|
|
12
13
|
import { MessageConfirm } from '.';
|
|
13
|
-
import { Contact } 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 { ColumnDef } from '.';
|
|
1
2
|
import { TransactionTypeCode } from '.';
|
|
2
3
|
import { CurrencyCode } from '.';
|
|
3
4
|
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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Document } from '.';
|
|
4
3
|
import { StorageItem } from '.';
|
|
4
|
+
import { Document } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class DocumentsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { FlightStatusCode } from '.';
|
|
2
|
-
import { BillingStatusCode } from '.';
|
|
3
|
-
import { TOLData } from '.';
|
|
4
|
-
import { Lesson } from '.';
|
|
5
|
-
import { RiskAssessment } from '.';
|
|
6
1
|
import { ColumnDef } from '.';
|
|
7
|
-
import { FlightTypeCode } from '.';
|
|
8
2
|
import { FlightClassCode } from '.';
|
|
9
3
|
import { FlightCategoryCode } from '.';
|
|
4
|
+
import { TOLData } from '.';
|
|
5
|
+
import { BillingStatusCode } from '.';
|
|
6
|
+
import { Lesson } from '.';
|
|
7
|
+
import { RiskAssessment } from '.';
|
|
10
8
|
import { BaseEntityEx } from '.';
|
|
11
9
|
import { FlightPurposeCode } from '.';
|
|
10
|
+
import { FlightTypeCode } from '.';
|
|
11
|
+
import { FlightStatusCode } 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 { TOLData } from '.';
|
|
2
|
+
import { BaseEntityEx } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
1
4
|
import { FlightTypeCode } from '.';
|
|
2
5
|
import { FlightStatusCode } from '.';
|
|
3
6
|
import { FlightStateCode } from '.';
|
|
4
7
|
import { FlightPurposeCode } from '.';
|
|
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
|
-
import { CrewDutyDayRisks } from '.';
|
|
2
|
-
import { DepartureRisks } from '.';
|
|
3
1
|
import { TripRisks } from '.';
|
|
4
|
-
import { WeatherRisks } from '.';
|
|
5
2
|
import { SpecialRisks } from '.';
|
|
6
|
-
import { ColumnDef } from '.';
|
|
7
|
-
import { PilotQualificationsRisks } from '.';
|
|
8
|
-
import { DestinationRisks } from '.';
|
|
9
3
|
import { Mitigation } from '.';
|
|
4
|
+
import { DepartureRisks } from '.';
|
|
5
|
+
import { DestinationRisks } from '.';
|
|
6
|
+
import { WeatherRisks } from '.';
|
|
10
7
|
import { BaseEntityEx } from '.';
|
|
8
|
+
import { ColumnDef } from '.';
|
|
9
|
+
import { PilotQualificationsRisks } from '.';
|
|
10
|
+
import { CrewDutyDayRisks } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/FlightsEndPoint.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { BillingStatusCode } from '.';
|
|
4
|
+
import { Point } from '.';
|
|
5
|
+
import { Contact } from '.';
|
|
3
6
|
import { FlightTicket } from '.';
|
|
4
|
-
import { AnyKeyValue } from '.';
|
|
5
7
|
import { FlightTypeCode } from '.';
|
|
6
|
-
import {
|
|
8
|
+
import { FlightStatusCode } from '.';
|
|
7
9
|
import { TimeSeries } from '.';
|
|
8
|
-
import {
|
|
9
|
-
import { Contact } from '.';
|
|
10
|
+
import { PreFlightInfo } from '.';
|
|
10
11
|
import { PostFlightInfo } from '.';
|
|
12
|
+
import { AnyKeyValue } from '.';
|
|
13
|
+
import { FlightPlan } from '.';
|
|
11
14
|
import { Flight } from '.';
|
|
12
|
-
import { FlightStatusCode } from '.';
|
|
13
15
|
import { FlightPurposeCode } from '.';
|
|
14
|
-
import { Point } from '.';
|
|
15
|
-
import { PreFlightInfo } from '.';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
export declare class FlightsEndPoint {
|
|
18
18
|
private config;
|
package/lib/FlightsFilter.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { TimeFrame } from '.';
|
|
2
|
-
import { FlightTypeCode } from '.';
|
|
3
1
|
import { FlightStatusCode } from '.';
|
|
4
2
|
import { BillingStatusCode } from '.';
|
|
5
3
|
import { FlightPurposeCode } from '.';
|
|
4
|
+
import { TimeFrame } from '.';
|
|
5
|
+
import { FlightTypeCode } from '.';
|
|
6
6
|
export declare class FlightsFilter {
|
|
7
7
|
search: string;
|
|
8
8
|
period: TimeFrame;
|
package/lib/Group.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { Permission } from '.';
|
|
4
2
|
import { StringKeyValue } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } 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/LeadsEndPoint.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { LeadAction } from '.';
|
|
4
3
|
import { Booking } from '.';
|
|
4
|
+
import { Point } from '.';
|
|
5
5
|
import { IntEnumValue } from '.';
|
|
6
6
|
import { IntKeyValue } from '.';
|
|
7
|
-
import { TimeSeries } from '.';
|
|
8
|
-
import { Point } from '.';
|
|
9
|
-
import { Lead } from '.';
|
|
10
7
|
import { LeadStatusCode } from '.';
|
|
8
|
+
import { Lead } from '.';
|
|
9
|
+
import { TimeSeries } from '.';
|
|
10
|
+
import { LeadAction } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class LeadsEndPoint {
|
|
13
13
|
private config;
|
package/lib/LogBookRecord.d.ts
CHANGED
package/lib/Lookup.d.ts
CHANGED
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 { MessageConfirm } from '.';
|
|
4
3
|
import { MessageTypeCode } from '.';
|
|
5
4
|
import { ConfirmStatusCode } from '.';
|
|
6
5
|
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;
|
package/lib/Metar.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { MetarReport } from '.';
|
|
2
|
+
import { TafReport } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
|
+
export declare class Metar extends BaseEntityEx {
|
|
6
|
+
metarReports: MetarReport[];
|
|
7
|
+
tafReports: TafReport[];
|
|
8
|
+
get(field: string): any;
|
|
9
|
+
}
|
|
10
|
+
export declare function GetMetarColumnsDef(): ColumnDef[];
|
|
@@ -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 { Lookup } from '.';
|
|
3
5
|
import { BookingStatusCode } from '.';
|
|
4
6
|
import { BookingTypeFlag } from '.';
|
|
5
7
|
import { BookingSlot } from '.';
|
|
6
|
-
import { Booking } from '.';
|
|
7
|
-
import { Lookup } from '.';
|
|
8
8
|
import { Airplane } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyBookingsEndPoint {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { FlightTypeCode } from '.';
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
5
|
+
import { FlightPlan } from '.';
|
|
3
6
|
import { Syllabus } from '.';
|
|
4
7
|
import { PreFlightInfo } from '.';
|
|
5
8
|
import { Flight } from '.';
|
|
6
|
-
import { FlightStatusCode } from '.';
|
|
7
|
-
import { InstructionTypeCode } from '.';
|
|
8
|
-
import { FlightPlan } from '.';
|
|
9
9
|
import { PostFlightInfo } from '.';
|
|
10
|
-
import {
|
|
10
|
+
import { InstructionTypeCode } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class MyFlightsEndPoint {
|
|
13
13
|
private config;
|
package/lib/MyInfoEndPoint.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { RestUtil, EntitiesResponse } from '../utils';
|
|
1
|
+
import { RestUtil, EntityResponse, EntitiesResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { StorageItem } from '.';
|
|
4
|
+
import { Metar } from '.';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class MyInfoEndPoint {
|
|
6
7
|
private config;
|
|
@@ -11,6 +12,14 @@ export declare class MyInfoEndPoint {
|
|
|
11
12
|
* Get a list of files and folders from the folder in Google Drive defined as Library
|
|
12
13
|
*/
|
|
13
14
|
broseLibrary(folder?: string): import("rxjs").Observable<EntitiesResponse<StorageItem>>;
|
|
15
|
+
/**
|
|
16
|
+
* Get a list of files and folders from the folder in Google Drive defined as Library
|
|
17
|
+
*/
|
|
18
|
+
downloadLibraryFile(id?: string): import("rxjs").Observable<import("@angular/common/module.d-CnjH8Dlt").HttpEvent<Blob>>;
|
|
19
|
+
/**
|
|
20
|
+
* Get a list of METAR reports
|
|
21
|
+
*/
|
|
22
|
+
metar(): import("rxjs").Observable<EntityResponse<Metar>>;
|
|
14
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<MyInfoEndPoint, never>;
|
|
15
24
|
static ɵprov: i0.ɵɵInjectableDeclaration<MyInfoEndPoint>;
|
|
16
25
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { SystemMessage } from '.';
|
|
4
3
|
import { MessageConfirm } from '.';
|
|
4
|
+
import { SystemMessage } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class MyMessagesEndPoint {
|
|
7
7
|
private config;
|
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { WeatherRisks } from '.';
|
|
2
|
-
import { SpecialRisks } from '.';
|
|
3
|
-
import { Mitigation } from '.';
|
|
4
1
|
import { PilotQualificationsRisks } from '.';
|
|
5
2
|
import { CrewDutyDayRisks } from '.';
|
|
6
3
|
import { DepartureRisks } from '.';
|
|
7
4
|
import { DestinationRisks } from '.';
|
|
8
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/StorageItem.d.ts
CHANGED
package/lib/Syllabus.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { FlightCategoryCode } from '.';
|
|
4
2
|
import { InstructionTypeCode } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } 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 '.';
|
|
4
3
|
import { Syllabus } from '.';
|
|
5
4
|
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;
|
|
@@ -7,7 +7,7 @@ export declare enum TransactionTypeCode {
|
|
|
7
7
|
PAYMENT = 4,
|
|
8
8
|
BONUS = 5,
|
|
9
9
|
REFUND = 6,
|
|
10
|
-
RESET =
|
|
10
|
+
RESET = 7
|
|
11
11
|
}
|
|
12
12
|
export declare function GetTransactionTypeCodes(): Tuple<TransactionTypeCode, string>[];
|
|
13
13
|
export declare function MapTransactionTypeCodes(): Map<TransactionTypeCode, string>;
|
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { UserTypeCode } from '.';
|
|
3
2
|
import { UserRoleFlag } from '.';
|
|
4
3
|
import { UserStatusCode } from '.';
|
|
5
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/UserEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { LoginParams } from '.';
|
|
4
3
|
import { User } from '.';
|
|
4
|
+
import { LoginParams } 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
|
-
import { User } from '.';
|
|
5
3
|
import { UserTypeCode } from '.';
|
|
6
4
|
import { UserStatusCode } from '.';
|
|
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;
|