@aya-flights/ngx-goox-lib 1.19.15 → 1.19.17
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 +3600 -3578
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +1 -1
- package/lib/AccountsEndPoint.d.ts +1 -1
- package/lib/AirplanesEndPoint.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/BookingsEndPoint.d.ts +1 -1
- package/lib/Campaign.d.ts +1 -1
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/Certificate.d.ts +1 -1
- package/lib/ContactsEndPoint.d.ts +15 -3
- package/lib/Credit.d.ts +1 -1
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +8 -8
- package/lib/FlightFilter.d.ts +2 -2
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +4 -4
- package/lib/FlightsEndPoint.d.ts +3 -3
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/LeadsEndPoint.d.ts +1 -1
- package/lib/Maintenance.d.ts +1 -1
- package/lib/MaintenanceFilter.d.ts +1 -1
- package/lib/PostFlightData.d.ts +1 -1
- package/lib/PreFlightData.d.ts +1 -1
- package/lib/Price.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +3 -3
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/TokenData.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/UserFilter.d.ts +1 -1
- package/lib/index.d.ts +100 -100
- package/lib/services.export.d.ts +18 -18
- package/package.json +1 -1
package/lib/services.export.d.ts
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
import { BookingsEndPoint } from '.';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
2
|
+
import { FlightTicketsEndPoint } from '.';
|
|
3
|
+
import { SystemConfigsEndPoint } from '.';
|
|
4
|
+
import { SystemEndPoint } from '.';
|
|
5
|
+
import { UserEndPoint } from '.';
|
|
5
6
|
import { MyAuthEndPoint } from '.';
|
|
6
|
-
import {
|
|
7
|
-
import { BookingSlotsEndPoint } from '.';
|
|
7
|
+
import { CampaignsEndPoint } from '.';
|
|
8
8
|
import { ContactsEndPoint } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
9
|
+
import { CreditsEndPoint } from '.';
|
|
10
|
+
import { FlightsEndPoint } from '.';
|
|
11
|
+
import { LookupsEndPoint } from '.';
|
|
12
|
+
import { PriceListEndPoint } from '.';
|
|
12
13
|
import { UsersEndPoint } from '.';
|
|
13
14
|
import { AccountsEndPoint } from '.';
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
15
|
+
import { AirplanesEndPoint } from '.';
|
|
16
|
+
import { BookingSlotsEndPoint } from '.';
|
|
17
|
+
import { GroupsEndPoint } from '.';
|
|
18
|
+
import { MaintenancesEndPoint } from '.';
|
|
17
19
|
import { SystemMessagesEndPoint } from '.';
|
|
18
20
|
import { MyFlightsEndPoint } from '.';
|
|
19
|
-
import { MyBookingsEndPoint } from '.';
|
|
20
21
|
import { AuditLogsEndPoint } from '.';
|
|
21
22
|
import { CertificatesEndPoint } from '.';
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
|
|
27
|
-
export declare const Services: (typeof PriceListEndPoint | typeof SystemConfigsEndPoint | typeof SystemMessagesEndPoint | typeof MyFlightsEndPoint | typeof AccountsEndPoint | typeof MessageConfirmsEndPoint | typeof CreditsEndPoint | typeof FlightsEndPoint | typeof GroupsEndPoint | typeof SystemEndPoint | typeof UserEndPoint | typeof MyBookingsEndPoint | typeof AuditLogsEndPoint | typeof CertificatesEndPoint | typeof LookupsEndPoint | typeof MaintenancesEndPoint | typeof BookingsEndPoint | typeof CampaignsEndPoint | typeof ContactsEndPoint | typeof DocumentsEndPoint | typeof FlightTicketsEndPoint | typeof LeadsEndPoint | typeof UsersEndPoint | typeof MyAuthEndPoint | typeof AirplanesEndPoint | typeof BookingSlotsEndPoint)[];
|
|
23
|
+
import { DocumentsEndPoint } from '.';
|
|
24
|
+
import { LeadsEndPoint } from '.';
|
|
25
|
+
import { MessageConfirmsEndPoint } from '.';
|
|
26
|
+
import { MyBookingsEndPoint } from '.';
|
|
27
|
+
export declare const Services: (typeof LeadsEndPoint | typeof MessageConfirmsEndPoint | typeof MyBookingsEndPoint | typeof MyFlightsEndPoint | typeof AuditLogsEndPoint | typeof CertificatesEndPoint | typeof DocumentsEndPoint | typeof SystemEndPoint | typeof UserEndPoint | typeof BookingsEndPoint | typeof FlightTicketsEndPoint | typeof SystemConfigsEndPoint | typeof FlightsEndPoint | typeof LookupsEndPoint | typeof PriceListEndPoint | typeof MyAuthEndPoint | typeof CampaignsEndPoint | typeof ContactsEndPoint | typeof CreditsEndPoint | typeof GroupsEndPoint | typeof MaintenancesEndPoint | typeof SystemMessagesEndPoint | typeof UsersEndPoint | typeof AccountsEndPoint | typeof AirplanesEndPoint | typeof BookingSlotsEndPoint)[];
|