@aya-flights/ngx-goox-lib 2.19.64 → 2.19.67

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 (45) hide show
  1. package/fesm2022/aya-flights-ngx-goox-lib.mjs +4623 -4623
  2. package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
  3. package/lib/Account.d.ts +1 -1
  4. package/lib/AccountsEndPoint.d.ts +10 -5
  5. package/lib/Airplane.d.ts +4 -4
  6. package/lib/AirplanesEndPoint.d.ts +12 -5
  7. package/lib/AuditLogsEndPoint.d.ts +1 -1
  8. package/lib/Booking.d.ts +1 -1
  9. package/lib/BookingPlan.d.ts +1 -1
  10. package/lib/BookingsEndPoint.d.ts +5 -5
  11. package/lib/Campaign.d.ts +2 -2
  12. package/lib/CampaignsEndPoint.d.ts +1 -1
  13. package/lib/Certificate.d.ts +1 -1
  14. package/lib/CertificatesEndPoint.d.ts +2 -1
  15. package/lib/Contact.d.ts +2 -2
  16. package/lib/ContactsEndPoint.d.ts +12 -7
  17. package/lib/Flight.d.ts +10 -10
  18. package/lib/FlightPlan.d.ts +1 -1
  19. package/lib/FlightRisk.d.ts +5 -5
  20. package/lib/FlightTicketsEndPoint.d.ts +2 -1
  21. package/lib/FlightsEndPoint.d.ts +12 -8
  22. package/lib/GroupsEndPoint.d.ts +1 -1
  23. package/lib/LeadsEndPoint.d.ts +3 -2
  24. package/lib/LookupGroup.d.ts +1 -1
  25. package/lib/LookupsEndPoint.d.ts +1 -1
  26. package/lib/Maintenance.d.ts +1 -1
  27. package/lib/MaintenancesEndPoint.d.ts +3 -1
  28. package/lib/MessageConfirm.d.ts +2 -2
  29. package/lib/MessageConfirmsEndPoint.d.ts +4 -1
  30. package/lib/MyBookingsEndPoint.d.ts +3 -2
  31. package/lib/MyFlightsEndPoint.d.ts +4 -2
  32. package/lib/PostFlightData.d.ts +3 -3
  33. package/lib/PostFlightInfo.d.ts +1 -1
  34. package/lib/PreFlightData.d.ts +2 -2
  35. package/lib/PriceListEndPoint.d.ts +2 -1
  36. package/lib/SyllabusEndPoint.d.ts +3 -1
  37. package/lib/SystemConfig.d.ts +1 -1
  38. package/lib/SystemMessage.d.ts +2 -2
  39. package/lib/SystemMessagesEndPoint.d.ts +3 -2
  40. package/lib/User.d.ts +1 -1
  41. package/lib/UserEndPoint.d.ts +1 -1
  42. package/lib/UsersEndPoint.d.ts +4 -2
  43. package/lib/index.d.ts +112 -112
  44. package/lib/services.export.d.ts +23 -23
  45. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
- import { ColumnDef } from '.';
2
1
  import { BaseEntityEx } from '.';
