@aya-flights/ngx-goox-lib 2.19.138 → 2.19.140
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 +4525 -4395
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +2 -2
- package/lib/AccountsEndPoint.d.ts +7 -7
- package/lib/AccountsFilter.d.ts +4 -1
- package/lib/Airplane.d.ts +5 -5
- package/lib/AirplanesEndPoint.d.ts +8 -8
- package/lib/AirplanesFilter.d.ts +4 -1
- package/lib/AuditLogFilter.d.ts +4 -1
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/BookingSlotsSet.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +2 -2
- package/lib/BookingsFilter.d.ts +4 -1
- package/lib/Campaign.d.ts +2 -2
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/CertificatesFilter.d.ts +4 -1
- package/lib/Contact.d.ts +5 -5
- package/lib/ContactsEndPoint.d.ts +5 -5
- package/lib/ContactsFilter.d.ts +4 -1
- package/lib/Credit.d.ts +1 -1
- package/lib/CreditsFilter.d.ts +4 -1
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +6 -6
- package/lib/FlightPlan.d.ts +2 -2
- package/lib/FlightRisk.d.ts +5 -5
- package/lib/FlightTicketsEndPoint.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +8 -8
- package/lib/FlightsFilter.d.ts +6 -3
- package/lib/Group.d.ts +2 -2
- package/lib/Lead.d.ts +2 -2
- package/lib/LeadsEndPoint.d.ts +2 -2
- package/lib/LeadsFilter.d.ts +4 -1
- package/lib/Lesson.d.ts +1 -1
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/MaintenancesEndPoint.d.ts +1 -1
- package/lib/MaintenancesFilter.d.ts +4 -1
- package/lib/MessageConfirm.d.ts +2 -2
- package/lib/MyBookingsEndPoint.d.ts +3 -3
- package/lib/MyFlightsEndPoint.d.ts +4 -4
- package/lib/MyStudentsEndPoint.d.ts +13 -0
- package/lib/PostFlightInfo.d.ts +2 -2
- package/lib/Price.d.ts +1 -1
- package/lib/Syllabus.d.ts +1 -1
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/SyllabusFilter.d.ts +4 -1
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/UsersEndPoint.d.ts +2 -2
- package/lib/UsersFilter.d.ts +5 -2
- package/lib/index.d.ts +112 -112
- package/lib/services.export.d.ts +22 -22
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { AccountTypeCode } from '.';
|
|
4
2
|
import { AccountStatusCode } from '.';
|
|
5
3
|
import { Address } from '.';
|
|
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 { FlightTypeCode } from '.';
|
|
3
|
+
import { StringKeyValue } from '.';
|
|
5
4
|
import { FlightStatusCode } from '.';
|
|
6
5
|
import { Flight } from '.';
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
6
|
+
import { AccountTypeCode } from '.';
|
|
7
|
+
import { FlightStateCode } from '.';
|
|
8
|
+
import { AccountStatusCode } from '.';
|
|
9
9
|
import { Credit } from '.';
|
|
10
|
+
import { FlightTypeCode } from '.';
|
|
11
|
+
import { FlightPurposeCode } from '.';
|
|
12
|
+
import { Document } from '.';
|
|
10
13
|
import { Account } from '.';
|
|
11
|
-
import { StringKeyValue } from '.';
|
|
12
|
-
import { AccountStatusCode } 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/AccountsFilter.d.ts
CHANGED
|
@@ -4,5 +4,8 @@ export declare class AccountsFilter {
|
|
|
4
4
|
search: string;
|
|
5
5
|
status: AccountStatusCode[];
|
|
6
6
|
type: AccountTypeCode[];
|
|
7
|
-
|
|
7
|
+
sort: string;
|
|
8
|
+
page: number;
|
|
9
|
+
size: number;
|
|
10
|
+
constructor(search?: string, status?: AccountStatusCode[], type?: AccountTypeCode[], sort?: string, page?: number, size?: number);
|
|
8
11
|
}
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { Propeller } from '.';
|
|
2
|
-
import { AirplaneValidationFlag } from '.';
|
|
3
1
|
import { Engine } from '.';
|
|
4
2
|
import { Magneto } from '.';
|
|
5
|
-
import { Fuel } from '.';
|
|
6
|
-
import { WBConfig } from '.';
|
|
7
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
8
5
|
import { TypeRatingFlag } from '.';
|
|
9
6
|
import { AirplaneStatusCode } from '.';
|
|
10
|
-
import {
|
|
7
|
+
import { AirplaneValidationFlag } from '.';
|
|
8
|
+
import { Propeller } from '.';
|
|
9
|
+
import { Fuel } from '.';
|
|
10
|
+
import { WBConfig } 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 {
|
|
4
|
-
import {
|
|
3
|
+
import { FlightTypeCode } from '.';
|
|
4
|
+
import { Document } from '.';
|
|
5
|
+
import { Airplane } from '.';
|
|
6
|
+
import { StringKeyValue } from '.';
|
|
7
|
+
import { FlightPurposeCode } from '.';
|
|
5
8
|
import { Flight } from '.';
|
|
6
9
|
import { MaintenanceActionCode } from '.';
|
|
7
10
|
import { Maintenance } from '.';
|
|
8
|
-
import {
|
|
9
|
-
import { Airplane } from '.';
|
|
11
|
+
import { FlightStateCode } from '.';
|
|
10
12
|
import { AirplaneStatusCode } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import { Document } from '.';
|
|
14
|
-
import { StringKeyValue } from '.';
|
|
13
|
+
import { FlightStatusCode } from '.';
|
|
14
|
+
import { StatusCode } 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
|
@@ -3,5 +3,8 @@ export declare class AirplanesFilter {
|
|
|
3
3
|
search: string;
|
|
4
4
|
status: AirplaneStatusCode[];
|
|
5
5
|
isActive: boolean;
|
|
6
|
-
|
|
6
|
+
sort: string;
|
|
7
|
+
page: number;
|
|
8
|
+
size: number;
|
|
9
|
+
constructor(search?: string, status?: AirplaneStatusCode[], isActive?: boolean, sort?: string, page?: number, size?: number);
|
|
7
10
|
}
|
package/lib/AuditLogFilter.d.ts
CHANGED
|
@@ -7,5 +7,8 @@ export declare class AuditLogFilter {
|
|
|
7
7
|
itemType: string;
|
|
8
8
|
itemId: string;
|
|
9
9
|
itemName: string;
|
|
10
|
-
|
|
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);
|
|
11
14
|
}
|
package/lib/BookingSlots.d.ts
CHANGED
package/lib/BookingSlotsSet.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { TimeSeries } from '.';
|
|
4
|
-
import { BookingPlan } from '.';
|
|
5
3
|
import { Booking } from '.';
|
|
6
4
|
import { BookingStatusCode } from '.';
|
|
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
|
@@ -7,5 +7,8 @@ export declare class BookingsFilter {
|
|
|
7
7
|
contactId: string;
|
|
8
8
|
airplaneId: string;
|
|
9
9
|
status: BookingStatusCode[];
|
|
10
|
-
|
|
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);
|
|
11
14
|
}
|
package/lib/Campaign.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { CampaignTypeCode } from '.';
|
|
2
|
-
import { CampaignStatusCode } from '.';
|
|
3
1
|
import { CurrencyCode } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
5
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { CampaignTypeCode } from '.';
|
|
5
|
+
import { CampaignStatusCode } 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;
|
|
@@ -7,5 +7,8 @@ export declare class CertificatesFilter {
|
|
|
7
7
|
status: StatusCode[];
|
|
8
8
|
type: ValidationFlag[];
|
|
9
9
|
valid: TimeFrame;
|
|
10
|
-
|
|
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);
|
|
11
14
|
}
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { TypeRatingFlag } from '.';
|
|
2
|
-
import { MedicalCertClassCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { AccountStatusCode } from '.';
|
|
5
2
|
import { Address } from '.';
|
|
6
|
-
import { FlightCategoryCode } from '.';
|
|
7
|
-
import { ColumnDef } from '.';
|
|
8
3
|
import { LicenseKindFlag } from '.';
|
|
4
|
+
import { MedicalCertClassCode } from '.';
|
|
9
5
|
import { ValidationFlag } from '.';
|
|
6
|
+
import { FlightCategoryCode } from '.';
|
|
7
|
+
import { AccountStatusCode } from '.';
|
|
8
|
+
import { TypeRatingFlag } from '.';
|
|
9
|
+
import { ColumnDef } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
11
11
|
accountId: string;
|
|
12
12
|
name: string;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { StatusCode } from '.';
|
|
4
|
-
import { FlightTypeCode } from '.';
|
|
5
|
-
import { Flight } from '.';
|
|
6
3
|
import { Contact } from '.';
|
|
7
4
|
import { StringKeyValue } from '.';
|
|
8
|
-
import { MessageConfirm } from '.';
|
|
9
5
|
import { FlightStateCode } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
7
|
+
import { StatusCode } from '.';
|
|
8
|
+
import { Certificate } from '.';
|
|
9
|
+
import { FlightTypeCode } from '.';
|
|
10
|
+
import { MessageConfirm } from '.';
|
|
10
11
|
import { FlightPurposeCode } from '.';
|
|
11
12
|
import { Document } from '.';
|
|
12
|
-
import { Certificate } from '.';
|
|
13
13
|
import { FlightStatusCode } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
package/lib/ContactsFilter.d.ts
CHANGED
|
@@ -3,5 +3,8 @@ export declare class ContactsFilter {
|
|
|
3
3
|
search: string;
|
|
4
4
|
status: StatusCode[];
|
|
5
5
|
isPilot: boolean;
|
|
6
|
-
|
|
6
|
+
sort: string;
|
|
7
|
+
page: number;
|
|
8
|
+
size: number;
|
|
9
|
+
constructor(search?: string, status?: StatusCode[], isPilot?: boolean, sort?: string, page?: number, size?: number);
|
|
7
10
|
}
|
package/lib/Credit.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { TransactionTypeCode } from '.';
|
|
1
2
|
import { CurrencyCode } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
4
|
import { ColumnDef } from '.';
|
|
4
|
-
import { TransactionTypeCode } from '.';
|
|
5
5
|
export declare class Credit extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
package/lib/CreditsFilter.d.ts
CHANGED
|
@@ -7,5 +7,8 @@ export declare class CreditsFilter {
|
|
|
7
7
|
type: TransactionTypeCode[];
|
|
8
8
|
period: TimeFrame;
|
|
9
9
|
reference: string;
|
|
10
|
-
|
|
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);
|
|
11
14
|
}
|
package/lib/Document.d.ts
CHANGED
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { FlightClassCode } from '.';
|
|
2
|
-
import { FlightCategoryCode } from '.';
|
|
3
1
|
import { FlightPurposeCode } from '.';
|
|
4
|
-
import {
|
|
5
|
-
import { BillingStatusCode } from '.';
|
|
6
|
-
import { TOLData } from '.';
|
|
7
|
-
import { Lesson } from '.';
|
|
2
|
+
import { FlightCategoryCode } from '.';
|
|
8
3
|
import { RiskAssessment } from '.';
|
|
9
4
|
import { BaseEntityEx } from '.';
|
|
10
5
|
import { ColumnDef } from '.';
|
|
6
|
+
import { Lesson } from '.';
|
|
7
|
+
import { FlightClassCode } from '.';
|
|
11
8
|
import { FlightTypeCode } from '.';
|
|
9
|
+
import { FlightStatusCode } from '.';
|
|
10
|
+
import { BillingStatusCode } from '.';
|
|
11
|
+
import { TOLData } from '.';
|
|
12
12
|
export declare class Flight extends BaseEntityEx {
|
|
13
13
|
name: string;
|
|
14
14
|
description: string;
|
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { FlightTypeCode } from '.';
|
|
2
|
-
import { FlightStatusCode } from '.';
|
|
3
1
|
import { FlightStateCode } from '.';
|
|
4
2
|
import { FlightPurposeCode } from '.';
|
|
5
3
|
import { TOLData } from '.';
|
|
6
4
|
import { BaseEntityEx } from '.';
|
|
7
5
|
import { ColumnDef } from '.';
|
|
6
|
+
import { FlightTypeCode } from '.';
|
|
7
|
+
import { FlightStatusCode } from '.';
|
|
8
8
|
export declare class FlightPlan extends BaseEntityEx {
|
|
9
9
|
name: string;
|
|
10
10
|
description: string;
|
package/lib/FlightRisk.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SpecialRisks } from '.';
|
|
2
|
+
import { Mitigation } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
2
4
|
import { PilotQualificationsRisks } from '.';
|
|
3
|
-
import { CrewDutyDayRisks } from '.';
|
|
4
5
|
import { DepartureRisks } from '.';
|
|
5
6
|
import { DestinationRisks } from '.';
|
|
7
|
+
import { BaseEntityEx } from '.';
|
|
8
|
+
import { CrewDutyDayRisks } from '.';
|
|
6
9
|
import { TripRisks } from '.';
|
|
7
10
|
import { WeatherRisks } from '.';
|
|
8
|
-
import { SpecialRisks } from '.';
|
|
9
|
-
import { Mitigation } from '.';
|
|
10
|
-
import { ColumnDef } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
|
@@ -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,17 +1,17 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
5
|
-
import { BillingStatusCode } from '.';
|
|
6
|
-
import { TimeSeries } from '.';
|
|
3
|
+
import { PostFlightInfo } from '.';
|
|
7
4
|
import { FlightPlan } from '.';
|
|
8
|
-
import { Contact } from '.';
|
|
9
|
-
import { PreFlightInfo } from '.';
|
|
10
5
|
import { AnyKeyValue } from '.';
|
|
11
|
-
import { FlightPurposeCode } from '.';
|
|
12
|
-
import { PostFlightInfo } from '.';
|
|
13
6
|
import { FlightTypeCode } from '.';
|
|
7
|
+
import { FlightStatusCode } from '.';
|
|
8
|
+
import { FlightPurposeCode } from '.';
|
|
9
|
+
import { PreFlightInfo } from '.';
|
|
14
10
|
import { Flight } from '.';
|
|
11
|
+
import { BillingStatusCode } from '.';
|
|
12
|
+
import { TimeSeries } from '.';
|
|
13
|
+
import { Contact } from '.';
|
|
14
|
+
import { FlightTicket } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class FlightsEndPoint {
|
|
17
17
|
private config;
|
package/lib/FlightsFilter.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BillingStatusCode } from '.';
|
|
2
|
+
import { FlightPurposeCode } from '.';
|
|
1
3
|
import { TimeFrame } from '.';
|
|
2
4
|
import { FlightTypeCode } from '.';
|
|
3
5
|
import { FlightStatusCode } from '.';
|
|
4
|
-
import { BillingStatusCode } from '.';
|
|
5
|
-
import { FlightPurposeCode } from '.';
|
|
6
6
|
export declare class FlightsFilter {
|
|
7
7
|
search: string;
|
|
8
8
|
period: TimeFrame;
|
|
@@ -13,5 +13,8 @@ export declare class FlightsFilter {
|
|
|
13
13
|
status: FlightStatusCode[];
|
|
14
14
|
billing: BillingStatusCode[];
|
|
15
15
|
purpose: FlightPurposeCode[];
|
|
16
|
-
|
|
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);
|
|
17
20
|
}
|
package/lib/Group.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Permission } from '.';
|
|
2
|
-
import { StringKeyValue } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { Permission } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
export declare class Group extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
email: string;
|
package/lib/Lead.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Address } from '.';
|
|
2
|
-
import { LeadStatusCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { Address } from '.';
|
|
4
|
+
import { LeadStatusCode } from '.';
|
|
5
5
|
export declare class Lead extends BaseEntityEx {
|
|
6
6
|
firstName: string;
|
|
7
7
|
lastName: string;
|
package/lib/LeadsEndPoint.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { LeadAction } from '.';
|
|
4
|
-
import { Lead } from '.';
|
|
5
3
|
import { LeadStatusCode } from '.';
|
|
6
4
|
import { TimeSeries } from '.';
|
|
5
|
+
import { LeadAction } from '.';
|
|
6
|
+
import { Lead } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class LeadsEndPoint {
|
|
9
9
|
private config;
|
package/lib/LeadsFilter.d.ts
CHANGED
|
@@ -2,5 +2,8 @@ import { LeadStatusCode } from '.';
|
|
|
2
2
|
export declare class LeadsFilter {
|
|
3
3
|
search: string;
|
|
4
4
|
status: LeadStatusCode[];
|
|
5
|
-
|
|
5
|
+
sort: string;
|
|
6
|
+
page: number;
|
|
7
|
+
size: number;
|
|
8
|
+
constructor(search?: string, status?: LeadStatusCode[], sort?: string, page?: number, size?: number);
|
|
6
9
|
}
|
package/lib/Lesson.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;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { StatusCode } from '.';
|
|
3
4
|
import { Maintenance } from '.';
|
|
4
5
|
import { MaintenanceActionCode } from '.';
|
|
5
|
-
import { StatusCode } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class MaintenancesEndPoint {
|
|
8
8
|
private config;
|
|
@@ -7,5 +7,8 @@ export declare class MaintenancesFilter {
|
|
|
7
7
|
action: MaintenanceActionCode[];
|
|
8
8
|
status: StatusCode[];
|
|
9
9
|
valid: TimeFrame;
|
|
10
|
-
|
|
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);
|
|
11
14
|
}
|
package/lib/MessageConfirm.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { ConfirmStatusCode } from '.';
|
|
4
2
|
import { MessageTypeCode } from '.';
|
|
5
3
|
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,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { Lookup } from '.';
|
|
3
4
|
import { Booking } from '.';
|
|
4
|
-
import { BookingTypeFlag } from '.';
|
|
5
|
-
import { Airplane } from '.';
|
|
6
5
|
import { BookingStatusCode } from '.';
|
|
7
|
-
import {
|
|
6
|
+
import { BookingTypeFlag } from '.';
|
|
8
7
|
import { BookingSlot } from '.';
|
|
8
|
+
import { Airplane } 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 {
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
3
|
+
import { PreFlightInfo } from '.';
|
|
5
4
|
import { InstructionTypeCode } from '.';
|
|
5
|
+
import { Syllabus } from '.';
|
|
6
6
|
import { PostFlightInfo } from '.';
|
|
7
7
|
import { Flight } from '.';
|
|
8
|
+
import { FlightTypeCode } from '.';
|
|
9
|
+
import { FlightStatusCode } from '.';
|
|
8
10
|
import { FlightPlan } from '.';
|
|
9
|
-
import { Syllabus } from '.';
|
|
10
|
-
import { PreFlightInfo } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class MyFlightsEndPoint {
|
|
13
13
|
private config;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { Contact } from '.';
|
|
4
|
+
import { Flight } from '.';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class MyStudentsEndPoint {
|
|
6
7
|
private config;
|
|
@@ -15,6 +16,18 @@ export declare class MyStudentsEndPoint {
|
|
|
15
16
|
* List my students by query
|
|
16
17
|
*/
|
|
17
18
|
list(): import("rxjs").Observable<EntitiesResponse<Contact>>;
|
|
19
|
+
/**
|
|
20
|
+
* Find contact related flights for student sheet (all flights of type LESSON that the student is captain of first officer)
|
|
21
|
+
*/
|
|
22
|
+
getStudentSheet(id?: string, sort?: string): import("rxjs").Observable<EntitiesResponse<Flight>>;
|
|
23
|
+
/**
|
|
24
|
+
* Download student sheet as XLSX document
|
|
25
|
+
*/
|
|
26
|
+
downloadStudentSheetXlsx(id?: string): import("rxjs").Observable<import("@angular/common/module.d-CnjH8Dlt").HttpEvent<Blob>>;
|
|
27
|
+
/**
|
|
28
|
+
* Download student sheet as CSV document
|
|
29
|
+
*/
|
|
30
|
+
downloadStudentSheetCsv(id?: string): import("rxjs").Observable<import("@angular/common/module.d-CnjH8Dlt").HttpEvent<Blob>>;
|
|
18
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<MyStudentsEndPoint, never>;
|
|
19
32
|
static ɵprov: i0.ɵɵInjectableDeclaration<MyStudentsEndPoint>;
|
|
20
33
|
}
|
package/lib/PostFlightInfo.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { FlightPurposeCode } from '.';
|
|
2
|
-
import { FlightTypeCode } from '.';
|
|
3
1
|
import { FlightCategoryCode } from '.';
|
|
4
2
|
import { AssessmentCode } from '.';
|
|
3
|
+
import { FlightPurposeCode } from '.';
|
|
4
|
+
import { FlightTypeCode } from '.';
|
|
5
5
|
export declare class PostFlightInfo {
|
|
6
6
|
flightId: string;
|
|
7
7
|
flightNumber: number;
|
package/lib/Price.d.ts
CHANGED
package/lib/Syllabus.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { FlightCategoryCode } from '.';
|
|
2
1
|
import { InstructionTypeCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { FlightCategoryCode } from '.';
|
|
5
5
|
export declare class Syllabus extends BaseEntityEx {
|
|
6
6
|
plan: FlightCategoryCode;
|
|
7
7
|
type: InstructionTypeCode;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { InstructionTypeCode } from '.';
|
|
3
4
|
import { Syllabus } from '.';
|
|
4
5
|
import { FlightCategoryCode } from '.';
|
|
5
|
-
import { InstructionTypeCode } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SyllabusEndPoint {
|
|
8
8
|
private config;
|
package/lib/SyllabusFilter.d.ts
CHANGED
|
@@ -4,5 +4,8 @@ export declare class SyllabusFilter {
|
|
|
4
4
|
search: string;
|
|
5
5
|
plan: FlightCategoryCode[];
|
|
6
6
|
type: InstructionTypeCode[];
|
|
7
|
-
|
|
7
|
+
sort: string;
|
|
8
|
+
page: number;
|
|
9
|
+
size: number;
|
|
10
|
+
constructor(search?: string, plan?: FlightCategoryCode[], type?: InstructionTypeCode[], sort?: string, page?: number, size?: number);
|
|
8
11
|
}
|
package/lib/SystemMessage.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { MessageTypeCode } from '.';
|
|
2
3
|
import { PriorityCode } from '.';
|
|
3
4
|
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 { MessageConfirm } from '.';
|
|
3
4
|
import { SystemMessage } from '.';
|
|
4
5
|
import { MessageTypeCode } from '.';
|
|
5
|
-
import { MessageConfirm } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SystemMessagesEndPoint {
|
|
8
8
|
private config;
|
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { UserTypeCode } from '.';
|
|
4
2
|
import { UserRoleFlag } from '.';
|
|
5
3
|
import { UserStatusCode } from '.';
|
|
4
|
+
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
6
|
export declare class User extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
email: string;
|