@aya-flights/ngx-goox-lib 2.18.1-exp → 2.18.2-exp
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/esm2022/lib/model/Account.mjs +1 -1
- package/esm2022/lib/model/Airplane.mjs +1 -1
- package/esm2022/lib/model/Booking.mjs +1 -1
- package/esm2022/lib/model/Certificate.mjs +1 -1
- package/esm2022/lib/model/ContactsFilter.mjs +1 -1
- package/esm2022/lib/model/Credit.mjs +1 -1
- package/esm2022/lib/model/Flight.mjs +1 -1
- package/esm2022/lib/model/FlightBilling.mjs +1 -1
- package/esm2022/lib/model/FlightPlan.mjs +1 -1
- package/esm2022/lib/model/FlightRisk.mjs +1 -1
- package/esm2022/lib/model/FlightsFilter.mjs +1 -1
- package/esm2022/lib/model/Group.mjs +1 -1
- package/esm2022/lib/model/MaintenancesFilter.mjs +1 -1
- package/esm2022/lib/model/MessageConfirm.mjs +1 -1
- package/esm2022/lib/model/Notification.mjs +1 -1
- package/esm2022/lib/model/PostFlightInfo.mjs +1 -1
- package/esm2022/lib/model/PreFlightInfo.mjs +1 -1
- package/esm2022/lib/model/RiskAssessment.mjs +1 -1
- package/esm2022/lib/model/SystemMessage.mjs +1 -1
- package/esm2022/lib/model/User.mjs +1 -1
- package/esm2022/lib/model/UsersFilter.mjs +1 -1
- package/esm2022/lib/model/index.mjs +124 -124
- package/esm2022/lib/services/AccountsEndPoint.mjs +189 -0
- package/esm2022/lib/services/AirplanesEndPoint.mjs +196 -0
- package/esm2022/lib/services/AuditLogsEndPoint.mjs +120 -0
- package/esm2022/lib/services/BookingSlotsEndPoint.mjs +139 -0
- package/esm2022/lib/services/BookingsEndPoint.mjs +201 -0
- package/esm2022/lib/services/CampaignsEndPoint.mjs +96 -0
- package/esm2022/lib/services/CertificatesEndPoint.mjs +104 -0
- package/esm2022/lib/services/ContactsEndPoint.mjs +255 -0
- package/esm2022/lib/services/ContactsGroupsEndPoint.mjs +96 -0
- package/esm2022/lib/services/CreditsEndPoint.mjs +101 -0
- package/esm2022/lib/services/DocumentsEndPoint.mjs +109 -0
- package/esm2022/lib/services/FlightTicketsEndPoint.mjs +80 -0
- package/esm2022/lib/services/FlightsEndPoint.mjs +335 -0
- package/esm2022/lib/services/GroupsEndPoint.mjs +96 -0
- package/esm2022/lib/services/LeadsEndPoint.mjs +203 -0
- package/esm2022/lib/services/LookupsEndPoint.mjs +87 -0
- package/esm2022/lib/services/MaintenancesEndPoint.mjs +104 -0
- package/esm2022/lib/services/McpToolsEndPoint.mjs +58 -0
- package/esm2022/lib/services/MessageConfirmsEndPoint.mjs +104 -0
- package/esm2022/lib/services/MyAuthEndPoint.mjs +58 -0
- package/esm2022/lib/services/MyBookingsEndPoint.mjs +148 -0
- package/esm2022/lib/services/MyCertificatesEndPoint.mjs +101 -0
- package/esm2022/lib/services/MyCreditsEndPoint.mjs +50 -0
- package/esm2022/lib/services/MyFlightsEndPoint.mjs +137 -0
- package/esm2022/lib/services/MyStudentsEndPoint.mjs +62 -0
- package/esm2022/lib/services/PriceListEndPoint.mjs +80 -0
- package/esm2022/lib/services/SyllabusEndPoint.mjs +89 -0
- package/esm2022/lib/services/SystemConfigsEndPoint.mjs +71 -0
- package/esm2022/lib/services/SystemEndPoint.mjs +34 -0
- package/esm2022/lib/services/SystemMessagesEndPoint.mjs +105 -0
- package/esm2022/lib/services/UserEndPoint.mjs +35 -0
- package/esm2022/lib/services/UsersEndPoint.mjs +114 -0
- package/esm2022/lib/services/index.mjs +34 -34
- package/fesm2022/aya-flights-ngx-goox-lib.mjs +4379 -4379
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/model/Account.d.ts +2 -2
- package/lib/model/Airplane.d.ts +5 -5
- package/lib/model/Booking.d.ts +1 -1
- package/lib/model/Certificate.d.ts +1 -1
- package/lib/model/ContactsFilter.d.ts +1 -1
- package/lib/model/Credit.d.ts +1 -1
- package/lib/model/Flight.d.ts +4 -4
- package/lib/model/FlightBilling.d.ts +1 -1
- package/lib/model/FlightPlan.d.ts +2 -2
- package/lib/model/FlightRisk.d.ts +5 -5
- package/lib/model/FlightsFilter.d.ts +2 -2
- package/lib/model/Group.d.ts +1 -1
- package/lib/model/MaintenancesFilter.d.ts +1 -1
- package/lib/model/MessageConfirm.d.ts +2 -2
- package/lib/model/Notification.d.ts +1 -1
- package/lib/model/PostFlightInfo.d.ts +2 -2
- package/lib/model/PreFlightInfo.d.ts +1 -1
- package/lib/model/RiskAssessment.d.ts +2 -2
- package/lib/model/SystemMessage.d.ts +1 -1
- package/lib/model/User.d.ts +1 -1
- package/lib/model/UsersFilter.d.ts +1 -1
- package/lib/model/index.d.ts +123 -123
- package/lib/services/{AccountsService.d.ts → AccountsEndPoint.d.ts} +5 -5
- package/lib/services/{AirplanesService.d.ts → AirplanesEndPoint.d.ts} +13 -13
- package/lib/services/{AuditLogsService.d.ts → AuditLogsEndPoint.d.ts} +5 -5
- package/lib/services/{BookingSlotsService.d.ts → BookingSlotsEndPoint.d.ts} +5 -5
- package/lib/services/{BookingsService.d.ts → BookingsEndPoint.d.ts} +6 -6
- package/lib/services/{CampaignsService.d.ts → CampaignsEndPoint.d.ts} +5 -5
- package/lib/services/{CertificatesService.d.ts → CertificatesEndPoint.d.ts} +3 -3
- package/lib/services/{ContactsService.d.ts → ContactsEndPoint.d.ts} +14 -14
- package/lib/services/{ContactsGroupsService.d.ts → ContactsGroupsEndPoint.d.ts} +4 -4
- package/lib/services/{CreditsService.d.ts → CreditsEndPoint.d.ts} +5 -5
- package/lib/services/{DocumentsService.d.ts → DocumentsEndPoint.d.ts} +4 -4
- package/lib/services/{FlightTicketsService.d.ts → FlightTicketsEndPoint.d.ts} +5 -5
- package/lib/services/{FlightsService.d.ts → FlightsEndPoint.d.ts} +10 -10
- package/lib/services/{GroupsService.d.ts → GroupsEndPoint.d.ts} +4 -4
- package/lib/services/{LeadsService.d.ts → LeadsEndPoint.d.ts} +8 -8
- package/lib/services/{LookupsService.d.ts → LookupsEndPoint.d.ts} +3 -3
- package/lib/services/{MaintenancesService.d.ts → MaintenancesEndPoint.d.ts} +3 -3
- package/lib/services/{McpToolsService.d.ts → McpToolsEndPoint.d.ts} +3 -3
- package/lib/services/{MessageConfirmsService.d.ts → MessageConfirmsEndPoint.d.ts} +6 -6
- package/lib/services/{MyAuthService.d.ts → MyAuthEndPoint.d.ts} +4 -4
- package/lib/services/{MyBookingsService.d.ts → MyBookingsEndPoint.d.ts} +6 -6
- package/lib/services/{MyCertificatesService.d.ts → MyCertificatesEndPoint.d.ts} +4 -4
- package/lib/services/{MyCreditsService.d.ts → MyCreditsEndPoint.d.ts} +4 -4
- package/lib/services/{MyFlightsService.d.ts → MyFlightsEndPoint.d.ts} +9 -9
- package/lib/services/{MyStudentsService.d.ts → MyStudentsEndPoint.d.ts} +3 -3
- package/lib/services/{PriceListService.d.ts → PriceListEndPoint.d.ts} +5 -5
- package/lib/services/{SyllabusService.d.ts → SyllabusEndPoint.d.ts} +5 -5
- package/lib/services/{SystemConfigsService.d.ts → SystemConfigsEndPoint.d.ts} +4 -4
- package/lib/services/{SystemService.d.ts → SystemEndPoint.d.ts} +3 -3
- package/lib/services/{SystemMessagesService.d.ts → SystemMessagesEndPoint.d.ts} +5 -5
- package/lib/services/{UserService.d.ts → UserEndPoint.d.ts} +3 -3
- package/lib/services/{UsersService.d.ts → UsersEndPoint.d.ts} +6 -6
- package/lib/services/index.d.ts +33 -33
- package/package.json +1 -1
- package/esm2022/lib/services/AccountsService.mjs +0 -189
- package/esm2022/lib/services/AirplanesService.mjs +0 -196
- package/esm2022/lib/services/AuditLogsService.mjs +0 -120
- package/esm2022/lib/services/BookingSlotsService.mjs +0 -139
- package/esm2022/lib/services/BookingsService.mjs +0 -201
- package/esm2022/lib/services/CampaignsService.mjs +0 -96
- package/esm2022/lib/services/CertificatesService.mjs +0 -104
- package/esm2022/lib/services/ContactsGroupsService.mjs +0 -96
- package/esm2022/lib/services/ContactsService.mjs +0 -255
- package/esm2022/lib/services/CreditsService.mjs +0 -101
- package/esm2022/lib/services/DocumentsService.mjs +0 -109
- package/esm2022/lib/services/FlightTicketsService.mjs +0 -80
- package/esm2022/lib/services/FlightsService.mjs +0 -335
- package/esm2022/lib/services/GroupsService.mjs +0 -96
- package/esm2022/lib/services/LeadsService.mjs +0 -203
- package/esm2022/lib/services/LookupsService.mjs +0 -87
- package/esm2022/lib/services/MaintenancesService.mjs +0 -104
- package/esm2022/lib/services/McpToolsService.mjs +0 -58
- package/esm2022/lib/services/MessageConfirmsService.mjs +0 -104
- package/esm2022/lib/services/MyAuthService.mjs +0 -58
- package/esm2022/lib/services/MyBookingsService.mjs +0 -148
- package/esm2022/lib/services/MyCertificatesService.mjs +0 -101
- package/esm2022/lib/services/MyCreditsService.mjs +0 -50
- package/esm2022/lib/services/MyFlightsService.mjs +0 -137
- package/esm2022/lib/services/MyStudentsService.mjs +0 -62
- package/esm2022/lib/services/PriceListService.mjs +0 -80
- package/esm2022/lib/services/SyllabusService.mjs +0 -89
- package/esm2022/lib/services/SystemConfigsService.mjs +0 -71
- package/esm2022/lib/services/SystemMessagesService.mjs +0 -105
- package/esm2022/lib/services/SystemService.mjs +0 -34
- package/esm2022/lib/services/UserService.mjs +0 -35
- package/esm2022/lib/services/UsersService.mjs +0 -114
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
+
import { ActionResponse } from '../model';
|
|
4
|
+
import { EntitiesResponse } from '../model';
|
|
5
|
+
import { TimeSeries } from '../model';
|
|
3
6
|
import { BookingPlan } from '../model';
|
|
4
7
|
import { EntityResponse } from '../model';
|
|
5
8
|
import { Booking } from '../model';
|
|
6
9
|
import { BookingStatusCode } from '../model';
|
|
7
|
-
import { ActionResponse } from '../model';
|
|
8
|
-
import { EntitiesResponse } from '../model';
|
|
9
|
-
import { TimeSeries } from '../model';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
|
-
export declare class
|
|
11
|
+
export declare class BookingsEndPoint {
|
|
12
12
|
private config;
|
|
13
13
|
private rest;
|
|
14
14
|
private baseUrl;
|
|
@@ -65,6 +65,6 @@ export declare class BookingsService {
|
|
|
65
65
|
* Launch flight from booking
|
|
66
66
|
*/
|
|
67
67
|
launch(body?: Booking): import("rxjs").Observable<ActionResponse>;
|
|
68
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
69
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
68
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BookingsEndPoint, never>;
|
|
69
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BookingsEndPoint>;
|
|
70
70
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
-
import { EntitiesResponse } from '../model';
|
|
4
|
-
import { StringKeyValue } from '../model';
|
|
5
3
|
import { EntityResponse } from '../model';
|
|
6
4
|
import { Campaign } from '../model';
|
|
7
5
|
import { ActionResponse } from '../model';
|
|
6
|
+
import { EntitiesResponse } from '../model';
|
|
7
|
+
import { StringKeyValue } from '../model';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class
|
|
9
|
+
export declare class CampaignsEndPoint {
|
|
10
10
|
private config;
|
|
11
11
|
private rest;
|
|
12
12
|
private baseUrl;
|
|
@@ -39,6 +39,6 @@ export declare class CampaignsService {
|
|
|
39
39
|
* Lookup campaigns ID->Name by filter
|
|
40
40
|
*/
|
|
41
41
|
lookup(search?: string, sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<StringKeyValue>>;
|
|
42
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
43
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CampaignsEndPoint, never>;
|
|
43
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CampaignsEndPoint>;
|
|
44
44
|
}
|
|
@@ -6,7 +6,7 @@ import { ActionResponse } from '../model';
|
|
|
6
6
|
import { StatusCode } from '../model';
|
|
7
7
|
import { EntitiesResponse } from '../model';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class
|
|
9
|
+
export declare class CertificatesEndPoint {
|
|
10
10
|
private config;
|
|
11
11
|
private rest;
|
|
12
12
|
private baseUrl;
|
|
@@ -47,6 +47,6 @@ export declare class CertificatesService {
|
|
|
47
47
|
* Delete certificate reference document
|
|
48
48
|
*/
|
|
49
49
|
deleteReference(id?: string): import("rxjs").Observable<ActionResponse>;
|
|
50
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
51
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CertificatesEndPoint, never>;
|
|
51
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CertificatesEndPoint>;
|
|
52
52
|
}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
+
import { ActionResponse } from '../model';
|
|
4
|
+
import { TypeRatingFlag } from '../model';
|
|
5
|
+
import { StringKeyValue } from '../model';
|
|
6
|
+
import { FlightTypeCode } from '../model';
|
|
7
|
+
import { FlightStateCode } from '../model';
|
|
3
8
|
import { Flight } from '../model';
|
|
4
|
-
import {
|
|
9
|
+
import { EntityResponse } from '../model';
|
|
10
|
+
import { Contact } from '../model';
|
|
5
11
|
import { LicenseKindFlag } from '../model';
|
|
6
|
-
import { Certificate } from '../model';
|
|
7
|
-
import { FlightStatusCode } from '../model';
|
|
8
12
|
import { FlightPurposeCode } from '../model';
|
|
9
13
|
import { MessageConfirm } from '../model';
|
|
14
|
+
import { Certificate } from '../model';
|
|
15
|
+
import { Document } from '../model';
|
|
16
|
+
import { StatusCode } from '../model';
|
|
10
17
|
import { FlightCategoryCode } from '../model';
|
|
11
18
|
import { EntitiesResponse } from '../model';
|
|
12
|
-
import {
|
|
13
|
-
import { EntityResponse } from '../model';
|
|
14
|
-
import { ActionResponse } from '../model';
|
|
15
|
-
import { TypeRatingFlag } from '../model';
|
|
16
|
-
import { StringKeyValue } from '../model';
|
|
17
|
-
import { Contact } from '../model';
|
|
18
|
-
import { StatusCode } from '../model';
|
|
19
|
-
import { FlightStateCode } from '../model';
|
|
19
|
+
import { FlightStatusCode } from '../model';
|
|
20
20
|
import * as i0 from "@angular/core";
|
|
21
|
-
export declare class
|
|
21
|
+
export declare class ContactsEndPoint {
|
|
22
22
|
private config;
|
|
23
23
|
private rest;
|
|
24
24
|
private baseUrl;
|
|
@@ -83,6 +83,6 @@ export declare class ContactsService {
|
|
|
83
83
|
* Download student sheet as CSV document
|
|
84
84
|
*/
|
|
85
85
|
downloadStudentSheetCsv(id?: string): import("rxjs").Observable<import("@angular/common/http").HttpEvent<Blob>>;
|
|
86
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
87
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
86
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContactsEndPoint, never>;
|
|
87
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ContactsEndPoint>;
|
|
88
88
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
-
import { EntityResponse } from '../model';
|
|
4
3
|
import { ContactGroup } from '../model';
|
|
5
4
|
import { ActionResponse } from '../model';
|
|
6
5
|
import { EntitiesResponse } from '../model';
|
|
7
6
|
import { StringKeyValue } from '../model';
|
|
7
|
+
import { EntityResponse } from '../model';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class
|
|
9
|
+
export declare class ContactsGroupsEndPoint {
|
|
10
10
|
private config;
|
|
11
11
|
private rest;
|
|
12
12
|
private baseUrl;
|
|
@@ -39,6 +39,6 @@ export declare class ContactsGroupsService {
|
|
|
39
39
|
* Lookup contacts-groups ID->Name by filter
|
|
40
40
|
*/
|
|
41
41
|
lookup(search?: string, sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<StringKeyValue>>;
|
|
42
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
43
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContactsGroupsEndPoint, never>;
|
|
43
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ContactsGroupsEndPoint>;
|
|
44
44
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
-
import { ActionResponse } from '../model';
|
|
4
|
-
import { EntitiesResponse } from '../model';
|
|
5
3
|
import { EntityResponse } from '../model';
|
|
6
4
|
import { Credit } from '../model';
|
|
5
|
+
import { ActionResponse } from '../model';
|
|
6
|
+
import { EntitiesResponse } from '../model';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class
|
|
8
|
+
export declare class CreditsEndPoint {
|
|
9
9
|
private config;
|
|
10
10
|
private rest;
|
|
11
11
|
private baseUrl;
|
|
@@ -50,6 +50,6 @@ export declare class CreditsService {
|
|
|
50
50
|
* Recalculate account credits for all flights
|
|
51
51
|
*/
|
|
52
52
|
recalculateCreditsForFlights(accountId?: string): import("rxjs").Observable<ActionResponse>;
|
|
53
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
54
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CreditsEndPoint, never>;
|
|
54
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CreditsEndPoint>;
|
|
55
55
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
+
import { EntityResponse } from '../model';
|
|
3
4
|
import { Document } from '../model';
|
|
4
5
|
import { ActionResponse } from '../model';
|
|
5
6
|
import { EntitiesResponse } from '../model';
|
|
6
7
|
import { StorageItem } from '../model';
|
|
7
|
-
import { EntityResponse } from '../model';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class
|
|
9
|
+
export declare class DocumentsEndPoint {
|
|
10
10
|
private config;
|
|
11
11
|
private rest;
|
|
12
12
|
private baseUrl;
|
|
@@ -47,6 +47,6 @@ export declare class DocumentsService {
|
|
|
47
47
|
* Get a list of files and folders from the folder in Google Drive defined as Library
|
|
48
48
|
*/
|
|
49
49
|
broseLibrary(root?: string): import("rxjs").Observable<EntitiesResponse<StorageItem>>;
|
|
50
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
51
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentsEndPoint, never>;
|
|
51
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DocumentsEndPoint>;
|
|
52
52
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
+
import { TicketStatusCode } from '../model';
|
|
4
|
+
import { EntitiesResponse } from '../model';
|
|
3
5
|
import { EntityResponse } from '../model';
|
|
4
6
|
import { FlightTicket } from '../model';
|
|
5
7
|
import { ActionResponse } from '../model';
|
|
6
|
-
import { TicketStatusCode } from '../model';
|
|
7
|
-
import { EntitiesResponse } from '../model';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class
|
|
9
|
+
export declare class FlightTicketsEndPoint {
|
|
10
10
|
private config;
|
|
11
11
|
private rest;
|
|
12
12
|
private baseUrl;
|
|
@@ -35,6 +35,6 @@ export declare class FlightTicketsService {
|
|
|
35
35
|
* Find flightTickets by query
|
|
36
36
|
*/
|
|
37
37
|
find(search?: string, status?: TicketStatusCode[], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<FlightTicket>>;
|
|
38
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
39
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FlightTicketsEndPoint, never>;
|
|
39
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FlightTicketsEndPoint>;
|
|
40
40
|
}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
3
|
import { Entities } from '../model';
|
|
4
|
-
import {
|
|
5
|
-
import { FlightPurposeCode } from '../model';
|
|
4
|
+
import { BillingStatusCode } from '../model';
|
|
6
5
|
import { Point } from '../model';
|
|
7
6
|
import { FlightTicket } from '../model';
|
|
8
7
|
import { EntityResponse } from '../model';
|
|
9
8
|
import { Flight } from '../model';
|
|
10
9
|
import { ActionResponse } from '../model';
|
|
10
|
+
import { AnyKeyValue } from '../model';
|
|
11
11
|
import { FlightTypeCode } from '../model';
|
|
12
12
|
import { FlightStatusCode } from '../model';
|
|
13
|
-
import { BillingStatusCode } from '../model';
|
|
14
|
-
import { EntitiesResponse } from '../model';
|
|
15
|
-
import { TimeSeries } from '../model';
|
|
16
13
|
import { FlightPlan } from '../model';
|
|
17
|
-
import { Distribution } from '../model';
|
|
18
|
-
import { FlightClassCode } from '../model';
|
|
19
14
|
import { Contact } from '../model';
|
|
15
|
+
import { EntitiesResponse } from '../model';
|
|
16
|
+
import { TimeSeries } from '../model';
|
|
20
17
|
import { PreFlightInfo } from '../model';
|
|
21
18
|
import { PostFlightInfo } from '../model';
|
|
19
|
+
import { FlightPurposeCode } from '../model';
|
|
20
|
+
import { Distribution } from '../model';
|
|
21
|
+
import { FlightClassCode } from '../model';
|
|
22
22
|
import * as i0 from "@angular/core";
|
|
23
|
-
export declare class
|
|
23
|
+
export declare class FlightsEndPoint {
|
|
24
24
|
private config;
|
|
25
25
|
private rest;
|
|
26
26
|
private baseUrl;
|
|
@@ -125,6 +125,6 @@ export declare class FlightsService {
|
|
|
125
125
|
* Update flight with post-flight info
|
|
126
126
|
*/
|
|
127
127
|
setPostFlight(body?: PostFlightInfo): import("rxjs").Observable<ActionResponse>;
|
|
128
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
129
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
128
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FlightsEndPoint, never>;
|
|
129
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FlightsEndPoint>;
|
|
130
130
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
+
import { StringKeyValue } from '../model';
|
|
3
4
|
import { EntityResponse } from '../model';
|
|
4
5
|
import { Group } from '../model';
|
|
5
6
|
import { ActionResponse } from '../model';
|
|
6
7
|
import { EntitiesResponse } from '../model';
|
|
7
|
-
import { StringKeyValue } from '../model';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class
|
|
9
|
+
export declare class GroupsEndPoint {
|
|
10
10
|
private config;
|
|
11
11
|
private rest;
|
|
12
12
|
private baseUrl;
|
|
@@ -39,6 +39,6 @@ export declare class GroupsService {
|
|
|
39
39
|
* Lookup users ID->Name by filter
|
|
40
40
|
*/
|
|
41
41
|
lookup(search?: string, sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<StringKeyValue>>;
|
|
42
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
43
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GroupsEndPoint, never>;
|
|
43
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GroupsEndPoint>;
|
|
44
44
|
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
-
import { Lead } from '../model';
|
|
4
3
|
import { LeadStatusCode } from '../model';
|
|
5
|
-
import { TimeSeries } from '../model';
|
|
6
|
-
import { IntKeyValue } from '../model';
|
|
7
4
|
import { ActionResponse } from '../model';
|
|
8
5
|
import { EntitiesResponse } from '../model';
|
|
9
|
-
import {
|
|
10
|
-
import { Booking } from '../model';
|
|
6
|
+
import { TimeSeries } from '../model';
|
|
11
7
|
import { Point } from '../model';
|
|
12
8
|
import { IntEnumValue } from '../model';
|
|
9
|
+
import { LeadAction } from '../model';
|
|
10
|
+
import { Booking } from '../model';
|
|
11
|
+
import { IntKeyValue } from '../model';
|
|
13
12
|
import { EntityResponse } from '../model';
|
|
13
|
+
import { Lead } from '../model';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
|
-
export declare class
|
|
15
|
+
export declare class LeadsEndPoint {
|
|
16
16
|
private config;
|
|
17
17
|
private rest;
|
|
18
18
|
private baseUrl;
|
|
@@ -105,6 +105,6 @@ export declare class LeadsService {
|
|
|
105
105
|
* Get monthly leads distribution by source for specific month, for sales insights
|
|
106
106
|
*/
|
|
107
107
|
countBySource(year?: number, month?: number): import("rxjs").Observable<EntitiesResponse<IntKeyValue>>;
|
|
108
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
109
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
108
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LeadsEndPoint, never>;
|
|
109
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LeadsEndPoint>;
|
|
110
110
|
}
|
|
@@ -6,7 +6,7 @@ import { ActionResponse } from '../model';
|
|
|
6
6
|
import { EntitiesResponse } from '../model';
|
|
7
7
|
import { LookupGroup } from '../model';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class
|
|
9
|
+
export declare class LookupsEndPoint {
|
|
10
10
|
private config;
|
|
11
11
|
private rest;
|
|
12
12
|
private baseUrl;
|
|
@@ -35,6 +35,6 @@ export declare class LookupsService {
|
|
|
35
35
|
* Group lookups by group
|
|
36
36
|
*/
|
|
37
37
|
group(domain?: string): import("rxjs").Observable<EntitiesResponse<LookupGroup>>;
|
|
38
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
39
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LookupsEndPoint, never>;
|
|
39
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LookupsEndPoint>;
|
|
40
40
|
}
|
|
@@ -7,7 +7,7 @@ import { StatusCode } from '../model';
|
|
|
7
7
|
import { EntitiesResponse } from '../model';
|
|
8
8
|
import { EntityResponse } from '../model';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class
|
|
10
|
+
export declare class MaintenancesEndPoint {
|
|
11
11
|
private config;
|
|
12
12
|
private rest;
|
|
13
13
|
private baseUrl;
|
|
@@ -48,6 +48,6 @@ export declare class MaintenancesService {
|
|
|
48
48
|
* Delete maintenances reference document
|
|
49
49
|
*/
|
|
50
50
|
deleteReference(id?: string): import("rxjs").Observable<ActionResponse>;
|
|
51
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
52
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
51
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaintenancesEndPoint, never>;
|
|
52
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MaintenancesEndPoint>;
|
|
53
53
|
}
|
|
@@ -3,7 +3,7 @@ import { AppConfig } from '../../config';
|
|
|
3
3
|
import { EntitiesResponse } from '../model';
|
|
4
4
|
import { StringKeyValue } from '../model';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class
|
|
6
|
+
export declare class McpToolsEndPoint {
|
|
7
7
|
private config;
|
|
8
8
|
private rest;
|
|
9
9
|
private baseUrl;
|
|
@@ -20,6 +20,6 @@ export declare class McpToolsService {
|
|
|
20
20
|
* Lookup airplanes ID->Name mapping
|
|
21
21
|
*/
|
|
22
22
|
airplanesLookup(search?: string): import("rxjs").Observable<EntitiesResponse<StringKeyValue>>;
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
24
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<McpToolsEndPoint, never>;
|
|
24
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<McpToolsEndPoint>;
|
|
25
25
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
+
import { EntityResponse } from '../model';
|
|
4
|
+
import { MessageConfirm } from '../model';
|
|
5
|
+
import { ActionResponse } from '../model';
|
|
3
6
|
import { MessageTypeCode } from '../model';
|
|
4
7
|
import { ConfirmStatusCode } from '../model';
|
|
5
8
|
import { PriorityCode } from '../model';
|
|
6
9
|
import { EntitiesResponse } from '../model';
|
|
7
|
-
import { EntityResponse } from '../model';
|
|
8
|
-
import { MessageConfirm } from '../model';
|
|
9
|
-
import { ActionResponse } from '../model';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
|
-
export declare class
|
|
11
|
+
export declare class MessageConfirmsEndPoint {
|
|
12
12
|
private config;
|
|
13
13
|
private rest;
|
|
14
14
|
private baseUrl;
|
|
@@ -45,6 +45,6 @@ export declare class MessageConfirmsService {
|
|
|
45
45
|
* Confirm messages by contact
|
|
46
46
|
*/
|
|
47
47
|
confirmContactMessage(id?: string, msgId?: string): import("rxjs").Observable<ActionResponse>;
|
|
48
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
49
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
48
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MessageConfirmsEndPoint, never>;
|
|
49
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MessageConfirmsEndPoint>;
|
|
50
50
|
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
-
import { EntitiesResponse } from '../model';
|
|
4
3
|
import { Notification } from '../model';
|
|
5
4
|
import { LoginParams } from '../model';
|
|
6
5
|
import { ActionResponse } from '../model';
|
|
7
6
|
import { EntityResponse } from '../model';
|
|
8
7
|
import { Contact } from '../model';
|
|
8
|
+
import { EntitiesResponse } from '../model';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class
|
|
10
|
+
export declare class MyAuthEndPoint {
|
|
11
11
|
private config;
|
|
12
12
|
private rest;
|
|
13
13
|
private baseUrl;
|
|
@@ -32,6 +32,6 @@ export declare class MyAuthService {
|
|
|
32
32
|
* Get notifications for user - to show in the dashboard
|
|
33
33
|
*/
|
|
34
34
|
getNotifications(): import("rxjs").Observable<EntitiesResponse<Notification>>;
|
|
35
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
36
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MyAuthEndPoint, never>;
|
|
36
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MyAuthEndPoint>;
|
|
37
37
|
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
3
|
import { BookingStatusCode } from '../model';
|
|
4
|
-
import { BookingSlot } from '../model';
|
|
5
|
-
import { ActionResponse } from '../model';
|
|
6
4
|
import { EntitiesResponse } from '../model';
|
|
7
5
|
import { BookingTypeFlag } from '../model';
|
|
8
6
|
import { Lookup } from '../model';
|
|
9
|
-
import {
|
|
7
|
+
import { BookingSlot } from '../model';
|
|
10
8
|
import { Booking } from '../model';
|
|
11
9
|
import { EntityResponse } from '../model';
|
|
10
|
+
import { Airplane } from '../model';
|
|
11
|
+
import { ActionResponse } from '../model';
|
|
12
12
|
import * as i0 from "@angular/core";
|
|
13
|
-
export declare class
|
|
13
|
+
export declare class MyBookingsEndPoint {
|
|
14
14
|
private config;
|
|
15
15
|
private rest;
|
|
16
16
|
private baseUrl;
|
|
@@ -60,6 +60,6 @@ export declare class MyBookingsService {
|
|
|
60
60
|
* Get a single airplane by id
|
|
61
61
|
*/
|
|
62
62
|
getAirplane(id?: string): import("rxjs").Observable<EntityResponse<Airplane>>;
|
|
63
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
64
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
63
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MyBookingsEndPoint, never>;
|
|
64
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MyBookingsEndPoint>;
|
|
65
65
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
+
import { EntityResponse } from '../model';
|
|
3
4
|
import { Certificate } from '../model';
|
|
4
5
|
import { ActionResponse } from '../model';
|
|
5
6
|
import { StatusCode } from '../model';
|
|
6
7
|
import { EntitiesResponse } from '../model';
|
|
7
|
-
import { EntityResponse } from '../model';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class
|
|
9
|
+
export declare class MyCertificatesEndPoint {
|
|
10
10
|
private config;
|
|
11
11
|
private rest;
|
|
12
12
|
private baseUrl;
|
|
@@ -47,6 +47,6 @@ export declare class MyCertificatesService {
|
|
|
47
47
|
* Delete certificate reference document
|
|
48
48
|
*/
|
|
49
49
|
deleteReference(id?: string): import("rxjs").Observable<ActionResponse>;
|
|
50
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
51
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MyCertificatesEndPoint, never>;
|
|
51
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MyCertificatesEndPoint>;
|
|
52
52
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
-
import { Credit } from '../model';
|
|
4
3
|
import { EntitiesResponse } from '../model';
|
|
5
4
|
import { EntityResponse } from '../model';
|
|
5
|
+
import { Credit } from '../model';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class
|
|
7
|
+
export declare class MyCreditsEndPoint {
|
|
8
8
|
private config;
|
|
9
9
|
private rest;
|
|
10
10
|
private baseUrl;
|
|
@@ -17,6 +17,6 @@ export declare class MyCreditsService {
|
|
|
17
17
|
* Find my credits by query
|
|
18
18
|
*/
|
|
19
19
|
find(sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Credit>>;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
21
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MyCreditsEndPoint, never>;
|
|
21
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MyCreditsEndPoint>;
|
|
22
22
|
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
-
import {
|
|
4
|
-
import { InstructionTypeCode } from '../model';
|
|
5
|
-
import { PreFlightInfo } from '../model';
|
|
6
|
-
import { ActionResponse } from '../model';
|
|
3
|
+
import { Syllabus } from '../model';
|
|
7
4
|
import { PostFlightInfo } from '../model';
|
|
8
5
|
import { Flight } from '../model';
|
|
9
6
|
import { FlightTypeCode } from '../model';
|
|
10
|
-
import {
|
|
7
|
+
import { EntitiesResponse } from '../model';
|
|
8
|
+
import { FlightPlan } from '../model';
|
|
9
|
+
import { PreFlightInfo } from '../model';
|
|
10
|
+
import { ActionResponse } from '../model';
|
|
11
11
|
import { EntityResponse } from '../model';
|
|
12
12
|
import { FlightStatusCode } from '../model';
|
|
13
|
-
import {
|
|
13
|
+
import { InstructionTypeCode } from '../model';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
|
-
export declare class
|
|
15
|
+
export declare class MyFlightsEndPoint {
|
|
16
16
|
private config;
|
|
17
17
|
private rest;
|
|
18
18
|
private baseUrl;
|
|
@@ -65,6 +65,6 @@ export declare class MyFlightsService {
|
|
|
65
65
|
* Download student sheet as XLSX document
|
|
66
66
|
*/
|
|
67
67
|
downloadStudentSheetXlsx(): import("rxjs").Observable<import("@angular/common/http").HttpEvent<Blob>>;
|
|
68
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
69
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
68
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MyFlightsEndPoint, never>;
|
|
69
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MyFlightsEndPoint>;
|
|
70
70
|
}
|
|
@@ -5,7 +5,7 @@ import { Contact } from '../model';
|
|
|
5
5
|
import { EntitiesResponse } from '../model';
|
|
6
6
|
import { Flight } from '../model';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class
|
|
8
|
+
export declare class MyStudentsEndPoint {
|
|
9
9
|
private config;
|
|
10
10
|
private rest;
|
|
11
11
|
private baseUrl;
|
|
@@ -30,6 +30,6 @@ export declare class MyStudentsService {
|
|
|
30
30
|
* Download student sheet as CSV document
|
|
31
31
|
*/
|
|
32
32
|
downloadStudentSheetCsv(id?: string): import("rxjs").Observable<import("@angular/common/http").HttpEvent<Blob>>;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
34
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MyStudentsEndPoint, never>;
|
|
34
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MyStudentsEndPoint>;
|
|
35
35
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
-
import { FlightPurposeCode } from '../model';
|
|
4
|
-
import { EntitiesResponse } from '../model';
|
|
5
3
|
import { EntityResponse } from '../model';
|
|
6
4
|
import { Price } from '../model';
|
|
7
5
|
import { ActionResponse } from '../model';
|
|
6
|
+
import { FlightPurposeCode } from '../model';
|
|
7
|
+
import { EntitiesResponse } from '../model';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class
|
|
9
|
+
export declare class PriceListEndPoint {
|
|
10
10
|
private config;
|
|
11
11
|
private rest;
|
|
12
12
|
private baseUrl;
|
|
@@ -35,6 +35,6 @@ export declare class PriceListService {
|
|
|
35
35
|
* Find Prices by query
|
|
36
36
|
*/
|
|
37
37
|
find(airplaneId?: string, purpose?: FlightPurposeCode[], sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<Price>>;
|
|
38
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
39
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PriceListEndPoint, never>;
|
|
39
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PriceListEndPoint>;
|
|
40
40
|
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
+
import { EntityResponse } from '../model';
|
|
4
|
+
import { Syllabus } from '../model';
|
|
3
5
|
import { ActionResponse } from '../model';
|
|
4
6
|
import { FlightCategoryCode } from '../model';
|
|
5
7
|
import { InstructionTypeCode } from '../model';
|
|
6
8
|
import { EntitiesResponse } from '../model';
|
|
7
|
-
import { EntityResponse } from '../model';
|
|
8
|
-
import { Syllabus } from '../model';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class
|
|
10
|
+
export declare class SyllabusEndPoint {
|
|
11
11
|
private config;
|
|
12
12
|
private rest;
|
|
13
13
|
private baseUrl;
|
|
@@ -40,6 +40,6 @@ export declare class SyllabusService {
|
|
|
40
40
|
* Find Syllabus topics by query
|
|
41
41
|
*/
|
|
42
42
|
getStudentPlan(id?: string): import("rxjs").Observable<EntitiesResponse<Syllabus>>;
|
|
43
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
44
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SyllabusEndPoint, never>;
|
|
44
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SyllabusEndPoint>;
|
|
45
45
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
-
import { SystemConfig } from '../model';
|
|
4
3
|
import { EntityResponse } from '../model';
|
|
5
4
|
import { ActionResponse } from '../model';
|
|
6
5
|
import { EntitiesResponse } from '../model';
|
|
6
|
+
import { SystemConfig } from '../model';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class
|
|
8
|
+
export declare class SystemConfigsEndPoint {
|
|
9
9
|
private config;
|
|
10
10
|
private rest;
|
|
11
11
|
private baseUrl;
|
|
@@ -30,6 +30,6 @@ export declare class SystemConfigsService {
|
|
|
30
30
|
* Find systemConfigs by query
|
|
31
31
|
*/
|
|
32
32
|
find(search?: string, sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<SystemConfig>>;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
34
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SystemConfigsEndPoint, never>;
|
|
34
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SystemConfigsEndPoint>;
|
|
35
35
|
}
|