@aya-flights/ngx-goox-lib 2.19.91 → 2.19.93
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 +4961 -4951
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +1 -1
- package/lib/AccountsEndPoint.d.ts +5 -5
- package/lib/Airplane.d.ts +5 -5
- package/lib/AirplanesEndPoint.d.ts +6 -6
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +5 -1
- package/lib/BookingsEndPoint.d.ts +1 -1
- package/lib/BookingsFilter.d.ts +1 -1
- package/lib/Certificate.d.ts +1 -1
- package/lib/Contact.d.ts +5 -5
- package/lib/ContactsEndPoint.d.ts +6 -6
- package/lib/Flight.d.ts +9 -9
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightRisk.d.ts +7 -7
- 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 +1 -1
- package/lib/Group.d.ts +2 -2
- package/lib/LeadAction.d.ts +1 -1
- package/lib/Maintenance.d.ts +2 -2
- package/lib/MaintenancesFilter.d.ts +1 -1
- package/lib/MessageConfirm.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +1 -1
- package/lib/PostFlightData.d.ts +1 -1
- package/lib/PreFlightData.d.ts +2 -2
- package/lib/RiskAssessment.d.ts +2 -2
- package/lib/Syllabus.d.ts +2 -2
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/UserEndPoint.d.ts +1 -1
- package/lib/index.d.ts +119 -119
- package/lib/services.export.d.ts +21 -21
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { AccountTypeCode } from '.';
|
|
2
1
|
import { AccountStatusCode } from '.';
|
|
3
2
|
import { Address } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
5
4
|
import { ColumnDef } from '.';
|
|
5
|
+
import { AccountTypeCode } from '.';
|
|
6
6
|
export declare class Account extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
enName: string;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
3
|
+
import { FlightStateCode } from '.';
|
|
5
4
|
import { Flight } from '.';
|
|
6
|
-
import { Credit } from '.';
|
|
7
5
|
import { StringKeyValue } from '.';
|
|
8
6
|
import { FlightTypeCode } from '.';
|
|
7
|
+
import { FlightStatusCode } from '.';
|
|
8
|
+
import { Credit } from '.';
|
|
9
|
+
import { Document } from '.';
|
|
9
10
|
import { AccountStatusCode } from '.';
|
|
10
|
-
import { FlightStateCode } from '.';
|
|
11
|
-
import { FlightPurposeCode } from '.';
|
|
12
11
|
import { Account } from '.';
|
|
12
|
+
import { FlightPurposeCode } from '.';
|
|
13
13
|
import * as i0 from "@angular/core";
|
|
14
14
|
export declare class AccountsEndPoint {
|
|
15
15
|
private config;
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { TypeRatingFlag } from '.';
|
|
2
|
-
import { Engine } from '.';
|
|
3
|
-
import { Fuel } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
3
|
import { AirplaneStatusCode } from '.';
|
|
6
4
|
import { AirplaneValidationFlag } from '.';
|
|
7
|
-
import { Magneto } from '.';
|
|
8
5
|
import { Propeller } from '.';
|
|
9
|
-
import {
|
|
6
|
+
import { Fuel } from '.';
|
|
7
|
+
import { Engine } from '.';
|
|
8
|
+
import { Magneto } from '.';
|
|
9
|
+
import { BaseEntityEx } from '.';
|
|
10
10
|
export declare class Airplane extends BaseEntityEx {
|
|
11
11
|
name: string;
|
|
12
12
|
description: string;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { Airplane } from '.';
|
|
4
|
-
import {
|
|
4
|
+
import { MaintenanceActionCode } from '.';
|
|
5
|
+
import { StringKeyValue } from '.';
|
|
6
|
+
import { FlightTypeCode } from '.';
|
|
7
|
+
import { FlightStateCode } from '.';
|
|
5
8
|
import { FlightPurposeCode } from '.';
|
|
6
9
|
import { Flight } from '.';
|
|
7
10
|
import { Document } from '.';
|
|
11
|
+
import { StatusCode } from '.';
|
|
8
12
|
import { Maintenance } from '.';
|
|
9
13
|
import { AirplaneStatusCode } from '.';
|
|
10
|
-
import {
|
|
11
|
-
import { FlightTypeCode } from '.';
|
|
12
|
-
import { MaintenanceActionCode } from '.';
|
|
13
|
-
import { FlightStateCode } from '.';
|
|
14
|
-
import { StatusCode } from '.';
|
|
14
|
+
import { FlightStatusCode } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
private config;
|
package/lib/Booking.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
1
|
import { ColumnDef } from '.';
|
|
3
2
|
import { BookingTypeFlag } from '.';
|
|
4
3
|
import { BookingStatusCode } from '.';
|
|
4
|
+
import { BaseEntityEx } from '.';
|
|
5
5
|
export declare class Booking extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
accountId: string;
|
|
@@ -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;
|
|
@@ -53,6 +53,10 @@ export declare class BookingSlotsEndPoint {
|
|
|
53
53
|
* UnPublish slots (make visible slots to invisible)
|
|
54
54
|
*/
|
|
55
55
|
unPublish(id?: string[]): import("rxjs").Observable<ActionResponse>;
|
|
56
|
+
/**
|
|
57
|
+
* Unbook slot will remove the booking item related to this slot, but if it is related to a flight, it will return an error
|
|
58
|
+
*/
|
|
59
|
+
unBook(id?: string): import("rxjs").Observable<ActionResponse>;
|
|
56
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<BookingSlotsEndPoint, never>;
|
|
57
61
|
static ɵprov: i0.ɵɵInjectableDeclaration<BookingSlotsEndPoint>;
|
|
58
62
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { BookingPlan } from '.';
|
|
3
4
|
import { Booking } from '.';
|
|
4
5
|
import { BookingStatusCode } from '.';
|
|
5
6
|
import { TimeSeries } from '.';
|
|
6
|
-
import { BookingPlan } 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/Certificate.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { StatusCode } from '.';
|
|
2
1
|
import { BaseEntityEx } from '.';
|
|
3
2
|
import { ColumnDef } from '.';
|
|
4
3
|
import { ValidationFlag } from '.';
|
|
4
|
+
import { StatusCode } 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 { MedicalCertClassCode } from '.';
|
|
3
|
-
import { ValidationFlag } from '.';
|
|
4
1
|
import { AccountStatusCode } from '.';
|
|
2
|
+
import { Address } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
import { TypeRatingFlag } from '.';
|
|
6
6
|
import { LicenseKindFlag } from '.';
|
|
7
|
+
import { MedicalCertClassCode } from '.';
|
|
8
|
+
import { ValidationFlag } from '.';
|
|
7
9
|
import { FlightCategoryCode } from '.';
|
|
8
|
-
import { BaseEntityEx } 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 {
|
|
4
|
-
import {
|
|
3
|
+
import { FlightStateCode } from '.';
|
|
4
|
+
import { FlightPurposeCode } from '.';
|
|
5
5
|
import { Contact } from '.';
|
|
6
|
-
import { Flight } from '.';
|
|
7
6
|
import { StringKeyValue } from '.';
|
|
8
7
|
import { Certificate } from '.';
|
|
9
|
-
import {
|
|
8
|
+
import { FlightStatusCode } from '.';
|
|
9
|
+
import { StatusCode } from '.';
|
|
10
10
|
import { MessageConfirm } from '.';
|
|
11
|
+
import { FlightTypeCode } from '.';
|
|
12
|
+
import { Flight } from '.';
|
|
11
13
|
import { Document } from '.';
|
|
12
|
-
import { FlightStatusCode } from '.';
|
|
13
|
-
import { FlightStateCode } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
|
16
16
|
private config;
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { ReFuel } from '.';
|
|
2
|
-
import { RiskAssessment } from '.';
|
|
3
|
-
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
|
-
import { FlightCategoryCode } from '.';
|
|
6
|
-
import { FlightTypeCode } from '.';
|
|
7
1
|
import { FlightStateCode } from '.';
|
|
8
|
-
import { BillingStatusCode } from '.';
|
|
9
|
-
import { FlightClassCode } from '.';
|
|
10
|
-
import { TOLData } from '.';
|
|
11
2
|
import { Lesson } from '.';
|
|
12
3
|
import { Billing } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
13
5
|
import { FlightPurposeCode } from '.';
|
|
6
|
+
import { FlightCategoryCode } from '.';
|
|
7
|
+
import { TOLData } from '.';
|
|
8
|
+
import { BillingStatusCode } from '.';
|
|
14
9
|
import { OnBoard } from '.';
|
|
10
|
+
import { ReFuel } from '.';
|
|
11
|
+
import { FlightClassCode } from '.';
|
|
12
|
+
import { FlightTypeCode } from '.';
|
|
15
13
|
import { FlightStatusCode } from '.';
|
|
14
|
+
import { RiskAssessment } from '.';
|
|
15
|
+
import { BaseEntityEx } 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 { DestinationRisks } from '.';
|
|
3
|
-
import { TripRisks } from '.';
|
|
4
|
-
import { WeatherRisks } from '.';
|
|
1
|
+
import { Mitigation } from '.';
|
|
5
2
|
import { BaseEntityEx } from '.';
|
|
6
|
-
import {
|
|
3
|
+
import { ColumnDef } from '.';
|
|
7
4
|
import { DepartureRisks } from '.';
|
|
5
|
+
import { DestinationRisks } from '.';
|
|
6
|
+
import { TripRisks } from '.';
|
|
8
7
|
import { SpecialRisks } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
8
|
+
import { PilotQualificationsRisks } from '.';
|
|
9
|
+
import { CrewDutyDayRisks } from '.';
|
|
10
|
+
import { WeatherRisks } 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 { FlightPurposeCode } from '.';
|
|
5
|
-
import { FlightPlan } from '.';
|
|
6
|
-
import { FlightTicket } from '.';
|
|
7
|
-
import { PreFlightInfo } from '.';
|
|
3
|
+
import { TimeSeries } from '.';
|
|
8
4
|
import { PostFlightInfo } from '.';
|
|
9
5
|
import { AnyKeyValue } from '.';
|
|
10
|
-
import { FlightTypeCode } from '.';
|
|
11
|
-
import { FlightStatusCode } from '.';
|
|
12
6
|
import { Contact } from '.';
|
|
7
|
+
import { FlightTicket } from '.';
|
|
8
|
+
import { FlightStatusCode } from '.';
|
|
13
9
|
import { Flight } from '.';
|
|
14
|
-
import {
|
|
10
|
+
import { FlightTypeCode } from '.';
|
|
11
|
+
import { BillingStatusCode } from '.';
|
|
12
|
+
import { FlightPurposeCode } from '.';
|
|
13
|
+
import { FlightPlan } from '.';
|
|
14
|
+
import { PreFlightInfo } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class FlightsEndPoint {
|
|
17
17
|
private config;
|
package/lib/FlightsFilter.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { TimeFrame } from '.';
|
|
2
1
|
import { FlightTypeCode } from '.';
|
|
3
2
|
import { FlightStatusCode } from '.';
|
|
4
3
|
import { BillingStatusCode } from '.';
|
|
5
4
|
import { FlightPurposeCode } from '.';
|
|
5
|
+
import { TimeFrame } 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 { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { Permission } from '.';
|
|
4
2
|
import { StringKeyValue } from '.';
|
|
3
|
+
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Group extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
email: string;
|
package/lib/LeadAction.d.ts
CHANGED
package/lib/Maintenance.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
|
-
import { ColumnDef } from '.';
|
|
3
1
|
import { StatusCode } from '.';
|
|
4
2
|
import { MaintenanceActionCode } from '.';
|
|
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 { 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,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { Flight } from '.';
|
|
4
|
-
import { FlightPlan } from '.';
|
|
5
4
|
import { FlightTypeCode } from '.';
|
|
6
5
|
import { FlightStatusCode } from '.';
|
|
6
|
+
import { FlightPlan } from '.';
|
|
7
7
|
import { PreFlightInfo } from '.';
|
|
8
8
|
import { PostFlightInfo } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
package/lib/PostFlightData.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { FlightTypeCode } from '.';
|
|
3
2
|
import { FlightPurposeCode } from '.';
|
|
4
3
|
import { OnBoard } from '.';
|
|
@@ -6,6 +5,7 @@ import { TOLData } from '.';
|
|
|
6
5
|
import { ReFuel } from '.';
|
|
7
6
|
import { Lesson } from '.';
|
|
8
7
|
import { BaseEntityEx } from '.';
|
|
8
|
+
import { ColumnDef } 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 { Lesson } from '.';
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
3
1
|
import { ColumnDef } from '.';
|
|
4
2
|
import { FlightTypeCode } from '.';
|
|
5
3
|
import { FlightPurposeCode } from '.';
|
|
6
4
|
import { OnBoard } from '.';
|
|
7
5
|
import { TOLData } from '.';
|
|
8
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/RiskAssessment.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Mitigation } from '.';
|
|
2
|
-
import { PilotQualificationsRisks } from '.';
|
|
3
1
|
import { CrewDutyDayRisks } from '.';
|
|
4
2
|
import { DepartureRisks } from '.';
|
|
5
3
|
import { DestinationRisks } from '.';
|
|
6
4
|
import { TripRisks } from '.';
|
|
7
5
|
import { WeatherRisks } from '.';
|
|
8
6
|
import { SpecialRisks } from '.';
|
|
7
|
+
import { Mitigation } from '.';
|
|
8
|
+
import { PilotQualificationsRisks } from '.';
|
|
9
9
|
export declare class RiskAssessment {
|
|
10
10
|
timestamp: number;
|
|
11
11
|
pilotQualifications: PilotQualificationsRisks;
|
package/lib/Syllabus.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { FlightCategoryCode } from '.';
|
|
2
|
-
import { InstructionTypeCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { FlightCategoryCode } from '.';
|
|
4
|
+
import { InstructionTypeCode } from '.';
|
|
5
5
|
export declare class Syllabus extends BaseEntityEx {
|
|
6
6
|
plan: FlightCategoryCode;
|
|
7
7
|
type: InstructionTypeCode;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Syllabus } from '.';
|
|
4
3
|
import { FlightCategoryCode } from '.';
|
|
5
4
|
import { InstructionTypeCode } from '.';
|
|
5
|
+
import { Syllabus } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SyllabusEndPoint {
|
|
8
8
|
private config;
|
|
@@ -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;
|
package/lib/UserEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { LoginParams } from '.';
|
|
4
3
|
import { User } from '.';
|
|
4
|
+
import { LoginParams } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class UserEndPoint {
|
|
7
7
|
private config;
|