@aya-flights/ngx-goox-lib 1.19.10 → 1.19.12

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 +3712 -3374
  2. package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
  3. package/lib/AccountFilter.d.ts +7 -0
  4. package/lib/AccountsEndPoint.d.ts +3 -3
  5. package/lib/Airplane.d.ts +4 -4
  6. package/lib/AirplaneFilter.d.ts +8 -0
  7. package/lib/AirplanesEndPoint.d.ts +1 -1
  8. package/lib/AuditLog.d.ts +1 -1
  9. package/lib/AuditLogFilter.d.ts +12 -0
  10. package/lib/BaseFilter.d.ts +4 -0
  11. package/lib/Booking.d.ts +1 -1
  12. package/lib/BookingFilter.d.ts +14 -0
  13. package/lib/BookingSlot.d.ts +1 -1
  14. package/lib/CampaignsEndPoint.d.ts +1 -1
  15. package/lib/CertificateFilter.d.ts +10 -0
  16. package/lib/Contact.d.ts +2 -2
  17. package/lib/ContactFilter.d.ts +8 -0
  18. package/lib/ContactsEndPoint.d.ts +2 -2
  19. package/lib/CreditFilter.d.ts +10 -0
  20. package/lib/Document.d.ts +1 -1
  21. package/lib/FilterFlag.d.ts +31 -0
  22. package/lib/Flight.d.ts +5 -5
  23. package/lib/FlightFilter.d.ts +19 -0
  24. package/lib/FlightRisk.d.ts +5 -5
  25. package/lib/FlightsEndPoint.d.ts +9 -5
  26. package/lib/Group.d.ts +1 -1
  27. package/lib/Lead.d.ts +1 -1
  28. package/lib/LeadFilter.d.ts +11 -0
  29. package/lib/LookupGroup.d.ts +1 -1
  30. package/lib/Maintenance.d.ts +2 -2
  31. package/lib/MaintenanceFilter.d.ts +13 -0
  32. package/lib/MessageConfirm.d.ts +1 -1
  33. package/lib/MyFlightsEndPoint.d.ts +1 -1
  34. package/lib/PostFlightData.d.ts +1 -1
  35. package/lib/PreFlightData.d.ts +3 -3
  36. package/lib/RiskAssessment.d.ts +3 -3
  37. package/lib/TokenData.d.ts +1 -1
  38. package/lib/UserFilter.d.ts +13 -0
  39. package/lib/UsersEndPoint.d.ts +1 -1
  40. package/lib/index.d.ts +98 -85
  41. package/lib/services.export.d.ts +20 -20
  42. package/package.json +1 -1
  43. package/utils/Entities.d.ts +3 -0
  44. package/utils/SimpleEntity.d.ts +3 -0
  45. package/utils/index.d.ts +2 -0
package/lib/index.d.ts CHANGED
@@ -1,127 +1,140 @@
1
- export * from './Tuple';
2
- export * from './ColumnDef';
3
1
  export * from './TimeFrame';
4
2
  export * from './TimeDataPoint';
5
3
  export * from './TimeSeries';
6
4
  export * from './BaseEntity';
7
5
  export * from './BaseEntityEx';
6
+ export * from './Tuple';
7
+ export * from './ColumnDef';
8
+ export * from './AirplaneStatusCode';
9
+ export * from './AirplaneValidationFlag';
8
10
  export * from './BillingStatusCode';
9
- export * from './BookingStatusCode';
10
- export * from './MessageTypeCode';
11
- export * from './TransactionTypeCode';
12
- export * from './BookingTypeFlag';
13
- export * from './ConfirmStatusCode';
14
- export * from './FlightTypeCode';
11
+ export * from './ModuleCode';
12
+ export * from './TicketStatusCode';
15
13
  export * from './UserTypeCode';
16
14
  export * from './ADSBCategoryCode';
17
- export * from './CampaignStatusCode';
15
+ export * from './AccountStatusCode';
16
+ export * from './FlightStatusCode';
17
+ export * from './StatusCode';
18
+ export * from './TransactionTypeCode';
18
19
  export * from './UserRoleFlag';
20
+ export * from './CurrencyCode';
21
+ export * from './MaintenanceActionCode';
19
22
  export * from './UserStatusCode';
