@aya-flights/ngx-goox-lib 2.19.83 → 2.19.84
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 +5078 -5078
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +2 -2
- package/lib/AccountsEndPoint.d.ts +6 -6
- package/lib/Airplane.d.ts +5 -5
- package/lib/AirplanesEndPoint.d.ts +5 -5
- package/lib/AuditLog.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/BookingSlotsSet.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/CertificatesFilter.d.ts +1 -1
- package/lib/Contact.d.ts +5 -5
- package/lib/ContactsEndPoint.d.ts +7 -7
- package/lib/Credit.d.ts +2 -2
- package/lib/CreditsFilter.d.ts +1 -1
- package/lib/Flight.d.ts +10 -10
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightPassenger.d.ts +1 -1
- package/lib/FlightPlan.d.ts +1 -1
- package/lib/FlightRisk.d.ts +6 -6
- package/lib/FlightsEndPoint.d.ts +8 -8
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/Lesson.d.ts +2 -2
- package/lib/LookupGroup.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 +1 -1
- package/lib/MyBookingsEndPoint.d.ts +4 -4
- package/lib/MyFlightsEndPoint.d.ts +3 -3
- package/lib/PostFlightData.d.ts +2 -2
- package/lib/PreFlightData.d.ts +1 -1
- package/lib/PriceListEndPoint.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +2 -2
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/TimeSeries.d.ts +1 -1
- package/lib/User.d.ts +1 -1
- package/lib/UserEndPoint.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +118 -118
- package/lib/services.export.d.ts +19 -19
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { AccountTypeCode } from '.';
|
|
2
|
+
import { AccountStatusCode } from '.';
|
|
1
3
|
import { Address } from '.';
|
|
2
4
|
import { BaseEntityEx } from '.';
|
|
3
5
|
import { ColumnDef } from '.';
|
|
4
|
-
import { AccountTypeCode } from '.';
|
|
5
|
-
import { AccountStatusCode } from '.';
|
|
6
6
|
export declare class Account extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
enName: string;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Account } from '.';
|
|
4
3
|
import { FlightTypeCode } from '.';
|
|
5
|
-
import { FlightStateCode } from '.';
|
|
6
|
-
import { FlightPurposeCode } from '.';
|
|
7
4
|
import { Flight } from '.';
|
|
8
|
-
import {
|
|
9
|
-
import { Document } from '.';
|
|
5
|
+
import { Account } from '.';
|
|
10
6
|
import { AccountStatusCode } from '.';
|
|
11
|
-
import {
|
|
7
|
+
import { Document } from '.';
|
|
12
8
|
import { FlightStatusCode } from '.';
|
|
9
|
+
import { FlightStateCode } from '.';
|
|
10
|
+
import { Credit } from '.';
|
|
11
|
+
import { StringKeyValue } from '.';
|
|
12
|
+
import { FlightPurposeCode } 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,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { TypeRatingFlag } from '.';
|
|
2
2
|
import { AirplaneValidationFlag } from '.';
|
|
3
|
-
import { Magneto } from '.';
|
|
4
|
-
import { Engine } from '.';
|
|
5
3
|
import { Propeller } from '.';
|
|
6
4
|
import { Fuel } from '.';
|
|
7
|
-
import { ColumnDef } from '.';
|
|
8
|
-
import { TypeRatingFlag } from '.';
|
|
9
5
|
import { AirplaneStatusCode } from '.';
|
|
6
|
+
import { Engine } from '.';
|
|
7
|
+
import { Magneto } from '.';
|
|
8
|
+
import { BaseEntityEx } from '.';
|
|
9
|
+
import { ColumnDef } from '.';
|
|
10
10
|
export declare class Airplane extends BaseEntityEx {
|
|
11
11
|
name: string;
|
|
12
12
|
description: string;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { FlightStateCode } from '.';
|
|
3
4
|
import { Airplane } from '.';
|
|
5
|
+
import { FlightTypeCode } from '.';
|
|
4
6
|
import { FlightStatusCode } from '.';
|
|
5
|
-
import { StatusCode } from '.';
|
|
6
|
-
import { FlightStateCode } from '.';
|
|
7
7
|
import { Flight } from '.';
|
|
8
|
-
import {
|
|
8
|
+
import { Document } from '.';
|
|
9
|
+
import { StatusCode } from '.';
|
|
9
10
|
import { Maintenance } from '.';
|
|
10
11
|
import { StringKeyValue } from '.';
|
|
11
|
-
import { FlightTypeCode } from '.';
|
|
12
12
|
import { FlightPurposeCode } from '.';
|
|
13
|
-
import { Document } from '.';
|
|
14
13
|
import { MaintenanceActionCode } from '.';
|
|
14
|
+
import { AirplaneStatusCode } 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
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
|
accountId: string;
|
package/lib/BookingPlan.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BookingTypeFlag } from '.';
|
|
2
|
+
import { FlightPurposeCode } from '.';
|
|
1
3
|
import { FlightStatusCode } from '.';
|
|
2
4
|
import { BaseEntityEx } from '.';
|
|
3
5
|
import { ColumnDef } from '.';
|
|
4
|
-
import { BookingTypeFlag } from '.';
|
|
5
|
-
import { FlightPurposeCode } 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 { BookingSlot } from '.';
|
|
3
4
|
import { BookingSlots } from '.';
|
|
4
5
|
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 { TimeSeries } from '.';
|
|
4
|
-
import { BookingPlan } from '.';
|
|
5
3
|
import { Booking } from '.';
|
|
6
4
|
import { BookingStatusCode } from '.';
|
|
5
|
+
import { TimeSeries } from '.';
|
|
6
|
+
import { BookingPlan } 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;
|
package/lib/Certificate.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { ValidationFlag } from '.';
|
|
3
2
|
import { StatusCode } from '.';
|
|
4
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 { AccountStatusCode } from '.';
|
|
3
|
-
import { LicenseKindFlag } from '.';
|
|
1
|
+
import { TypeRatingFlag } from '.';
|
|
4
2
|
import { ValidationFlag } from '.';
|
|
5
|
-
import { FlightCategoryCode } from '.';
|
|
6
3
|
import { BaseEntityEx } from '.';
|
|
7
4
|
import { ColumnDef } from '.';
|
|
5
|
+
import { AccountStatusCode } from '.';
|
|
8
6
|
import { Address } from '.';
|
|
9
|
-
import {
|
|
7
|
+
import { LicenseKindFlag } from '.';
|
|
8
|
+
import { MedicalCertClassCode } 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 { StringKeyValue } from '.';
|
|
4
|
-
import { FlightTypeCode } from '.';
|
|
5
|
-
import { FlightStateCode } from '.';
|
|
6
|
-
import { Flight } from '.';
|
|
7
3
|
import { StatusCode } from '.';
|
|
8
|
-
import {
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
9
5
|
import { FlightStatusCode } from '.';
|
|
10
|
-
import { MessageConfirm } from '.';
|
|
11
|
-
import { Contact } from '.';
|
|
12
6
|
import { Document } from '.';
|
|
7
|
+
import { FlightStateCode } from '.';
|
|
13
8
|
import { FlightPurposeCode } from '.';
|
|
9
|
+
import { Contact } from '.';
|
|
10
|
+
import { Flight } from '.';
|
|
11
|
+
import { MessageConfirm } from '.';
|
|
12
|
+
import { FlightTypeCode } from '.';
|
|
13
|
+
import { Certificate } 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 { TransactionTypeCode } from '.';
|
|
2
|
-
import { CurrencyCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
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/CreditsFilter.d.ts
CHANGED
package/lib/Flight.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
+
import { FlightCategoryCode } from '.';
|
|
2
|
+
import { Billing } from '.';
|
|
3
|
+
import { FlightClassCode } from '.';
|
|
4
|
+
import { FlightTypeCode } from '.';
|
|
5
|
+
import { FlightStatusCode } from '.';
|
|
6
|
+
import { BillingStatusCode } from '.';
|
|
1
7
|
import { OnBoard } from '.';
|
|
2
8
|
import { RiskAssessment } from '.';
|
|
3
|
-
import {
|
|
4
|
-
import { FlightClassCode } from '.';
|
|
9
|
+
import { FlightPurposeCode } from '.';
|
|
5
10
|
import { FlightStateCode } from '.';
|
|
6
|
-
import { BillingStatusCode } from '.';
|
|
7
|
-
import { ColumnDef } from '.';
|
|
8
|
-
import { FlightCategoryCode } from '.';
|
|
9
|
-
import { FlightTypeCode } from '.';
|
|
10
|
-
import { Lesson } from '.';
|
|
11
11
|
import { TOLData } from '.';
|
|
12
12
|
import { ReFuel } from '.';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
13
|
+
import { Lesson } from '.';
|
|
14
|
+
import { BaseEntityEx } from '.';
|
|
15
|
+
import { ColumnDef } from '.';
|
|
16
16
|
export declare class Flight extends BaseEntityEx {
|
|
17
17
|
name: string;
|
|
18
18
|
description: string;
|
package/lib/FlightBilling.d.ts
CHANGED
package/lib/FlightPassenger.d.ts
CHANGED
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { FlightStateCode } from '.';
|
|
2
1
|
import { FlightPurposeCode } from '.';
|
|
3
2
|
import { TOLData } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
5
4
|
import { ColumnDef } from '.';
|
|
6
5
|
import { FlightTypeCode } from '.';
|
|
7
6
|
import { FlightStatusCode } from '.';
|
|
7
|
+
import { FlightStateCode } 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
|
-
import { WeatherRisks } from '.';
|
|
3
|
-
import { Mitigation } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
1
|
import { CrewDutyDayRisks } from '.';
|
|
7
2
|
import { DepartureRisks } from '.';
|
|
8
3
|
import { DestinationRisks } from '.';
|
|
9
|
-
import { TripRisks } from '.';
|
|
10
4
|
import { SpecialRisks } from '.';
|
|
5
|
+
import { BaseEntityEx } from '.';
|
|
6
|
+
import { PilotQualificationsRisks } from '.';
|
|
7
|
+
import { TripRisks } from '.';
|
|
8
|
+
import { WeatherRisks } 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/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 {
|
|
3
|
+
import { FlightPlan } from '.';
|
|
4
4
|
import { PreFlightInfo } from '.';
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import { Flight } from '.';
|
|
5
|
+
import { TimeSeries } from '.';
|
|
6
|
+
import { FlightTicket } from '.';
|
|
8
7
|
import { AnyKeyValue } from '.';
|
|
8
|
+
import { FlightStatusCode } from '.';
|
|
9
9
|
import { FlightPurposeCode } from '.';
|
|
10
|
+
import { PostFlightInfo } from '.';
|
|
11
|
+
import { Flight } from '.';
|
|
12
|
+
import { FlightTypeCode } from '.';
|
|
13
|
+
import { BillingStatusCode } from '.';
|
|
10
14
|
import { Contact } from '.';
|
|
11
|
-
import { FlightTicket } from '.';
|
|
12
|
-
import { FlightPlan } from '.';
|
|
13
|
-
import { FlightStatusCode } from '.';
|
|
14
|
-
import { TimeSeries } 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 { 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/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/Lesson.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { FlightCategoryCode } from '.';
|
|
2
|
-
import { LessonSubjectCode } from '.';
|
|
3
1
|
import { AssessmentCode } from '.';
|
|
4
2
|
import { LessonTypeCode } from '.';
|
|
3
|
+
import { FlightCategoryCode } from '.';
|
|
4
|
+
import { LessonSubjectCode } from '.';
|
|
5
5
|
export declare class Lesson {
|
|
6
6
|
number: number;
|
|
7
7
|
type: LessonTypeCode;
|
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 { StatusCode } from '.';
|
|
2
1
|
import { MaintenanceActionCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { StatusCode } 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 '.';
|
|
4
3
|
import { MaintenanceActionCode } from '.';
|
|
5
4
|
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 { PriorityCode } from '.';
|
|
3
4
|
import { MessageConfirm } from '.';
|
|
4
5
|
import { MessageTypeCode } from '.';
|
|
5
6
|
import { ConfirmStatusCode } from '.';
|
|
6
|
-
import { PriorityCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MessageConfirmsEndPoint {
|
|
9
9
|
private config;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import { Lookup } from '.';
|
|
5
|
-
import { BookingSlots } from '.';
|
|
3
|
+
import { BookingSlot } from '.';
|
|
6
4
|
import { Booking } from '.';
|
|
7
5
|
import { BookingStatusCode } from '.';
|
|
6
|
+
import { BookingTypeFlag } from '.';
|
|
7
|
+
import { Lookup } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class MyBookingsEndPoint {
|
|
10
10
|
private config;
|
|
@@ -38,7 +38,7 @@ export declare class MyBookingsEndPoint {
|
|
|
38
38
|
/**
|
|
39
39
|
* Find open bookings slots
|
|
40
40
|
*/
|
|
41
|
-
getBookingSlots(year?: number, month?: number, day?: number, type?: BookingTypeFlag, airplaneId?: string): import("rxjs").Observable<EntitiesResponse<
|
|
41
|
+
getBookingSlots(year?: number, month?: number, day?: number, type?: BookingTypeFlag, airplaneId?: string): import("rxjs").Observable<EntitiesResponse<BookingSlot>>;
|
|
42
42
|
/**
|
|
43
43
|
* Find all instructors and mark the student's default instructor
|
|
44
44
|
*/
|
|
@@ -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 { FlightTypeCode } from '.';
|
|
5
3
|
import { FlightPlan } from '.';
|
|
6
|
-
import {
|
|
4
|
+
import { PostFlightInfo } from '.';
|
|
7
5
|
import { Flight } from '.';
|
|
6
|
+
import { FlightTypeCode } from '.';
|
|
8
7
|
import { FlightStatusCode } from '.';
|
|
8
|
+
import { PreFlightInfo } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyFlightsEndPoint {
|
|
11
11
|
private config;
|
package/lib/PostFlightData.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
2
|
+
import { FlightTypeCode } from '.';
|
|
1
3
|
import { FlightPurposeCode } from '.';
|
|
2
4
|
import { OnBoard } from '.';
|
|
3
5
|
import { TOLData } from '.';
|
|
4
6
|
import { ReFuel } from '.';
|
|
5
7
|
import { Lesson } from '.';
|
|
6
8
|
import { BaseEntityEx } from '.';
|
|
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 { ReFuel } from '.';
|
|
2
1
|
import { Lesson } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
@@ -6,6 +5,7 @@ import { FlightTypeCode } from '.';
|
|
|
6
5
|
import { FlightPurposeCode } from '.';
|
|
7
6
|
import { OnBoard } from '.';
|
|
8
7
|
import { TOLData } from '.';
|
|
8
|
+
import { ReFuel } from '.';
|
|
9
9
|
export declare class PreFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightPurposeCode } from '.';
|
|
4
3
|
import { Price } from '.';
|
|
4
|
+
import { FlightPurposeCode } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class PriceListEndPoint {
|
|
7
7
|
private config;
|
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 { Syllabus } from '.';
|
|
3
4
|
import { FlightCategoryCode } from '.';
|
|
4
5
|
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/TimeSeries.d.ts
CHANGED
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { UserTypeCode } from '.';
|
|
3
2
|
import { UserRoleFlag } from '.';
|
|
4
3
|
import { UserStatusCode } from '.';
|
|
5
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 { User } from '.';
|
|
4
3
|
import { LoginParams } from '.';
|
|
4
|
+
import { User } 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 '.';
|
|
3
4
|
import { User } from '.';
|
|
4
5
|
import { UserTypeCode } from '.';
|
|
5
6
|
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;
|