@aya-flights/ngx-goox-lib 2.19.42 → 2.19.43
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 +4568 -4562
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +1 -1
- package/lib/Airplane.d.ts +4 -4
- package/lib/AirplanesEndPoint.d.ts +1 -1
- package/lib/AuditLog.d.ts +1 -1
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingPlan.d.ts +2 -2
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +5 -1
- package/lib/Campaign.d.ts +2 -2
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/Contact.d.ts +2 -2
- package/lib/ContactsEndPoint.d.ts +4 -4
- package/lib/Credit.d.ts +1 -1
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +7 -7
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +5 -5
- package/lib/FlightsEndPoint.d.ts +4 -4
- package/lib/FlightsFilter.d.ts +1 -1
- package/lib/Group.d.ts +1 -1
- package/lib/Lesson.d.ts +1 -1
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/MaintenancesFilter.d.ts +1 -1
- package/lib/MessageConfirm.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +1 -1
- package/lib/Permission.d.ts +1 -1
- package/lib/PostFlightData.d.ts +2 -2
- package/lib/PreFlightData.d.ts +2 -2
- package/lib/Price.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +1 -1
- package/lib/TimeSeries.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/UsersFilter.d.ts +1 -1
- package/lib/index.d.ts +109 -109
- package/lib/services.export.d.ts +19 -19
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { Account } from '.';
|
|
4
|
-
import { Flight } from '.';
|
|
5
4
|
import { Credit } from '.';
|
|
6
5
|
import { StringKeyValue } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
7
7
|
import { Document } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AccountsEndPoint {
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
|
-
import { AirplaneStatusCode } from '.';
|
|
3
|
-
import { AirplaneValidationFlag } from '.';
|
|
4
|
-
import { Engine } from '.';
|
|
5
1
|
import { Magneto } from '.';
|
|
6
2
|
import { Propeller } from '.';
|
|
7
3
|
import { Fuel } from '.';
|
|
8
4
|
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
|
+
import { AirplaneStatusCode } from '.';
|
|
7
|
+
import { AirplaneValidationFlag } from '.';
|
|
8
|
+
import { Engine } from '.';
|
|
9
9
|
export declare class Airplane extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
|
@@ -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 { Flight } from '.';
|
|
4
5
|
import { Maintenance } from '.';
|
|
5
6
|
import { Airplane } from '.';
|
|
6
|
-
import { StringKeyValue } from '.';
|
|
7
7
|
import { Document } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AirplanesEndPoint {
|
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;
|
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 { BaseEntityEx } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
1
3
|
import { BookingTypeFlag } from '.';
|
|
2
4
|
import { FlightPurposeCode } from '.';
|
|
3
5
|
import { FlightStatusCode } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
6
|
export declare class BookingPlan extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
package/lib/BookingSlots.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 '.';
|
|
3
4
|
import { BookingPlan } from '.';
|
|
4
5
|
import { Booking } from '.';
|
|
5
6
|
import { BookingStatusCode } from '.';
|
|
6
|
-
import { TimeSeries } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class BookingsEndPoint {
|
|
9
9
|
private config;
|
|
@@ -54,6 +54,10 @@ export declare class BookingsEndPoint {
|
|
|
54
54
|
* Get bookings plan data for specific day
|
|
55
55
|
*/
|
|
56
56
|
getBookingPlan(year?: number, month?: number, day?: number): import("rxjs").Observable<EntitiesResponse<BookingPlan>>;
|
|
57
|
+
/**
|
|
58
|
+
* Launch plan from booking and returns new bookings plan data for specific day
|
|
59
|
+
*/
|
|
60
|
+
launchFromBooking(id?: string): import("rxjs").Observable<EntitiesResponse<BookingPlan>>;
|
|
57
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<BookingsEndPoint, never>;
|
|
58
62
|
static ɵprov: i0.ɵɵInjectableDeclaration<BookingsEndPoint>;
|
|
59
63
|
}
|
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;
|
|
@@ -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;
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
2
|
+
import { AccountStatusCode } from '.';
|
|
1
3
|
import { Address } from '.';
|
|
2
4
|
import { ValidationFlag } from '.';
|
|
3
5
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
|
-
import { AccountStatusCode } 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
|
-
import { StringKeyValue } from '.';
|
|
4
|
-
import { MessageConfirm } from '.';
|
|
5
|
-
import { Document } from '.';
|
|
6
3
|
import { Contact } from '.';
|
|
7
|
-
import {
|
|
4
|
+
import { Document } from '.';
|
|
8
5
|
import { Flight } from '.';
|
|
6
|
+
import { MessageConfirm } from '.';
|
|
7
|
+
import { StringKeyValue } from '.';
|
|
8
|
+
import { Certificate } 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 { TransactionTypeCode } from '.';
|
|
2
1
|
import { CurrencyCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { TransactionTypeCode } from '.';
|
|
5
5
|
export declare class Credit extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
package/lib/Document.d.ts
CHANGED
package/lib/Flight.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { BillingStatusCode } from '.';
|
|
2
|
-
import { Billing } from '.';
|
|
3
|
-
import { RiskAssessment } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
|
-
import { TOLData } from '.';
|
|
6
|
-
import { ReFuel } from '.';
|
|
7
|
-
import { Lesson } from '.';
|
|
8
1
|
import { FlightPurposeCode } from '.';
|
|
9
2
|
import { FlightTypeCode } from '.';
|
|
10
3
|
import { FlightStatusCode } from '.';
|
|
11
4
|
import { FlightStateCode } from '.';
|
|
12
5
|
import { OnBoard } from '.';
|
|
6
|
+
import { TOLData } from '.';
|
|
7
|
+
import { Lesson } from '.';
|
|
8
|
+
import { Billing } from '.';
|
|
9
|
+
import { RiskAssessment } from '.';
|
|
13
10
|
import { ColumnDef } from '.';
|
|
11
|
+
import { BillingStatusCode } from '.';
|
|
12
|
+
import { ReFuel } from '.';
|
|
13
|
+
import { BaseEntityEx } from '.';
|
|
14
14
|
export declare class Flight extends BaseEntityEx {
|
|
15
15
|
name: string;
|
|
16
16
|
description: string;
|
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { FlightStatusCode } from '.';
|
|
2
|
-
import { FlightStateCode } from '.';
|
|
3
|
-
import { FlightPurposeCode } from '.';
|
|
4
1
|
import { TOLData } from '.';
|
|
5
2
|
import { BaseEntityEx } from '.';
|
|
6
3
|
import { ColumnDef } from '.';
|
|
7
4
|
import { FlightTypeCode } from '.';
|
|
5
|
+
import { FlightStatusCode } from '.';
|
|
6
|
+
import { FlightStateCode } from '.';
|
|
7
|
+
import { FlightPurposeCode } 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
1
|
import { PilotQualificationsRisks } from '.';
|
|
2
|
-
import { DestinationRisks } from '.';
|
|
3
|
-
import { Mitigation } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
2
|
import { CrewDutyDayRisks } from '.';
|
|
3
|
+
import { WeatherRisks } from '.';
|
|
7
4
|
import { DepartureRisks } from '.';
|
|
5
|
+
import { DestinationRisks } from '.';
|
|
8
6
|
import { TripRisks } from '.';
|
|
9
|
-
import { WeatherRisks } from '.';
|
|
10
7
|
import { SpecialRisks } from '.';
|
|
8
|
+
import { Mitigation } from '.';
|
|
9
|
+
import { BaseEntityEx } 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,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { TimeSeries } from '.';
|
|
4
|
+
import { Flight } from '.';
|
|
3
5
|
import { FlightPlan } from '.';
|
|
6
|
+
import { Contact } from '.';
|
|
4
7
|
import { FlightTicket } from '.';
|
|
5
8
|
import { PreFlightInfo } from '.';
|
|
6
|
-
import { AnyKeyValue } from '.';
|
|
7
|
-
import { Contact } from '.';
|
|
8
|
-
import { Flight } from '.';
|
|
9
|
-
import { TimeSeries } from '.';
|
|
10
9
|
import { PostFlightInfo } from '.';
|
|
10
|
+
import { AnyKeyValue } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class FlightsEndPoint {
|
|
13
13
|
private config;
|
package/lib/FlightsFilter.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { FlightStatusCode } from '.';
|
|
2
1
|
import { BillingStatusCode } from '.';
|
|
3
2
|
import { FlightPurposeCode } from '.';
|
|
4
3
|
import { TimeFrame } from '.';
|
|
5
4
|
import { FlightTypeCode } from '.';
|
|
5
|
+
import { FlightStatusCode } from '.';
|
|
6
6
|
export declare class FlightsFilter {
|
|
7
7
|
search: string;
|
|
8
8
|
period: TimeFrame;
|
package/lib/Group.d.ts
CHANGED
package/lib/Lesson.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/MessageConfirm.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { MessageTypeCode } from '.';
|
|
1
2
|
import { PriorityCode } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
4
|
import { ColumnDef } from '.';
|
|
4
5
|
import { ConfirmStatusCode } from '.';
|
|
5
|
-
import { MessageTypeCode } from '.';
|
|
6
6
|
export declare class MessageConfirm extends BaseEntityEx {
|
|
7
7
|
messageId: string;
|
|
8
8
|
contactId: 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/Permission.d.ts
CHANGED
package/lib/PostFlightData.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { FlightTypeCode } from '.';
|
|
2
|
-
import { FlightPurposeCode } from '.';
|
|
3
1
|
import { OnBoard } from '.';
|
|
4
2
|
import { TOLData } from '.';
|
|
5
3
|
import { ReFuel } from '.';
|
|
6
4
|
import { Lesson } from '.';
|
|
7
5
|
import { BaseEntityEx } from '.';
|
|
8
6
|
import { ColumnDef } from '.';
|
|
7
|
+
import { FlightTypeCode } from '.';
|
|
8
|
+
import { FlightPurposeCode } 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 { ReFuel } from '.';
|
|
2
|
-
import { Lesson } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
5
3
|
import { FlightTypeCode } from '.';
|
|
6
4
|
import { FlightPurposeCode } from '.';
|
|
7
5
|
import { OnBoard } from '.';
|
|
8
6
|
import { TOLData } from '.';
|
|
7
|
+
import { ReFuel } from '.';
|
|
8
|
+
import { Lesson } from '.';
|
|
9
9
|
export declare class PreFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/Price.d.ts
CHANGED
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Mitigation } from '.';
|
|
2
1
|
import { PilotQualificationsRisks } from '.';
|
|
3
2
|
import { CrewDutyDayRisks } from '.';
|
|
4
3
|
import { DepartureRisks } from '.';
|
|
@@ -6,6 +5,7 @@ import { DestinationRisks } from '.';
|
|
|
6
5
|
import { TripRisks } from '.';
|
|
7
6
|
import { WeatherRisks } from '.';
|
|
8
7
|
import { SpecialRisks } from '.';
|
|
8
|
+
import { Mitigation } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/TimeSeries.d.ts
CHANGED
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UserStatusCode } from '.';
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
3
1
|
import { ColumnDef } from '.';
|
|
4
2
|
import { UserTypeCode } from '.';
|
|
5
3
|
import { UserRoleFlag } from '.';
|
|
4
|
+
import { UserStatusCode } from '.';
|
|
5
|
+
import { BaseEntityEx } from '.';
|
|
6
6
|
export declare class User extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
email: string;
|
package/lib/UsersEndPoint.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 { User } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class UsersEndPoint {
|
|
7
7
|
private config;
|