@aya-flights/ngx-goox-lib 2.19.100 → 2.19.102
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 +4454 -4448
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +5 -5
- package/lib/Airplane.d.ts +5 -5
- package/lib/AirplanesEndPoint.d.ts +7 -7
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingPlan.d.ts +2 -2
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- 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 +5 -5
- package/lib/ContactsEndPoint.d.ts +5 -5
- package/lib/Flight.d.ts +10 -10
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +6 -6
- package/lib/FlightsEndPoint.d.ts +6 -6
- package/lib/FlightsFilter.d.ts +1 -1
- package/lib/LeadsEndPoint.d.ts +2 -2
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +4 -4
- package/lib/Permission.d.ts +1 -1
- package/lib/PreFlightInfo.d.ts +3 -1
- package/lib/RiskAssessment.d.ts +2 -2
- package/lib/Syllabus.d.ts +2 -2
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/TimeSeries.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/UserEndPoint.d.ts +1 -1
- package/lib/index.d.ts +116 -116
- package/lib/services.export.d.ts +20 -20
- 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 { FlightStatusCode } from '.';
|
|
3
4
|
import { FlightStateCode } from '.';
|
|
5
|
+
import { Flight } from '.';
|
|
6
|
+
import { FlightTypeCode } from '.';
|
|
4
7
|
import { Credit } from '.';
|
|
5
|
-
import { AccountStatusCode } from '.';
|
|
6
8
|
import { StringKeyValue } from '.';
|
|
7
|
-
import {
|
|
9
|
+
import { AccountStatusCode } from '.';
|
|
10
|
+
import { FlightPurposeCode } from '.';
|
|
8
11
|
import { Document } from '.';
|
|
9
12
|
import { Account } from '.';
|
|
10
|
-
import { FlightPurposeCode } from '.';
|
|
11
|
-
import { Flight } from '.';
|
|
12
|
-
import { FlightStatusCode } 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 {
|
|
2
|
-
import { Propeller } from '.';
|
|
3
|
-
import { Fuel } from '.';
|
|
4
|
-
import { TypeRatingFlag } from '.';
|
|
1
|
+
import { AirplaneValidationFlag } from '.';
|
|
5
2
|
import { Engine } from '.';
|
|
6
3
|
import { Magneto } from '.';
|
|
4
|
+
import { Fuel } from '.';
|
|
7
5
|
import { BaseEntityEx } from '.';
|
|
8
6
|
import { ColumnDef } from '.';
|
|
9
|
-
import {
|
|
7
|
+
import { TypeRatingFlag } from '.';
|
|
8
|
+
import { AirplaneStatusCode } from '.';
|
|
9
|
+
import { Propeller } 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 {
|
|
3
|
+
import { FlightStatusCode } from '.';
|
|
4
|
+
import { StatusCode } from '.';
|
|
4
5
|
import { FlightStateCode } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
7
|
+
import { Document } from '.';
|
|
5
8
|
import { MaintenanceActionCode } from '.';
|
|
6
9
|
import { Maintenance } from '.';
|
|
7
|
-
import { FlightStatusCode } from '.';
|
|
8
|
-
import { FlightPurposeCode } from '.';
|
|
9
|
-
import { Document } from '.';
|
|
10
10
|
import { AirplaneStatusCode } from '.';
|
|
11
|
-
import {
|
|
11
|
+
import { StringKeyValue } from '.';
|
|
12
|
+
import { FlightPurposeCode } from '.';
|
|
12
13
|
import { Airplane } from '.';
|
|
13
|
-
import {
|
|
14
|
-
import { StatusCode } from '.';
|
|
14
|
+
import { FlightTypeCode } 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 { BookingTypeFlag } from '.';
|
|
1
2
|
import { BookingStatusCode } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
4
|
import { ColumnDef } from '.';
|
|
4
|
-
import { BookingTypeFlag } 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 { FlightStatusCode } from '.';
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
3
1
|
import { ColumnDef } from '.';
|
|
4
2
|
import { BookingTypeFlag } from '.';
|
|
5
3
|
import { FlightPurposeCode } from '.';
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
5
|
+
import { BaseEntityEx } from '.';
|
|
6
6
|
export declare class BookingPlan extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
package/lib/BookingSlots.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { BookingSlot } from '.';
|
|
4
3
|
import { BookingSlots } from '.';
|
|
5
4
|
import { BookingSlotsSet } from '.';
|
|
5
|
+
import { BookingSlot } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class BookingSlotsEndPoint {
|
|
8
8
|
private config;
|
|
@@ -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 { ColumnDef } from '.';
|
|
1
2
|
import { ValidationFlag } from '.';
|
|
2
3
|
import { StatusCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } 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 { StatusCode } from '.';
|
|
4
3
|
import { Certificate } from '.';
|
|
4
|
+
import { StatusCode } 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 { Address } from '.';
|
|
1
2
|
import { TypeRatingFlag } from '.';
|
|
2
|
-
import {
|
|
3
|
+
import { MedicalCertClassCode } from '.';
|
|
4
|
+
import { BaseEntityEx } from '.';
|
|
3
5
|
import { ColumnDef } from '.';
|
|
4
6
|
import { AccountStatusCode } from '.';
|
|
5
|
-
import {
|
|
6
|
-
import { FlightCategoryCode } from '.';
|
|
7
|
-
import { BaseEntityEx } from '.';
|
|
8
|
-
import { MedicalCertClassCode } from '.';
|
|
7
|
+
import { LicenseKindFlag } from '.';
|
|
9
8
|
import { ValidationFlag } from '.';
|
|
9
|
+
import { FlightCategoryCode } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
11
11
|
accountId: string;
|
|
12
12
|
name: string;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { StatusCode } from '.';
|
|
4
|
+
import { Certificate } from '.';
|
|
5
|
+
import { FlightPurposeCode } from '.';
|
|
6
|
+
import { MessageConfirm } from '.';
|
|
7
|
+
import { Contact } from '.';
|
|
3
8
|
import { StringKeyValue } from '.';
|
|
4
9
|
import { FlightTypeCode } from '.';
|
|
5
|
-
import { MessageConfirm } from '.';
|
|
6
10
|
import { FlightStatusCode } from '.';
|
|
7
11
|
import { FlightStateCode } from '.';
|
|
8
|
-
import { FlightPurposeCode } from '.';
|
|
9
|
-
import { Contact } from '.';
|
|
10
|
-
import { StatusCode } from '.';
|
|
11
|
-
import { Certificate } from '.';
|
|
12
12
|
import { Flight } from '.';
|
|
13
13
|
import { Document } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { FlightTypeCode } from '.';
|
|
2
|
+
import { FlightStateCode } from '.';
|
|
3
3
|
import { Billing } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
|
+
import { OnBoard } from '.';
|
|
6
|
+
import { RiskAssessment } from '.';
|
|
4
7
|
import { BaseEntityEx } from '.';
|
|
8
|
+
import { FlightPurposeCode } from '.';
|
|
9
|
+
import { FlightClassCode } from '.';
|
|
5
10
|
import { FlightStatusCode } from '.';
|
|
6
|
-
import {
|
|
7
|
-
import { TOLData } from '.';
|
|
8
|
-
import { ReFuel } from '.';
|
|
11
|
+
import { BillingStatusCode } from '.';
|
|
9
12
|
import { FlightCategoryCode } from '.';
|
|
13
|
+
import { ReFuel } from '.';
|
|
10
14
|
import { Lesson } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import { FlightTypeCode } from '.';
|
|
13
|
-
import { FlightStateCode } from '.';
|
|
14
|
-
import { BillingStatusCode } from '.';
|
|
15
|
-
import { RiskAssessment } from '.';
|
|
15
|
+
import { TOLData } 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 { FlightPurposeCode } from '.';
|
|
2
|
-
import { TOLData } from '.';
|
|
3
|
-
import { BaseEntityEx } from '.';
|
|
4
1
|
import { ColumnDef } from '.';
|
|
5
2
|
import { FlightTypeCode } from '.';
|
|
6
3
|
import { FlightStatusCode } from '.';
|
|
7
4
|
import { FlightStateCode } from '.';
|
|
5
|
+
import { FlightPurposeCode } from '.';
|
|
6
|
+
import { TOLData } from '.';
|
|
7
|
+
import { BaseEntityEx } 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 { CrewDutyDayRisks } from '.';
|
|
2
|
+
import { DepartureRisks } from '.';
|
|
1
3
|
import { TripRisks } from '.';
|
|
2
|
-
import {
|
|
4
|
+
import { WeatherRisks } from '.';
|
|
3
5
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
6
|
import { PilotQualificationsRisks } from '.';
|
|
6
|
-
import { DepartureRisks } from '.';
|
|
7
|
-
import { WeatherRisks } from '.';
|
|
8
|
-
import { SpecialRisks } from '.';
|
|
9
|
-
import { CrewDutyDayRisks } from '.';
|
|
10
7
|
import { DestinationRisks } 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;
|
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 { AnyKeyValue } from '.';
|
|
3
|
+
import { Flight } from '.';
|
|
5
4
|
import { BillingStatusCode } from '.';
|
|
6
|
-
import { FlightPlan } from '.';
|
|
7
|
-
import { TimeSeries } from '.';
|
|
8
|
-
import { PostFlightInfo } from '.';
|
|
9
5
|
import { Contact } from '.';
|
|
10
6
|
import { FlightTicket } from '.';
|
|
7
|
+
import { AnyKeyValue } from '.';
|
|
11
8
|
import { FlightTypeCode } from '.';
|
|
9
|
+
import { TimeSeries } from '.';
|
|
12
10
|
import { FlightStatusCode } from '.';
|
|
13
11
|
import { FlightPurposeCode } from '.';
|
|
14
|
-
import {
|
|
12
|
+
import { FlightPlan } from '.';
|
|
13
|
+
import { PreFlightInfo } 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 { FlightPurposeCode } from '.';
|
|
1
2
|
import { TimeFrame } from '.';
|
|
2
3
|
import { FlightTypeCode } from '.';
|
|
3
4
|
import { FlightStatusCode } from '.';
|
|
4
5
|
import { BillingStatusCode } from '.';
|
|
5
|
-
import { FlightPurposeCode } from '.';
|
|
6
6
|
export declare class FlightsFilter {
|
|
7
7
|
search: string;
|
|
8
8
|
period: TimeFrame;
|
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 { TimeSeries } from '.';
|
|
4
|
-
import { LeadAction } from '.';
|
|
5
3
|
import { Lead } from '.';
|
|
6
4
|
import { LeadStatusCode } from '.';
|
|
5
|
+
import { TimeSeries } from '.';
|
|
6
|
+
import { LeadAction } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class LeadsEndPoint {
|
|
9
9
|
private config;
|
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,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 { Flight } from '.';
|
|
3
4
|
import { FlightTypeCode } from '.';
|
|
4
|
-
import {
|
|
5
|
+
import { FlightPlan } from '.';
|
|
6
|
+
import { InstructionTypeCode } from '.';
|
|
5
7
|
import { PreFlightInfo } from '.';
|
|
6
8
|
import { PostFlightInfo } from '.';
|
|
7
|
-
import { Flight } from '.';
|
|
8
9
|
import { FlightStatusCode } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import { InstructionTypeCode } from '.';
|
|
10
|
+
import { Syllabus } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class MyFlightsEndPoint {
|
|
13
13
|
private config;
|
package/lib/Permission.d.ts
CHANGED
package/lib/PreFlightInfo.d.ts
CHANGED
|
@@ -16,6 +16,8 @@ export declare class PreFlightInfo {
|
|
|
16
16
|
secondaryCallSign: string;
|
|
17
17
|
captain: string;
|
|
18
18
|
firstOfficer: string;
|
|
19
|
+
captainName: string;
|
|
20
|
+
firstOfficerName: string;
|
|
19
21
|
estimatedFuelOnBoard: number;
|
|
20
22
|
estimatedEndurance: number;
|
|
21
23
|
actualFuelOnBoard: number;
|
|
@@ -33,5 +35,5 @@ export declare class PreFlightInfo {
|
|
|
33
35
|
hasCompetency: boolean;
|
|
34
36
|
hasFlightPlan: boolean;
|
|
35
37
|
reportedBy: string;
|
|
36
|
-
constructor(flightId?: string, flightNumber?: number, airplane?: string, hoursToInspection?: number, takeoffPlannedTime?: number, takeoffActualTime?: number, takeoffField?: string, landingField?: string, purpose?: FlightPurposeCode, purposeOt?: string, type?: FlightTypeCode, destination?: string, secondaryCallSign?: string, captain?: string, firstOfficer?: string, estimatedFuelOnBoard?: number, estimatedEndurance?: number, actualFuelOnBoard?: number, refuelBeforeFlight?: number, actualOilOnBoard?: number, refillOilBeforeFlight?: number, passengers?: string[], crew?: string[], wBConfig?: string, wBManual?: string, lessonSubject?: string, lessonFlightCounter?: number, preFlightNotes?: string, operationNotes?: string, hasCompetency?: boolean, hasFlightPlan?: boolean, reportedBy?: string);
|
|
38
|
+
constructor(flightId?: string, flightNumber?: number, airplane?: string, hoursToInspection?: number, takeoffPlannedTime?: number, takeoffActualTime?: number, takeoffField?: string, landingField?: string, purpose?: FlightPurposeCode, purposeOt?: string, type?: FlightTypeCode, destination?: string, secondaryCallSign?: string, captain?: string, firstOfficer?: string, captainName?: string, firstOfficerName?: string, estimatedFuelOnBoard?: number, estimatedEndurance?: number, actualFuelOnBoard?: number, refuelBeforeFlight?: number, actualOilOnBoard?: number, refillOilBeforeFlight?: number, passengers?: string[], crew?: string[], wBConfig?: string, wBManual?: string, lessonSubject?: string, lessonFlightCounter?: number, preFlightNotes?: string, operationNotes?: string, hasCompetency?: boolean, hasFlightPlan?: boolean, reportedBy?: string);
|
|
37
39
|
}
|
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { DestinationRisks } from '.';
|
|
2
|
-
import { TripRisks } from '.';
|
|
3
1
|
import { WeatherRisks } from '.';
|
|
4
2
|
import { SpecialRisks } from '.';
|
|
5
3
|
import { Mitigation } from '.';
|
|
6
4
|
import { PilotQualificationsRisks } from '.';
|
|
7
5
|
import { CrewDutyDayRisks } from '.';
|
|
8
6
|
import { DepartureRisks } from '.';
|
|
7
|
+
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 { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { FlightCategoryCode } from '.';
|
|
4
2
|
import { InstructionTypeCode } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Syllabus extends BaseEntityEx {
|
|
6
6
|
plan: FlightCategoryCode;
|
|
7
7
|
type: InstructionTypeCode;
|
package/lib/SystemMessage.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { MessageTypeCode } from '.';
|
|
3
2
|
import { PriorityCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class SystemMessage extends BaseEntityEx {
|
|
6
6
|
subject: string;
|
|
7
7
|
description: string;
|
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/UserEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { LoginParams } from '.';
|
|
4
3
|
import { User } from '.';
|
|
4
|
+
import { LoginParams } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class UserEndPoint {
|
|
7
7
|
private config;
|