@aya-flights/ngx-goox-lib 1.19.32 → 1.19.33
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 +3647 -3641
- 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/AuditLog.d.ts +1 -1
- package/lib/AuditLogsEndPoint.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +1 -1
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/Contact.d.ts +2 -2
- 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 +5 -5
- package/lib/FlightFilter.d.ts +2 -2
- package/lib/FlightPlan.d.ts +1 -1
- package/lib/FlightRisk.d.ts +5 -5
- package/lib/FlightsEndPoint.d.ts +4 -4
- package/lib/Group.d.ts +1 -1
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/LogBookRecord.d.ts +1 -1
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +1 -1
- package/lib/PostFlightData.d.ts +4 -4
- package/lib/PostFlightInfo.d.ts +2 -1
- package/lib/PreFlightData.d.ts +1 -1
- package/lib/PreFlightInfo.d.ts +2 -1
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/TimeSeries.d.ts +1 -1
- package/lib/UserEndPoint.d.ts +1 -1
- package/lib/index.d.ts +101 -101
- package/lib/services.export.d.ts +18 -18
- package/package.json +1 -1
package/lib/services.export.d.ts
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { BookingsEndPoint } from '.';
|
|
1
|
+
import { AuditLogsEndPoint } from '.';
|
|
3
2
|
import { MaintenancesEndPoint } from '.';
|
|
4
3
|
import { PriceListEndPoint } from '.';
|
|
5
|
-
import {
|
|
4
|
+
import { MyFlightsEndPoint } from '.';
|
|
5
|
+
import { UserEndPoint } from '.';
|
|
6
6
|
import { FlightTicketsEndPoint } from '.';
|
|
7
|
-
import {
|
|
8
|
-
import { LookupsEndPoint } from '.';
|
|
9
|
-
import { MyCreditsEndPoint } from '.';
|
|
10
|
-
import { AccountsEndPoint } from '.';
|
|
11
|
-
import { BookingSlotsEndPoint } from '.';
|
|
12
|
-
import { CertificatesEndPoint } from '.';
|
|
13
|
-
import { LeadsEndPoint } from '.';
|
|
7
|
+
import { ContactsEndPoint } from '.';
|
|
14
8
|
import { FlightsEndPoint } from '.';
|
|
9
|
+
import { LeadsEndPoint } from '.';
|
|
15
10
|
import { MessageConfirmsEndPoint } from '.';
|
|
11
|
+
import { AccountsEndPoint } from '.';
|
|
16
12
|
import { SystemMessagesEndPoint } from '.';
|
|
17
|
-
import {
|
|
18
|
-
import { AuditLogsEndPoint } from '.';
|
|
19
|
-
import { UsersEndPoint } from '.';
|
|
20
|
-
import { CampaignsEndPoint } from '.';
|
|
21
|
-
import { MyFlightsEndPoint } from '.';
|
|
22
|
-
import { ContactsEndPoint } from '.';
|
|
13
|
+
import { MyCreditsEndPoint } from '.';
|
|
23
14
|
import { SystemEndPoint } from '.';
|
|
15
|
+
import { BookingSlotsEndPoint } from '.';
|
|
16
|
+
import { BookingsEndPoint } from '.';
|
|
17
|
+
import { CampaignsEndPoint } from '.';
|
|
18
|
+
import { CertificatesEndPoint } from '.';
|
|
19
|
+
import { SystemConfigsEndPoint } from '.';
|
|
20
|
+
import { UsersEndPoint } from '.';
|
|
24
21
|
import { MyAuthEndPoint } from '.';
|
|
25
|
-
import { MyBookingsEndPoint } from '.';
|
|
26
22
|
import { AirplanesEndPoint } from '.';
|
|
23
|
+
import { LookupsEndPoint } from '.';
|
|
24
|
+
import { MyBookingsEndPoint } from '.';
|
|
27
25
|
import { DocumentsEndPoint } from '.';
|
|
28
|
-
|
|
26
|
+
import { GroupsEndPoint } from '.';
|
|
27
|
+
import { CreditsEndPoint } from '.';
|
|
28
|
+
export declare const Services: (typeof AccountsEndPoint | typeof ContactsEndPoint | typeof FlightsEndPoint | typeof LeadsEndPoint | typeof MessageConfirmsEndPoint | typeof SystemEndPoint | typeof SystemMessagesEndPoint | typeof MyCreditsEndPoint | typeof AirplanesEndPoint | typeof BookingSlotsEndPoint | typeof BookingsEndPoint | typeof CampaignsEndPoint | typeof CertificatesEndPoint | typeof SystemConfigsEndPoint | typeof UsersEndPoint | typeof MyAuthEndPoint | typeof DocumentsEndPoint | typeof LookupsEndPoint | typeof MyBookingsEndPoint | typeof CreditsEndPoint | typeof GroupsEndPoint | typeof AuditLogsEndPoint | typeof MaintenancesEndPoint | typeof PriceListEndPoint | typeof UserEndPoint | typeof MyFlightsEndPoint | typeof FlightTicketsEndPoint)[];
|