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