@aya-flights/ngx-goox-lib 2.19.51 → 2.19.52
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 +4323 -4320
- 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/AirplanesEndPoint.d.ts +2 -2
- package/lib/AuditLog.d.ts +1 -1
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/BookingPlan.d.ts +1 -1
- package/lib/Campaign.d.ts +2 -2
- package/lib/CertificatesEndPoint.d.ts +1 -1
- package/lib/Contact.d.ts +1 -1
- package/lib/ContactsEndPoint.d.ts +3 -3
- package/lib/Credit.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/FlightRisk.d.ts +5 -5
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +4 -4
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/LeadsEndPoint.d.ts +1 -1
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +2 -2
- package/lib/PostFlightData.d.ts +4 -4
- package/lib/PostFlightInfo.d.ts +1 -1
- package/lib/PreFlightData.d.ts +1 -1
- package/lib/Price.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/index.d.ts +105 -105
- 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 { UsersEndPoint } from '.';
|
|
1
|
+
import { SystemConfigsEndPoint } from '.';
|
|
3
2
|
import { ContactsEndPoint } from '.';
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
3
|
+
import { LeadsEndPoint } from '.';
|
|
4
|
+
import { LookupsEndPoint } from '.';
|
|
5
|
+
import { CampaignsEndPoint } from '.';
|
|
6
|
+
import { FlightTicketsEndPoint } from '.';
|
|
7
|
+
import { PriceListEndPoint } from '.';
|
|
7
8
|
import { MyCreditsEndPoint } from '.';
|
|
8
|
-
import {
|
|
9
|
-
import { MyBookingsEndPoint } from '.';
|
|
9
|
+
import { AccountsEndPoint } from '.';
|
|
10
10
|
import { CreditsEndPoint } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import { PriceListEndPoint } from '.';
|
|
13
|
-
import { MessageConfirmsEndPoint } from '.';
|
|
14
|
-
import { SystemMessagesEndPoint } from '.';
|
|
15
|
-
import { MyAuthEndPoint } from '.';
|
|
16
|
-
import { CampaignsEndPoint } from '.';
|
|
17
|
-
import { CertificatesEndPoint } from '.';
|
|
11
|
+
import { SystemEndPoint } from '.';
|
|
18
12
|
import { UserEndPoint } from '.';
|
|
13
|
+
import { MyBookingsEndPoint } from '.';
|
|
19
14
|
import { BookingSlotsEndPoint } from '.';
|
|
20
|
-
import { LeadsEndPoint } from '.';
|
|
21
|
-
import { LookupsEndPoint } from '.';
|
|
22
15
|
import { DocumentsEndPoint } from '.';
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
16
|
+
import { GroupsEndPoint } from '.';
|
|
17
|
+
import { SystemMessagesEndPoint } from '.';
|
|
25
18
|
import { AirplanesEndPoint } from '.';
|
|
26
|
-
import {
|
|
19
|
+
import { MessageConfirmsEndPoint } from '.';
|
|
20
|
+
import { AuditLogsEndPoint } from '.';
|
|
21
|
+
import { BookingsEndPoint } from '.';
|
|
22
|
+
import { CertificatesEndPoint } from '.';
|
|
27
23
|
import { MaintenancesEndPoint } from '.';
|
|
28
|
-
|
|
24
|
+
import { MyAuthEndPoint } from '.';
|
|
25
|
+
import { FlightsEndPoint } from '.';
|
|
26
|
+
import { UsersEndPoint } from '.';
|
|
27
|
+
import { MyFlightsEndPoint } from '.';
|
|
28
|
+
export declare const Services: (typeof GroupsEndPoint | typeof DocumentsEndPoint | typeof MessageConfirmsEndPoint | typeof SystemMessagesEndPoint | typeof AirplanesEndPoint | typeof CertificatesEndPoint | typeof MaintenancesEndPoint | typeof MyAuthEndPoint | typeof AuditLogsEndPoint | typeof BookingsEndPoint | typeof MyFlightsEndPoint | typeof FlightsEndPoint | typeof UsersEndPoint | typeof LeadsEndPoint | typeof LookupsEndPoint | typeof SystemConfigsEndPoint | typeof ContactsEndPoint | typeof FlightTicketsEndPoint | typeof PriceListEndPoint | typeof CampaignsEndPoint | typeof SystemEndPoint | typeof UserEndPoint | typeof MyBookingsEndPoint | typeof MyCreditsEndPoint | typeof AccountsEndPoint | typeof CreditsEndPoint | typeof BookingSlotsEndPoint)[];
|