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