@aya-flights/ngx-goox-lib 1.19.64 → 1.19.65
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 +4113 -4112
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +1 -1
- package/lib/AccountsEndPoint.d.ts +2 -2
- package/lib/Airplane.d.ts +2 -2
- package/lib/AirplanesEndPoint.d.ts +1 -1
- package/lib/AuditLog.d.ts +1 -1
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingSlot.d.ts +1 -0
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/BookingSlotsSet.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/Contact.d.ts +1 -1
- package/lib/ContactsEndPoint.d.ts +1 -1
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +6 -6
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightFilter.d.ts +2 -2
- package/lib/FlightPlan.d.ts +2 -2
- package/lib/FlightRisk.d.ts +4 -4
- package/lib/FlightsEndPoint.d.ts +4 -4
- package/lib/Group.d.ts +1 -1
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/Maintenance.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +1 -1
- package/lib/PostFlightInfo.d.ts +1 -1
- package/lib/PreFlightData.d.ts +4 -4
- package/lib/RiskAssessment.d.ts +1 -1
- package/lib/UserFilter.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +106 -106
- package/lib/services.export.d.ts +19 -19
- package/package.json +1 -1
package/lib/services.export.d.ts
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { UsersEndPoint } from '.';
|
|
2
|
+
import { GroupsEndPoint } from '.';
|
|
3
|
+
import { SystemEndPoint } from '.';
|
|
3
4
|
import { MyAuthEndPoint } from '.';
|
|
4
|
-
import {
|
|
5
|
+
import { FlightsEndPoint } from '.';
|
|
6
|
+
import { UserEndPoint } from '.';
|
|
7
|
+
import { ContactsEndPoint } from '.';
|
|
8
|
+
import { DocumentsEndPoint } from '.';
|
|
9
|
+
import { SystemConfigsEndPoint } from '.';
|
|
10
|
+
import { MyCreditsEndPoint } from '.';
|
|
5
11
|
import { AuditLogsEndPoint } from '.';
|
|
12
|
+
import { PriceListEndPoint } from '.';
|
|
6
13
|
import { CertificatesEndPoint } from '.';
|
|
7
14
|
import { LeadsEndPoint } from '.';
|
|
8
|
-
import { MaintenancesEndPoint } from '.';
|
|
9
|
-
import { SystemConfigsEndPoint } from '.';
|
|
10
15
|
import { BookingSlotsEndPoint } from '.';
|
|
11
|
-
import { ContactsEndPoint } from '.';
|
|
12
|
-
import { CreditsEndPoint } from '.';
|
|
13
|
-
import { FlightTicketsEndPoint } from '.';
|
|
14
|
-
import { DocumentsEndPoint } from '.';
|
|
15
|
-
import { PriceListEndPoint } from '.';
|
|
16
|
-
import { AirplanesEndPoint } from '.';
|
|
17
16
|
import { CampaignsEndPoint } from '.';
|
|
18
|
-
import {
|
|
17
|
+
import { LookupsEndPoint } from '.';
|
|
18
|
+
import { SystemMessagesEndPoint } from '.';
|
|
19
|
+
import { MyBookingsEndPoint } from '.';
|
|
19
20
|
import { AccountsEndPoint } from '.';
|
|
21
|
+
import { MaintenancesEndPoint } from '.';
|
|
22
|
+
import { MyFlightsEndPoint } from '.';
|
|
20
23
|
import { BookingsEndPoint } from '.';
|
|
21
|
-
import {
|
|
22
|
-
import { FlightsEndPoint } from '.';
|
|
23
|
-
import { LookupsEndPoint } from '.';
|
|
24
|
-
import { MyCreditsEndPoint } from '.';
|
|
25
|
-
import { GroupsEndPoint } from '.';
|
|
24
|
+
import { CreditsEndPoint } from '.';
|
|
26
25
|
import { MessageConfirmsEndPoint } from '.';
|
|
27
|
-
import {
|
|
28
|
-
|
|
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)[];
|