@aya-flights/ngx-goox-lib 2.18.130 → 2.18.131

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