23
+ export * from './BookingStatusCode';
24
+ export * from './BookingTypeFlag';
25
+ export * from './FilterFlag';
26
+ export * from './FlightTypeCode';
27
+ export * from './OperatorCode';
28
+ export * from './ADSBSourceFlag';
29
+ export * from './ConfirmStatusCode';
30
+ export * from './FlightStateCode';
31
+ export * from './MessageTypeCode';
32
+ export * from './PaymentMethodCode';
20
33
  export * from './ValidationFlag';
21
- export * from './AirplaneStatusCode';
22
34
  export * from './AssessmentCode';
23
35
  export * from './LeadStatusCode';
24
- export * from './MaintenanceActionCode';
25
- export * from './OperatorCode';
36
+ export * from './PermissionFlag';
37
+ export * from './CampaignStatusCode';
26
38
  export * from './CampaignTypeCode';
27
- export * from './CurrencyCode';
28
- export * from './ModuleCode';
29
- export * from './PaymentMethodCode';
30
- export * from './ADSBSourceFlag';
31
39
  export * from './FlightPurposeCode';
32
- export * from './FlightStateCode';
33
- export * from './FlightStatusCode';
34
- export * from './AccountStatusCode';
35
40
  export * from './PriorityCode';
36
- export * from './TicketStatusCode';
37
- export * from './AirplaneValidationFlag';
38
- export * from './PermissionFlag';
39
- export * from './StatusCode';
40
- export * from './TOLData';
41
+ export * from './ADSBState';
41
42
  export * from './PilotQualificationsRisks';
42
- export * from './CrewDutyDayRisks';
43
- export * from './SpecialRisks';
44
- export * from './LookupGroup';
45
- export * from './Maintenance';
46
- export * from './FlightPassenger';
47
- export * from './LoginParams';
48
- export * from './Engine';
49
- export * from './BookingSlot';
50
- export * from './DocumentRevision';
51
- export * from './Flight';
52
- export * from './Lookup';
53
- export * from './PreFlightData';
54
- export * from './PostFlightInfo';
55
- export * from './Account';
56
- export * from './Airplane';
57
- export * from './Contact';
58
- export * from './RiskAssessment';
59
- export * from './Lead';
60
- export * from './LeadAction';
61
- export * from './SystemConfig';
62
- export * from './Propeller';
43
+ export * from './IntKeyValue';
63
44
  export * from './Lesson';
64
45
  export * from './DepartureRisks';
65
- export * from './FlightTicket';
66
- export * from './PreFlightInfo';
67
- export * from './FlightPlan';
68
- export * from './ADSBState';
69
- export * from './Location';
46
+ export * from './BookingSlot';
47
+ export * from './FlightPassenger';
48
+ export * from './ContactFilter';
49
+ export * from './TripRisks';
50
+ export * from './BaseFilter';
51
+ export * from './Account';
52
+ export * from './AirplaneFilter';
70
53
  export * from './Group';
71
- export * from './LogBookRecord';
54
+ export * from './Lookup';
55
+ export * from './TOLData';
56
+ export * from './SpecialRisks';
57
+ export * from './UserFilter';
58
+ export * from './Contact';
59
+ export * from './CreditFilter';
60
+ export * from './BillingRecord';
72
61
  export * from './PostFlightData';
73
62
  export * from './StringKeyValue';
74
- export * from './Certificate';
63
+ export * from './Engine';
64
+ export * from './BookingFilter';
65
+ export * from './LogBookRecord';
66
+ export * from './MaintenanceFilter';
67
+ export * from './Price';
68
+ export * from './Permission';
69
+ export * from './AuditLog';
70
+ export * from './FlightBilling';
71
+ export * from './DocumentRevision';
75
72
  export * from './OnBoard';
76
- export * from './IntKeyValue';
77
- export * from './Document';
78
- export * from './Billing';
79
- export * from './BillingRecord';
73
+ export * from './WeatherRisks';
80
74
  export * from './Mitigation';
81
- export * from './MessageConfirm';
82
- export * from './AnyKeyValue';
83
75
  export * from './FlightRisk';
84
- export * from './Permission';
85
- export * from './FlightBilling';
86
- export * from './TripRisks';
76
+ export * from './AccountFilter';
77
+ export * from './Fuel';
78
+ export * from './CertificateFilter';
79
+ export * from './SystemConfig';
80
+ export * from './TokenData';
81
+ export * from './Airplane';
82
+ export * from './FlightPlan';
83
+ export * from './Booking';
84
+ export * from './DestinationRisks';
85
+ export * from './Lead';
87
86
  export * from './User';
