@aya-flights/ngx-goox-lib 1.18.293 → 1.18.295

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.
Files changed (76) hide show
  1. package/esm2022/lib/Account.mjs +1 -1
  2. package/esm2022/lib/AccountsEndPoint.mjs +1 -1
  3. package/esm2022/lib/Airplane.mjs +2 -2
  4. package/esm2022/lib/AirplanesEndPoint.mjs +1 -1
  5. package/esm2022/lib/AuditLog.mjs +2 -2
  6. package/esm2022/lib/AuditLogsEndPoint.mjs +1 -1
  7. package/esm2022/lib/BookingsEndPoint.mjs +1 -1
  8. package/esm2022/lib/Campaign.mjs +2 -2
  9. package/esm2022/lib/CampaignsEndPoint.mjs +1 -1
  10. package/esm2022/lib/Certificate.mjs +1 -1
  11. package/esm2022/lib/Contact.mjs +1 -1
  12. package/esm2022/lib/ContactsEndPoint.mjs +1 -1
  13. package/esm2022/lib/Enums.mjs +192 -192
  14. package/esm2022/lib/Flight.mjs +1 -1
  15. package/esm2022/lib/FlightFilter.mjs +1 -1
  16. package/esm2022/lib/FlightPlan.mjs +1 -1
  17. package/esm2022/lib/FlightRisk.mjs +2 -2
  18. package/esm2022/lib/FlightTicket.mjs +1 -1
  19. package/esm2022/lib/FlightsEndPoint.mjs +1 -1
  20. package/esm2022/lib/GroupsEndPoint.mjs +1 -1
  21. package/esm2022/lib/Lead.mjs +1 -1
  22. package/esm2022/lib/LeadFilter.mjs +1 -1
  23. package/esm2022/lib/LogBookRecord.mjs +2 -2
  24. package/esm2022/lib/LookupGroup.mjs +2 -2
  25. package/esm2022/lib/MyAuthEndPoint.mjs +7 -1
  26. package/esm2022/lib/MyFlightsEndPoint.mjs +1 -1
  27. package/esm2022/lib/PostFlightData.mjs +1 -1
  28. package/esm2022/lib/PostFlightInfo.mjs +5 -2
  29. package/esm2022/lib/PreFlightInfo.mjs +5 -2
  30. package/esm2022/lib/RiskAssessment.mjs +1 -1
  31. package/esm2022/lib/SystemMessage.mjs +2 -2
  32. package/esm2022/lib/SystemMessagesEndPoint.mjs +1 -1
  33. package/esm2022/lib/User.mjs +1 -1
  34. package/esm2022/lib/UserEndPoint.mjs +1 -1
  35. package/esm2022/lib/UserFilter.mjs +1 -1
  36. package/esm2022/lib/index.mjs +101 -101
  37. package/esm2022/lib/services.export.mjs +37 -37
  38. package/fesm2022/aya-flights-ngx-goox-lib.mjs +3812 -3800
  39. package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
  40. package/lib/Account.d.ts +1 -1
  41. package/lib/AccountsEndPoint.d.ts +2 -2
  42. package/lib/Airplane.d.ts +2 -2
  43. package/lib/AirplanesEndPoint.d.ts +2 -2
  44. package/lib/AuditLog.d.ts +1 -1
  45. package/lib/AuditLogsEndPoint.d.ts +1 -1
  46. package/lib/BookingsEndPoint.d.ts +1 -1
  47. package/lib/Campaign.d.ts +1 -1
  48. package/lib/CampaignsEndPoint.d.ts +1 -1
  49. package/lib/Certificate.d.ts +1 -1
  50. package/lib/Contact.d.ts +1 -1
  51. package/lib/ContactsEndPoint.d.ts +3 -3
  52. package/lib/Flight.d.ts +8 -8
  53. package/lib/FlightFilter.d.ts +2 -2
  54. package/lib/FlightPlan.d.ts +1 -1
  55. package/lib/FlightRisk.d.ts +2 -2
  56. package/lib/FlightTicket.d.ts +1 -1
  57. package/lib/FlightsEndPoint.d.ts +5 -5
  58. package/lib/GroupsEndPoint.d.ts +1 -1
  59. package/lib/Lead.d.ts +1 -1
  60. package/lib/LeadFilter.d.ts +1 -1
  61. package/lib/LogBookRecord.d.ts +1 -1
  62. package/lib/LookupGroup.d.ts +1 -1
  63. package/lib/MyAuthEndPoint.d.ts +4 -0
  64. package/lib/MyFlightsEndPoint.d.ts +1 -1
  65. package/lib/PostFlightData.d.ts +3 -3
  66. package/lib/PostFlightInfo.d.ts +2 -1
  67. package/lib/PreFlightInfo.d.ts +2 -1
  68. package/lib/RiskAssessment.d.ts +3 -3
  69. package/lib/SystemMessage.d.ts +1 -1
  70. package/lib/SystemMessagesEndPoint.d.ts +1 -1
  71. package/lib/User.d.ts +2 -2
  72. package/lib/UserEndPoint.d.ts +1 -1
  73. package/lib/UserFilter.d.ts +1 -1
  74. package/lib/index.d.ts +100 -100
  75. package/lib/services.export.d.ts +19 -19
  76. 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,10 +1,10 @@
