@aya-flights/ngx-goox-lib 2.19.138 → 2.19.140

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