@aya-flights/ngx-goox-lib 2.18.73 → 2.18.75
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/AccountsEndPoint.mjs +1 -1
- package/esm2022/lib/Airplane.mjs +1 -1
- package/esm2022/lib/AirplanesEndPoint.mjs +1 -1
- package/esm2022/lib/AuditLog.mjs +2 -2
- package/esm2022/lib/BookingSlotsSet.mjs +1 -1
- package/esm2022/lib/Campaign.mjs +2 -2
- package/esm2022/lib/Certificate.mjs +2 -2
- package/esm2022/lib/CertificatesFilter.mjs +1 -1
- package/esm2022/lib/Contact.mjs +3 -2
- package/esm2022/lib/ContactsEndPoint.mjs +1 -1
- package/esm2022/lib/Document.mjs +1 -1
- package/esm2022/lib/Enums.mjs +277 -277
- package/esm2022/lib/Flight.mjs +2 -2
- package/esm2022/lib/FlightPlan.mjs +1 -1
- package/esm2022/lib/FlightRisk.mjs +1 -1
- package/esm2022/lib/FlightTicketsEndPoint.mjs +1 -1
- package/esm2022/lib/FlightsEndPoint.mjs +1 -1
- package/esm2022/lib/FlightsFilter.mjs +1 -1
- package/esm2022/lib/Group.mjs +2 -2
- package/esm2022/lib/GroupsEndPoint.mjs +1 -1
- package/esm2022/lib/Lead.mjs +1 -1
- package/esm2022/lib/LeadsEndPoint.mjs +1 -1
- package/esm2022/lib/Lesson.mjs +1 -1
- package/esm2022/lib/Lookup.mjs +2 -2
- package/esm2022/lib/LookupsEndPoint.mjs +1 -1
- package/esm2022/lib/Maintenance.mjs +1 -1
- package/esm2022/lib/MaintenancesEndPoint.mjs +1 -1
- package/esm2022/lib/MessageConfirm.mjs +1 -1
- package/esm2022/lib/MyFlightsEndPoint.mjs +1 -1
- package/esm2022/lib/PostFlightData.mjs +1 -1
- package/esm2022/lib/PreFlightData.mjs +1 -1
- package/esm2022/lib/Syllabus.mjs +2 -2
- package/esm2022/lib/SyllabusEndPoint.mjs +1 -1
- package/esm2022/lib/SystemMessage.mjs +2 -2
- package/esm2022/lib/SystemMessagesEndPoint.mjs +1 -1
- package/esm2022/lib/TokenData.mjs +1 -1
- package/esm2022/lib/UsersFilter.mjs +1 -1
- package/esm2022/lib/index.mjs +114 -114
- package/esm2022/lib/services.export.mjs +37 -37
- package/fesm2022/aya-flights-ngx-goox-lib.mjs +4642 -4641
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +5 -5
- package/lib/Airplane.d.ts +4 -4
- package/lib/AirplanesEndPoint.d.ts +9 -9
- package/lib/AuditLog.d.ts +1 -1
- package/lib/BookingSlotsSet.d.ts +1 -1
- package/lib/Campaign.d.ts +1 -1
- package/lib/Certificate.d.ts +1 -1
- package/lib/CertificatesFilter.d.ts +1 -1
- package/lib/Contact.d.ts +4 -3
- package/lib/ContactsEndPoint.d.ts +7 -7
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +8 -8
- package/lib/FlightPlan.d.ts +1 -1
- package/lib/FlightRisk.d.ts +4 -4
- package/lib/FlightTicketsEndPoint.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +8 -8
- package/lib/FlightsFilter.d.ts +1 -1
- package/lib/Group.d.ts +2 -2
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/Lead.d.ts +2 -2
- package/lib/LeadsEndPoint.d.ts +1 -1
- package/lib/Lesson.d.ts +1 -1
- package/lib/Lookup.d.ts +1 -1
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/Maintenance.d.ts +1 -1
- package/lib/MaintenancesEndPoint.d.ts +1 -1
- package/lib/MessageConfirm.d.ts +2 -2
- package/lib/MyFlightsEndPoint.d.ts +3 -3
- package/lib/PostFlightData.d.ts +1 -1
- package/lib/PreFlightData.d.ts +1 -1
- package/lib/Syllabus.d.ts +2 -2
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/TokenData.d.ts +1 -1
- package/lib/UsersFilter.d.ts +1 -1
- package/lib/index.d.ts +113 -113
- package/lib/services.export.d.ts +19 -19
- package/package.json +1 -1
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { AccountStatusCode } from '.';
|
|
4
|
+
import { FlightTypeCode } from '.';
|
|
3
5
|
import { FlightPurposeCode } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
7
|
+
import { Credit } from '.';
|
|
4
8
|
import { Account } from '.';
|
|
9
|
+
import { StringKeyValue } from '.';
|
|
5
10
|
import { FlightStatusCode } from '.';
|
|
6
11
|
import { FlightStateCode } from '.';
|
|
7
12
|
import { Document } from '.';
|
|
8
|
-
import { AccountStatusCode } from '.';
|
|
9
|
-
import { StringKeyValue } from '.';
|
|
10
|
-
import { FlightTypeCode } from '.';
|
|
11
|
-
import { Flight } from '.';
|
|
12
|
-
import { Credit } from '.';
|
|
13
13
|
import * as i0 from "@angular/core";
|
|
14
14
|
export declare class AccountsEndPoint {
|
|
15
15
|
private config;
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Fuel } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { TypeRatingFlag } from '.';
|
|
4
|
-
import { AirplaneStatusCode } from '.';
|
|
5
2
|
import { AirplaneValidationFlag } from '.';
|
|
6
|
-
import { Engine } from '.';
|
|
7
3
|
import { Magneto } from '.';
|
|
8
4
|
import { Propeller } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
|
+
import { AirplaneStatusCode } from '.';
|
|
7
|
+
import { Engine } from '.';
|
|
8
|
+
import { Fuel } from '.';
|
|
9
9
|
import { BaseEntityEx } from '.';
|
|
10
10
|
export declare class Airplane extends BaseEntityEx {
|
|
11
11
|
name: string;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { AirplaneStatusCode } from '.';
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
5
|
-
import { StringKeyValue } from '.';
|
|
6
|
-
import { FlightPurposeCode } from '.';
|
|
7
|
-
import { Flight } from '.';
|
|
8
|
-
import { StatusCode } from '.';
|
|
9
3
|
import { FlightTypeCode } from '.';
|
|
4
|
+
import { Maintenance } from '.';
|
|
5
|
+
import { MaintenanceActionCode } from '.';
|
|
6
|
+
import { Airplane } from '.';
|
|
10
7
|
import { FlightStateCode } from '.';
|
|
8
|
+
import { StatusCode } from '.';
|
|
9
|
+
import { StringKeyValue } from '.';
|
|
10
|
+
import { FlightStatusCode } from '.';
|
|
11
|
+
import { Flight } from '.';
|
|
11
12
|
import { Document } from '.';
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import { Maintenance } from '.';
|
|
13
|
+
import { AirplaneStatusCode } from '.';
|
|
14
|
+
import { FlightPurposeCode } 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/BookingSlotsSet.d.ts
CHANGED
package/lib/Campaign.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { CampaignTypeCode } from '.';
|
|
2
3
|
import { CampaignStatusCode } from '.';
|
|
3
4
|
import { CurrencyCode } from '.';
|
|
4
5
|
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
6
|
export declare class Campaign extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
type: CampaignTypeCode;
|
package/lib/Certificate.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { ValidationFlag } from '.';
|
|
3
2
|
import { StatusCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } 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 {
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
2
|
import { ColumnDef } from '.';
|
|
3
3
|
import { AccountStatusCode } from '.';
|
|
4
4
|
import { Address } from '.';
|
|
5
|
-
import { LicenseKindFlag } from '.';
|
|
6
|
-
import { BaseEntityEx } from '.';
|
|
7
5
|
import { TypeRatingFlag } from '.';
|
|
8
6
|
import { MedicalCertClassCode } from '.';
|
|
9
7
|
import { FlightCategoryCode } from '.';
|
|
8
|
+
import { LicenseKindFlag } from '.';
|
|
9
|
+
import { ValidationFlag } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
11
11
|
accountId: string;
|
|
12
12
|
name: string;
|
|
@@ -19,6 +19,7 @@ export declare class Contact extends BaseEntityEx {
|
|
|
19
19
|
mobile: string;
|
|
20
20
|
email: string;
|
|
21
21
|
primaryAddress: Address;
|
|
22
|
+
address: Address;
|
|
22
23
|
groups: string[];
|
|
23
24
|
idNumber: string;
|
|
24
25
|
pilotLicense: string;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
3
|
+
import { Flight } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
|
+
import { FlightTypeCode } from '.';
|
|
4
6
|
import { FlightStatusCode } from '.';
|
|
5
7
|
import { FlightStateCode } from '.';
|
|
6
|
-
import { Document } from '.';
|
|
7
|
-
import { StatusCode } from '.';
|
|
8
8
|
import { FlightPurposeCode } from '.';
|
|
9
|
-
import {
|
|
9
|
+
import { StatusCode } from '.';
|
|
10
|
+
import { Contact } from '.';
|
|
10
11
|
import { Certificate } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import { Flight } from '.';
|
|
12
|
+
import { MessageConfirm } from '.';
|
|
13
|
+
import { Document } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
|
16
16
|
private config;
|
package/lib/Document.d.ts
CHANGED
package/lib/Flight.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ColumnDef } from '.';
|
|
1
|
+
import { FlightStatusCode } from '.';
|
|
3
2
|
import { OnBoard } from '.';
|
|
4
|
-
import { TOLData } from '.';
|
|
5
3
|
import { Lesson } from '.';
|
|
4
|
+
import { FlightPurposeCode } from '.';
|
|
5
|
+
import { FlightTypeCode } from '.';
|
|
6
|
+
import { ReFuel } from '.';
|
|
6
7
|
import { Billing } from '.';
|
|
7
8
|
import { RiskAssessment } from '.';
|
|
8
|
-
import {
|
|
9
|
-
import { BillingStatusCode } from '.';
|
|
9
|
+
import { BaseEntityEx } from '.';
|
|
10
10
|
import { FlightClassCode } from '.';
|
|
11
|
-
import {
|
|
11
|
+
import { BillingStatusCode } from '.';
|
|
12
|
+
import { ColumnDef } from '.';
|
|
12
13
|
import { FlightStateCode } from '.';
|
|
13
|
-
import {
|
|
14
|
+
import { TOLData } from '.';
|
|
14
15
|
import { FlightCategoryCode } from '.';
|
|
15
|
-
import { FlightStatusCode } from '.';
|
|
16
16
|
export declare class Flight extends BaseEntityEx {
|
|
17
17
|
name: string;
|
|
18
18
|
description: string;
|
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import { FlightStateCode } from '.';
|
|
1
2
|
import { FlightPurposeCode } from '.';
|
|
2
3
|
import { TOLData } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
5
|
import { ColumnDef } from '.';
|
|
5
6
|
import { FlightTypeCode } from '.';
|
|
6
7
|
import { FlightStatusCode } from '.';
|
|
7
|
-
import { FlightStateCode } from '.';
|
|
8
8
|
export declare class FlightPlan extends BaseEntityEx {
|
|
9
9
|
name: string;
|
|
10
10
|
description: string;
|
package/lib/FlightRisk.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { DepartureRisks } from '.';
|
|
2
1
|
import { TripRisks } from '.';
|
|
3
2
|
import { WeatherRisks } from '.';
|
|
4
|
-
import { Mitigation } from '.';
|
|
5
|
-
import { BaseEntityEx } from '.';
|
|
6
3
|
import { PilotQualificationsRisks } from '.';
|
|
4
|
+
import { CrewDutyDayRisks } from '.';
|
|
5
|
+
import { DepartureRisks } from '.';
|
|
7
6
|
import { DestinationRisks } from '.';
|
|
8
7
|
import { SpecialRisks } from '.';
|
|
8
|
+
import { Mitigation } from '.';
|
|
9
|
+
import { BaseEntityEx } from '.';
|
|
9
10
|
import { ColumnDef } from '.';
|
|
10
|
-
import { CrewDutyDayRisks } 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 {
|
|
3
|
+
import { FlightTypeCode } from '.';
|
|
4
|
+
import { TimeSeries } from '.';
|
|
5
|
+
import { BillingStatusCode } from '.';
|
|
4
6
|
import { Contact } from '.';
|
|
7
|
+
import { FlightPurposeCode } from '.';
|
|
8
|
+
import { FlightPlan } from '.';
|
|
9
|
+
import { PreFlightInfo } from '.';
|
|
10
|
+
import { PostFlightInfo } from '.';
|
|
11
|
+
import { Flight } from '.';
|
|
5
12
|
import { AnyKeyValue } from '.';
|
|
6
13
|
import { FlightStatusCode } from '.';
|
|
7
|
-
import { BillingStatusCode } from '.';
|
|
8
|
-
import { PreFlightInfo } from '.';
|
|
9
|
-
import { TimeSeries } from '.';
|
|
10
14
|
import { FlightTicket } from '.';
|
|
11
|
-
import { Flight } from '.';
|
|
12
|
-
import { FlightTypeCode } from '.';
|
|
13
|
-
import { FlightPlan } from '.';
|
|
14
|
-
import { PostFlightInfo } 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 { TimeFrame } from '.';
|
|
2
1
|
import { FlightTypeCode } from '.';
|
|
3
2
|
import { FlightStatusCode } from '.';
|
|
4
3
|
import { BillingStatusCode } from '.';
|
|
5
4
|
import { FlightPurposeCode } from '.';
|
|
5
|
+
import { TimeFrame } from '.';
|
|
6
6
|
export declare class FlightsFilter {
|
|
7
7
|
search: string;
|
|
8
8
|
period: TimeFrame;
|
package/lib/Group.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { StringKeyValue } from '.';
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
3
1
|
import { ColumnDef } from '.';
|
|
4
2
|
import { Permission } from '.';
|
|
3
|
+
import { StringKeyValue } from '.';
|
|
4
|
+
import { BaseEntityEx } from '.';
|
|
5
5
|
export declare class Group extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
email: string;
|
package/lib/GroupsEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { StringKeyValue } from '.';
|
|
4
3
|
import { Group } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class GroupsEndPoint {
|
|
7
7
|
private config;
|
package/lib/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 { Lead } from '.';
|
|
4
3
|
import { LeadStatusCode } from '.';
|
|
5
4
|
import { TimeSeries } from '.';
|
|
6
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/Lesson.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { FlightCategoryCode } from '.';
|
|
2
1
|
import { LessonSubjectCode } from '.';
|
|
3
2
|
import { AssessmentCode } from '.';
|
|
4
3
|
import { LessonTypeCode } from '.';
|
|
4
|
+
import { FlightCategoryCode } from '.';
|
|
5
5
|
export declare class Lesson {
|
|
6
6
|
number: number;
|
|
7
7
|
type: LessonTypeCode;
|
package/lib/Lookup.d.ts
CHANGED
package/lib/LookupsEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { LookupGroup } from '.';
|
|
4
3
|
import { Lookup } from '.';
|
|
4
|
+
import { LookupGroup } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class LookupsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Maintenance.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { StatusCode } from '.';
|
|
2
1
|
import { MaintenanceActionCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { StatusCode } from '.';
|
|
5
5
|
export declare class Maintenance extends BaseEntityEx {
|
|
6
6
|
name: 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 { StatusCode } from '.';
|
|
4
3
|
import { Maintenance } from '.';
|
|
5
4
|
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;
|
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,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { PreFlightInfo } from '.';
|
|
4
|
-
import { FlightTypeCode } from '.';
|
|
5
3
|
import { FlightPlan } from '.';
|
|
6
|
-
import { FlightStatusCode } from '.';
|
|
7
4
|
import { PostFlightInfo } from '.';
|
|
8
5
|
import { Flight } from '.';
|
|
6
|
+
import { FlightStatusCode } from '.';
|
|
7
|
+
import { PreFlightInfo } from '.';
|
|
8
|
+
import { FlightTypeCode } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyFlightsEndPoint {
|
|
11
11
|
private config;
|
package/lib/PostFlightData.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { OnBoard } from '.';
|
|
2
1
|
import { TOLData } from '.';
|
|
3
2
|
import { ReFuel } from '.';
|
|
4
3
|
import { Lesson } from '.';
|
|
@@ -6,6 +5,7 @@ import { BaseEntityEx } from '.';
|
|
|
6
5
|
import { ColumnDef } from '.';
|
|
7
6
|
import { FlightTypeCode } from '.';
|
|
8
7
|
import { FlightPurposeCode } from '.';
|
|
8
|
+
import { OnBoard } 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 { FlightPurposeCode } from '.';
|
|
1
2
|
import { OnBoard } from '.';
|
|
2
3
|
import { TOLData } from '.';
|
|
3
4
|
import { ReFuel } from '.';
|
|
@@ -5,7 +6,6 @@ import { Lesson } from '.';
|
|
|
5
6
|
import { BaseEntityEx } from '.';
|
|
6
7
|
import { ColumnDef } from '.';
|
|
7
8
|
import { FlightTypeCode } from '.';
|
|
8
|
-
import { FlightPurposeCode } from '.';
|
|
9
9
|
export declare class PreFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/Syllabus.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { InstructionTypeCode } from '.';
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
3
1
|
import { ColumnDef } from '.';
|
|
4
2
|
import { FlightCategoryCode } from '.';
|
|
3
|
+
import { InstructionTypeCode } from '.';
|
|
4
|
+
import { BaseEntityEx } 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 { Syllabus } from '.';
|
|
3
4
|
import { FlightCategoryCode } from '.';
|
|
4
5
|
import { InstructionTypeCode } from '.';
|
|
5
|
-
import { Syllabus } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SyllabusEndPoint {
|
|
8
8
|
private config;
|
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 '.';
|
|
4
3
|
import { SystemMessage } from '.';
|
|
5
4
|
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/TokenData.d.ts
CHANGED