2
+ import { ColumnDef } from '.';
3
3
  export declare class SystemConfig extends BaseEntityEx {
4
4
  strVal: string;
5
5
  intVal: number;
@@ -1,7 +1,7 @@
1
- import { MessageTypeCode } from '.';
2
- import { PriorityCode } from '.';
3
1
  import { BaseEntityEx } from '.';
4
2
  import { ColumnDef } from '.';
3
+ import { MessageTypeCode } from '.';
4
+ import { PriorityCode } from '.';
5
5
  export declare class SystemMessage extends BaseEntityEx {
6
6
  subject: string;
7
7
  description: string;
@@ -1,7 +1,8 @@
1
1
  import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
2
2
  import { GooxConfig } from '../config';
3
- import { SystemMessage } from '.';
3
+ import { MessageTypeCode } from '.';
4
4
  import { MessageConfirm } from '.';
5
+ import { SystemMessage } from '.';
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class SystemMessagesEndPoint {
7
8
  private config;
@@ -31,7 +32,7 @@ export declare class SystemMessagesEndPoint {
31
32
  /**
32
33
  * Find systemMessages by query
33
34
  */
34
- find(search?: string, type?: [], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<SystemMessage>>;
35
+ find(search?: string, type?: MessageTypeCode[], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<SystemMessage>>;
35
36
  /**
36
37
  * Find message confirmations
37
38
  */
package/lib/User.d.ts CHANGED
@@ -1,8 +1,8 @@
1
- import { ColumnDef } from '.';
2
1
  import { UserTypeCode } from '.';
3
2
  import { UserRoleFlag } from '.';
4
3
  import { UserStatusCode } from '.';
5
4
  import { BaseEntityEx } from '.';
5
+ import { ColumnDef } 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,5 +1,7 @@
1
1
  import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
2
2
  import { GooxConfig } from '../config';
3
+ import { UserTypeCode } from '.';
4
+ import { UserStatusCode } from '.';
3
5
  import { StringKeyValue } from '.';
4
6
  import { User } from '.';
5
7
  import * as i0 from "@angular/core";
@@ -31,11 +33,11 @@ export declare class UsersEndPoint {
31
33
  /**
32
34
  * Find users by query
33
35
  */
34
- find(search?: string, type?: [], status?: [], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<User>>;
36
+ find(search?: string, type?: UserTypeCode[], status?: UserStatusCode[], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<User>>;
35
37
  /**
36
38
  * Lookup users ID->Name by filter
37
39
  */
38
- lookup(search?: string, type?: [], status?: [], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<StringKeyValue>>;
40
+ lookup(search?: string, type?: UserTypeCode[], status?: UserStatusCode[], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<StringKeyValue>>;
39
41
  /**
40
42
  * Lookup groups ID->Name
41
43
  */
package/lib/index.d.ts CHANGED
@@ -1,153 +1,153 @@
1
- export * from './ColumnDef';
2
- export * from './TimeFrame';
3
1
  export * from './TimeDataPoint';
4
2
  export * from './TimeSeries';
5
3
  export * from './BaseEntity';
6
4
  export * from './BaseEntityEx';
7
5
  export * from './Tuple';
8
- export * from './AirplaneValidationFlag';
9
- export * from './FlightPurposeCode';
6
+ export * from './ColumnDef';
7
+ export * from './TimeFrame';
10
8
  export * from './AirplaneStatusCode';
9
+ export * from './FilterFlag';
10
+ export * from './OperatorCode';
11
+ export * from './UserRoleFlag';
12
+ export * from './UserTypeCode';
13
+ export * from './ADSBCategoryCode';
14
+ export * from './AssessmentCode';
15
+ export * from './CampaignStatusCode';
16
+ export * from './CurrencyCode';
17
+ export * from './LessonTypeCode';
18
+ export * from './MaintenanceActionCode';
19
+ export * from './PermissionFlag';
20
+ export * from './ADSBSourceFlag';
11
21
  export * from './CampaignTypeCode';
22
+ export * from './ConfirmStatusCode';
23
+ export * from './FlightPurposeCode';
24
+ export * from './FlightStateCode';
25
+ export * from './LessonSubjectCode';
12
26
  export * from './LicenseTypeFlag';
13
- export * from './MaintenanceActionCode';
27
+ export * from './PriorityCode';
28
+ export * from './TicketStatusCode';
14
29
  export * from './ModuleCode';
15
- export * from './ValidationFlag';
16
- export * from './AccountStatusCode';
17
- export * from './ConfirmStatusCode';
30
+ export * from './AirplaneValidationFlag';
31
+ export * from './BillingStatusCode';
18
32
  export * from './ErrorCode';
19
- export * from './FlightClassCode';
33
+ export * from './FlightCategoryCode';
20
34
  export * from './FlightStatusCode';
21
35
  export * from './FlightTypeCode';
22
- export * from './PermissionFlag';
36
+ export * from './InstructionTypeCode';
37
+ export * from './MessageTypeCode';
23
38
  export * from './UserStatusCode';
24
- export * from './ADSBSourceFlag';
39
+ export * from './FlightClassCode';
40
+ export * from './LeadStatusCode';
41
+ export * from './AccountStatusCode';
25
42
  export * from './BookingStatusCode';
26
- export * from './FlightCategoryCode';
27
- export * from './LessonTypeCode';
28
- export * from './MessageTypeCode';
43
+ export * from './BookingTypeFlag';
29
44
  export * from './PaymentMethodCode';
30
- export * from './UserRoleFlag';
31
- export * from './UserTypeCode';
32
- export * from './AssessmentCode';
33
- export * from './CampaignStatusCode';
34
- export * from './CurrencyCode';
35
- export * from './InstructionTypeCode';
36
- export * from './LessonSubjectCode';
37
45
  export * from './StatusCode';
38
- export * from './FilterFlag';
39
- export * from './ADSBCategoryCode';
40
- export * from './BillingStatusCode';
41
- export * from './FlightStateCode';
42
- export * from './LeadStatusCode';
43
- export * from './OperatorCode';
44
46
  export * from './TransactionTypeCode';
45
- export * from './BookingTypeFlag';
46
- export * from './PriorityCode';
47
- export * from './TicketStatusCode';
48
- export * from './ADSBState';
49
- export * from './Airplane';
50
- export * from './BillingRecord';
51
- export * from './DepartureRisks';
52
- export * from './FlightTicket';
53
- export * from './BookingsFilter';
54
- export * from './Price';
47
+ export * from './ValidationFlag';
55
48
  export * from './ContactsFilter';
49
+ export * from './Propeller';
50
+ export * from './User';
51
+ export * from './AnyKeyValue';
52
+ export * from './CertificatesFilter';
53
+ export * from './Fuel';
54
+ export * from './Credit';
55
+ export * from './TOLData';
56
+ export * from './ReFuel';
57
+ export * from './RiskAssessment';
58
+ export * from './FlightRisk';
56
59
  export * from './UsersFilter';
57
- export * from './PostFlightData';
60
+ export * from './IntKeyValue';
61
+ export * from './Lead';
62
+ export * from './LookupGroup';
63
+ export * from './Syllabus';
64
+ export * from './SystemConfig';
65
+ export * from './AuditLogFilter';
66
+ export * from './FlightPlan';
67
+ export * from './Certificate';
68
+ export * from './BillingRecord';
58
69
  export * from './FlightPassenger';
59
- export * from './AccountsFilter';
60
- export * from './LeadsFilter';
61
- export * from './MaintenancesFilter';
70
+ export * from './ADSBState';
71
+ export * from './FlightsFilter';
72
+ export * from './Campaign';
73
+ export * from './OnBoard';
74
+ export * from './Group';
75
+ export * from './MessageConfirm';
76
+ export * from './Price';
77
+ export * from './PostFlightInfo';
78
+ export * from './BookingSlots';
79
+ export * from './Location';
80
+ export * from './Flight';
81
+ export * from './FlightTicket';
82
+ export * from './BookingSlot';
83
+ export * from './AirplanesFilter';
84
+ export * from './StringKeyValue';
85
+ export * from './Lesson';
86
+ export * from './LogBookRecord';
87
+ export * from './Lookup';
88
+ export * from './Address';
62
89
  export * from './SyllabusFilter';
63
- export * from './FlightRisk';
64
- export * from './AuditLogFilter';
65
- export * from './CertificatesFilter';
66
- export * from './CreditsFilter';
90
+ export * from './BookingSlotsSet';
91
+ export * from './Airplane';
67
92
  export * from './BookingPlan';
68
- export * from './FlightBilling';
93
+ export * from './Engine';
94
+ export * from './DocumentRevision';
69
95
  export * from './SpecialRisks';
70
- export * from './FlightPlan';
71
- export * from './Maintenance';
96
+ export * from './AccountsFilter';
97
+ export * from './PreFlightInfo';
98
+ export * from './Mitigation';
99
+ export * from './LeadAction';
100
+ export * from './Permission';
101
+ export * from './Document';
72
102
  export * from './LoginParams';
103
+ export * from './Contact';
104
+ export * from './PilotQualificationsRisks';
105
+ export * from './PostFlightData';
106
+ export * from './SystemMessage';
107
+ export * from './LeadsFilter';
108
+ export * from './MaintenancesFilter';
109
+ export * from './TripRisks';
110
+ export * from './FlightBilling';
73
111
  export * from './Account';
74
112
  export * from './AuditLog';
75
- export * from './Flight';
76
- export * from './RiskAssessment';
77
- export * from './IntKeyValue';
78
- export * from './ReFuel';
79
- export * from './Lesson';
113
+ export * from './Booking';
80
114
  export * from './Billing';
81
- export * from './Mitigation';
82
- export * from './Permission';
83
- export * from './TOLData';
84
- export * from './PilotQualificationsRisks';
85
- export * from './DestinationRisks';
86
- export * from './Lead';
115
+ export * from './CrewDutyDayRisks';
116
+ export * from './DepartureRisks';
117
+ export * from './BookingsFilter';
87
118
  export * from './TokenData';
88
- export * from './Engine';
89
- export * from './TripRisks';
90
- export * from './LeadAction';
91
- export * from './LogBookRecord';
92
119
  export * from './PreFlightData';
93
- export * from './DocumentRevision';
94
- export * from './LookupGroup';
95
- export * from './SystemMessage';
96
- export * from './Address';
97
- export * from './AnyKeyValue';
98
- export * from './FlightsFilter';
99
- export * from './PreFlightInfo';
100
- export * from './Magneto';
101
- export * from './OnBoard';
102
- export * from './User';
103
- export * from './StringKeyValue';
104
- export * from './Propeller';
105
- export * from './Contact';
106
- export * from './Document';
107
- export * from './Group';
108
- export * from './Lookup';
109
- export * from './Booking';
110
- export * from './BookingSlot';
111
- export * from './BookingSlots';
112
- export * from './BookingSlotsSet';
113
- export * from './Credit';
114
- export * from './MessageConfirm';
115
- export * from './Syllabus';
116
- export * from './AirplanesFilter';
117
- export * from './Location';
118
- export * from './Campaign';
120
+ export * from './DestinationRisks';
119
121
  export * from './WeatherRisks';
120
- export * from './SystemConfig';
121
- export * from './PostFlightInfo';
122
- export * from './Fuel';
123
- export * from './Certificate';
124
- export * from './CrewDutyDayRisks';
125
- export * from './CertificatesEndPoint';
122
+ export * from './Maintenance';
123
+ export * from './CreditsFilter';
124
+ export * from './Magneto';
125
+ export * from './GroupsEndPoint';
126
+ export * from './ContactsEndPoint';
126
127
  export * from './MyAuthEndPoint';
127
- export * from './MaintenancesEndPoint';
128
- export * from './PriceListEndPoint';
129
- export * from './AirplanesEndPoint';
130
128
  export * from './DocumentsEndPoint';
131
- export * from './FlightsEndPoint';
132
- export * from './LeadsEndPoint';
133
- export * from './LookupsEndPoint';
134
- export * from './SystemMessagesEndPoint';
135
- export * from './UsersEndPoint';
129
+ export * from './BookingsEndPoint';
130
+ export * from './CampaignsEndPoint';
131
+ export * from './MessageConfirmsEndPoint';
132
+ export * from './SystemEndPoint';
133
+ export * from './MyBookingsEndPoint';
136
134
  export * from './AccountsEndPoint';
137
135
  export * from './FlightTicketsEndPoint';
138
- export * from './CampaignsEndPoint';
139
- export * from './GroupsEndPoint';
136
+ export * from './MaintenancesEndPoint';
140
137
  export * from './UserEndPoint';
141
- export * from './MyBookingsEndPoint';
138
+ export * from './MyCreditsEndPoint';
142
139
  export * from './MyFlightsEndPoint';
143
- export * from './BookingsEndPoint';
144
140
  export * from './CreditsEndPoint';
141
+ export * from './AuditLogsEndPoint';
142
+ export * from './FlightsEndPoint';
143
+ export * from './PriceListEndPoint';
144
+ export * from './SystemMessagesEndPoint';
145
+ export * from './AirplanesEndPoint';
145
146
  export * from './SyllabusEndPoint';
147
+ export * from './LookupsEndPoint';
148
+ export * from './CertificatesEndPoint';
149
+ export * from './LeadsEndPoint';
146
150
  export * from './SystemConfigsEndPoint';
151
+ export * from './UsersEndPoint';
147
152
  export * from './BookingSlotsEndPoint';
148
- export * from './ContactsEndPoint';
149
- export * from './SystemEndPoint';
150
- export * from './MyCreditsEndPoint';
151
- export * from './AuditLogsEndPoint';
152
- export * from './MessageConfirmsEndPoint';
153
153
  export * from './Enums';
@@ -1,29 +1,29 @@
1
- import { AuditLogsEndPoint } from '.';
2
- import { MessageConfirmsEndPoint } from '.';
3
- import { CertificatesEndPoint } from '.';
4
- import { MyAuthEndPoint } from '.';
5
- import { PriceListEndPoint } from '.';
6
- import { AirplanesEndPoint } from '.';
7
- import { DocumentsEndPoint } from '.';
8
- import { FlightsEndPoint } from '.';
9
- import { LeadsEndPoint } from '.';
10
- import { MaintenancesEndPoint } from '.';
11
- import { LookupsEndPoint } from '.';
12
- import { SystemMessagesEndPoint } from '.';
13
- import { UsersEndPoint } from '.';
14
- import { AccountsEndPoint } from '.';
15
- import { FlightTicketsEndPoint } from '.';
16
- import { CampaignsEndPoint } from '.';
17
1
  import { GroupsEndPoint } from '.';
18
- import { UserEndPoint } from '.';
2
+ import { ContactsEndPoint } from '.';
3
+ import { DocumentsEndPoint } from '.';
4
+ import { MyAuthEndPoint } from '.';
19
5
  import { MyBookingsEndPoint } from '.';
6
+ import { AccountsEndPoint } from '.';
20
7
  import { BookingsEndPoint } from '.';
8
+ import { CampaignsEndPoint } from '.';
9
+ import { MessageConfirmsEndPoint } from '.';
10
+ import { SystemEndPoint } from '.';
11
+ import { MyFlightsEndPoint } from '.';
21
12
  import { CreditsEndPoint } from '.';
13
+ import { FlightTicketsEndPoint } from '.';
14
+ import { MaintenancesEndPoint } from '.';
15
+ import { UserEndPoint } from '.';
16
+ import { MyCreditsEndPoint } from '.';
17
+ import { SystemMessagesEndPoint } from '.';
18
+ import { AirplanesEndPoint } from '.';
19
+ import { AuditLogsEndPoint } from '.';
20
+ import { FlightsEndPoint } from '.';
21
+ import { PriceListEndPoint } from '.';
22
+ import { LookupsEndPoint } from '.';
22
23
  import { SyllabusEndPoint } from '.';
23
- import { SystemConfigsEndPoint } from '.';
24
- import { MyFlightsEndPoint } from '.';
25
24
  import { BookingSlotsEndPoint } from '.';
26
- import { ContactsEndPoint } from '.';
27
- import { SystemEndPoint } from '.';
28
- import { MyCreditsEndPoint } from '.';
29
- export declare const Services: (typeof CertificatesEndPoint | typeof MyAuthEndPoint | typeof MaintenancesEndPoint | typeof PriceListEndPoint | typeof AirplanesEndPoint | typeof DocumentsEndPoint | typeof FlightsEndPoint | typeof LeadsEndPoint | typeof LookupsEndPoint | typeof SystemMessagesEndPoint | typeof UsersEndPoint | typeof AccountsEndPoint | typeof FlightTicketsEndPoint | typeof CampaignsEndPoint | typeof GroupsEndPoint | typeof UserEndPoint | typeof MyBookingsEndPoint | typeof MyFlightsEndPoint | typeof BookingsEndPoint | typeof CreditsEndPoint | typeof SyllabusEndPoint | typeof SystemConfigsEndPoint | typeof BookingSlotsEndPoint | typeof ContactsEndPoint | typeof SystemEndPoint | typeof MyCreditsEndPoint | typeof AuditLogsEndPoint | typeof MessageConfirmsEndPoint)[];
25
+ import { CertificatesEndPoint } from '.';
26
+ import { LeadsEndPoint } from '.';
27
+ import { SystemConfigsEndPoint } from '.';
28
+ import { UsersEndPoint } from '.';
29
+ export declare const Services: (typeof GroupsEndPoint | typeof ContactsEndPoint | typeof MyAuthEndPoint | typeof DocumentsEndPoint | typeof BookingsEndPoint | typeof CampaignsEndPoint | typeof MessageConfirmsEndPoint | typeof SystemEndPoint | typeof MyBookingsEndPoint | typeof AccountsEndPoint | typeof FlightTicketsEndPoint | typeof MaintenancesEndPoint | typeof UserEndPoint | typeof MyCreditsEndPoint | typeof MyFlightsEndPoint | typeof CreditsEndPoint | typeof AuditLogsEndPoint | typeof FlightsEndPoint | typeof PriceListEndPoint | typeof SystemMessagesEndPoint | typeof AirplanesEndPoint | typeof SyllabusEndPoint | typeof LookupsEndPoint | typeof CertificatesEndPoint | typeof LeadsEndPoint | typeof SystemConfigsEndPoint | typeof UsersEndPoint | typeof BookingSlotsEndPoint)[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aya-flights/ngx-goox-lib",
3
- "version": "2.19.64",
3
+ "version": "2.19.67",
4
4
  "description": "Angular client library for GooX backend",
5
5
  "publishConfig": {
6
6
  "access": "public"