@aya-flights/ngx-goox-lib 2.19.28 → 2.19.31
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 +4375 -4288
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +2 -2
- package/lib/Airplane.d.ts +3 -3
- package/lib/AirplanesEndPoint.d.ts +3 -3
- package/lib/BookingPlan.d.ts +21 -0
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/BookingSlotsSet.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +6 -1
- package/lib/Certificate.d.ts +2 -2
- package/lib/Contact.d.ts +2 -2
- package/lib/ContactsEndPoint.d.ts +4 -4
- package/lib/Credit.d.ts +2 -2
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +7 -7
- package/lib/FlightPassenger.d.ts +1 -1
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +6 -6
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +8 -4
- package/lib/FlightsFilter.d.ts +1 -1
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/Lead.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 +1 -1
- package/lib/PreFlightData.d.ts +2 -2
- package/lib/User.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +110 -109
- package/lib/services.export.d.ts +20 -20
- package/package.json +1 -1
package/lib/services.export.d.ts
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ContactsEndPoint } from '.';
|
|
3
|
-
import { LeadsEndPoint } from '.';
|
|
4
|
-
import { UserEndPoint } from '.';
|
|
5
|
-
import { PriceListEndPoint } from '.';
|
|
6
|
-
import { BookingSlotsEndPoint } from '.';
|
|
7
|
-
import { GroupsEndPoint } from '.';
|
|
1
|
+
import { FlightTicketsEndPoint } from '.';
|
|
8
2
|
import { SystemEndPoint } from '.';
|
|
9
|
-
import {
|
|
3
|
+
import { SystemMessagesEndPoint } from '.';
|
|
10
4
|
import { MyCreditsEndPoint } from '.';
|
|
11
5
|
import { MyFlightsEndPoint } from '.';
|
|
12
6
|
import { AirplanesEndPoint } from '.';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
7
|
+
import { BookingSlotsEndPoint } from '.';
|
|
8
|
+
import { CampaignsEndPoint } from '.';
|
|
15
9
|
import { CertificatesEndPoint } from '.';
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import { UsersEndPoint } from '.';
|
|
19
|
-
import { MyBookingsEndPoint } from '.';
|
|
20
|
-
import { AccountsEndPoint } from '.';
|
|
10
|
+
import { LookupsEndPoint } from '.';
|
|
11
|
+
import { AuditLogsEndPoint } from '.';
|
|
21
12
|
import { DocumentsEndPoint } from '.';
|
|
13
|
+
import { AccountsEndPoint } from '.';
|
|
14
|
+
import { FlightsEndPoint } from '.';
|
|
15
|
+
import { PriceListEndPoint } from '.';
|
|
16
|
+
import { MyBookingsEndPoint } from '.';
|
|
17
|
+
import { CreditsEndPoint } from '.';
|
|
18
|
+
import { MaintenancesEndPoint } from '.';
|
|
22
19
|
import { MessageConfirmsEndPoint } from '.';
|
|
23
|
-
import {
|
|
20
|
+
import { UsersEndPoint } from '.';
|
|
24
21
|
import { BookingsEndPoint } from '.';
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
|
|
22
|
+
import { GroupsEndPoint } from '.';
|
|
23
|
+
import { ContactsEndPoint } from '.';
|
|
24
|
+
import { LeadsEndPoint } from '.';
|
|
25
|
+
import { SystemConfigsEndPoint } from '.';
|
|
26
|
+
import { UserEndPoint } from '.';
|
|
27
|
+
import { MyAuthEndPoint } from '.';
|
|
28
|
+
export declare const Services: (typeof UserEndPoint | typeof MyAuthEndPoint | typeof ContactsEndPoint | typeof LeadsEndPoint | typeof SystemConfigsEndPoint | typeof MyFlightsEndPoint | typeof AirplanesEndPoint | typeof FlightTicketsEndPoint | typeof SystemEndPoint | typeof SystemMessagesEndPoint | typeof MyCreditsEndPoint | typeof BookingSlotsEndPoint | typeof AuditLogsEndPoint | typeof CampaignsEndPoint | typeof CertificatesEndPoint | typeof LookupsEndPoint | typeof AccountsEndPoint | typeof DocumentsEndPoint | typeof CreditsEndPoint | typeof FlightsEndPoint | typeof PriceListEndPoint | typeof MyBookingsEndPoint | typeof BookingsEndPoint | typeof MaintenancesEndPoint | typeof MessageConfirmsEndPoint | typeof UsersEndPoint | typeof GroupsEndPoint)[];
|