87
+ export * from './AnyKeyValue';
88
+ export * from './PreFlightInfo';
89
+ export * from './Propeller';
90
+ export * from './PreFlightData';
91
+ export * from './PostFlightInfo';
92
+ export * from './Certificate';
93
+ export * from './MessageConfirm';
94
+ export * from './LoginParams';
95
+ export * from './Billing';
96
+ export * from './CrewDutyDayRisks';
97
+ export * from './LeadFilter';
98
+ export * from './LeadAction';
88
99
  export * from './SystemMessage';
89
100
  export * from './Address';
90
- export * from './TokenData';
91
- export * from './Fuel';
92
- export * from './Booking';
93
- export * from './Campaign';
101
+ export * from './AuditLogFilter';
102
+ export * from './RiskAssessment';
103
+ export * from './FlightTicket';
104
+ export * from './Maintenance';
94
105
  export * from './Credit';
95
- export * from './Magneto';
96
- export * from './DestinationRisks';
97
- export * from './WeatherRisks';
98
- export * from './AuditLog';
106
+ export * from './Flight';
107
+ export * from './FlightFilter';
108
+ export * from './Document';
99
109
  export * from './ReFuel';
100
- export * from './Price';
110
+ export * from './LookupGroup';
111
+ export * from './Location';
112
+ export * from './Magneto';
113
+ export * from './Campaign';
101
114
  export * from './UsersEndPoint';
115
+ export * from './MyBookingsEndPoint';
102
116
  export * from './MyFlightsEndPoint';
103
- export * from './CreditsEndPoint';
104
- export * from './AirplanesEndPoint';
105
117
  export * from './AuditLogsEndPoint';
106
118
  export * from './BookingsEndPoint';
107
- export * from './FlightTicketsEndPoint';
119
+ export * from './GroupsEndPoint';
108
120
  export * from './LeadsEndPoint';
109
- export * from './LookupsEndPoint';
110
- export * from './MyBookingsEndPoint';
121
+ export * from './PriceListEndPoint';
122
+ export * from './MyAuthEndPoint';
111
123
  export * from './AccountsEndPoint';
112
124
  export * from './CampaignsEndPoint';
113
- export * from './CertificatesEndPoint';
125
+ export * from './ContactsEndPoint';
126
+ export * from './MessageConfirmsEndPoint';
127
+ export * from './SystemMessagesEndPoint';
128
+ export * from './SystemEndPoint';
129
+ export * from './CreditsEndPoint';
130
+ export * from './DocumentsEndPoint';
114
131
  export * from './FlightsEndPoint';
115
- export * from './GroupsEndPoint';
116
132
  export * from './MaintenancesEndPoint';
117
- export * from './PriceListEndPoint';
118
133
  export * from './SystemConfigsEndPoint';
119
- export * from './BookingSlotsEndPoint';
120
134
  export * from './UserEndPoint';
121
- export * from './MyAuthEndPoint';
122
- export * from './SystemMessagesEndPoint';
123
- export * from './DocumentsEndPoint';
124
- export * from './MessageConfirmsEndPoint';
125
- export * from './SystemEndPoint';
126
- export * from './ContactsEndPoint';
135
+ export * from './AirplanesEndPoint';
136
+ export * from './BookingSlotsEndPoint';
137
+ export * from './CertificatesEndPoint';
138
+ export * from './FlightTicketsEndPoint';
139
+ export * from './LookupsEndPoint';
127
140
  export * from './Enums';
@@ -1,27 +1,27 @@
1
- import { ContactsEndPoint } from '.';
2
- import { DocumentsEndPoint } from '.';
3
- import { MessageConfirmsEndPoint } from '.';
4
- import { SystemEndPoint } from '.';
5
- import { CreditsEndPoint } from '.';
6
- import { UsersEndPoint } from '.';
7
- import { MyFlightsEndPoint } from '.';
8
- import { MyBookingsEndPoint } from '.';
9
- import { AccountsEndPoint } from '.';
10
1
  import { AirplanesEndPoint } from '.';
