@aya-flights/ngx-goox-lib 1.19.36 → 1.19.38
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 +3808 -3802
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +3 -3
- package/lib/Airplane.d.ts +3 -3
- package/lib/AirplanesEndPoint.d.ts +1 -1
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/BillingRecord.d.ts +2 -1
- package/lib/BookingFilter.d.ts +1 -1
- package/lib/BookingSlot.d.ts +1 -1
- package/lib/Campaign.d.ts +2 -2
- package/lib/Certificate.d.ts +1 -1
- package/lib/Contact.d.ts +1 -0
- package/lib/ContactsEndPoint.d.ts +2 -2
- package/lib/Credit.d.ts +1 -0
- package/lib/Flight.d.ts +6 -6
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightFilter.d.ts +1 -1
- package/lib/FlightPlan.d.ts +3 -3
- package/lib/FlightRisk.d.ts +6 -6
- package/lib/FlightsEndPoint.d.ts +3 -3
- package/lib/Lead.d.ts +1 -1
- package/lib/LeadsEndPoint.d.ts +1 -1
- package/lib/Maintenance.d.ts +1 -1
- package/lib/MessageConfirm.d.ts +2 -2
- package/lib/MyFlightsEndPoint.d.ts +2 -2
- package/lib/PostFlightData.d.ts +3 -3
- package/lib/PreFlightData.d.ts +3 -3
- package/lib/Price.d.ts +2 -1
- package/lib/RiskAssessment.d.ts +4 -4
- package/lib/User.d.ts +2 -2
- package/lib/UserFilter.d.ts +1 -1
- package/lib/index.d.ts +104 -104
- 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 {
|
|
1
|
+
import { CreditsEndPoint } from '.';
|
|
2
|
+
import { GroupsEndPoint } from '.';
|
|
2
3
|
import { SystemMessagesEndPoint } from '.';
|
|
3
|
-
import {
|
|
4
|
-
import { BookingsEndPoint } from '.';
|
|
5
|
-
import { FlightTicketsEndPoint } from '.';
|
|
4
|
+
import { AuditLogsEndPoint } from '.';
|
|
6
5
|
import { MyAuthEndPoint } from '.';
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
6
|
+
import { ContactsEndPoint } from '.';
|
|
7
|
+
import { FlightTicketsEndPoint } from '.';
|
|
8
|
+
import { FlightsEndPoint } from '.';
|
|
10
9
|
import { SystemEndPoint } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import { MyCreditsEndPoint } from '.';
|
|
13
|
-
import { AuditLogsEndPoint } from '.';
|
|
14
|
-
import { LeadsEndPoint } from '.';
|
|
10
|
+
import { MaintenancesEndPoint } from '.';
|
|
15
11
|
import { MessageConfirmsEndPoint } from '.';
|
|
16
|
-
import { MyFlightsEndPoint } from '.';
|
|
17
12
|
import { CampaignsEndPoint } from '.';
|
|
18
|
-
import { GroupsEndPoint } from '.';
|
|
19
13
|
import { LookupsEndPoint } from '.';
|
|
20
|
-
import {
|
|
14
|
+
import { MyCreditsEndPoint } from '.';
|
|
15
|
+
import { BookingSlotsEndPoint } from '.';
|
|
16
|
+
import { BookingsEndPoint } from '.';
|
|
17
|
+
import { DocumentsEndPoint } from '.';
|
|
21
18
|
import { PriceListEndPoint } from '.';
|
|
22
|
-
import {
|
|
19
|
+
import { UserEndPoint } from '.';
|
|
20
|
+
import { MyFlightsEndPoint } from '.';
|
|
23
21
|
import { AccountsEndPoint } from '.';
|
|
24
|
-
import { BookingSlotsEndPoint } from '.';
|
|
25
22
|
import { CertificatesEndPoint } from '.';
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
|
|
23
|
+
import { LeadsEndPoint } from '.';
|
|
24
|
+
import { UsersEndPoint } from '.';
|
|
25
|
+
import { MyBookingsEndPoint } from '.';
|
|
26
|
+
import { AirplanesEndPoint } from '.';
|
|
27
|
+
import { SystemConfigsEndPoint } from '.';
|
|
28
|
+
export declare const Services: (typeof SystemMessagesEndPoint | typeof CreditsEndPoint | typeof GroupsEndPoint | typeof AuditLogsEndPoint | typeof MyAuthEndPoint | typeof ContactsEndPoint | typeof FlightTicketsEndPoint | typeof FlightsEndPoint | typeof SystemEndPoint | typeof MaintenancesEndPoint | typeof MessageConfirmsEndPoint | typeof MyCreditsEndPoint | typeof CampaignsEndPoint | typeof LookupsEndPoint | typeof UserEndPoint | typeof MyFlightsEndPoint | typeof BookingSlotsEndPoint | typeof BookingsEndPoint | typeof DocumentsEndPoint | typeof PriceListEndPoint | typeof MyBookingsEndPoint | typeof AccountsEndPoint | typeof CertificatesEndPoint | typeof LeadsEndPoint | typeof UsersEndPoint | typeof AirplanesEndPoint | typeof SystemConfigsEndPoint)[];
|