@aya-flights/ngx-goox-lib 2.19.18 → 2.19.20
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 +3851 -3836
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +1 -1
- package/lib/Airplane.d.ts +1 -1
- 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/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +1 -1
- package/lib/Campaign.d.ts +2 -2
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/ContactsEndPoint.d.ts +4 -4
- package/lib/Credit.d.ts +1 -1
- package/lib/Flight.d.ts +8 -8
- package/lib/FlightFilter.d.ts +2 -2
- 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 +5 -5
- package/lib/Group.d.ts +2 -2
- package/lib/GroupsEndPoint.d.ts +5 -1
- package/lib/Lead.d.ts +2 -2
- package/lib/LeadAction.d.ts +1 -1
- package/lib/LogBookRecord.d.ts +1 -1
- package/lib/Maintenance.d.ts +1 -1
- package/lib/MessageConfirmsEndPoint.d.ts +1 -1
- 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 +2 -2
- package/lib/SystemConfig.d.ts +1 -1
- package/lib/SystemMessage.d.ts +2 -2
- package/lib/TokenData.d.ts +1 -1
- package/lib/User.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +103 -103
- package/lib/services.export.d.ts +19 -19
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { AccountStatusCode } from '.';
|
|
1
2
|
import { Address } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
4
|
import { ColumnDef } from '.';
|
|
4
|
-
import { AccountStatusCode } from '.';
|
|
5
5
|
export declare class Account extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
enName: string;
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { AirplaneValidationFlag } from '.';
|
|
2
1
|
import { Engine } from '.';
|
|
3
2
|
import { Magneto } from '.';
|
|
4
3
|
import { Propeller } from '.';
|
|
@@ -6,6 +5,7 @@ import { Fuel } from '.';
|
|
|
6
5
|
import { BaseEntityEx } from '.';
|
|
7
6
|
import { ColumnDef } from '.';
|
|
8
7
|
import { AirplaneStatusCode } from '.';
|
|
8
|
+
import { AirplaneValidationFlag } 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
|
-
import { Document } from '.';
|
|
5
5
|
import { Airplane } from '.';
|
|
6
|
-
import {
|
|
6
|
+
import { Document } from '.';
|
|
7
7
|
import { Maintenance } 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 { 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 { ColumnDef } from '.';
|
|
2
1
|
import { BookingTypeFlag } from '.';
|
|
3
2
|
import { BookingStatusCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Booking extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
accountId: string;
|
|
@@ -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;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { TimeSeries } from '.';
|
|
3
4
|
import { Booking } from '.';
|
|
4
5
|
import { BookingStatusCode } from '.';
|
|
5
|
-
import { TimeSeries } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class BookingsEndPoint {
|
|
8
8
|
private config;
|
package/lib/Campaign.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
1
3
|
import { CampaignTypeCode } from '.';
|
|
2
4
|
import { CampaignStatusCode } from '.';
|
|
3
5
|
import { CurrencyCode } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } 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 { StringKeyValue } from '.';
|
|
4
3
|
import { Campaign } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CampaignsEndPoint {
|
|
7
7
|
private config;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
3
|
+
import { Contact } from '.';
|
|
4
|
+
import { MessageConfirm } from '.';
|
|
5
5
|
import { Flight } from '.';
|
|
6
6
|
import { Document } from '.';
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
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 { BaseEntityEx } from '.';
|
|
1
2
|
import { ColumnDef } from '.';
|
|
2
3
|
import { TransactionTypeCode } from '.';
|
|
3
4
|
import { CurrencyCode } from '.';
|
|
4
|
-
import { BaseEntityEx } 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 { FlightPurposeCode } from '.';
|
|
2
|
-
import { Lesson } from '.';
|
|
3
|
-
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ReFuel } from '.';
|
|
5
|
-
import { Billing } from '.';
|
|
6
1
|
import { FlightTypeCode } from '.';
|
|
7
|
-
import { FlightStatusCode } from '.';
|
|
8
|
-
import { FlightStateCode } from '.';
|
|
9
|
-
import { BillingStatusCode } from '.';
|
|
10
2
|
import { OnBoard } from '.';
|
|
11
3
|
import { TOLData } from '.';
|
|
4
|
+
import { ReFuel } from '.';
|
|
5
|
+
import { Lesson } from '.';
|
|
12
6
|
import { RiskAssessment } from '.';
|
|
13
7
|
import { ColumnDef } from '.';
|
|
8
|
+
import { FlightStatusCode } from '.';
|
|
9
|
+
import { FlightStateCode } from '.';
|
|
10
|
+
import { BillingStatusCode } from '.';
|
|
11
|
+
import { FlightPurposeCode } from '.';
|
|
12
|
+
import { Billing } from '.';
|
|
13
|
+
import { BaseEntityEx } 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 { TimeFrame } from '.';
|
|
2
|
-
import { FlightTypeCode } from '.';
|
|
3
1
|
import { FlightStatusCode } from '.';
|
|
4
2
|
import { BillingStatusCode } from '.';
|
|
5
3
|
import { FlightPurposeCode } from '.';
|
|
4
|
+
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
|
+
import { FlightTypeCode } from '.';
|
|
1
4
|
import { FlightStatusCode } from '.';
|
|
2
5
|
import { FlightStateCode } from '.';
|
|
3
6
|
import { FlightPurposeCode } from '.';
|
|
4
7
|
import { TOLData } from '.';
|
|
5
|
-
import { BaseEntityEx } from '.';
|
|
6
|
-
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 { TripRisks } from '.';
|
|
2
1
|
import { WeatherRisks } from '.';
|
|
3
|
-
import { Mitigation } from '.';
|
|
4
|
-
import { CrewDutyDayRisks } from '.';
|
|
5
|
-
import { DepartureRisks } from '.';
|
|
6
|
-
import { SpecialRisks } from '.';
|
|
7
2
|
import { BaseEntityEx } from '.';
|
|
8
3
|
import { ColumnDef } from '.';
|
|
9
4
|
import { PilotQualificationsRisks } from '.';
|
|
10
5
|
import { DestinationRisks } from '.';
|
|
6
|
+
import { TripRisks } from '.';
|
|
7
|
+
import { SpecialRisks } from '.';
|
|
8
|
+
import { Mitigation } from '.';
|
|
9
|
+
import { CrewDutyDayRisks } 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 { AnyKeyValue } from '.';
|
|
4
|
-
import { TimeSeries } from '.';
|
|
5
|
-
import { FlightPlan } from '.';
|
|
6
|
-
import { FlightTicket } from '.';
|
|
7
3
|
import { PreFlightInfo } from '.';
|
|
8
4
|
import { PostFlightInfo } from '.';
|
|
9
|
-
import { Contact } from '.';
|
|
10
5
|
import { Flight } from '.';
|
|
6
|
+
import { FlightPlan } from '.';
|
|
7
|
+
import { Contact } from '.';
|
|
8
|
+
import { FlightTicket } from '.';
|
|
9
|
+
import { AnyKeyValue } from '.';
|
|
10
|
+
import { TimeSeries } 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 { Permission } from '.';
|
|
2
|
-
import { StringKeyValue } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { Permission } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
export declare class Group extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
email: string;
|
package/lib/GroupsEndPoint.d.ts
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { StringKeyValue } from '.';
|
|
4
3
|
import { Group } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class GroupsEndPoint {
|
|
7
7
|
private config;
|
|
8
8
|
private rest;
|
|
9
9
|
private baseUrl;
|
|
10
10
|
constructor(config: GooxConfig, rest: RestUtil);
|
|
11
|
+
/**
|
|
12
|
+
* Get new and empty flight template
|
|
13
|
+
*/
|
|
14
|
+
new(): import("rxjs").Observable<EntityResponse<Group>>;
|
|
11
15
|
/**
|
|
12
16
|
* Create new group
|
|
13
17
|
*/
|
package/lib/Lead.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Address } from '.';
|
|
2
|
-
import { LeadStatusCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { Address } from '.';
|
|
4
|
+
import { LeadStatusCode } from '.';
|
|
5
5
|
export declare class Lead extends BaseEntityEx {
|
|
6
6
|
firstName: string;
|
|
7
7
|
lastName: string;
|
package/lib/LeadAction.d.ts
CHANGED
package/lib/LogBookRecord.d.ts
CHANGED
package/lib/Maintenance.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { StatusCode } from '.';
|
|
2
3
|
import { MaintenanceActionCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Maintenance extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
|
@@ -30,7 +30,7 @@ export declare class MessageConfirmsEndPoint {
|
|
|
30
30
|
/**
|
|
31
31
|
* Find messageConfirms by query
|
|
32
32
|
*/
|
|
33
|
-
find(search?: string, messageId?: string, contactId?: string, sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<MessageConfirm>>;
|
|
33
|
+
find(search?: string, messageId?: string, contactId?: string, type?: [], status?: [], priority?: [], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<MessageConfirm>>;
|
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<MessageConfirmsEndPoint, never>;
|
|
35
35
|
static ɵprov: i0.ɵɵInjectableDeclaration<MessageConfirmsEndPoint>;
|
|
36
36
|
}
|
package/lib/PostFlightData.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { ReFuel } from '.';
|
|
2
1
|
import { Lesson } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
@@ -6,6 +5,7 @@ import { FlightTypeCode } from '.';
|
|
|
6
5
|
import { FlightPurposeCode } from '.';
|
|
7
6
|
import { OnBoard } from '.';
|
|
8
7
|
import { TOLData } from '.';
|
|
8
|
+
import { ReFuel } 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 { Lesson } from '.';
|
|
1
2
|
import { BaseEntityEx } from '.';
|
|
2
3
|
import { ColumnDef } from '.';
|
|
3
4
|
import { FlightTypeCode } from '.';
|
|
@@ -5,7 +6,6 @@ import { FlightPurposeCode } from '.';
|
|
|
5
6
|
import { OnBoard } from '.';
|
|
6
7
|
import { TOLData } from '.';
|
|
7
8
|
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/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/SystemConfig.d.ts
CHANGED
package/lib/SystemMessage.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { MessageTypeCode } from '.';
|
|
4
2
|
import { PriorityCode } from '.';
|
|
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/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;
|