@pulsecharterconnect/types 0.0.30 → 0.0.31
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.
|
@@ -105,6 +105,8 @@ export interface ITransportationRequest {
|
|
|
105
105
|
surgicalServicesRequested: boolean;
|
|
106
106
|
transportationOptions: TransportationOptions;
|
|
107
107
|
status: TransportationRequestStatus;
|
|
108
|
+
createdAt: number;
|
|
109
|
+
updatedAt: number;
|
|
108
110
|
}
|
|
109
111
|
export declare class TransportationRequest implements ITransportationRequest {
|
|
110
112
|
id: string;
|
|
@@ -123,5 +125,7 @@ export declare class TransportationRequest implements ITransportationRequest {
|
|
|
123
125
|
surgicalServicesRequested: boolean;
|
|
124
126
|
transportationOptions: TransportationOptions;
|
|
125
127
|
status: TransportationRequestStatus;
|
|
128
|
+
createdAt: number;
|
|
129
|
+
updatedAt: number;
|
|
126
130
|
constructor(transportationRequest: TransportationRequest);
|
|
127
131
|
}
|
|
@@ -101,6 +101,8 @@ class TransportationRequest {
|
|
|
101
101
|
this.surgicalServicesRequested = transportationRequest.surgicalServicesRequested;
|
|
102
102
|
this.transportationOptions = transportationRequest.transportationOptions;
|
|
103
103
|
this.status = transportationRequest.status;
|
|
104
|
+
this.createdAt = transportationRequest.createdAt;
|
|
105
|
+
this.updatedAt = transportationRequest.updatedAt;
|
|
104
106
|
}
|
|
105
107
|
}
|
|
106
108
|
exports.TransportationRequest = TransportationRequest;
|