@aya-flights/ngx-goox-lib 2.19.165 → 2.19.167
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 +4541 -4554
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +1 -1
- package/lib/AccountsEndPoint.d.ts +7 -7
- package/lib/Airplane.d.ts +3 -3
- package/lib/AirplanesEndPoint.d.ts +6 -6
- package/lib/AssessmentCode.d.ts +1 -5
- package/lib/AuditLog.d.ts +1 -1
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +2 -2
- 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 +5 -5
- package/lib/ContactsEndPoint.d.ts +5 -5
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +6 -6
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightPlan.d.ts +2 -2
- package/lib/FlightRisk.d.ts +4 -4
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightTicketsEndPoint.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +8 -8
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/LeadsEndPoint.d.ts +5 -5
- package/lib/Lesson.d.ts +1 -1
- package/lib/MessageConfirmsEndPoint.d.ts +2 -2
- package/lib/MyBookingsEndPoint.d.ts +3 -3
- package/lib/MyFlightsEndPoint.d.ts +5 -5
- package/lib/RiskAssessment.d.ts +3 -3
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/SystemConfig.d.ts +1 -1
- package/lib/SystemMessage.d.ts +1 -0
- package/lib/SystemMessagesEndPoint.d.ts +4 -0
- package/lib/User.d.ts +2 -2
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +119 -119
- package/lib/services.export.d.ts +24 -24
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { AccountTypeCode } from '.';
|
|
1
2
|
import { AccountStatusCode } from '.';
|
|
2
3
|
import { Address } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
5
|
import { ColumnDef } from '.';
|
|
5
|
-
import { AccountTypeCode } 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 { Account } from '.';
|
|
4
|
-
import { FlightTypeCode } from '.';
|
|
5
|
-
import { AccountStatusCode } from '.';
|
|
6
|
-
import { Credit } from '.';
|
|
7
|
-
import { Document } from '.';
|
|
8
3
|
import { StringKeyValue } from '.';
|
|
4
|
+
import { FlightStateCode } from '.';
|
|
5
|
+
import { Credit } from '.';
|
|
6
|
+
import { AccountTypeCode } from '.';
|
|
9
7
|
import { FlightPurposeCode } from '.';
|
|
10
8
|
import { Flight } from '.';
|
|
11
|
-
import {
|
|
9
|
+
import { FlightTypeCode } from '.';
|
|
10
|
+
import { Account } from '.';
|
|
11
|
+
import { Document } from '.';
|
|
12
12
|
import { FlightStatusCode } from '.';
|
|
13
|
-
import {
|
|
13
|
+
import { AccountStatusCode } 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 {
|
|
1
|
+
import { Magneto } from '.';
|
|
2
2
|
import { Propeller } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
3
4
|
import { Fuel } from '.';
|
|
4
5
|
import { WBConfig } from '.';
|
|
5
6
|
import { BaseEntityEx } from '.';
|
|
7
|
+
import { TypeRatingFlag } from '.';
|
|
6
8
|
import { AirplaneStatusCode } from '.';
|
|
7
9
|
import { AirplaneValidationFlag } from '.';
|
|
8
10
|
import { Engine } from '.';
|
|
9
|
-
import { Magneto } 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
|
-
import {
|
|
4
|
-
import { AirplaneStatusCode } from '.';
|
|
3
|
+
import { Maintenance } from '.';
|
|
5
4
|
import { StatusCode } from '.';
|
|
6
|
-
import { FlightTypeCode } from '.';
|
|
7
5
|
import { FlightStatusCode } from '.';
|
|
6
|
+
import { FlightStateCode } from '.';
|
|
8
7
|
import { FlightPurposeCode } from '.';
|
|
8
|
+
import { FlightTypeCode } from '.';
|
|
9
|
+
import { AirplaneStatusCode } from '.';
|
|
10
|
+
import { StringKeyValue } from '.';
|
|
9
11
|
import { Flight } from '.';
|
|
10
|
-
import { FlightStateCode } from '.';
|
|
11
12
|
import { Document } from '.';
|
|
12
|
-
import { Maintenance } from '.';
|
|
13
|
-
import { StringKeyValue } from '.';
|
|
14
13
|
import { MaintenanceActionCode } from '.';
|
|
14
|
+
import { Airplane } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
private config;
|
package/lib/AssessmentCode.d.ts
CHANGED
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
import { Tuple } from '.';
|
|
2
2
|
export declare enum AssessmentCode {
|
|
3
3
|
UNDEFINED = 0,
|
|
4
|
-
EXCELLENT = 1,
|
|
5
4
|
SATISFACTORY = 2,
|
|
6
|
-
BELOW_AVERAGE = 3,
|
|
7
5
|
UNSATISFACTORY = 4,
|
|
8
|
-
INCOMPLETE = 5
|
|
9
|
-
REPEAT = 6,
|
|
10
|
-
DEMO = 7
|
|
6
|
+
INCOMPLETE = 5
|
|
11
7
|
}
|
|
12
8
|
export declare function GetAssessmentCodes(): Tuple<AssessmentCode, string>[];
|
|
13
9
|
export declare function MapAssessmentCodes(): Map<AssessmentCode, string>;
|
package/lib/AuditLog.d.ts
CHANGED
package/lib/BookingSlots.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/BookingsFilter.d.ts
CHANGED
package/lib/Campaign.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
1
3
|
import { CampaignTypeCode } from '.';
|
|
2
4
|
import { CampaignStatusCode } from '.';
|
|
3
5
|
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 '.';
|
|
1
2
|
import { ColumnDef } from '.';
|
|
2
3
|
import { ValidationFlag } from '.';
|
|
3
4
|
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,12 +1,12 @@
|
|
|
1
|
+
import { AccountStatusCode } from '.';
|
|
1
2
|
import { TypeRatingFlag } from '.';
|
|
2
|
-
import { LicenseKindFlag } from '.';
|
|
3
3
|
import { MedicalCertClassCode } from '.';
|
|
4
|
-
import {
|
|
5
|
-
import { BaseEntityEx } from '.';
|
|
4
|
+
import { FlightCategoryCode } from '.';
|
|
6
5
|
import { ColumnDef } from '.';
|
|
7
|
-
import { AccountStatusCode } from '.';
|
|
8
6
|
import { Address } from '.';
|
|
9
|
-
import {
|
|
7
|
+
import { LicenseKindFlag } from '.';
|
|
8
|
+
import { ValidationFlag } from '.';
|
|
9
|
+
import { BaseEntityEx } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
11
11
|
accountId: string;
|
|
12
12
|
name: string;
|
|
@@ -2,13 +2,13 @@ import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../u
|
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { StringKeyValue } from '.';
|
|
4
4
|
import { FlightTypeCode } from '.';
|
|
5
|
-
import {
|
|
6
|
-
import { Flight } from '.';
|
|
7
|
-
import { Contact } from '.';
|
|
5
|
+
import { FlightStateCode } from '.';
|
|
8
6
|
import { StatusCode } from '.';
|
|
9
|
-
import { FlightPurposeCode } from '.';
|
|
10
7
|
import { Certificate } from '.';
|
|
11
|
-
import {
|
|
8
|
+
import { FlightPurposeCode } from '.';
|
|
9
|
+
import { Flight } from '.';
|
|
10
|
+
import { FlightStatusCode } from '.';
|
|
11
|
+
import { Contact } from '.';
|
|
12
12
|
import { MessageConfirm } from '.';
|
|
13
13
|
import { Document } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
package/lib/Document.d.ts
CHANGED
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { FlightTypeCode } from '.';
|
|
3
|
-
import { FlightStatusCode } from '.';
|
|
1
|
+
import { FlightCategoryCode } from '.';
|
|
4
2
|
import { BillingStatusCode } from '.';
|
|
5
3
|
import { TOLData } from '.';
|
|
6
|
-
import { ColumnDef } from '.';
|
|
7
|
-
import { FlightPurposeCode } from '.';
|
|
8
|
-
import { FlightCategoryCode } from '.';
|
|
9
4
|
import { Lesson } from '.';
|
|
10
5
|
import { RiskAssessment } from '.';
|
|
11
6
|
import { BaseEntityEx } from '.';
|
|
7
|
+
import { FlightClassCode } from '.';
|
|
8
|
+
import { FlightTypeCode } from '.';
|
|
9
|
+
import { FlightStatusCode } from '.';
|
|
10
|
+
import { ColumnDef } from '.';
|
|
11
|
+
import { FlightPurposeCode } 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 { FlightStateCode } from '.';
|
|
2
|
+
import { FlightPurposeCode } from '.';
|
|
1
3
|
import { TOLData } from '.';
|
|
2
4
|
import { BaseEntityEx } from '.';
|
|
3
5
|
import { ColumnDef } from '.';
|
|
4
6
|
import { FlightTypeCode } from '.';
|
|
5
7
|
import { FlightStatusCode } from '.';
|
|
6
|
-
import { FlightStateCode } from '.';
|
|
7
|
-
import { FlightPurposeCode } 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 { DepartureRisks } from '.';
|
|
1
2
|
import { TripRisks } from '.';
|
|
2
3
|
import { WeatherRisks } from '.';
|
|
3
|
-
import {
|
|
4
|
+
import { PilotQualificationsRisks } from '.';
|
|
4
5
|
import { CrewDutyDayRisks } from '.';
|
|
5
|
-
import { DepartureRisks } from '.';
|
|
6
6
|
import { DestinationRisks } from '.';
|
|
7
|
-
import { ColumnDef } from '.';
|
|
8
|
-
import { PilotQualificationsRisks } from '.';
|
|
9
7
|
import { SpecialRisks } from '.';
|
|
10
8
|
import { Mitigation } from '.';
|
|
9
|
+
import { BaseEntityEx } from '.';
|
|
10
|
+
import { ColumnDef } 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 { 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 { BillingStatusCode } from '.';
|
|
3
4
|
import { TimeSeries } from '.';
|
|
4
|
-
import { Point } from '.';
|
|
5
|
-
import { Flight } from '.';
|
|
6
|
-
import { FlightTypeCode } from '.';
|
|
7
5
|
import { FlightPlan } from '.';
|
|
6
|
+
import { Contact } from '.';
|
|
8
7
|
import { AnyKeyValue } from '.';
|
|
8
|
+
import { FlightTypeCode } from '.';
|
|
9
9
|
import { FlightStatusCode } from '.';
|
|
10
|
-
import {
|
|
11
|
-
import { FlightPurposeCode } from '.';
|
|
12
|
-
import { Contact } from '.';
|
|
13
|
-
import { FlightTicket } from '.';
|
|
14
|
-
import { PreFlightInfo } from '.';
|
|
10
|
+
import { Point } from '.';
|
|
15
11
|
import { PostFlightInfo } from '.';
|
|
12
|
+
import { PreFlightInfo } from '.';
|
|
13
|
+
import { FlightTicket } from '.';
|
|
14
|
+
import { Flight } from '.';
|
|
15
|
+
import { FlightPurposeCode } 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/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,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { IntKeyValue } from '.';
|
|
4
3
|
import { LeadStatusCode } from '.';
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
4
|
+
import { TimeSeries } from '.';
|
|
5
|
+
import { IntKeyValue } from '.';
|
|
6
|
+
import { Lead } from '.';
|
|
7
7
|
import { LeadAction } from '.';
|
|
8
8
|
import { Booking } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
9
|
+
import { Point } from '.';
|
|
10
|
+
import { IntEnumValue } 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
|
@@ -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 { Lookup } from '.';
|
|
4
|
-
import { Airplane } from '.';
|
|
5
3
|
import { Booking } from '.';
|
|
6
|
-
import { BookingStatusCode } from '.';
|
|
7
4
|
import { BookingTypeFlag } from '.';
|
|
5
|
+
import { BookingStatusCode } from '.';
|
|
6
|
+
import { Lookup } from '.';
|
|
8
7
|
import { BookingSlot } from '.';
|
|
8
|
+
import { Airplane } 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 {
|
|
3
|
+
import { Flight } from '.';
|
|
4
4
|
import { FlightTypeCode } from '.';
|
|
5
|
-
import { FlightStatusCode } from '.';
|
|
6
|
-
import { InstructionTypeCode } from '.';
|
|
7
5
|
import { PreFlightInfo } from '.';
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
6
|
+
import { PostFlightInfo } from '.';
|
|
7
|
+
import { InstructionTypeCode } from '.';
|
|
10
8
|
import { Syllabus } 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;
|
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { WeatherRisks } from '.';
|
|
2
|
-
import { SpecialRisks } from '.';
|
|
3
|
-
import { Mitigation } from '.';
|
|
4
1
|
import { PilotQualificationsRisks } from '.';
|
|
5
2
|
import { CrewDutyDayRisks } from '.';
|
|
6
3
|
import { DepartureRisks } from '.';
|
|
7
4
|
import { DestinationRisks } from '.';
|
|
8
5
|
import { TripRisks } from '.';
|
|
6
|
+
import { WeatherRisks } from '.';
|
|
7
|
+
import { SpecialRisks } from '.';
|
|
8
|
+
import { Mitigation } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightCategoryCode } from '.';
|
|
4
3
|
import { InstructionTypeCode } from '.';
|
|
5
4
|
import { Syllabus } from '.';
|
|
5
|
+
import { FlightCategoryCode } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SyllabusEndPoint {
|
|
8
8
|
private config;
|
package/lib/SystemConfig.d.ts
CHANGED
package/lib/SystemMessage.d.ts
CHANGED
|
@@ -37,6 +37,10 @@ export declare class SystemMessagesEndPoint {
|
|
|
37
37
|
* Find message confirmations
|
|
38
38
|
*/
|
|
39
39
|
findConfirms(id?: string, search?: string, sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<MessageConfirm>>;
|
|
40
|
+
/**
|
|
41
|
+
* Publish message to all relevant contacts
|
|
42
|
+
*/
|
|
43
|
+
publish(id?: string): import("rxjs").Observable<ActionResponse>;
|
|
40
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<SystemMessagesEndPoint, never>;
|
|
41
45
|
static ɵprov: i0.ɵɵInjectableDeclaration<SystemMessagesEndPoint>;
|
|
42
46
|
}
|
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { UserRoleFlag } from '.';
|
|
2
|
+
import { UserStatusCode } from '.';
|
|
1
3
|
import { BaseEntityEx } from '.';
|
|
2
4
|
import { ColumnDef } from '.';
|
|
3
5
|
import { UserTypeCode } from '.';
|
|
4
|
-
import { UserRoleFlag } from '.';
|
|
5
|
-
import { UserStatusCode } 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 { StringKeyValue } from '.';
|
|
3
4
|
import { User } from '.';
|
|
4
5
|
import { UserTypeCode } from '.';
|
|
5
6
|
import { UserStatusCode } from '.';
|
|
6
|
-
import { StringKeyValue } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class UsersEndPoint {
|
|
9
9
|
private config;
|