@aya-flights/ngx-goox-lib 2.19.19 → 2.19.21
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 +4018 -4012
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +3 -3
- package/lib/Airplane.d.ts +2 -2
- package/lib/AirplanesEndPoint.d.ts +3 -3
- package/lib/BookingFilter.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/BookingSlotsSet.d.ts +1 -1
- package/lib/Campaign.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/CreditFilter.d.ts +1 -1
- package/lib/Flight.d.ts +8 -8
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +4 -4
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +5 -5
- package/lib/Group.d.ts +2 -2
- package/lib/GroupsEndPoint.d.ts +5 -1
- package/lib/Lead.d.ts +1 -1
- package/lib/LogBookRecord.d.ts +1 -1
- package/lib/PostFlightData.d.ts +2 -2
- package/lib/PostFlightInfo.d.ts +1 -1
- package/lib/PreFlightData.d.ts +2 -2
- 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/index.d.ts +107 -107
- 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
1
|
import { MyFlightsEndPoint } from '.';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
2
|
+
import { CreditsEndPoint } from '.';
|
|
3
|
+
import { LookupsEndPoint } from '.';
|
|
4
|
+
import { PriceListEndPoint } from '.';
|
|
5
|
+
import { SystemEndPoint } from '.';
|
|
6
|
+
import { UserEndPoint } from '.';
|
|
5
7
|
import { MyAuthEndPoint } from '.';
|
|
6
|
-
import { MyCreditsEndPoint } from '.';
|
|
7
|
-
import { BookingsEndPoint } from '.';
|
|
8
8
|
import { CampaignsEndPoint } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import { MyBookingsEndPoint } from '.';
|
|
9
|
+
import { AirplanesEndPoint } from '.';
|
|
11
10
|
import { BookingSlotsEndPoint } from '.';
|
|
12
|
-
import {
|
|
13
|
-
import { GroupsEndPoint } from '.';
|
|
14
|
-
import { AuditLogsEndPoint } from '.';
|
|
11
|
+
import { BookingsEndPoint } from '.';
|
|
15
12
|
import { ContactsEndPoint } from '.';
|
|
13
|
+
import { FlightsEndPoint } from '.';
|
|
14
|
+
import { MessageConfirmsEndPoint } from '.';
|
|
16
15
|
import { SystemConfigsEndPoint } from '.';
|
|
17
|
-
import {
|
|
18
|
-
import { LookupsEndPoint } from '.';
|
|
19
|
-
import { UsersEndPoint } from '.';
|
|
20
|
-
import { AirplanesEndPoint } from '.';
|
|
16
|
+
import { AccountsEndPoint } from '.';
|
|
21
17
|
import { SystemMessagesEndPoint } from '.';
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
18
|
+
import { UsersEndPoint } from '.';
|
|
19
|
+
import { MyBookingsEndPoint } from '.';
|
|
24
20
|
import { MaintenancesEndPoint } from '.';
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
|
|
21
|
+
import { DocumentsEndPoint } from '.';
|
|
22
|
+
import { FlightTicketsEndPoint } from '.';
|
|
23
|
+
import { LeadsEndPoint } from '.';
|
|
24
|
+
import { MyCreditsEndPoint } from '.';
|
|
25
|
+
import { AuditLogsEndPoint } from '.';
|
|
26
|
+
import { CertificatesEndPoint } from '.';
|
|
27
|
+
import { GroupsEndPoint } from '.';
|
|
28
|
+
export declare const Services: (typeof AuditLogsEndPoint | typeof DocumentsEndPoint | typeof FlightTicketsEndPoint | typeof LeadsEndPoint | typeof MyCreditsEndPoint | typeof CertificatesEndPoint | typeof GroupsEndPoint | typeof CreditsEndPoint | typeof MyFlightsEndPoint | typeof CampaignsEndPoint | typeof LookupsEndPoint | typeof PriceListEndPoint | typeof SystemEndPoint | typeof UserEndPoint | typeof MyAuthEndPoint | typeof AirplanesEndPoint | typeof AccountsEndPoint | typeof BookingSlotsEndPoint | typeof BookingsEndPoint | typeof ContactsEndPoint | typeof FlightsEndPoint | typeof MessageConfirmsEndPoint | typeof SystemConfigsEndPoint | typeof MaintenancesEndPoint | typeof SystemMessagesEndPoint | typeof UsersEndPoint | typeof MyBookingsEndPoint)[];
|