@aya-flights/ngx-goox-lib 2.19.169 → 2.19.171
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 +5469 -5452
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/Account.d.ts +1 -1
- package/lib/AccountsEndPoint.d.ts +6 -6
- package/lib/Airplane.d.ts +6 -6
- package/lib/AirplanesEndPoint.d.ts +7 -7
- package/lib/Booking.d.ts +2 -2
- package/lib/BookingPlan.d.ts +2 -2
- package/lib/BookingSlot.d.ts +1 -1
- package/lib/BookingSlotsEndPoint.d.ts +1 -1
- package/lib/BookingsEndPoint.d.ts +2 -2
- package/lib/CertificatesEndPoint.d.ts +1 -1
- package/lib/CertificatesFilter.d.ts +1 -1
- package/lib/Contact.d.ts +5 -5
- package/lib/ContactsEndPoint.d.ts +5 -5
- package/lib/ContactsGroupsEndPoint.d.ts +1 -1
- package/lib/CreditsFilter.d.ts +1 -1
- package/lib/DocumentsEndPoint.d.ts +4 -0
- package/lib/Flight.d.ts +6 -6
- package/lib/FlightPlan.d.ts +2 -2
- package/lib/FlightRisk.d.ts +6 -6
- package/lib/FlightTicketsEndPoint.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +7 -7
- package/lib/LeadsEndPoint.d.ts +3 -3
- package/lib/LookupGroup.d.ts +1 -1
- package/lib/Maintenance.d.ts +1 -1
- package/lib/MaintenancesFilter.d.ts +1 -1
- package/lib/MyAuthEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +3 -3
- package/lib/MyFlightsEndPoint.d.ts +4 -4
- package/lib/MyMessagesEndPoint.d.ts +1 -1
- package/lib/MyStudentsEndPoint.d.ts +1 -1
- package/lib/Notification.d.ts +5 -2
- package/lib/Permission.d.ts +1 -1
- package/lib/PreFlightInfo.d.ts +1 -1
- package/lib/StorageItem.d.ts +6 -2
- package/lib/SyllabusFilter.d.ts +1 -1
- package/lib/TimeSeries.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/index.d.ts +119 -119
- package/lib/services.export.d.ts +22 -22
- package/package.json +1 -1
package/lib/Account.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { AccountTypeCode } from '.';
|
|
3
2
|
import { AccountStatusCode } from '.';
|
|
4
3
|
import { Address } from '.';
|
|
5
4
|
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
6
|
export declare class Account extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
enName: string;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightPurposeCode } from '.';
|
|
4
|
-
import { FlightStatusCode } from '.';
|
|
5
|
-
import { FlightTypeCode } from '.';
|
|
6
|
-
import { FlightStateCode } from '.';
|
|
7
|
-
import { Flight } from '.';
|
|
8
3
|
import { Account } from '.';
|
|
9
4
|
import { AccountStatusCode } from '.';
|
|
5
|
+
import { Document } from '.';
|
|
6
|
+
import { FlightStateCode } from '.';
|
|
7
|
+
import { FlightPurposeCode } from '.';
|
|
10
8
|
import { AccountTypeCode } from '.';
|
|
11
9
|
import { StringKeyValue } from '.';
|
|
10
|
+
import { FlightTypeCode } from '.';
|
|
11
|
+
import { FlightStatusCode } from '.';
|
|
12
|
+
import { Flight } from '.';
|
|
12
13
|
import { Credit } from '.';
|
|
13
|
-
import { Document } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class AccountsEndPoint {
|
|
16
16
|
private config;
|
package/lib/Airplane.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { AirplaneValidationFlag } from '.';
|
|
2
|
-
import { Engine } from '.';
|
|
3
1
|
import { Magneto } from '.';
|
|
4
2
|
import { Propeller } from '.';
|
|
5
|
-
import { WBConfig } from '.';
|
|
6
|
-
import { BaseEntityEx } from '.';
|
|
7
|
-
import { TypeRatingFlag } from '.';
|
|
8
|
-
import { AirplaneStatusCode } from '.';
|
|
9
3
|
import { Fuel } from '.';
|
|
4
|
+
import { BaseEntityEx } from '.';
|
|
10
5
|
import { ColumnDef } from '.';
|
|
6
|
+
import { AirplaneStatusCode } from '.';
|
|
7
|
+
import { Engine } from '.';
|
|
8
|
+
import { WBConfig } from '.';
|
|
9
|
+
import { TypeRatingFlag } from '.';
|
|
10
|
+
import { AirplaneValidationFlag } from '.';
|
|
11
11
|
export declare class Airplane extends BaseEntityEx {
|
|
12
12
|
name: string;
|
|
13
13
|
description: string;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightPurposeCode } from '.';
|
|
4
|
-
import { FlightStateCode } from '.';
|
|
5
|
-
import { Document } from '.';
|
|
6
|
-
import { MaintenanceActionCode } from '.';
|
|
7
3
|
import { Airplane } from '.';
|
|
8
|
-
import {
|
|
4
|
+
import { FlightStateCode } from '.';
|
|
9
5
|
import { StatusCode } from '.';
|
|
10
|
-
import {
|
|
11
|
-
import { AirplaneStatusCode } from '.';
|
|
6
|
+
import { MaintenanceActionCode } from '.';
|
|
12
7
|
import { StringKeyValue } from '.';
|
|
13
8
|
import { FlightStatusCode } from '.';
|
|
14
9
|
import { Flight } from '.';
|
|
10
|
+
import { Maintenance } from '.';
|
|
11
|
+
import { AirplaneStatusCode } from '.';
|
|
12
|
+
import { FlightTypeCode } from '.';
|
|
13
|
+
import { FlightPurposeCode } from '.';
|
|
14
|
+
import { Document } from '.';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class AirplanesEndPoint {
|
|
17
17
|
private config;
|
package/lib/Booking.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
|
-
import { BookingTypeFlag } from '.';
|
|
3
1
|
import { BookingStatusCode } from '.';
|
|
4
2
|
import { BaseEntityEx } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
4
|
+
import { BookingTypeFlag } from '.';
|
|
5
5
|
export declare class Booking extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
accountId: string;
|
package/lib/BookingPlan.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { BookingTypeFlag } from '.';
|
|
2
|
+
import { FlightPurposeCode } from '.';
|
|
1
3
|
import { FlightStatusCode } from '.';
|
|
2
4
|
import { BaseEntityEx } from '.';
|
|
3
5
|
import { ColumnDef } from '.';
|
|
4
|
-
import { BookingTypeFlag } from '.';
|
|
5
|
-
import { FlightPurposeCode } from '.';
|
|
6
6
|
export declare class BookingPlan extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
package/lib/BookingSlot.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { BookingSlot } from '.';
|
|
3
4
|
import { BookingSlots } from '.';
|
|
4
5
|
import { BookingSlotsSet } from '.';
|
|
5
|
-
import { BookingSlot } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class BookingSlotsEndPoint {
|
|
8
8
|
private config;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Booking } from '.';
|
|
4
|
-
import { BookingStatusCode } from '.';
|
|
5
3
|
import { TimeSeries } from '.';
|
|
6
4
|
import { BookingPlan } from '.';
|
|
5
|
+
import { Booking } from '.';
|
|
6
|
+
import { BookingStatusCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class BookingsEndPoint {
|
|
9
9
|
private config;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Certificate } from '.';
|
|
4
3
|
import { StatusCode } from '.';
|
|
4
|
+
import { Certificate } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CertificatesEndPoint {
|
|
7
7
|
private config;
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
import { AccountStatusCode } from '.';
|
|
1
2
|
import { LicenseKindFlag } from '.';
|
|
2
|
-
import {
|
|
3
|
+
import { ValidationFlag } from '.';
|
|
3
4
|
import { FlightCategoryCode } from '.';
|
|
4
|
-
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
5
|
import { Address } from '.';
|
|
7
6
|
import { TypeRatingFlag } from '.';
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
7
|
+
import { MedicalCertClassCode } from '.';
|
|
8
|
+
import { BaseEntityEx } from '.';
|
|
9
|
+
import { ColumnDef } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
11
11
|
accountId: string;
|
|
12
12
|
name: string;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { MessageConfirm } from '.';
|
|
4
3
|
import { Document } from '.';
|
|
5
4
|
import { Contact } from '.';
|
|
5
|
+
import { FlightPurposeCode } from '.';
|
|
6
6
|
import { FlightStatusCode } from '.';
|
|
7
|
-
import {
|
|
7
|
+
import { FlightStateCode } from '.';
|
|
8
|
+
import { MessageConfirm } from '.';
|
|
8
9
|
import { Certificate } from '.';
|
|
9
10
|
import { FlightTypeCode } from '.';
|
|
10
|
-
import {
|
|
11
|
-
import { StringKeyValue } from '.';
|
|
11
|
+
import { Flight } from '.';
|
|
12
12
|
import { StatusCode } from '.';
|
|
13
|
-
import {
|
|
13
|
+
import { StringKeyValue } from '.';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class ContactsEndPoint {
|
|
16
16
|
private config;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { StringKeyValue } from '.';
|
|
4
3
|
import { ContactGroup } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class ContactsGroupsEndPoint {
|
|
7
7
|
private config;
|
package/lib/CreditsFilter.d.ts
CHANGED
|
@@ -40,6 +40,10 @@ export declare class DocumentsEndPoint {
|
|
|
40
40
|
* Get a list of files from the base storage
|
|
41
41
|
*/
|
|
42
42
|
listFiles(root?: string): import("rxjs").Observable<EntitiesResponse<StorageItem>>;
|
|
43
|
+
/**
|
|
44
|
+
* Get a list of files and folders from the folder in Google Drive defined as Library
|
|
45
|
+
*/
|
|
46
|
+
broseLibrary(root?: string): import("rxjs").Observable<EntitiesResponse<StorageItem>>;
|
|
43
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentsEndPoint, never>;
|
|
44
48
|
static ɵprov: i0.ɵɵInjectableDeclaration<DocumentsEndPoint>;
|
|
45
49
|
}
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { TOLData } from '.';
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
3
|
-
import { ColumnDef } from '.';
|
|
4
|
-
import { FlightPurposeCode } from '.';
|
|
5
|
-
import { FlightCategoryCode } from '.';
|
|
6
|
-
import { FlightStatusCode } from '.';
|
|
7
|
-
import { Lesson } from '.';
|
|
8
2
|
import { RiskAssessment } from '.';
|
|
3
|
+
import { ColumnDef } from '.';
|
|
9
4
|
import { FlightClassCode } from '.';
|
|
5
|
+
import { FlightCategoryCode } from '.';
|
|
10
6
|
import { FlightTypeCode } from '.';
|
|
7
|
+
import { FlightStatusCode } from '.';
|
|
11
8
|
import { BillingStatusCode } from '.';
|
|
9
|
+
import { FlightPurposeCode } from '.';
|
|
10
|
+
import { Lesson } from '.';
|
|
11
|
+
import { BaseEntityEx } from '.';
|
|
12
12
|
export declare class Flight extends BaseEntityEx {
|
|
13
13
|
name: string;
|
|
14
14
|
description: string;
|
package/lib/FlightPlan.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import { FlightTypeCode } from '.';
|
|
2
|
+
import { FlightStatusCode } from '.';
|
|
1
3
|
import { FlightStateCode } from '.';
|
|
2
4
|
import { FlightPurposeCode } from '.';
|
|
3
5
|
import { TOLData } from '.';
|
|
4
6
|
import { BaseEntityEx } from '.';
|
|
5
7
|
import { ColumnDef } from '.';
|
|
6
|
-
import { FlightTypeCode } from '.';
|
|
7
|
-
import { FlightStatusCode } from '.';
|
|
8
8
|
export declare class FlightPlan extends BaseEntityEx {
|
|
9
9
|
name: string;
|
|
10
10
|
description: string;
|
package/lib/FlightRisk.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { PilotQualificationsRisks } from '.';
|
|
2
|
-
import { DestinationRisks } from '.';
|
|
3
|
-
import { TripRisks } from '.';
|
|
4
|
-
import { WeatherRisks } from '.';
|
|
5
|
-
import { SpecialRisks } from '.';
|
|
6
1
|
import { BaseEntityEx } from '.';
|
|
7
2
|
import { ColumnDef } from '.';
|
|
8
|
-
import { CrewDutyDayRisks } from '.';
|
|
9
3
|
import { DepartureRisks } from '.';
|
|
4
|
+
import { DestinationRisks } from '.';
|
|
5
|
+
import { SpecialRisks } from '.';
|
|
6
|
+
import { WeatherRisks } from '.';
|
|
10
7
|
import { Mitigation } from '.';
|
|
8
|
+
import { PilotQualificationsRisks } from '.';
|
|
9
|
+
import { CrewDutyDayRisks } from '.';
|
|
10
|
+
import { TripRisks } from '.';
|
|
11
11
|
export declare class FlightRisk extends BaseEntityEx {
|
|
12
12
|
timestamp: number;
|
|
13
13
|
pilotQualifications: PilotQualificationsRisks;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { FlightTicket } from '.';
|
|
4
3
|
import { TicketStatusCode } from '.';
|
|
4
|
+
import { FlightTicket } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class FlightTicketsEndPoint {
|
|
7
7
|
private config;
|
package/lib/FlightsEndPoint.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import { AnyKeyValue } from '.';
|
|
6
|
-
import { FlightStatusCode } from '.';
|
|
3
|
+
import { BillingStatusCode } from '.';
|
|
4
|
+
import { FlightTicket } from '.';
|
|
7
5
|
import { PostFlightInfo } from '.';
|
|
6
|
+
import { FlightStatusCode } from '.';
|
|
7
|
+
import { TimeSeries } from '.';
|
|
8
8
|
import { FlightPlan } from '.';
|
|
9
9
|
import { Point } from '.';
|
|
10
10
|
import { Flight } from '.';
|
|
11
|
+
import { AnyKeyValue } from '.';
|
|
11
12
|
import { FlightTypeCode } from '.';
|
|
12
|
-
import { BillingStatusCode } from '.';
|
|
13
|
-
import { Contact } from '.';
|
|
14
|
-
import { FlightTicket } from '.';
|
|
15
13
|
import { FlightPurposeCode } from '.';
|
|
14
|
+
import { Contact } from '.';
|
|
15
|
+
import { PreFlightInfo } from '.';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
export declare class FlightsEndPoint {
|
|
18
18
|
private config;
|
package/lib/LeadsEndPoint.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Lead } from '.';
|
|
4
|
-
import { TimeSeries } from '.';
|
|
5
3
|
import { LeadAction } from '.';
|
|
6
|
-
import {
|
|
4
|
+
import { Lead } from '.';
|
|
7
5
|
import { LeadStatusCode } from '.';
|
|
6
|
+
import { TimeSeries } from '.';
|
|
8
7
|
import { Booking } from '.';
|
|
9
8
|
import { Point } from '.';
|
|
9
|
+
import { IntEnumValue } from '.';
|
|
10
10
|
import { IntKeyValue } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class LeadsEndPoint {
|
package/lib/LookupGroup.d.ts
CHANGED
package/lib/Maintenance.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { StatusCode } from '.';
|
|
2
3
|
import { MaintenanceActionCode } from '.';
|
|
3
4
|
import { BaseEntityEx } from '.';
|
|
4
|
-
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Maintenance extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
package/lib/MyAuthEndPoint.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { LoginParams } from '.';
|
|
3
4
|
import { Contact } from '.';
|
|
4
5
|
import { Notification } from '.';
|
|
5
|
-
import { LoginParams } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class MyAuthEndPoint {
|
|
8
8
|
private config;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { BookingTypeFlag } from '.';
|
|
4
|
-
import { Lookup } from '.';
|
|
5
3
|
import { Booking } from '.';
|
|
4
|
+
import { BookingTypeFlag } from '.';
|
|
5
|
+
import { Airplane } from '.';
|
|
6
6
|
import { BookingStatusCode } from '.';
|
|
7
|
+
import { Lookup } from '.';
|
|
7
8
|
import { BookingSlot } from '.';
|
|
8
|
-
import { Airplane } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyBookingsEndPoint {
|
|
11
11
|
private config;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Flight } from '.';
|
|
4
|
-
import { FlightTypeCode } from '.';
|
|
5
3
|
import { InstructionTypeCode } from '.';
|
|
4
|
+
import { Syllabus } from '.';
|
|
5
|
+
import { PreFlightInfo } from '.';
|
|
6
6
|
import { PostFlightInfo } from '.';
|
|
7
7
|
import { FlightStatusCode } from '.';
|
|
8
8
|
import { FlightPlan } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
9
|
+
import { Flight } from '.';
|
|
10
|
+
import { FlightTypeCode } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class MyFlightsEndPoint {
|
|
13
13
|
private config;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { SystemMessage } from '.';
|
|
4
3
|
import { MessageConfirm } from '.';
|
|
4
|
+
import { SystemMessage } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class MyMessagesEndPoint {
|
|
7
7
|
private config;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Flight } from '.';
|
|
4
3
|
import { Contact } from '.';
|
|
4
|
+
import { Flight } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class MyStudentsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Notification.d.ts
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { NotificationTypeCode } from '.';
|
|
2
2
|
import { PriorityCode } from '.';
|
|
3
3
|
import { StringKeyValue } from '.';
|
|
4
|
-
|
|
4
|
+
import { BaseEntityEx } from '.';
|
|
5
|
+
import { ColumnDef } from '.';
|
|
6
|
+
export declare class Notification extends BaseEntityEx {
|
|
5
7
|
type: NotificationTypeCode;
|
|
6
8
|
description: string;
|
|
7
9
|
severity: PriorityCode;
|
|
8
10
|
items: StringKeyValue[];
|
|
9
11
|
count: number;
|
|
10
|
-
|
|
12
|
+
get(field: string): any;
|
|
11
13
|
}
|
|
14
|
+
export declare function GetNotificationColumnsDef(): ColumnDef[];
|
package/lib/Permission.d.ts
CHANGED
package/lib/PreFlightInfo.d.ts
CHANGED
package/lib/StorageItem.d.ts
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
import { BaseEntityEx } from '.';
|
|
2
|
+
import { ColumnDef } from '.';
|
|
3
|
+
export declare class StorageItem extends BaseEntityEx {
|
|
2
4
|
name: string;
|
|
3
5
|
path: string;
|
|
4
6
|
size: number;
|
|
7
|
+
mimeType: string;
|
|
5
8
|
isFolder: boolean;
|
|
6
|
-
|
|
9
|
+
get(field: string): any;
|
|
7
10
|
}
|
|
11
|
+
export declare function GetStorageItemColumnsDef(): ColumnDef[];
|
package/lib/SyllabusFilter.d.ts
CHANGED
package/lib/TimeSeries.d.ts
CHANGED
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { UserStatusCode } from '.';
|
|
2
|
+
import { BaseEntityEx } from '.';
|
|
1
3
|
import { ColumnDef } from '.';
|
|
2
4
|
import { UserTypeCode } from '.';
|
|
3
5
|
import { UserRoleFlag } from '.';
|
|
4
|
-
import { UserStatusCode } from '.';
|
|
5
|
-
import { BaseEntityEx } from '.';
|
|
6
6
|
export declare class User extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
email: string;
|