@aya-flights/ngx-goox-lib 1.19.10 → 1.19.12
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 +3712 -3374
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountFilter.d.ts +7 -0
- package/lib/AccountsEndPoint.d.ts +3 -3
- package/lib/Airplane.d.ts +4 -4
- package/lib/AirplaneFilter.d.ts +8 -0
- package/lib/AirplanesEndPoint.d.ts +1 -1
- package/lib/AuditLog.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/BookingSlot.d.ts +1 -1
- package/lib/CampaignsEndPoint.d.ts +1 -1
- 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 +2 -2
- package/lib/CreditFilter.d.ts +10 -0
- package/lib/Document.d.ts +1 -1
- package/lib/FilterFlag.d.ts +31 -0
- package/lib/Flight.d.ts +5 -5
- package/lib/FlightFilter.d.ts +19 -0
- package/lib/FlightRisk.d.ts +5 -5
- package/lib/FlightsEndPoint.d.ts +9 -5
- package/lib/Group.d.ts +1 -1
- package/lib/Lead.d.ts +1 -1
- package/lib/LeadFilter.d.ts +11 -0
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/Maintenance.d.ts +2 -2
- package/lib/MaintenanceFilter.d.ts +13 -0
- package/lib/MessageConfirm.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +1 -1
- package/lib/PostFlightData.d.ts +1 -1
- package/lib/PreFlightData.d.ts +3 -3
- package/lib/RiskAssessment.d.ts +3 -3
- package/lib/TokenData.d.ts +1 -1
- package/lib/UserFilter.d.ts +13 -0
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +98 -85
- package/lib/services.export.d.ts +20 -20
- package/package.json +1 -1
- package/utils/Entities.d.ts +3 -0
- package/utils/SimpleEntity.d.ts +3 -0
- package/utils/index.d.ts +2 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Flight } from '.';
|
|
4
|
-
import { Credit } from '.';
|
|
5
3
|
import { Document } from '.';
|
|
6
|
-
import {
|
|
4
|
+
import { Credit } from '.';
|
|
7
5
|
import { Account } from '.';
|
|
6
|
+
import { StringKeyValue } from '.';
|
|
7
|
+
import { Flight } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AccountsEndPoint {
|
|
10
10
|
private config;
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Magneto } from '.';
|
|
2
|
-
import { Propeller } from '.';
|
|
3
|
-
import { Fuel } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
1
|
import { ColumnDef } from '.';
|
|
6
2
|
import { AirplaneStatusCode } from '.';
|
|
7
3
|
import { AirplaneValidationFlag } from '.';
|
|
8
4
|
import { Engine } from '.';
|
|
5
|
+
import { Magneto } from '.';
|
|
6
|
+
import { Propeller } from '.';
|
|
7
|
+
import { Fuel } from '.';
|
|
8
|
+
import { BaseEntityEx } 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[];
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Maintenance } from '.';
|
|
4
3
|
import { Airplane } from '.';
|
|
5
4
|
import { StringKeyValue } from '.';
|
|
6
5
|
import { Flight } from '.';
|
|
7
6
|
import { Document } from '.';
|
|
7
|
+
import { Maintenance } 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
|
@@ -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 { BookingTypeFlag } from '.';
|
|
1
2
|
import { BookingStatusCode } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
4
|
import { ColumnDef } from '.';
|
|
4
|
-
import { BookingTypeFlag } from '.';
|
|
5
5
|
export declare class Booking extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
title: string;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { BookingStatusCode } from '.';
|
|
2
|
+
import { BaseFilter } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
4
|
+
import { BookingTypeFlag } from '.';
|
|
5
|
+
import { TimeFrame } 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/BookingSlot.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 { Campaign } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CampaignsEndPoint {
|
|
7
7
|
private config;
|
|
@@ -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 { AccountStatusCode } from '.';
|
|
2
|
+
import { Address } from '.';
|
|
1
3
|
import { ValidationFlag } from '.';
|
|
2
4
|
import { BaseEntityEx } from '.';
|
|
3
5
|
import { ColumnDef } from '.';
|
|
4
|
-
import { AccountStatusCode } from '.';
|
|
5
|
-
import { Address } 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,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Certificate } from '.';
|
|
4
|
-
import { MessageConfirm } from '.';
|
|
5
3
|
import { StringKeyValue } from '.';
|
|
4
|
+
import { Certificate } from '.';
|
|
6
5
|
import { Flight } from '.';
|
|
6
|
+
import { MessageConfirm } from '.';
|
|
7
7
|
import { Document } from '.';
|
|
8
8
|
import { Contact } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
2
|
+
import { TransactionTypeCode } from '.';
|
|
3
|
+
import { TimeFrame } from '.';
|
|
4
|
+
import { BaseFilter } from '.';
|
|
5
|
+
export declare class CreditFilter extends BaseFilter {
|
|
6
|
+
accountId: string;
|
|
7
|
+
type: TransactionTypeCode[];
|
|
8
|
+
transactionOn: TimeFrame;
|
|
9
|
+
}
|
|
10
|
+
export declare function GetCreditFilterColumnsDef(): ColumnDef[];
|
package/lib/Document.d.ts
CHANGED
|
@@ -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
1
|
import { BillingStatusCode } from '.';
|
|
2
2
|
import { FlightPurposeCode } from '.';
|
|
3
3
|
import { OnBoard } from '.';
|
|
4
|
-
import {
|
|
4
|
+
import { TOLData } from '.';
|
|
5
5
|
import { Lesson } from '.';
|
|
6
|
-
import { BaseEntityEx } from '.';
|
|
7
6
|
import { ColumnDef } from '.';
|
|
8
7
|
import { FlightTypeCode } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import { TOLData } from '.';
|
|
8
|
+
import { FlightStatusCode } from '.';
|
|
11
9
|
import { Billing } from '.';
|
|
12
10
|
import { RiskAssessment } from '.';
|
|
13
|
-
import {
|
|
11
|
+
import { BaseEntityEx } from '.';
|
|
12
|
+
import { FlightStateCode } from '.';
|
|
13
|
+
import { ReFuel } from '.';
|
|
14
14
|
export declare class Flight extends BaseEntityEx {
|
|
15
15
|
name: string;
|
|
16
16
|
description: string;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
2
|
+
import { TimeFrame } from '.';
|
|
3
|
+
import { FlightTypeCode } from '.';
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
5
|
+
import { BillingStatusCode } from '.';
|
|
6
|
+
import { FlightPurposeCode } from '.';
|
|
7
|
+
import { BaseFilter } 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/FlightRisk.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { PilotQualificationsRisks } from '.';
|
|
3
|
-
import { CrewDutyDayRisks } from '.';
|
|
4
1
|
import { DepartureRisks } from '.';
|
|
5
|
-
import { DestinationRisks } from '.';
|
|
6
2
|
import { WeatherRisks } from '.';
|
|
7
3
|
import { SpecialRisks } from '.';
|
|
4
|
+
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
|
+
import { PilotQualificationsRisks } from '.';
|
|
7
|
+
import { DestinationRisks } from '.';
|
|
8
8
|
import { TripRisks } from '.';
|
|
9
9
|
import { Mitigation } from '.';
|
|
10
|
-
import {
|
|
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,13 +1,13 @@
|
|
|
1
|
-
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
1
|
+
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { FlightPlan } from '.';
|
|
4
4
|
import { FlightTicket } from '.';
|
|
5
|
-
import { PreFlightInfo } from '.';
|
|
6
|
-
import { PostFlightInfo } from '.';
|
|
7
5
|
import { Flight } from '.';
|
|
8
6
|
import { AnyKeyValue } from '.';
|
|
9
7
|
import { TimeSeries } from '.';
|
|
8
|
+
import { PreFlightInfo } from '.';
|
|
10
9
|
import { Contact } from '.';
|
|
10
|
+
import { PostFlightInfo } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class FlightsEndPoint {
|
|
13
13
|
private config;
|
|
@@ -27,11 +27,15 @@ export declare class FlightsEndPoint {
|
|
|
27
27
|
*/
|
|
28
28
|
launch(body?: Flight): import("rxjs").Observable<EntityResponse<Flight>>;
|
|
29
29
|
/**
|
|
30
|
-
* Update existing flight
|
|
30
|
+
* Update an existing flight
|
|
31
31
|
*/
|
|
32
32
|
update(body?: Flight): import("rxjs").Observable<EntityResponse<Flight>>;
|
|
33
33
|
/**
|
|
34
|
-
* Update
|
|
34
|
+
* Update a list of existing flights
|
|
35
|
+
*/
|
|
36
|
+
bulkUpdate(body?: Entities<Flight>): import("rxjs").Observable<ActionResponse>;
|
|
37
|
+
/**
|
|
38
|
+
* Update an existing flight with partial data
|
|
35
39
|
*/
|
|
36
40
|
partialUpdate(id?: string, body?: AnyKeyValue): import("rxjs").Observable<EntityResponse<Flight>>;
|
|
37
41
|
/**
|
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/LookupGroup.d.ts
CHANGED
package/lib/Maintenance.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { StatusCode } from '.';
|
|
4
2
|
import { MaintenanceActionCode } from '.';
|
|
3
|
+
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 { MessageTypeCode } from '.';
|
|
2
1
|
import { PriorityCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
5
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 { Flight } from '.';
|
|
3
4
|
import { FlightPlan } from '.';
|
|
4
5
|
import { PreFlightInfo } from '.';
|
|
5
6
|
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,3 +1,4 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { FlightTypeCode } from '.';
|
|
2
3
|
import { FlightPurposeCode } from '.';
|
|
3
4
|
import { OnBoard } from '.';
|
|
@@ -5,7 +6,6 @@ import { TOLData } from '.';
|
|
|
5
6
|
import { ReFuel } from '.';
|
|
6
7
|
import { Lesson } from '.';
|
|
7
8
|
import { BaseEntityEx } from '.';
|
|
8
|
-
import { ColumnDef } from '.';
|
|
9
9
|
export declare class PostFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/PreFlightData.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
2
|
+
import { FlightTypeCode } from '.';
|
|
3
|
+
import { FlightPurposeCode } from '.';
|
|
1
4
|
import { OnBoard } from '.';
|
|
2
5
|
import { TOLData } from '.';
|
|
3
6
|
import { ReFuel } from '.';
|
|
4
7
|
import { Lesson } from '.';
|
|
5
8
|
import { BaseEntityEx } from '.';
|
|
6
|
-
import { ColumnDef } from '.';
|
|
7
|
-
import { FlightTypeCode } from '.';
|
|
8
|
-
import { FlightPurposeCode } from '.';
|
|
9
9
|
export declare class PreFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { CrewDutyDayRisks } from '.';
|
|
2
|
-
import { DepartureRisks } from '.';
|
|
3
|
-
import { DestinationRisks } from '.';
|
|
4
1
|
import { TripRisks } from '.';
|
|
5
2
|
import { WeatherRisks } from '.';
|
|
6
3
|
import { SpecialRisks } from '.';
|
|
7
4
|
import { Mitigation } from '.';
|
|
8
5
|
import { PilotQualificationsRisks } from '.';
|
|
6
|
+
import { CrewDutyDayRisks } from '.';
|
|
7
|
+
import { DepartureRisks } from '.';
|
|
8
|
+
import { DestinationRisks } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/TokenData.d.ts
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
2
|
+
import { UserTypeCode } from '.';
|
|
3
|
+
import { UserRoleFlag } from '.';
|
|
4
|
+
import { UserStatusCode } from '.';
|
|
5
|
+
import { TimeFrame } from '.';
|
|
6
|
+
import { BaseFilter } 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 { 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;
|