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