1
1
  import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
2
2
  import { GooxConfig } from '../config';
3
- import { Account } from '.';
4
3
  import { StringKeyValue } from '.';
5
- import { Flight } from '.';
4
+ import { Account } from '.';
6
5
  import { Credit } from '.';
7
6
  import { Document } from '.';
7
+ import { Flight } from '.';
8
8
  import * as i0 from "@angular/core";
9
9
  export declare class AccountsEndPoint {
10
10
  private config;
package/lib/Airplane.d.ts CHANGED
@@ -1,11 +1,11 @@
1
+ import { Fuel } from '.';
2
+ import { BaseEntityEx } from '.';
1
3
  import { ColumnDef } from '.';
2
4
  import { AirplaneStatusCode } from '.';
3
5
  import { AirplaneValidationFlag } from '.';
4
6
  import { Engine } from '.';
5
7
  import { Magneto } from '.';
6
8
  import { Propeller } from '.';
7
- import { Fuel } from '.';
8
- import { BaseEntityEx } 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
+ import { Flight } from '.';
3
5
  import { Document } from '.';
4
6
  import { Maintenance } from '.';
5
- import { Airplane } from '.';
6
7
  import { StringKeyValue } from '.';
7
- import { Flight } from '.';
8
8
  import * as i0 from "@angular/core";
9
9
  export declare class AirplanesEndPoint {
10
10
  private config;
package/lib/AuditLog.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- import { ColumnDef } from '.';
2
1
  import { UserTypeCode } from '.';
3
2
  import { BaseEntityEx } from '.';
3
+ import { ColumnDef } from '.';
4
4
  export declare class AuditLog extends BaseEntityEx {
5
5
  userId: string;
6
6
  userType: UserTypeCode;
@@ -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;
@@ -1,8 +1,8 @@
1
1
  import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
2
2
  import { GooxConfig } from '../config';
3
- import { Booking } from '.';
4
3
  import { BookingStatusCode } from '.';
5
4
  import { TimeSeries } from '.';
5
+ import { Booking } from '.';
6
6
  import * as i0 from "@angular/core";
7
7
  export declare class BookingsEndPoint {
8
8
  private config;
package/lib/Campaign.d.ts CHANGED
@@ -1,8 +1,8 @@
1
- import { ColumnDef } from '.';
2
1
  import { CampaignTypeCode } from '.';
3
2
  import { CampaignStatusCode } from '.';
4
3
  import { CurrencyCode } from '.';
5
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;
@@ -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,8 +1,8 @@
1
- import { ValidationFlag } from '.';
2
1
  import { BaseEntityEx } from '.';
3
2
  import { ColumnDef } from '.';
4
3
  import { AccountStatusCode } from '.';
5
4
  import { Address } from '.';
5
+ import { ValidationFlag } from '.';
6
6
  export declare class Contact extends BaseEntityEx {
7
7
  accountId: string;
8
8
  name: string;
@@ -1,11 +1,11 @@
1
1
  import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
2
2
  import { GooxConfig } from '../config';
3
3
  import { StringKeyValue } from '.';
4
- import { MessageConfirm } from '.';
5
- import { Document } from '.';
4
+ import { Flight } from '.';
6
5
  import { Contact } from '.';
7
6
  import { Certificate } from '.';
8
- import { Flight } from '.';
7
+ import { MessageConfirm } from '.';
8
+ import { Document } from '.';
9
9
  import * as i0 from "@angular/core";
10
10
  export declare class ContactsEndPoint {
11
11
  private config;
package/lib/Flight.d.ts CHANGED
@@ -1,16 +1,16 @@
1
- import { FlightTypeCode } from '.';
2
- import { OnBoard } from '.';
1
+ import { BillingStatusCode } from '.';
2
+ import { FlightPurposeCode } from '.';
3
+ import { Lesson } from '.';
3
4
  import { Billing } from '.';
4
5
  import { RiskAssessment } from '.';
5
- import { TOLData } from '.';
6
- import { ReFuel } from '.';
7
- import { Lesson } from '.';
8
6
  import { BaseEntityEx } from '.';
9
- import { FlightStatusCode } from '.';
7
+ import { FlightTypeCode } from '.';
10
8
  import { FlightStateCode } from '.';
11
- import { BillingStatusCode } from '.';
12
- import { FlightPurposeCode } from '.';
13
9
  import { ColumnDef } from '.';
10
+ import { TOLData } from '.';
11
+ import { ReFuel } from '.';
12
+ import { FlightStatusCode } from '.';
13
+ import { OnBoard } from '.';
14
14
  export declare class Flight extends BaseEntityEx {
15
15
  name: string;
16
16
  description: string;
@@ -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 FlightFilter {
7
7
  search: string;
8
8
  accountId: string;
@@ -1,10 +1,10 @@
1
+ import { FlightTypeCode } from '.';
1
2
  import { FlightStatusCode } from '.';
2
3
  import { FlightStateCode } from '.';
3
4
  import { FlightPurposeCode } from '.';
4
5
  import { TOLData } from '.';
5
6
  import { BaseEntityEx } from '.';
6
7
  import { ColumnDef } from '.';
7
- import { FlightTypeCode } from '.';
8
8
  export declare class FlightPlan extends BaseEntityEx {
9
9
  name: string;
10
10
  description: string;
@@ -1,13 +1,13 @@
1
1
  import { CrewDutyDayRisks } from '.';
2
2
  import { DepartureRisks } from '.';
3
- import { TripRisks } from '.';
4
3
  import { SpecialRisks } from '.';
5
4
  import { Mitigation } from '.';
5
+ import { BaseEntityEx } from '.';
6
6
  import { ColumnDef } from '.';
7
7
  import { PilotQualificationsRisks } from '.';
8
8
  import { DestinationRisks } from '.';
9
+ import { TripRisks } from '.';
9
10
  import { WeatherRisks } from '.';
10
- import { BaseEntityEx } from '.';
11
11
  export declare class FlightRisk extends BaseEntityEx {
12
12
  timestamp: number;
13
13
  pilotQualifications: PilotQualificationsRisks;
@@ -1,6 +1,6 @@
1
- import { TicketStatusCode } from '.';
2
1
  import { BaseEntityEx } from '.';
3
2
  import { ColumnDef } from '.';
3
+ import { TicketStatusCode } from '.';
4
4
  export declare class FlightTicket extends BaseEntityEx {
5
5
  name: string;
6
6
  description: string;
@@ -1,13 +1,13 @@
1
1
  import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
2
2
  import { GooxConfig } from '../config';
3
- import { TimeSeries } from '.';
4
- import { FlightPlan } from '.';
5
- import { Contact } from '.';
6
3
  import { FlightTicket } from '.';
7
- import { AnyKeyValue } from '.';
8
4
  import { PreFlightInfo } from '.';
9
- import { Flight } from '.';
5
+ import { AnyKeyValue } from '.';
6
+ import { TimeSeries } from '.';
10
7
  import { PostFlightInfo } from '.';
8
+ import { Flight } from '.';
9
+ import { FlightPlan } from '.';
10
+ import { Contact } from '.';
11
11
  import * as i0 from "@angular/core";
12
12
  export declare class FlightsEndPoint {
13
13
  private config;
@@ -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/Lead.d.ts CHANGED
@@ -1,7 +1,7 @@
1
- import { LeadStatusCode } from '.';
2
1
  import { BaseEntityEx } from '.';
3
2
  import { ColumnDef } from '.';
4
3
  import { Address } from '.';
4
+ import { LeadStatusCode } from '.';
5
5
  export declare class Lead extends BaseEntityEx {
6
6
  firstName: string;
7
7
  lastName: string;
@@ -1,5 +1,5 @@
1
- import { TimeFrame } from '.';
2
1
  import { LeadStatusCode } from '.';
2
+ import { TimeFrame } from '.';
3
3
  export declare class LeadFilter {
4
4
  search: string;
5
5
  createdOn: TimeFrame;
@@ -1,5 +1,5 @@
1
- import { ColumnDef } from '.';
2
1
  import { BaseEntityEx } from '.';
2
+ import { ColumnDef } from '.';
3
3
  export declare class LogBookRecord extends BaseEntityEx {
4
4
  accountId: string;
5
5
  contactId: string;
@@ -1,6 +1,6 @@
1
- import { BaseEntity } from '.';
2
1
  import { ColumnDef } from '.';
3
2
  import { Lookup } from '.';
3
+ import { BaseEntity } from '.';
4
4
  export declare class LookupGroup extends BaseEntity {
5
5
  group: string;
6
6
  value: Lookup[];
@@ -7,6 +7,10 @@ export declare class MyAuthEndPoint {
7
7
  private rest;
8
8
  private baseUrl;
9
9
  constructor(config: GooxConfig, rest: RestUtil);
10
+ /**
11
+ * Authenticate contact
12
+ */
13
+ authenticate(token?: string): import("rxjs").Observable<ActionResponse>;
10
14
  /**
11
15
  * Send SMS code
12
16
  */
@@ -1,9 +1,9 @@
1
1
  import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
2
2
  import { GooxConfig } from '../config';
3
+ import { FlightPlan } from '.';
3
4
  import { PreFlightInfo } from '.';
4
5
  import { PostFlightInfo } from '.';
5
6
  import { Flight } from '.';
6
- import { FlightPlan } from '.';
7
7
  import * as i0 from "@angular/core";
8
8
  export declare class MyFlightsEndPoint {
9
9
  private config;
@@ -1,11 +1,11 @@
1
+ import { FlightTypeCode } from '.';
2
+ import { FlightPurposeCode } from '.';
3
+ import { OnBoard } from '.';
1
4
  import { TOLData } from '.';
2
5
  import { ReFuel } from '.';
3
6
  import { Lesson } from '.';
4
7
  import { BaseEntityEx } from '.';
5
8
  import { ColumnDef } from '.';
6
- import { FlightTypeCode } from '.';
7
- import { FlightPurposeCode } from '.';
8
- import { OnBoard } from '.';
9
9
  export declare class PostFlightData extends BaseEntityEx {
10
10
  name: string;
11
11
  description: string;
@@ -37,5 +37,6 @@ export declare class PostFlightInfo {
37
37
  soloFlightTime: number;
38
38
  lessonComments: string;
39
39
  description: string;
40
- constructor(flightId?: string, flightNumber?: number, airplane?: string, hoursToInspection?: number, purpose?: FlightPurposeCode, type?: FlightTypeCode, takeoffPlannedTime?: number, takeoffActualTime?: number, takeoffField?: string, takeoffHobbs?: number, takeoffTach?: number, landingPlannedTime?: number, landingActualTime?: number, landingField?: string, landingHobbs?: number, landingTach?: number, captain?: string, firstOfficer?: string, destination?: string, singleEngineHours?: number, multiEngineHours?: number, flightHoursLastMonth?: number, refuelBeforeFlight?: number, refuelAfterFlight?: number, refillOilBeforeFlight?: number, refillOilAfterFlight?: number, lessonNumber?: number, lessonSubject?: string, lessonFlightCounter?: number, lessonAssessment?: AssessmentCode, instructedFlightTime?: number, instrumentsFlightTime?: number, soloFlightTime?: number, lessonComments?: string, description?: string);
40
+ reportedBy: string;
41
+ constructor(flightId?: string, flightNumber?: number, airplane?: string, hoursToInspection?: number, purpose?: FlightPurposeCode, type?: FlightTypeCode, takeoffPlannedTime?: number, takeoffActualTime?: number, takeoffField?: string, takeoffHobbs?: number, takeoffTach?: number, landingPlannedTime?: number, landingActualTime?: number, landingField?: string, landingHobbs?: number, landingTach?: number, captain?: string, firstOfficer?: string, destination?: string, singleEngineHours?: number, multiEngineHours?: number, flightHoursLastMonth?: number, refuelBeforeFlight?: number, refuelAfterFlight?: number, refillOilBeforeFlight?: number, refillOilAfterFlight?: number, lessonNumber?: number, lessonSubject?: string, lessonFlightCounter?: number, lessonAssessment?: AssessmentCode, instructedFlightTime?: number, instrumentsFlightTime?: number, soloFlightTime?: number, lessonComments?: string, description?: string, reportedBy?: string);
41
42
  }
@@ -32,5 +32,6 @@ export declare class PreFlightInfo {
32
32
  operationNotes: string;
33
33
  hasCompetency: boolean;
34
34
  hasFlightPlan: boolean;
35
- constructor(flightId?: string, flightNumber?: number, airplane?: string, hoursToInspection?: number, takeoffPlannedTime?: number, takeoffActualTime?: number, takeoffField?: string, landingField?: string, purpose?: FlightPurposeCode, purposeOt?: string, type?: FlightTypeCode, destination?: string, secondaryCallSign?: string, captain?: string, firstOfficer?: string, estimatedFuelOnBoard?: number, estimatedEndurance?: number, actualFuelOnBoard?: number, refuelBeforeFlight?: number, actualOilOnBoard?: number, refillOilBeforeFlight?: number, passengers?: string[], crew?: string[], wBConfig?: string, wBManual?: string, lessonSubject?: string, lessonFlightCounter?: number, preFlightNotes?: string, operationNotes?: string, hasCompetency?: boolean, hasFlightPlan?: boolean);
35
+ reportedBy: string;
36
+ constructor(flightId?: string, flightNumber?: number, airplane?: string, hoursToInspection?: number, takeoffPlannedTime?: number, takeoffActualTime?: number, takeoffField?: string, landingField?: string, purpose?: FlightPurposeCode, purposeOt?: string, type?: FlightTypeCode, destination?: string, secondaryCallSign?: string, captain?: string, firstOfficer?: string, estimatedFuelOnBoard?: number, estimatedEndurance?: number, actualFuelOnBoard?: number, refuelBeforeFlight?: number, actualOilOnBoard?: number, refillOilBeforeFlight?: number, passengers?: string[], crew?: string[], wBConfig?: string, wBManual?: string, lessonSubject?: string, lessonFlightCounter?: number, preFlightNotes?: string, operationNotes?: string, hasCompetency?: boolean, hasFlightPlan?: boolean, reportedBy?: string);
36
37
  }
@@ -1,11 +1,11 @@
1
- import { SpecialRisks } from '.';
2
- import { Mitigation } from '.';
3
- import { PilotQualificationsRisks } from '.';
4
1
  import { CrewDutyDayRisks } from '.';
5
2
  import { DepartureRisks } from '.';
6
3
  import { DestinationRisks } from '.';
7
4
  import { TripRisks } from '.';
8
5
  import { WeatherRisks } from '.';
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;
@@ -1,7 +1,7 @@
1
+ import { BaseEntityEx } from '.';
1
2
  import { ColumnDef } from '.';
2
3
  import { MessageTypeCode } from '.';
3
4
  import { PriorityCode } from '.';
4
- import { BaseEntityEx } from '.';
5
5
  export declare class SystemMessage extends BaseEntityEx {
6
6
  subject: string;
7
7
  description: string;
@@ -1,7 +1,7 @@
1
1
  import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
2
2
  import { GooxConfig } from '../config';
3
- import { MessageConfirm } from '.';
4
3
  import { SystemMessage } from '.';
4
+ import { MessageConfirm } from '.';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class SystemMessagesEndPoint {
7
7
  private config;
package/lib/User.d.ts CHANGED
@@ -1,8 +1,8 @@
1
- import { UserTypeCode } from '.';
2
- import { UserRoleFlag } from '.';
3
1
  import { UserStatusCode } from '.';
4
2
  import { BaseEntityEx } from '.';
5
3
  import { ColumnDef } from '.';
4
+ import { UserTypeCode } from '.';
5
+ import { UserRoleFlag } from '.';
6
6
  export declare class User extends BaseEntityEx {
7
7
  name: string;
8
8
  email: string;
@@ -1,7 +1,7 @@
1
1
  import { RestUtil, EntityResponse } from '../utils';
2
2
  import { GooxConfig } from '../config';
3
- import { User } from '.';
4
3
  import { LoginParams } from '.';
4
+ import { User } from '.';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class UserEndPoint {
7
7
  private config;
@@ -1,7 +1,7 @@
1
- import { UserTypeCode } from '.';
2
1
  import { UserRoleFlag } from '.';
3
2
  import { UserStatusCode } from '.';
4
3
  import { TimeFrame } from '.';
4
+ import { UserTypeCode } from '.';
5
5
  export declare class UserFilter {
6
6
  search: string;
7
7
  type: UserTypeCode[];