@aya-flights/ngx-goox-lib 2.19.23 → 2.19.25

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