@aya-flights/ngx-goox-lib 2.19.190 → 2.19.192
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 +5623 -5513
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +1 -1
- package/lib/AccountsEndPoint.d.ts +6 -6
- package/lib/AccountsFilter.d.ts +1 -1
- package/lib/Airplane.d.ts +5 -5
- package/lib/AirplanesEndPoint.d.ts +5 -5
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/Booking.d.ts +2 -2
- package/lib/BookingPlan.d.ts +1 -1
- package/lib/BookingSlot.d.ts +1 -1
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/BookingSlotsSet.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/Contact.d.ts +5 -5
- package/lib/ContactsEndPoint.d.ts +5 -5
- package/lib/Credit.d.ts +1 -1
- package/lib/CreditsFilter.d.ts +1 -1
- package/lib/Flight.d.ts +4 -4
- 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 +5 -5
- package/lib/Group.d.ts +1 -1
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/LeadsEndPoint.d.ts +3 -3
- package/lib/LogBookRecord.d.ts +1 -1
- package/lib/Lookup.d.ts +1 -1
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/MaintenancesEndPoint.d.ts +1 -1
- package/lib/MessageConfirmsEndPoint.d.ts +1 -1
- package/lib/Metar.d.ts +1 -1
- package/lib/MyAuthEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +3 -3
- package/lib/MyCertificatesEndPoint.d.ts +49 -0
- package/lib/MyFlightsEndPoint.d.ts +13 -5
- package/lib/PostFlightInfo.d.ts +1 -1
- package/lib/Price.d.ts +1 -1
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/User.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/UsersFilter.d.ts +1 -1
- package/lib/index.d.ts +127 -126
- package/lib/services.export.d.ts +25 -24
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { Address } from '.';
|
|
1
2
|
import { BaseEntityEx } from '.';
|
|
2
3
|
import { ColumnDef } from '.';
|
|
3
4
|
import { AccountTypeCode } from '.';
|
|
4
5
|
import { AccountStatusCode } from '.';
|
|
5
|
-
import { Address } 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 { AccountStatusCode } from '.';
|
|
3
4
|
import { FlightPurposeCode } from '.';
|
|
5
|
+
import { Credit } from '.';
|
|
4
6
|
import { Document } from '.';
|
|
5
|
-
import { Flight } from '.';
|
|
6
7
|
import { Account } from '.';
|
|
7
|
-
import {
|
|
8
|
-
import { FlightTypeCode } from '.';
|
|
8
|
+
import { AccountTypeCode } from '.';
|
|
9
9
|
import { FlightStatusCode } from '.';
|
|
10
10
|
import { FlightStateCode } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
11
|
+
import { FlightTypeCode } from '.';
|
|
12
|
+
import { Flight } from '.';
|
|
13
|
+
import { StringKeyValue } 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
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { AirplaneStatusCode } from '.';
|
|
2
|
+
import { Engine } from '.';
|
|
3
|
+
import { Propeller } from '.';
|
|
4
|
+
import { Fuel } from '.';
|
|
5
|
+
import { TypeRatingFlag } from '.';
|
|
2
6
|
import { AirplaneValidationFlag } from '.';
|
|
3
7
|
import { Magneto } from '.';
|
|
4
|
-
import { Propeller } from '.';
|
|
5
8
|
import { WBConfig } from '.';
|
|
6
|
-
import { ColumnDef } from '.';
|
|
7
|
-
import { TypeRatingFlag } from '.';
|
|
8
|
-
import { Engine } from '.';
|
|
9
|
-
import { Fuel } from '.';
|
|
10
9
|
import { BaseEntityEx } from '.';
|
|
10
|
+
import { ColumnDef } 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
3
|
import { Maintenance } from '.';
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
5
4
|
import { FlightStateCode } from '.';
|
|
5
|
+
import { FlightStatusCode } from '.';
|
|
6
6
|
import { FlightPurposeCode } from '.';
|
|
7
7
|
import { Flight } from '.';
|
|
8
|
-
import { MaintenanceActionCode } from '.';
|
|
9
8
|
import { Airplane } from '.';
|
|
9
|
+
import { StatusCode } from '.';
|
|
10
|
+
import { MaintenanceActionCode } from '.';
|
|
11
|
+
import { Document } from '.';
|
|
12
|
+
import { FlightTypeCode } from '.';
|
|
10
13
|
import { AirplaneStatusCode } from '.';
|
|
11
14
|
import { StringKeyValue } from '.';
|
|
12
|
-
import { FlightTypeCode } from '.';
|
|
13
|
-
import { Document } from '.';
|
|
14
|
-
import { StatusCode } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
private config;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { AuditLog } from '.';
|
|
4
3
|
import { TimeSeries } from '.';
|
|
4
|
+
import { AuditLog } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class AuditLogsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Booking.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { BookingTypeFlag } from '.';
|
|
4
2
|
import { BookingStatusCode } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } 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 { ColumnDef } from '.';
|
|
2
1
|
import { BookingTypeFlag } from '.';
|
|
3
2
|
import { FlightPurposeCode } from '.';
|
|
4
3
|
import { FlightStatusCode } from '.';
|
|
5
4
|
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
6
|
export declare class BookingPlan extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
package/lib/BookingSlot.d.ts
CHANGED
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
3
|
import { BookingPlan } from '.';
|
|
5
4
|
import { Booking } from '.';
|
|
6
5
|
import { BookingStatusCode } from '.';
|
|
6
|
+
import { TimeSeries } 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 { CampaignTypeCode } from '.';
|
|
2
|
+
import { CampaignStatusCode } from '.';
|
|
1
3
|
import { CurrencyCode } from '.';
|
|
2
4
|
import { BaseEntityEx } from '.';
|
|
3
5
|
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;
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
import { TypeRatingFlag } from '.';
|
|
1
2
|
import { ValidationFlag } from '.';
|
|
2
|
-
import {
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
|
+
import { AccountStatusCode } from '.';
|
|
3
6
|
import { Address } from '.';
|
|
7
|
+
import { FlightCategoryCode } from '.';
|
|
4
8
|
import { LicenseKindFlag } from '.';
|
|
5
9
|
import { MedicalCertClassCode } from '.';
|
|
6
|
-
import { ColumnDef } from '.';
|
|
7
|
-
import { AccountStatusCode } from '.';
|
|
8
|
-
import { TypeRatingFlag } from '.';
|
|
9
|
-
import { BaseEntityEx } 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 { StringKeyValue } from '.';
|
|
4
3
|
import { Certificate } from '.';
|
|
5
|
-
import { FlightTypeCode } from '.';
|
|
6
4
|
import { FlightPurposeCode } from '.';
|
|
7
|
-
import {
|
|
5
|
+
import { Flight } from '.';
|
|
6
|
+
import { Contact } from '.';
|
|
7
|
+
import { FlightTypeCode } from '.';
|
|
8
8
|
import { FlightStatusCode } from '.';
|
|
9
9
|
import { FlightStateCode } from '.';
|
|
10
|
+
import { StringKeyValue } from '.';
|
|
10
11
|
import { MessageConfirm } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import { Flight } from '.';
|
|
12
|
+
import { StatusCode } from '.';
|
|
13
13
|
import { Document } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
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
package/lib/Flight.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
+
import { TOLData } from '.';
|
|
1
2
|
import { RiskAssessment } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
|
-
import {
|
|
4
|
+
import { FlightPurposeCode } from '.';
|
|
5
|
+
import { FlightCategoryCode } from '.';
|
|
4
6
|
import { FlightTypeCode } from '.';
|
|
5
7
|
import { FlightStatusCode } from '.';
|
|
8
|
+
import { FlightClassCode } from '.';
|
|
6
9
|
import { BillingStatusCode } from '.';
|
|
7
10
|
import { Lesson } from '.';
|
|
8
|
-
import { FlightPurposeCode } from '.';
|
|
9
|
-
import { FlightCategoryCode } from '.';
|
|
10
|
-
import { TOLData } from '.';
|
|
11
11
|
import { ColumnDef } from '.';
|
|
12
12
|
export declare class Flight extends BaseEntityEx {
|
|
13
13
|
name: string;
|
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
2
|
+
import { FlightTypeCode } from '.';
|
|
1
3
|
import { FlightStatusCode } from '.';
|
|
2
4
|
import { FlightStateCode } from '.';
|
|
3
5
|
import { FlightPurposeCode } from '.';
|
|
4
6
|
import { TOLData } from '.';
|
|
5
7
|
import { BaseEntityEx } from '.';
|
|
6
|
-
import { ColumnDef } from '.';
|
|
7
|
-
import { FlightTypeCode } 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 { PilotQualificationsRisks } from '.';
|
|
2
|
+
import { CrewDutyDayRisks } from '.';
|
|
3
|
+
import { DepartureRisks } from '.';
|
|
1
4
|
import { DestinationRisks } from '.';
|
|
5
|
+
import { SpecialRisks } from '.';
|
|
2
6
|
import { TripRisks } from '.';
|
|
7
|
+
import { WeatherRisks } from '.';
|
|
3
8
|
import { Mitigation } from '.';
|
|
4
9
|
import { BaseEntityEx } from '.';
|
|
5
10
|
import { ColumnDef } from '.';
|
|
6
|
-
import { PilotQualificationsRisks } from '.';
|
|
7
|
-
import { CrewDutyDayRisks } from '.';
|
|
8
|
-
import { DepartureRisks } from '.';
|
|
9
|
-
import { WeatherRisks } from '.';
|
|
10
|
-
import { SpecialRisks } 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 { FlightTicket } from '.';
|
|
4
3
|
import { TicketStatusCode } from '.';
|
|
4
|
+
import { FlightTicket } 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,18 +1,18 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { PostFlightInfo } from '.';
|
|
4
3
|
import { TimeSeries } from '.';
|
|
5
|
-
import {
|
|
4
|
+
import { Point } from '.';
|
|
6
5
|
import { FlightTicket } from '.';
|
|
7
6
|
import { Flight } from '.';
|
|
7
|
+
import { FlightPlan } from '.';
|
|
8
|
+
import { PostFlightInfo } from '.';
|
|
9
|
+
import { AnyKeyValue } from '.';
|
|
8
10
|
import { FlightTypeCode } from '.';
|
|
9
11
|
import { FlightStatusCode } from '.';
|
|
12
|
+
import { Contact } from '.';
|
|
10
13
|
import { PreFlightInfo } from '.';
|
|
11
|
-
import { Point } from '.';
|
|
12
|
-
import { AnyKeyValue } from '.';
|
|
13
14
|
import { BillingStatusCode } from '.';
|
|
14
15
|
import { FlightPurposeCode } from '.';
|
|
15
|
-
import { FlightPlan } from '.';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
export declare class FlightsEndPoint {
|
|
18
18
|
private config;
|
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/LeadsEndPoint.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { IntKeyValue } from '.';
|
|
3
4
|
import { Lead } from '.';
|
|
5
|
+
import { LeadStatusCode } from '.';
|
|
4
6
|
import { Booking } from '.';
|
|
5
|
-
import { IntEnumValue } from '.';
|
|
6
|
-
import { IntKeyValue } from '.';
|
|
7
7
|
import { Point } from '.';
|
|
8
|
-
import {
|
|
8
|
+
import { IntEnumValue } from '.';
|
|
9
9
|
import { TimeSeries } from '.';
|
|
10
10
|
import { LeadAction } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
package/lib/LogBookRecord.d.ts
CHANGED
package/lib/Lookup.d.ts
CHANGED
package/lib/LookupGroup.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Maintenance } from '.';
|
|
4
3
|
import { MaintenanceActionCode } from '.';
|
|
5
4
|
import { StatusCode } from '.';
|
|
5
|
+
import { Maintenance } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class MaintenancesEndPoint {
|
|
8
8
|
private config;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { MessageConfirm } from '.';
|
|
4
3
|
import { MessageTypeCode } from '.';
|
|
5
4
|
import { ConfirmStatusCode } from '.';
|
|
6
5
|
import { PriorityCode } from '.';
|
|
6
|
+
import { MessageConfirm } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MessageConfirmsEndPoint {
|
|
9
9
|
private config;
|
package/lib/Metar.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { MetarReport } from '.';
|
|
3
2
|
import { TafReport } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Metar extends BaseEntityEx {
|
|
6
6
|
metarReports: MetarReport[];
|
|
7
7
|
tafReports: TafReport[];
|
package/lib/MyAuthEndPoint.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Notification } from '.';
|
|
4
3
|
import { LoginParams } from '.';
|
|
5
4
|
import { Contact } from '.';
|
|
5
|
+
import { Notification } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class MyAuthEndPoint {
|
|
8
8
|
private config;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import { Booking } from '.';
|
|
3
|
+
import { BookingSlot } from '.';
|
|
5
4
|
import { BookingStatusCode } from '.';
|
|
6
5
|
import { BookingTypeFlag } from '.';
|
|
6
|
+
import { Booking } 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;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
|
+
import { GooxConfig } from '../config';
|
|
3
|
+
import { Certificate } from '.';
|
|
4
|
+
import { StatusCode } from '.';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class MyCertificatesEndPoint {
|
|
7
|
+
private config;
|
|
8
|
+
private rest;
|
|
9
|
+
private baseUrl;
|
|
10
|
+
constructor(config: GooxConfig, rest: RestUtil);
|
|
11
|
+
/**
|
|
12
|
+
* Get new and empty certificate template
|
|
13
|
+
*/
|
|
14
|
+
new(): import("rxjs").Observable<EntityResponse<Certificate>>;
|
|
15
|
+
/**
|
|
16
|
+
* Create new certificate
|
|
17
|
+
*/
|
|
18
|
+
create(body?: Certificate): import("rxjs").Observable<EntityResponse<Certificate>>;
|
|
19
|
+
/**
|
|
20
|
+
* Update existing certificate
|
|
21
|
+
*/
|
|
22
|
+
update(body?: Certificate): import("rxjs").Observable<EntityResponse<Certificate>>;
|
|
23
|
+
/**
|
|
24
|
+
* Delete certificate and all its content
|
|
25
|
+
*/
|
|
26
|
+
delete(id?: string): import("rxjs").Observable<ActionResponse>;
|
|
27
|
+
/**
|
|
28
|
+
* Get a single certificate by id
|
|
29
|
+
*/
|
|
30
|
+
get(id?: string): import("rxjs").Observable<EntityResponse<Certificate>>;
|
|
31
|
+
/**
|
|
32
|
+
* Find certificates by query
|
|
33
|
+
*/
|
|
34
|
+
find(search?: string, status?: StatusCode[], valid?: boolean, sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Certificate>>;
|
|
35
|
+
/**
|
|
36
|
+
* Upload certificate reference document
|
|
37
|
+
*/
|
|
38
|
+
getUploadUrl(id?: string): string;
|
|
39
|
+
/**
|
|
40
|
+
* Download certificate reference document
|
|
41
|
+
*/
|
|
42
|
+
download(id?: string): import("rxjs").Observable<import("@angular/common/module.d-CnjH8Dlt").HttpEvent<Blob>>;
|
|
43
|
+
/**
|
|
44
|
+
* Delete certificate reference document
|
|
45
|
+
*/
|
|
46
|
+
deleteReference(id?: string): import("rxjs").Observable<ActionResponse>;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MyCertificatesEndPoint, never>;
|
|
48
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MyCertificatesEndPoint>;
|
|
49
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { FlightStatusCode } from '.';
|
|
4
|
+
import { InstructionTypeCode } from '.';
|
|
5
|
+
import { PreFlightInfo } from '.';
|
|
3
6
|
import { Flight } from '.';
|
|
4
|
-
import {
|
|
7
|
+
import { FlightTypeCode } from '.';
|
|
5
8
|
import { Syllabus } from '.';
|
|
6
|
-
import { PreFlightInfo } from '.';
|
|
7
9
|
import { PostFlightInfo } from '.';
|
|
8
|
-
import {
|
|
9
|
-
import { FlightStatusCode } from '.';
|
|
10
|
-
import { InstructionTypeCode } from '.';
|
|
10
|
+
import { FlightPlan } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class MyFlightsEndPoint {
|
|
13
13
|
private config;
|
|
@@ -54,6 +54,14 @@ export declare class MyFlightsEndPoint {
|
|
|
54
54
|
* Update flight with post-flight assessment info
|
|
55
55
|
*/
|
|
56
56
|
setPostFlightAssessment(body?: PostFlightInfo): import("rxjs").Observable<ActionResponse>;
|
|
57
|
+
/**
|
|
58
|
+
* Find contact related flights for student sheet (all flights of type LESSON that the student is captain of first officer)
|
|
59
|
+
*/
|
|
60
|
+
getStudentSheet(sort?: string): import("rxjs").Observable<EntitiesResponse<Flight>>;
|
|
61
|
+
/**
|
|
62
|
+
* Download student sheet as XLSX document
|
|
63
|
+
*/
|
|
64
|
+
downloadStudentSheetXlsx(): import("rxjs").Observable<import("@angular/common/module.d-CnjH8Dlt").HttpEvent<Blob>>;
|
|
57
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<MyFlightsEndPoint, never>;
|
|
58
66
|
static ɵprov: i0.ɵɵInjectableDeclaration<MyFlightsEndPoint>;
|
|
59
67
|
}
|
package/lib/PostFlightInfo.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { AssessmentCode } from '.';
|
|
1
2
|
import { FlightPurposeCode } from '.';
|
|
2
3
|
import { FlightTypeCode } from '.';
|
|
3
4
|
import { FlightCategoryCode } from '.';
|
|
4
|
-
import { AssessmentCode } from '.';
|
|
5
5
|
export declare class PostFlightInfo {
|
|
6
6
|
flightId: string;
|
|
7
7
|
flightNumber: number;
|
package/lib/Price.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { InstructionTypeCode } from '.';
|
|
4
3
|
import { Syllabus } from '.';
|
|
5
4
|
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/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { UserTypeCode } from '.';
|
|
1
2
|
import { UserRoleFlag } from '.';
|
|
2
3
|
import { UserStatusCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
5
|
import { ColumnDef } from '.';
|
|
5
|
-
import { UserTypeCode } 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;
|