@aya-flights/ngx-goox-lib 1.19.13 → 1.19.15
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 +3714 -3646
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountFilter.d.ts +3 -4
- package/lib/AccountsEndPoint.d.ts +1 -1
- package/lib/Airplane.d.ts +4 -4
- package/lib/AirplaneFilter.d.ts +3 -4
- package/lib/AirplanesEndPoint.d.ts +1 -1
- package/lib/AuditLog.d.ts +1 -1
- package/lib/AuditLogFilter.d.ts +3 -4
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingFilter.d.ts +3 -4
- package/lib/BookingsEndPoint.d.ts +1 -1
- package/lib/Campaign.d.ts +1 -1
- package/lib/CertificateFilter.d.ts +3 -4
- package/lib/Contact.d.ts +1 -1
- package/lib/ContactFilter.d.ts +3 -4
- package/lib/ContactsEndPoint.d.ts +2 -2
- package/lib/Credit.d.ts +1 -1
- package/lib/CreditFilter.d.ts +3 -4
- package/lib/Flight.d.ts +8 -8
- package/lib/FlightFilter.d.ts +4 -5
- package/lib/FlightPassenger.d.ts +1 -1
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +5 -5
- package/lib/FlightsEndPoint.d.ts +4 -4
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/Lead.d.ts +1 -1
- package/lib/LeadFilter.d.ts +3 -4
- package/lib/LeadsEndPoint.d.ts +1 -1
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/Maintenance.d.ts +2 -2
- package/lib/MaintenanceFilter.d.ts +4 -5
- package/lib/MessageConfirm.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +1 -1
- package/lib/PostFlightData.d.ts +2 -2
- package/lib/Price.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +3 -3
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/UserEndPoint.d.ts +1 -1
- package/lib/UserFilter.d.ts +3 -4
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +103 -103
- package/lib/services.export.d.ts +18 -18
- package/package.json +1 -1
package/lib/AccountFilter.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { AccountStatusCode } from '.';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export declare class AccountFilter extends BaseFilter {
|
|
2
|
+
export declare class AccountFilter {
|
|
3
|
+
search: string;
|
|
5
4
|
status: AccountStatusCode[];
|
|
5
|
+
constructor(search?: string, status?: AccountStatusCode[]);
|
|
6
6
|
}
|
|
7
|
-
export declare function GetAccountFilterColumnsDef(): ColumnDef[];
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Document } from '.';
|
|
4
3
|
import { StringKeyValue } from '.';
|
|
5
4
|
import { Flight } from '.';
|
|
6
5
|
import { Credit } from '.';
|
|
6
|
+
import { Document } from '.';
|
|
7
7
|
import { Account } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AccountsEndPoint {
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
|
-
import { AirplaneStatusCode } from '.';
|
|
4
|
-
import { AirplaneValidationFlag } from '.';
|
|
5
1
|
import { Engine } from '.';
|
|
6
2
|
import { Magneto } from '.';
|
|
7
3
|
import { Propeller } from '.';
|
|
8
4
|
import { Fuel } from '.';
|
|
5
|
+
import { BaseEntityEx } from '.';
|
|
6
|
+
import { ColumnDef } from '.';
|
|
7
|
+
import { AirplaneStatusCode } from '.';
|
|
8
|
+
import { AirplaneValidationFlag } from '.';
|
|
9
9
|
export declare class Airplane extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/AirplaneFilter.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { AirplaneStatusCode } from '.';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export declare class AirplaneFilter extends BaseFilter {
|
|
2
|
+
export declare class AirplaneFilter {
|
|
3
|
+
search: string;
|
|
5
4
|
status: AirplaneStatusCode[];
|
|
6
5
|
isActive: boolean;
|
|
6
|
+
constructor(search?: string, status?: AirplaneStatusCode[], isActive?: boolean);
|
|
7
7
|
}
|
|
8
|
-
export declare function GetAirplaneFilterColumnsDef(): ColumnDef[];
|
|
@@ -2,9 +2,9 @@ import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../u
|
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { Airplane } from '.';
|
|
4
4
|
import { StringKeyValue } from '.';
|
|
5
|
+
import { Document } from '.';
|
|
5
6
|
import { Flight } from '.';
|
|
6
7
|
import { Maintenance } from '.';
|
|
7
|
-
import { Document } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AirplanesEndPoint {
|
|
10
10
|
private config;
|
package/lib/AuditLog.d.ts
CHANGED
package/lib/AuditLogFilter.d.ts
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { TimeFrame } from '.';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export declare class AuditLogFilter extends BaseFilter {
|
|
2
|
+
export declare class AuditLogFilter {
|
|
3
|
+
search: string;
|
|
5
4
|
createdOn: TimeFrame;
|
|
6
5
|
userId: string;
|
|
7
6
|
action: string;
|
|
8
7
|
itemType: string;
|
|
9
8
|
itemId: string;
|
|
10
9
|
itemName: string;
|
|
10
|
+
constructor(search?: string, createdOn?: TimeFrame, userId?: string, action?: string, itemType?: string, itemId?: string, itemName?: string);
|
|
11
11
|
}
|
|
12
|
-
export declare function GetAuditLogFilterColumnsDef(): ColumnDef[];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { AuditLog } from '.';
|
|
4
3
|
import { TimeSeries } from '.';
|
|
4
|
+
import { AuditLog } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class AuditLogsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Booking.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { BookingTypeFlag } from '.';
|
|
3
2
|
import { BookingStatusCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Booking extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
title: string;
|
package/lib/BookingFilter.d.ts
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { BookingTypeFlag } from '.';
|
|
2
2
|
import { TimeFrame } from '.';
|
|
3
3
|
import { BookingStatusCode } from '.';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
export declare class BookingFilter extends BaseFilter {
|
|
4
|
+
export declare class BookingFilter {
|
|
5
|
+
search: string;
|
|
7
6
|
accountId: string;
|
|
8
7
|
contactId: string;
|
|
9
8
|
type: BookingTypeFlag[];
|
|
10
9
|
airplaneId: string;
|
|
11
10
|
placementOn: TimeFrame;
|
|
12
11
|
status: BookingStatusCode[];
|
|
12
|
+
constructor(search?: string, accountId?: string, contactId?: string, type?: BookingTypeFlag[], airplaneId?: string, placementOn?: TimeFrame, status?: BookingStatusCode[]);
|
|
13
13
|
}
|
|
14
|
-
export declare function GetBookingFilterColumnsDef(): ColumnDef[];
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { TimeSeries } from '.';
|
|
4
3
|
import { Booking } from '.';
|
|
5
4
|
import { BookingStatusCode } from '.';
|
|
5
|
+
import { TimeSeries } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class BookingsEndPoint {
|
|
8
8
|
private config;
|
package/lib/Campaign.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { CampaignTypeCode } from '.';
|
|
3
2
|
import { CampaignStatusCode } from '.';
|
|
4
3
|
import { CurrencyCode } from '.';
|
|
5
4
|
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
6
|
export declare class Campaign extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
type: CampaignTypeCode;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { TimeFrame } from '.';
|
|
2
2
|
import { StatusCode } from '.';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export declare class CertificateFilter extends BaseFilter {
|
|
3
|
+
export declare class CertificateFilter {
|
|
4
|
+
search: string;
|
|
6
5
|
contactId: string;
|
|
7
6
|
validUntil: TimeFrame;
|
|
8
7
|
status: StatusCode[];
|
|
8
|
+
constructor(search?: string, contactId?: string, validUntil?: TimeFrame, status?: StatusCode[]);
|
|
9
9
|
}
|
|
10
|
-
export declare function GetCertificateFilterColumnsDef(): ColumnDef[];
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { AccountStatusCode } from '.';
|
|
1
2
|
import { Address } from '.';
|
|
2
3
|
import { ValidationFlag } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
5
|
import { ColumnDef } from '.';
|
|
5
|
-
import { AccountStatusCode } from '.';
|
|
6
6
|
export declare class Contact extends BaseEntityEx {
|
|
7
7
|
accountId: string;
|
|
8
8
|
name: string;
|
package/lib/ContactFilter.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { AccountStatusCode } from '.';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export declare class ContactFilter extends BaseFilter {
|
|
2
|
+
export declare class ContactFilter {
|
|
3
|
+
search: string;
|
|
5
4
|
accountId: string;
|
|
6
5
|
status: AccountStatusCode[];
|
|
6
|
+
constructor(search?: string, accountId?: string, status?: AccountStatusCode[]);
|
|
7
7
|
}
|
|
8
|
-
export declare function GetContactFilterColumnsDef(): ColumnDef[];
|
|
@@ -2,10 +2,10 @@ import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../u
|
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { Document } from '.';
|
|
4
4
|
import { Contact } from '.';
|
|
5
|
-
import {
|
|
5
|
+
import { Certificate } from '.';
|
|
6
6
|
import { MessageConfirm } from '.';
|
|
7
7
|
import { Flight } from '.';
|
|
8
|
-
import {
|
|
8
|
+
import { StringKeyValue } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class ContactsEndPoint {
|
|
11
11
|
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/CreditFilter.d.ts
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { TransactionTypeCode } from '.';
|
|
2
2
|
import { TimeFrame } from '.';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export declare class CreditFilter extends BaseFilter {
|
|
3
|
+
export declare class CreditFilter {
|
|
4
|
+
search: string;
|
|
6
5
|
accountId: string;
|
|
7
6
|
type: TransactionTypeCode[];
|
|
8
7
|
transactionOn: TimeFrame;
|
|
8
|
+
constructor(search?: string, accountId?: string, type?: TransactionTypeCode[], transactionOn?: TimeFrame);
|
|
9
9
|
}
|
|
10
|
-
export declare function GetCreditFilterColumnsDef(): ColumnDef[];
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { FlightStateCode } from '.';
|
|
2
|
-
import { OnBoard } from '.';
|
|
3
1
|
import { Billing } from '.';
|
|
4
|
-
import {
|
|
5
|
-
import { ColumnDef } from '.';
|
|
2
|
+
import { RiskAssessment } from '.';
|
|
6
3
|
import { FlightTypeCode } from '.';
|
|
7
4
|
import { FlightStatusCode } from '.';
|
|
8
|
-
import { TOLData } from '.';
|
|
9
|
-
import { ReFuel } from '.';
|
|
10
|
-
import { Lesson } from '.';
|
|
11
|
-
import { RiskAssessment } from '.';
|
|
12
5
|
import { BillingStatusCode } from '.';
|
|
6
|
+
import { OnBoard } from '.';
|
|
7
|
+
import { Lesson } from '.';
|
|
8
|
+
import { BaseEntityEx } from '.';
|
|
9
|
+
import { ColumnDef } from '.';
|
|
10
|
+
import { FlightStateCode } from '.';
|
|
13
11
|
import { FlightPurposeCode } from '.';
|
|
12
|
+
import { TOLData } from '.';
|
|
13
|
+
import { ReFuel } from '.';
|
|
14
14
|
export declare class Flight extends BaseEntityEx {
|
|
15
15
|
name: string;
|
|
16
16
|
description: string;
|
package/lib/FlightFilter.d.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import { FlightPurposeCode } from '.';
|
|
2
|
-
import { BaseFilter } from '.';
|
|
3
|
-
import { ColumnDef } from '.';
|
|
4
1
|
import { TimeFrame } from '.';
|
|
5
2
|
import { FlightTypeCode } from '.';
|
|
6
3
|
import { FlightStatusCode } from '.';
|
|
7
4
|
import { BillingStatusCode } from '.';
|
|
8
|
-
|
|
5
|
+
import { FlightPurposeCode } from '.';
|
|
6
|
+
export declare class FlightFilter {
|
|
7
|
+
search: string;
|
|
9
8
|
accountId: string;
|
|
10
9
|
airplaneId: string;
|
|
11
10
|
captain: string;
|
|
@@ -15,5 +14,5 @@ export declare class FlightFilter extends BaseFilter {
|
|
|
15
14
|
status: FlightStatusCode[];
|
|
16
15
|
billingStatus: BillingStatusCode[];
|
|
17
16
|
purpose: FlightPurposeCode[];
|
|
17
|
+
constructor(search?: string, accountId?: string, airplaneId?: string, captain?: string, firstOfficer?: string, flightTime?: TimeFrame, type?: FlightTypeCode[], status?: FlightStatusCode[], billingStatus?: BillingStatusCode[], purpose?: FlightPurposeCode[]);
|
|
18
18
|
}
|
|
19
|
-
export declare function GetFlightFilterColumnsDef(): ColumnDef[];
|
package/lib/FlightPassenger.d.ts
CHANGED
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { TOLData } from '.';
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
3
|
-
import { ColumnDef } from '.';
|
|
4
1
|
import { FlightTypeCode } from '.';
|
|
5
2
|
import { FlightStatusCode } from '.';
|
|
6
3
|
import { FlightStateCode } from '.';
|
|
7
4
|
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 { DepartureRisks } from '.';
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
3
|
-
import { WeatherRisks } from '.';
|
|
4
|
-
import { SpecialRisks } from '.';
|
|
5
|
-
import { Mitigation } from '.';
|
|
6
1
|
import { ColumnDef } from '.';
|
|
7
2
|
import { PilotQualificationsRisks } from '.';
|
|
8
3
|
import { CrewDutyDayRisks } from '.';
|
|
4
|
+
import { DepartureRisks } from '.';
|
|
9
5
|
import { DestinationRisks } from '.';
|
|
6
|
+
import { WeatherRisks } from '.';
|
|
7
|
+
import { SpecialRisks } from '.';
|
|
8
|
+
import { BaseEntityEx } from '.';
|
|
10
9
|
import { TripRisks } from '.';
|
|
10
|
+
import { Mitigation } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/FlightsEndPoint.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { AnyKeyValue } from '.';
|
|
3
4
|
import { TimeSeries } from '.';
|
|
4
5
|
import { FlightPlan } from '.';
|
|
5
|
-
import {
|
|
6
|
-
import { AnyKeyValue } from '.';
|
|
7
|
-
import { FlightTicket } from '.';
|
|
6
|
+
import { Contact } from '.';
|
|
8
7
|
import { PreFlightInfo } from '.';
|
|
9
8
|
import { PostFlightInfo } from '.';
|
|
10
|
-
import {
|
|
9
|
+
import { Flight } from '.';
|
|
10
|
+
import { FlightTicket } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class FlightsEndPoint {
|
|
13
13
|
private config;
|
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 { Group } from '.';
|
|
4
3
|
import { StringKeyValue } from '.';
|
|
4
|
+
import { Group } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class GroupsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Lead.d.ts
CHANGED
package/lib/LeadFilter.d.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { TimeFrame } from '.';
|
|
2
2
|
import { LeadStatusCode } from '.';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export declare class LeadFilter extends BaseFilter {
|
|
3
|
+
export declare class LeadFilter {
|
|
4
|
+
search: string;
|
|
6
5
|
createdOn: TimeFrame;
|
|
7
6
|
leadSource: string;
|
|
8
7
|
campaignId: string;
|
|
9
8
|
status: LeadStatusCode[];
|
|
9
|
+
constructor(search?: string, createdOn?: TimeFrame, leadSource?: string, campaignId?: string, status?: LeadStatusCode[]);
|
|
10
10
|
}
|
|
11
|
-
export declare function GetLeadFilterColumnsDef(): ColumnDef[];
|
package/lib/LeadsEndPoint.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { TimeSeries } from '.';
|
|
4
3
|
import { LeadAction } from '.';
|
|
5
4
|
import { Lead } from '.';
|
|
5
|
+
import { TimeSeries } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class LeadsEndPoint {
|
|
8
8
|
private config;
|
package/lib/LookupGroup.d.ts
CHANGED
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/Maintenance.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
|
-
import { StatusCode } from '.';
|
|
3
1
|
import { MaintenanceActionCode } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
4
|
+
import { StatusCode } from '.';
|
|
5
5
|
export declare class Maintenance extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
|
@@ -1,13 +1,12 @@
|
|
|
1
|
+
import { MaintenanceActionCode } from '.';
|
|
1
2
|
import { TimeFrame } from '.';
|
|
2
3
|
import { StatusCode } from '.';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
|
-
export declare class MaintenanceFilter extends BaseFilter {
|
|
4
|
+
export declare class MaintenanceFilter {
|
|
5
|
+
search: string;
|
|
7
6
|
airplaneId: string;
|
|
8
7
|
validUntil: TimeFrame;
|
|
9
8
|
status: StatusCode[];
|
|
10
9
|
component: string;
|
|
11
10
|
action: MaintenanceActionCode[];
|
|
11
|
+
constructor(search?: string, airplaneId?: string, validUntil?: TimeFrame, status?: StatusCode[], component?: string, action?: MaintenanceActionCode[]);
|
|
12
12
|
}
|
|
13
|
-
export declare function GetMaintenanceFilterColumnsDef(): ColumnDef[];
|
package/lib/MessageConfirm.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ConfirmStatusCode } from '.';
|
|
2
1
|
import { MessageTypeCode } from '.';
|
|
3
2
|
import { PriorityCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
5
4
|
import { ColumnDef } from '.';
|
|
5
|
+
import { ConfirmStatusCode } 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 { Flight } from '.';
|
|
4
3
|
import { FlightPlan } from '.';
|
|
5
4
|
import { PreFlightInfo } from '.';
|
|
6
5
|
import { PostFlightInfo } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MyFlightsEndPoint {
|
|
9
9
|
private config;
|
package/lib/PostFlightData.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { FlightPurposeCode } from '.';
|
|
2
|
-
import { OnBoard } from '.';
|
|
3
1
|
import { TOLData } from '.';
|
|
4
2
|
import { ReFuel } from '.';
|
|
5
3
|
import { Lesson } from '.';
|
|
6
4
|
import { BaseEntityEx } from '.';
|
|
7
5
|
import { ColumnDef } from '.';
|
|
8
6
|
import { FlightTypeCode } from '.';
|
|
7
|
+
import { FlightPurposeCode } from '.';
|
|
8
|
+
import { OnBoard } from '.';
|
|
9
9
|
export declare class PostFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/Price.d.ts
CHANGED
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;
|
|
@@ -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 SystemMessagesEndPoint {
|
|
7
7
|
private config;
|
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/UserEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { User } from '.';
|
|
4
3
|
import { LoginParams } from '.';
|
|
4
|
+
import { User } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class UserEndPoint {
|
|
7
7
|
private config;
|
package/lib/UserFilter.d.ts
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { UserRoleFlag } from '.';
|
|
2
2
|
import { UserStatusCode } from '.';
|
|
3
3
|
import { TimeFrame } from '.';
|
|
4
|
-
import { BaseFilter } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
4
|
import { UserTypeCode } from '.';
|
|
7
|
-
export declare class UserFilter
|
|
5
|
+
export declare class UserFilter {
|
|
6
|
+
search: string;
|
|
8
7
|
type: UserTypeCode[];
|
|
9
8
|
roles: UserRoleFlag[];
|
|
10
9
|
status: UserStatusCode[];
|
|
11
10
|
lastSignIn: TimeFrame;
|
|
11
|
+
constructor(search?: string, type?: UserTypeCode[], roles?: UserRoleFlag[], status?: UserStatusCode[], lastSignIn?: TimeFrame);
|
|
12
12
|
}
|
|
13
|
-
export declare function GetUserFilterColumnsDef(): ColumnDef[];
|
package/lib/UsersEndPoint.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 { User } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class UsersEndPoint {
|
|
7
7
|
private config;
|