@aya-flights/ngx-goox-lib 1.19.11 → 1.19.13
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 +3645 -3326
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountFilter.d.ts +7 -0
- package/lib/AccountsEndPoint.d.ts +1 -1
- package/lib/Airplane.d.ts +4 -4
- package/lib/AirplaneFilter.d.ts +8 -0
- package/lib/AirplanesEndPoint.d.ts +1 -1
- package/lib/AuditLogFilter.d.ts +12 -0
- package/lib/BaseFilter.d.ts +4 -0
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingFilter.d.ts +14 -0
- package/lib/Campaign.d.ts +2 -2
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/Certificate.d.ts +2 -2
- package/lib/CertificateFilter.d.ts +10 -0
- package/lib/Contact.d.ts +2 -2
- package/lib/ContactFilter.d.ts +8 -0
- package/lib/ContactsEndPoint.d.ts +3 -3
- package/lib/CreditFilter.d.ts +10 -0
- package/lib/FilterFlag.d.ts +31 -0
- package/lib/Flight.d.ts +9 -9
- package/lib/FlightFilter.d.ts +19 -0
- package/lib/FlightPassenger.d.ts +1 -1
- package/lib/FlightRisk.d.ts +3 -3
- package/lib/FlightsEndPoint.d.ts +4 -4
- package/lib/Group.d.ts +1 -1
- package/lib/Lead.d.ts +1 -1
- package/lib/LeadFilter.d.ts +11 -0
- 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 +1 -1
- package/lib/MaintenanceFilter.d.ts +13 -0
- package/lib/MessageConfirm.d.ts +2 -2
- package/lib/PostFlightData.d.ts +1 -1
- package/lib/PreFlightData.d.ts +1 -1
- package/lib/Price.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +3 -3
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/UserEndPoint.d.ts +1 -1
- package/lib/UserFilter.d.ts +13 -0
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +94 -81
- package/lib/services.export.d.ts +17 -17
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Document } from '.';
|
|
3
4
|
import { StringKeyValue } from '.';
|
|
4
5
|
import { Flight } from '.';
|
|
5
6
|
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 { Engine } from '.';
|
|
2
|
-
import { Magneto } from '.';
|
|
3
|
-
import { Propeller } from '.';
|
|
4
|
-
import { Fuel } from '.';
|
|
5
1
|
import { BaseEntityEx } from '.';
|
|
6
2
|
import { ColumnDef } from '.';
|
|
7
3
|
import { AirplaneStatusCode } from '.';
|
|
8
4
|
import { AirplaneValidationFlag } from '.';
|
|
5
|
+
import { Engine } from '.';
|
|
6
|
+
import { Magneto } from '.';
|
|
7
|
+
import { Propeller } from '.';
|
|
8
|
+
import { Fuel } from '.';
|
|
9
9
|
export declare class Airplane extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AirplaneStatusCode } from '.';
|
|
2
|
+
import { BaseFilter } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
4
|
+
export declare class AirplaneFilter extends BaseFilter {
|
|
5
|
+
status: AirplaneStatusCode[];
|
|
6
|
+
isActive: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare function GetAirplaneFilterColumnsDef(): ColumnDef[];
|
|
@@ -3,8 +3,8 @@ import { GooxConfig } from '../config';
|
|
|
3
3
|
import { Airplane } from '.';
|
|
4
4
|
import { StringKeyValue } from '.';
|
|
5
5
|
import { Flight } from '.';
|
|
6
|
-
import { Document } from '.';
|
|
7
6
|
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;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { TimeFrame } from '.';
|
|
2
|
+
import { BaseFilter } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
4
|
+
export declare class AuditLogFilter extends BaseFilter {
|
|
5
|
+
createdOn: TimeFrame;
|
|
6
|
+
userId: string;
|
|
7
|
+
action: string;
|
|
8
|
+
itemType: string;
|
|
9
|
+
itemId: string;
|
|
10
|
+
itemName: string;
|
|
11
|
+
}
|
|
12
|
+
export declare function GetAuditLogFilterColumnsDef(): ColumnDef[];
|
package/lib/Booking.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { BookingTypeFlag } from '.';
|
|
2
3
|
import { BookingStatusCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Booking extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
title: string;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { BookingTypeFlag } from '.';
|
|
2
|
+
import { TimeFrame } from '.';
|
|
3
|
+
import { BookingStatusCode } from '.';
|
|
4
|
+
import { BaseFilter } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
|
+
export declare class BookingFilter extends BaseFilter {
|
|
7
|
+
accountId: string;
|
|
8
|
+
contactId: string;
|
|
9
|
+
type: BookingTypeFlag[];
|
|
10
|
+
airplaneId: string;
|
|
11
|
+
placementOn: TimeFrame;
|
|
12
|
+
status: BookingStatusCode[];
|
|
13
|
+
}
|
|
14
|
+
export declare function GetBookingFilterColumnsDef(): ColumnDef[];
|
package/lib/Campaign.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
2
|
+
import { CampaignTypeCode } from '.';
|
|
1
3
|
import { CampaignStatusCode } from '.';
|
|
2
4
|
import { CurrencyCode } from '.';
|
|
3
5
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
|
-
import { CampaignTypeCode } from '.';
|
|
6
6
|
export declare class Campaign extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
type: CampaignTypeCode;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Campaign } from '.';
|
|
4
3
|
import { StringKeyValue } from '.';
|
|
4
|
+
import { Campaign } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CampaignsEndPoint {
|
|
7
7
|
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;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { TimeFrame } from '.';
|
|
2
|
+
import { StatusCode } from '.';
|
|
3
|
+
import { BaseFilter } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
|
+
export declare class CertificateFilter extends BaseFilter {
|
|
6
|
+
contactId: string;
|
|
7
|
+
validUntil: TimeFrame;
|
|
8
|
+
status: StatusCode[];
|
|
9
|
+
}
|
|
10
|
+
export declare function GetCertificateFilterColumnsDef(): ColumnDef[];
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
|
-
import { AccountStatusCode } from '.';
|
|
3
1
|
import { Address } from '.';
|
|
4
2
|
import { ValidationFlag } from '.';
|
|
5
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
|
+
import { AccountStatusCode } from '.';
|
|
6
6
|
export declare class Contact extends BaseEntityEx {
|
|
7
7
|
accountId: string;
|
|
8
8
|
name: string;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AccountStatusCode } from '.';
|
|
2
|
+
import { BaseFilter } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
4
|
+
export declare class ContactFilter extends BaseFilter {
|
|
5
|
+
accountId: string;
|
|
6
|
+
status: AccountStatusCode[];
|
|
7
|
+
}
|
|
8
|
+
export declare function GetContactFilterColumnsDef(): ColumnDef[];
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
3
|
+
import { Document } from '.';
|
|
4
4
|
import { Contact } from '.';
|
|
5
5
|
import { StringKeyValue } from '.';
|
|
6
|
-
import {
|
|
6
|
+
import { MessageConfirm } from '.';
|
|
7
7
|
import { Flight } from '.';
|
|
8
|
-
import {
|
|
8
|
+
import { Certificate } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class ContactsEndPoint {
|
|
11
11
|
private config;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { TransactionTypeCode } from '.';
|
|
2
|
+
import { TimeFrame } from '.';
|
|
3
|
+
import { BaseFilter } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
|
+
export declare class CreditFilter extends BaseFilter {
|
|
6
|
+
accountId: string;
|
|
7
|
+
type: TransactionTypeCode[];
|
|
8
|
+
transactionOn: TimeFrame;
|
|
9
|
+
}
|
|
10
|
+
export declare function GetCreditFilterColumnsDef(): ColumnDef[];
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Tuple } from '.';
|
|
2
|
+
export declare enum FilterFlag {
|
|
3
|
+
UNDEFINED = 0,
|
|
4
|
+
SEARCH = 1,
|
|
5
|
+
F2 = 2,
|
|
6
|
+
F3 = 4,
|
|
7
|
+
F4 = 8,
|
|
8
|
+
F5 = 16,
|
|
9
|
+
F6 = 32,
|
|
10
|
+
F7 = 64,
|
|
11
|
+
F8 = 128,
|
|
12
|
+
F9 = 256,
|
|
13
|
+
F10 = 512,
|
|
14
|
+
F11 = 1024,
|
|
15
|
+
F12 = 2048,
|
|
16
|
+
F13 = 4096,
|
|
17
|
+
F14 = 8192,
|
|
18
|
+
F15 = 16384,
|
|
19
|
+
F16 = 32768,
|
|
20
|
+
F17 = 65536,
|
|
21
|
+
F18 = 131072,
|
|
22
|
+
F19 = 262144,
|
|
23
|
+
F20 = 524288,
|
|
24
|
+
F21 = 1048576,
|
|
25
|
+
F22 = 2097152,
|
|
26
|
+
F23 = 4194304,
|
|
27
|
+
F24 = 8388608,
|
|
28
|
+
F25 = 16777216
|
|
29
|
+
}
|
|
30
|
+
export declare function GetFilterFlags(): Tuple<FilterFlag, string>[];
|
|
31
|
+
export declare function MapFilterFlags(): Map<FilterFlag, string>;
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { BillingStatusCode } from '.';
|
|
2
|
-
import { FlightPurposeCode } from '.';
|
|
3
|
-
import { TOLData } from '.';
|
|
4
|
-
import { Lesson } from '.';
|
|
5
|
-
import { Billing } from '.';
|
|
6
|
-
import { RiskAssessment } from '.';
|
|
7
|
-
import { ColumnDef } from '.';
|
|
8
1
|
import { FlightStateCode } from '.';
|
|
9
|
-
import { FlightStatusCode } from '.';
|
|
10
2
|
import { OnBoard } from '.';
|
|
11
|
-
import {
|
|
3
|
+
import { Billing } from '.';
|
|
12
4
|
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
13
6
|
import { FlightTypeCode } from '.';
|
|
7
|
+
import { FlightStatusCode } from '.';
|
|
8
|
+
import { TOLData } from '.';
|
|
9
|
+
import { ReFuel } from '.';
|
|
10
|
+
import { Lesson } from '.';
|
|
11
|
+
import { RiskAssessment } from '.';
|
|
12
|
+
import { BillingStatusCode } from '.';
|
|
13
|
+
import { FlightPurposeCode } from '.';
|
|
14
14
|
export declare class Flight extends BaseEntityEx {
|
|
15
15
|
name: string;
|
|
16
16
|
description: string;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { FlightPurposeCode } from '.';
|
|
2
|
+
import { BaseFilter } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
4
|
+
import { TimeFrame } from '.';
|
|
5
|
+
import { FlightTypeCode } from '.';
|
|
6
|
+
import { FlightStatusCode } from '.';
|
|
7
|
+
import { BillingStatusCode } from '.';
|
|
8
|
+
export declare class FlightFilter extends BaseFilter {
|
|
9
|
+
accountId: string;
|
|
10
|
+
airplaneId: string;
|
|
11
|
+
captain: string;
|
|
12
|
+
firstOfficer: string;
|
|
13
|
+
flightTime: TimeFrame;
|
|
14
|
+
type: FlightTypeCode[];
|
|
15
|
+
status: FlightStatusCode[];
|
|
16
|
+
billingStatus: BillingStatusCode[];
|
|
17
|
+
purpose: FlightPurposeCode[];
|
|
18
|
+
}
|
|
19
|
+
export declare function GetFlightFilterColumnsDef(): ColumnDef[];
|
package/lib/FlightPassenger.d.ts
CHANGED
package/lib/FlightRisk.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { PilotQualificationsRisks } from '.';
|
|
3
1
|
import { DepartureRisks } from '.';
|
|
4
|
-
import {
|
|
2
|
+
import { BaseEntityEx } from '.';
|
|
5
3
|
import { WeatherRisks } from '.';
|
|
6
4
|
import { SpecialRisks } from '.';
|
|
7
5
|
import { Mitigation } from '.';
|
|
8
6
|
import { ColumnDef } from '.';
|
|
7
|
+
import { PilotQualificationsRisks } from '.';
|
|
9
8
|
import { CrewDutyDayRisks } from '.';
|
|
10
9
|
import { DestinationRisks } from '.';
|
|
10
|
+
import { TripRisks } 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 { FlightTicket } from '.';
|
|
4
|
-
import { Flight } from '.';
|
|
5
3
|
import { TimeSeries } from '.';
|
|
6
4
|
import { FlightPlan } from '.';
|
|
7
|
-
import {
|
|
5
|
+
import { Flight } from '.';
|
|
6
|
+
import { AnyKeyValue } from '.';
|
|
7
|
+
import { FlightTicket } from '.';
|
|
8
8
|
import { PreFlightInfo } from '.';
|
|
9
9
|
import { PostFlightInfo } from '.';
|
|
10
|
-
import {
|
|
10
|
+
import { Contact } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class FlightsEndPoint {
|
|
13
13
|
private config;
|
package/lib/Group.d.ts
CHANGED
package/lib/Lead.d.ts
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { TimeFrame } from '.';
|
|
2
|
+
import { LeadStatusCode } from '.';
|
|
3
|
+
import { BaseFilter } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
|
+
export declare class LeadFilter extends BaseFilter {
|
|
6
|
+
createdOn: TimeFrame;
|
|
7
|
+
leadSource: string;
|
|
8
|
+
campaignId: string;
|
|
9
|
+
status: LeadStatusCode[];
|
|
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 { Lead } from '.';
|
|
4
3
|
import { TimeSeries } from '.';
|
|
5
4
|
import { LeadAction } from '.';
|
|
5
|
+
import { Lead } 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 { LookupGroup } from '.';
|
|
4
3
|
import { Lookup } from '.';
|
|
4
|
+
import { LookupGroup } 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 '.';
|
|
1
2
|
import { StatusCode } from '.';
|
|
2
3
|
import { MaintenanceActionCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Maintenance extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { TimeFrame } from '.';
|
|
2
|
+
import { StatusCode } from '.';
|
|
3
|
+
import { MaintenanceActionCode } from '.';
|
|
4
|
+
import { BaseFilter } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
|
+
export declare class MaintenanceFilter extends BaseFilter {
|
|
7
|
+
airplaneId: string;
|
|
8
|
+
validUntil: TimeFrame;
|
|
9
|
+
status: StatusCode[];
|
|
10
|
+
component: string;
|
|
11
|
+
action: MaintenanceActionCode[];
|
|
12
|
+
}
|
|
13
|
+
export declare function GetMaintenanceFilterColumnsDef(): ColumnDef[];
|
package/lib/MessageConfirm.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { ConfirmStatusCode } from '.';
|
|
4
2
|
import { MessageTypeCode } from '.';
|
|
5
3
|
import { PriorityCode } from '.';
|
|
4
|
+
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
6
|
export declare class MessageConfirm extends BaseEntityEx {
|
|
7
7
|
messageId: string;
|
|
8
8
|
contactId: string;
|
package/lib/PostFlightData.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { FlightTypeCode } from '.';
|
|
2
1
|
import { FlightPurposeCode } from '.';
|
|
3
2
|
import { OnBoard } from '.';
|
|
4
3
|
import { TOLData } from '.';
|
|
@@ -6,6 +5,7 @@ import { ReFuel } from '.';
|
|
|
6
5
|
import { Lesson } from '.';
|
|
7
6
|
import { BaseEntityEx } from '.';
|
|
8
7
|
import { ColumnDef } from '.';
|
|
8
|
+
import { FlightTypeCode } from '.';
|
|
9
9
|
export declare class PostFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/PreFlightData.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { OnBoard } from '.';
|
|
2
1
|
import { TOLData } from '.';
|
|
3
2
|
import { ReFuel } from '.';
|
|
4
3
|
import { Lesson } from '.';
|
|
@@ -6,6 +5,7 @@ import { BaseEntityEx } from '.';
|
|
|
6
5
|
import { ColumnDef } from '.';
|
|
7
6
|
import { FlightTypeCode } from '.';
|
|
8
7
|
import { FlightPurposeCode } from '.';
|
|
8
|
+
import { OnBoard } from '.';
|
|
9
9
|
export declare class PreFlightData 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 '.';
|
|
1
4
|
import { DestinationRisks } from '.';
|
|
2
5
|
import { TripRisks } from '.';
|
|
3
6
|
import { WeatherRisks } from '.';
|
|
4
7
|
import { SpecialRisks } from '.';
|
|
5
8
|
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/SystemMessage.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { MessageTypeCode } from '.';
|
|
2
3
|
import { PriorityCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
5
|
export declare class SystemMessage extends BaseEntityEx {
|
|
6
6
|
subject: string;
|
|
7
7
|
description: string;
|
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
1
3
|
import { UserTypeCode } from '.';
|
|
2
4
|
import { UserRoleFlag } from '.';
|
|
3
5
|
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 { 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;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { UserRoleFlag } from '.';
|
|
2
|
+
import { UserStatusCode } from '.';
|
|
3
|
+
import { TimeFrame } from '.';
|
|
4
|
+
import { BaseFilter } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
|
+
import { UserTypeCode } from '.';
|
|
7
|
+
export declare class UserFilter extends BaseFilter {
|
|
8
|
+
type: UserTypeCode[];
|
|
9
|
+
roles: UserRoleFlag[];
|
|
10
|
+
status: UserStatusCode[];
|
|
11
|
+
lastSignIn: TimeFrame;
|
|
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 { User } from '.';
|
|
4
3
|
import { StringKeyValue } from '.';
|
|
4
|
+
import { User } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class UsersEndPoint {
|
|
7
7
|
private config;
|