@aya-flights/ngx-goox-lib 2.19.53 → 2.19.57
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 +4328 -3864
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +1 -2
- 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/Booking.d.ts +1 -1
- package/lib/BookingPlan.d.ts +1 -1
- package/lib/BookingSlots.d.ts +1 -1
- 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 -3
- package/lib/ContactsEndPoint.d.ts +3 -3
- package/lib/Document.d.ts +1 -1
- package/lib/Flight.d.ts +14 -8
- package/lib/FlightCategoryCode.d.ts +33 -0
- package/lib/FlightClassCode.d.ts +13 -0
- package/lib/FlightRisk.d.ts +7 -7
- package/lib/FlightTicket.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +3 -3
- package/lib/FlightsFilter.d.ts +2 -2
- package/lib/Group.d.ts +1 -1
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/InstructionTypeCode.d.ts +9 -0
- package/lib/Lesson.d.ts +6 -1
- package/lib/LessonTypeCode.d.ts +12 -0
- package/lib/LicenseTypeFlag.d.ts +16 -0
- package/lib/Lookup.d.ts +1 -1
- package/lib/LookupsEndPoint.d.ts +1 -1
- package/lib/Maintenance.d.ts +2 -2
- package/lib/MessageConfirm.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +1 -1
- package/lib/PostFlightData.d.ts +2 -2
- package/lib/PreFlightData.d.ts +1 -1
- package/lib/RiskAssessment.d.ts +2 -2
- package/lib/Syllabus.d.ts +14 -0
- package/lib/SyllabusEndPoint.d.ts +37 -0
- package/lib/SystemMessage.d.ts +1 -1
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/UsersFilter.d.ts +1 -1
- package/lib/index.d.ts +113 -106
- package/lib/services.export.d.ts +22 -21
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1,145 +1,152 @@
|
|
|
1
|
-
export * from './BaseEntity';
|
|
2
|
-
export * from './BaseEntityEx';
|
|
3
1
|
export * from './Tuple';
|
|
4
2
|
export * from './ColumnDef';
|
|
5
3
|
export * from './TimeFrame';
|
|
6
4
|
export * from './TimeDataPoint';
|
|
7
5
|
export * from './TimeSeries';
|
|
8
|
-
export * from './
|
|
6
|
+
export * from './BaseEntity';
|
|
7
|
+
export * from './BaseEntityEx';
|
|
8
|
+
export * from './ADSBCategoryCode';
|
|
9
|
+
export * from './BillingStatusCode';
|
|
10
|
+
export * from './StatusCode';
|
|
11
|
+
export * from './AssessmentCode';
|
|
9
12
|
export * from './BookingStatusCode';
|
|
13
|
+
export * from './FlightClassCode';
|
|
10
14
|
export * from './MessageTypeCode';
|
|
11
|
-
export * from './ModuleCode';
|
|
12
15
|
export * from './PriorityCode';
|
|
13
|
-
export * from './
|
|
14
|
-
export * from './
|
|
15
|
-
export * from './AssessmentCode';
|
|
16
|
-
export * from './ConfirmStatusCode';
|
|
16
|
+
export * from './AirplaneStatusCode';
|
|
17
|
+
export * from './BookingTypeFlag';
|
|
17
18
|
export * from './OperatorCode';
|
|
18
|
-
export * from './
|
|
19
|
+
export * from './UserTypeCode';
|
|
19
20
|
export * from './ADSBSourceFlag';
|
|
20
|
-
export * from './BillingStatusCode';
|
|
21
|
-
export * from './FilterFlag';
|
|
22
|
-
export * from './UserRoleFlag';
|
|
23
|
-
export * from './ADSBCategoryCode';
|
|
24
|
-
export * from './CampaignStatusCode';
|
|
25
21
|
export * from './CurrencyCode';
|
|
26
|
-
export * from './
|
|
22
|
+
export * from './FilterFlag';
|
|
27
23
|
export * from './LeadStatusCode';
|
|
28
|
-
export * from './
|
|
29
|
-
export * from './TicketStatusCode';
|
|
30
|
-
export * from './CampaignTypeCode';
|
|
24
|
+
export * from './UserStatusCode';
|
|
31
25
|
export * from './LessonSubjectCode';
|
|
32
|
-
export * from './PermissionFlag';
|
|
33
|
-
export * from './StatusCode';
|
|
34
26
|
export * from './MaintenanceActionCode';
|
|
35
|
-
export * from './
|
|
36
|
-
export * from './
|
|
37
|
-
export * from './FlightPurposeCode';
|
|
38
|
-
export * from './FlightStatusCode';
|
|
39
|
-
export * from './AirplaneStatusCode';
|
|
40
|
-
export * from './BookingTypeFlag';
|
|
27
|
+
export * from './PermissionFlag';
|
|
28
|
+
export * from './TicketStatusCode';
|
|
41
29
|
export * from './FlightStateCode';
|
|
42
30
|
export * from './FlightTypeCode';
|
|
43
|
-
export * from './
|
|
44
|
-
export * from './
|
|
45
|
-
export * from './
|
|
46
|
-
export * from './
|
|
47
|
-
export * from './
|
|
48
|
-
export * from './
|
|
49
|
-
export * from './
|
|
50
|
-
export * from './
|
|
51
|
-
export * from './
|
|
52
|
-
export * from './
|
|
31
|
+
export * from './InstructionTypeCode';
|
|
32
|
+
export * from './AirplaneValidationFlag';
|
|
33
|
+
export * from './CampaignStatusCode';
|
|
34
|
+
export * from './CampaignTypeCode';
|
|
35
|
+
export * from './FlightCategoryCode';
|
|
36
|
+
export * from './FlightPurposeCode';
|
|
37
|
+
export * from './ModuleCode';
|
|
38
|
+
export * from './AccountStatusCode';
|
|
39
|
+
export * from './ConfirmStatusCode';
|
|
40
|
+
export * from './FlightStatusCode';
|
|
41
|
+
export * from './UserRoleFlag';
|
|
42
|
+
export * from './ValidationFlag';
|
|
43
|
+
export * from './ErrorCode';
|
|
44
|
+
export * from './LessonTypeCode';
|
|
45
|
+
export * from './LicenseTypeFlag';
|
|
46
|
+
export * from './PaymentMethodCode';
|
|
47
|
+
export * from './TransactionTypeCode';
|
|
53
48
|
export * from './Account';
|
|
54
|
-
export * from './
|
|
55
|
-
export * from './
|
|
49
|
+
export * from './Magneto';
|
|
50
|
+
export * from './BookingSlot';
|
|
51
|
+
export * from './Lead';
|
|
52
|
+
export * from './FlightPassenger';
|
|
53
|
+
export * from './Airplane';
|
|
54
|
+
export * from './CrewDutyDayRisks';
|
|
55
|
+
export * from './DestinationRisks';
|
|
56
|
+
export * from './CreditsFilter';
|
|
57
|
+
export * from './StringKeyValue';
|
|
58
|
+
export * from './AuditLog';
|
|
59
|
+
export * from './Certificate';
|
|
60
|
+
export * from './DepartureRisks';
|
|
56
61
|
export * from './SystemConfig';
|
|
57
|
-
export * from './
|
|
62
|
+
export * from './Address';
|
|
63
|
+
export * from './AuditLogFilter';
|
|
64
|
+
export * from './Engine';
|
|
58
65
|
export * from './ReFuel';
|
|
59
|
-
export * from './
|
|
60
|
-
export * from './
|
|
61
|
-
export * from './
|
|
66
|
+
export * from './Syllabus';
|
|
67
|
+
export * from './FlightsFilter';
|
|
68
|
+
export * from './BillingRecord';
|
|
69
|
+
export * from './TripRisks';
|
|
70
|
+
export * from './Lookup';
|
|
62
71
|
export * from './Booking';
|
|
63
72
|
export * from './Credit';
|
|
64
|
-
export * from './
|
|
65
|
-
export * from './
|
|
66
|
-
export * from './
|
|
67
|
-
export * from './
|
|
68
|
-
export * from './
|
|
69
|
-
export * from './
|
|
73
|
+
export * from './ADSBState';
|
|
74
|
+
export * from './AccountsFilter';
|
|
75
|
+
export * from './Location';
|
|
76
|
+
export * from './PreFlightInfo';
|
|
77
|
+
export * from './TokenData';
|
|
78
|
+
export * from './Propeller';
|
|
79
|
+
export * from './FlightBilling';
|
|
80
|
+
export * from './Group';
|
|
70
81
|
export * from './LeadAction';
|
|
71
|
-
export * from './
|
|
72
|
-
export * from './
|
|
73
|
-
export * from './
|
|
74
|
-
export * from './
|
|
75
|
-
export * from './
|
|
76
|
-
export * from './AnyKeyValue';
|
|
77
|
-
export * from './AuditLogFilter';
|
|
82
|
+
export * from './LeadsFilter';
|
|
83
|
+
export * from './Fuel';
|
|
84
|
+
export * from './Flight';
|
|
85
|
+
export * from './SpecialRisks';
|
|
86
|
+
export * from './SystemMessage';
|
|
78
87
|
export * from './UsersFilter';
|
|
79
|
-
export * from './
|
|
88
|
+
export * from './Contact';
|
|
89
|
+
export * from './DocumentRevision';
|
|
80
90
|
export * from './Lesson';
|
|
91
|
+
export * from './FlightTicket';
|
|
92
|
+
export * from './Maintenance';
|
|
81
93
|
export * from './RiskAssessment';
|
|
82
|
-
export * from './
|
|
83
|
-
export * from './
|
|
84
|
-
export * from './TripRisks';
|
|
94
|
+
export * from './MessageConfirm';
|
|
95
|
+
export * from './FlightRisk';
|
|
85
96
|
export * from './Price';
|
|
86
|
-
export * from './
|
|
87
|
-
export * from './DestinationRisks';
|
|
88
|
-
export * from './User';
|
|
89
|
-
export * from './AccountsFilter';
|
|
90
|
-
export * from './Permission';
|
|
91
|
-
export * from './FlightPassenger';
|
|
92
|
-
export * from './CreditsFilter';
|
|
93
|
-
export * from './PreFlightInfo';
|
|
94
|
-
export * from './BookingSlots';
|
|
95
|
-
export * from './Location';
|
|
96
|
-
export * from './Propeller';
|
|
97
|
-
export * from './Campaign';
|
|
98
|
-
export * from './CrewDutyDayRisks';
|
|
99
|
-
export * from './FlightTicket';
|
|
97
|
+
export * from './AnyKeyValue';
|
|
100
98
|
export * from './ContactsFilter';
|
|
101
|
-
export * from './
|
|
102
|
-
export * from './
|
|
103
|
-
export * from './FlightPlan';
|
|
104
|
-
export * from './PreFlightData';
|
|
105
|
-
export * from './ADSBState';
|
|
106
|
-
export * from './IntKeyValue';
|
|
107
|
-
export * from './Engine';
|
|
108
|
-
export * from './AuditLog';
|
|
109
|
-
export * from './Certificate';
|
|
99
|
+
export * from './MaintenancesFilter';
|
|
100
|
+
export * from './Document';
|
|
110
101
|
export * from './WeatherRisks';
|
|
111
|
-
export * from './
|
|
112
|
-
export * from './
|
|
113
|
-
export * from './FlightBilling';
|
|
102
|
+
export * from './FlightPlan';
|
|
103
|
+
export * from './Billing';
|
|
114
104
|
export * from './LookupGroup';
|
|
115
|
-
export * from './
|
|
116
|
-
export * from './
|
|
105
|
+
export * from './AirplanesFilter';
|
|
106
|
+
export * from './BookingsFilter';
|
|
107
|
+
export * from './Permission';
|
|
108
|
+
export * from './PostFlightInfo';
|
|
109
|
+
export * from './Campaign';
|
|
110
|
+
export * from './OnBoard';
|
|
111
|
+
export * from './User';
|
|
112
|
+
export * from './BookingSlots';
|
|
117
113
|
export * from './PostFlightData';
|
|
118
|
-
export * from './
|
|
119
|
-
export * from './
|
|
120
|
-
export * from './
|
|
121
|
-
export * from './
|
|
114
|
+
export * from './PreFlightData';
|
|
115
|
+
export * from './CertificatesFilter';
|
|
116
|
+
export * from './PilotQualificationsRisks';
|
|
117
|
+
export * from './LogBookRecord';
|
|
118
|
+
export * from './IntKeyValue';
|
|
119
|
+
export * from './LoginParams';
|
|
120
|
+
export * from './BookingPlan';
|
|
121
|
+
export * from './BookingSlotsSet';
|
|
122
|
+
export * from './TOLData';
|
|
123
|
+
export * from './Mitigation';
|
|
124
|
+
export * from './LookupsEndPoint';
|
|
125
|
+
export * from './MyCreditsEndPoint';
|
|
126
|
+
export * from './MyFlightsEndPoint';
|
|
122
127
|
export * from './AirplanesEndPoint';
|
|
123
|
-
export * from './
|
|
124
|
-
export * from './
|
|
128
|
+
export * from './FlightsEndPoint';
|
|
129
|
+
export * from './SyllabusEndPoint';
|
|
130
|
+
export * from './MessageConfirmsEndPoint';
|
|
131
|
+
export * from './SystemConfigsEndPoint';
|
|
132
|
+
export * from './SystemEndPoint';
|
|
125
133
|
export * from './MyAuthEndPoint';
|
|
134
|
+
export * from './MaintenancesEndPoint';
|
|
126
135
|
export * from './AuditLogsEndPoint';
|
|
127
|
-
export * from './
|
|
128
|
-
export * from './
|
|
129
|
-
export * from './FlightsEndPoint';
|
|
136
|
+
export * from './CreditsEndPoint';
|
|
137
|
+
export * from './DocumentsEndPoint';
|
|
130
138
|
export * from './UsersEndPoint';
|
|
131
|
-
export * from './
|
|
132
|
-
export * from './
|
|
133
|
-
export * from './SystemConfigsEndPoint';
|
|
134
|
-
export * from './ContactsEndPoint';
|
|
139
|
+
export * from './MyBookingsEndPoint';
|
|
140
|
+
export * from './CertificatesEndPoint';
|
|
135
141
|
export * from './FlightTicketsEndPoint';
|
|
142
|
+
export * from './LeadsEndPoint';
|
|
143
|
+
export * from './SystemMessagesEndPoint';
|
|
144
|
+
export * from './BookingSlotsEndPoint';
|
|
145
|
+
export * from './BookingsEndPoint';
|
|
136
146
|
export * from './PriceListEndPoint';
|
|
137
|
-
export * from './CampaignsEndPoint';
|
|
138
|
-
export * from './SystemEndPoint';
|
|
139
147
|
export * from './UserEndPoint';
|
|
140
|
-
export * from './
|
|
141
|
-
export * from './MyCreditsEndPoint';
|
|
148
|
+
export * from './GroupsEndPoint';
|
|
142
149
|
export * from './AccountsEndPoint';
|
|
143
|
-
export * from './
|
|
144
|
-
export * from './
|
|
150
|
+
export * from './CampaignsEndPoint';
|
|
151
|
+
export * from './ContactsEndPoint';
|
|
145
152
|
export * from './Enums';
|
package/lib/services.export.d.ts
CHANGED
|
@@ -1,28 +1,29 @@
|
|
|
1
|
+
import { MyAuthEndPoint } from '.';
|
|
2
|
+
import { MessageConfirmsEndPoint } from '.';
|
|
1
3
|
import { SystemConfigsEndPoint } from '.';
|
|
2
|
-
import { ContactsEndPoint } from '.';
|
|
3
|
-
import { LeadsEndPoint } from '.';
|
|
4
|
-
import { LookupsEndPoint } from '.';
|
|
5
|
-
import { CampaignsEndPoint } from '.';
|
|
6
|
-
import { FlightTicketsEndPoint } from '.';
|
|
7
|
-
import { PriceListEndPoint } from '.';
|
|
8
|
-
import { MyCreditsEndPoint } from '.';
|
|
9
|
-
import { AccountsEndPoint } from '.';
|
|
10
|
-
import { CreditsEndPoint } from '.';
|
|
11
4
|
import { SystemEndPoint } from '.';
|
|
12
|
-
import {
|
|
5
|
+
import { MaintenancesEndPoint } from '.';
|
|
6
|
+
import { AuditLogsEndPoint } from '.';
|
|
7
|
+
import { CreditsEndPoint } from '.';
|
|
8
|
+
import { DocumentsEndPoint } from '.';
|
|
9
|
+
import { UsersEndPoint } from '.';
|
|
10
|
+
import { SystemMessagesEndPoint } from '.';
|
|
13
11
|
import { MyBookingsEndPoint } from '.';
|
|
12
|
+
import { CertificatesEndPoint } from '.';
|
|
13
|
+
import { FlightTicketsEndPoint } from '.';
|
|
14
|
+
import { LeadsEndPoint } from '.';
|
|
15
|
+
import { UserEndPoint } from '.';
|
|
14
16
|
import { BookingSlotsEndPoint } from '.';
|
|
15
|
-
import {
|
|
17
|
+
import { BookingsEndPoint } from '.';
|
|
18
|
+
import { PriceListEndPoint } from '.';
|
|
19
|
+
import { ContactsEndPoint } from '.';
|
|
16
20
|
import { GroupsEndPoint } from '.';
|
|
17
|
-
import {
|
|
21
|
+
import { AccountsEndPoint } from '.';
|
|
22
|
+
import { CampaignsEndPoint } from '.';
|
|
23
|
+
import { LookupsEndPoint } from '.';
|
|
24
|
+
import { MyCreditsEndPoint } from '.';
|
|
25
|
+
import { MyFlightsEndPoint } from '.';
|
|
18
26
|
import { AirplanesEndPoint } from '.';
|
|
19
|
-
import { MessageConfirmsEndPoint } from '.';
|
|
20
|
-
import { AuditLogsEndPoint } from '.';
|
|
21
|
-
import { BookingsEndPoint } from '.';
|
|
22
|
-
import { CertificatesEndPoint } from '.';
|
|
23
|
-
import { MaintenancesEndPoint } from '.';
|
|
24
|
-
import { MyAuthEndPoint } from '.';
|
|
25
27
|
import { FlightsEndPoint } from '.';
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
export declare const Services: (typeof GroupsEndPoint | typeof DocumentsEndPoint | typeof MessageConfirmsEndPoint | typeof SystemMessagesEndPoint | typeof AirplanesEndPoint | typeof CertificatesEndPoint | typeof MaintenancesEndPoint | typeof MyAuthEndPoint | typeof AuditLogsEndPoint | typeof BookingsEndPoint | typeof MyFlightsEndPoint | typeof FlightsEndPoint | typeof UsersEndPoint | typeof LeadsEndPoint | typeof LookupsEndPoint | typeof SystemConfigsEndPoint | typeof ContactsEndPoint | typeof FlightTicketsEndPoint | typeof PriceListEndPoint | typeof CampaignsEndPoint | typeof SystemEndPoint | typeof UserEndPoint | typeof MyBookingsEndPoint | typeof MyCreditsEndPoint | typeof AccountsEndPoint | typeof CreditsEndPoint | typeof BookingSlotsEndPoint)[];
|
|
28
|
+
import { SyllabusEndPoint } from '.';
|
|
29
|
+
export declare const Services: (typeof LookupsEndPoint | typeof MyCreditsEndPoint | typeof MyFlightsEndPoint | typeof AirplanesEndPoint | typeof FlightsEndPoint | typeof SyllabusEndPoint | typeof MessageConfirmsEndPoint | typeof SystemConfigsEndPoint | typeof SystemEndPoint | typeof MyAuthEndPoint | typeof MaintenancesEndPoint | typeof AuditLogsEndPoint | typeof CreditsEndPoint | typeof DocumentsEndPoint | typeof UsersEndPoint | typeof MyBookingsEndPoint | typeof CertificatesEndPoint | typeof FlightTicketsEndPoint | typeof LeadsEndPoint | typeof SystemMessagesEndPoint | typeof BookingSlotsEndPoint | typeof BookingsEndPoint | typeof PriceListEndPoint | typeof UserEndPoint | typeof GroupsEndPoint | typeof AccountsEndPoint | typeof CampaignsEndPoint | typeof ContactsEndPoint)[];
|