@aya-flights/ngx-goox-lib 2.19.136 → 2.19.138
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 +5133 -5127
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +7 -6
- package/lib/AccountsFilter.d.ts +3 -1
- package/lib/Airplane.d.ts +6 -6
- package/lib/AirplanesEndPoint.d.ts +7 -7
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/Contact.d.ts +4 -4
- package/lib/ContactsEndPoint.d.ts +7 -7
- package/lib/Credit.d.ts +1 -1
- 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 +6 -6
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/LeadsEndPoint.d.ts +2 -2
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/MessageConfirmsEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +2 -2
- package/lib/MyFlightsEndPoint.d.ts +3 -3
- package/lib/PostFlightInfo.d.ts +1 -1
- package/lib/PriceListEndPoint.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +1 -1
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/User.d.ts +1 -1
- package/lib/UsersFilter.d.ts +1 -1
- package/lib/index.d.ts +111 -111
- package/lib/services.export.d.ts +19 -19
- package/package.json +1 -1
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
3
|
+
import { AccountTypeCode } from '.';
|
|
4
|
+
import { FlightTypeCode } from '.';
|
|
5
|
+
import { FlightStatusCode } from '.';
|
|
4
6
|
import { Flight } from '.';
|
|
5
7
|
import { Document } from '.';
|
|
6
|
-
import {
|
|
8
|
+
import { FlightPurposeCode } from '.';
|
|
7
9
|
import { Credit } from '.';
|
|
8
|
-
import { FlightStateCode } from '.';
|
|
9
|
-
import { FlightStatusCode } from '.';
|
|
10
10
|
import { Account } from '.';
|
|
11
|
-
import { AccountStatusCode } from '.';
|
|
12
11
|
import { StringKeyValue } from '.';
|
|
12
|
+
import { AccountStatusCode } from '.';
|
|
13
|
+
import { FlightStateCode } from '.';
|
|
13
14
|
import * as i0 from "@angular/core";
|
|
14
15
|
export declare class AccountsEndPoint {
|
|
15
16
|
private config;
|
|
@@ -39,7 +40,7 @@ export declare class AccountsEndPoint {
|
|
|
39
40
|
/**
|
|
40
41
|
* Find accounts by query
|
|
41
42
|
*/
|
|
42
|
-
find(search?: string, status?: AccountStatusCode[], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Account>>;
|
|
43
|
+
find(search?: string, status?: AccountStatusCode[], type?: AccountTypeCode[], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Account>>;
|
|
43
44
|
/**
|
|
44
45
|
* Lookup account ID->Name by filter
|
|
45
46
|
*/
|
package/lib/AccountsFilter.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { AccountStatusCode } from '.';
|
|
2
|
+
import { AccountTypeCode } from '.';
|
|
2
3
|
export declare class AccountsFilter {
|
|
3
4
|
search: string;
|
|
4
5
|
status: AccountStatusCode[];
|
|
5
|
-
|
|
6
|
+
type: AccountTypeCode[];
|
|
7
|
+
constructor(search?: string, status?: AccountStatusCode[], type?: AccountTypeCode[]);
|
|
6
8
|
}
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { Propeller } from '.';
|
|
2
|
-
import {
|
|
3
|
-
import { WBConfig } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
|
-
import { AirplaneStatusCode } from '.';
|
|
2
|
+
import { AirplaneValidationFlag } from '.';
|
|
6
3
|
import { Engine } from '.';
|
|
7
4
|
import { Magneto } from '.';
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
5
|
+
import { Fuel } from '.';
|
|
6
|
+
import { WBConfig } from '.';
|
|
10
7
|
import { BaseEntityEx } from '.';
|
|
8
|
+
import { TypeRatingFlag } from '.';
|
|
9
|
+
import { AirplaneStatusCode } 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 { FlightStatusCode } from '.';
|
|
5
|
-
import { FlightTypeCode } from '.';
|
|
3
|
+
import { StatusCode } from '.';
|
|
6
4
|
import { FlightStateCode } from '.';
|
|
5
|
+
import { Flight } from '.';
|
|
6
|
+
import { MaintenanceActionCode } from '.';
|
|
7
7
|
import { Maintenance } from '.';
|
|
8
|
+
import { FlightStatusCode } from '.';
|
|
9
|
+
import { Airplane } from '.';
|
|
10
|
+
import { AirplaneStatusCode } from '.';
|
|
11
|
+
import { FlightTypeCode } from '.';
|
|
8
12
|
import { FlightPurposeCode } from '.';
|
|
9
13
|
import { Document } from '.';
|
|
10
|
-
import { StatusCode } from '.';
|
|
11
|
-
import { MaintenanceActionCode } from '.';
|
|
12
|
-
import { Airplane } from '.';
|
|
13
14
|
import { StringKeyValue } from '.';
|
|
14
|
-
import { Flight } 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 { TimeSeries } from '.';
|
|
4
3
|
import { AuditLog } from '.';
|
|
4
|
+
import { TimeSeries } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class AuditLogsEndPoint {
|
|
7
7
|
private config;
|
package/lib/BookingSlots.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 { 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/Contact.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { Address } from '.';
|
|
2
1
|
import { TypeRatingFlag } from '.';
|
|
3
|
-
import { LicenseKindFlag } from '.';
|
|
4
2
|
import { MedicalCertClassCode } from '.';
|
|
5
|
-
import { ValidationFlag } from '.';
|
|
6
|
-
import { FlightCategoryCode } from '.';
|
|
7
3
|
import { BaseEntityEx } from '.';
|
|
8
4
|
import { AccountStatusCode } from '.';
|
|
5
|
+
import { Address } from '.';
|
|
6
|
+
import { FlightCategoryCode } from '.';
|
|
9
7
|
import { ColumnDef } from '.';
|
|
8
|
+
import { LicenseKindFlag } from '.';
|
|
9
|
+
import { ValidationFlag } 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 { MessageConfirm } from '.';
|
|
5
|
-
import { Flight } from '.';
|
|
6
|
-
import { Document } from '.';
|
|
3
|
+
import { StatusCode } from '.';
|
|
7
4
|
import { FlightTypeCode } from '.';
|
|
8
|
-
import {
|
|
5
|
+
import { Flight } from '.';
|
|
9
6
|
import { Contact } from '.';
|
|
10
|
-
import {
|
|
7
|
+
import { StringKeyValue } from '.';
|
|
8
|
+
import { MessageConfirm } from '.';
|
|
11
9
|
import { FlightStateCode } from '.';
|
|
12
10
|
import { FlightPurposeCode } from '.';
|
|
13
|
-
import {
|
|
11
|
+
import { Document } from '.';
|
|
12
|
+
import { Certificate } from '.';
|
|
13
|
+
import { FlightStatusCode } 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;
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { FlightClassCode } from '.';
|
|
2
2
|
import { FlightCategoryCode } from '.';
|
|
3
|
-
import {
|
|
3
|
+
import { FlightPurposeCode } from '.';
|
|
4
4
|
import { FlightStatusCode } from '.';
|
|
5
|
-
import { RiskAssessment } from '.';
|
|
6
|
-
import { ColumnDef } from '.';
|
|
7
|
-
import { FlightClassCode } from '.';
|
|
8
5
|
import { BillingStatusCode } from '.';
|
|
9
6
|
import { TOLData } from '.';
|
|
10
7
|
import { Lesson } from '.';
|
|
8
|
+
import { RiskAssessment } from '.';
|
|
11
9
|
import { BaseEntityEx } from '.';
|
|
10
|
+
import { ColumnDef } from '.';
|
|
11
|
+
import { FlightTypeCode } from '.';
|
|
12
12
|
export declare class Flight extends BaseEntityEx {
|
|
13
13
|
name: string;
|
|
14
14
|
description: string;
|
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import { FlightTypeCode } from '.';
|
|
2
|
+
import { FlightStatusCode } from '.';
|
|
3
|
+
import { FlightStateCode } from '.';
|
|
1
4
|
import { FlightPurposeCode } from '.';
|
|
2
5
|
import { TOLData } from '.';
|
|
3
6
|
import { BaseEntityEx } from '.';
|
|
4
7
|
import { ColumnDef } from '.';
|
|
5
|
-
import { FlightTypeCode } from '.';
|
|
6
|
-
import { FlightStatusCode } from '.';
|
|
7
|
-
import { FlightStateCode } from '.';
|
|
8
8
|
export declare class FlightPlan extends BaseEntityEx {
|
|
9
9
|
name: string;
|
|
10
10
|
description: string;
|
package/lib/FlightRisk.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { TripRisks } from '.';
|
|
3
|
-
import { WeatherRisks } from '.';
|
|
4
|
-
import { Mitigation } from '.';
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
5
2
|
import { PilotQualificationsRisks } from '.';
|
|
6
3
|
import { CrewDutyDayRisks } from '.';
|
|
7
4
|
import { DepartureRisks } from '.';
|
|
5
|
+
import { DestinationRisks } from '.';
|
|
6
|
+
import { TripRisks } from '.';
|
|
7
|
+
import { WeatherRisks } from '.';
|
|
8
8
|
import { SpecialRisks } from '.';
|
|
9
|
-
import {
|
|
9
|
+
import { Mitigation } from '.';
|
|
10
10
|
import { ColumnDef } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
@@ -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,17 +1,17 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
3
|
+
import { FlightTicket } from '.';
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
4
5
|
import { BillingStatusCode } from '.';
|
|
5
6
|
import { TimeSeries } from '.';
|
|
7
|
+
import { FlightPlan } from '.';
|
|
6
8
|
import { Contact } from '.';
|
|
7
|
-
import {
|
|
9
|
+
import { PreFlightInfo } from '.';
|
|
10
|
+
import { AnyKeyValue } from '.';
|
|
8
11
|
import { FlightPurposeCode } from '.';
|
|
9
12
|
import { PostFlightInfo } from '.';
|
|
10
|
-
import { AnyKeyValue } from '.';
|
|
11
|
-
import { FlightTicket } from '.';
|
|
12
|
-
import { PreFlightInfo } from '.';
|
|
13
13
|
import { FlightTypeCode } from '.';
|
|
14
|
-
import {
|
|
14
|
+
import { Flight } 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
|
+
import { FlightTypeCode } from '.';
|
|
1
3
|
import { FlightStatusCode } from '.';
|
|
2
4
|
import { BillingStatusCode } from '.';
|
|
3
5
|
import { FlightPurposeCode } from '.';
|
|
4
|
-
import { TimeFrame } from '.';
|
|
5
|
-
import { FlightTypeCode } 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 { 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/LeadsEndPoint.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { LeadStatusCode } from '.';
|
|
4
|
-
import { TimeSeries } from '.';
|
|
5
3
|
import { LeadAction } from '.';
|
|
6
4
|
import { Lead } from '.';
|
|
5
|
+
import { LeadStatusCode } from '.';
|
|
6
|
+
import { TimeSeries } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class LeadsEndPoint {
|
|
9
9
|
private config;
|
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;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { MessageConfirm } from '.';
|
|
3
4
|
import { MessageTypeCode } from '.';
|
|
4
5
|
import { ConfirmStatusCode } from '.';
|
|
5
6
|
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;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { Booking } from '.';
|
|
4
|
-
import { BookingStatusCode } from '.';
|
|
5
4
|
import { BookingTypeFlag } from '.';
|
|
5
|
+
import { Airplane } from '.';
|
|
6
|
+
import { BookingStatusCode } from '.';
|
|
6
7
|
import { Lookup } from '.';
|
|
7
8
|
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 { Flight } from '.';
|
|
4
3
|
import { FlightTypeCode } from '.';
|
|
4
|
+
import { FlightStatusCode } from '.';
|
|
5
5
|
import { InstructionTypeCode } from '.';
|
|
6
6
|
import { PostFlightInfo } from '.';
|
|
7
|
+
import { Flight } from '.';
|
|
8
|
+
import { FlightPlan } from '.';
|
|
7
9
|
import { Syllabus } from '.';
|
|
8
10
|
import { PreFlightInfo } 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/PostFlightInfo.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { FlightPurposeCode } from '.';
|
|
1
2
|
import { FlightTypeCode } from '.';
|
|
2
3
|
import { FlightCategoryCode } from '.';
|
|
3
4
|
import { AssessmentCode } from '.';
|
|
4
|
-
import { FlightPurposeCode } from '.';
|
|
5
5
|
export declare class PostFlightInfo {
|
|
6
6
|
flightId: string;
|
|
7
7
|
flightNumber: number;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightPurposeCode } from '.';
|
|
4
3
|
import { Price } from '.';
|
|
4
|
+
import { FlightPurposeCode } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class PriceListEndPoint {
|
|
7
7
|
private config;
|
package/lib/RiskAssessment.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { PilotQualificationsRisks } from '.';
|
|
1
2
|
import { CrewDutyDayRisks } from '.';
|
|
2
3
|
import { DepartureRisks } from '.';
|
|
3
4
|
import { DestinationRisks } from '.';
|
|
@@ -5,7 +6,6 @@ import { TripRisks } from '.';
|
|
|
5
6
|
import { WeatherRisks } from '.';
|
|
6
7
|
import { SpecialRisks } from '.';
|
|
7
8
|
import { Mitigation } from '.';
|
|
8
|
-
import { PilotQualificationsRisks } 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 { Syllabus } from '.';
|
|
3
4
|
import { FlightCategoryCode } from '.';
|
|
4
5
|
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;
|
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UserStatusCode } from '.';
|
|
2
1
|
import { BaseEntityEx } from '.';
|
|
3
2
|
import { ColumnDef } from '.';
|
|
4
3
|
import { UserTypeCode } from '.';
|
|
5
4
|
import { UserRoleFlag } from '.';
|
|
5
|
+
import { UserStatusCode } from '.';
|
|
6
6
|
export declare class User extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
email: string;
|