@aya-flights/ngx-goox-lib 2.19.168 → 2.19.169
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 +4891 -4820
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +2 -2
- package/lib/AccountsEndPoint.d.ts +4 -4
- package/lib/Airplane.d.ts +4 -4
- package/lib/AirplanesEndPoint.d.ts +5 -5
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingPlan.d.ts +2 -2
- package/lib/BookingSlot.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/Campaign.d.ts +1 -1
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/Certificate.d.ts +2 -2
- package/lib/CertificatesFilter.d.ts +1 -1
- package/lib/Contact.d.ts +5 -5
- package/lib/ContactsEndPoint.d.ts +6 -6
- package/lib/ContactsGroupsEndPoint.d.ts +1 -1
- package/lib/CreditsFilter.d.ts +1 -1
- package/lib/DocumentsEndPoint.d.ts +1 -1
- package/lib/Flight.d.ts +5 -5
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightPlan.d.ts +1 -1
- package/lib/FlightRisk.d.ts +3 -3
- package/lib/FlightsEndPoint.d.ts +9 -9
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/GroupsEndPoint.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/Maintenance.d.ts +2 -2
- package/lib/MaintenancesFilter.d.ts +1 -1
- package/lib/MessageConfirmsEndPoint.d.ts +1 -1
- package/lib/MyAuthEndPoint.d.ts +6 -1
- package/lib/MyBookingsEndPoint.d.ts +3 -3
- package/lib/MyFlightsEndPoint.d.ts +3 -3
- package/lib/Notification.d.ts +11 -0
- package/lib/NotificationTypeCode.d.ts +11 -0
- package/lib/RiskAssessment.d.ts +1 -1
- package/lib/Syllabus.d.ts +1 -1
- package/lib/SystemMessage.d.ts +2 -2
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/TimeSeries.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/UsersEndPoint.d.ts +2 -2
- package/lib/UsersFilter.d.ts +1 -1
- package/lib/index.d.ts +117 -115
- package/lib/services.export.d.ts +23 -23
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
2
|
+
import { AccountTypeCode } from '.';
|
|
1
3
|
import { AccountStatusCode } from '.';
|
|
2
4
|
import { Address } from '.';
|
|
3
5
|
import { BaseEntityEx } from '.';
|
|
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 { AccountStatusCode } from '.';
|
|
4
3
|
import { FlightPurposeCode } from '.';
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
5
|
+
import { FlightTypeCode } from '.';
|
|
6
|
+
import { FlightStateCode } from '.';
|
|
5
7
|
import { Flight } from '.';
|
|
6
8
|
import { Account } from '.';
|
|
9
|
+
import { AccountStatusCode } from '.';
|
|
7
10
|
import { AccountTypeCode } from '.';
|
|
8
11
|
import { StringKeyValue } from '.';
|
|
9
|
-
import { FlightTypeCode } from '.';
|
|
10
|
-
import { FlightStatusCode } from '.';
|
|
11
12
|
import { Credit } from '.';
|
|
12
13
|
import { Document } 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,12 +1,12 @@
|
|
|
1
|
+
import { AirplaneValidationFlag } from '.';
|
|
2
|
+
import { Engine } from '.';
|
|
1
3
|
import { Magneto } from '.';
|
|
2
4
|
import { Propeller } from '.';
|
|
3
|
-
import {
|
|
5
|
+
import { WBConfig } from '.';
|
|
4
6
|
import { BaseEntityEx } from '.';
|
|
5
7
|
import { TypeRatingFlag } from '.';
|
|
6
8
|
import { AirplaneStatusCode } from '.';
|
|
7
|
-
import {
|
|
8
|
-
import { Engine } from '.';
|
|
9
|
-
import { WBConfig } from '.';
|
|
9
|
+
import { Fuel } from '.';
|
|
10
10
|
import { ColumnDef } from '.';
|
|
11
11
|
export declare class Airplane extends BaseEntityEx {
|
|
12
12
|
name: 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
3
|
import { FlightPurposeCode } from '.';
|
|
5
|
-
import { Airplane } from '.';
|
|
6
4
|
import { FlightStateCode } from '.';
|
|
7
5
|
import { Document } from '.';
|
|
8
|
-
import { StatusCode } from '.';
|
|
9
6
|
import { MaintenanceActionCode } from '.';
|
|
7
|
+
import { Airplane } from '.';
|
|
10
8
|
import { FlightTypeCode } from '.';
|
|
11
|
-
import {
|
|
9
|
+
import { StatusCode } from '.';
|
|
10
|
+
import { Maintenance } from '.';
|
|
11
|
+
import { AirplaneStatusCode } from '.';
|
|
12
12
|
import { StringKeyValue } from '.';
|
|
13
|
+
import { FlightStatusCode } from '.';
|
|
13
14
|
import { Flight } from '.';
|
|
14
|
-
import { Maintenance } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
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
|
accountId: string;
|
package/lib/BookingPlan.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { FlightStatusCode } from '.';
|
|
2
|
+
import { BaseEntityEx } from '.';
|
|
1
3
|
import { ColumnDef } from '.';
|
|
2
4
|
import { BookingTypeFlag } from '.';
|
|
3
5
|
import { FlightPurposeCode } from '.';
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
5
|
-
import { BaseEntityEx } from '.';
|
|
6
6
|
export declare class BookingPlan extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
package/lib/BookingSlot.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/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;
|
package/lib/Certificate.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ValidationFlag } from '.';
|
|
2
|
-
import { StatusCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { ValidationFlag } from '.';
|
|
4
|
+
import { StatusCode } from '.';
|
|
5
5
|
export declare class Certificate extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
type: ValidationFlag;
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { Address } from '.';
|
|
2
|
-
import { TypeRatingFlag } from '.';
|
|
3
|
-
import { ValidationFlag } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
|
-
import { AccountStatusCode } from '.';
|
|
6
1
|
import { LicenseKindFlag } from '.';
|
|
7
2
|
import { MedicalCertClassCode } from '.';
|
|
8
3
|
import { FlightCategoryCode } from '.';
|
|
9
4
|
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
|
+
import { Address } from '.';
|
|
7
|
+
import { TypeRatingFlag } from '.';
|
|
8
|
+
import { ValidationFlag } from '.';
|
|
9
|
+
import { AccountStatusCode } 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 { FlightPurposeCode } from '.';
|
|
5
|
-
import { StatusCode } from '.';
|
|
6
|
-
import { Flight } from '.';
|
|
7
3
|
import { MessageConfirm } from '.';
|
|
8
4
|
import { Document } from '.';
|
|
9
5
|
import { Contact } from '.';
|
|
10
6
|
import { FlightStatusCode } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
7
|
+
import { Flight } from '.';
|
|
8
|
+
import { Certificate } from '.';
|
|
13
9
|
import { FlightTypeCode } from '.';
|
|
10
|
+
import { FlightPurposeCode } from '.';
|
|
11
|
+
import { StringKeyValue } from '.';
|
|
12
|
+
import { StatusCode } from '.';
|
|
13
|
+
import { FlightStateCode } 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 { ContactGroup } from '.';
|
|
4
3
|
import { StringKeyValue } from '.';
|
|
4
|
+
import { ContactGroup } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class ContactsGroupsEndPoint {
|
|
7
7
|
private config;
|
package/lib/CreditsFilter.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Document } from '.';
|
|
4
3
|
import { StorageItem } from '.';
|
|
4
|
+
import { Document } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class DocumentsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { Lesson } from '.';
|
|
1
|
+
import { TOLData } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
5
4
|
import { FlightPurposeCode } from '.';
|
|
6
5
|
import { FlightCategoryCode } from '.';
|
|
7
|
-
import { FlightTypeCode } from '.';
|
|
8
6
|
import { FlightStatusCode } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import { TOLData } from '.';
|
|
7
|
+
import { Lesson } from '.';
|
|
11
8
|
import { RiskAssessment } from '.';
|
|
9
|
+
import { FlightClassCode } from '.';
|
|
10
|
+
import { FlightTypeCode } from '.';
|
|
11
|
+
import { BillingStatusCode } from '.';
|
|
12
12
|
export declare class Flight extends BaseEntityEx {
|
|
13
13
|
name: string;
|
|
14
14
|
description: string;
|
package/lib/FlightBilling.d.ts
CHANGED
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import { FlightStateCode } from '.';
|
|
1
2
|
import { FlightPurposeCode } from '.';
|
|
2
3
|
import { TOLData } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
5
|
import { ColumnDef } from '.';
|
|
5
6
|
import { FlightTypeCode } from '.';
|
|
6
7
|
import { FlightStatusCode } from '.';
|
|
7
|
-
import { FlightStateCode } 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 { DestinationRisks } from '.';
|
|
2
3
|
import { TripRisks } from '.';
|
|
3
4
|
import { WeatherRisks } from '.';
|
|
5
|
+
import { SpecialRisks } from '.';
|
|
4
6
|
import { BaseEntityEx } from '.';
|
|
5
7
|
import { ColumnDef } from '.';
|
|
6
|
-
import {
|
|
8
|
+
import { CrewDutyDayRisks } from '.';
|
|
7
9
|
import { DepartureRisks } from '.';
|
|
8
10
|
import { Mitigation } from '.';
|
|
9
|
-
import { CrewDutyDayRisks } from '.';
|
|
10
|
-
import { SpecialRisks } 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
|
-
import { AnyKeyValue } from '.';
|
|
4
|
-
import { Contact } from '.';
|
|
5
3
|
import { TimeSeries } from '.';
|
|
6
|
-
import {
|
|
4
|
+
import { PreFlightInfo } from '.';
|
|
5
|
+
import { AnyKeyValue } from '.';
|
|
6
|
+
import { FlightStatusCode } from '.';
|
|
7
|
+
import { PostFlightInfo } from '.';
|
|
8
|
+
import { FlightPlan } from '.';
|
|
9
|
+
import { Point } from '.';
|
|
7
10
|
import { Flight } from '.';
|
|
8
11
|
import { FlightTypeCode } from '.';
|
|
9
|
-
import { FlightStatusCode } from '.';
|
|
10
|
-
import { FlightPurposeCode } from '.';
|
|
11
|
-
import { PreFlightInfo } from '.';
|
|
12
12
|
import { BillingStatusCode } from '.';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
13
|
+
import { Contact } from '.';
|
|
14
|
+
import { FlightTicket } from '.';
|
|
15
|
+
import { FlightPurposeCode } 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 '.';
|
|
3
1
|
import { TimeFrame } from '.';
|
|
4
2
|
import { FlightTypeCode } from '.';
|
|
5
3
|
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/LeadsEndPoint.d.ts
CHANGED
|
@@ -3,11 +3,11 @@ import { GooxConfig } from '../config';
|
|
|
3
3
|
import { Lead } from '.';
|
|
4
4
|
import { TimeSeries } from '.';
|
|
5
5
|
import { LeadAction } from '.';
|
|
6
|
-
import { IntKeyValue } from '.';
|
|
7
6
|
import { IntEnumValue } from '.';
|
|
8
7
|
import { LeadStatusCode } from '.';
|
|
9
8
|
import { Booking } from '.';
|
|
10
9
|
import { Point } from '.';
|
|
10
|
+
import { IntKeyValue } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class LeadsEndPoint {
|
|
13
13
|
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 { 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/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,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { ConfirmStatusCode } from '.';
|
|
3
4
|
import { PriorityCode } from '.';
|
|
4
5
|
import { MessageConfirm } from '.';
|
|
5
6
|
import { MessageTypeCode } from '.';
|
|
6
|
-
import { ConfirmStatusCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MessageConfirmsEndPoint {
|
|
9
9
|
private config;
|
package/lib/MyAuthEndPoint.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { RestUtil, EntityResponse, ActionResponse } from '../utils';
|
|
1
|
+
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { Contact } from '.';
|
|
4
|
+
import { Notification } from '.';
|
|
4
5
|
import { LoginParams } from '.';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class MyAuthEndPoint {
|
|
@@ -24,6 +25,10 @@ export declare class MyAuthEndPoint {
|
|
|
24
25
|
* Send SMS code
|
|
25
26
|
*/
|
|
26
27
|
verifyCode(code?: string): import("rxjs").Observable<ActionResponse>;
|
|
28
|
+
/**
|
|
29
|
+
* Get notifications for user - to show in the dashboard
|
|
30
|
+
*/
|
|
31
|
+
getNotifications(): import("rxjs").Observable<EntitiesResponse<Notification>>;
|
|
27
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<MyAuthEndPoint, never>;
|
|
28
33
|
static ɵprov: i0.ɵɵInjectableDeclaration<MyAuthEndPoint>;
|
|
29
34
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { BookingTypeFlag } from '.';
|
|
3
4
|
import { Lookup } from '.';
|
|
4
|
-
import {
|
|
5
|
+
import { Booking } from '.';
|
|
5
6
|
import { BookingStatusCode } from '.';
|
|
6
|
-
import {
|
|
7
|
+
import { BookingSlot } from '.';
|
|
7
8
|
import { Airplane } from '.';
|
|
8
|
-
import { Booking } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyBookingsEndPoint {
|
|
11
11
|
private config;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Flight } from '.';
|
|
3
4
|
import { FlightTypeCode } from '.';
|
|
5
|
+
import { InstructionTypeCode } from '.';
|
|
6
|
+
import { PostFlightInfo } from '.';
|
|
4
7
|
import { FlightStatusCode } from '.';
|
|
5
|
-
import { Flight } from '.';
|
|
6
8
|
import { FlightPlan } from '.';
|
|
7
|
-
import { InstructionTypeCode } from '.';
|
|
8
9
|
import { Syllabus } from '.';
|
|
9
10
|
import { PreFlightInfo } 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,11 @@
|
|
|
1
|
+
import { NotificationTypeCode } from '.';
|
|
2
|
+
import { PriorityCode } from '.';
|
|
3
|
+
import { StringKeyValue } from '.';
|
|
4
|
+
export declare class Notification {
|
|
5
|
+
type: NotificationTypeCode;
|
|
6
|
+
description: string;
|
|
7
|
+
severity: PriorityCode;
|
|
8
|
+
items: StringKeyValue[];
|
|
9
|
+
count: number;
|
|
10
|
+
constructor(type?: NotificationTypeCode, description?: string, severity?: PriorityCode, items?: StringKeyValue[], count?: number);
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Tuple } from '.';
|
|
2
|
+
export declare enum NotificationTypeCode {
|
|
3
|
+
UNDEFINED = 0,
|
|
4
|
+
GENERAL = 1,
|
|
5
|
+
FLIGHTS = 2,
|
|
6
|
+
CERTIFICATE = 4,
|
|
7
|
+
UNREAD = 8,
|
|
8
|
+
BALANCE = 16
|
|
9
|
+
}
|
|
10
|
+
export declare function GetNotificationTypeCodes(): Tuple<NotificationTypeCode, string>[];
|
|
11
|
+
export declare function MapNotificationTypeCodes(): Map<NotificationTypeCode, string>;
|
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { TripRisks } from '.';
|
|
2
1
|
import { WeatherRisks } from '.';
|
|
3
2
|
import { SpecialRisks } from '.';
|
|
4
3
|
import { Mitigation } from '.';
|
|
@@ -6,6 +5,7 @@ import { PilotQualificationsRisks } from '.';
|
|
|
6
5
|
import { CrewDutyDayRisks } from '.';
|
|
7
6
|
import { DepartureRisks } from '.';
|
|
8
7
|
import { DestinationRisks } from '.';
|
|
8
|
+
import { TripRisks } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/Syllabus.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { FlightCategoryCode } from '.';
|
|
3
2
|
import { InstructionTypeCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Syllabus extends BaseEntityEx {
|
|
6
6
|
plan: FlightCategoryCode;
|
|
7
7
|
type: InstructionTypeCode;
|
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;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { SystemMessage } from '.';
|
|
4
3
|
import { MessageTypeCode } from '.';
|
|
5
4
|
import { MessageConfirm } from '.';
|
|
5
|
+
import { SystemMessage } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SystemMessagesEndPoint {
|
|
8
8
|
private config;
|
package/lib/TimeSeries.d.ts
CHANGED
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
2
|
+
import { UserTypeCode } from '.';
|
|
1
3
|
import { UserRoleFlag } from '.';
|
|
2
4
|
import { UserStatusCode } from '.';
|
|
3
5
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
|
-
import { UserTypeCode } from '.';
|
|
6
6
|
export declare class User extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
email: string;
|
package/lib/UsersEndPoint.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { UserStatusCode } from '.';
|
|
4
|
-
import { StringKeyValue } from '.';
|
|
5
3
|
import { User } from '.';
|
|
6
4
|
import { UserTypeCode } from '.';
|
|
5
|
+
import { UserStatusCode } from '.';
|
|
6
|
+
import { StringKeyValue } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class UsersEndPoint {
|
|
9
9
|
private config;
|