@aya-flights/ngx-goox-lib 1.19.25 → 1.19.26
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 +3976 -3917
- 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 +2 -2
- package/lib/BookingSlot.d.ts +1 -1
- package/lib/Campaign.d.ts +1 -1
- package/lib/CampaignsEndPoint.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/Document.d.ts +1 -1
- package/lib/ErrorCode.d.ts +14 -0
- package/lib/Flight.d.ts +7 -7
- package/lib/FlightBilling.d.ts +1 -1
- package/lib/FlightPlan.d.ts +1 -1
- package/lib/FlightRisk.d.ts +7 -7
- package/lib/FlightsEndPoint.d.ts +5 -5
- package/lib/Group.d.ts +1 -1
- package/lib/Lead.d.ts +2 -2
- package/lib/LeadFilter.d.ts +1 -1
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/MaintenanceFilter.d.ts +1 -1
- package/lib/MyFlightsEndPoint.d.ts +1 -1
- package/lib/Permission.d.ts +1 -1
- package/lib/PostFlightData.d.ts +1 -1
- package/lib/PreFlightData.d.ts +4 -4
- package/lib/RiskAssessment.d.ts +3 -3
- package/lib/SystemConfig.d.ts +1 -1
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/UserFilter.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/index.d.ts +106 -105
- package/lib/services.export.d.ts +19 -19
- package/package.json +1 -1
package/lib/services.export.d.ts
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { BookingSlotsEndPoint } from '.';
|
|
3
|
-
import { ContactsEndPoint } from '.';
|
|
4
|
-
import { DocumentsEndPoint } from '.';
|
|
5
|
-
import { SystemMessagesEndPoint } from '.';
|
|
6
|
-
import { CertificatesEndPoint } from '.';
|
|
1
|
+
import { FlightTicketsEndPoint } from '.';
|
|
7
2
|
import { FlightsEndPoint } from '.';
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import { PriceListEndPoint } from '.';
|
|
3
|
+
import { SystemEndPoint } from '.';
|
|
4
|
+
import { SystemMessagesEndPoint } from '.';
|
|
11
5
|
import { UserEndPoint } from '.';
|
|
12
|
-
import {
|
|
6
|
+
import { AirplanesEndPoint } from '.';
|
|
13
7
|
import { AuditLogsEndPoint } from '.';
|
|
14
8
|
import { CampaignsEndPoint } from '.';
|
|
15
|
-
import {
|
|
9
|
+
import { CreditsEndPoint } from '.';
|
|
16
10
|
import { LookupsEndPoint } from '.';
|
|
17
|
-
import {
|
|
18
|
-
import { SystemEndPoint } from '.';
|
|
19
|
-
import { UsersEndPoint } from '.';
|
|
20
|
-
import { MyAuthEndPoint } from '.';
|
|
11
|
+
import { MyBookingsEndPoint } from '.';
|
|
21
12
|
import { AccountsEndPoint } from '.';
|
|
22
13
|
import { BookingsEndPoint } from '.';
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
14
|
+
import { CertificatesEndPoint } from '.';
|
|
15
|
+
import { ContactsEndPoint } from '.';
|
|
16
|
+
import { DocumentsEndPoint } from '.';
|
|
17
|
+
import { GroupsEndPoint } from '.';
|
|
18
|
+
import { SystemConfigsEndPoint } from '.';
|
|
26
19
|
import { MyFlightsEndPoint } from '.';
|
|
27
|
-
|
|
20
|
+
import { BookingSlotsEndPoint } from '.';
|
|
21
|
+
import { LeadsEndPoint } from '.';
|
|
22
|
+
import { MaintenancesEndPoint } from '.';
|
|
23
|
+
import { MessageConfirmsEndPoint } from '.';
|
|
24
|
+
import { PriceListEndPoint } from '.';
|
|
25
|
+
import { UsersEndPoint } from '.';
|
|
26
|
+
import { MyAuthEndPoint } from '.';
|
|
27
|
+
export declare const Services: (typeof BookingsEndPoint | typeof CertificatesEndPoint | typeof ContactsEndPoint | typeof DocumentsEndPoint | typeof GroupsEndPoint | typeof SystemConfigsEndPoint | typeof AccountsEndPoint | typeof LeadsEndPoint | typeof MaintenancesEndPoint | typeof MessageConfirmsEndPoint | typeof PriceListEndPoint | typeof UsersEndPoint | typeof MyAuthEndPoint | typeof MyFlightsEndPoint | typeof BookingSlotsEndPoint | typeof FlightsEndPoint | typeof SystemEndPoint | typeof SystemMessagesEndPoint | typeof UserEndPoint | typeof FlightTicketsEndPoint | typeof AuditLogsEndPoint | typeof CampaignsEndPoint | typeof CreditsEndPoint | typeof LookupsEndPoint | typeof MyBookingsEndPoint | typeof AirplanesEndPoint)[];
|