@aya-flights/ngx-goox-lib 2.19.193 → 2.19.195
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 +6029 -6008
- 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 +8 -8
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/BookingPlan.d.ts +1 -1
- package/lib/BookingSlot.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/Campaign.d.ts +2 -2
- package/lib/Certificate.d.ts +1 -1
- package/lib/Contact.d.ts +5 -5
- package/lib/ContactsEndPoint.d.ts +11 -8
- package/lib/ContactsFilter.d.ts +7 -1
- package/lib/CreditsFilter.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/FlightTicket.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +9 -9
- package/lib/Group.d.ts +1 -1
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/Lead.d.ts +2 -2
- package/lib/LeadsEndPoint.d.ts +5 -5
- package/lib/Lesson.d.ts +1 -1
- package/lib/Lookup.d.ts +1 -1
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/MaintenancesEndPoint.d.ts +1 -1
- package/lib/MessageConfirm.d.ts +2 -2
- package/lib/MessageConfirmsEndPoint.d.ts +1 -1
- package/lib/Metar.d.ts +1 -1
- package/lib/MyAuthEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +3 -3
- package/lib/MyCertificatesEndPoint.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +2 -2
- package/lib/MyInfoEndPoint.d.ts +1 -1
- package/lib/Notification.d.ts +2 -2
- package/lib/Permission.d.ts +1 -1
- package/lib/PostFlightInfo.d.ts +1 -1
- package/lib/Price.d.ts +1 -1
- package/lib/PriceListEndPoint.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +3 -3
- package/lib/StorageItem.d.ts +1 -1
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/index.d.ts +129 -129
- package/lib/services.export.d.ts +25 -25
- 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 {
|
|
4
|
-
import {
|
|
5
|
-
import { Credit } from '.';
|
|
3
|
+
import { AccountTypeCode } from '.';
|
|
4
|
+
import { Flight } from '.';
|
|
6
5
|
import { Document } from '.';
|
|
6
|
+
import { Credit } from '.';
|
|
7
7
|
import { Account } from '.';
|
|
8
|
-
import {
|
|
9
|
-
import { FlightStatusCode } from '.';
|
|
10
|
-
import { FlightStateCode } from '.';
|
|
8
|
+
import { AccountStatusCode } from '.';
|
|
11
9
|
import { FlightTypeCode } from '.';
|
|
12
|
-
import {
|
|
10
|
+
import { FlightStateCode } from '.';
|
|
11
|
+
import { FlightPurposeCode } from '.';
|
|
13
12
|
import { StringKeyValue } from '.';
|
|
13
|
+
import { FlightStatusCode } 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 { AirplaneStatusCode } from '.';
|
|
2
|
-
import { Engine } from '.';
|
|
3
|
-
import { Propeller } from '.';
|
|
4
|
-
import { Fuel } from '.';
|
|
5
1
|
import { TypeRatingFlag } from '.';
|
|
6
2
|
import { AirplaneValidationFlag } from '.';
|
|
7
|
-
import {
|
|
3
|
+
import { Engine } from '.';
|
|
4
|
+
import { Propeller } from '.';
|
|
8
5
|
import { WBConfig } from '.';
|
|
9
|
-
import { BaseEntityEx } from '.';
|
|
10
6
|
import { ColumnDef } from '.';
|
|
7
|
+
import { AirplaneStatusCode } from '.';
|
|
8
|
+
import { Magneto } from '.';
|
|
9
|
+
import { Fuel } 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 {
|
|
4
|
-
import {
|
|
3
|
+
import { Airplane } from '.';
|
|
4
|
+
import { AirplaneStatusCode } from '.';
|
|
5
|
+
import { StringKeyValue } from '.';
|
|
6
|
+
import { FlightTypeCode } from '.';
|
|
5
7
|
import { FlightStatusCode } from '.';
|
|
6
8
|
import { FlightPurposeCode } from '.';
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
+
import { Maintenance } from '.';
|
|
10
|
+
import { FlightStateCode } from '.';
|
|
11
|
+
import { Document } from '.';
|
|
9
12
|
import { StatusCode } from '.';
|
|
10
13
|
import { MaintenanceActionCode } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import { FlightTypeCode } from '.';
|
|
13
|
-
import { AirplaneStatusCode } from '.';
|
|
14
|
-
import { StringKeyValue } from '.';
|
|
14
|
+
import { Flight } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
private config;
|
|
@@ -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;
|
package/lib/BookingPlan.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { BookingTypeFlag } from '.';
|
|
2
3
|
import { FlightPurposeCode } from '.';
|
|
3
4
|
import { FlightStatusCode } from '.';
|
|
4
5
|
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
6
|
export declare class BookingPlan extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
package/lib/BookingSlot.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/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;
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { TypeRatingFlag } from '.';
|
|
2
|
-
import { ValidationFlag } from '.';
|
|
3
|
-
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
1
|
import { AccountStatusCode } from '.';
|
|
6
2
|
import { Address } from '.';
|
|
7
|
-
import {
|
|
3
|
+
import { TypeRatingFlag } from '.';
|
|
8
4
|
import { LicenseKindFlag } from '.';
|
|
5
|
+
import { ValidationFlag } from '.';
|
|
6
|
+
import { ColumnDef } from '.';
|
|
9
7
|
import { MedicalCertClassCode } from '.';
|
|
8
|
+
import { FlightCategoryCode } from '.';
|
|
9
|
+
import { BaseEntityEx } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
11
11
|
accountId: string;
|
|
12
12
|
name: string;
|
|
@@ -1,16 +1,19 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
3
|
+
import { Document } from '.';
|
|
4
|
+
import { StatusCode } from '.';
|
|
5
|
+
import { StringKeyValue } from '.';
|
|
5
6
|
import { Flight } from '.';
|
|
7
|
+
import { MessageConfirm } from '.';
|
|
8
|
+
import { TypeRatingFlag } from '.';
|
|
9
|
+
import { LicenseKindFlag } from '.';
|
|
10
|
+
import { Certificate } from '.';
|
|
11
|
+
import { FlightStateCode } from '.';
|
|
6
12
|
import { Contact } from '.';
|
|
7
13
|
import { FlightTypeCode } from '.';
|
|
14
|
+
import { FlightPurposeCode } from '.';
|
|
15
|
+
import { FlightCategoryCode } from '.';
|
|
8
16
|
import { FlightStatusCode } from '.';
|
|
9
|
-
import { FlightStateCode } from '.';
|
|
10
|
-
import { StringKeyValue } from '.';
|
|
11
|
-
import { MessageConfirm } from '.';
|
|
12
|
-
import { StatusCode } from '.';
|
|
13
|
-
import { Document } from '.';
|
|
14
17
|
import * as i0 from "@angular/core";
|
|
15
18
|
export declare class ContactsEndPoint {
|
|
16
19
|
private config;
|
|
@@ -40,7 +43,7 @@ export declare class ContactsEndPoint {
|
|
|
40
43
|
/**
|
|
41
44
|
* Find contacts by query
|
|
42
45
|
*/
|
|
43
|
-
find(search?: string, status?: StatusCode[], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Contact>>;
|
|
46
|
+
find(search?: string, status?: StatusCode[], isPilot?: boolean, plan?: FlightCategoryCode[], typesRating?: TypeRatingFlag[], licenseKind?: LicenseKindFlag[], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Contact>>;
|
|
44
47
|
/**
|
|
45
48
|
* Lookup contacts ID->Name by filter
|
|
46
49
|
*/
|
package/lib/ContactsFilter.d.ts
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
import { StatusCode } from '.';
|
|
2
|
+
import { FlightCategoryCode } from '.';
|
|
3
|
+
import { TypeRatingFlag } from '.';
|
|
4
|
+
import { LicenseKindFlag } from '.';
|
|
2
5
|
export declare class ContactsFilter {
|
|
3
6
|
search: string;
|
|
4
7
|
status: StatusCode[];
|
|
5
8
|
isPilot: boolean;
|
|
9
|
+
plan: FlightCategoryCode[];
|
|
10
|
+
typesRating: TypeRatingFlag[];
|
|
11
|
+
licenseKinds: LicenseKindFlag[];
|
|
6
12
|
sort: string;
|
|
7
13
|
page: number;
|
|
8
14
|
size: number;
|
|
9
|
-
constructor(search?: string, status?: StatusCode[], isPilot?: boolean, sort?: string, page?: number, size?: number);
|
|
15
|
+
constructor(search?: string, status?: StatusCode[], isPilot?: boolean, plan?: FlightCategoryCode[], typesRating?: TypeRatingFlag[], licenseKinds?: LicenseKindFlag[], sort?: string, page?: number, size?: number);
|
|
10
16
|
}
|
package/lib/CreditsFilter.d.ts
CHANGED
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
+
import { BillingStatusCode } from '.';
|
|
1
2
|
import { TOLData } from '.';
|
|
2
|
-
import { RiskAssessment } from '.';
|
|
3
3
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { FlightPurposeCode } from '.';
|
|
5
|
-
import { FlightCategoryCode } from '.';
|
|
6
4
|
import { FlightTypeCode } from '.';
|
|
7
5
|
import { FlightStatusCode } from '.';
|
|
8
|
-
import { FlightClassCode } from '.';
|
|
9
|
-
import { BillingStatusCode } from '.';
|
|
10
6
|
import { Lesson } from '.';
|
|
7
|
+
import { RiskAssessment } from '.';
|
|
11
8
|
import { ColumnDef } from '.';
|
|
9
|
+
import { FlightPurposeCode } from '.';
|
|
10
|
+
import { FlightClassCode } from '.';
|
|
11
|
+
import { FlightCategoryCode } from '.';
|
|
12
12
|
export declare class Flight extends BaseEntityEx {
|
|
13
13
|
name: string;
|
|
14
14
|
description: string;
|
package/lib/FlightBilling.d.ts
CHANGED
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import { TOLData } from '.';
|
|
2
|
+
import { BaseEntityEx } from '.';
|
|
1
3
|
import { ColumnDef } from '.';
|
|
2
4
|
import { FlightTypeCode } from '.';
|
|
3
5
|
import { FlightStatusCode } from '.';
|
|
4
6
|
import { FlightStateCode } from '.';
|
|
5
7
|
import { FlightPurposeCode } from '.';
|
|
6
|
-
import { TOLData } from '.';
|
|
7
|
-
import { BaseEntityEx } 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 '.';
|
|
4
|
-
import { DestinationRisks } from '.';
|
|
5
|
-
import { SpecialRisks } from '.';
|
|
6
2
|
import { TripRisks } from '.';
|
|
7
3
|
import { WeatherRisks } from '.';
|
|
8
4
|
import { Mitigation } from '.';
|
|
9
5
|
import { BaseEntityEx } from '.';
|
|
10
6
|
import { ColumnDef } from '.';
|
|
7
|
+
import { PilotQualificationsRisks } from '.';
|
|
8
|
+
import { CrewDutyDayRisks } from '.';
|
|
9
|
+
import { DestinationRisks } from '.';
|
|
10
|
+
import { SpecialRisks } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/FlightTicket.d.ts
CHANGED
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 { TimeSeries } from '.';
|
|
4
|
-
import { Point } from '.';
|
|
5
3
|
import { FlightTicket } from '.';
|
|
6
|
-
import { Flight } from '.';
|
|
7
|
-
import { FlightPlan } from '.';
|
|
8
|
-
import { PostFlightInfo } from '.';
|
|
9
4
|
import { AnyKeyValue } from '.';
|
|
10
|
-
import { FlightTypeCode } from '.';
|
|
11
|
-
import { FlightStatusCode } from '.';
|
|
12
|
-
import { Contact } from '.';
|
|
13
|
-
import { PreFlightInfo } from '.';
|
|
14
5
|
import { BillingStatusCode } from '.';
|
|
15
6
|
import { FlightPurposeCode } from '.';
|
|
7
|
+
import { TimeSeries } from '.';
|
|
8
|
+
import { Contact } from '.';
|
|
9
|
+
import { FlightStatusCode } from '.';
|
|
10
|
+
import { FlightPlan } from '.';
|
|
11
|
+
import { Flight } from '.';
|
|
12
|
+
import { PreFlightInfo } from '.';
|
|
13
|
+
import { PostFlightInfo } from '.';
|
|
14
|
+
import { FlightTypeCode } from '.';
|
|
15
|
+
import { Point } from '.';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
export declare class FlightsEndPoint {
|
|
18
18
|
private config;
|
package/lib/Group.d.ts
CHANGED
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
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Address } from '.';
|
|
2
|
-
import { LeadStatusCode } from '.';
|
|
3
1
|
import { FollowUpAction } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
5
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { Address } from '.';
|
|
5
|
+
import { LeadStatusCode } from '.';
|
|
6
6
|
export declare class Lead extends BaseEntityEx {
|
|
7
7
|
firstName: string;
|
|
8
8
|
lastName: string;
|
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 {
|
|
4
|
-
import { Lead } from '.';
|
|
5
|
-
import { LeadStatusCode } from '.';
|
|
3
|
+
import { LeadAction } from '.';
|
|
6
4
|
import { Booking } from '.';
|
|
7
5
|
import { Point } from '.';
|
|
8
|
-
import {
|
|
6
|
+
import { LeadStatusCode } from '.';
|
|
9
7
|
import { TimeSeries } from '.';
|
|
10
|
-
import {
|
|
8
|
+
import { IntEnumValue } from '.';
|
|
9
|
+
import { IntKeyValue } from '.';
|
|
10
|
+
import { Lead } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class LeadsEndPoint {
|
|
13
13
|
private config;
|
package/lib/Lesson.d.ts
CHANGED
package/lib/Lookup.d.ts
CHANGED
package/lib/LookupGroup.d.ts
CHANGED
|
@@ -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;
|
package/lib/MessageConfirm.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ConfirmStatusCode } from '.';
|
|
2
|
-
import { MessageTypeCode } from '.';
|
|
3
1
|
import { PriorityCode } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
5
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { ConfirmStatusCode } from '.';
|
|
5
|
+
import { MessageTypeCode } 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 { MessageTypeCode } from '.';
|
|
4
3
|
import { ConfirmStatusCode } from '.';
|
|
5
4
|
import { PriorityCode } from '.';
|
|
6
5
|
import { MessageConfirm } from '.';
|
|
6
|
+
import { MessageTypeCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MessageConfirmsEndPoint {
|
|
9
9
|
private config;
|
package/lib/Metar.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { MetarReport } from '.';
|
|
2
1
|
import { TafReport } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { MetarReport } from '.';
|
|
5
5
|
export declare class Metar extends BaseEntityEx {
|
|
6
6
|
metarReports: MetarReport[];
|
|
7
7
|
tafReports: TafReport[];
|
package/lib/MyAuthEndPoint.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Notification } from '.';
|
|
3
4
|
import { LoginParams } from '.';
|
|
4
5
|
import { Contact } from '.';
|
|
5
|
-
import { Notification } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class MyAuthEndPoint {
|
|
8
8
|
private config;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { BookingSlot } from '.';
|
|
4
|
-
import { BookingStatusCode } from '.';
|
|
5
3
|
import { BookingTypeFlag } from '.';
|
|
6
|
-
import { Booking } from '.';
|
|
7
4
|
import { Lookup } from '.';
|
|
5
|
+
import { BookingSlot } from '.';
|
|
8
6
|
import { Airplane } from '.';
|
|
7
|
+
import { BookingStatusCode } from '.';
|
|
8
|
+
import { Booking } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyBookingsEndPoint {
|
|
11
11
|
private config;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Certificate } from '.';
|
|
4
3
|
import { StatusCode } from '.';
|
|
4
|
+
import { Certificate } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class MyCertificatesEndPoint {
|
|
7
7
|
private config;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { PostFlightInfo } from '.';
|
|
3
4
|
import { FlightStatusCode } from '.';
|
|
4
5
|
import { InstructionTypeCode } from '.';
|
|
5
6
|
import { PreFlightInfo } from '.';
|
|
6
7
|
import { Flight } from '.';
|
|
7
8
|
import { FlightTypeCode } from '.';
|
|
8
|
-
import { Syllabus } from '.';
|
|
9
|
-
import { PostFlightInfo } from '.';
|
|
10
9
|
import { FlightPlan } from '.';
|
|
10
|
+
import { Syllabus } 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,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { StorageItem } from '.';
|
|
4
3
|
import { Metar } from '.';
|
|
4
|
+
import { StorageItem } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class MyInfoEndPoint {
|
|
7
7
|
private config;
|
package/lib/Notification.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
1
3
|
import { NotificationTypeCode } from '.';
|
|
2
4
|
import { PriorityCode } from '.';
|
|
3
5
|
import { StringKeyValue } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
6
|
export declare class Notification extends BaseEntityEx {
|
|
7
7
|
type: NotificationTypeCode;
|
|
8
8
|
description: string;
|
package/lib/Permission.d.ts
CHANGED
package/lib/PostFlightInfo.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { AssessmentCode } from '.';
|
|
2
1
|
import { FlightPurposeCode } from '.';
|
|
3
2
|
import { FlightTypeCode } from '.';
|
|
4
3
|
import { FlightCategoryCode } from '.';
|
|
4
|
+
import { AssessmentCode } from '.';
|
|
5
5
|
export declare class PostFlightInfo {
|
|
6
6
|
flightId: string;
|
|
7
7
|
flightNumber: number;
|
package/lib/Price.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightPurposeCode } from '.';
|
|
4
3
|
import { Price } from '.';
|
|
4
|
+
import { FlightPurposeCode } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class PriceListEndPoint {
|
|
7
7
|
private config;
|
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { PilotQualificationsRisks } from '.';
|
|
2
|
-
import { CrewDutyDayRisks } from '.';
|
|
3
|
-
import { DepartureRisks } from '.';
|
|
4
1
|
import { DestinationRisks } from '.';
|
|
5
2
|
import { TripRisks } from '.';
|
|
6
3
|
import { WeatherRisks } from '.';
|
|
7
4
|
import { SpecialRisks } from '.';
|
|
8
5
|
import { Mitigation } from '.';
|
|
6
|
+
import { PilotQualificationsRisks } from '.';
|
|
7
|
+
import { CrewDutyDayRisks } from '.';
|
|
8
|
+
import { DepartureRisks } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/StorageItem.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Syllabus } from '.';
|
|
4
3
|
import { FlightCategoryCode } from '.';
|
|
5
4
|
import { InstructionTypeCode } from '.';
|
|
5
|
+
import { Syllabus } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SyllabusEndPoint {
|
|
8
8
|
private config;
|
|
@@ -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 { UserTypeCode } from '.';
|
|
2
|
-
import { UserRoleFlag } from '.';
|
|
3
1
|
import { UserStatusCode } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
5
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { UserTypeCode } from '.';
|
|
5
|
+
import { UserRoleFlag } from '.';
|
|
6
6
|
export declare class User extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
email: string;
|