@pulsecharterconnect/types 0.2.22 → 0.2.23
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/dist/types/Case.d.ts +6 -1
- package/dist/types/Trip.d.ts +1 -5
- package/package.json +1 -1
package/dist/types/Case.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Facility } from "./Organization";
|
|
2
|
-
import { OrganTransport, OrganType, RecoveryType, TransportRequestType } from "./TransportationRequest";
|
|
2
|
+
import { ITransportationRequest, OrganTransport, OrganType, RecoveryType, TransportRequestType } from "./TransportationRequest";
|
|
3
|
+
import { ITrip } from "./Trip";
|
|
3
4
|
export declare enum CaseWorkflowStepLabel {
|
|
4
5
|
SUBMIT_REQUEST_FOR_PROPOSALS = "Submit Request for Proposals",
|
|
5
6
|
REVIEW_PROPOSALS_AND_CHOOSE_AIR_TRANSPORTATION = "Review Proposals & Choose Air Transportation",
|
|
@@ -71,6 +72,10 @@ export interface ICreateCaseDto {
|
|
|
71
72
|
transportationRequested: boolean;
|
|
72
73
|
transportationRequestAdditionalDetail?: TransportationRequestAdditionalDetail;
|
|
73
74
|
}
|
|
75
|
+
export interface ICaseDto extends ICase {
|
|
76
|
+
trip: ITrip;
|
|
77
|
+
transportationRequest?: ITransportationRequest;
|
|
78
|
+
}
|
|
74
79
|
export interface ICase {
|
|
75
80
|
id: string;
|
|
76
81
|
unosId: string;
|
package/dist/types/Trip.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ICommunicationsChannel } from "./Communications";
|
|
2
2
|
import { Facility, GroundService } from "./Organization";
|
|
3
3
|
import { IProposalSegment } from "./Proposal";
|
|
4
|
-
import {
|
|
4
|
+
import { OrganType, RecoveryType } from "./TransportationRequest";
|
|
5
5
|
export declare enum TripStatus {
|
|
6
6
|
PREPARATION = "preparation",
|
|
7
7
|
IN_PROGRESS = "in-progress",
|
|
@@ -239,7 +239,3 @@ export declare class Trip implements ITrip {
|
|
|
239
239
|
updatedAt?: number;
|
|
240
240
|
constructor(trip: ITrip);
|
|
241
241
|
}
|
|
242
|
-
export interface ITripDto extends ITrip {
|
|
243
|
-
trip: ITrip;
|
|
244
|
-
transportationRequest?: ITransportationRequest;
|
|
245
|
-
}
|