@aya-flights/ngx-goox-lib 2.19.171 → 2.19.173
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 +5370 -5338
- package/fesm2022/aya-flights-ngx-goox-lib.mjs.map +1 -1
- package/lib/AccountsEndPoint.d.ts +6 -6
- package/lib/Airplane.d.ts +4 -4
- package/lib/AirplanesEndPoint.d.ts +7 -7
- package/lib/Booking.d.ts +1 -1
- package/lib/BookingPlan.d.ts +1 -1
- package/lib/BookingSlots.d.ts +1 -1
- package/lib/CampaignsEndPoint.d.ts +1 -1
- package/lib/Contact.d.ts +4 -4
- package/lib/ContactsEndPoint.d.ts +6 -6
- package/lib/DocumentsEndPoint.d.ts +1 -1
- package/lib/Flight.d.ts +5 -5
- package/lib/FlightRisk.d.ts +7 -7
- package/lib/FlightTicketsEndPoint.d.ts +1 -1
- package/lib/FlightsEndPoint.d.ts +7 -7
- package/lib/Group.d.ts +2 -2
- package/lib/GroupsEndPoint.d.ts +1 -1
- package/lib/Lead.d.ts +1 -1
- package/lib/LeadsEndPoint.d.ts +4 -4
- package/lib/LogBookRecord.d.ts +1 -1
- package/lib/Lookup.d.ts +1 -1
- package/lib/Maintenance.d.ts +1 -1
- package/lib/MaintenancesFilter.d.ts +1 -1
- package/lib/MessageConfirmsEndPoint.d.ts +2 -2
- package/lib/MyAuthEndPoint.d.ts +1 -1
- package/lib/MyBookingsEndPoint.d.ts +4 -4
- package/lib/MyFlightsEndPoint.d.ts +3 -3
- package/lib/MyInfoEndPoint.d.ts +16 -0
- package/lib/MyMessagesEndPoint.d.ts +1 -1
- package/lib/Permission.d.ts +1 -1
- package/lib/PreFlightInfo.d.ts +1 -1
- package/lib/StorageItem.d.ts +2 -1
- package/lib/Syllabus.d.ts +2 -2
- package/lib/SyllabusEndPoint.d.ts +1 -1
- package/lib/SyllabusFilter.d.ts +1 -1
- package/lib/SystemMessagesEndPoint.d.ts +1 -1
- package/lib/TimeSeries.d.ts +1 -1
- package/lib/User.d.ts +2 -2
- package/lib/UsersEndPoint.d.ts +1 -1
- package/lib/UsersFilter.d.ts +1 -1
- package/lib/index.d.ts +123 -122
- package/lib/services.export.d.ts +24 -23
- package/package.json +1 -1
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Account } from '.';
|
|
4
|
-
import { AccountStatusCode } from '.';
|
|
5
|
-
import { Document } from '.';
|
|
6
|
-
import { FlightStateCode } from '.';
|
|
7
|
-
import { FlightPurposeCode } from '.';
|
|
8
3
|
import { AccountTypeCode } from '.';
|
|
9
|
-
import {
|
|
4
|
+
import { FlightPurposeCode } from '.';
|
|
5
|
+
import { Document } from '.';
|
|
10
6
|
import { FlightTypeCode } from '.';
|
|
11
7
|
import { FlightStatusCode } from '.';
|
|
8
|
+
import { StringKeyValue } from '.';
|
|
12
9
|
import { Flight } from '.';
|
|
13
10
|
import { Credit } from '.';
|
|
11
|
+
import { FlightStateCode } from '.';
|
|
12
|
+
import { Account } from '.';
|
|
13
|
+
import { AccountStatusCode } 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 '.';
|
|
1
2
|
import { Magneto } from '.';
|
|
3
|
+
import { WBConfig } from '.';
|
|
4
|
+
import { TypeRatingFlag } from '.';
|
|
5
|
+
import { Engine } from '.';
|
|
2
6
|
import { Propeller } from '.';
|
|
3
7
|
import { Fuel } from '.';
|
|
4
8
|
import { BaseEntityEx } from '.';
|
|
5
9
|
import { ColumnDef } from '.';
|
|
6
10
|
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
3
|
import { Airplane } from '.';
|
|
4
|
-
import { FlightStateCode } from '.';
|
|
5
|
-
import { StatusCode } from '.';
|
|
6
|
-
import { MaintenanceActionCode } from '.';
|
|
7
|
-
import { StringKeyValue } from '.';
|
|
8
|
-
import { FlightStatusCode } from '.';
|
|
9
|
-
import { Flight } from '.';
|
|
10
|
-
import { Maintenance } from '.';
|
|
11
4
|
import { AirplaneStatusCode } from '.';
|
|
5
|
+
import { StringKeyValue } from '.';
|
|
12
6
|
import { FlightTypeCode } from '.';
|
|
13
7
|
import { FlightPurposeCode } from '.';
|
|
8
|
+
import { Maintenance } from '.';
|
|
9
|
+
import { MaintenanceActionCode } from '.';
|
|
10
|
+
import { FlightStatusCode } from '.';
|
|
11
|
+
import { Flight } from '.';
|
|
14
12
|
import { Document } from '.';
|
|
13
|
+
import { FlightStateCode } from '.';
|
|
14
|
+
import { StatusCode } 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 { BookingStatusCode } from '.';
|
|
2
1
|
import { BaseEntityEx } from '.';
|
|
3
2
|
import { ColumnDef } from '.';
|
|
4
3
|
import { BookingTypeFlag } from '.';
|
|
4
|
+
import { BookingStatusCode } 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
1
|
import { FlightPurposeCode } from '.';
|
|
3
2
|
import { FlightStatusCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
5
4
|
import { ColumnDef } from '.';
|
|
5
|
+
import { BookingTypeFlag } from '.';
|
|
6
6
|
export declare class BookingPlan extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
package/lib/BookingSlots.d.ts
CHANGED
|
@@ -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 { Campaign } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CampaignsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Contact.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { TypeRatingFlag } from '.';
|
|
2
2
|
import { LicenseKindFlag } from '.';
|
|
3
|
+
import { MedicalCertClassCode } from '.';
|
|
3
4
|
import { ValidationFlag } from '.';
|
|
4
|
-
import {
|
|
5
|
+
import { AccountStatusCode } from '.';
|
|
5
6
|
import { Address } from '.';
|
|
6
|
-
import {
|
|
7
|
-
import { MedicalCertClassCode } from '.';
|
|
7
|
+
import { FlightCategoryCode } from '.';
|
|
8
8
|
import { BaseEntityEx } from '.';
|
|
9
9
|
import { ColumnDef } from '.';
|
|
10
10
|
export declare class Contact extends BaseEntityEx {
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Document } from '.';
|
|
4
|
-
import { Contact } from '.';
|
|
5
|
-
import { FlightPurposeCode } from '.';
|
|
6
3
|
import { FlightStatusCode } from '.';
|
|
7
|
-
import { FlightStateCode } from '.';
|
|
8
|
-
import { MessageConfirm } from '.';
|
|
9
|
-
import { Certificate } from '.';
|
|
10
4
|
import { FlightTypeCode } from '.';
|
|
5
|
+
import { FlightStateCode } from '.';
|
|
6
|
+
import { FlightPurposeCode } from '.';
|
|
11
7
|
import { Flight } from '.';
|
|
12
8
|
import { StatusCode } from '.';
|
|
13
9
|
import { StringKeyValue } from '.';
|
|
10
|
+
import { Certificate } from '.';
|
|
11
|
+
import { Document } from '.';
|
|
12
|
+
import { MessageConfirm } from '.';
|
|
13
|
+
import { Contact } 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 { StorageItem } from '.';
|
|
4
3
|
import { Document } from '.';
|
|
4
|
+
import { StorageItem } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class DocumentsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Flight.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
+
import { FlightStatusCode } from '.';
|
|
2
|
+
import { BillingStatusCode } from '.';
|
|
1
3
|
import { TOLData } from '.';
|
|
4
|
+
import { Lesson } from '.';
|
|
2
5
|
import { RiskAssessment } from '.';
|
|
3
6
|
import { ColumnDef } from '.';
|
|
7
|
+
import { FlightTypeCode } from '.';
|
|
4
8
|
import { FlightClassCode } from '.';
|
|
5
9
|
import { FlightCategoryCode } from '.';
|
|
6
|
-
import { FlightTypeCode } from '.';
|
|
7
|
-
import { FlightStatusCode } from '.';
|
|
8
|
-
import { BillingStatusCode } from '.';
|
|
9
|
-
import { FlightPurposeCode } from '.';
|
|
10
|
-
import { Lesson } from '.';
|
|
11
10
|
import { BaseEntityEx } from '.';
|
|
11
|
+
import { FlightPurposeCode } from '.';
|
|
12
12
|
export declare class Flight extends BaseEntityEx {
|
|
13
13
|
name: string;
|
|
14
14
|
description: string;
|
package/lib/FlightRisk.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ColumnDef } from '.';
|
|
1
|
+
import { CrewDutyDayRisks } from '.';
|
|
3
2
|
import { DepartureRisks } from '.';
|
|
4
|
-
import {
|
|
5
|
-
import { SpecialRisks } from '.';
|
|
3
|
+
import { TripRisks } from '.';
|
|
6
4
|
import { WeatherRisks } from '.';
|
|
7
|
-
import {
|
|
5
|
+
import { SpecialRisks } from '.';
|
|
6
|
+
import { ColumnDef } from '.';
|
|
8
7
|
import { PilotQualificationsRisks } from '.';
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
8
|
+
import { DestinationRisks } from '.';
|
|
9
|
+
import { Mitigation } from '.';
|
|
10
|
+
import { BaseEntityEx } 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 { TicketStatusCode } from '.';
|
|
4
3
|
import { FlightTicket } from '.';
|
|
4
|
+
import { TicketStatusCode } 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,17 +1,17 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse, Entities } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { BillingStatusCode } from '.';
|
|
4
3
|
import { FlightTicket } from '.';
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
4
|
+
import { AnyKeyValue } from '.';
|
|
5
|
+
import { FlightTypeCode } from '.';
|
|
6
|
+
import { BillingStatusCode } from '.';
|
|
7
7
|
import { TimeSeries } from '.';
|
|
8
8
|
import { FlightPlan } from '.';
|
|
9
|
-
import {
|
|
9
|
+
import { Contact } from '.';
|
|
10
|
+
import { PostFlightInfo } from '.';
|
|
10
11
|
import { Flight } from '.';
|
|
11
|
-
import {
|
|
12
|
-
import { FlightTypeCode } from '.';
|
|
12
|
+
import { FlightStatusCode } from '.';
|
|
13
13
|
import { FlightPurposeCode } from '.';
|
|
14
|
-
import {
|
|
14
|
+
import { Point } from '.';
|
|
15
15
|
import { PreFlightInfo } from '.';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
export declare class FlightsEndPoint {
|
package/lib/Group.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Permission } from '.';
|
|
2
|
-
import { StringKeyValue } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { Permission } from '.';
|
|
4
|
+
import { StringKeyValue } from '.';
|
|
5
5
|
export declare class Group extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
email: string;
|
package/lib/GroupsEndPoint.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { Group } from '.';
|
|
4
3
|
import { StringKeyValue } from '.';
|
|
4
|
+
import { Group } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class GroupsEndPoint {
|
|
7
7
|
private config;
|
package/lib/Lead.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { ColumnDef } from '.';
|
|
1
2
|
import { Address } from '.';
|
|
2
3
|
import { LeadStatusCode } from '.';
|
|
3
4
|
import { FollowUpAction } from '.';
|
|
4
5
|
import { BaseEntityEx } from '.';
|
|
5
|
-
import { ColumnDef } from '.';
|
|
6
6
|
export declare class Lead extends BaseEntityEx {
|
|
7
7
|
firstName: string;
|
|
8
8
|
lastName: string;
|
package/lib/LeadsEndPoint.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
3
|
import { LeadAction } from '.';
|
|
4
|
-
import { Lead } from '.';
|
|
5
|
-
import { LeadStatusCode } from '.';
|
|
6
|
-
import { TimeSeries } from '.';
|
|
7
4
|
import { Booking } from '.';
|
|
8
|
-
import { Point } from '.';
|
|
9
5
|
import { IntEnumValue } from '.';
|
|
10
6
|
import { IntKeyValue } from '.';
|
|
7
|
+
import { TimeSeries } from '.';
|
|
8
|
+
import { Point } from '.';
|
|
9
|
+
import { Lead } from '.';
|
|
10
|
+
import { LeadStatusCode } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class LeadsEndPoint {
|
|
13
13
|
private config;
|
package/lib/LogBookRecord.d.ts
CHANGED
package/lib/Lookup.d.ts
CHANGED
package/lib/Maintenance.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColumnDef } from '.';
|
|
2
1
|
import { StatusCode } from '.';
|
|
3
2
|
import { MaintenanceActionCode } from '.';
|
|
4
3
|
import { BaseEntityEx } from '.';
|
|
4
|
+
import { ColumnDef } from '.';
|
|
5
5
|
export declare class Maintenance extends BaseEntityEx {
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { ConfirmStatusCode } from '.';
|
|
4
|
-
import { PriorityCode } from '.';
|
|
5
3
|
import { MessageConfirm } from '.';
|
|
6
4
|
import { MessageTypeCode } from '.';
|
|
5
|
+
import { ConfirmStatusCode } from '.';
|
|
6
|
+
import { PriorityCode } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class MessageConfirmsEndPoint {
|
|
9
9
|
private config;
|
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 '.';
|
|
4
3
|
import { Contact } from '.';
|
|
5
4
|
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 { Booking } from '.';
|
|
4
|
-
import { BookingTypeFlag } from '.';
|
|
5
|
-
import { Airplane } from '.';
|
|
6
3
|
import { BookingStatusCode } from '.';
|
|
7
|
-
import {
|
|
4
|
+
import { BookingTypeFlag } from '.';
|
|
8
5
|
import { BookingSlot } from '.';
|
|
6
|
+
import { Booking } from '.';
|
|
7
|
+
import { Lookup } from '.';
|
|
8
|
+
import { Airplane } from '.';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class MyBookingsEndPoint {
|
|
11
11
|
private config;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { InstructionTypeCode } from '.';
|
|
4
3
|
import { Syllabus } from '.';
|
|
5
4
|
import { PreFlightInfo } from '.';
|
|
6
|
-
import {
|
|
5
|
+
import { Flight } from '.';
|
|
7
6
|
import { FlightStatusCode } from '.';
|
|
7
|
+
import { InstructionTypeCode } from '.';
|
|
8
8
|
import { FlightPlan } from '.';
|
|
9
|
-
import {
|
|
9
|
+
import { PostFlightInfo } from '.';
|
|
10
10
|
import { FlightTypeCode } from '.';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class MyFlightsEndPoint {
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { RestUtil, EntitiesResponse } from '../utils';
|
|
2
|
+
import { GooxConfig } from '../config';
|
|
3
|
+
import { StorageItem } from '.';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MyInfoEndPoint {
|
|
6
|
+
private config;
|
|
7
|
+
private rest;
|
|
8
|
+
private baseUrl;
|
|
9
|
+
constructor(config: GooxConfig, rest: RestUtil);
|
|
10
|
+
/**
|
|
11
|
+
* Get a list of files and folders from the folder in Google Drive defined as Library
|
|
12
|
+
*/
|
|
13
|
+
broseLibrary(folder?: string): import("rxjs").Observable<EntitiesResponse<StorageItem>>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MyInfoEndPoint, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MyInfoEndPoint>;
|
|
16
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
-
import { MessageConfirm } from '.';
|
|
4
3
|
import { SystemMessage } from '.';
|
|
4
|
+
import { MessageConfirm } from '.';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class MyMessagesEndPoint {
|
|
7
7
|
private config;
|
package/lib/Permission.d.ts
CHANGED
package/lib/PreFlightInfo.d.ts
CHANGED
package/lib/StorageItem.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { BaseEntityEx } from '.';
|
|
2
1
|
import { ColumnDef } from '.';
|
|
2
|
+
import { BaseEntityEx } from '.';
|
|
3
3
|
export declare class StorageItem extends BaseEntityEx {
|
|
4
4
|
name: string;
|
|
5
5
|
path: string;
|
|
6
|
+
icon: string;
|
|
6
7
|
size: number;
|
|
7
8
|
mimeType: string;
|
|
8
9
|
isFolder: boolean;
|
package/lib/Syllabus.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { FlightCategoryCode } from '.';
|
|
2
|
-
import { InstructionTypeCode } from '.';
|
|
3
1
|
import { BaseEntityEx } from '.';
|
|
4
2
|
import { ColumnDef } from '.';
|
|
3
|
+
import { FlightCategoryCode } from '.';
|
|
4
|
+
import { InstructionTypeCode } from '.';
|
|
5
5
|
export declare class Syllabus extends BaseEntityEx {
|
|
6
6
|
plan: FlightCategoryCode;
|
|
7
7
|
type: InstructionTypeCode;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { InstructionTypeCode } from '.';
|
|
3
4
|
import { Syllabus } from '.';
|
|
4
5
|
import { FlightCategoryCode } from '.';
|
|
5
|
-
import { InstructionTypeCode } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SyllabusEndPoint {
|
|
8
8
|
private config;
|
package/lib/SyllabusFilter.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { SystemMessage } from '.';
|
|
3
4
|
import { MessageTypeCode } from '.';
|
|
4
5
|
import { MessageConfirm } from '.';
|
|
5
|
-
import { SystemMessage } from '.';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SystemMessagesEndPoint {
|
|
8
8
|
private config;
|
package/lib/TimeSeries.d.ts
CHANGED
package/lib/User.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UserStatusCode } from '.';
|
|
2
|
-
import { BaseEntityEx } from '.';
|
|
3
1
|
import { ColumnDef } from '.';
|
|
4
2
|
import { UserTypeCode } from '.';
|
|
5
3
|
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;
|
package/lib/UsersEndPoint.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtil, EntityResponse, EntitiesResponse, ActionResponse } from '../utils';
|
|
2
2
|
import { GooxConfig } from '../config';
|
|
3
|
+
import { StringKeyValue } from '.';
|
|
3
4
|
import { User } from '.';
|
|
4
5
|
import { UserTypeCode } from '.';
|
|
5
6
|
import { UserStatusCode } from '.';
|
|
6
|
-
import { StringKeyValue } from '.';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class UsersEndPoint {
|
|
9
9
|
private config;
|