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