@aya-flights/ngx-goox-lib 2.19.154 → 2.19.156
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 +6307 -6274
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +2 -2
- package/lib/AccountsEndPoint.d.ts +7 -7
- package/lib/Airplane.d.ts +6 -6
- package/lib/AirplanesEndPoint.d.ts +6 -6
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingPlan.d.ts +1 -1
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/BookingSlotsSet.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +2 -2
- package/lib/Campaign.d.ts +2 -2
- 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 +1 -1
- package/lib/DocumentsEndPoint.d.ts +5 -0
- package/lib/Flight.d.ts +5 -5
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +5 -5
- package/lib/FlightTicketsEndPoint.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +7 -7
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/Group.d.ts +2 -2
- package/lib/Lead.d.ts +2 -2
- package/lib/LeadsEndPoint.d.ts +4 -4
- 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/MyAuthEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +3 -3
- package/lib/MyFlightsEndPoint.d.ts +4 -4
- package/lib/MyStudentsEndPoint.d.ts +1 -1
- package/lib/StorageItem.d.ts +7 -0
- package/lib/Syllabus.d.ts +2 -2
- package/lib/SystemConfig.d.ts +1 -1
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/TransactionTypeCode.d.ts +2 -1
- package/lib/index.d.ts +117 -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 { AccountTypeCode } from '.';
|
|
2
|
-
import { AccountStatusCode } from '.';
|
|
3
1
|
import { Address } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
5
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { AccountTypeCode } from '.';
|
|
5
|
+
import { AccountStatusCode } 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 '.';
|
|
4
|
-
import { AccountTypeCode } from '.';
|
|
5
|
-
import { FlightTypeCode } from '.';
|
|
6
|
-
import { FlightStateCode } from '.';
|
|
7
3
|
import { Flight } from '.';
|
|
8
|
-
import { FlightStatusCode } from '.';
|
|
9
|
-
import { FlightPurposeCode } from '.';
|
|
10
4
|
import { Account } from '.';
|
|
11
|
-
import {
|
|
5
|
+
import { FlightStatusCode } from '.';
|
|
6
|
+
import { FlightStateCode } from '.';
|
|
12
7
|
import { Document } from '.';
|
|
8
|
+
import { AccountStatusCode } from '.';
|
|
9
|
+
import { FlightPurposeCode } from '.';
|
|
13
10
|
import { Credit } from '.';
|
|
11
|
+
import { AccountTypeCode } from '.';
|
|
12
|
+
import { StringKeyValue } from '.';
|
|
13
|
+
import { FlightTypeCode } 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 {
|
|
2
|
-
import {
|
|
3
|
-
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
1
|
+
import { Engine } from '.';
|
|
2
|
+
import { Propeller } from '.';
|
|
5
3
|
import { Fuel } from '.';
|
|
6
4
|
import { WBConfig } from '.';
|
|
5
|
+
import { BaseEntityEx } from '.';
|
|
6
|
+
import { TypeRatingFlag } from '.';
|
|
7
|
+
import { AirplaneStatusCode } from '.';
|
|
7
8
|
import { AirplaneValidationFlag } from '.';
|
|
8
|
-
import { Engine } from '.';
|
|
9
9
|
import { Magneto } from '.';
|
|
10
|
-
import {
|
|
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
|
+
import { Maintenance } from '.';
|
|
4
|
+
import { Document } from '.';
|
|
5
|
+
import { Airplane } from '.';
|
|
3
6
|
import { StringKeyValue } from '.';
|
|
4
7
|
import { FlightTypeCode } from '.';
|
|
5
8
|
import { Flight } from '.';
|
|
6
|
-
import { Airplane } from '.';
|
|
7
|
-
import { FlightStateCode } from '.';
|
|
8
|
-
import { Document } from '.';
|
|
9
|
-
import { AirplaneStatusCode } from '.';
|
|
10
|
-
import { FlightStatusCode } from '.';
|
|
11
9
|
import { StatusCode } from '.';
|
|
12
10
|
import { MaintenanceActionCode } from '.';
|
|
11
|
+
import { AirplaneStatusCode } from '.';
|
|
12
|
+
import { FlightStatusCode } from '.';
|
|
13
|
+
import { FlightStateCode } from '.';
|
|
13
14
|
import { FlightPurposeCode } from '.';
|
|
14
|
-
import { Maintenance } 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 { ColumnDef } from '.';
|
|
1
2
|
import { BookingTypeFlag } from '.';
|
|
2
3
|
import { BookingStatusCode } from '.';
|
|
3
4
|
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 { BookingTypeFlag } from '.';
|
|
2
1
|
import { FlightPurposeCode } from '.';
|
|
3
2
|
import { FlightStatusCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
5
4
|
import { ColumnDef } from '.';
|
|
5
|
+
import { BookingTypeFlag } 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 { BookingSlots } from '.';
|
|
3
4
|
import { BookingSlotsSet } from '.';
|
|
4
5
|
import { BookingSlot } from '.';
|
|
5
|
-
import { BookingSlots } 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,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Booking } from '.';
|
|
4
|
-
import { BookingStatusCode } from '.';
|
|
5
3
|
import { TimeSeries } from '.';
|
|
6
4
|
import { BookingPlan } from '.';
|
|
5
|
+
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 { ColumnDef } from '.';
|
|
2
|
-
import { CampaignTypeCode } from '.';
|
|
3
1
|
import { CampaignStatusCode } from '.';
|
|
4
2
|
import { CurrencyCode } from '.';
|
|
5
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
|
+
import { CampaignTypeCode } 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/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 { Address } from '.';
|
|
2
|
-
import { ValidationFlag } from '.';
|
|
3
|
-
import { FlightCategoryCode } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
1
|
import { AccountStatusCode } from '.';
|
|
7
2
|
import { TypeRatingFlag } from '.';
|
|
8
3
|
import { LicenseKindFlag } from '.';
|
|
9
4
|
import { MedicalCertClassCode } from '.';
|
|
5
|
+
import { ValidationFlag } from '.';
|
|
6
|
+
import { FlightCategoryCode } from '.';
|
|
7
|
+
import { BaseEntityEx } from '.';
|
|
8
|
+
import { Address } from '.';
|
|
9
|
+
import { ColumnDef } 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 { Document } from '.';
|
|
3
4
|
import { FlightTypeCode } from '.';
|
|
4
|
-
import {
|
|
5
|
-
import { Contact } from '.';
|
|
5
|
+
import { StringKeyValue } from '.';
|
|
6
6
|
import { FlightStatusCode } from '.';
|
|
7
|
-
import {
|
|
7
|
+
import { FlightStateCode } from '.';
|
|
8
8
|
import { MessageConfirm } from '.';
|
|
9
|
-
import {
|
|
9
|
+
import { Contact } from '.';
|
|
10
10
|
import { StatusCode } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import { FlightStateCode } from '.';
|
|
11
|
+
import { Certificate } from '.';
|
|
13
12
|
import { FlightPurposeCode } from '.';
|
|
13
|
+
import { Flight } 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
1
|
import { CurrencyCode } from '.';
|
|
3
2
|
import { BaseEntityEx } from '.';
|
|
4
3
|
import { ColumnDef } from '.';
|
|
4
|
+
import { TransactionTypeCode } from '.';
|
|
5
5
|
export declare class Credit extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { StorageItem } from '.';
|
|
3
4
|
import { Document } from '.';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class DocumentsEndPoint {
|
|
@@ -35,6 +36,10 @@ export declare class DocumentsEndPoint {
|
|
|
35
36
|
* Get a single document by linked entity ID
|
|
36
37
|
*/
|
|
37
38
|
linkedDocument(id?: string): import("rxjs").Observable<EntityResponse<Document>>;
|
|
39
|
+
/**
|
|
40
|
+
* Get a list of files from the base storage
|
|
41
|
+
*/
|
|
42
|
+
listFiles(root?: string): import("rxjs").Observable<EntitiesResponse<StorageItem>>;
|
|
38
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentsEndPoint, never>;
|
|
39
44
|
static ɵprov: i0.ɵɵInjectableDeclaration<DocumentsEndPoint>;
|
|
40
45
|
}
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { BillingStatusCode } from '.';
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
3
|
-
import { ColumnDef } from '.';
|
|
4
|
-
import { FlightPurposeCode } from '.';
|
|
5
1
|
import { FlightCategoryCode } from '.';
|
|
6
|
-
import { FlightTypeCode } from '.';
|
|
7
2
|
import { FlightStatusCode } from '.';
|
|
3
|
+
import { BillingStatusCode } from '.';
|
|
8
4
|
import { TOLData } from '.';
|
|
9
5
|
import { Lesson } from '.';
|
|
6
|
+
import { FlightPurposeCode } from '.';
|
|
7
|
+
import { FlightTypeCode } from '.';
|
|
10
8
|
import { RiskAssessment } from '.';
|
|
9
|
+
import { BaseEntityEx } from '.';
|
|
10
|
+
import { ColumnDef } from '.';
|
|
11
11
|
import { FlightClassCode } 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 { FlightStateCode } from '.';
|
|
2
|
+
import { FlightPurposeCode } from '.';
|
|
3
|
+
import { TOLData } from '.';
|
|
1
4
|
import { BaseEntityEx } from '.';
|
|
2
5
|
import { ColumnDef } from '.';
|
|
3
6
|
import { FlightTypeCode } from '.';
|
|
4
7
|
import { FlightStatusCode } from '.';
|
|
5
|
-
import { FlightStateCode } from '.';
|
|
6
|
-
import { FlightPurposeCode } from '.';
|
|
7
|
-
import { TOLData } 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
1
|
import { DepartureRisks } from '.';
|
|
3
2
|
import { TripRisks } from '.';
|
|
4
|
-
import {
|
|
5
|
-
import { Mitigation } from '.';
|
|
6
|
-
import { ColumnDef } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
7
4
|
import { PilotQualificationsRisks } from '.';
|
|
5
|
+
import { CrewDutyDayRisks } from '.';
|
|
8
6
|
import { DestinationRisks } from '.';
|
|
7
|
+
import { WeatherRisks } from '.';
|
|
9
8
|
import { SpecialRisks } from '.';
|
|
10
|
-
import {
|
|
9
|
+
import { Mitigation } from '.';
|
|
10
|
+
import { ColumnDef } 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,18 +1,18 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import { FlightTicket } from '.';
|
|
5
|
-
import { AnyKeyValue } from '.';
|
|
6
|
-
import { TimeSeries } from '.';
|
|
7
|
-
import { FlightPlan } from '.';
|
|
3
|
+
import { PreFlightInfo } from '.';
|
|
8
4
|
import { FlightStatusCode } from '.';
|
|
9
|
-
import { BillingStatusCode } from '.';
|
|
10
5
|
import { FlightPurposeCode } from '.';
|
|
11
|
-
import { PreFlightInfo } from '.';
|
|
12
6
|
import { Flight } from '.';
|
|
7
|
+
import { BillingStatusCode } from '.';
|
|
13
8
|
import { FlightTypeCode } from '.';
|
|
9
|
+
import { FlightTicket } from '.';
|
|
10
|
+
import { TimeSeries } from '.';
|
|
11
|
+
import { FlightPlan } from '.';
|
|
12
|
+
import { Point } from '.';
|
|
14
13
|
import { Contact } from '.';
|
|
15
14
|
import { PostFlightInfo } from '.';
|
|
15
|
+
import { AnyKeyValue } from '.';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
export declare class FlightsEndPoint {
|
|
18
18
|
private config;
|
package/lib/FlightsFilter.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { BillingStatusCode } from '.';
|
|
2
|
-
import { FlightPurposeCode } from '.';
|
|
3
1
|
import { TimeFrame } from '.';
|
|
4
2
|
import { FlightTypeCode } from '.';
|
|
5
3
|
import { FlightStatusCode } from '.';
|
|
4
|
+
import { BillingStatusCode } from '.';
|
|
5
|
+
import { FlightPurposeCode } 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 { Permission } from '.';
|
|
2
|
-
import { StringKeyValue } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { Permission } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
export declare class Group extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
email: string;
|
package/lib/Lead.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { Address } from '.';
|
|
4
2
|
import { LeadStatusCode } from '.';
|
|
5
3
|
import { FollowUpAction } from '.';
|
|
4
|
+
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 {
|
|
3
|
+
import { Booking } from '.';
|
|
4
4
|
import { Point } from '.';
|
|
5
|
+
import { Lead } from '.';
|
|
5
6
|
import { LeadStatusCode } from '.';
|
|
6
|
-
import {
|
|
7
|
+
import { TimeSeries } from '.';
|
|
8
|
+
import { LeadAction } from '.';
|
|
7
9
|
import { IntEnumValue } from '.';
|
|
8
10
|
import { IntKeyValue } from '.';
|
|
9
|
-
import { Lead } from '.';
|
|
10
|
-
import { TimeSeries } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class LeadsEndPoint {
|
|
13
13
|
private config;
|
package/lib/Lesson.d.ts
CHANGED
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 { Lookup } from '.';
|
|
4
3
|
import { LookupGroup } from '.';
|
|
4
|
+
import { Lookup } 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,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { StatusCode } from '.';
|
|
3
4
|
import { Maintenance } from '.';
|
|
4
5
|
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;
|
package/lib/MyAuthEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { LoginParams } from '.';
|
|
4
3
|
import { Contact } from '.';
|
|
4
|
+
import { LoginParams } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class MyAuthEndPoint {
|
|
7
7
|
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
|
-
import { BookingTypeFlag } from '.';
|
|
5
3
|
import { Lookup } from '.';
|
|
6
|
-
import { BookingStatusCode } from '.';
|
|
7
4
|
import { BookingSlot } from '.';
|
|
8
5
|
import { Airplane } from '.';
|
|
6
|
+
import { Booking } from '.';
|
|
7
|
+
import { BookingStatusCode } from '.';
|
|
8
|
+
import { BookingTypeFlag } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyBookingsEndPoint {
|
|
11
11
|
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 '.';
|
|
5
|
+
import { FlightStatusCode } from '.';
|
|
6
|
+
import { PreFlightInfo } from '.';
|
|
7
|
+
import { PostFlightInfo } from '.';
|
|
4
8
|
import { FlightPlan } from '.';
|
|
5
9
|
import { InstructionTypeCode } from '.';
|
|
6
10
|
import { Syllabus } from '.';
|
|
7
|
-
import { PreFlightInfo } from '.';
|
|
8
|
-
import { Flight } from '.';
|
|
9
|
-
import { FlightStatusCode } from '.';
|
|
10
|
-
import { PostFlightInfo } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class MyFlightsEndPoint {
|
|
13
13
|
private config;
|
|
@@ -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/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/SystemConfig.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { SystemMessage } from '.';
|
|
4
3
|
import { MessageTypeCode } from '.';
|
|
5
4
|
import { MessageConfirm } from '.';
|
|
5
|
+
import { SystemMessage } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SystemMessagesEndPoint {
|
|
8
8
|
private config;
|
|
@@ -6,7 +6,8 @@ export declare enum TransactionTypeCode {
|
|
|
6
6
|
PURCHASE = 3,
|
|
7
7
|
PAYMENT = 4,
|
|
8
8
|
BONUS = 5,
|
|
9
|
-
REFUND = 6
|
|
9
|
+
REFUND = 6,
|
|
10
|
+
RESET = 6
|
|
10
11
|
}
|
|
11
12
|
export declare function GetTransactionTypeCodes(): Tuple<TransactionTypeCode, string>[];
|
|
12
13
|
export declare function MapTransactionTypeCodes(): Map<TransactionTypeCode, string>;
|