@aya-flights/ngx-goox-lib 2.19.162 → 2.19.165
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 +4452 -4410
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +1 -1
- package/lib/AccountsEndPoint.d.ts +7 -7
- package/lib/Airplane.d.ts +5 -5
- package/lib/AirplanesEndPoint.d.ts +6 -6
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/BookingSlotsSet.d.ts +1 -1
- package/lib/Campaign.d.ts +1 -1
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/CertificatesEndPoint.d.ts +1 -1
- package/lib/Contact.d.ts +5 -5
- package/lib/ContactsEndPoint.d.ts +7 -7
- package/lib/ContactsGroupsEndPoint.d.ts +1 -1
- package/lib/Credit.d.ts +2 -2
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +6 -6
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +6 -6
- package/lib/FlightsEndPoint.d.ts +8 -8
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/Lead.d.ts +2 -2
- package/lib/LeadsEndPoint.d.ts +5 -5
- package/lib/Lesson.d.ts +1 -1
- package/lib/Lookup.d.ts +1 -1
- package/lib/Maintenance.d.ts +2 -2
- package/lib/MaintenancesEndPoint.d.ts +1 -1
- package/lib/MaintenancesFilter.d.ts +1 -1
- package/lib/MessageConfirm.d.ts +5 -0
- package/lib/MessageConfirmsEndPoint.d.ts +10 -2
- package/lib/MyBookingsEndPoint.d.ts +2 -2
- package/lib/MyFlightsEndPoint.d.ts +4 -4
- package/lib/MyMessagesEndPoint.d.ts +25 -0
- package/lib/PostFlightInfo.d.ts +2 -2
- package/lib/Price.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +2 -2
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/SystemConfig.d.ts +1 -1
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/SystemMessagesEndPoint.d.ts +1 -9
- package/lib/User.d.ts +1 -1
- package/lib/UsersFilter.d.ts +1 -1
- package/lib/index.d.ts +124 -123
- package/lib/services.export.d.ts +25 -24
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { AccountTypeCode } from '.';
|
|
2
1
|
import { AccountStatusCode } from '.';
|
|
3
2
|
import { Address } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
5
4
|
import { ColumnDef } from '.';
|
|
5
|
+
import { AccountTypeCode } from '.';
|
|
6
6
|
export declare class Account extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
enName: string;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightStatusCode } from '.';
|
|
4
|
-
import { AccountTypeCode } from '.';
|
|
5
|
-
import { FlightTypeCode } from '.';
|
|
6
|
-
import { Flight } from '.';
|
|
7
3
|
import { Account } from '.';
|
|
4
|
+
import { FlightTypeCode } from '.';
|
|
8
5
|
import { AccountStatusCode } from '.';
|
|
9
|
-
import { StringKeyValue } from '.';
|
|
10
|
-
import { FlightStateCode } from '.';
|
|
11
|
-
import { FlightPurposeCode } from '.';
|
|
12
6
|
import { Credit } from '.';
|
|
13
7
|
import { Document } from '.';
|
|
8
|
+
import { StringKeyValue } from '.';
|
|
9
|
+
import { FlightPurposeCode } from '.';
|
|
10
|
+
import { Flight } from '.';
|
|
11
|
+
import { AccountTypeCode } from '.';
|
|
12
|
+
import { FlightStatusCode } from '.';
|
|
13
|
+
import { FlightStateCode } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class AccountsEndPoint {
|
|
16
16
|
private config;
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
+
import { TypeRatingFlag } from '.';
|
|
2
|
+
import { Propeller } from '.';
|
|
3
|
+
import { Fuel } from '.';
|
|
1
4
|
import { WBConfig } from '.';
|
|
2
5
|
import { BaseEntityEx } from '.';
|
|
3
6
|
import { AirplaneStatusCode } from '.';
|
|
4
|
-
import { Magneto } from '.';
|
|
5
|
-
import { Fuel } from '.';
|
|
6
|
-
import { Propeller } from '.';
|
|
7
|
-
import { ColumnDef } from '.';
|
|
8
|
-
import { TypeRatingFlag } from '.';
|
|
9
7
|
import { AirplaneValidationFlag } from '.';
|
|
10
8
|
import { Engine } from '.';
|
|
9
|
+
import { Magneto } from '.';
|
|
10
|
+
import { ColumnDef } from '.';
|
|
11
11
|
export declare class Airplane extends BaseEntityEx {
|
|
12
12
|
name: string;
|
|
13
13
|
description: string;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { AirplaneStatusCode } from '.';
|
|
4
|
-
import { FlightStateCode } from '.';
|
|
5
3
|
import { Airplane } from '.';
|
|
6
|
-
import {
|
|
7
|
-
import { FlightPurposeCode } from '.';
|
|
4
|
+
import { AirplaneStatusCode } from '.';
|
|
8
5
|
import { StatusCode } from '.';
|
|
9
6
|
import { FlightTypeCode } from '.';
|
|
7
|
+
import { FlightStatusCode } from '.';
|
|
8
|
+
import { FlightPurposeCode } from '.';
|
|
10
9
|
import { Flight } from '.';
|
|
10
|
+
import { FlightStateCode } from '.';
|
|
11
11
|
import { Document } from '.';
|
|
12
|
-
import { MaintenanceActionCode } from '.';
|
|
13
12
|
import { Maintenance } from '.';
|
|
14
|
-
import {
|
|
13
|
+
import { StringKeyValue } from '.';
|
|
14
|
+
import { MaintenanceActionCode } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
private config;
|
package/lib/BookingSlots.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;
|
package/lib/BookingSlotsSet.d.ts
CHANGED
package/lib/Campaign.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { CampaignTypeCode } from '.';
|
|
1
2
|
import { CampaignStatusCode } from '.';
|
|
2
3
|
import { CurrencyCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
5
|
import { ColumnDef } from '.';
|
|
5
|
-
import { CampaignTypeCode } 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;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { StatusCode } from '.';
|
|
4
3
|
import { Certificate } from '.';
|
|
4
|
+
import { StatusCode } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CertificatesEndPoint {
|
|
7
7
|
private config;
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
|
-
import { Address } from '.';
|
|
4
1
|
import { TypeRatingFlag } from '.';
|
|
2
|
+
import { LicenseKindFlag } from '.';
|
|
5
3
|
import { MedicalCertClassCode } from '.';
|
|
6
4
|
import { ValidationFlag } from '.';
|
|
7
|
-
import {
|
|
5
|
+
import { BaseEntityEx } from '.';
|
|
6
|
+
import { ColumnDef } from '.';
|
|
8
7
|
import { AccountStatusCode } from '.';
|
|
9
|
-
import {
|
|
8
|
+
import { Address } from '.';
|
|
9
|
+
import { FlightCategoryCode } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
11
11
|
accountId: string;
|
|
12
12
|
name: string;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Certificate } from '.';
|
|
4
|
-
import { FlightStateCode } from '.';
|
|
5
|
-
import { FlightPurposeCode } from '.';
|
|
6
|
-
import { Flight } from '.';
|
|
7
|
-
import { FlightStatusCode } from '.';
|
|
8
|
-
import { Document } from '.';
|
|
9
|
-
import { StatusCode } from '.';
|
|
10
3
|
import { StringKeyValue } from '.';
|
|
11
4
|
import { FlightTypeCode } from '.';
|
|
5
|
+
import { FlightStatusCode } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
12
7
|
import { Contact } from '.';
|
|
8
|
+
import { StatusCode } from '.';
|
|
9
|
+
import { FlightPurposeCode } from '.';
|
|
10
|
+
import { Certificate } from '.';
|
|
11
|
+
import { FlightStateCode } from '.';
|
|
13
12
|
import { MessageConfirm } from '.';
|
|
13
|
+
import { Document } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
|
16
16
|
private config;
|
|
@@ -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 { ContactGroup } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class ContactsGroupsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Credit.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { TransactionTypeCode } from '.';
|
|
2
|
-
import { CurrencyCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
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/Document.d.ts
CHANGED
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { FlightCategoryCode } from '.';
|
|
2
|
-
import { FlightTypeCode } from '.';
|
|
3
|
-
import { BillingStatusCode } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
|
-
import { FlightPurposeCode } from '.';
|
|
6
1
|
import { FlightClassCode } from '.';
|
|
2
|
+
import { FlightTypeCode } from '.';
|
|
7
3
|
import { FlightStatusCode } from '.';
|
|
4
|
+
import { BillingStatusCode } from '.';
|
|
8
5
|
import { TOLData } from '.';
|
|
6
|
+
import { ColumnDef } from '.';
|
|
7
|
+
import { FlightPurposeCode } from '.';
|
|
8
|
+
import { FlightCategoryCode } from '.';
|
|
9
9
|
import { Lesson } from '.';
|
|
10
10
|
import { RiskAssessment } from '.';
|
|
11
|
-
import {
|
|
11
|
+
import { BaseEntityEx } from '.';
|
|
12
12
|
export declare class Flight extends BaseEntityEx {
|
|
13
13
|
name: string;
|
|
14
14
|
description: string;
|
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import { TOLData } from '.';
|
|
2
|
+
import { BaseEntityEx } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
1
4
|
import { FlightTypeCode } from '.';
|
|
2
5
|
import { FlightStatusCode } from '.';
|
|
3
6
|
import { FlightStateCode } from '.';
|
|
4
7
|
import { FlightPurposeCode } from '.';
|
|
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 { WeatherRisks } from '.';
|
|
3
|
-
import {
|
|
4
|
-
import { Mitigation } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
6
4
|
import { CrewDutyDayRisks } from '.';
|
|
7
5
|
import { DepartureRisks } from '.';
|
|
8
6
|
import { DestinationRisks } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
7
|
+
import { ColumnDef } from '.';
|
|
8
|
+
import { PilotQualificationsRisks } from '.';
|
|
9
|
+
import { SpecialRisks } from '.';
|
|
10
|
+
import { Mitigation } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/FlightsEndPoint.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { TimeSeries } from '.';
|
|
4
|
-
import {
|
|
4
|
+
import { Point } from '.';
|
|
5
|
+
import { Flight } from '.';
|
|
5
6
|
import { FlightTypeCode } from '.';
|
|
6
|
-
import { FlightPurposeCode } from '.';
|
|
7
7
|
import { FlightPlan } from '.';
|
|
8
|
-
import {
|
|
9
|
-
import { PostFlightInfo } from '.';
|
|
10
|
-
import { Flight } from '.';
|
|
11
|
-
import { BillingStatusCode } from '.';
|
|
8
|
+
import { AnyKeyValue } from '.';
|
|
12
9
|
import { FlightStatusCode } from '.';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
10
|
+
import { BillingStatusCode } from '.';
|
|
11
|
+
import { FlightPurposeCode } from '.';
|
|
15
12
|
import { Contact } from '.';
|
|
13
|
+
import { FlightTicket } from '.';
|
|
14
|
+
import { PreFlightInfo } from '.';
|
|
15
|
+
import { PostFlightInfo } from '.';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
export declare class FlightsEndPoint {
|
|
18
18
|
private config;
|
package/lib/FlightsFilter.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BillingStatusCode } from '.';
|
|
2
|
+
import { FlightPurposeCode } from '.';
|
|
1
3
|
import { TimeFrame } from '.';
|
|
2
4
|
import { FlightTypeCode } from '.';
|
|
3
5
|
import { FlightStatusCode } from '.';
|
|
4
|
-
import { BillingStatusCode } from '.';
|
|
5
|
-
import { FlightPurposeCode } from '.';
|
|
6
6
|
export declare class FlightsFilter {
|
|
7
7
|
search: string;
|
|
8
8
|
period: TimeFrame;
|
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 { 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;
|
package/lib/Lead.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { FollowUpAction } from '.';
|
|
2
|
+
import { BaseEntityEx } from '.';
|
|
1
3
|
import { ColumnDef } from '.';
|
|
2
4
|
import { Address } from '.';
|
|
3
5
|
import { LeadStatusCode } from '.';
|
|
4
|
-
import { FollowUpAction } from '.';
|
|
5
|
-
import { BaseEntityEx } from '.';
|
|
6
6
|
export declare class Lead extends BaseEntityEx {
|
|
7
7
|
firstName: string;
|
|
8
8
|
lastName: string;
|
package/lib/LeadsEndPoint.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Booking } from '.';
|
|
4
|
-
import { IntEnumValue } from '.';
|
|
5
3
|
import { IntKeyValue } from '.';
|
|
6
|
-
import {
|
|
7
|
-
import { LeadAction } from '.';
|
|
4
|
+
import { LeadStatusCode } from '.';
|
|
8
5
|
import { Point } from '.';
|
|
6
|
+
import { IntEnumValue } from '.';
|
|
7
|
+
import { LeadAction } from '.';
|
|
8
|
+
import { Booking } from '.';
|
|
9
9
|
import { Lead } from '.';
|
|
10
|
-
import {
|
|
10
|
+
import { TimeSeries } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class LeadsEndPoint {
|
|
13
13
|
private config;
|
package/lib/Lesson.d.ts
CHANGED
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,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Maintenance } from '.';
|
|
3
4
|
import { MaintenanceActionCode } from '.';
|
|
4
5
|
import { StatusCode } from '.';
|
|
5
|
-
import { Maintenance } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class MaintenancesEndPoint {
|
|
8
8
|
private config;
|
package/lib/MessageConfirm.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { ConfirmStatusCode } from '.';
|
|
2
|
+
import { MessageTypeCode } from '.';
|
|
3
|
+
import { PriorityCode } from '.';
|
|
2
4
|
import { BaseEntityEx } from '.';
|
|
3
5
|
import { ColumnDef } from '.';
|
|
4
6
|
export declare class MessageConfirm extends BaseEntityEx {
|
|
@@ -6,6 +8,9 @@ export declare class MessageConfirm extends BaseEntityEx {
|
|
|
6
8
|
contactId: string;
|
|
7
9
|
replyStatus: ConfirmStatusCode;
|
|
8
10
|
replyOn: number;
|
|
11
|
+
subject: string;
|
|
12
|
+
type: MessageTypeCode;
|
|
13
|
+
priority: PriorityCode;
|
|
9
14
|
get(field: string): any;
|
|
10
15
|
}
|
|
11
16
|
export declare function GetMessageConfirmColumnsDef(): ColumnDef[];
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { MessageConfirm } from '.';
|
|
4
|
-
import { MessageTypeCode } from '.';
|
|
5
3
|
import { ConfirmStatusCode } from '.';
|
|
6
4
|
import { PriorityCode } from '.';
|
|
5
|
+
import { MessageConfirm } from '.';
|
|
6
|
+
import { MessageTypeCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MessageConfirmsEndPoint {
|
|
9
9
|
private config;
|
|
@@ -34,6 +34,14 @@ export declare class MessageConfirmsEndPoint {
|
|
|
34
34
|
* Find messageConfirms by query
|
|
35
35
|
*/
|
|
36
36
|
find(search?: string, messageId?: string, contactId?: string, type?: MessageTypeCode[], status?: ConfirmStatusCode[], priority?: PriorityCode[], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<MessageConfirm>>;
|
|
37
|
+
/**
|
|
38
|
+
* Find messages for contact
|
|
39
|
+
*/
|
|
40
|
+
findContactMessages(id?: string): import("rxjs").Observable<EntitiesResponse<MessageConfirm>>;
|
|
41
|
+
/**
|
|
42
|
+
* Confirm messages by contact
|
|
43
|
+
*/
|
|
44
|
+
confirmContactMessage(id?: string, msgId?: string): import("rxjs").Observable<ActionResponse>;
|
|
37
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<MessageConfirmsEndPoint, never>;
|
|
38
46
|
static ɵprov: i0.ɵɵInjectableDeclaration<MessageConfirmsEndPoint>;
|
|
39
47
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Lookup } from '.';
|
|
4
|
+
import { Airplane } from '.';
|
|
3
5
|
import { Booking } from '.';
|
|
4
6
|
import { BookingStatusCode } from '.';
|
|
5
|
-
import { Airplane } from '.';
|
|
6
7
|
import { BookingTypeFlag } from '.';
|
|
7
|
-
import { Lookup } from '.';
|
|
8
8
|
import { BookingSlot } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyBookingsEndPoint {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import { InstructionTypeCode } from '.';
|
|
5
|
-
import { PreFlightInfo } from '.';
|
|
3
|
+
import { PostFlightInfo } from '.';
|
|
6
4
|
import { FlightTypeCode } from '.';
|
|
7
5
|
import { FlightStatusCode } from '.';
|
|
6
|
+
import { InstructionTypeCode } from '.';
|
|
7
|
+
import { PreFlightInfo } from '.';
|
|
8
|
+
import { Flight } from '.';
|
|
8
9
|
import { FlightPlan } from '.';
|
|
9
10
|
import { Syllabus } from '.';
|
|
10
|
-
import { PostFlightInfo } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class MyFlightsEndPoint {
|
|
13
13
|
private config;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
|
+
import { GooxConfig } from '../config';
|
|
3
|
+
import { SystemMessage } from '.';
|
|
4
|
+
import { MessageConfirm } from '.';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class MyMessagesEndPoint {
|
|
7
|
+
private config;
|
|
8
|
+
private rest;
|
|
9
|
+
private baseUrl;
|
|
10
|
+
constructor(config: GooxConfig, rest: RestUtil);
|
|
11
|
+
/**
|
|
12
|
+
* Get a single message by id
|
|
13
|
+
*/
|
|
14
|
+
get(id?: string): import("rxjs").Observable<EntityResponse<SystemMessage>>;
|
|
15
|
+
/**
|
|
16
|
+
* Find my Messages
|
|
17
|
+
*/
|
|
18
|
+
find(): import("rxjs").Observable<EntitiesResponse<MessageConfirm>>;
|
|
19
|
+
/**
|
|
20
|
+
* Confirm messages by contact
|
|
21
|
+
*/
|
|
22
|
+
confirm(id?: string): import("rxjs").Observable<ActionResponse>;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MyMessagesEndPoint, never>;
|
|
24
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MyMessagesEndPoint>;
|
|
25
|
+
}
|
package/lib/PostFlightInfo.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { FlightCategoryCode } from '.';
|
|
2
|
-
import { AssessmentCode } from '.';
|
|
3
1
|
import { FlightPurposeCode } from '.';
|
|
4
2
|
import { FlightTypeCode } from '.';
|
|
3
|
+
import { FlightCategoryCode } from '.';
|
|
4
|
+
import { AssessmentCode } from '.';
|
|
5
5
|
export declare class PostFlightInfo {
|
|
6
6
|
flightId: string;
|
|
7
7
|
flightNumber: number;
|
package/lib/Price.d.ts
CHANGED
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import { WeatherRisks } from '.';
|
|
2
|
+
import { SpecialRisks } from '.';
|
|
1
3
|
import { Mitigation } from '.';
|
|
2
4
|
import { PilotQualificationsRisks } from '.';
|
|
3
5
|
import { CrewDutyDayRisks } from '.';
|
|
4
6
|
import { DepartureRisks } from '.';
|
|
5
7
|
import { DestinationRisks } from '.';
|
|
6
8
|
import { TripRisks } from '.';
|
|
7
|
-
import { WeatherRisks } from '.';
|
|
8
|
-
import { SpecialRisks } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Syllabus } from '.';
|
|
4
3
|
import { FlightCategoryCode } from '.';
|
|
5
4
|
import { InstructionTypeCode } from '.';
|
|
5
|
+
import { Syllabus } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SyllabusEndPoint {
|
|
8
8
|
private config;
|
package/lib/SystemConfig.d.ts
CHANGED
package/lib/SystemMessage.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { MessageTypeCode } from '.';
|
|
1
2
|
import { PriorityCode } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
4
|
import { ColumnDef } from '.';
|
|
4
|
-
import { MessageTypeCode } from '.';
|
|
5
5
|
export declare class SystemMessage extends BaseEntityEx {
|
|
6
6
|
subject: string;
|
|
7
7
|
description: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { MessageConfirm } from '.';
|
|
3
4
|
import { SystemMessage } from '.';
|
|
4
5
|
import { MessageTypeCode } from '.';
|
|
5
|
-
import { MessageConfirm } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SystemMessagesEndPoint {
|
|
8
8
|
private config;
|
|
@@ -37,14 +37,6 @@ export declare class SystemMessagesEndPoint {
|
|
|
37
37
|
* Find message confirmations
|
|
38
38
|
*/
|
|
39
39
|
findConfirms(id?: string, search?: string, sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<MessageConfirm>>;
|
|
40
|
-
/**
|
|
41
|
-
* Find messages for contact
|
|
42
|
-
*/
|
|
43
|
-
findContactMessages(id?: string): import("rxjs").Observable<EntitiesResponse<SystemMessage>>;
|
|
44
|
-
/**
|
|
45
|
-
* Find messages for contact
|
|
46
|
-
*/
|
|
47
|
-
confirmContactMessage(id?: string, msgId?: string): import("rxjs").Observable<ActionResponse>;
|
|
48
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<SystemMessagesEndPoint, never>;
|
|
49
41
|
static ɵprov: i0.ɵɵInjectableDeclaration<SystemMessagesEndPoint>;
|
|
50
42
|
}
|
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UserStatusCode } from '.';
|
|
2
1
|
import { BaseEntityEx } from '.';
|
|
3
2
|
import { ColumnDef } from '.';
|
|
4
3
|
import { UserTypeCode } from '.';
|
|
5
4
|
import { UserRoleFlag } from '.';
|
|
5
|
+
import { UserStatusCode } from '.';
|
|
6
6
|
export declare class User extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
email: string;
|