@aya-flights/ngx-goox-lib 2.18.127 → 2.18.129
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/esm2022/lib/Account.mjs +1 -1
- package/esm2022/lib/AccountsEndPoint.mjs +1 -1
- package/esm2022/lib/Airplane.mjs +3 -2
- package/esm2022/lib/AirplanesEndPoint.mjs +1 -1
- package/esm2022/lib/AuditLogsEndPoint.mjs +1 -1
- package/esm2022/lib/Booking.mjs +1 -1
- package/esm2022/lib/BookingSlotsSet.mjs +2 -2
- package/esm2022/lib/BookingsEndPoint.mjs +1 -1
- package/esm2022/lib/BookingsFilter.mjs +1 -1
- package/esm2022/lib/Campaign.mjs +1 -1
- package/esm2022/lib/CampaignsEndPoint.mjs +1 -1
- package/esm2022/lib/CertificatesEndPoint.mjs +1 -1
- package/esm2022/lib/Contact.mjs +1 -1
- package/esm2022/lib/ContactsEndPoint.mjs +1 -1
- package/esm2022/lib/Enums.mjs +287 -287
- package/esm2022/lib/Flight.mjs +1 -1
- package/esm2022/lib/FlightBilling.mjs +2 -2
- package/esm2022/lib/FlightPassenger.mjs +2 -2
- package/esm2022/lib/FlightPlan.mjs +1 -1
- package/esm2022/lib/FlightRisk.mjs +2 -2
- package/esm2022/lib/FlightTicket.mjs +1 -1
- package/esm2022/lib/FlightsEndPoint.mjs +1 -1
- package/esm2022/lib/FlightsFilter.mjs +1 -1
- package/esm2022/lib/Group.mjs +1 -1
- package/esm2022/lib/GroupsEndPoint.mjs +1 -1
- package/esm2022/lib/Lead.mjs +1 -1
- package/esm2022/lib/LeadsEndPoint.mjs +1 -1
- package/esm2022/lib/MaintenancesFilter.mjs +1 -1
- package/esm2022/lib/MyFlightsEndPoint.mjs +1 -1
- package/esm2022/lib/Point.mjs +12 -0
- package/esm2022/lib/PostFlightInfo.mjs +1 -1
- package/esm2022/lib/PriceListEndPoint.mjs +1 -1
- package/esm2022/lib/Syllabus.mjs +1 -1
- package/esm2022/lib/SyllabusFilter.mjs +1 -1
- package/esm2022/lib/SystemMessage.mjs +1 -1
- package/esm2022/lib/User.mjs +1 -1
- package/esm2022/lib/UsersEndPoint.mjs +1 -1
- package/esm2022/lib/UsersFilter.mjs +1 -1
- package/esm2022/lib/WBConfig.mjs +54 -0
- package/esm2022/lib/index.mjs +118 -116
- package/esm2022/lib/services.export.mjs +41 -41
- package/fesm2022/aya-flights-ngx-goox-lib.mjs +4370 -4303
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +2 -2
- package/lib/AccountsEndPoint.d.ts +5 -5
- package/lib/Airplane.d.ts +6 -4
- package/lib/AirplanesEndPoint.d.ts +7 -7
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/BookingSlotsSet.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +2 -2
- package/lib/BookingsFilter.d.ts +1 -1
- package/lib/Campaign.d.ts +1 -1
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/CertificatesEndPoint.d.ts +1 -1
- package/lib/Contact.d.ts +2 -2
- package/lib/ContactsEndPoint.d.ts +7 -7
- package/lib/Flight.d.ts +6 -6
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightPassenger.d.ts +1 -1
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +5 -5
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +7 -7
- package/lib/FlightsFilter.d.ts +1 -1
- package/lib/Group.d.ts +1 -1
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/Lead.d.ts +2 -2
- package/lib/LeadsEndPoint.d.ts +1 -1
- package/lib/MaintenancesFilter.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +3 -3
- package/lib/Point.d.ts +5 -0
- package/lib/PostFlightInfo.d.ts +2 -2
- package/lib/PriceListEndPoint.d.ts +1 -1
- package/lib/Syllabus.d.ts +2 -2
- package/lib/SyllabusFilter.d.ts +1 -1
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/User.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/UsersFilter.d.ts +1 -1
- package/lib/WBConfig.d.ts +20 -0
- package/lib/index.d.ts +117 -115
- package/lib/services.export.d.ts +21 -21
- 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 { Credit } from '.';
|
|
4
|
-
import { AccountStatusCode } from '.';
|
|
5
|
-
import { StringKeyValue } from '.';
|
|
6
|
-
import { FlightStatusCode } from '.';
|
|
7
|
-
import { FlightStateCode } from '.';
|
|
8
3
|
import { Account } from '.';
|
|
9
4
|
import { FlightPurposeCode } from '.';
|
|
10
5
|
import { Flight } from '.';
|
|
6
|
+
import { AccountStatusCode } from '.';
|
|
11
7
|
import { FlightTypeCode } from '.';
|
|
8
|
+
import { FlightStatusCode } from '.';
|
|
9
|
+
import { FlightStateCode } from '.';
|
|
12
10
|
import { Document } from '.';
|
|
11
|
+
import { StringKeyValue } from '.';
|
|
12
|
+
import { Credit } 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,13 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
|
+
import { AirplaneStatusCode } from '.';
|
|
2
3
|
import { AirplaneValidationFlag } from '.';
|
|
3
4
|
import { Engine } from '.';
|
|
4
5
|
import { Magneto } from '.';
|
|
5
|
-
import { Propeller } from '.';
|
|
6
6
|
import { ColumnDef } from '.';
|
|
7
|
-
import {
|
|
7
|
+
import { TypeRatingFlag } from '.';
|
|
8
|
+
import { Propeller } from '.';
|
|
8
9
|
import { Fuel } from '.';
|
|
9
|
-
import {
|
|
10
|
+
import { WBConfig } from '.';
|
|
10
11
|
export declare class Airplane extends BaseEntityEx {
|
|
11
12
|
name: string;
|
|
12
13
|
description: string;
|
|
@@ -30,6 +31,7 @@ export declare class Airplane extends BaseEntityEx {
|
|
|
30
31
|
propeller: Propeller;
|
|
31
32
|
fuel: Fuel;
|
|
32
33
|
documents: string[];
|
|
34
|
+
wbConfig: WBConfig;
|
|
33
35
|
get(field: string): any;
|
|
34
36
|
}
|
|
35
37
|
export declare function GetAirplaneColumnsDef(): ColumnDef[];
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { StringKeyValue } from '.';
|
|
4
|
-
import { Document } from '.';
|
|
5
|
-
import { StatusCode } from '.';
|
|
6
|
-
import { FlightTypeCode } from '.';
|
|
7
|
-
import { FlightStatusCode } from '.';
|
|
8
3
|
import { FlightPurposeCode } from '.';
|
|
9
|
-
import {
|
|
4
|
+
import { Document } from '.';
|
|
5
|
+
import { StringKeyValue } from '.';
|
|
10
6
|
import { FlightStateCode } from '.';
|
|
11
|
-
import {
|
|
7
|
+
import { StatusCode } from '.';
|
|
12
8
|
import { Airplane } from '.';
|
|
9
|
+
import { AirplaneStatusCode } from '.';
|
|
13
10
|
import { Flight } from '.';
|
|
11
|
+
import { MaintenanceActionCode } from '.';
|
|
14
12
|
import { Maintenance } from '.';
|
|
13
|
+
import { FlightTypeCode } from '.';
|
|
14
|
+
import { FlightStatusCode } 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/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 '.';
|
|
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/BookingsFilter.d.ts
CHANGED
package/lib/Campaign.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { CampaignTypeCode } from '.';
|
|
1
2
|
import { CampaignStatusCode } from '.';
|
|
2
3
|
import { CurrencyCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
5
|
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 { Campaign } from '.';
|
|
4
3
|
import { StringKeyValue } from '.';
|
|
4
|
+
import { Campaign } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CampaignsEndPoint {
|
|
7
7
|
private config;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { StatusCode } from '.';
|
|
4
3
|
import { Certificate } from '.';
|
|
4
|
+
import { StatusCode } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CertificatesEndPoint {
|
|
7
7
|
private config;
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { LicenseKindFlag } from '.';
|
|
2
1
|
import { MedicalCertClassCode } from '.';
|
|
3
2
|
import { ValidationFlag } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
5
4
|
import { Address } from '.';
|
|
6
5
|
import { TypeRatingFlag } from '.';
|
|
6
|
+
import { LicenseKindFlag } from '.';
|
|
7
|
+
import { AccountStatusCode } from '.';
|
|
7
8
|
import { FlightCategoryCode } from '.';
|
|
8
9
|
import { ColumnDef } from '.';
|
|
9
|
-
import { AccountStatusCode } 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 {
|
|
3
|
+
import { FlightStatusCode } from '.';
|
|
4
|
+
import { FlightStateCode } from '.';
|
|
4
5
|
import { Certificate } from '.';
|
|
5
|
-
import { MessageConfirm } from '.';
|
|
6
6
|
import { FlightTypeCode } from '.';
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import { StatusCode } from '.';
|
|
10
|
-
import { FlightPurposeCode } from '.';
|
|
7
|
+
import { StringKeyValue } from '.';
|
|
8
|
+
import { MessageConfirm } from '.';
|
|
11
9
|
import { Document } from '.';
|
|
12
10
|
import { Contact } from '.';
|
|
13
|
-
import {
|
|
11
|
+
import { StatusCode } from '.';
|
|
12
|
+
import { FlightPurposeCode } from '.';
|
|
13
|
+
import { Flight } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
|
16
16
|
private config;
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { FlightPurposeCode } from '.';
|
|
2
|
-
import { FlightCategoryCode } from '.';
|
|
3
|
-
import { FlightStatusCode } from '.';
|
|
4
1
|
import { TOLData } from '.';
|
|
2
|
+
import { RiskAssessment } from '.';
|
|
5
3
|
import { BaseEntityEx } from '.';
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
4
|
+
import { FlightPurposeCode } from '.';
|
|
5
|
+
import { FlightCategoryCode } from '.';
|
|
8
6
|
import { FlightTypeCode } from '.';
|
|
9
7
|
import { BillingStatusCode } from '.';
|
|
8
|
+
import { FlightClassCode } from '.';
|
|
9
|
+
import { FlightStatusCode } from '.';
|
|
10
10
|
import { Lesson } from '.';
|
|
11
|
-
import {
|
|
11
|
+
import { ColumnDef } 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/FlightPassenger.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 '.';
|
|
1
4
|
import { FlightTypeCode } from '.';
|
|
2
5
|
import { FlightStatusCode } from '.';
|
|
3
6
|
import { FlightStateCode } from '.';
|
|
4
7
|
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 { TripRisks } from '.';
|
|
2
|
-
import { WeatherRisks } from '.';
|
|
3
|
-
import { Mitigation } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
1
|
import { PilotQualificationsRisks } from '.';
|
|
6
2
|
import { CrewDutyDayRisks } from '.';
|
|
7
3
|
import { DepartureRisks } from '.';
|
|
8
|
-
import { DestinationRisks } from '.';
|
|
9
4
|
import { SpecialRisks } from '.';
|
|
10
5
|
import { BaseEntityEx } from '.';
|
|
6
|
+
import { ColumnDef } from '.';
|
|
7
|
+
import { DestinationRisks } from '.';
|
|
8
|
+
import { TripRisks } from '.';
|
|
9
|
+
import { WeatherRisks } from '.';
|
|
10
|
+
import { Mitigation } 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,17 +1,17 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import { PreFlightInfo } from '.';
|
|
5
|
-
import { AnyKeyValue } from '.';
|
|
6
|
-
import { BillingStatusCode } from '.';
|
|
3
|
+
import { PostFlightInfo } from '.';
|
|
7
4
|
import { Flight } from '.';
|
|
8
5
|
import { FlightStatusCode } from '.';
|
|
6
|
+
import { BillingStatusCode } from '.';
|
|
7
|
+
import { FlightPurposeCode } from '.';
|
|
9
8
|
import { Contact } from '.';
|
|
10
9
|
import { FlightTicket } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
10
|
+
import { PreFlightInfo } from '.';
|
|
11
|
+
import { AnyKeyValue } from '.';
|
|
12
|
+
import { TimeSeries } from '.';
|
|
14
13
|
import { FlightPlan } from '.';
|
|
14
|
+
import { FlightTypeCode } 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 { TimeFrame } from '.';
|
|
1
2
|
import { FlightTypeCode } from '.';
|
|
2
3
|
import { FlightStatusCode } from '.';
|
|
3
4
|
import { BillingStatusCode } from '.';
|
|
4
5
|
import { FlightPurposeCode } from '.';
|
|
5
|
-
import { TimeFrame } 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/Lead.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { Address } from '.';
|
|
4
2
|
import { LeadStatusCode } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Lead extends BaseEntityEx {
|
|
6
6
|
firstName: string;
|
|
7
7
|
lastName: string;
|
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 '.';
|
|
3
4
|
import { LeadStatusCode } from '.';
|
|
4
5
|
import { TimeSeries } from '.';
|
|
5
6
|
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;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { PostFlightInfo } from '.';
|
|
4
|
+
import { FlightTypeCode } from '.';
|
|
3
5
|
import { InstructionTypeCode } from '.';
|
|
6
|
+
import { FlightPlan } from '.';
|
|
4
7
|
import { Syllabus } from '.';
|
|
5
8
|
import { PreFlightInfo } from '.';
|
|
6
9
|
import { Flight } from '.';
|
|
7
|
-
import { FlightTypeCode } from '.';
|
|
8
10
|
import { FlightStatusCode } from '.';
|
|
9
|
-
import { FlightPlan } 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/Point.d.ts
ADDED
package/lib/PostFlightInfo.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { FlightCategoryCode } from '.';
|
|
2
|
-
import { AssessmentCode } from '.';
|
|
3
1
|
import { FlightPurposeCode } from '.';
|
|
4
2
|
import { FlightTypeCode } from '.';
|
|
3
|
+
import { FlightCategoryCode } from '.';
|
|
4
|
+
import { AssessmentCode } from '.';
|
|
5
5
|
export declare class PostFlightInfo {
|
|
6
6
|
flightId: string;
|
|
7
7
|
flightNumber: number;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Price } from '.';
|
|
4
3
|
import { FlightPurposeCode } from '.';
|
|
4
|
+
import { Price } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class PriceListEndPoint {
|
|
7
7
|
private config;
|
package/lib/Syllabus.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { FlightCategoryCode } from '.';
|
|
2
|
-
import { InstructionTypeCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { FlightCategoryCode } from '.';
|
|
4
|
+
import { InstructionTypeCode } from '.';
|
|
5
5
|
export declare class Syllabus extends BaseEntityEx {
|
|
6
6
|
plan: FlightCategoryCode;
|
|
7
7
|
type: InstructionTypeCode;
|
package/lib/SyllabusFilter.d.ts
CHANGED
package/lib/SystemMessage.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { PriorityCode } from '.';
|
|
2
1
|
import { BaseEntityEx } from '.';
|
|
3
2
|
import { ColumnDef } from '.';
|
|
4
3
|
import { MessageTypeCode } from '.';
|
|
4
|
+
import { PriorityCode } 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 { UserTypeCode } from '.';
|
|
2
1
|
import { UserRoleFlag } from '.';
|
|
3
2
|
import { UserStatusCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
5
4
|
import { ColumnDef } from '.';
|
|
5
|
+
import { UserTypeCode } 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 { 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;
|
package/lib/UsersFilter.d.ts
CHANGED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Point } from '.';
|
|
2
|
+
export declare class WBConfig {
|
|
3
|
+
maxTakeoffWeight: number;
|
|
4
|
+
airplaneWeight: number;
|
|
5
|
+
frontBaggageWeight: number;
|
|
6
|
+
rearBaggageWeight: number;
|
|
7
|
+
totalBaggageWeight: number;
|
|
8
|
+
maxUsableFuel: number;
|
|
9
|
+
selfArm: number;
|
|
10
|
+
fuelTankArm: number;
|
|
11
|
+
pilotsArm: number;
|
|
12
|
+
passengersArm: number;
|
|
13
|
+
frontBaggageArm: number;
|
|
14
|
+
rearBaggageArm: number;
|
|
15
|
+
maxRearArm: number;
|
|
16
|
+
maxFrontArm: number;
|
|
17
|
+
normalEnvelope: Point[];
|
|
18
|
+
utilityEnvelope: Point[];
|
|
19
|
+
constructor(maxTakeoffWeight?: number, airplaneWeight?: number, frontBaggageWeight?: number, rearBaggageWeight?: number, totalBaggageWeight?: number, maxUsableFuel?: number, selfArm?: number, fuelTankArm?: number, pilotsArm?: number, passengersArm?: number, frontBaggageArm?: number, rearBaggageArm?: number, maxRearArm?: number, maxFrontArm?: number, normalEnvelope?: Point[], utilityEnvelope?: Point[]);
|
|
20
|
+
}
|