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