@aya-flights/ngx-goox-lib 2.19.158 → 2.19.160
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 +5152 -5068
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +7 -7
- package/lib/Airplane.d.ts +5 -5
- package/lib/AirplanesEndPoint.d.ts +8 -8
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingPlan.d.ts +2 -2
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/Campaign.d.ts +2 -2
- package/lib/Certificate.d.ts +1 -1
- package/lib/CertificatesFilter.d.ts +1 -1
- package/lib/Contact.d.ts +4 -4
- package/lib/ContactGroup.d.ts +9 -0
- package/lib/ContactsEndPoint.d.ts +7 -7
- package/lib/ContactsGroupsEndPoint.d.ts +41 -0
- package/lib/CreditsEndPoint.d.ts +1 -1
- package/lib/Flight.d.ts +5 -5
- package/lib/FlightPlan.d.ts +2 -2
- package/lib/FlightRisk.d.ts +6 -6
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +8 -8
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/Group.d.ts +2 -2
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/LeadAction.d.ts +1 -1
- package/lib/LeadsEndPoint.d.ts +4 -4
- package/lib/Lesson.d.ts +1 -1
- package/lib/LogBookRecord.d.ts +1 -1
- package/lib/Lookup.d.ts +1 -1
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/Maintenance.d.ts +2 -2
- package/lib/MaintenancesEndPoint.d.ts +1 -1
- package/lib/MaintenancesFilter.d.ts +1 -1
- package/lib/MessageConfirmsEndPoint.d.ts +1 -1
- package/lib/MyAuthEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +3 -3
- package/lib/MyFlightsEndPoint.d.ts +1 -1
- package/lib/Price.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +2 -2
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/UserEndPoint.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/ValidationFlag.d.ts +0 -5
- package/lib/index.d.ts +121 -119
- package/lib/services.export.d.ts +24 -23
- 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 { StringKeyValue } from '.';
|
|
4
|
-
import { Flight } from '.';
|
|
5
|
-
import { AccountTypeCode } from '.';
|
|
6
|
-
import { AccountStatusCode } from '.';
|
|
7
3
|
import { Account } from '.';
|
|
4
|
+
import { AccountTypeCode } from '.';
|
|
8
5
|
import { FlightTypeCode } from '.';
|
|
9
|
-
import {
|
|
6
|
+
import { FlightStateCode } from '.';
|
|
10
7
|
import { FlightPurposeCode } from '.';
|
|
11
|
-
import {
|
|
8
|
+
import { Flight } from '.';
|
|
9
|
+
import { AccountStatusCode } from '.';
|
|
10
|
+
import { FlightStatusCode } from '.';
|
|
12
11
|
import { Credit } from '.';
|
|
13
|
-
import {
|
|
12
|
+
import { Document } from '.';
|
|
13
|
+
import { StringKeyValue } 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 {
|
|
2
|
-
import {
|
|
1
|
+
import { Propeller } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
3
3
|
import { AirplaneValidationFlag } from '.';
|
|
4
4
|
import { Magneto } from '.';
|
|
5
|
-
import { Propeller } from '.';
|
|
6
|
-
import { Fuel } from '.';
|
|
7
5
|
import { Engine } from '.';
|
|
6
|
+
import { Fuel } from '.';
|
|
8
7
|
import { WBConfig } from '.';
|
|
9
8
|
import { BaseEntityEx } from '.';
|
|
10
|
-
import {
|
|
9
|
+
import { TypeRatingFlag } from '.';
|
|
10
|
+
import { AirplaneStatusCode } 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 {
|
|
3
|
+
import { AirplaneStatusCode } from '.';
|
|
4
|
+
import { FlightStateCode } from '.';
|
|
4
5
|
import { Airplane } from '.';
|
|
5
|
-
import { FlightStatusCode } from '.';
|
|
6
|
-
import { FlightPurposeCode } from '.';
|
|
7
6
|
import { Flight } from '.';
|
|
7
|
+
import { Document } from '.';
|
|
8
|
+
import { StatusCode } from '.';
|
|
8
9
|
import { MaintenanceActionCode } from '.';
|
|
9
|
-
import { Maintenance } from '.';
|
|
10
|
-
import { AirplaneStatusCode } from '.';
|
|
11
|
-
import { FlightTypeCode } from '.';
|
|
12
|
-
import { FlightStateCode } from '.';
|
|
13
10
|
import { StringKeyValue } from '.';
|
|
14
|
-
import {
|
|
11
|
+
import { FlightTypeCode } from '.';
|
|
12
|
+
import { FlightStatusCode } 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;
|
|
@@ -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/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
|
accountId: string;
|
package/lib/BookingPlan.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { FlightStatusCode } from '.';
|
|
2
|
+
import { BaseEntityEx } from '.';
|
|
1
3
|
import { ColumnDef } from '.';
|
|
2
4
|
import { BookingTypeFlag } from '.';
|
|
3
5
|
import { FlightPurposeCode } from '.';
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
5
|
-
import { BaseEntityEx } from '.';
|
|
6
6
|
export declare class BookingPlan extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { BookingSlots } from '.';
|
|
4
3
|
import { BookingSlotsSet } from '.';
|
|
5
4
|
import { BookingSlot } from '.';
|
|
5
|
+
import { BookingSlots } 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 '.';
|
|
1
3
|
import { CurrencyCode } from '.';
|
|
2
4
|
import { BaseEntityEx } from '.';
|
|
3
5
|
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 { BaseEntityEx } from '.';
|
|
2
1
|
import { Address } from '.';
|
|
3
|
-
import { TypeRatingFlag } from '.';
|
|
4
2
|
import { LicenseKindFlag } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
|
+
import { AccountStatusCode } from '.';
|
|
6
|
+
import { TypeRatingFlag } from '.';
|
|
5
7
|
import { MedicalCertClassCode } from '.';
|
|
6
8
|
import { ValidationFlag } from '.';
|
|
7
|
-
import { AccountStatusCode } from '.';
|
|
8
9
|
import { FlightCategoryCode } from '.';
|
|
9
|
-
import { ColumnDef } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
11
11
|
accountId: string;
|
|
12
12
|
name: string;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
3
|
+
import { StringKeyValue } from '.';
|
|
4
|
+
export declare class ContactGroup extends BaseEntityEx {
|
|
5
|
+
name: string;
|
|
6
|
+
contacts: StringKeyValue[];
|
|
7
|
+
get(field: string): any;
|
|
8
|
+
}
|
|
9
|
+
export declare function GetContactGroupColumnsDef(): ColumnDef[];
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Document } from '.';
|
|
4
|
-
import { StringKeyValue } from '.';
|
|
5
|
-
import { FlightStateCode } from '.';
|
|
6
|
-
import { Flight } from '.';
|
|
7
3
|
import { MessageConfirm } from '.';
|
|
8
|
-
import { Contact } from '.';
|
|
9
|
-
import { StatusCode } from '.';
|
|
10
4
|
import { Certificate } from '.';
|
|
11
|
-
import { FlightStatusCode } from '.';
|
|
12
5
|
import { FlightPurposeCode } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
7
|
+
import { FlightStateCode } from '.';
|
|
8
|
+
import { Document } from '.';
|
|
9
|
+
import { StatusCode } from '.';
|
|
10
|
+
import { StringKeyValue } from '.';
|
|
11
|
+
import { FlightStatusCode } from '.';
|
|
12
|
+
import { Contact } from '.';
|
|
13
13
|
import { FlightTypeCode } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
|
+
import { GooxConfig } from '../config';
|
|
3
|
+
import { ContactGroup } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ContactsGroupsEndPoint {
|
|
7
|
+
private config;
|
|
8
|
+
private rest;
|
|
9
|
+
private baseUrl;
|
|
10
|
+
constructor(config: GooxConfig, rest: RestUtil);
|
|
11
|
+
/**
|
|
12
|
+
* Get new and empty flight template
|
|
13
|
+
*/
|
|
14
|
+
new(): import("rxjs").Observable<EntityResponse<ContactGroup>>;
|
|
15
|
+
/**
|
|
16
|
+
* Create new group
|
|
17
|
+
*/
|
|
18
|
+
create(body?: ContactGroup): import("rxjs").Observable<EntityResponse<ContactGroup>>;
|
|
19
|
+
/**
|
|
20
|
+
* Update existing group
|
|
21
|
+
*/
|
|
22
|
+
update(body?: ContactGroup): import("rxjs").Observable<EntityResponse<ContactGroup>>;
|
|
23
|
+
/**
|
|
24
|
+
* Delete group and all its content
|
|
25
|
+
*/
|
|
26
|
+
delete(id?: string): import("rxjs").Observable<ActionResponse>;
|
|
27
|
+
/**
|
|
28
|
+
* Get a single group by id
|
|
29
|
+
*/
|
|
30
|
+
get(id?: string): import("rxjs").Observable<EntityResponse<ContactGroup>>;
|
|
31
|
+
/**
|
|
32
|
+
* Find groups by query
|
|
33
|
+
*/
|
|
34
|
+
find(search?: string, sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<ContactGroup>>;
|
|
35
|
+
/**
|
|
36
|
+
* Lookup contacts-groups ID->Name by filter
|
|
37
|
+
*/
|
|
38
|
+
lookup(search?: string, sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<StringKeyValue>>;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContactsGroupsEndPoint, never>;
|
|
40
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ContactsGroupsEndPoint>;
|
|
41
|
+
}
|
package/lib/CreditsEndPoint.d.ts
CHANGED
|
@@ -46,7 +46,7 @@ export declare class CreditsEndPoint {
|
|
|
46
46
|
/**
|
|
47
47
|
* Recalculate account credits for all flights
|
|
48
48
|
*/
|
|
49
|
-
|
|
49
|
+
recalculateCreditsForFlights(accountId?: string): import("rxjs").Observable<ActionResponse>;
|
|
50
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<CreditsEndPoint, never>;
|
|
51
51
|
static ɵprov: i0.ɵɵInjectableDeclaration<CreditsEndPoint>;
|
|
52
52
|
}
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { FlightClassCode } from '.';
|
|
2
|
+
import { FlightTypeCode } from '.';
|
|
3
|
+
import { TOLData } from '.';
|
|
2
4
|
import { RiskAssessment } from '.';
|
|
3
5
|
import { BaseEntityEx } from '.';
|
|
6
|
+
import { ColumnDef } from '.';
|
|
4
7
|
import { FlightPurposeCode } from '.';
|
|
5
|
-
import { FlightClassCode } from '.';
|
|
6
8
|
import { FlightCategoryCode } from '.';
|
|
7
|
-
import {
|
|
9
|
+
import { FlightStatusCode } from '.';
|
|
8
10
|
import { BillingStatusCode } from '.';
|
|
9
|
-
import { TOLData } from '.';
|
|
10
11
|
import { Lesson } from '.';
|
|
11
|
-
import { ColumnDef } from '.';
|
|
12
12
|
export declare class Flight extends BaseEntityEx {
|
|
13
13
|
name: string;
|
|
14
14
|
description: string;
|
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
2
|
+
import { FlightTypeCode } from '.';
|
|
1
3
|
import { FlightStatusCode } from '.';
|
|
2
4
|
import { FlightStateCode } from '.';
|
|
3
5
|
import { FlightPurposeCode } from '.';
|
|
4
6
|
import { TOLData } from '.';
|
|
5
7
|
import { BaseEntityEx } from '.';
|
|
6
|
-
import { ColumnDef } from '.';
|
|
7
|
-
import { FlightTypeCode } 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 {
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
|
-
import { CrewDutyDayRisks } from '.';
|
|
1
|
+
import { PilotQualificationsRisks } from '.';
|
|
4
2
|
import { DepartureRisks } from '.';
|
|
5
3
|
import { DestinationRisks } from '.';
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import { PilotQualificationsRisks } from '.';
|
|
4
|
+
import { BaseEntityEx } from '.';
|
|
5
|
+
import { CrewDutyDayRisks } from '.';
|
|
9
6
|
import { TripRisks } from '.';
|
|
7
|
+
import { WeatherRisks } from '.';
|
|
10
8
|
import { SpecialRisks } from '.';
|
|
9
|
+
import { Mitigation } from '.';
|
|
10
|
+
import { ColumnDef } 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 { Flight } from '.';
|
|
4
|
-
import { PostFlightInfo } from '.';
|
|
5
|
-
import { BillingStatusCode } from '.';
|
|
6
|
-
import { FlightPurposeCode } from '.';
|
|
7
3
|
import { FlightPlan } from '.';
|
|
8
4
|
import { Point } from '.';
|
|
5
|
+
import { TimeSeries } from '.';
|
|
6
|
+
import { FlightTicket } from '.';
|
|
7
|
+
import { PreFlightInfo } from '.';
|
|
8
|
+
import { FlightStatusCode } from '.';
|
|
9
|
+
import { BillingStatusCode } from '.';
|
|
10
|
+
import { FlightPurposeCode } from '.';
|
|
9
11
|
import { Contact } from '.';
|
|
12
|
+
import { PostFlightInfo } from '.';
|
|
13
|
+
import { Flight } from '.';
|
|
10
14
|
import { AnyKeyValue } from '.';
|
|
11
15
|
import { FlightTypeCode } from '.';
|
|
12
|
-
import { FlightTicket } from '.';
|
|
13
|
-
import { FlightStatusCode } from '.';
|
|
14
|
-
import { TimeSeries } from '.';
|
|
15
|
-
import { PreFlightInfo } from '.';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
export declare class FlightsEndPoint {
|
|
18
18
|
private config;
|
package/lib/FlightsFilter.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BillingStatusCode } from '.';
|
|
2
|
+
import { FlightPurposeCode } from '.';
|
|
1
3
|
import { TimeFrame } from '.';
|
|
2
4
|
import { FlightTypeCode } from '.';
|
|
3
5
|
import { FlightStatusCode } from '.';
|
|
4
|
-
import { BillingStatusCode } from '.';
|
|
5
|
-
import { FlightPurposeCode } from '.';
|
|
6
6
|
export declare class FlightsFilter {
|
|
7
7
|
search: string;
|
|
8
8
|
period: TimeFrame;
|
package/lib/Group.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Permission } from '.';
|
|
2
|
-
import { StringKeyValue } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { Permission } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
export declare class Group extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
email: string;
|
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/LeadAction.d.ts
CHANGED
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 {
|
|
3
|
+
import { TimeSeries } from '.';
|
|
4
|
+
import { LeadAction } from '.';
|
|
4
5
|
import { IntEnumValue } from '.';
|
|
5
6
|
import { IntKeyValue } from '.';
|
|
7
|
+
import { Lead } from '.';
|
|
6
8
|
import { LeadStatusCode } from '.';
|
|
7
|
-
import { TimeSeries } from '.';
|
|
8
9
|
import { Booking } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import { LeadAction } from '.';
|
|
10
|
+
import { Point } 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/LogBookRecord.d.ts
CHANGED
package/lib/Lookup.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 { StatusCode } from '.';
|
|
2
|
-
import { MaintenanceActionCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { StatusCode } from '.';
|
|
4
|
+
import { MaintenanceActionCode } from '.';
|
|
5
5
|
export declare class Maintenance extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
|
@@ -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;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { MessageConfirm } from '.';
|
|
4
3
|
import { MessageTypeCode } from '.';
|
|
5
4
|
import { ConfirmStatusCode } from '.';
|
|
6
5
|
import { PriorityCode } from '.';
|
|
6
|
+
import { MessageConfirm } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MessageConfirmsEndPoint {
|
|
9
9
|
private config;
|
package/lib/MyAuthEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { LoginParams } from '.';
|
|
4
3
|
import { Contact } from '.';
|
|
4
|
+
import { LoginParams } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class MyAuthEndPoint {
|
|
7
7
|
private config;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Booking } from '.';
|
|
3
4
|
import { BookingTypeFlag } from '.';
|
|
4
|
-
import {
|
|
5
|
+
import { BookingSlot } from '.';
|
|
5
6
|
import { Airplane } from '.';
|
|
6
|
-
import { Booking } from '.';
|
|
7
7
|
import { BookingStatusCode } from '.';
|
|
8
|
-
import {
|
|
8
|
+
import { Lookup } 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
3
|
import { FlightTypeCode } from '.';
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
4
5
|
import { FlightPlan } from '.';
|
|
5
6
|
import { Syllabus } from '.';
|
|
6
7
|
import { PostFlightInfo } from '.';
|
|
7
8
|
import { Flight } from '.';
|
|
8
|
-
import { FlightStatusCode } from '.';
|
|
9
9
|
import { InstructionTypeCode } from '.';
|
|
10
10
|
import { PreFlightInfo } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
package/lib/Price.d.ts
CHANGED
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import { SpecialRisks } from '.';
|
|
2
|
+
import { Mitigation } from '.';
|
|
1
3
|
import { PilotQualificationsRisks } from '.';
|
|
2
4
|
import { CrewDutyDayRisks } from '.';
|
|
3
5
|
import { DepartureRisks } from '.';
|
|
4
6
|
import { DestinationRisks } from '.';
|
|
5
7
|
import { TripRisks } from '.';
|
|
6
8
|
import { WeatherRisks } from '.';
|
|
7
|
-
import { SpecialRisks } from '.';
|
|
8
|
-
import { Mitigation } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
|
@@ -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/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;
|
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 { StringKeyValue } from '.';
|
|
4
3
|
import { User } from '.';
|
|
5
4
|
import { UserTypeCode } from '.';
|
|
6
5
|
import { UserStatusCode } from '.';
|
|
6
|
+
import { StringKeyValue } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class UsersEndPoint {
|
|
9
9
|
private config;
|
package/lib/ValidationFlag.d.ts
CHANGED
|
@@ -7,15 +7,10 @@ export declare enum ValidationFlag {
|
|
|
7
7
|
DUAL_ENG_CERT = 8,
|
|
8
8
|
INST_666_CERT = 16,
|
|
9
9
|
INST_REC_CERT = 32,
|
|
10
|
-
DAYTIME_FLY = 64,
|
|
11
|
-
NIGHTTIME_FLY = 128,
|
|
12
|
-
NIGHT_CVFR_CUR = 256,
|
|
13
10
|
ROUTE_EXAM = 512,
|
|
14
|
-
DI_CERT = 1024,
|
|
15
11
|
INTERNATIONAL = 2048,
|
|
16
12
|
ENGLISH_PROF = 4096,
|
|
17
13
|
INSTRUCTOR_LICENSE = 8192,
|
|
18
|
-
COMPANY_CHECK = 16384,
|
|
19
14
|
COMPANY_EXAMIN = 32768,
|
|
20
15
|
RT_CERT = 65536
|
|
21
16
|
}
|