@aya-flights/ngx-goox-lib 2.19.111 → 2.19.113
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 +5031 -5030
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +1 -1
- package/lib/AccountsEndPoint.d.ts +4 -4
- package/lib/Airplane.d.ts +4 -4
- package/lib/AirplanesEndPoint.d.ts +8 -8
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingPlan.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +1 -1
- package/lib/Campaign.d.ts +2 -2
- 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 +1 -1
- package/lib/Contact.d.ts +4 -4
- package/lib/ContactsEndPoint.d.ts +5 -5
- package/lib/Flight.d.ts +5 -4
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightPlan.d.ts +2 -2
- package/lib/FlightRisk.d.ts +4 -4
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +8 -8
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/Group.d.ts +1 -1
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/Lead.d.ts +2 -2
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/Maintenance.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +4 -4
- package/lib/PostFlightInfo.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +1 -1
- package/lib/Syllabus.d.ts +2 -2
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/SyllabusFilter.d.ts +1 -1
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/TimeSeries.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +116 -116
- 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 { ColumnDef } from '.';
|
|
2
1
|
import { AccountTypeCode } from '.';
|
|
3
2
|
import { AccountStatusCode } from '.';
|
|
4
3
|
import { Address } from '.';
|
|
5
4
|
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
6
|
export declare class Account extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
enName: string;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { FlightStateCode } from '.';
|
|
4
|
+
import { Account } from '.';
|
|
3
5
|
import { FlightTypeCode } from '.';
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
5
6
|
import { FlightPurposeCode } from '.';
|
|
7
|
+
import { FlightStatusCode } from '.';
|
|
8
|
+
import { Flight } from '.';
|
|
6
9
|
import { Credit } from '.';
|
|
7
10
|
import { Document } from '.';
|
|
8
11
|
import { AccountStatusCode } from '.';
|
|
9
12
|
import { StringKeyValue } from '.';
|
|
10
|
-
import { Flight } from '.';
|
|
11
|
-
import { Account } from '.';
|
|
12
|
-
import { FlightStateCode } 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,12 +1,12 @@
|
|
|
1
|
+
import { AirplaneStatusCode } from '.';
|
|
2
|
+
import { AirplaneValidationFlag } from '.';
|
|
3
|
+
import { Engine } from '.';
|
|
1
4
|
import { ColumnDef } from '.';
|
|
2
5
|
import { TypeRatingFlag } from '.';
|
|
3
|
-
import { Magneto } from '.';
|
|
4
6
|
import { Propeller } from '.';
|
|
5
7
|
import { Fuel } from '.';
|
|
6
8
|
import { BaseEntityEx } from '.';
|
|
7
|
-
import {
|
|
8
|
-
import { AirplaneValidationFlag } from '.';
|
|
9
|
-
import { Engine } from '.';
|
|
9
|
+
import { Magneto } from '.';
|
|
10
10
|
export declare class Airplane extends BaseEntityEx {
|
|
11
11
|
name: string;
|
|
12
12
|
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 {
|
|
5
|
-
import {
|
|
3
|
+
import { FlightStatusCode } from '.';
|
|
4
|
+
import { Flight } from '.';
|
|
5
|
+
import { StatusCode } from '.';
|
|
6
6
|
import { Maintenance } from '.';
|
|
7
|
-
import { Airplane } from '.';
|
|
8
7
|
import { AirplaneStatusCode } from '.';
|
|
8
|
+
import { StringKeyValue } from '.';
|
|
9
|
+
import { FlightPurposeCode } from '.';
|
|
10
|
+
import { FlightTypeCode } from '.';
|
|
9
11
|
import { FlightStateCode } from '.';
|
|
10
|
-
import {
|
|
12
|
+
import { Airplane } from '.';
|
|
11
13
|
import { Document } from '.';
|
|
12
|
-
import {
|
|
13
|
-
import { FlightStatusCode } from '.';
|
|
14
|
-
import { StatusCode } from '.';
|
|
14
|
+
import { MaintenanceActionCode } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
private config;
|
package/lib/Booking.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
1
2
|
import { ColumnDef } from '.';
|
|
2
3
|
import { BookingTypeFlag } from '.';
|
|
3
4
|
import { BookingStatusCode } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
5
|
export declare class Booking extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
accountId: string;
|
package/lib/BookingPlan.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { FlightPurposeCode } from '.';
|
|
2
1
|
import { FlightStatusCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
5
4
|
import { BookingTypeFlag } from '.';
|
|
5
|
+
import { FlightPurposeCode } from '.';
|
|
6
6
|
export declare class BookingPlan extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { BookingStatusCode } from '.';
|
|
3
4
|
import { TimeSeries } from '.';
|
|
4
5
|
import { BookingPlan } from '.';
|
|
5
6
|
import { Booking } from '.';
|
|
6
|
-
import { BookingStatusCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class BookingsEndPoint {
|
|
9
9
|
private config;
|
package/lib/Campaign.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { CampaignTypeCode } from '.';
|
|
4
2
|
import { CampaignStatusCode } from '.';
|
|
5
3
|
import { CurrencyCode } from '.';
|
|
4
|
+
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } 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 { 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;
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
import { AccountStatusCode } from '.';
|
|
2
|
+
import { Address } from '.';
|
|
1
3
|
import { LicenseKindFlag } from '.';
|
|
4
|
+
import { MedicalCertClassCode } from '.';
|
|
5
|
+
import { TypeRatingFlag } from '.';
|
|
2
6
|
import { ValidationFlag } from '.';
|
|
3
7
|
import { FlightCategoryCode } from '.';
|
|
4
8
|
import { BaseEntityEx } from '.';
|
|
5
9
|
import { ColumnDef } from '.';
|
|
6
|
-
import { AccountStatusCode } from '.';
|
|
7
|
-
import { Address } from '.';
|
|
8
|
-
import { TypeRatingFlag } from '.';
|
|
9
|
-
import { MedicalCertClassCode } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
11
11
|
accountId: string;
|
|
12
12
|
name: string;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import { MessageConfirm } from '.';
|
|
3
|
+
import { FlightStateCode } from '.';
|
|
5
4
|
import { Document } from '.';
|
|
6
|
-
import {
|
|
5
|
+
import { StatusCode } from '.';
|
|
7
6
|
import { FlightTypeCode } from '.';
|
|
8
7
|
import { FlightStatusCode } from '.';
|
|
9
8
|
import { FlightPurposeCode } from '.';
|
|
10
|
-
import {
|
|
9
|
+
import { StringKeyValue } from '.';
|
|
11
10
|
import { Flight } from '.';
|
|
12
11
|
import { Contact } from '.';
|
|
13
|
-
import {
|
|
12
|
+
import { Certificate } from '.';
|
|
13
|
+
import { MessageConfirm } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
|
16
16
|
private config;
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { FlightPurposeCode } from '.';
|
|
2
2
|
import { FlightClassCode } from '.';
|
|
3
|
+
import { FlightStatusCode } from '.';
|
|
3
4
|
import { BillingStatusCode } from '.';
|
|
4
|
-
import { TOLData } from '.';
|
|
5
|
-
import { Lesson } from '.';
|
|
6
5
|
import { RiskAssessment } from '.';
|
|
7
6
|
import { BaseEntityEx } from '.';
|
|
8
|
-
import { ColumnDef } from '.';
|
|
9
7
|
import { FlightCategoryCode } from '.';
|
|
10
8
|
import { FlightTypeCode } from '.';
|
|
11
|
-
import {
|
|
9
|
+
import { TOLData } from '.';
|
|
10
|
+
import { Lesson } from '.';
|
|
11
|
+
import { ColumnDef } from '.';
|
|
12
12
|
export declare class Flight extends BaseEntityEx {
|
|
13
13
|
name: string;
|
|
14
14
|
description: string;
|
|
@@ -16,6 +16,7 @@ export declare class Flight extends BaseEntityEx {
|
|
|
16
16
|
flightString: string;
|
|
17
17
|
flightTime: number;
|
|
18
18
|
destination: string;
|
|
19
|
+
isPatterns: boolean;
|
|
19
20
|
accountId: string;
|
|
20
21
|
airplaneId: string;
|
|
21
22
|
captain: string;
|
package/lib/FlightBilling.d.ts
CHANGED
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
1
3
|
import { FlightTypeCode } from '.';
|
|
2
4
|
import { FlightStatusCode } from '.';
|
|
3
5
|
import { FlightStateCode } from '.';
|
|
4
6
|
import { FlightPurposeCode } from '.';
|
|
5
7
|
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
1
|
import { PilotQualificationsRisks } from '.';
|
|
2
|
-
import { CrewDutyDayRisks } from '.';
|
|
3
2
|
import { DepartureRisks } from '.';
|
|
4
|
-
import { WeatherRisks } from '.';
|
|
5
|
-
import { BaseEntityEx } from '.';
|
|
6
|
-
import { ColumnDef } from '.';
|
|
7
3
|
import { DestinationRisks } from '.';
|
|
8
4
|
import { TripRisks } from '.';
|
|
5
|
+
import { WeatherRisks } from '.';
|
|
9
6
|
import { SpecialRisks } from '.';
|
|
7
|
+
import { ColumnDef } from '.';
|
|
8
|
+
import { CrewDutyDayRisks } from '.';
|
|
10
9
|
import { Mitigation } 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
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 { FlightPlan } from '.';
|
|
4
|
-
import { Contact } from '.';
|
|
5
|
-
import { Flight } from '.';
|
|
6
|
-
import { BillingStatusCode } from '.';
|
|
7
|
-
import { TimeSeries } from '.';
|
|
8
|
-
import { AnyKeyValue } from '.';
|
|
9
|
-
import { FlightStatusCode } from '.';
|
|
10
3
|
import { PreFlightInfo } from '.';
|
|
11
|
-
import {
|
|
4
|
+
import { AnyKeyValue } from '.';
|
|
12
5
|
import { FlightPurposeCode } from '.';
|
|
6
|
+
import { TimeSeries } from '.';
|
|
7
|
+
import { FlightPlan } from '.';
|
|
8
|
+
import { Flight } from '.';
|
|
9
|
+
import { Contact } from '.';
|
|
13
10
|
import { FlightTicket } from '.';
|
|
14
11
|
import { PostFlightInfo } from '.';
|
|
12
|
+
import { FlightStatusCode } from '.';
|
|
13
|
+
import { BillingStatusCode } from '.';
|
|
14
|
+
import { FlightTypeCode } 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 { FlightTypeCode } from '.';
|
|
2
|
-
import { FlightStatusCode } from '.';
|
|
3
1
|
import { BillingStatusCode } from '.';
|
|
4
2
|
import { FlightPurposeCode } from '.';
|
|
5
3
|
import { TimeFrame } from '.';
|
|
4
|
+
import { FlightTypeCode } from '.';
|
|
5
|
+
import { FlightStatusCode } from '.';
|
|
6
6
|
export declare class FlightsFilter {
|
|
7
7
|
search: string;
|
|
8
8
|
period: TimeFrame;
|
package/lib/Group.d.ts
CHANGED
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 { Group } from '.';
|
|
4
3
|
import { StringKeyValue } from '.';
|
|
4
|
+
import { Group } 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/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 { 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 '.';
|
|
1
2
|
import { MaintenanceActionCode } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
4
|
import { ColumnDef } from '.';
|
|
4
|
-
import { StatusCode } from '.';
|
|
5
5
|
export declare class Maintenance extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { BookingStatusCode } from '.';
|
|
4
3
|
import { BookingTypeFlag } from '.';
|
|
5
4
|
import { Lookup } from '.';
|
|
6
5
|
import { BookingSlot } from '.';
|
|
7
6
|
import { Booking } from '.';
|
|
7
|
+
import { BookingStatusCode } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class MyBookingsEndPoint {
|
|
10
10
|
private config;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { PreFlightInfo } from '.';
|
|
4
|
-
import { Flight } from '.';
|
|
5
3
|
import { FlightPlan } from '.';
|
|
6
4
|
import { InstructionTypeCode } from '.';
|
|
5
|
+
import { FlightStatusCode } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
7
|
+
import { FlightTypeCode } from '.';
|
|
7
8
|
import { Syllabus } from '.';
|
|
9
|
+
import { PreFlightInfo } from '.';
|
|
8
10
|
import { PostFlightInfo } from '.';
|
|
9
|
-
import { FlightTypeCode } from '.';
|
|
10
|
-
import { FlightStatusCode } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class MyFlightsEndPoint {
|
|
13
13
|
private config;
|
package/lib/PostFlightInfo.d.ts
CHANGED
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { TripRisks } from '.';
|
|
1
2
|
import { WeatherRisks } from '.';
|
|
2
3
|
import { SpecialRisks } from '.';
|
|
3
4
|
import { Mitigation } from '.';
|
|
@@ -5,7 +6,6 @@ import { PilotQualificationsRisks } from '.';
|
|
|
5
6
|
import { CrewDutyDayRisks } from '.';
|
|
6
7
|
import { DepartureRisks } from '.';
|
|
7
8
|
import { DestinationRisks } from '.';
|
|
8
|
-
import { TripRisks } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/Syllabus.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
|
-
import { FlightCategoryCode } from '.';
|
|
3
1
|
import { InstructionTypeCode } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
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 { 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/SyllabusFilter.d.ts
CHANGED
package/lib/SystemMessage.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { PriorityCode } from '.';
|
|
2
1
|
import { BaseEntityEx } from '.';
|
|
3
2
|
import { ColumnDef } from '.';
|
|
4
3
|
import { MessageTypeCode } from '.';
|
|
4
|
+
import { PriorityCode } 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/TimeSeries.d.ts
CHANGED
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;
|
package/lib/UsersEndPoint.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { StringKeyValue } from '.';
|
|
3
4
|
import { User } from '.';
|
|
4
5
|
import { UserTypeCode } from '.';
|
|
5
6
|
import { UserStatusCode } from '.';
|
|
6
|
-
import { StringKeyValue } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class UsersEndPoint {
|
|
9
9
|
private config;
|