@aya-flights/ngx-goox-lib 2.19.130 → 2.19.132
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 +5208 -5176
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +5 -5
- package/lib/Airplane.d.ts +5 -5
- package/lib/AirplanesEndPoint.d.ts +8 -8
- package/lib/AuditLog.d.ts +1 -1
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +2 -2
- package/lib/Campaign.d.ts +1 -1
- package/lib/Certificate.d.ts +1 -1
- package/lib/Contact.d.ts +3 -3
- package/lib/ContactsEndPoint.d.ts +5 -5
- package/lib/ErrorCode.d.ts +5 -1
- package/lib/Flight.d.ts +5 -5
- package/lib/FlightRisk.d.ts +4 -4
- package/lib/FlightTicketsEndPoint.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +8 -8
- package/lib/FlightsFilter.d.ts +1 -1
- package/lib/Group.d.ts +1 -1
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/LeadsEndPoint.d.ts +1 -1
- package/lib/LogBookRecord.d.ts +1 -1
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/Maintenance.d.ts +1 -1
- package/lib/MaintenancesEndPoint.d.ts +1 -1
- package/lib/MessageConfirmsEndPoint.d.ts +2 -2
- package/lib/MyAuthEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +11 -2
- package/lib/MyFlightsEndPoint.d.ts +5 -5
- package/lib/PostFlightInfo.d.ts +1 -1
- package/lib/PreFlightInfo.d.ts +1 -1
- package/lib/Price.d.ts +1 -1
- package/lib/Syllabus.d.ts +1 -1
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/UserEndPoint.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +113 -113
- package/lib/services.export.d.ts +21 -21
- package/package.json +1 -1
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
3
|
+
import { Credit } from '.';
|
|
4
4
|
import { Account } from '.';
|
|
5
5
|
import { FlightTypeCode } from '.';
|
|
6
|
-
import { Credit } from '.';
|
|
7
|
-
import { AccountStatusCode } from '.';
|
|
8
6
|
import { FlightStateCode } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import { Flight } from '.';
|
|
7
|
+
import { AccountStatusCode } from '.';
|
|
11
8
|
import { StringKeyValue } from '.';
|
|
12
9
|
import { FlightStatusCode } from '.';
|
|
10
|
+
import { Document } from '.';
|
|
11
|
+
import { FlightPurposeCode } from '.';
|
|
12
|
+
import { Flight } from '.';
|
|
13
13
|
import * as i0 from "@angular/core";
|
|
14
14
|
export declare class AccountsEndPoint {
|
|
15
15
|
private config;
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { AirplaneValidationFlag } from '.';
|
|
1
|
+
import { Engine } from '.';
|
|
3
2
|
import { Magneto } from '.';
|
|
4
|
-
import { Propeller } from '.';
|
|
5
3
|
import { Fuel } from '.';
|
|
6
|
-
import { WBConfig } from '.';
|
|
7
4
|
import { BaseEntityEx } from '.';
|
|
5
|
+
import { AirplaneStatusCode } from '.';
|
|
6
|
+
import { AirplaneValidationFlag } from '.';
|
|
7
|
+
import { WBConfig } from '.';
|
|
8
8
|
import { ColumnDef } from '.';
|
|
9
9
|
import { TypeRatingFlag } from '.';
|
|
10
|
-
import {
|
|
10
|
+
import { Propeller } 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 {
|
|
4
|
-
import {
|
|
5
|
-
import { AirplaneStatusCode } from '.';
|
|
3
|
+
import { Flight } from '.';
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
6
5
|
import { FlightStateCode } from '.';
|
|
7
|
-
import { Document } from '.';
|
|
8
6
|
import { Airplane } from '.';
|
|
9
|
-
import {
|
|
7
|
+
import { AirplaneStatusCode } from '.';
|
|
8
|
+
import { FlightTypeCode } from '.';
|
|
9
|
+
import { Document } from '.';
|
|
10
|
+
import { StatusCode } from '.';
|
|
10
11
|
import { StringKeyValue } from '.';
|
|
11
|
-
import { FlightStatusCode } from '.';
|
|
12
12
|
import { FlightPurposeCode } from '.';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
13
|
+
import { MaintenanceActionCode } 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/AuditLog.d.ts
CHANGED
|
@@ -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;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Booking } from '.';
|
|
4
|
-
import { BookingStatusCode } from '.';
|
|
5
3
|
import { TimeSeries } from '.';
|
|
6
4
|
import { BookingPlan } from '.';
|
|
5
|
+
import { Booking } from '.';
|
|
6
|
+
import { BookingStatusCode } 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 { 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;
|
package/lib/Certificate.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { ValidationFlag } from '.';
|
|
1
2
|
import { StatusCode } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
4
|
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 { AccountStatusCode } from '.';
|
|
2
|
+
import { MedicalCertClassCode } from '.';
|
|
1
3
|
import { ValidationFlag } from '.';
|
|
2
4
|
import { FlightCategoryCode } from '.';
|
|
5
|
+
import { BaseEntityEx } from '.';
|
|
3
6
|
import { ColumnDef } from '.';
|
|
4
|
-
import { AccountStatusCode } from '.';
|
|
5
7
|
import { Address } from '.';
|
|
6
8
|
import { TypeRatingFlag } from '.';
|
|
7
9
|
import { LicenseKindFlag } from '.';
|
|
8
|
-
import { MedicalCertClassCode } from '.';
|
|
9
|
-
import { BaseEntityEx } 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
3
|
import { Contact } from '.';
|
|
4
|
-
import { Certificate } from '.';
|
|
5
|
-
import { MessageConfirm } from '.';
|
|
6
|
-
import { StringKeyValue } from '.';
|
|
7
|
-
import { Document } from '.';
|
|
8
4
|
import { StatusCode } from '.';
|
|
5
|
+
import { MessageConfirm } from '.';
|
|
9
6
|
import { FlightTypeCode } from '.';
|
|
10
|
-
import { FlightStatusCode } from '.';
|
|
11
7
|
import { FlightStateCode } from '.';
|
|
8
|
+
import { StringKeyValue } from '.';
|
|
9
|
+
import { Certificate } from '.';
|
|
10
|
+
import { FlightStatusCode } from '.';
|
|
12
11
|
import { FlightPurposeCode } from '.';
|
|
13
12
|
import { Flight } from '.';
|
|
13
|
+
import { Document } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
|
16
16
|
private config;
|
package/lib/ErrorCode.d.ts
CHANGED
|
@@ -8,7 +8,11 @@ export declare enum ErrorCode {
|
|
|
8
8
|
FLIGHT_PILOTS_ONLY = -1001,
|
|
9
9
|
FLIGHT_PIC_ONLY = -1002,
|
|
10
10
|
PREFLIGHT_ALREADY_REPORTED = -1010,
|
|
11
|
-
POSTFLIGHT_ALREADY_REPORTED = -1011
|
|
11
|
+
POSTFLIGHT_ALREADY_REPORTED = -1011,
|
|
12
|
+
WB_EXCEED_MTOW = -1021,
|
|
13
|
+
WB_EXCEED_CG = -1022,
|
|
14
|
+
WB_EXCEED_BAGGAGE = -1023,
|
|
15
|
+
WB_MIN_FUEL = -1024
|
|
12
16
|
}
|
|
13
17
|
export declare function GetErrorCodes(): Tuple<ErrorCode, string>[];
|
|
14
18
|
export declare function MapErrorCodes(): Map<ErrorCode, string>;
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { FlightPurposeCode } from '.';
|
|
2
|
+
import { FlightCategoryCode } from '.';
|
|
3
|
+
import { FlightStatusCode } from '.';
|
|
2
4
|
import { TOLData } from '.';
|
|
3
5
|
import { Lesson } from '.';
|
|
4
|
-
import { RiskAssessment } from '.';
|
|
5
6
|
import { BaseEntityEx } from '.';
|
|
6
7
|
import { FlightClassCode } from '.';
|
|
7
|
-
import { FlightCategoryCode } from '.';
|
|
8
8
|
import { FlightTypeCode } from '.';
|
|
9
|
-
import {
|
|
9
|
+
import { BillingStatusCode } from '.';
|
|
10
|
+
import { RiskAssessment } from '.';
|
|
10
11
|
import { ColumnDef } from '.';
|
|
11
|
-
import { FlightPurposeCode } from '.';
|
|
12
12
|
export declare class Flight extends BaseEntityEx {
|
|
13
13
|
name: string;
|
|
14
14
|
description: string;
|
package/lib/FlightRisk.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
+
import { DepartureRisks } from '.';
|
|
2
|
+
import { TripRisks } from '.';
|
|
1
3
|
import { SpecialRisks } from '.';
|
|
2
4
|
import { Mitigation } from '.';
|
|
5
|
+
import { BaseEntityEx } from '.';
|
|
3
6
|
import { ColumnDef } from '.';
|
|
4
7
|
import { PilotQualificationsRisks } from '.';
|
|
5
8
|
import { CrewDutyDayRisks } from '.';
|
|
6
|
-
import { WeatherRisks } from '.';
|
|
7
|
-
import { BaseEntityEx } from '.';
|
|
8
|
-
import { DepartureRisks } from '.';
|
|
9
9
|
import { DestinationRisks } from '.';
|
|
10
|
-
import {
|
|
10
|
+
import { WeatherRisks } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { TicketStatusCode } from '.';
|
|
4
3
|
import { FlightTicket } from '.';
|
|
4
|
+
import { TicketStatusCode } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class FlightTicketsEndPoint {
|
|
7
7
|
private config;
|
package/lib/FlightsEndPoint.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightPlan } from '.';
|
|
4
|
-
import { Flight } from '.';
|
|
5
|
-
import { AnyKeyValue } from '.';
|
|
6
|
-
import { FlightPurposeCode } from '.';
|
|
7
|
-
import { FlightStatusCode } from '.';
|
|
8
|
-
import { PreFlightInfo } from '.';
|
|
9
3
|
import { Contact } from '.';
|
|
10
4
|
import { FlightTicket } from '.';
|
|
11
|
-
import {
|
|
5
|
+
import { AnyKeyValue } from '.';
|
|
12
6
|
import { FlightTypeCode } from '.';
|
|
13
|
-
import { BillingStatusCode } from '.';
|
|
14
7
|
import { TimeSeries } from '.';
|
|
8
|
+
import { PreFlightInfo } from '.';
|
|
9
|
+
import { PostFlightInfo } from '.';
|
|
10
|
+
import { Flight } from '.';
|
|
11
|
+
import { FlightPlan } from '.';
|
|
12
|
+
import { FlightStatusCode } from '.';
|
|
13
|
+
import { BillingStatusCode } from '.';
|
|
14
|
+
import { FlightPurposeCode } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class FlightsEndPoint {
|
|
17
17
|
private config;
|
package/lib/FlightsFilter.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { FlightPurposeCode } from '.';
|
|
2
1
|
import { TimeFrame } from '.';
|
|
3
2
|
import { FlightTypeCode } from '.';
|
|
4
3
|
import { FlightStatusCode } from '.';
|
|
5
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
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/LeadsEndPoint.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Lead } from '.';
|
|
4
3
|
import { LeadStatusCode } from '.';
|
|
5
4
|
import { TimeSeries } from '.';
|
|
6
5
|
import { LeadAction } from '.';
|
|
6
|
+
import { Lead } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class LeadsEndPoint {
|
|
9
9
|
private config;
|
package/lib/LogBookRecord.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
1
|
import { StatusCode } from '.';
|
|
3
2
|
import { MaintenanceActionCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } 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 { MaintenanceActionCode } from '.';
|
|
4
3
|
import { StatusCode } from '.';
|
|
5
4
|
import { Maintenance } from '.';
|
|
5
|
+
import { MaintenanceActionCode } 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 { MessageTypeCode } from '.';
|
|
4
|
-
import { ConfirmStatusCode } from '.';
|
|
5
3
|
import { PriorityCode } from '.';
|
|
6
4
|
import { MessageConfirm } from '.';
|
|
5
|
+
import { MessageTypeCode } from '.';
|
|
6
|
+
import { ConfirmStatusCode } 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,10 +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 { Lookup } from '.';
|
|
6
4
|
import { BookingSlot } from '.';
|
|
5
|
+
import { Airplane } from '.';
|
|
6
|
+
import { BookingStatusCode } from '.';
|
|
7
7
|
import { Booking } from '.';
|
|
8
|
+
import { BookingTypeFlag } from '.';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
export declare class MyBookingsEndPoint {
|
|
10
11
|
private config;
|
|
@@ -47,6 +48,14 @@ export declare class MyBookingsEndPoint {
|
|
|
47
48
|
* Find all active pilots
|
|
48
49
|
*/
|
|
49
50
|
findPilots(search?: string): import("rxjs").Observable<EntitiesResponse<Lookup>>;
|
|
51
|
+
/**
|
|
52
|
+
* Find all airplanes
|
|
53
|
+
*/
|
|
54
|
+
findAirplanes(): import("rxjs").Observable<EntitiesResponse<Airplane>>;
|
|
55
|
+
/**
|
|
56
|
+
* Get a single airplane by id
|
|
57
|
+
*/
|
|
58
|
+
getAirplane(id?: string): import("rxjs").Observable<EntityResponse<Airplane>>;
|
|
50
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<MyBookingsEndPoint, never>;
|
|
51
60
|
static ɵprov: i0.ɵɵInjectableDeclaration<MyBookingsEndPoint>;
|
|
52
61
|
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { PreFlightInfo } from '.';
|
|
4
|
-
import { PostFlightInfo } from '.';
|
|
5
|
-
import { FlightStatusCode } from '.';
|
|
6
|
-
import { FlightTypeCode } from '.';
|
|
7
3
|
import { FlightPlan } from '.';
|
|
8
4
|
import { InstructionTypeCode } from '.';
|
|
9
|
-
import {
|
|
5
|
+
import { PreFlightInfo } from '.';
|
|
10
6
|
import { Flight } from '.';
|
|
7
|
+
import { FlightTypeCode } from '.';
|
|
8
|
+
import { FlightStatusCode } from '.';
|
|
9
|
+
import { Syllabus } from '.';
|
|
10
|
+
import { PostFlightInfo } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class MyFlightsEndPoint {
|
|
13
13
|
private config;
|
package/lib/PostFlightInfo.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { FlightCategoryCode } from '.';
|
|
1
2
|
import { AssessmentCode } from '.';
|
|
2
3
|
import { FlightPurposeCode } from '.';
|
|
3
4
|
import { FlightTypeCode } from '.';
|
|
4
|
-
import { FlightCategoryCode } from '.';
|
|
5
5
|
export declare class PostFlightInfo {
|
|
6
6
|
flightId: string;
|
|
7
7
|
flightNumber: number;
|
package/lib/PreFlightInfo.d.ts
CHANGED
package/lib/Price.d.ts
CHANGED
package/lib/Syllabus.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { FlightCategoryCode } from '.';
|
|
3
2
|
import { InstructionTypeCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Syllabus extends BaseEntityEx {
|
|
6
6
|
plan: FlightCategoryCode;
|
|
7
7
|
type: InstructionTypeCode;
|
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;
|
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;
|