@aya-flights/ngx-goox-lib 2.19.152 → 2.19.153
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 +5371 -5355
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +6 -6
- package/lib/Airplane.d.ts +4 -4
- package/lib/AirplanesEndPoint.d.ts +7 -7
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/BookingSlotsSet.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +1 -1
- package/lib/Campaign.d.ts +1 -1
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/Certificate.d.ts +2 -2
- package/lib/Contact.d.ts +5 -5
- package/lib/ContactsEndPoint.d.ts +6 -6
- package/lib/Credit.d.ts +1 -1
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +4 -4
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +6 -6
- package/lib/FlightsEndPoint.d.ts +7 -7
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/LeadAction.d.ts +1 -1
- package/lib/LeadsEndPoint.d.ts +9 -1
- package/lib/MaintenancesEndPoint.d.ts +1 -1
- package/lib/MessageConfirm.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +2 -2
- package/lib/MyFlightsEndPoint.d.ts +3 -3
- package/lib/PreFlightInfo.d.ts +1 -1
- package/lib/Price.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +1 -1
- package/lib/Syllabus.d.ts +1 -1
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/SystemConfig.d.ts +1 -1
- package/lib/TimeSeries.d.ts +1 -1
- package/lib/User.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +112 -112
- package/lib/services.export.d.ts +18 -18
- 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 { Account } from '.';
|
|
3
4
|
import { AccountTypeCode } from '.';
|
|
4
|
-
import { AccountStatusCode } from '.';
|
|
5
|
-
import { Flight } from '.';
|
|
6
5
|
import { Credit } from '.';
|
|
6
|
+
import { FlightPurposeCode } from '.';
|
|
7
|
+
import { Flight } from '.';
|
|
8
|
+
import { Document } from '.';
|
|
9
|
+
import { FlightStateCode } from '.';
|
|
7
10
|
import { StringKeyValue } from '.';
|
|
8
11
|
import { FlightTypeCode } from '.';
|
|
9
|
-
import { Document } from '.';
|
|
10
12
|
import { FlightStatusCode } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import { FlightPurposeCode } from '.';
|
|
13
|
-
import { Account } from '.';
|
|
13
|
+
import { AccountStatusCode } 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 '.';
|
|
1
3
|
import { Propeller } from '.';
|
|
4
|
+
import { Fuel } from '.';
|
|
2
5
|
import { WBConfig } from '.';
|
|
3
6
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
7
|
import { TypeRatingFlag } from '.';
|
|
6
8
|
import { AirplaneStatusCode } from '.';
|
|
7
|
-
import { Magneto } from '.';
|
|
8
|
-
import { AirplaneValidationFlag } from '.';
|
|
9
9
|
import { Engine } from '.';
|
|
10
|
-
import {
|
|
10
|
+
import { ColumnDef } 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 { FlightTypeCode } from '.';
|
|
4
|
-
import { FlightPurposeCode } from '.';
|
|
5
|
-
import { Document } from '.';
|
|
6
|
-
import { MaintenanceActionCode } from '.';
|
|
7
|
-
import { Maintenance } from '.';
|
|
8
3
|
import { FlightStatusCode } from '.';
|
|
9
|
-
import { StringKeyValue } from '.';
|
|
10
4
|
import { StatusCode } from '.';
|
|
5
|
+
import { MaintenanceActionCode } from '.';
|
|
6
|
+
import { Airplane } from '.';
|
|
7
|
+
import { FlightTypeCode } from '.';
|
|
11
8
|
import { AirplaneStatusCode } from '.';
|
|
12
9
|
import { FlightStateCode } from '.';
|
|
13
10
|
import { Flight } from '.';
|
|
14
|
-
import {
|
|
11
|
+
import { Document } from '.';
|
|
12
|
+
import { StringKeyValue } from '.';
|
|
13
|
+
import { FlightPurposeCode } from '.';
|
|
14
|
+
import { Maintenance } 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 { BookingStatusCode } from '.';
|
|
1
2
|
import { BaseEntityEx } from '.';
|
|
2
3
|
import { ColumnDef } from '.';
|
|
3
4
|
import { BookingTypeFlag } from '.';
|
|
4
|
-
import { BookingStatusCode } from '.';
|
|
5
5
|
export declare class Booking extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
accountId: string;
|
package/lib/BookingSlots.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/BookingSlotsSet.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Booking } from '.';
|
|
3
4
|
import { BookingStatusCode } from '.';
|
|
4
5
|
import { TimeSeries } from '.';
|
|
5
6
|
import { BookingPlan } from '.';
|
|
6
|
-
import { Booking } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class BookingsEndPoint {
|
|
9
9
|
private config;
|
package/lib/Campaign.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { CampaignTypeCode } from '.';
|
|
2
1
|
import { CampaignStatusCode } from '.';
|
|
3
2
|
import { CurrencyCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
5
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 { 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;
|
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;
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { ColumnDef } from '.';
|
|
1
|
+
import { ValidationFlag } from '.';
|
|
2
|
+
import { FlightCategoryCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
import { AccountStatusCode } from '.';
|
|
6
|
+
import { MedicalCertClassCode } from '.';
|
|
7
|
+
import { LicenseKindFlag } from '.';
|
|
6
8
|
import { Address } from '.';
|
|
7
9
|
import { TypeRatingFlag } from '.';
|
|
8
|
-
import { ValidationFlag } from '.';
|
|
9
|
-
import { FlightCategoryCode } 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 { Contact } from '.';
|
|
4
|
-
import { Certificate } from '.';
|
|
5
3
|
import { StatusCode } from '.';
|
|
6
|
-
import {
|
|
4
|
+
import { Certificate } from '.';
|
|
5
|
+
import { Contact } from '.';
|
|
7
6
|
import { FlightTypeCode } from '.';
|
|
8
|
-
import { FlightStateCode } from '.';
|
|
9
7
|
import { FlightPurposeCode } from '.';
|
|
10
|
-
import { MessageConfirm } from '.';
|
|
11
8
|
import { Document } from '.';
|
|
12
|
-
import { StringKeyValue } from '.';
|
|
13
9
|
import { Flight } from '.';
|
|
10
|
+
import { MessageConfirm } from '.';
|
|
11
|
+
import { FlightStatusCode } from '.';
|
|
12
|
+
import { FlightStateCode } from '.';
|
|
13
|
+
import { StringKeyValue } 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 { CurrencyCode } from '.';
|
|
2
1
|
import { BaseEntityEx } from '.';
|
|
3
2
|
import { ColumnDef } from '.';
|
|
4
3
|
import { TransactionTypeCode } from '.';
|
|
4
|
+
import { CurrencyCode } from '.';
|
|
5
5
|
export declare class Credit extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
package/lib/Document.d.ts
CHANGED
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { TOLData } from '.';
|
|
2
2
|
import { Lesson } from '.';
|
|
3
|
+
import { RiskAssessment } from '.';
|
|
4
|
+
import { BaseEntityEx } from '.';
|
|
3
5
|
import { FlightPurposeCode } from '.';
|
|
6
|
+
import { FlightCategoryCode } from '.';
|
|
4
7
|
import { FlightTypeCode } from '.';
|
|
5
|
-
import { FlightStatusCode } from '.';
|
|
6
8
|
import { BillingStatusCode } from '.';
|
|
7
9
|
import { ColumnDef } from '.';
|
|
8
10
|
import { FlightClassCode } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import { RiskAssessment } from '.';
|
|
11
|
-
import { BaseEntityEx } from '.';
|
|
11
|
+
import { FlightStatusCode } 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 '.';
|
|
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 { PilotQualificationsRisks } from '.';
|
|
2
1
|
import { DepartureRisks } from '.';
|
|
3
|
-
import {
|
|
2
|
+
import { TripRisks } from '.';
|
|
4
3
|
import { SpecialRisks } from '.';
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
4
|
+
import { Mitigation } from '.';
|
|
5
|
+
import { PilotQualificationsRisks } from '.';
|
|
7
6
|
import { CrewDutyDayRisks } from '.';
|
|
8
7
|
import { DestinationRisks } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
8
|
+
import { WeatherRisks } from '.';
|
|
9
|
+
import { BaseEntityEx } from '.';
|
|
10
|
+
import { ColumnDef } 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 {
|
|
4
|
-
import { TimeSeries } from '.';
|
|
3
|
+
import { Point } from '.';
|
|
5
4
|
import { PreFlightInfo } from '.';
|
|
6
|
-
import { PostFlightInfo } from '.';
|
|
7
5
|
import { AnyKeyValue } from '.';
|
|
8
6
|
import { FlightStatusCode } from '.';
|
|
7
|
+
import { FlightPurposeCode } from '.';
|
|
8
|
+
import { TimeSeries } from '.';
|
|
9
|
+
import { Contact } from '.';
|
|
10
|
+
import { PostFlightInfo } from '.';
|
|
11
|
+
import { Flight } from '.';
|
|
12
|
+
import { FlightTypeCode } from '.';
|
|
9
13
|
import { BillingStatusCode } from '.';
|
|
10
14
|
import { FlightPlan } from '.';
|
|
11
|
-
import { Point } from '.';
|
|
12
|
-
import { Contact } from '.';
|
|
13
15
|
import { FlightTicket } from '.';
|
|
14
|
-
import { FlightTypeCode } from '.';
|
|
15
|
-
import { FlightPurposeCode } from '.';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
export declare class FlightsEndPoint {
|
|
18
18
|
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/LeadAction.d.ts
CHANGED
package/lib/LeadsEndPoint.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { Lead } from '.';
|
|
4
|
+
import { LeadAction } from '.';
|
|
4
5
|
import { Booking } from '.';
|
|
5
6
|
import { Point } from '.';
|
|
6
7
|
import { IntKeyValue } from '.';
|
|
7
8
|
import { LeadStatusCode } from '.';
|
|
8
9
|
import { TimeSeries } from '.';
|
|
9
|
-
import { LeadAction } from '.';
|
|
10
10
|
import { IntEnumValue } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class LeadsEndPoint {
|
|
@@ -42,6 +42,10 @@ export declare class LeadsEndPoint {
|
|
|
42
42
|
* Find lead count histogram over time
|
|
43
43
|
*/
|
|
44
44
|
histogram(from?: number, to?: number, search?: string, status?: LeadStatusCode[]): import("rxjs").Observable<EntityResponse<TimeSeries<number>>>;
|
|
45
|
+
/**
|
|
46
|
+
* Add follow-up lead action
|
|
47
|
+
*/
|
|
48
|
+
addFollowUpAction(id?: string, description?: string): import("rxjs").Observable<EntityResponse<Lead>>;
|
|
45
49
|
/**
|
|
46
50
|
* Create new lead action
|
|
47
51
|
*/
|
|
@@ -66,6 +70,10 @@ export declare class LeadsEndPoint {
|
|
|
66
70
|
* Delete lead action and return list of all actions
|
|
67
71
|
*/
|
|
68
72
|
deleteAndGetActions(id?: string): import("rxjs").Observable<EntitiesResponse<LeadAction>>;
|
|
73
|
+
/**
|
|
74
|
+
* Change the lead create time to make it pop in the provided time
|
|
75
|
+
*/
|
|
76
|
+
snooze(id?: string, ts?: number): import("rxjs").Observable<EntityResponse<Lead>>;
|
|
69
77
|
/**
|
|
70
78
|
* Get bookings schedule for specific month, the result size is limited to 1000 entries
|
|
71
79
|
*/
|
|
@@ -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 { ColumnDef } from '.';
|
|
2
1
|
import { ConfirmStatusCode } from '.';
|
|
3
2
|
import { MessageTypeCode } from '.';
|
|
4
3
|
import { PriorityCode } from '.';
|
|
5
4
|
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
6
|
export declare class MessageConfirm extends BaseEntityEx {
|
|
7
7
|
messageId: string;
|
|
8
8
|
contactId: string;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { BookingStatusCode } from '.';
|
|
4
|
-
import { BookingTypeFlag } from '.';
|
|
5
3
|
import { Booking } from '.';
|
|
6
4
|
import { Lookup } from '.';
|
|
7
5
|
import { BookingSlot } from '.';
|
|
8
6
|
import { Airplane } from '.';
|
|
7
|
+
import { BookingStatusCode } from '.';
|
|
8
|
+
import { BookingTypeFlag } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyBookingsEndPoint {
|
|
11
11
|
private config;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { PostFlightInfo } from '.';
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
5
3
|
import { FlightPlan } from '.';
|
|
6
4
|
import { InstructionTypeCode } from '.';
|
|
7
|
-
import { PreFlightInfo } from '.';
|
|
8
5
|
import { Flight } from '.';
|
|
6
|
+
import { FlightStatusCode } from '.';
|
|
7
|
+
import { PreFlightInfo } from '.';
|
|
8
|
+
import { PostFlightInfo } from '.';
|
|
9
9
|
import { FlightTypeCode } from '.';
|
|
10
10
|
import { Syllabus } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
package/lib/PreFlightInfo.d.ts
CHANGED
package/lib/Price.d.ts
CHANGED
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { DepartureRisks } from '.';
|
|
1
2
|
import { DestinationRisks } from '.';
|
|
2
3
|
import { TripRisks } from '.';
|
|
3
4
|
import { WeatherRisks } from '.';
|
|
@@ -5,7 +6,6 @@ import { SpecialRisks } from '.';
|
|
|
5
6
|
import { Mitigation } from '.';
|
|
6
7
|
import { PilotQualificationsRisks } from '.';
|
|
7
8
|
import { CrewDutyDayRisks } from '.';
|
|
8
|
-
import { DepartureRisks } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/Syllabus.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { FlightCategoryCode } from '.';
|
|
1
2
|
import { InstructionTypeCode } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
4
|
import { ColumnDef } from '.';
|
|
4
|
-
import { FlightCategoryCode } 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 { 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;
|
package/lib/SystemConfig.d.ts
CHANGED
package/lib/TimeSeries.d.ts
CHANGED
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UserStatusCode } from '.';
|
|
2
1
|
import { BaseEntityEx } from '.';
|
|
3
2
|
import { ColumnDef } from '.';
|
|
4
3
|
import { UserTypeCode } from '.';
|
|
5
4
|
import { UserRoleFlag } from '.';
|
|
5
|
+
import { UserStatusCode } from '.';
|
|
6
6
|
export declare class User extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
email: string;
|
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 { UserStatusCode } from '.';
|
|
3
4
|
import { StringKeyValue } from '.';
|
|
4
5
|
import { User } from '.';
|
|
5
6
|
import { UserTypeCode } from '.';
|
|
6
|
-
import { UserStatusCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class UsersEndPoint {
|
|
9
9
|
private config;
|