11
- import { AuditLogsEndPoint } from '.';
12
- import { BookingsEndPoint } from '.';
13
- import { FlightTicketsEndPoint } from '.';
14
- import { LeadsEndPoint } from '.';
15
- import { LookupsEndPoint } from '.';
16
- import { SystemConfigsEndPoint } from '.';
17
2
  import { BookingSlotsEndPoint } from '.';
18
- import { CampaignsEndPoint } from '.';
19
3
  import { CertificatesEndPoint } from '.';
20
- import { FlightsEndPoint } from '.';
4
+ import { FlightTicketsEndPoint } from '.';
5
+ import { LookupsEndPoint } from '.';
6
+ import { UserEndPoint } from '.';
7
+ import { MyFlightsEndPoint } from '.';
8
+ import { AuditLogsEndPoint } from '.';
9
+ import { BookingsEndPoint } from '.';
21
10
  import { GroupsEndPoint } from '.';
22
- import { MaintenancesEndPoint } from '.';
11
+ import { LeadsEndPoint } from '.';
23
12
  import { PriceListEndPoint } from '.';
13
+ import { UsersEndPoint } from '.';
14
+ import { MyBookingsEndPoint } from '.';
15
+ import { AccountsEndPoint } from '.';
16
+ import { CampaignsEndPoint } from '.';
17
+ import { ContactsEndPoint } from '.';
18
+ import { MessageConfirmsEndPoint } from '.';
24
19
  import { SystemMessagesEndPoint } from '.';
25
- import { UserEndPoint } from '.';
26
20
  import { MyAuthEndPoint } from '.';
27
- export declare const Services: (typeof UsersEndPoint | typeof MyFlightsEndPoint | typeof CreditsEndPoint | typeof AirplanesEndPoint | typeof AuditLogsEndPoint | typeof BookingsEndPoint | typeof FlightTicketsEndPoint | typeof LeadsEndPoint | typeof LookupsEndPoint | typeof MyBookingsEndPoint | typeof AccountsEndPoint | typeof CampaignsEndPoint | typeof CertificatesEndPoint | typeof FlightsEndPoint | typeof GroupsEndPoint | typeof MaintenancesEndPoint | typeof PriceListEndPoint | typeof SystemConfigsEndPoint | typeof BookingSlotsEndPoint | typeof UserEndPoint | typeof MyAuthEndPoint | typeof SystemMessagesEndPoint | typeof DocumentsEndPoint | typeof MessageConfirmsEndPoint | typeof SystemEndPoint | typeof ContactsEndPoint)[];
21
+ import { CreditsEndPoint } from '.';
22
+ import { DocumentsEndPoint } from '.';
23
+ import { FlightsEndPoint } from '.';
24
+ import { MaintenancesEndPoint } from '.';
25
+ import { SystemConfigsEndPoint } from '.';
26
+ import { SystemEndPoint } from '.';
27
+ export declare const Services: (typeof UsersEndPoint | typeof MyBookingsEndPoint | typeof MyFlightsEndPoint | typeof AuditLogsEndPoint | typeof BookingsEndPoint | typeof GroupsEndPoint | typeof LeadsEndPoint | typeof PriceListEndPoint | typeof MyAuthEndPoint | typeof AccountsEndPoint | typeof CampaignsEndPoint | typeof ContactsEndPoint | typeof MessageConfirmsEndPoint | typeof SystemMessagesEndPoint | typeof SystemEndPoint | typeof CreditsEndPoint | typeof DocumentsEndPoint | typeof FlightsEndPoint | typeof MaintenancesEndPoint | typeof SystemConfigsEndPoint | typeof UserEndPoint | typeof AirplanesEndPoint | typeof BookingSlotsEndPoint | typeof CertificatesEndPoint | typeof FlightTicketsEndPoint | typeof LookupsEndPoint)[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aya-flights/ngx-goox-lib",
3
- "version": "1.19.10",
3
+ "version": "1.19.12",
4
4
  "description": "Angular client library for GooX backend",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -0,0 +1,3 @@
1
+ export declare class Entities<T> {
2
+ values: T[];
3
+ }
@@ -0,0 +1,3 @@
1
+ export declare class SimpleEntity<T> {
2
+ value: T;
3
+ }
package/utils/index.d.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  export * from './ActionResponse';
2
2
  export * from './BaseRestResponse';
3
+ export * from './Entities';
3
4
  export * from './EntityResponse';
4
5
  export * from './EntitiesResponse';
5
6
  export * from './rest-util';
7
+ export * from './SimpleEntity';