@aya-flights/ngx-goox-lib 1.19.50 → 1.19.51
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 +3990 -3970
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +1 -1
- package/lib/AccountsEndPoint.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/Booking.d.ts +1 -1
- package/lib/BookingSlot.d.ts +1 -1
- package/lib/BookingSlots.d.ts +9 -0
- 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 +7 -7
- package/lib/FlightFilter.d.ts +1 -1
- package/lib/FlightPlan.d.ts +1 -1
- package/lib/FlightRisk.d.ts +2 -2
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +4 -4
- 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/LogBookRecord.d.ts +1 -1
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/Maintenance.d.ts +1 -1
- package/lib/MaintenanceFilter.d.ts +1 -1
- package/lib/MessageConfirm.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +2 -2
- package/lib/MyFlightsEndPoint.d.ts +2 -2
- package/lib/PostFlightData.d.ts +1 -1
- package/lib/PostFlightInfo.d.ts +1 -1
- package/lib/PreFlightData.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +1 -1
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/TokenData.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/UserEndPoint.d.ts +1 -1
- package/lib/UserFilter.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +106 -105
- package/lib/services.export.d.ts +18 -18
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Document } from '.';
|
|
4
|
-
import { StringKeyValue } from '.';
|
|
5
|
-
import { Credit } from '.';
|
|
6
3
|
import { Flight } from '.';
|
|
7
4
|
import { Account } from '.';
|
|
5
|
+
import { StringKeyValue } from '.';
|
|
6
|
+
import { Credit } from '.';
|
|
7
|
+
import { Document } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AccountsEndPoint {
|
|
10
10
|
private config;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { Maintenance } from '.';
|
|
4
|
-
import { Airplane } from '.';
|
|
5
|
-
import { StringKeyValue } from '.';
|
|
6
4
|
import { Flight } from '.';
|
|
7
5
|
import { Document } from '.';
|
|
6
|
+
import { StringKeyValue } from '.';
|
|
7
|
+
import { Airplane } 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/Booking.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BookingTypeFlag } from '.';
|
|
2
1
|
import { BookingStatusCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { BookingTypeFlag } from '.';
|
|
5
5
|
export declare class Booking extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
title: string;
|
package/lib/BookingSlot.d.ts
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
2
|
+
import { BookingSlot } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
export declare class BookingSlots extends BaseEntityEx {
|
|
5
|
+
day: number;
|
|
6
|
+
slots: BookingSlot[];
|
|
7
|
+
get(field: string): any;
|
|
8
|
+
}
|
|
9
|
+
export declare function GetBookingSlotsColumnsDef(): ColumnDef[];
|
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 { Contact } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
4
5
|
import { Certificate } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
5
7
|
import { MessageConfirm } from '.';
|
|
6
8
|
import { Document } from '.';
|
|
7
|
-
import { StringKeyValue } from '.';
|
|
8
|
-
import { Flight } 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/Flight.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { TOLData } from '.';
|
|
2
1
|
import { ReFuel } from '.';
|
|
3
2
|
import { Lesson } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
|
-
import { FlightStatusCode } from '.';
|
|
7
|
-
import { BillingStatusCode } from '.';
|
|
8
|
-
import { FlightPurposeCode } from '.';
|
|
9
|
-
import { OnBoard } from '.';
|
|
10
3
|
import { Billing } from '.';
|
|
11
4
|
import { RiskAssessment } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
12
6
|
import { FlightTypeCode } from '.';
|
|
7
|
+
import { BillingStatusCode } from '.';
|
|
8
|
+
import { FlightPurposeCode } from '.';
|
|
9
|
+
import { TOLData } from '.';
|
|
10
|
+
import { BaseEntityEx } from '.';
|
|
11
|
+
import { FlightStatusCode } from '.';
|
|
13
12
|
import { FlightStateCode } from '.';
|
|
13
|
+
import { OnBoard } from '.';
|
|
14
14
|
export declare class Flight extends BaseEntityEx {
|
|
15
15
|
name: string;
|
|
16
16
|
description: string;
|
package/lib/FlightFilter.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BillingStatusCode } from '.';
|
|
1
2
|
import { FlightPurposeCode } from '.';
|
|
2
3
|
import { TimeFrame } from '.';
|
|
3
4
|
import { FlightTypeCode } from '.';
|
|
4
5
|
import { FlightStatusCode } from '.';
|
|
5
|
-
import { BillingStatusCode } 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 { FlightStatusCode } from '.';
|
|
2
1
|
import { FlightStateCode } from '.';
|
|
3
2
|
import { FlightPurposeCode } from '.';
|
|
4
3
|
import { TOLData } from '.';
|
|
5
4
|
import { BaseEntityEx } from '.';
|
|
6
5
|
import { ColumnDef } from '.';
|
|
7
6
|
import { FlightTypeCode } from '.';
|
|
7
|
+
import { FlightStatusCode } from '.';
|
|
8
8
|
export declare class FlightPlan extends BaseEntityEx {
|
|
9
9
|
name: string;
|
|
10
10
|
description: string;
|
package/lib/FlightRisk.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ColumnDef } from '.';
|
|
2
2
|
import { DepartureRisks } from '.';
|
|
3
3
|
import { TripRisks } from '.';
|
|
4
4
|
import { SpecialRisks } from '.';
|
|
5
5
|
import { Mitigation } from '.';
|
|
6
6
|
import { BaseEntityEx } from '.';
|
|
7
|
-
import {
|
|
7
|
+
import { PilotQualificationsRisks } from '.';
|
|
8
8
|
import { CrewDutyDayRisks } from '.';
|
|
9
9
|
import { DestinationRisks } from '.';
|
|
10
10
|
import { WeatherRisks } from '.';
|
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 { TimeSeries } from '.';
|
|
4
|
+
import { FlightPlan } from '.';
|
|
3
5
|
import { Flight } from '.';
|
|
4
6
|
import { AnyKeyValue } from '.';
|
|
7
|
+
import { Contact } from '.';
|
|
5
8
|
import { FlightTicket } from '.';
|
|
6
|
-
import { PostFlightInfo } from '.';
|
|
7
9
|
import { PreFlightInfo } from '.';
|
|
8
|
-
import {
|
|
9
|
-
import { FlightPlan } from '.';
|
|
10
|
-
import { Contact } from '.';
|
|
10
|
+
import { PostFlightInfo } 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
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 { ColumnDef } from '.';
|
|
2
|
-
import { Address } from '.';
|
|
3
1
|
import { LeadStatusCode } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
4
|
+
import { Address } from '.';
|
|
5
5
|
export declare class Lead extends BaseEntityEx {
|
|
6
6
|
firstName: string;
|
|
7
7
|
lastName: string;
|
package/lib/LeadsEndPoint.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { LeadAction } from '.';
|
|
4
3
|
import { Lead } from '.';
|
|
5
4
|
import { TimeSeries } from '.';
|
|
5
|
+
import { LeadAction } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class LeadsEndPoint {
|
|
8
8
|
private config;
|
package/lib/LogBookRecord.d.ts
CHANGED
package/lib/LookupGroup.d.ts
CHANGED
package/lib/Maintenance.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
1
2
|
import { ColumnDef } from '.';
|
|
2
3
|
import { StatusCode } from '.';
|
|
3
4
|
import { MaintenanceActionCode } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
5
|
export declare class Maintenance extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
package/lib/MessageConfirm.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ConfirmStatusCode } from '.';
|
|
2
1
|
import { MessageTypeCode } from '.';
|
|
3
2
|
import { PriorityCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
5
4
|
import { ColumnDef } from '.';
|
|
5
|
+
import { ConfirmStatusCode } from '.';
|
|
6
6
|
export declare class MessageConfirm extends BaseEntityEx {
|
|
7
7
|
messageId: string;
|
|
8
8
|
contactId: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { BookingTypeFlag } from '.';
|
|
4
|
-
import {
|
|
4
|
+
import { BookingSlots } from '.';
|
|
5
5
|
import { Booking } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class MyBookingsEndPoint {
|
|
@@ -32,7 +32,7 @@ export declare class MyBookingsEndPoint {
|
|
|
32
32
|
/**
|
|
33
33
|
* Find my bookings by query
|
|
34
34
|
*/
|
|
35
|
-
getBookingSlots(year?: number, month?: number, type?: BookingTypeFlag): import("rxjs").Observable<EntitiesResponse<
|
|
35
|
+
getBookingSlots(year?: number, month?: number, type?: BookingTypeFlag): import("rxjs").Observable<EntitiesResponse<BookingSlots>>;
|
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<MyBookingsEndPoint, never>;
|
|
37
37
|
static ɵprov: i0.ɵɵInjectableDeclaration<MyBookingsEndPoint>;
|
|
38
38
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { PostFlightInfo } from '.';
|
|
4
|
-
import { Flight } from '.';
|
|
5
3
|
import { FlightPlan } from '.';
|
|
6
4
|
import { PreFlightInfo } from '.';
|
|
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,4 +1,3 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
1
|
import { ColumnDef } from '.';
|
|
3
2
|
import { FlightTypeCode } from '.';
|
|
4
3
|
import { FlightPurposeCode } from '.';
|
|
@@ -6,6 +5,7 @@ import { OnBoard } from '.';
|
|
|
6
5
|
import { TOLData } from '.';
|
|
7
6
|
import { ReFuel } from '.';
|
|
8
7
|
import { Lesson } from '.';
|
|
8
|
+
import { BaseEntityEx } from '.';
|
|
9
9
|
export declare class PostFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/PostFlightInfo.d.ts
CHANGED
package/lib/PreFlightData.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
1
2
|
import { ColumnDef } from '.';
|
|
2
3
|
import { FlightTypeCode } from '.';
|
|
3
4
|
import { FlightPurposeCode } from '.';
|
|
@@ -5,7 +6,6 @@ import { OnBoard } from '.';
|
|
|
5
6
|
import { TOLData } from '.';
|
|
6
7
|
import { ReFuel } from '.';
|
|
7
8
|
import { Lesson } from '.';
|
|
8
|
-
import { BaseEntityEx } from '.';
|
|
9
9
|
export declare class PreFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { WeatherRisks } from '.';
|
|
2
1
|
import { SpecialRisks } from '.';
|
|
3
2
|
import { Mitigation } from '.';
|
|
4
3
|
import { PilotQualificationsRisks } from '.';
|
|
@@ -6,6 +5,7 @@ import { CrewDutyDayRisks } from '.';
|
|
|
6
5
|
import { DepartureRisks } from '.';
|
|
7
6
|
import { DestinationRisks } from '.';
|
|
8
7
|
import { TripRisks } from '.';
|
|
8
|
+
import { WeatherRisks } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/SystemMessage.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { MessageTypeCode } from '.';
|
|
3
2
|
import { PriorityCode } from '.';
|
|
4
3
|
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/TokenData.d.ts
CHANGED
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UserTypeCode } from '.';
|
|
2
|
-
import { UserRoleFlag } from '.';
|
|
3
1
|
import { UserStatusCode } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
5
3
|
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/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/UserFilter.d.ts
CHANGED
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 { User } from '.';
|
|
4
3
|
import { StringKeyValue } from '.';
|
|
4
|
+
import { User } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class UsersEndPoint {
|
|
7
7
|
private config;
|