@aya-flights/ngx-goox-lib 2.19.4 → 2.19.6
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 +4240 -4215
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +2 -2
- package/lib/AccountsEndPoint.d.ts +2 -2
- package/lib/Airplane.d.ts +3 -3
- package/lib/AirplanesEndPoint.d.ts +2 -2
- package/lib/AuditLog.d.ts +1 -1
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/BookingFilter.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +9 -1
- package/lib/BookingSlotsSet.d.ts +1 -1
- package/lib/BookingStatusCode.d.ts +5 -4
- package/lib/Certificate.d.ts +1 -1
- package/lib/Contact.d.ts +2 -2
- package/lib/ContactsEndPoint.d.ts +2 -2
- package/lib/Credit.d.ts +1 -1
- package/lib/Flight.d.ts +6 -6
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightFilter.d.ts +1 -1
- 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 +5 -5
- package/lib/Group.d.ts +2 -2
- package/lib/Lookup.d.ts +1 -1
- package/lib/Maintenance.d.ts +2 -2
- package/lib/MyFlightsEndPoint.d.ts +1 -1
- package/lib/PostFlightData.d.ts +4 -4
- package/lib/PreFlightData.d.ts +4 -4
- package/lib/RiskAssessment.d.ts +2 -2
- package/lib/TokenData.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/UserFilter.d.ts +1 -1
- package/lib/index.d.ts +109 -109
- package/lib/services.export.d.ts +20 -20
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
|
-
import { AccountStatusCode } from '.';
|
|
3
1
|
import { Address } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
4
|
+
import { AccountStatusCode } from '.';
|
|
5
5
|
export declare class Account extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
enName: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { StringKeyValue } from '.';
|
|
4
|
-
import {
|
|
4
|
+
import { Credit } from '.';
|
|
5
5
|
import { Account } from '.';
|
|
6
6
|
import { Flight } from '.';
|
|
7
|
-
import {
|
|
7
|
+
import { Document } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AccountsEndPoint {
|
|
10
10
|
private config;
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
3
|
+
import { AirplaneStatusCode } from '.';
|
|
1
4
|
import { AirplaneValidationFlag } from '.';
|
|
2
5
|
import { Engine } from '.';
|
|
3
6
|
import { Magneto } from '.';
|
|
4
7
|
import { Propeller } from '.';
|
|
5
8
|
import { Fuel } from '.';
|
|
6
|
-
import { BaseEntityEx } from '.';
|
|
7
|
-
import { ColumnDef } from '.';
|
|
8
|
-
import { AirplaneStatusCode } from '.';
|
|
9
9
|
export declare class Airplane extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Airplane } from '.';
|
|
3
4
|
import { StringKeyValue } from '.';
|
|
5
|
+
import { Flight } from '.';
|
|
4
6
|
import { Document } from '.';
|
|
5
7
|
import { Maintenance } from '.';
|
|
6
|
-
import { Airplane } from '.';
|
|
7
|
-
import { Flight } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AirplanesEndPoint {
|
|
10
10
|
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 { 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/BookingFilter.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;
|
|
@@ -45,6 +45,14 @@ export declare class BookingSlotsEndPoint {
|
|
|
45
45
|
* Add or remove a bulk of monthly slots for patterns
|
|
46
46
|
*/
|
|
47
47
|
setMonthlySlot(body?: BookingSlotsSet): import("rxjs").Observable<ActionResponse>;
|
|
48
|
+
/**
|
|
49
|
+
* Publish slots (make invisible slots to visible)
|
|
50
|
+
*/
|
|
51
|
+
publish(id?: string[]): import("rxjs").Observable<ActionResponse>;
|
|
52
|
+
/**
|
|
53
|
+
* UnPublish slots (make visible slots to invisible)
|
|
54
|
+
*/
|
|
55
|
+
unPublish(id?: string[]): import("rxjs").Observable<ActionResponse>;
|
|
48
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<BookingSlotsEndPoint, never>;
|
|
49
57
|
static ɵprov: i0.ɵɵInjectableDeclaration<BookingSlotsEndPoint>;
|
|
50
58
|
}
|
package/lib/BookingSlotsSet.d.ts
CHANGED
|
@@ -5,10 +5,11 @@ export declare enum BookingStatusCode {
|
|
|
5
5
|
APPROVED = 2,
|
|
6
6
|
REJECTED = 3,
|
|
7
7
|
CONFIRMED = 4,
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
CANCELLED = 5,
|
|
9
|
+
FLIGHT_LAUNCHED = 6,
|
|
10
|
+
FLIGHT_CANCELLED = 7,
|
|
11
|
+
FLIGHT_COMPLETED = 8,
|
|
12
|
+
FLIGHT_ABORTED = 9
|
|
12
13
|
}
|
|
13
14
|
export declare function GetBookingStatusCodes(): Tuple<BookingStatusCode, string>[];
|
|
14
15
|
export declare function MapBookingStatusCodes(): Map<BookingStatusCode, string>;
|
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,8 +1,8 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { AccountStatusCode } from '.';
|
|
4
2
|
import { Address } from '.';
|
|
5
3
|
import { ValidationFlag } from '.';
|
|
4
|
+
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
6
|
export declare class Contact extends BaseEntityEx {
|
|
7
7
|
accountId: string;
|
|
8
8
|
name: string;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { StringKeyValue } from '.';
|
|
4
|
-
import { MessageConfirm } from '.';
|
|
5
|
-
import { Contact } from '.';
|
|
6
4
|
import { Certificate } from '.';
|
|
7
5
|
import { Flight } from '.';
|
|
6
|
+
import { MessageConfirm } from '.';
|
|
8
7
|
import { Document } from '.';
|
|
8
|
+
import { Contact } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class ContactsEndPoint {
|
|
11
11
|
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/Flight.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { FlightTypeCode } from '.';
|
|
3
|
-
import { FlightStateCode } from '.';
|
|
1
|
+
import { FlightStatusCode } from '.';
|
|
4
2
|
import { BillingStatusCode } from '.';
|
|
5
3
|
import { FlightPurposeCode } from '.';
|
|
6
4
|
import { OnBoard } from '.';
|
|
5
|
+
import { Lesson } from '.';
|
|
6
|
+
import { RiskAssessment } from '.';
|
|
7
|
+
import { ColumnDef } from '.';
|
|
8
|
+
import { FlightTypeCode } from '.';
|
|
9
|
+
import { FlightStateCode } from '.';
|
|
7
10
|
import { TOLData } from '.';
|
|
8
11
|
import { ReFuel } from '.';
|
|
9
12
|
import { Billing } from '.';
|
|
10
|
-
import { RiskAssessment } from '.';
|
|
11
13
|
import { BaseEntityEx } from '.';
|
|
12
|
-
import { ColumnDef } from '.';
|
|
13
|
-
import { FlightStatusCode } from '.';
|
|
14
14
|
export declare class Flight extends BaseEntityEx {
|
|
15
15
|
name: string;
|
|
16
16
|
description: string;
|
package/lib/FlightBilling.d.ts
CHANGED
package/lib/FlightFilter.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { FlightTypeCode } from '.';
|
|
1
2
|
import { FlightStatusCode } from '.';
|
|
2
3
|
import { BillingStatusCode } from '.';
|
|
3
4
|
import { FlightPurposeCode } from '.';
|
|
4
5
|
import { TimeFrame } from '.';
|
|
5
|
-
import { FlightTypeCode } from '.';
|
|
6
6
|
export declare class FlightFilter {
|
|
7
7
|
search: string;
|
|
8
8
|
accountId: string;
|
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { FlightTypeCode } from '.';
|
|
4
2
|
import { FlightStatusCode } from '.';
|
|
5
3
|
import { FlightStateCode } from '.';
|
|
6
4
|
import { FlightPurposeCode } from '.';
|
|
7
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 {
|
|
1
|
+
import { TripRisks } from '.';
|
|
2
2
|
import { SpecialRisks } from '.';
|
|
3
|
-
import {
|
|
4
|
-
import { ColumnDef } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
5
4
|
import { PilotQualificationsRisks } from '.';
|
|
5
|
+
import { CrewDutyDayRisks } from '.';
|
|
6
6
|
import { DepartureRisks } from '.';
|
|
7
|
+
import { ColumnDef } from '.';
|
|
8
|
+
import { DestinationRisks } from '.';
|
|
7
9
|
import { WeatherRisks } from '.';
|
|
8
|
-
import {
|
|
9
|
-
import { CrewDutyDayRisks } from '.';
|
|
10
|
-
import { TripRisks } 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,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { FlightTicket } from '.';
|
|
4
|
+
import { PreFlightInfo } from '.';
|
|
5
|
+
import { Flight } from '.';
|
|
3
6
|
import { AnyKeyValue } from '.';
|
|
7
|
+
import { FlightPlan } from '.';
|
|
8
|
+
import { PostFlightInfo } from '.';
|
|
4
9
|
import { TimeSeries } from '.';
|
|
5
10
|
import { Contact } from '.';
|
|
6
|
-
import { Flight } from '.';
|
|
7
|
-
import { PreFlightInfo } from '.';
|
|
8
|
-
import { PostFlightInfo } from '.';
|
|
9
|
-
import { FlightPlan } from '.';
|
|
10
|
-
import { FlightTicket } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class FlightsEndPoint {
|
|
13
13
|
private config;
|
package/lib/Group.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { Permission } from '.';
|
|
4
2
|
import { StringKeyValue } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Group extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
email: string;
|
package/lib/Lookup.d.ts
CHANGED
package/lib/Maintenance.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { StatusCode } from '.';
|
|
4
2
|
import { MaintenanceActionCode } from '.';
|
|
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,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Flight } from '.';
|
|
4
3
|
import { FlightPlan } from '.';
|
|
5
4
|
import { PreFlightInfo } from '.';
|
|
6
5
|
import { PostFlightInfo } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MyFlightsEndPoint {
|
|
9
9
|
private config;
|
package/lib/PostFlightData.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { FlightTypeCode } from '.';
|
|
2
|
-
import { FlightPurposeCode } from '.';
|
|
3
|
-
import { OnBoard } from '.';
|
|
4
|
-
import { TOLData } from '.';
|
|
5
1
|
import { ReFuel } from '.';
|
|
6
2
|
import { Lesson } from '.';
|
|
7
3
|
import { BaseEntityEx } from '.';
|
|
8
4
|
import { ColumnDef } from '.';
|
|
5
|
+
import { FlightTypeCode } from '.';
|
|
6
|
+
import { FlightPurposeCode } from '.';
|
|
7
|
+
import { OnBoard } from '.';
|
|
8
|
+
import { TOLData } from '.';
|
|
9
9
|
export declare class PostFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/PreFlightData.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { FlightPurposeCode } from '.';
|
|
2
|
-
import { OnBoard } from '.';
|
|
3
|
-
import { TOLData } from '.';
|
|
4
|
-
import { ReFuel } from '.';
|
|
5
1
|
import { Lesson } from '.';
|
|
6
2
|
import { BaseEntityEx } from '.';
|
|
7
3
|
import { ColumnDef } from '.';
|
|
8
4
|
import { FlightTypeCode } from '.';
|
|
5
|
+
import { FlightPurposeCode } from '.';
|
|
6
|
+
import { OnBoard } from '.';
|
|
7
|
+
import { TOLData } from '.';
|
|
8
|
+
import { ReFuel } from '.';
|
|
9
9
|
export declare class PreFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { PilotQualificationsRisks } from '.';
|
|
2
|
-
import { CrewDutyDayRisks } from '.';
|
|
3
1
|
import { DepartureRisks } from '.';
|
|
4
2
|
import { DestinationRisks } from '.';
|
|
5
3
|
import { TripRisks } from '.';
|
|
6
4
|
import { WeatherRisks } from '.';
|
|
7
5
|
import { SpecialRisks } from '.';
|
|
8
6
|
import { Mitigation } from '.';
|
|
7
|
+
import { PilotQualificationsRisks } from '.';
|
|
8
|
+
import { CrewDutyDayRisks } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/TokenData.d.ts
CHANGED
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { UserTypeCode } from '.';
|
|
2
|
+
import { UserRoleFlag } from '.';
|
|
1
3
|
import { UserStatusCode } from '.';
|
|
2
4
|
import { BaseEntityEx } from '.';
|
|
3
5
|
import { ColumnDef } from '.';
|
|
4
|
-
import { UserTypeCode } from '.';
|
|
5
|
-
import { UserRoleFlag } from '.';
|
|
6
6
|
export declare class User extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
email: string;
|
package/lib/UserFilter.d.ts
CHANGED