@aya-flights/ngx-goox-lib 1.19.14 → 1.19.16
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 +3693 -3603
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +1 -1
- package/lib/AccountFilter.d.ts +3 -4
- package/lib/AccountsEndPoint.d.ts +2 -2
- package/lib/Airplane.d.ts +4 -4
- package/lib/AirplaneFilter.d.ts +3 -4
- package/lib/AirplanesEndPoint.d.ts +2 -2
- package/lib/AuditLog.d.ts +1 -1
- package/lib/AuditLogFilter.d.ts +3 -4
- package/lib/Booking.d.ts +2 -2
- package/lib/BookingFilter.d.ts +3 -4
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/Certificate.d.ts +1 -1
- package/lib/CertificateFilter.d.ts +3 -4
- package/lib/Contact.d.ts +1 -1
- package/lib/ContactFilter.d.ts +3 -4
- package/lib/ContactsEndPoint.d.ts +14 -2
- package/lib/CreditFilter.d.ts +3 -4
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +8 -8
- package/lib/FlightFilter.d.ts +5 -6
- package/lib/FlightPassenger.d.ts +1 -1
- package/lib/FlightRisk.d.ts +6 -6
- package/lib/FlightsEndPoint.d.ts +3 -3
- package/lib/Lead.d.ts +1 -1
- package/lib/LeadFilter.d.ts +3 -4
- package/lib/LeadsEndPoint.d.ts +1 -1
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/Maintenance.d.ts +1 -1
- package/lib/MaintenanceFilter.d.ts +3 -4
- package/lib/MessageConfirm.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +1 -1
- package/lib/PostFlightData.d.ts +3 -3
- package/lib/PreFlightData.d.ts +1 -1
- package/lib/TokenData.d.ts +1 -1
- package/lib/UserEndPoint.d.ts +1 -1
- package/lib/UserFilter.d.ts +4 -5
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +101 -101
- package/lib/services.export.d.ts +19 -19
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { AccountStatusCode } from '.';
|
|
2
1
|
import { Address } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { AccountStatusCode } from '.';
|
|
5
5
|
export declare class Account extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
enName: string;
|
package/lib/AccountFilter.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { AccountStatusCode } from '.';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export declare class AccountFilter extends BaseFilter {
|
|
2
|
+
export declare class AccountFilter {
|
|
3
|
+
search: string;
|
|
5
4
|
status: AccountStatusCode[];
|
|
5
|
+
constructor(search?: string, status?: AccountStatusCode[]);
|
|
6
6
|
}
|
|
7
|
-
export declare function GetAccountFilterColumnsDef(): ColumnDef[];
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
3
|
+
import { Account } from '.';
|
|
4
4
|
import { StringKeyValue } from '.';
|
|
5
5
|
import { Flight } from '.';
|
|
6
6
|
import { Credit } from '.';
|
|
7
|
-
import {
|
|
7
|
+
import { Document } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AccountsEndPoint {
|
|
10
10
|
private config;
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
|
-
import { AirplaneStatusCode } from '.';
|
|
4
|
-
import { AirplaneValidationFlag } from '.';
|
|
5
1
|
import { Engine } from '.';
|
|
6
2
|
import { Magneto } from '.';
|
|
7
3
|
import { Propeller } from '.';
|
|
8
4
|
import { Fuel } from '.';
|
|
5
|
+
import { BaseEntityEx } from '.';
|
|
6
|
+
import { ColumnDef } from '.';
|
|
7
|
+
import { AirplaneStatusCode } from '.';
|
|
8
|
+
import { AirplaneValidationFlag } from '.';
|
|
9
9
|
export declare class Airplane extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/AirplaneFilter.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { AirplaneStatusCode } from '.';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export declare class AirplaneFilter extends BaseFilter {
|
|
2
|
+
export declare class AirplaneFilter {
|
|
3
|
+
search: string;
|
|
5
4
|
status: AirplaneStatusCode[];
|
|
6
5
|
isActive: boolean;
|
|
6
|
+
constructor(search?: string, status?: AirplaneStatusCode[], isActive?: boolean);
|
|
7
7
|
}
|
|
8
|
-
export declare function GetAirplaneFilterColumnsDef(): ColumnDef[];
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Airplane } from '.';
|
|
4
3
|
import { StringKeyValue } from '.';
|
|
5
4
|
import { Flight } from '.';
|
|
6
|
-
import { Maintenance } from '.';
|
|
7
5
|
import { Document } from '.';
|
|
6
|
+
import { Maintenance } from '.';
|
|
7
|
+
import { Airplane } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AirplanesEndPoint {
|
|
10
10
|
private config;
|
package/lib/AuditLog.d.ts
CHANGED
package/lib/AuditLogFilter.d.ts
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { TimeFrame } from '.';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export declare class AuditLogFilter extends BaseFilter {
|
|
2
|
+
export declare class AuditLogFilter {
|
|
3
|
+
search: string;
|
|
5
4
|
createdOn: TimeFrame;
|
|
6
5
|
userId: string;
|
|
7
6
|
action: string;
|
|
8
7
|
itemType: string;
|
|
9
8
|
itemId: string;
|
|
10
9
|
itemName: string;
|
|
10
|
+
constructor(search?: string, createdOn?: TimeFrame, userId?: string, action?: string, itemType?: string, itemId?: string, itemName?: string);
|
|
11
11
|
}
|
|
12
|
-
export declare function GetAuditLogFilterColumnsDef(): ColumnDef[];
|
package/lib/Booking.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
|
-
import { BookingTypeFlag } from '.';
|
|
3
1
|
import { BookingStatusCode } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
4
|
+
import { BookingTypeFlag } from '.';
|
|
5
5
|
export declare class Booking extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
title: string;
|
package/lib/BookingFilter.d.ts
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { BookingTypeFlag } from '.';
|
|
2
2
|
import { TimeFrame } from '.';
|
|
3
3
|
import { BookingStatusCode } from '.';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
export declare class BookingFilter extends BaseFilter {
|
|
4
|
+
export declare class BookingFilter {
|
|
5
|
+
search: string;
|
|
7
6
|
accountId: string;
|
|
8
7
|
contactId: string;
|
|
9
8
|
type: BookingTypeFlag[];
|
|
10
9
|
airplaneId: string;
|
|
11
10
|
placementOn: TimeFrame;
|
|
12
11
|
status: BookingStatusCode[];
|
|
12
|
+
constructor(search?: string, accountId?: string, contactId?: string, type?: BookingTypeFlag[], airplaneId?: string, placementOn?: TimeFrame, status?: BookingStatusCode[]);
|
|
13
13
|
}
|
|
14
|
-
export declare function GetBookingFilterColumnsDef(): 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 '.';
|
|
2
1
|
import { StatusCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { ValidationFlag } from '.';
|
|
5
5
|
export declare class Certificate extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
type: ValidationFlag;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { TimeFrame } from '.';
|
|
2
2
|
import { StatusCode } from '.';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export declare class CertificateFilter extends BaseFilter {
|
|
3
|
+
export declare class CertificateFilter {
|
|
4
|
+
search: string;
|
|
6
5
|
contactId: string;
|
|
7
6
|
validUntil: TimeFrame;
|
|
8
7
|
status: StatusCode[];
|
|
8
|
+
constructor(search?: string, contactId?: string, validUntil?: TimeFrame, status?: StatusCode[]);
|
|
9
9
|
}
|
|
10
|
-
export declare function GetCertificateFilterColumnsDef(): ColumnDef[];
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { AccountStatusCode } from '.';
|
|
1
2
|
import { Address } from '.';
|
|
2
3
|
import { ValidationFlag } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
5
|
import { ColumnDef } from '.';
|
|
5
|
-
import { AccountStatusCode } from '.';
|
|
6
6
|
export declare class Contact extends BaseEntityEx {
|
|
7
7
|
accountId: string;
|
|
8
8
|
name: string;
|
package/lib/ContactFilter.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { AccountStatusCode } from '.';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export declare class ContactFilter extends BaseFilter {
|
|
2
|
+
export declare class ContactFilter {
|
|
3
|
+
search: string;
|
|
5
4
|
accountId: string;
|
|
6
5
|
status: AccountStatusCode[];
|
|
6
|
+
constructor(search?: string, accountId?: string, status?: AccountStatusCode[]);
|
|
7
7
|
}
|
|
8
|
-
export declare function GetContactFilterColumnsDef(): ColumnDef[];
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Certificate } from '.';
|
|
3
4
|
import { Document } from '.';
|
|
4
5
|
import { Contact } from '.';
|
|
5
6
|
import { StringKeyValue } from '.';
|
|
6
|
-
import { MessageConfirm } from '.';
|
|
7
7
|
import { Flight } from '.';
|
|
8
|
-
import {
|
|
8
|
+
import { MessageConfirm } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class ContactsEndPoint {
|
|
11
11
|
private config;
|
|
@@ -60,6 +60,18 @@ export declare class ContactsEndPoint {
|
|
|
60
60
|
* Find related documents for this contact
|
|
61
61
|
*/
|
|
62
62
|
findDocuments(id?: string, search?: string, sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Document>>;
|
|
63
|
+
/**
|
|
64
|
+
* Find contact related flights for student sheet (all flights of type LESSON that the student is captain of first officer)
|
|
65
|
+
*/
|
|
66
|
+
getStudentSheet(id?: string, sort?: string): import("rxjs").Observable<EntitiesResponse<Flight>>;
|
|
67
|
+
/**
|
|
68
|
+
* Download student sheet as XLSX document
|
|
69
|
+
*/
|
|
70
|
+
downloadStudentSheetXlsx(id?: string): import("rxjs").Observable<import("@angular/common/module.d-CnjH8Dlt").HttpEvent<Blob>>;
|
|
71
|
+
/**
|
|
72
|
+
* Download student sheet as CSV document
|
|
73
|
+
*/
|
|
74
|
+
downloadStudentSheetCsv(id?: string): import("rxjs").Observable<import("@angular/common/module.d-CnjH8Dlt").HttpEvent<Blob>>;
|
|
63
75
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContactsEndPoint, never>;
|
|
64
76
|
static ɵprov: i0.ɵɵInjectableDeclaration<ContactsEndPoint>;
|
|
65
77
|
}
|
package/lib/CreditFilter.d.ts
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { TransactionTypeCode } from '.';
|
|
2
2
|
import { TimeFrame } from '.';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export declare class CreditFilter extends BaseFilter {
|
|
3
|
+
export declare class CreditFilter {
|
|
4
|
+
search: string;
|
|
6
5
|
accountId: string;
|
|
7
6
|
type: TransactionTypeCode[];
|
|
8
7
|
transactionOn: TimeFrame;
|
|
8
|
+
constructor(search?: string, accountId?: string, type?: TransactionTypeCode[], transactionOn?: TimeFrame);
|
|
9
9
|
}
|
|
10
|
-
export declare function GetCreditFilterColumnsDef(): ColumnDef[];
|
package/lib/Document.d.ts
CHANGED
package/lib/Flight.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { OnBoard } from '.';
|
|
3
|
-
import { Billing } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
1
|
+
import { Lesson } from '.';
|
|
5
2
|
import { ColumnDef } from '.';
|
|
6
|
-
import {
|
|
3
|
+
import { FlightPurposeCode } from '.';
|
|
7
4
|
import { FlightStatusCode } from '.';
|
|
5
|
+
import { FlightStateCode } from '.';
|
|
6
|
+
import { BillingStatusCode } from '.';
|
|
7
|
+
import { OnBoard } from '.';
|
|
8
8
|
import { TOLData } from '.';
|
|
9
9
|
import { ReFuel } from '.';
|
|
10
|
-
import {
|
|
10
|
+
import { Billing } from '.';
|
|
11
|
+
import { FlightTypeCode } from '.';
|
|
12
|
+
import { BaseEntityEx } from '.';
|
|
11
13
|
import { RiskAssessment } from '.';
|
|
12
|
-
import { BillingStatusCode } from '.';
|
|
13
|
-
import { FlightPurposeCode } from '.';
|
|
14
14
|
export declare class Flight extends BaseEntityEx {
|
|
15
15
|
name: string;
|
|
16
16
|
description: string;
|
package/lib/FlightFilter.d.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
|
+
import { FlightStatusCode } from '.';
|
|
2
|
+
import { BillingStatusCode } from '.';
|
|
1
3
|
import { FlightPurposeCode } from '.';
|
|
2
|
-
import { BaseFilter } from '.';
|
|
3
|
-
import { ColumnDef } from '.';
|
|
4
4
|
import { TimeFrame } from '.';
|
|
5
5
|
import { FlightTypeCode } from '.';
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
export declare class FlightFilter extends BaseFilter {
|
|
6
|
+
export declare class FlightFilter {
|
|
7
|
+
search: string;
|
|
9
8
|
accountId: string;
|
|
10
9
|
airplaneId: string;
|
|
11
10
|
captain: string;
|
|
@@ -15,5 +14,5 @@ export declare class FlightFilter extends BaseFilter {
|
|
|
15
14
|
status: FlightStatusCode[];
|
|
16
15
|
billingStatus: BillingStatusCode[];
|
|
17
16
|
purpose: FlightPurposeCode[];
|
|
17
|
+
constructor(search?: string, accountId?: string, airplaneId?: string, captain?: string, firstOfficer?: string, flightTime?: TimeFrame, type?: FlightTypeCode[], status?: FlightStatusCode[], billingStatus?: BillingStatusCode[], purpose?: FlightPurposeCode[]);
|
|
18
18
|
}
|
|
19
|
-
export declare function GetFlightFilterColumnsDef(): ColumnDef[];
|
package/lib/FlightPassenger.d.ts
CHANGED
package/lib/FlightRisk.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
1
|
+
import { TripRisks } from '.';
|
|
3
2
|
import { WeatherRisks } from '.';
|
|
4
|
-
import { SpecialRisks } from '.';
|
|
5
|
-
import { Mitigation } from '.';
|
|
6
3
|
import { ColumnDef } from '.';
|
|
7
|
-
import { PilotQualificationsRisks } from '.';
|
|
8
4
|
import { CrewDutyDayRisks } from '.';
|
|
5
|
+
import { DepartureRisks } from '.';
|
|
9
6
|
import { DestinationRisks } from '.';
|
|
10
|
-
import {
|
|
7
|
+
import { SpecialRisks } from '.';
|
|
8
|
+
import { Mitigation } from '.';
|
|
9
|
+
import { BaseEntityEx } from '.';
|
|
10
|
+
import { PilotQualificationsRisks } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/FlightsEndPoint.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { TimeSeries } from '.';
|
|
4
|
-
import { FlightPlan } from '.';
|
|
5
3
|
import { Flight } from '.';
|
|
6
4
|
import { AnyKeyValue } from '.';
|
|
5
|
+
import { TimeSeries } from '.';
|
|
6
|
+
import { FlightPlan } from '.';
|
|
7
7
|
import { FlightTicket } from '.';
|
|
8
8
|
import { PreFlightInfo } from '.';
|
|
9
|
-
import { PostFlightInfo } from '.';
|
|
10
9
|
import { Contact } from '.';
|
|
10
|
+
import { PostFlightInfo } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class FlightsEndPoint {
|
|
13
13
|
private config;
|
package/lib/Lead.d.ts
CHANGED
package/lib/LeadFilter.d.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { TimeFrame } from '.';
|
|
2
2
|
import { LeadStatusCode } from '.';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export declare class LeadFilter extends BaseFilter {
|
|
3
|
+
export declare class LeadFilter {
|
|
4
|
+
search: string;
|
|
6
5
|
createdOn: TimeFrame;
|
|
7
6
|
leadSource: string;
|
|
8
7
|
campaignId: string;
|
|
9
8
|
status: LeadStatusCode[];
|
|
9
|
+
constructor(search?: string, createdOn?: TimeFrame, leadSource?: string, campaignId?: string, status?: LeadStatusCode[]);
|
|
10
10
|
}
|
|
11
|
-
export declare function GetLeadFilterColumnsDef(): ColumnDef[];
|
package/lib/LeadsEndPoint.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Lead } from '.';
|
|
3
4
|
import { TimeSeries } from '.';
|
|
4
5
|
import { LeadAction } from '.';
|
|
5
|
-
import { Lead } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class LeadsEndPoint {
|
|
8
8
|
private config;
|
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 { Lookup } from '.';
|
|
4
3
|
import { LookupGroup } from '.';
|
|
4
|
+
import { Lookup } 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 { ColumnDef } from '.';
|
|
2
1
|
import { StatusCode } from '.';
|
|
3
2
|
import { MaintenanceActionCode } from '.';
|
|
4
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,13 +1,12 @@
|
|
|
1
1
|
import { TimeFrame } from '.';
|
|
2
2
|
import { StatusCode } from '.';
|
|
3
3
|
import { MaintenanceActionCode } from '.';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
export declare class MaintenanceFilter extends BaseFilter {
|
|
4
|
+
export declare class MaintenanceFilter {
|
|
5
|
+
search: string;
|
|
7
6
|
airplaneId: string;
|
|
8
7
|
validUntil: TimeFrame;
|
|
9
8
|
status: StatusCode[];
|
|
10
9
|
component: string;
|
|
11
10
|
action: MaintenanceActionCode[];
|
|
11
|
+
constructor(search?: string, airplaneId?: string, validUntil?: TimeFrame, status?: StatusCode[], component?: string, action?: MaintenanceActionCode[]);
|
|
12
12
|
}
|
|
13
|
-
export declare function GetMaintenanceFilterColumnsDef(): ColumnDef[];
|
package/lib/MessageConfirm.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ConfirmStatusCode } from '.';
|
|
2
1
|
import { MessageTypeCode } from '.';
|
|
3
2
|
import { PriorityCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
5
4
|
import { ColumnDef } from '.';
|
|
5
|
+
import { ConfirmStatusCode } 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 { Flight } from '.';
|
|
4
3
|
import { FlightPlan } from '.';
|
|
5
4
|
import { PreFlightInfo } from '.';
|
|
6
5
|
import { PostFlightInfo } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MyFlightsEndPoint {
|
|
9
9
|
private config;
|
package/lib/PostFlightData.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { FlightPurposeCode } from '.';
|
|
2
|
-
import { OnBoard } from '.';
|
|
3
|
-
import { TOLData } from '.';
|
|
4
1
|
import { ReFuel } from '.';
|
|
5
2
|
import { Lesson } from '.';
|
|
6
3
|
import { BaseEntityEx } from '.';
|
|
7
4
|
import { ColumnDef } from '.';
|
|
8
5
|
import { FlightTypeCode } from '.';
|
|
6
|
+
import { FlightPurposeCode } from '.';
|
|
7
|
+
import { OnBoard } from '.';
|
|
8
|
+
import { TOLData } from '.';
|
|
9
9
|
export declare class PostFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/PreFlightData.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { OnBoard } from '.';
|
|
1
2
|
import { TOLData } from '.';
|
|
2
3
|
import { ReFuel } from '.';
|
|
3
4
|
import { Lesson } from '.';
|
|
@@ -5,7 +6,6 @@ import { BaseEntityEx } from '.';
|
|
|
5
6
|
import { ColumnDef } from '.';
|
|
6
7
|
import { FlightTypeCode } from '.';
|
|
7
8
|
import { FlightPurposeCode } from '.';
|
|
8
|
-
import { OnBoard } from '.';
|
|
9
9
|
export declare class PreFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/TokenData.d.ts
CHANGED
package/lib/UserEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { User } from '.';
|
|
4
3
|
import { LoginParams } from '.';
|
|
4
|
+
import { User } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class UserEndPoint {
|
|
7
7
|
private config;
|
package/lib/UserFilter.d.ts
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
|
+
import { UserTypeCode } from '.';
|
|
1
2
|
import { UserRoleFlag } from '.';
|
|
2
3
|
import { UserStatusCode } from '.';
|
|
3
4
|
import { TimeFrame } from '.';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import { UserTypeCode } from '.';
|
|
7
|
-
export declare class UserFilter extends BaseFilter {
|
|
5
|
+
export declare class UserFilter {
|
|
6
|
+
search: string;
|
|
8
7
|
type: UserTypeCode[];
|
|
9
8
|
roles: UserRoleFlag[];
|
|
10
9
|
status: UserStatusCode[];
|
|
11
10
|
lastSignIn: TimeFrame;
|
|
11
|
+
constructor(search?: string, type?: UserTypeCode[], roles?: UserRoleFlag[], status?: UserStatusCode[], lastSignIn?: TimeFrame);
|
|
12
12
|
}
|
|
13
|
-
export declare function GetUserFilterColumnsDef(): ColumnDef[];
|
package/lib/UsersEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { StringKeyValue } from '.';
|
|
4
3
|
import { User } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class UsersEndPoint {
|
|
7
7
|
private config;
|