@aya-flights/ngx-goox-lib 2.19.195 → 2.19.196
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 +5335 -5483
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +2 -2
- package/lib/AccountsEndPoint.d.ts +6 -6
- package/lib/AccountsFilter.d.ts +4 -5
- package/lib/Airplane.d.ts +5 -5
- package/lib/AirplanesEndPoint.d.ts +6 -6
- package/lib/AirplanesFilter.d.ts +4 -5
- package/lib/AuditLogFilter.d.ts +4 -5
- package/lib/BaseFilter.d.ts +7 -0
- package/lib/BookingPlan.d.ts +1 -1
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +1 -1
- package/lib/BookingsFilter.d.ts +4 -5
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/Certificate.d.ts +1 -1
- package/lib/CertificatesEndPoint.d.ts +1 -1
- package/lib/CertificatesFilter.d.ts +4 -5
- package/lib/Contact.d.ts +1 -1
- package/lib/ContactGroup.d.ts +1 -1
- package/lib/ContactsEndPoint.d.ts +8 -8
- package/lib/ContactsFilter.d.ts +5 -6
- package/lib/Credit.d.ts +2 -2
- package/lib/CreditsFilter.d.ts +4 -5
- package/lib/Flight.d.ts +6 -6
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +4 -4
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightTicketsEndPoint.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +8 -8
- package/lib/FlightsFilter.d.ts +5 -6
- package/lib/Lead.d.ts +2 -2
- package/lib/LeadsEndPoint.d.ts +4 -4
- package/lib/LeadsFilter.d.ts +4 -5
- package/lib/Lesson.d.ts +1 -1
- package/lib/MaintenancesFilter.d.ts +4 -5
- package/lib/MessageConfirm.d.ts +2 -2
- package/lib/MessageConfirmsEndPoint.d.ts +1 -1
- package/lib/Metar.d.ts +1 -1
- package/lib/MyAuthEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +5 -5
- package/lib/MyInfoEndPoint.d.ts +1 -1
- package/lib/MyStudentsEndPoint.d.ts +1 -1
- package/lib/Notification.d.ts +2 -2
- package/lib/Permission.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +3 -3
- package/lib/StorageItem.d.ts +1 -1
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/SyllabusFilter.d.ts +4 -5
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/TimeSeries.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/UserEndPoint.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/UsersFilter.d.ts +5 -6
- package/lib/index.d.ts +127 -126
- package/lib/services.export.d.ts +27 -27
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { AccountTypeCode } from '.';
|
|
2
|
+
import { AccountStatusCode } from '.';
|
|
1
3
|
import { Address } from '.';
|
|
2
4
|
import { BaseEntityEx } from '.';
|
|
3
5
|
import { ColumnDef } from '.';
|
|
4
|
-
import { AccountTypeCode } from '.';
|
|
5
|
-
import { AccountStatusCode } from '.';
|
|
6
6
|
export declare class Account extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
enName: string;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { AccountTypeCode } from '.';
|
|
4
|
-
import { Flight } from '.';
|
|
5
|
-
import { Document } from '.';
|
|
6
|
-
import { Credit } from '.';
|
|
7
3
|
import { Account } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
8
5
|
import { AccountStatusCode } from '.';
|
|
9
|
-
import { FlightTypeCode } from '.';
|
|
10
6
|
import { FlightStateCode } from '.';
|
|
11
7
|
import { FlightPurposeCode } from '.';
|
|
12
|
-
import {
|
|
8
|
+
import { Credit } from '.';
|
|
9
|
+
import { FlightTypeCode } from '.';
|
|
10
|
+
import { Flight } from '.';
|
|
11
|
+
import { Document } from '.';
|
|
12
|
+
import { AccountTypeCode } from '.';
|
|
13
13
|
import { FlightStatusCode } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class AccountsEndPoint {
|
package/lib/AccountsFilter.d.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { AccountStatusCode } from '.';
|
|
2
2
|
import { AccountTypeCode } from '.';
|
|
3
|
-
|
|
3
|
+
import { BaseFilter } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
|
+
export declare class AccountsFilter extends BaseFilter {
|
|
4
6
|
search: string;
|
|
5
7
|
status: AccountStatusCode[];
|
|
6
8
|
type: AccountTypeCode[];
|
|
7
|
-
sort: string;
|
|
8
|
-
page: number;
|
|
9
|
-
size: number;
|
|
10
|
-
constructor(search?: string, status?: AccountStatusCode[], type?: AccountTypeCode[], sort?: string, page?: number, size?: number);
|
|
11
9
|
}
|
|
10
|
+
export declare function GetAccountsFilterColumnsDef(): ColumnDef[];
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
import { AirplaneStatusCode } from '.';
|
|
2
|
+
import { Magneto } from '.';
|
|
3
|
+
import { Propeller } from '.';
|
|
4
|
+
import { Fuel } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
1
6
|
import { TypeRatingFlag } from '.';
|
|
2
7
|
import { AirplaneValidationFlag } from '.';
|
|
3
8
|
import { Engine } from '.';
|
|
4
|
-
import { Propeller } from '.';
|
|
5
9
|
import { WBConfig } from '.';
|
|
6
|
-
import { ColumnDef } from '.';
|
|
7
|
-
import { AirplaneStatusCode } from '.';
|
|
8
|
-
import { Magneto } from '.';
|
|
9
|
-
import { Fuel } from '.';
|
|
10
10
|
import { BaseEntityEx } 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 { Airplane } from '.';
|
|
4
|
-
import { AirplaneStatusCode } from '.';
|
|
5
|
-
import { StringKeyValue } from '.';
|
|
6
3
|
import { FlightTypeCode } from '.';
|
|
7
4
|
import { FlightStatusCode } from '.';
|
|
5
|
+
import { MaintenanceActionCode } from '.';
|
|
6
|
+
import { Airplane } from '.';
|
|
8
7
|
import { FlightPurposeCode } from '.';
|
|
8
|
+
import { Document } from '.';
|
|
9
|
+
import { AirplaneStatusCode } from '.';
|
|
10
|
+
import { StringKeyValue } from '.';
|
|
11
|
+
import { Flight } from '.';
|
|
9
12
|
import { Maintenance } from '.';
|
|
10
13
|
import { FlightStateCode } from '.';
|
|
11
|
-
import { Document } from '.';
|
|
12
14
|
import { StatusCode } from '.';
|
|
13
|
-
import { MaintenanceActionCode } from '.';
|
|
14
|
-
import { Flight } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
private config;
|
package/lib/AirplanesFilter.d.ts
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { AirplaneStatusCode } from '.';
|
|
2
|
-
|
|
2
|
+
import { BaseFilter } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
4
|
+
export declare class AirplanesFilter extends BaseFilter {
|
|
3
5
|
search: string;
|
|
4
6
|
status: AirplaneStatusCode[];
|
|
5
7
|
isActive: boolean;
|
|
6
|
-
sort: string;
|
|
7
|
-
page: number;
|
|
8
|
-
size: number;
|
|
9
|
-
constructor(search?: string, status?: AirplaneStatusCode[], isActive?: boolean, sort?: string, page?: number, size?: number);
|
|
10
8
|
}
|
|
9
|
+
export declare function GetAirplanesFilterColumnsDef(): ColumnDef[];
|
package/lib/AuditLogFilter.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { TimeFrame } from '.';
|
|
2
|
-
|
|
2
|
+
import { BaseFilter } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
4
|
+
export declare class AuditLogFilter extends BaseFilter {
|
|
3
5
|
search: string;
|
|
4
6
|
period: TimeFrame;
|
|
5
7
|
userId: string;
|
|
@@ -7,8 +9,5 @@ export declare class AuditLogFilter {
|
|
|
7
9
|
itemType: string;
|
|
8
10
|
itemId: string;
|
|
9
11
|
itemName: string;
|
|
10
|
-
sort: string;
|
|
11
|
-
page: number;
|
|
12
|
-
size: number;
|
|
13
|
-
constructor(search?: string, period?: TimeFrame, userId?: string, action?: string, itemType?: string, itemId?: string, itemName?: string, sort?: string, page?: number, size?: number);
|
|
14
12
|
}
|
|
13
|
+
export declare function GetAuditLogFilterColumnsDef(): ColumnDef[];
|
package/lib/BookingPlan.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { BookingTypeFlag } from '.';
|
|
3
2
|
import { FlightPurposeCode } from '.';
|
|
4
3
|
import { FlightStatusCode } from '.';
|
|
5
4
|
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
6
|
export declare class BookingPlan extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
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 { BookingSlots } from '.';
|
|
4
3
|
import { BookingSlotsSet } from '.';
|
|
5
4
|
import { BookingSlot } from '.';
|
|
5
|
+
import { BookingSlots } 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 { BookingPlan } from '.';
|
|
4
3
|
import { Booking } from '.';
|
|
5
4
|
import { BookingStatusCode } from '.';
|
|
6
5
|
import { TimeSeries } from '.';
|
|
6
|
+
import { BookingPlan } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class BookingsEndPoint {
|
|
9
9
|
private config;
|
package/lib/BookingsFilter.d.ts
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { TimeFrame } from '.';
|
|
2
2
|
import { BookingStatusCode } from '.';
|
|
3
|
-
|
|
3
|
+
import { BaseFilter } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
|
+
export declare class BookingsFilter extends BaseFilter {
|
|
4
6
|
search: string;
|
|
5
7
|
period: TimeFrame;
|
|
6
8
|
accountId: string;
|
|
7
9
|
contactId: string;
|
|
8
10
|
airplaneId: string;
|
|
9
11
|
status: BookingStatusCode[];
|
|
10
|
-
sort: string;
|
|
11
|
-
page: number;
|
|
12
|
-
size: number;
|
|
13
|
-
constructor(search?: string, period?: TimeFrame, accountId?: string, contactId?: string, airplaneId?: string, status?: BookingStatusCode[], sort?: string, page?: number, size?: number);
|
|
14
12
|
}
|
|
13
|
+
export declare function GetBookingsFilterColumnsDef(): ColumnDef[];
|
|
@@ -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;
|
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;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Certificate } from '.';
|
|
4
3
|
import { StatusCode } from '.';
|
|
4
|
+
import { Certificate } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CertificatesEndPoint {
|
|
7
7
|
private config;
|
|
@@ -1,14 +1,13 @@
|
|
|
1
|
+
import { BaseFilter } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
1
3
|
import { StatusCode } from '.';
|
|
2
4
|
import { ValidationFlag } from '.';
|
|
3
5
|
import { TimeFrame } from '.';
|
|
4
|
-
export declare class CertificatesFilter {
|
|
6
|
+
export declare class CertificatesFilter extends BaseFilter {
|
|
5
7
|
search: string;
|
|
6
8
|
contactId: string;
|
|
7
9
|
status: StatusCode[];
|
|
8
10
|
type: ValidationFlag[];
|
|
9
11
|
valid: TimeFrame;
|
|
10
|
-
sort: string;
|
|
11
|
-
page: number;
|
|
12
|
-
size: number;
|
|
13
|
-
constructor(search?: string, contactId?: string, status?: StatusCode[], type?: ValidationFlag[], valid?: TimeFrame, sort?: string, page?: number, size?: number);
|
|
14
12
|
}
|
|
13
|
+
export declare function GetCertificatesFilterColumnsDef(): ColumnDef[];
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
1
2
|
import { AccountStatusCode } from '.';
|
|
2
3
|
import { Address } from '.';
|
|
3
4
|
import { TypeRatingFlag } from '.';
|
|
@@ -6,7 +7,6 @@ import { ValidationFlag } from '.';
|
|
|
6
7
|
import { ColumnDef } from '.';
|
|
7
8
|
import { MedicalCertClassCode } from '.';
|
|
8
9
|
import { FlightCategoryCode } from '.';
|
|
9
|
-
import { BaseEntityEx } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
11
11
|
accountId: string;
|
|
12
12
|
name: string;
|
package/lib/ContactGroup.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import { StringKeyValue } from '.';
|
|
3
|
+
import { Certificate } from '.';
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
6
5
|
import { Flight } from '.';
|
|
7
6
|
import { MessageConfirm } from '.';
|
|
8
|
-
import { TypeRatingFlag } from '.';
|
|
9
|
-
import { LicenseKindFlag } from '.';
|
|
10
|
-
import { Certificate } from '.';
|
|
11
|
-
import { FlightStateCode } from '.';
|
|
12
7
|
import { Contact } from '.';
|
|
8
|
+
import { TypeRatingFlag } from '.';
|
|
13
9
|
import { FlightTypeCode } from '.';
|
|
10
|
+
import { FlightStateCode } from '.';
|
|
11
|
+
import { StatusCode } from '.';
|
|
12
|
+
import { LicenseKindFlag } from '.';
|
|
13
|
+
import { StringKeyValue } from '.';
|
|
14
14
|
import { FlightPurposeCode } from '.';
|
|
15
|
+
import { Document } from '.';
|
|
15
16
|
import { FlightCategoryCode } from '.';
|
|
16
|
-
import { FlightStatusCode } from '.';
|
|
17
17
|
import * as i0 from "@angular/core";
|
|
18
18
|
export declare class ContactsEndPoint {
|
|
19
19
|
private config;
|
package/lib/ContactsFilter.d.ts
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
|
-
import { StatusCode } from '.';
|
|
2
1
|
import { FlightCategoryCode } from '.';
|
|
3
2
|
import { TypeRatingFlag } from '.';
|
|
4
3
|
import { LicenseKindFlag } from '.';
|
|
5
|
-
|
|
4
|
+
import { BaseFilter } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
|
+
import { StatusCode } from '.';
|
|
7
|
+
export declare class ContactsFilter extends BaseFilter {
|
|
6
8
|
search: string;
|
|
7
9
|
status: StatusCode[];
|
|
8
10
|
isPilot: boolean;
|
|
9
11
|
plan: FlightCategoryCode[];
|
|
10
12
|
typesRating: TypeRatingFlag[];
|
|
11
13
|
licenseKinds: LicenseKindFlag[];
|
|
12
|
-
sort: string;
|
|
13
|
-
page: number;
|
|
14
|
-
size: number;
|
|
15
|
-
constructor(search?: string, status?: StatusCode[], isPilot?: boolean, plan?: FlightCategoryCode[], typesRating?: TypeRatingFlag[], licenseKinds?: LicenseKindFlag[], sort?: string, page?: number, size?: number);
|
|
16
14
|
}
|
|
15
|
+
export declare function GetContactsFilterColumnsDef(): ColumnDef[];
|
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/CreditsFilter.d.ts
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { TransactionTypeCode } from '.';
|
|
2
3
|
import { TimeFrame } from '.';
|
|
3
|
-
|
|
4
|
+
import { BaseFilter } from '.';
|
|
5
|
+
export declare class CreditsFilter extends BaseFilter {
|
|
4
6
|
search: string;
|
|
5
7
|
accountId: string;
|
|
6
8
|
flightId: string;
|
|
7
9
|
type: TransactionTypeCode[];
|
|
8
10
|
period: TimeFrame;
|
|
9
11
|
reference: string;
|
|
10
|
-
sort: string;
|
|
11
|
-
page: number;
|
|
12
|
-
size: number;
|
|
13
|
-
constructor(search?: string, accountId?: string, flightId?: string, type?: TransactionTypeCode[], period?: TimeFrame, reference?: string, sort?: string, page?: number, size?: number);
|
|
14
12
|
}
|
|
13
|
+
export declare function GetCreditsFilterColumnsDef(): ColumnDef[];
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { BillingStatusCode } from '.';
|
|
2
|
-
import { TOLData } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
2
|
+
import { FlightClassCode } from '.';
|
|
4
3
|
import { FlightTypeCode } from '.';
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import { RiskAssessment } from '.';
|
|
4
|
+
import { BillingStatusCode } from '.';
|
|
5
|
+
import { TOLData } from '.';
|
|
8
6
|
import { ColumnDef } from '.';
|
|
9
7
|
import { FlightPurposeCode } from '.';
|
|
10
|
-
import { FlightClassCode } from '.';
|
|
11
8
|
import { FlightCategoryCode } from '.';
|
|
9
|
+
import { FlightStatusCode } from '.';
|
|
10
|
+
import { Lesson } 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 { TOLData } from '.';
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
3
|
-
import { ColumnDef } from '.';
|
|
4
1
|
import { FlightTypeCode } from '.';
|
|
5
2
|
import { FlightStatusCode } from '.';
|
|
6
3
|
import { FlightStateCode } from '.';
|
|
7
4
|
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 { PilotQualificationsRisks } from '.';
|
|
2
|
+
import { CrewDutyDayRisks } from '.';
|
|
1
3
|
import { DepartureRisks } from '.';
|
|
2
|
-
import { TripRisks } from '.';
|
|
3
4
|
import { WeatherRisks } from '.';
|
|
4
5
|
import { Mitigation } from '.';
|
|
5
|
-
import { BaseEntityEx } from '.';
|
|
6
6
|
import { ColumnDef } from '.';
|
|
7
|
-
import { PilotQualificationsRisks } from '.';
|
|
8
|
-
import { CrewDutyDayRisks } from '.';
|
|
9
7
|
import { DestinationRisks } from '.';
|
|
8
|
+
import { TripRisks } from '.';
|
|
10
9
|
import { SpecialRisks } from '.';
|
|
10
|
+
import { BaseEntityEx } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/FlightTicket.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { TicketStatusCode } from '.';
|
|
4
3
|
import { FlightTicket } from '.';
|
|
4
|
+
import { TicketStatusCode } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class FlightTicketsEndPoint {
|
|
7
7
|
private config;
|
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 { Contact } from '.';
|
|
3
4
|
import { FlightTicket } from '.';
|
|
5
|
+
import { FlightTypeCode } from '.';
|
|
6
|
+
import { PostFlightInfo } from '.';
|
|
7
|
+
import { TimeSeries } from '.';
|
|
8
|
+
import { Point } from '.';
|
|
4
9
|
import { AnyKeyValue } from '.';
|
|
10
|
+
import { FlightStatusCode } from '.';
|
|
5
11
|
import { BillingStatusCode } from '.';
|
|
6
12
|
import { FlightPurposeCode } from '.';
|
|
7
|
-
import { TimeSeries } from '.';
|
|
8
|
-
import { Contact } from '.';
|
|
9
|
-
import { FlightStatusCode } from '.';
|
|
10
|
-
import { FlightPlan } from '.';
|
|
11
|
-
import { Flight } from '.';
|
|
12
13
|
import { PreFlightInfo } from '.';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import { Point } from '.';
|
|
14
|
+
import { Flight } from '.';
|
|
15
|
+
import { FlightPlan } 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,9 +1,11 @@
|
|
|
1
|
+
import { FlightPurposeCode } from '.';
|
|
2
|
+
import { BaseFilter } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
1
4
|
import { TimeFrame } from '.';
|
|
2
5
|
import { FlightTypeCode } from '.';
|
|
3
6
|
import { FlightStatusCode } from '.';
|
|
4
7
|
import { BillingStatusCode } from '.';
|
|
5
|
-
|
|
6
|
-
export declare class FlightsFilter {
|
|
8
|
+
export declare class FlightsFilter extends BaseFilter {
|
|
7
9
|
search: string;
|
|
8
10
|
period: TimeFrame;
|
|
9
11
|
accountId: string;
|
|
@@ -13,8 +15,5 @@ export declare class FlightsFilter {
|
|
|
13
15
|
status: FlightStatusCode[];
|
|
14
16
|
billing: BillingStatusCode[];
|
|
15
17
|
purpose: FlightPurposeCode[];
|
|
16
|
-
sort: string;
|
|
17
|
-
page: number;
|
|
18
|
-
size: number;
|
|
19
|
-
constructor(search?: string, period?: TimeFrame, accountId?: string, contactId?: string, airplaneId?: string, type?: FlightTypeCode[], status?: FlightStatusCode[], billing?: BillingStatusCode[], purpose?: FlightPurposeCode[], sort?: string, page?: number, size?: number);
|
|
20
18
|
}
|
|
19
|
+
export declare function GetFlightsFilterColumnsDef(): ColumnDef[];
|
package/lib/Lead.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { Address } from '.';
|
|
2
|
+
import { LeadStatusCode } from '.';
|
|
1
3
|
import { FollowUpAction } from '.';
|
|
2
4
|
import { BaseEntityEx } from '.';
|
|
3
5
|
import { ColumnDef } from '.';
|
|
4
|
-
import { Address } from '.';
|
|
5
|
-
import { LeadStatusCode } 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 { TimeSeries } from '.';
|
|
3
4
|
import { LeadAction } from '.';
|
|
4
5
|
import { Booking } from '.';
|
|
5
|
-
import { Point } from '.';
|
|
6
|
-
import { LeadStatusCode } from '.';
|
|
7
|
-
import { TimeSeries } from '.';
|
|
8
6
|
import { IntEnumValue } from '.';
|
|
9
|
-
import { IntKeyValue } from '.';
|
|
10
7
|
import { Lead } from '.';
|
|
8
|
+
import { Point } from '.';
|
|
9
|
+
import { IntKeyValue } from '.';
|
|
10
|
+
import { LeadStatusCode } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class LeadsEndPoint {
|
|
13
13
|
private config;
|
package/lib/LeadsFilter.d.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { LeadStatusCode } from '.';
|
|
2
|
-
|
|
2
|
+
import { BaseFilter } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
4
|
+
export declare class LeadsFilter extends BaseFilter {
|
|
3
5
|
search: string;
|
|
4
6
|
status: LeadStatusCode[];
|
|
5
|
-
sort: string;
|
|
6
|
-
page: number;
|
|
7
|
-
size: number;
|
|
8
|
-
constructor(search?: string, status?: LeadStatusCode[], sort?: string, page?: number, size?: number);
|
|
9
7
|
}
|
|
8
|
+
export declare function GetLeadsFilterColumnsDef(): ColumnDef[];
|
package/lib/Lesson.d.ts
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { MaintenanceActionCode } from '.';
|
|
2
2
|
import { StatusCode } from '.';
|
|
3
3
|
import { TimeFrame } from '.';
|
|
4
|
-
|
|
4
|
+
import { BaseFilter } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
|
+
export declare class MaintenancesFilter extends BaseFilter {
|
|
5
7
|
search: string;
|
|
6
8
|
airplaneId: string;
|
|
7
9
|
action: MaintenanceActionCode[];
|
|
8
10
|
status: StatusCode[];
|
|
9
11
|
valid: TimeFrame;
|
|
10
|
-
sort: string;
|
|
11
|
-
page: number;
|
|
12
|
-
size: number;
|
|
13
|
-
constructor(search?: string, airplaneId?: string, action?: MaintenanceActionCode[], status?: StatusCode[], valid?: TimeFrame, sort?: string, page?: number, size?: number);
|
|
14
12
|
}
|
|
13
|
+
export declare function GetMaintenancesFilterColumnsDef(): ColumnDef[];
|
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 { MessageTypeCode } from '.';
|
|
3
4
|
import { ConfirmStatusCode } from '.';
|
|
4
5
|
import { PriorityCode } from '.';
|
|
5
6
|
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;
|
package/lib/Metar.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { TafReport } from '.';
|
|
2
1
|
import { BaseEntityEx } from '.';
|
|
3
2
|
import { ColumnDef } from '.';
|
|
4
3
|
import { MetarReport } from '.';
|
|
4
|
+
import { TafReport } from '.';
|
|
5
5
|
export declare class Metar extends BaseEntityEx {
|
|
6
6
|
metarReports: MetarReport[];
|
|
7
7
|
tafReports: TafReport[];
|
package/lib/MyAuthEndPoint.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Contact } from '.';
|
|
3
4
|
import { Notification } from '.';
|
|
4
5
|
import { LoginParams } from '.';
|
|
5
|
-
import { Contact } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class MyAuthEndPoint {
|
|
8
8
|
private config;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { BookingStatusCode } from '.';
|
|
3
4
|
import { BookingTypeFlag } from '.';
|
|
4
5
|
import { Lookup } from '.';
|
|
5
6
|
import { BookingSlot } from '.';
|
|
6
7
|
import { Airplane } from '.';
|
|
7
|
-
import { BookingStatusCode } from '.';
|
|
8
8
|
import { Booking } 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 { PostFlightInfo } from '.';
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
5
|
-
import { InstructionTypeCode } from '.';
|
|
6
|
-
import { PreFlightInfo } from '.';
|
|
7
3
|
import { Flight } from '.';
|
|
8
4
|
import { FlightTypeCode } from '.';
|
|
9
|
-
import {
|
|
5
|
+
import { FlightStatusCode } from '.';
|
|
6
|
+
import { InstructionTypeCode } from '.';
|
|
10
7
|
import { Syllabus } from '.';
|
|
8
|
+
import { FlightPlan } from '.';
|
|
9
|
+
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;
|