@aya-flights/ngx-goox-lib 1.19.20 → 1.19.22
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 +3927 -3915
- 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 +1 -1
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingSlot.d.ts +1 -1
- package/lib/Campaign.d.ts +1 -1
- package/lib/Certificate.d.ts +1 -1
- package/lib/Contact.d.ts +2 -2
- package/lib/ContactsEndPoint.d.ts +3 -3
- package/lib/Credit.d.ts +2 -2
- package/lib/Flight.d.ts +8 -8
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightFilter.d.ts +1 -1
- package/lib/FlightPassenger.d.ts +1 -1
- package/lib/FlightPlan.d.ts +1 -1
- package/lib/FlightRisk.d.ts +4 -4
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +13 -5
- package/lib/Group.d.ts +2 -2
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/Lead.d.ts +1 -1
- package/lib/LeadsEndPoint.d.ts +1 -1
- package/lib/Lookup.d.ts +1 -1
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/MessageConfirm.d.ts +2 -2
- package/lib/MyFlightsEndPoint.d.ts +1 -1
- package/lib/PostFlightData.d.ts +4 -4
- package/lib/Price.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 +1 -1
- package/lib/UserFilter.d.ts +1 -1
- package/lib/index.d.ts +105 -105
- package/lib/services.export.d.ts +17 -17
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { AccountStatusCode } from '.';
|
|
2
|
-
import { Address } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { AccountStatusCode } from '.';
|
|
4
|
+
import { Address } 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 { Credit } from '.';
|
|
4
|
+
import { Document } from '.';
|
|
4
5
|
import { Account } from '.';
|
|
5
|
-
import { StringKeyValue } from '.';
|
|
6
6
|
import { Flight } from '.';
|
|
7
|
-
import {
|
|
7
|
+
import { StringKeyValue } 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;
|
|
@@ -3,8 +3,8 @@ import { GooxConfig } from '../config';
|
|
|
3
3
|
import { StringKeyValue } from '.';
|
|
4
4
|
import { Flight } from '.';
|
|
5
5
|
import { Document } from '.';
|
|
6
|
-
import { Maintenance } from '.';
|
|
7
6
|
import { Airplane } from '.';
|
|
7
|
+
import { Maintenance } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AirplanesEndPoint {
|
|
10
10
|
private config;
|
package/lib/Booking.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { BookingTypeFlag } from '.';
|
|
2
3
|
import { BookingStatusCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Booking extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
title: string;
|
package/lib/BookingSlot.d.ts
CHANGED
package/lib/Campaign.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
1
|
import { ColumnDef } from '.';
|
|
3
2
|
import { CampaignTypeCode } from '.';
|
|
4
3
|
import { CampaignStatusCode } from '.';
|
|
5
4
|
import { CurrencyCode } from '.';
|
|
5
|
+
import { BaseEntityEx } 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 { 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
|
-
import { Contact } from '.';
|
|
4
|
-
import { Certificate } from '.';
|
|
5
3
|
import { Flight } from '.';
|
|
6
4
|
import { MessageConfirm } from '.';
|
|
7
|
-
import {
|
|
5
|
+
import { Contact } from '.';
|
|
8
6
|
import { StringKeyValue } from '.';
|
|
7
|
+
import { Certificate } from '.';
|
|
8
|
+
import { Document } 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 { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { TransactionTypeCode } from '.';
|
|
4
2
|
import { CurrencyCode } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } 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 { OnBoard } from '.';
|
|
2
|
-
import { ReFuel } from '.';
|
|
3
|
-
import { RiskAssessment } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
1
|
import { FlightTypeCode } from '.';
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import { TOLData } from '.';
|
|
2
|
+
import { FlightStatusCode } from '.';
|
|
3
|
+
import { OnBoard } from '.';
|
|
9
4
|
import { Lesson } from '.';
|
|
10
5
|
import { Billing } from '.';
|
|
6
|
+
import { BaseEntityEx } from '.';
|
|
11
7
|
import { ColumnDef } from '.';
|
|
12
|
-
import { FlightStatusCode } from '.';
|
|
13
8
|
import { FlightStateCode } from '.';
|
|
9
|
+
import { BillingStatusCode } from '.';
|
|
10
|
+
import { FlightPurposeCode } from '.';
|
|
11
|
+
import { TOLData } from '.';
|
|
12
|
+
import { ReFuel } from '.';
|
|
13
|
+
import { RiskAssessment } 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 { TimeFrame } from '.';
|
|
2
1
|
import { FlightTypeCode } from '.';
|
|
3
2
|
import { FlightStatusCode } from '.';
|
|
4
3
|
import { BillingStatusCode } from '.';
|
|
5
4
|
import { FlightPurposeCode } from '.';
|
|
5
|
+
import { TimeFrame } from '.';
|
|
6
6
|
export declare class FlightFilter {
|
|
7
7
|
search: string;
|
|
8
8
|
accountId: string;
|
package/lib/FlightPassenger.d.ts
CHANGED
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import { FlightTypeCode } from '.';
|
|
1
2
|
import { FlightStatusCode } from '.';
|
|
2
3
|
import { FlightStateCode } from '.';
|
|
3
4
|
import { FlightPurposeCode } from '.';
|
|
4
5
|
import { TOLData } from '.';
|
|
5
6
|
import { BaseEntityEx } from '.';
|
|
6
7
|
import { ColumnDef } from '.';
|
|
7
|
-
import { FlightTypeCode } 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 '.';
|
|
1
2
|
import { CrewDutyDayRisks } from '.';
|
|
3
|
+
import { DestinationRisks } from '.';
|
|
2
4
|
import { TripRisks } from '.';
|
|
3
|
-
import { WeatherRisks } from '.';
|
|
4
5
|
import { SpecialRisks } from '.';
|
|
5
6
|
import { ColumnDef } from '.';
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
7
|
+
import { DepartureRisks } from '.';
|
|
8
|
+
import { WeatherRisks } from '.';
|
|
8
9
|
import { Mitigation } from '.';
|
|
9
10
|
import { BaseEntityEx } from '.';
|
|
10
|
-
import { DepartureRisks } 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 { PostFlightInfo } from '.';
|
|
4
3
|
import { Flight } from '.';
|
|
4
|
+
import { AnyKeyValue } from '.';
|
|
5
5
|
import { TimeSeries } from '.';
|
|
6
|
+
import { PostFlightInfo } from '.';
|
|
6
7
|
import { Contact } from '.';
|
|
7
8
|
import { FlightTicket } from '.';
|
|
8
|
-
import { FlightPlan } from '.';
|
|
9
9
|
import { PreFlightInfo } from '.';
|
|
10
|
-
import {
|
|
10
|
+
import { FlightPlan } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class FlightsEndPoint {
|
|
13
13
|
private config;
|
|
@@ -70,6 +70,14 @@ export declare class FlightsEndPoint {
|
|
|
70
70
|
* Find list of related flight tickets for this flight
|
|
71
71
|
*/
|
|
72
72
|
findTickets(id?: string, search?: string, sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<FlightTicket>>;
|
|
73
|
+
/**
|
|
74
|
+
* Send flight details by sms (pref-flight, post-flight)
|
|
75
|
+
*/
|
|
76
|
+
sendFlightSMS(id?: string): import("rxjs").Observable<ActionResponse>;
|
|
77
|
+
/**
|
|
78
|
+
* Send flight details by sms (pref-flight, post-flight)
|
|
79
|
+
*/
|
|
80
|
+
sendFlightEmail(id?: string): import("rxjs").Observable<ActionResponse>;
|
|
73
81
|
/**
|
|
74
82
|
* Get pre-flight info by id
|
|
75
83
|
*/
|
|
@@ -77,7 +85,7 @@ export declare class FlightsEndPoint {
|
|
|
77
85
|
/**
|
|
78
86
|
* Update flight with pre-flight info
|
|
79
87
|
*/
|
|
80
|
-
setPreFlight(body?: PreFlightInfo): import("rxjs").Observable<
|
|
88
|
+
setPreFlight(body?: PreFlightInfo): import("rxjs").Observable<ActionResponse>;
|
|
81
89
|
/**
|
|
82
90
|
* Get post-flight info by id
|
|
83
91
|
*/
|
|
@@ -85,7 +93,7 @@ export declare class FlightsEndPoint {
|
|
|
85
93
|
/**
|
|
86
94
|
* Update flight with post-flight info
|
|
87
95
|
*/
|
|
88
|
-
setPostFlight(body?: PostFlightInfo): import("rxjs").Observable<
|
|
96
|
+
setPostFlight(body?: PostFlightInfo): import("rxjs").Observable<ActionResponse>;
|
|
89
97
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlightsEndPoint, never>;
|
|
90
98
|
static ɵprov: i0.ɵɵInjectableDeclaration<FlightsEndPoint>;
|
|
91
99
|
}
|
package/lib/Group.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
|
-
import { Permission } from '.';
|
|
3
1
|
import { StringKeyValue } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
4
|
+
import { Permission } from '.';
|
|
5
5
|
export declare class Group extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
email: string;
|
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
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 { Lead } from '.';
|
|
3
4
|
import { TimeSeries } from '.';
|
|
4
5
|
import { LeadAction } from '.';
|
|
5
|
-
import { Lead } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class LeadsEndPoint {
|
|
8
8
|
private config;
|
package/lib/Lookup.d.ts
CHANGED
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 { Lookup } from '.';
|
|
4
3
|
import { LookupGroup } from '.';
|
|
4
|
+
import { Lookup } 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 { ConfirmStatusCode } from '.';
|
|
2
|
+
import { MessageTypeCode } from '.';
|
|
1
3
|
import { PriorityCode } from '.';
|
|
2
4
|
import { BaseEntityEx } from '.';
|
|
3
5
|
import { ColumnDef } from '.';
|
|
4
|
-
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/PostFlightData.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { ReFuel } from '.';
|
|
2
|
-
import { Lesson } from '.';
|
|
3
|
-
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
1
|
import { FlightTypeCode } from '.';
|
|
6
2
|
import { FlightPurposeCode } from '.';
|
|
7
3
|
import { OnBoard } from '.';
|
|
8
4
|
import { TOLData } from '.';
|
|
5
|
+
import { ReFuel } from '.';
|
|
6
|
+
import { Lesson } from '.';
|
|
7
|
+
import { BaseEntityEx } from '.';
|
|
8
|
+
import { ColumnDef } from '.';
|
|
9
9
|
export declare class PostFlightData 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/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 { 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/UserFilter.d.ts
CHANGED