@aya-flights/ngx-goox-lib 2.19.171 → 2.19.172
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 +5140 -5109
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +6 -6
- package/lib/Airplane.d.ts +5 -5
- package/lib/AirplanesEndPoint.d.ts +8 -8
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/BookingSlotsSet.d.ts +1 -1
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/Certificate.d.ts +2 -2
- package/lib/Contact.d.ts +5 -5
- package/lib/ContactsEndPoint.d.ts +6 -6
- package/lib/Credit.d.ts +2 -2
- package/lib/DocumentsEndPoint.d.ts +1 -1
- package/lib/Flight.d.ts +6 -6
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightPlan.d.ts +1 -1
- package/lib/FlightRisk.d.ts +5 -5
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightTicketsEndPoint.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +6 -6
- package/lib/FlightsFilter.d.ts +1 -1
- package/lib/Lead.d.ts +1 -1
- package/lib/LeadsEndPoint.d.ts +3 -3
- package/lib/Maintenance.d.ts +1 -1
- package/lib/MaintenancesFilter.d.ts +1 -1
- package/lib/MessageConfirm.d.ts +2 -2
- package/lib/MessageConfirmsEndPoint.d.ts +2 -2
- package/lib/MyBookingsEndPoint.d.ts +3 -3
- package/lib/MyFlightsEndPoint.d.ts +3 -3
- package/lib/MyInfoEndPoint.d.ts +16 -0
- package/lib/MyStudentsEndPoint.d.ts +1 -1
- package/lib/Notification.d.ts +2 -2
- package/lib/Permission.d.ts +1 -1
- package/lib/PreFlightInfo.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +1 -1
- package/lib/SyllabusFilter.d.ts +1 -1
- package/lib/SystemConfig.d.ts +1 -1
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/User.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +121 -120
- package/lib/services.export.d.ts +25 -24
- package/package.json +1 -1
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Account } from '.';
|
|
4
|
-
import { AccountStatusCode } from '.';
|
|
5
|
-
import { Document } from '.';
|
|
6
|
-
import { FlightStateCode } from '.';
|
|
7
|
-
import { FlightPurposeCode } from '.';
|
|
8
|
-
import { AccountTypeCode } from '.';
|
|
9
3
|
import { StringKeyValue } from '.';
|
|
10
4
|
import { FlightTypeCode } from '.';
|
|
5
|
+
import { FlightPurposeCode } from '.';
|
|
6
|
+
import { Account } from '.';
|
|
7
|
+
import { AccountStatusCode } from '.';
|
|
11
8
|
import { FlightStatusCode } from '.';
|
|
9
|
+
import { FlightStateCode } from '.';
|
|
12
10
|
import { Flight } from '.';
|
|
11
|
+
import { AccountTypeCode } from '.';
|
|
13
12
|
import { Credit } from '.';
|
|
13
|
+
import { Document } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class AccountsEndPoint {
|
|
16
16
|
private config;
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
+
import { TypeRatingFlag } from '.';
|
|
2
|
+
import { AirplaneValidationFlag } from '.';
|
|
1
3
|
import { Magneto } from '.';
|
|
4
|
+
import { AirplaneStatusCode } from '.';
|
|
5
|
+
import { Engine } from '.';
|
|
2
6
|
import { Propeller } from '.';
|
|
3
7
|
import { Fuel } from '.';
|
|
8
|
+
import { WBConfig } from '.';
|
|
4
9
|
import { BaseEntityEx } from '.';
|
|
5
10
|
import { ColumnDef } from '.';
|
|
6
|
-
import { AirplaneStatusCode } from '.';
|
|
7
|
-
import { Engine } from '.';
|
|
8
|
-
import { WBConfig } from '.';
|
|
9
|
-
import { TypeRatingFlag } from '.';
|
|
10
|
-
import { AirplaneValidationFlag } 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 {
|
|
3
|
+
import { FlightTypeCode } from '.';
|
|
4
|
+
import { Flight } from '.';
|
|
5
|
+
import { Document } from '.';
|
|
6
|
+
import { AirplaneStatusCode } from '.';
|
|
7
|
+
import { MaintenanceActionCode } from '.';
|
|
8
|
+
import { Maintenance } from '.';
|
|
4
9
|
import { FlightStateCode } from '.';
|
|
10
|
+
import { FlightPurposeCode } from '.';
|
|
5
11
|
import { StatusCode } from '.';
|
|
6
|
-
import {
|
|
12
|
+
import { Airplane } from '.';
|
|
7
13
|
import { StringKeyValue } from '.';
|
|
8
14
|
import { FlightStatusCode } from '.';
|
|
9
|
-
import { Flight } from '.';
|
|
10
|
-
import { Maintenance } from '.';
|
|
11
|
-
import { AirplaneStatusCode } from '.';
|
|
12
|
-
import { FlightTypeCode } from '.';
|
|
13
|
-
import { FlightPurposeCode } from '.';
|
|
14
|
-
import { Document } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
private config;
|
|
@@ -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;
|
package/lib/BookingSlotsSet.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 { 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 { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { ValidationFlag } from '.';
|
|
4
2
|
import { StatusCode } from '.';
|
|
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 { AccountStatusCode } from '.';
|
|
2
|
-
import { LicenseKindFlag } from '.';
|
|
3
1
|
import { ValidationFlag } from '.';
|
|
4
2
|
import { FlightCategoryCode } from '.';
|
|
5
|
-
import { Address } from '.';
|
|
6
|
-
import { TypeRatingFlag } from '.';
|
|
7
|
-
import { MedicalCertClassCode } from '.';
|
|
8
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { MedicalCertClassCode } from '.';
|
|
9
5
|
import { ColumnDef } from '.';
|
|
6
|
+
import { AccountStatusCode } from '.';
|
|
7
|
+
import { Address } from '.';
|
|
8
|
+
import { TypeRatingFlag } from '.';
|
|
9
|
+
import { LicenseKindFlag } 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 { Contact } from '.';
|
|
5
|
-
import { FlightPurposeCode } from '.';
|
|
3
|
+
import { FlightTypeCode } from '.';
|
|
6
4
|
import { FlightStatusCode } from '.';
|
|
5
|
+
import { Contact } from '.';
|
|
6
|
+
import { Flight } from '.';
|
|
7
7
|
import { FlightStateCode } from '.';
|
|
8
|
+
import { FlightPurposeCode } from '.';
|
|
8
9
|
import { MessageConfirm } from '.';
|
|
9
|
-
import { Certificate } from '.';
|
|
10
|
-
import { FlightTypeCode } from '.';
|
|
11
|
-
import { Flight } from '.';
|
|
12
10
|
import { StatusCode } from '.';
|
|
13
11
|
import { StringKeyValue } from '.';
|
|
12
|
+
import { Certificate } 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/Credit.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { TransactionTypeCode } from '.';
|
|
2
|
-
import { CurrencyCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { TransactionTypeCode } from '.';
|
|
4
|
+
import { CurrencyCode } from '.';
|
|
5
5
|
export declare class Credit extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { StorageItem } from '.';
|
|
4
3
|
import { Document } from '.';
|
|
4
|
+
import { StorageItem } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class DocumentsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { FlightPurposeCode } from '.';
|
|
2
|
+
import { FlightCategoryCode } from '.';
|
|
3
|
+
import { FlightStatusCode } from '.';
|
|
4
|
+
import { Lesson } from '.';
|
|
2
5
|
import { RiskAssessment } from '.';
|
|
6
|
+
import { BaseEntityEx } from '.';
|
|
3
7
|
import { ColumnDef } from '.';
|
|
4
8
|
import { FlightClassCode } from '.';
|
|
5
|
-
import { FlightCategoryCode } from '.';
|
|
6
9
|
import { FlightTypeCode } from '.';
|
|
7
|
-
import { FlightStatusCode } from '.';
|
|
8
10
|
import { BillingStatusCode } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import { Lesson } from '.';
|
|
11
|
-
import { BaseEntityEx } from '.';
|
|
11
|
+
import { TOLData } from '.';
|
|
12
12
|
export declare class Flight extends BaseEntityEx {
|
|
13
13
|
name: string;
|
|
14
14
|
description: string;
|
package/lib/FlightBilling.d.ts
CHANGED
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { FlightTypeCode } from '.';
|
|
2
3
|
import { FlightStatusCode } from '.';
|
|
3
4
|
import { FlightStateCode } from '.';
|
|
4
5
|
import { FlightPurposeCode } from '.';
|
|
5
6
|
import { TOLData } from '.';
|
|
6
7
|
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
|
-
import {
|
|
1
|
+
import { PilotQualificationsRisks } from '.';
|
|
2
|
+
import { CrewDutyDayRisks } from '.';
|
|
3
|
+
import { WeatherRisks } from '.';
|
|
2
4
|
import { ColumnDef } from '.';
|
|
3
5
|
import { DepartureRisks } from '.';
|
|
4
6
|
import { DestinationRisks } from '.';
|
|
7
|
+
import { TripRisks } from '.';
|
|
5
8
|
import { SpecialRisks } from '.';
|
|
6
|
-
import { WeatherRisks } from '.';
|
|
7
9
|
import { Mitigation } from '.';
|
|
8
|
-
import {
|
|
9
|
-
import { CrewDutyDayRisks } from '.';
|
|
10
|
-
import { TripRisks } 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
|
@@ -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 { FlightTicket } from '.';
|
|
5
|
-
import { PostFlightInfo } from '.';
|
|
3
|
+
import { FlightTypeCode } from '.';
|
|
6
4
|
import { FlightStatusCode } from '.';
|
|
5
|
+
import { BillingStatusCode } from '.';
|
|
7
6
|
import { TimeSeries } from '.';
|
|
8
7
|
import { FlightPlan } from '.';
|
|
9
8
|
import { Point } from '.';
|
|
10
|
-
import {
|
|
9
|
+
import { FlightTicket } from '.';
|
|
10
|
+
import { PostFlightInfo } from '.';
|
|
11
|
+
import { Contact } from '.';
|
|
11
12
|
import { AnyKeyValue } from '.';
|
|
12
|
-
import { FlightTypeCode } from '.';
|
|
13
13
|
import { FlightPurposeCode } from '.';
|
|
14
|
-
import {
|
|
14
|
+
import { Flight } from '.';
|
|
15
15
|
import { PreFlightInfo } from '.';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
export declare class FlightsEndPoint {
|
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/Lead.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { Address } from '.';
|
|
2
3
|
import { LeadStatusCode } from '.';
|
|
3
4
|
import { FollowUpAction } from '.';
|
|
4
5
|
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
6
|
export declare class Lead extends BaseEntityEx {
|
|
7
7
|
firstName: string;
|
|
8
8
|
lastName: string;
|
package/lib/LeadsEndPoint.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { TimeSeries } from '.';
|
|
3
4
|
import { LeadAction } from '.';
|
|
4
5
|
import { Lead } from '.';
|
|
5
|
-
import { LeadStatusCode } from '.';
|
|
6
|
-
import { TimeSeries } from '.';
|
|
7
|
-
import { Booking } from '.';
|
|
8
6
|
import { Point } from '.';
|
|
9
7
|
import { IntEnumValue } from '.';
|
|
10
8
|
import { IntKeyValue } from '.';
|
|
9
|
+
import { LeadStatusCode } from '.';
|
|
10
|
+
import { Booking } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class LeadsEndPoint {
|
|
13
13
|
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;
|
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,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { ConfirmStatusCode } from '.';
|
|
4
|
-
import { PriorityCode } from '.';
|
|
5
3
|
import { MessageConfirm } from '.';
|
|
6
4
|
import { MessageTypeCode } from '.';
|
|
5
|
+
import { ConfirmStatusCode } from '.';
|
|
6
|
+
import { PriorityCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MessageConfirmsEndPoint {
|
|
9
9
|
private config;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Booking } from '.';
|
|
4
3
|
import { BookingTypeFlag } from '.';
|
|
5
|
-
import {
|
|
4
|
+
import { BookingSlot } from '.';
|
|
5
|
+
import { Booking } from '.';
|
|
6
6
|
import { BookingStatusCode } from '.';
|
|
7
7
|
import { Lookup } from '.';
|
|
8
|
-
import {
|
|
8
|
+
import { Airplane } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyBookingsEndPoint {
|
|
11
11
|
private config;
|
|
@@ -2,12 +2,12 @@ import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../u
|
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { InstructionTypeCode } from '.';
|
|
4
4
|
import { Syllabus } from '.';
|
|
5
|
-
import { PreFlightInfo } from '.';
|
|
6
5
|
import { PostFlightInfo } from '.';
|
|
7
|
-
import {
|
|
8
|
-
import { FlightPlan } from '.';
|
|
6
|
+
import { PreFlightInfo } from '.';
|
|
9
7
|
import { Flight } from '.';
|
|
10
8
|
import { FlightTypeCode } from '.';
|
|
9
|
+
import { FlightStatusCode } from '.';
|
|
10
|
+
import { FlightPlan } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class MyFlightsEndPoint {
|
|
13
13
|
private config;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { RestUtil, EntitiesResponse } from '../utils';
|
|
2
|
+
import { GooxConfig } from '../config';
|
|
3
|
+
import { StorageItem } from '.';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MyInfoEndPoint {
|
|
6
|
+
private config;
|
|
7
|
+
private rest;
|
|
8
|
+
private baseUrl;
|
|
9
|
+
constructor(config: GooxConfig, rest: RestUtil);
|
|
10
|
+
/**
|
|
11
|
+
* Get a list of files and folders from the folder in Google Drive defined as Library
|
|
12
|
+
*/
|
|
13
|
+
broseLibrary(folder?: string): import("rxjs").Observable<EntitiesResponse<StorageItem>>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MyInfoEndPoint, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MyInfoEndPoint>;
|
|
16
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Contact } from '.';
|
|
4
3
|
import { Flight } from '.';
|
|
4
|
+
import { Contact } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class MyStudentsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Notification.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { NotificationTypeCode } from '.';
|
|
2
|
-
import { PriorityCode } from '.';
|
|
3
1
|
import { StringKeyValue } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
5
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { NotificationTypeCode } from '.';
|
|
5
|
+
import { PriorityCode } from '.';
|
|
6
6
|
export declare class Notification extends BaseEntityEx {
|
|
7
7
|
type: NotificationTypeCode;
|
|
8
8
|
description: string;
|
package/lib/Permission.d.ts
CHANGED
package/lib/PreFlightInfo.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/SyllabusFilter.d.ts
CHANGED
package/lib/SystemConfig.d.ts
CHANGED
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 { MessageTypeCode } from '.';
|
|
4
3
|
import { MessageConfirm } from '.';
|
|
5
4
|
import { SystemMessage } from '.';
|
|
5
|
+
import { MessageTypeCode } 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 { UserRoleFlag } from '.';
|
|
1
2
|
import { UserStatusCode } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
4
|
import { ColumnDef } from '.';
|
|
4
5
|
import { UserTypeCode } from '.';
|
|
5
|
-
import { UserRoleFlag } 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 { User } from '.';
|
|
4
3
|
import { UserTypeCode } from '.';
|
|
5
4
|
import { UserStatusCode } from '.';
|
|
6
5
|
import { StringKeyValue } from '.';
|
|
6
|
+
import { User } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class UsersEndPoint {
|
|
9
9
|
private config;
|