@aya-flights/ngx-goox-lib 2.18.57 → 2.18.60
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/esm2022/lib/Account.mjs +1 -1
- package/esm2022/lib/AccountsEndPoint.mjs +1 -1
- package/esm2022/lib/Airplane.mjs +1 -1
- package/esm2022/lib/AirplanesEndPoint.mjs +1 -1
- package/esm2022/lib/AuditLogsEndPoint.mjs +1 -1
- package/esm2022/lib/Booking.mjs +2 -2
- package/esm2022/lib/BookingPlan.mjs +1 -1
- package/esm2022/lib/BookingSlots.mjs +1 -1
- package/esm2022/lib/BookingsFilter.mjs +1 -1
- package/esm2022/lib/Campaign.mjs +1 -1
- package/esm2022/lib/CampaignsEndPoint.mjs +1 -1
- package/esm2022/lib/Certificate.mjs +2 -2
- package/esm2022/lib/Contact.mjs +2 -2
- package/esm2022/lib/ContactsEndPoint.mjs +1 -1
- package/esm2022/lib/Credit.mjs +1 -1
- package/esm2022/lib/CreditsFilter.mjs +1 -1
- package/esm2022/lib/Document.mjs +1 -1
- package/esm2022/lib/Enums.mjs +235 -235
- package/esm2022/lib/Flight.mjs +1 -1
- package/esm2022/lib/FlightBilling.mjs +2 -2
- package/esm2022/lib/FlightRisk.mjs +1 -1
- package/esm2022/lib/FlightsEndPoint.mjs +1 -1
- package/esm2022/lib/GroupsEndPoint.mjs +1 -1
- package/esm2022/lib/Lookup.mjs +2 -2
- package/esm2022/lib/MessageConfirm.mjs +2 -2
- package/esm2022/lib/MyBookingsEndPoint.mjs +1 -1
- package/esm2022/lib/PostFlightData.mjs +1 -1
- package/esm2022/lib/PreFlightData.mjs +2 -2
- package/esm2022/lib/Price.mjs +1 -1
- package/esm2022/lib/RiskAssessment.mjs +1 -1
- package/esm2022/lib/Syllabus.mjs +2 -2
- package/esm2022/lib/SyllabusEndPoint.mjs +5 -2
- package/esm2022/lib/SyllabusFilter.mjs +15 -0
- package/esm2022/lib/SystemMessage.mjs +1 -1
- package/esm2022/lib/User.mjs +1 -1
- package/esm2022/lib/UsersEndPoint.mjs +1 -1
- package/esm2022/lib/UsersFilter.mjs +1 -1
- package/esm2022/lib/index.mjs +115 -114
- package/esm2022/lib/services.export.mjs +37 -37
- package/fesm2022/aya-flights-ngx-goox-lib.mjs +4857 -4839
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +1 -1
- package/lib/AccountsEndPoint.d.ts +1 -1
- package/lib/Airplane.d.ts +4 -4
- package/lib/AirplanesEndPoint.d.ts +1 -1
- 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/BookingsFilter.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/Contact.d.ts +1 -1
- package/lib/ContactsEndPoint.d.ts +2 -2
- package/lib/Credit.d.ts +2 -2
- package/lib/CreditsFilter.d.ts +1 -1
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +9 -9
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightRisk.d.ts +6 -6
- package/lib/FlightsEndPoint.d.ts +6 -6
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/Lookup.d.ts +1 -1
- package/lib/MessageConfirm.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +1 -1
- package/lib/PostFlightData.d.ts +2 -2
- package/lib/PreFlightData.d.ts +3 -3
- package/lib/Price.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +4 -4
- package/lib/Syllabus.d.ts +1 -1
- package/lib/SyllabusEndPoint.d.ts +1 -2
- package/lib/SyllabusFilter.d.ts +8 -0
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/UsersFilter.d.ts +1 -1
- package/lib/index.d.ts +114 -113
- package/lib/services.export.d.ts +19 -19
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { AccountStatusCode } from '.';
|
|
1
2
|
import { Address } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
4
|
import { ColumnDef } from '.';
|
|
4
|
-
import { AccountStatusCode } from '.';
|
|
5
5
|
export declare class Account extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
enName: string;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { StringKeyValue } from '.';
|
|
4
|
+
import { Account } from '.';
|
|
4
5
|
import { Flight } from '.';
|
|
5
6
|
import { Credit } from '.';
|
|
6
|
-
import { Account } from '.';
|
|
7
7
|
import { Document } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AccountsEndPoint {
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { AirplaneStatusCode } from '.';
|
|
2
|
-
import { AirplaneValidationFlag } from '.';
|
|
3
|
-
import { Engine } from '.';
|
|
4
|
-
import { Magneto } from '.';
|
|
5
1
|
import { Propeller } from '.';
|
|
6
2
|
import { Fuel } from '.';
|
|
7
3
|
import { BaseEntityEx } from '.';
|
|
8
4
|
import { ColumnDef } from '.';
|
|
5
|
+
import { AirplaneStatusCode } from '.';
|
|
6
|
+
import { AirplaneValidationFlag } from '.';
|
|
7
|
+
import { Engine } from '.';
|
|
8
|
+
import { Magneto } from '.';
|
|
9
9
|
export declare class Airplane extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Airplane } from '.';
|
|
4
3
|
import { StringKeyValue } from '.';
|
|
5
4
|
import { Flight } from '.';
|
|
6
5
|
import { Document } from '.';
|
|
7
6
|
import { Maintenance } from '.';
|
|
7
|
+
import { Airplane } from '.';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AirplanesEndPoint {
|
|
10
10
|
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 '.';
|
|
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 { 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
package/lib/BookingsFilter.d.ts
CHANGED
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 { BaseEntityEx } from '.';
|
|
2
1
|
import { ColumnDef } from '.';
|
|
3
2
|
import { ValidationFlag } from '.';
|
|
4
3
|
import { StatusCode } from '.';
|
|
4
|
+
import { BaseEntityEx } from '.';
|
|
5
5
|
export declare class Certificate extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
type: ValidationFlag;
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { AccountStatusCode } from '.';
|
|
2
3
|
import { Address } from '.';
|
|
3
4
|
import { ValidationFlag } from '.';
|
|
4
5
|
import { FlightCategoryCode } from '.';
|
|
5
6
|
import { BaseEntityEx } from '.';
|
|
6
|
-
import { ColumnDef } from '.';
|
|
7
7
|
export declare class Contact extends BaseEntityEx {
|
|
8
8
|
accountId: string;
|
|
9
9
|
name: string;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { Contact } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
|
+
import { Certificate } from '.';
|
|
4
6
|
import { Flight } from '.';
|
|
5
7
|
import { MessageConfirm } from '.';
|
|
6
8
|
import { Document } from '.';
|
|
7
|
-
import { StringKeyValue } from '.';
|
|
8
|
-
import { Certificate } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class ContactsEndPoint {
|
|
11
11
|
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;
|
package/lib/CreditsFilter.d.ts
CHANGED
package/lib/Document.d.ts
CHANGED
package/lib/Flight.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { FlightStateCode } from '.';
|
|
2
|
-
import { OnBoard } from '.';
|
|
3
|
-
import { FlightClassCode } from '.';
|
|
4
1
|
import { FlightTypeCode } from '.';
|
|
5
|
-
import {
|
|
6
|
-
import { ReFuel } from '.';
|
|
2
|
+
import { OnBoard } from '.';
|
|
7
3
|
import { Lesson } from '.';
|
|
4
|
+
import { Billing } from '.';
|
|
5
|
+
import { FlightClassCode } from '.';
|
|
6
|
+
import { BillingStatusCode } from '.';
|
|
8
7
|
import { ColumnDef } from '.';
|
|
9
8
|
import { FlightPurposeCode } from '.';
|
|
10
9
|
import { FlightCategoryCode } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import { TOLData } from '.';
|
|
14
|
-
import { Billing } from '.';
|
|
10
|
+
import { FlightStateCode } from '.';
|
|
11
|
+
import { ReFuel } from '.';
|
|
15
12
|
import { BaseEntityEx } from '.';
|
|
13
|
+
import { FlightStatusCode } from '.';
|
|
14
|
+
import { TOLData } from '.';
|
|
15
|
+
import { RiskAssessment } from '.';
|
|
16
16
|
export declare class Flight extends BaseEntityEx {
|
|
17
17
|
name: string;
|
|
18
18
|
description: string;
|
package/lib/FlightBilling.d.ts
CHANGED
package/lib/FlightRisk.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { CrewDutyDayRisks } from '.';
|
|
3
|
-
import { DepartureRisks } from '.';
|
|
1
|
+
import { TripRisks } from '.';
|
|
4
2
|
import { WeatherRisks } from '.';
|
|
5
|
-
import { SpecialRisks } from '.';
|
|
6
3
|
import { Mitigation } from '.';
|
|
7
|
-
import {
|
|
4
|
+
import { BaseEntityEx } from '.';
|
|
5
|
+
import { DepartureRisks } from '.';
|
|
8
6
|
import { DestinationRisks } from '.';
|
|
9
|
-
import {
|
|
7
|
+
import { SpecialRisks } from '.';
|
|
10
8
|
import { ColumnDef } from '.';
|
|
9
|
+
import { PilotQualificationsRisks } from '.';
|
|
10
|
+
import { CrewDutyDayRisks } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/FlightsEndPoint.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { AnyKeyValue } from '.';
|
|
4
|
-
import { PreFlightInfo } from '.';
|
|
5
|
-
import { PostFlightInfo } from '.';
|
|
6
|
-
import { Contact } from '.';
|
|
7
|
-
import { FlightTicket } from '.';
|
|
8
3
|
import { TimeSeries } from '.';
|
|
9
|
-
import {
|
|
4
|
+
import { FlightTicket } from '.';
|
|
10
5
|
import { Flight } from '.';
|
|
6
|
+
import { FlightPlan } from '.';
|
|
7
|
+
import { Contact } from '.';
|
|
8
|
+
import { PreFlightInfo } from '.';
|
|
9
|
+
import { AnyKeyValue } from '.';
|
|
10
|
+
import { PostFlightInfo } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class FlightsEndPoint {
|
|
13
13
|
private config;
|
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 { StringKeyValue } from '.';
|
|
4
3
|
import { Group } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class GroupsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Lookup.d.ts
CHANGED
package/lib/MessageConfirm.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { ConfirmStatusCode } from '.';
|
|
3
2
|
import { MessageTypeCode } from '.';
|
|
4
3
|
import { PriorityCode } from '.';
|
|
5
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,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { BookingTypeFlag } from '.';
|
|
3
4
|
import { BookingSlots } from '.';
|
|
4
5
|
import { Booking } from '.';
|
|
5
|
-
import { BookingTypeFlag } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class MyBookingsEndPoint {
|
|
8
8
|
private config;
|
package/lib/PostFlightData.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import { TOLData } from '.';
|
|
2
|
+
import { ReFuel } from '.';
|
|
1
3
|
import { Lesson } from '.';
|
|
2
4
|
import { BaseEntityEx } from '.';
|
|
3
5
|
import { ColumnDef } from '.';
|
|
4
6
|
import { FlightTypeCode } from '.';
|
|
5
7
|
import { FlightPurposeCode } from '.';
|
|
6
8
|
import { OnBoard } from '.';
|
|
7
|
-
import { TOLData } from '.';
|
|
8
|
-
import { ReFuel } from '.';
|
|
9
9
|
export declare class PostFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/PreFlightData.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import { ReFuel } from '.';
|
|
2
|
+
import { Lesson } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
1
4
|
import { ColumnDef } from '.';
|
|
2
5
|
import { FlightTypeCode } from '.';
|
|
3
6
|
import { FlightPurposeCode } from '.';
|
|
4
7
|
import { OnBoard } from '.';
|
|
5
8
|
import { TOLData } from '.';
|
|
6
|
-
import { ReFuel } from '.';
|
|
7
|
-
import { Lesson } from '.';
|
|
8
|
-
import { BaseEntityEx } from '.';
|
|
9
9
|
export declare class PreFlightData extends BaseEntityEx {
|
|
10
10
|
name: string;
|
|
11
11
|
description: string;
|
package/lib/Price.d.ts
CHANGED
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { PilotQualificationsRisks } from '.';
|
|
2
|
-
import { CrewDutyDayRisks } from '.';
|
|
3
|
-
import { DepartureRisks } from '.';
|
|
4
|
-
import { DestinationRisks } from '.';
|
|
5
1
|
import { TripRisks } from '.';
|
|
6
2
|
import { WeatherRisks } from '.';
|
|
7
3
|
import { SpecialRisks } from '.';
|
|
8
4
|
import { Mitigation } from '.';
|
|
5
|
+
import { PilotQualificationsRisks } from '.';
|
|
6
|
+
import { CrewDutyDayRisks } from '.';
|
|
7
|
+
import { DepartureRisks } from '.';
|
|
8
|
+
import { DestinationRisks } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/Syllabus.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { InstructionTypeCode } from '.';
|
|
|
3
3
|
import { BaseEntityEx } from '.';
|
|
4
4
|
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Syllabus extends BaseEntityEx {
|
|
6
|
-
|
|
6
|
+
plan: FlightCategoryCode;
|
|
7
7
|
type: InstructionTypeCode;
|
|
8
8
|
seq: string;
|
|
9
9
|
num: number;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightCategoryCode } from '.';
|
|
4
3
|
import { Syllabus } from '.';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
5
|
export declare class SyllabusEndPoint {
|
|
@@ -31,7 +30,7 @@ export declare class SyllabusEndPoint {
|
|
|
31
30
|
/**
|
|
32
31
|
* Find Syllabus topics by query
|
|
33
32
|
*/
|
|
34
|
-
find(plan?:
|
|
33
|
+
find(plan?: [], type?: [], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Syllabus>>;
|
|
35
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<SyllabusEndPoint, never>;
|
|
36
35
|
static ɵprov: i0.ɵɵInjectableDeclaration<SyllabusEndPoint>;
|
|
37
36
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { FlightCategoryCode } from '.';
|
|
2
|
+
import { InstructionTypeCode } from '.';
|
|
3
|
+
export declare class SyllabusFilter {
|
|
4
|
+
search: string;
|
|
5
|
+
plan: FlightCategoryCode[];
|
|
6
|
+
type: InstructionTypeCode[];
|
|
7
|
+
constructor(search?: string, plan?: FlightCategoryCode[], type?: InstructionTypeCode[]);
|
|
8
|
+
}
|
package/lib/SystemMessage.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { MessageTypeCode } from '.';
|
|
1
2
|
import { PriorityCode } from '.';
|
|
2
3
|
import { BaseEntityEx } from '.';
|
|
3
4
|
import { ColumnDef } from '.';
|
|
4
|
-
import { MessageTypeCode } from '.';
|
|
5
5
|
export declare class SystemMessage extends BaseEntityEx {
|
|
6
6
|
subject: string;
|
|
7
7
|
description: string;
|
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
1
3
|
import { UserTypeCode } from '.';
|
|
2
4
|
import { UserRoleFlag } from '.';
|
|
3
5
|
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,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 { User } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class UsersEndPoint {
|
|
7
7
|
private config;
|