@aya-flights/ngx-goox-lib 2.18.170 → 2.18.172
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/esm2022/lib/Account.mjs +2 -2
- package/esm2022/lib/AccountsEndPoint.mjs +1 -1
- package/esm2022/lib/Airplane.mjs +1 -1
- package/esm2022/lib/AirplanesEndPoint.mjs +1 -1
- package/esm2022/lib/AuditLog.mjs +1 -1
- package/esm2022/lib/Booking.mjs +1 -1
- package/esm2022/lib/BookingSlotsEndPoint.mjs +1 -1
- package/esm2022/lib/BookingsEndPoint.mjs +1 -1
- package/esm2022/lib/Certificate.mjs +1 -1
- package/esm2022/lib/Contact.mjs +2 -2
- package/esm2022/lib/ContactGroup.mjs +2 -2
- package/esm2022/lib/ContactsEndPoint.mjs +1 -1
- package/esm2022/lib/Credit.mjs +1 -1
- package/esm2022/lib/CreditsFilter.mjs +1 -1
- package/esm2022/lib/DocumentsEndPoint.mjs +11 -1
- package/esm2022/lib/Enums.mjs +271 -271
- package/esm2022/lib/Flight.mjs +2 -2
- package/esm2022/lib/FlightBilling.mjs +1 -1
- package/esm2022/lib/FlightPlan.mjs +2 -2
- package/esm2022/lib/FlightRisk.mjs +1 -1
- package/esm2022/lib/FlightTicket.mjs +2 -2
- package/esm2022/lib/FlightsEndPoint.mjs +1 -1
- package/esm2022/lib/Lead.mjs +2 -2
- package/esm2022/lib/LeadsEndPoint.mjs +1 -1
- package/esm2022/lib/Lesson.mjs +1 -1
- package/esm2022/lib/MessageConfirm.mjs +1 -1
- package/esm2022/lib/MessageConfirmsEndPoint.mjs +1 -1
- package/esm2022/lib/MyBookingsEndPoint.mjs +1 -1
- package/esm2022/lib/MyFlightsEndPoint.mjs +1 -1
- package/esm2022/lib/MyInfoEndPoint.mjs +34 -0
- package/esm2022/lib/Notification.mjs +2 -2
- package/esm2022/lib/Permission.mjs +1 -1
- package/esm2022/lib/PostFlightInfo.mjs +1 -1
- package/esm2022/lib/PriceListEndPoint.mjs +1 -1
- package/esm2022/lib/RiskAssessment.mjs +1 -1
- package/esm2022/lib/StorageItem.mjs +21 -14
- package/esm2022/lib/SystemConfig.mjs +2 -2
- package/esm2022/lib/SystemMessage.mjs +2 -2
- package/esm2022/lib/SystemMessagesEndPoint.mjs +1 -1
- package/esm2022/lib/User.mjs +1 -1
- package/esm2022/lib/index.mjs +120 -119
- package/esm2022/lib/services.export.mjs +51 -49
- package/fesm2022/aya-flights-ngx-goox-lib.mjs +5329 -5283
- 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 +6 -6
- package/lib/AirplanesEndPoint.d.ts +6 -6
- package/lib/AuditLog.d.ts +1 -1
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +2 -2
- package/lib/Certificate.d.ts +1 -1
- package/lib/Contact.d.ts +5 -5
- package/lib/ContactGroup.d.ts +1 -1
- package/lib/ContactsEndPoint.d.ts +5 -5
- package/lib/Credit.d.ts +1 -1
- package/lib/CreditsFilter.d.ts +1 -1
- package/lib/DocumentsEndPoint.d.ts +5 -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 +4 -4
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +9 -9
- package/lib/Lead.d.ts +1 -1
- package/lib/LeadsEndPoint.d.ts +5 -5
- package/lib/Lesson.d.ts +1 -1
- package/lib/MessageConfirm.d.ts +2 -2
- package/lib/MessageConfirmsEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +3 -3
- package/lib/MyFlightsEndPoint.d.ts +4 -4
- package/lib/MyInfoEndPoint.d.ts +16 -0
- package/lib/Notification.d.ts +2 -2
- package/lib/Permission.d.ts +1 -1
- package/lib/PostFlightInfo.d.ts +1 -1
- package/lib/PriceListEndPoint.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +3 -3
- package/lib/StorageItem.d.ts +6 -2
- package/lib/SystemConfig.d.ts +1 -1
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/User.d.ts +1 -1
- package/lib/index.d.ts +119 -118
- package/lib/services.export.d.ts +26 -25
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { AccountTypeCode } from '.';
|
|
3
2
|
import { AccountStatusCode } from '.';
|
|
4
3
|
import { Address } from '.';
|
|
5
4
|
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } 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 {
|
|
4
|
-
import {
|
|
5
|
-
import { AccountStatusCode } from '.';
|
|
6
|
-
import { FlightStatusCode } from '.';
|
|
3
|
+
import { StringKeyValue } from '.';
|
|
4
|
+
import { FlightTypeCode } from '.';
|
|
7
5
|
import { FlightPurposeCode } from '.';
|
|
8
|
-
import { Flight } from '.';
|
|
9
6
|
import { Account } from '.';
|
|
7
|
+
import { AccountStatusCode } from '.';
|
|
8
|
+
import { FlightStatusCode } from '.';
|
|
10
9
|
import { FlightStateCode } from '.';
|
|
10
|
+
import { Flight } from '.';
|
|
11
11
|
import { AccountTypeCode } from '.';
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
12
|
+
import { Credit } from '.';
|
|
13
|
+
import { Document } 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 {
|
|
2
|
-
import { Fuel } from '.';
|
|
3
|
-
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
1
|
+
import { TypeRatingFlag } from '.';
|
|
5
2
|
import { AirplaneValidationFlag } from '.';
|
|
6
3
|
import { Magneto } from '.';
|
|
4
|
+
import { AirplaneStatusCode } from '.';
|
|
7
5
|
import { Engine } from '.';
|
|
6
|
+
import { Propeller } from '.';
|
|
7
|
+
import { Fuel } from '.';
|
|
8
8
|
import { WBConfig } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
9
|
+
import { BaseEntityEx } 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 { Airplane } from '.';
|
|
4
|
-
import { StringKeyValue } from '.';
|
|
5
3
|
import { FlightTypeCode } from '.';
|
|
6
4
|
import { Flight } from '.';
|
|
7
|
-
import {
|
|
5
|
+
import { Document } from '.';
|
|
6
|
+
import { AirplaneStatusCode } from '.';
|
|
8
7
|
import { MaintenanceActionCode } from '.';
|
|
8
|
+
import { Maintenance } from '.';
|
|
9
9
|
import { FlightStateCode } from '.';
|
|
10
10
|
import { FlightPurposeCode } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
11
|
+
import { StatusCode } from '.';
|
|
12
|
+
import { Airplane } from '.';
|
|
13
|
+
import { StringKeyValue } from '.';
|
|
13
14
|
import { FlightStatusCode } from '.';
|
|
14
|
-
import { Document } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
private config;
|
package/lib/AuditLog.d.ts
CHANGED
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
|
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,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Booking } from '.';
|
|
4
|
-
import { BookingStatusCode } from '.';
|
|
5
3
|
import { TimeSeries } from '.';
|
|
6
4
|
import { BookingPlan } from '.';
|
|
5
|
+
import { Booking } from '.';
|
|
6
|
+
import { BookingStatusCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class BookingsEndPoint {
|
|
9
9
|
private config;
|
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,12 +1,12 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
|
-
import { AccountStatusCode } from '.';
|
|
3
|
-
import { FlightCategoryCode } from '.';
|
|
4
|
-
import { LicenseKindFlag } from '.';
|
|
5
|
-
import { MedicalCertClassCode } from '.';
|
|
6
1
|
import { ValidationFlag } from '.';
|
|
2
|
+
import { FlightCategoryCode } from '.';
|
|
7
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { MedicalCertClassCode } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
|
+
import { AccountStatusCode } from '.';
|
|
8
7
|
import { Address } from '.';
|
|
9
8
|
import { TypeRatingFlag } from '.';
|
|
9
|
+
import { LicenseKindFlag } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
11
11
|
accountId: string;
|
|
12
12
|
name: string;
|
package/lib/ContactGroup.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { FlightTypeCode } from '.';
|
|
4
|
-
import {
|
|
5
|
-
import { StatusCode } from '.';
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
6
5
|
import { Contact } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
7
7
|
import { FlightStateCode } from '.';
|
|
8
|
-
import { Document } from '.';
|
|
9
|
-
import { StringKeyValue } from '.';
|
|
10
8
|
import { FlightPurposeCode } from '.';
|
|
11
9
|
import { MessageConfirm } from '.';
|
|
10
|
+
import { StatusCode } from '.';
|
|
11
|
+
import { StringKeyValue } from '.';
|
|
12
12
|
import { Certificate } from '.';
|
|
13
|
-
import {
|
|
13
|
+
import { Document } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
|
16
16
|
private config;
|
package/lib/Credit.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { CurrencyCode } from '.';
|
|
2
1
|
import { BaseEntityEx } from '.';
|
|
3
2
|
import { ColumnDef } from '.';
|
|
4
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/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 { StorageItem } from '.';
|
|
4
3
|
import { Document } from '.';
|
|
4
|
+
import { StorageItem } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class DocumentsEndPoint {
|
|
7
7
|
private config;
|
|
@@ -40,6 +40,10 @@ export declare class DocumentsEndPoint {
|
|
|
40
40
|
* Get a list of files from the base storage
|
|
41
41
|
*/
|
|
42
42
|
listFiles(root?: string): import("rxjs").Observable<EntitiesResponse<StorageItem>>;
|
|
43
|
+
/**
|
|
44
|
+
* Get a list of files and folders from the folder in Google Drive defined as Library
|
|
45
|
+
*/
|
|
46
|
+
broseLibrary(root?: string): import("rxjs").Observable<EntitiesResponse<StorageItem>>;
|
|
43
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentsEndPoint, never>;
|
|
44
48
|
static ɵprov: i0.ɵɵInjectableDeclaration<DocumentsEndPoint>;
|
|
45
49
|
}
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { FlightPurposeCode } from '.';
|
|
3
2
|
import { FlightCategoryCode } from '.';
|
|
4
|
-
import {
|
|
5
|
-
import { BillingStatusCode } from '.';
|
|
3
|
+
import { FlightStatusCode } from '.';
|
|
6
4
|
import { Lesson } from '.';
|
|
5
|
+
import { RiskAssessment } from '.';
|
|
7
6
|
import { BaseEntityEx } from '.';
|
|
7
|
+
import { ColumnDef } from '.';
|
|
8
8
|
import { FlightClassCode } from '.';
|
|
9
|
-
import {
|
|
9
|
+
import { FlightTypeCode } from '.';
|
|
10
|
+
import { BillingStatusCode } from '.';
|
|
10
11
|
import { TOLData } from '.';
|
|
11
|
-
import { RiskAssessment } 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 { ColumnDef } from '.';
|
|
1
2
|
import { FlightTypeCode } from '.';
|
|
2
3
|
import { FlightStatusCode } from '.';
|
|
3
4
|
import { FlightStateCode } from '.';
|
|
4
5
|
import { FlightPurposeCode } from '.';
|
|
5
6
|
import { TOLData } from '.';
|
|
6
7
|
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,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PilotQualificationsRisks } from '.';
|
|
2
2
|
import { CrewDutyDayRisks } from '.';
|
|
3
|
-
import { DepartureRisks } from '.';
|
|
4
3
|
import { WeatherRisks } from '.';
|
|
5
|
-
import { SpecialRisks } from '.';
|
|
6
4
|
import { ColumnDef } from '.';
|
|
7
|
-
import {
|
|
5
|
+
import { DepartureRisks } from '.';
|
|
8
6
|
import { DestinationRisks } from '.';
|
|
9
7
|
import { TripRisks } from '.';
|
|
8
|
+
import { SpecialRisks } from '.';
|
|
9
|
+
import { Mitigation } from '.';
|
|
10
10
|
import { BaseEntityEx } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
package/lib/FlightTicket.d.ts
CHANGED
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 {
|
|
3
|
+
import { FlightTypeCode } from '.';
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
5
|
+
import { BillingStatusCode } from '.';
|
|
6
|
+
import { TimeSeries } from '.';
|
|
7
|
+
import { FlightPlan } from '.';
|
|
4
8
|
import { Point } from '.';
|
|
5
|
-
import { Contact } from '.';
|
|
6
|
-
import { PostFlightInfo } from '.';
|
|
7
9
|
import { FlightTicket } from '.';
|
|
8
|
-
import {
|
|
10
|
+
import { PostFlightInfo } from '.';
|
|
11
|
+
import { Contact } from '.';
|
|
12
|
+
import { AnyKeyValue } from '.';
|
|
13
|
+
import { FlightPurposeCode } from '.';
|
|
9
14
|
import { Flight } from '.';
|
|
10
|
-
import { FlightStatusCode } from '.';
|
|
11
|
-
import { TimeSeries } from '.';
|
|
12
15
|
import { PreFlightInfo } from '.';
|
|
13
|
-
import { FlightTypeCode } from '.';
|
|
14
|
-
import { BillingStatusCode } 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/Lead.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { Address } from '.';
|
|
2
3
|
import { LeadStatusCode } from '.';
|
|
3
4
|
import { FollowUpAction } from '.';
|
|
4
5
|
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } 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 { IntKeyValue } from '.';
|
|
4
|
-
import { Lead } from '.';
|
|
5
|
-
import { LeadStatusCode } from '.';
|
|
6
|
-
import { LeadAction } from '.';
|
|
7
|
-
import { Booking } from '.';
|
|
8
3
|
import { TimeSeries } from '.';
|
|
4
|
+
import { LeadAction } from '.';
|
|
5
|
+
import { Lead } from '.';
|
|
9
6
|
import { Point } from '.';
|
|
10
7
|
import { IntEnumValue } from '.';
|
|
8
|
+
import { IntKeyValue } from '.';
|
|
9
|
+
import { LeadStatusCode } from '.';
|
|
10
|
+
import { Booking } 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/MessageConfirm.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
1
3
|
import { ConfirmStatusCode } from '.';
|
|
2
4
|
import { MessageTypeCode } from '.';
|
|
3
5
|
import { PriorityCode } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } 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 { PriorityCode } from '.';
|
|
4
3
|
import { MessageConfirm } from '.';
|
|
5
4
|
import { MessageTypeCode } from '.';
|
|
6
5
|
import { ConfirmStatusCode } from '.';
|
|
6
|
+
import { PriorityCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MessageConfirmsEndPoint {
|
|
9
9
|
private config;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { BookingTypeFlag } from '.';
|
|
4
|
+
import { BookingSlot } from '.';
|
|
5
|
+
import { Booking } from '.';
|
|
3
6
|
import { BookingStatusCode } from '.';
|
|
4
7
|
import { Lookup } from '.';
|
|
5
|
-
import { BookingSlot } from '.';
|
|
6
8
|
import { Airplane } from '.';
|
|
7
|
-
import { Booking } from '.';
|
|
8
|
-
import { BookingTypeFlag } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyBookingsEndPoint {
|
|
11
11
|
private config;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightStatusCode } from '.';
|
|
4
|
-
import { Syllabus } from '.';
|
|
5
|
-
import { FlightTypeCode } from '.';
|
|
6
3
|
import { InstructionTypeCode } from '.';
|
|
7
|
-
import {
|
|
4
|
+
import { Syllabus } from '.';
|
|
8
5
|
import { PostFlightInfo } from '.';
|
|
6
|
+
import { PreFlightInfo } from '.';
|
|
9
7
|
import { Flight } from '.';
|
|
8
|
+
import { FlightTypeCode } from '.';
|
|
9
|
+
import { FlightStatusCode } from '.';
|
|
10
10
|
import { FlightPlan } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class MyFlightsEndPoint {
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { RestUtil, EntitiesResponse } from '../utils';
|
|
2
|
+
import { GooxConfig } from '../config';
|
|
3
|
+
import { StorageItem } from '.';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MyInfoEndPoint {
|
|
6
|
+
private config;
|
|
7
|
+
private rest;
|
|
8
|
+
private baseUrl;
|
|
9
|
+
constructor(config: GooxConfig, rest: RestUtil);
|
|
10
|
+
/**
|
|
11
|
+
* Get a list of files and folders from the folder in Google Drive defined as Library
|
|
12
|
+
*/
|
|
13
|
+
broseLibrary(folder?: string): import("rxjs").Observable<EntitiesResponse<StorageItem>>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MyInfoEndPoint, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MyInfoEndPoint>;
|
|
16
|
+
}
|
package/lib/Notification.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { StringKeyValue } from '.';
|
|
2
|
+
import { BaseEntityEx } from '.';
|
|
1
3
|
import { ColumnDef } from '.';
|
|
2
4
|
import { NotificationTypeCode } from '.';
|
|
3
5
|
import { PriorityCode } from '.';
|
|
4
|
-
import { StringKeyValue } from '.';
|
|
5
|
-
import { BaseEntityEx } from '.';
|
|
6
6
|
export declare class Notification extends BaseEntityEx {
|
|
7
7
|
type: NotificationTypeCode;
|
|
8
8
|
description: string;
|
package/lib/Permission.d.ts
CHANGED
package/lib/PostFlightInfo.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { FlightPurposeCode } from '.';
|
|
1
2
|
import { FlightTypeCode } from '.';
|
|
2
3
|
import { FlightCategoryCode } from '.';
|
|
3
4
|
import { AssessmentCode } from '.';
|
|
4
|
-
import { FlightPurposeCode } from '.';
|
|
5
5
|
export declare class PostFlightInfo {
|
|
6
6
|
flightId: string;
|
|
7
7
|
flightNumber: number;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightPurposeCode } from '.';
|
|
4
3
|
import { Price } from '.';
|
|
4
|
+
import { FlightPurposeCode } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class PriceListEndPoint {
|
|
7
7
|
private config;
|
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { CrewDutyDayRisks } from '.';
|
|
2
|
-
import { DepartureRisks } from '.';
|
|
3
|
-
import { DestinationRisks } from '.';
|
|
4
1
|
import { TripRisks } from '.';
|
|
5
2
|
import { WeatherRisks } from '.';
|
|
6
3
|
import { SpecialRisks } from '.';
|
|
7
4
|
import { Mitigation } from '.';
|
|
8
5
|
import { PilotQualificationsRisks } from '.';
|
|
6
|
+
import { CrewDutyDayRisks } from '.';
|
|
7
|
+
import { DepartureRisks } from '.';
|
|
8
|
+
import { DestinationRisks } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/StorageItem.d.ts
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
3
|
+
export declare class StorageItem extends BaseEntityEx {
|
|
2
4
|
name: string;
|
|
3
5
|
path: string;
|
|
4
6
|
size: number;
|
|
7
|
+
mimeType: string;
|
|
5
8
|
isFolder: boolean;
|
|
6
|
-
|
|
9
|
+
get(field: string): any;
|
|
7
10
|
}
|
|
11
|
+
export declare function GetStorageItemColumnsDef(): ColumnDef[];
|
package/lib/SystemConfig.d.ts
CHANGED
package/lib/SystemMessage.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
1
|
import { ColumnDef } from '.';
|
|
3
2
|
import { MessageTypeCode } from '.';
|
|
4
3
|
import { PriorityCode } from '.';
|
|
4
|
+
import { BaseEntityEx } 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 { MessageTypeCode } from '.';
|
|
4
3
|
import { MessageConfirm } from '.';
|
|
5
4
|
import { SystemMessage } from '.';
|
|
5
|
+
import { MessageTypeCode } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SystemMessagesEndPoint {
|
|
8
8
|
private config;
|
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { UserRoleFlag } from '.';
|
|
1
2
|
import { UserStatusCode } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
4
|
import { ColumnDef } from '.';
|
|
4
5
|
import { UserTypeCode } from '.';
|
|
5
|
-
import { UserRoleFlag } from '.';
|
|
6
6
|
export declare class User extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
email: string;
|