@pulsecharterconnect/types 0.0.31 → 0.0.32
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,8 +105,8 @@ export interface ITransportationRequest {
|
|
|
105
105
|
surgicalServicesRequested: boolean;
|
|
106
106
|
transportationOptions: TransportationOptions;
|
|
107
107
|
status: TransportationRequestStatus;
|
|
108
|
-
createdAt
|
|
109
|
-
updatedAt
|
|
108
|
+
createdAt?: number;
|
|
109
|
+
updatedAt?: number;
|
|
110
110
|
}
|
|
111
111
|
export declare class TransportationRequest implements ITransportationRequest {
|
|
112
112
|
id: string;
|
|
@@ -125,7 +125,7 @@ export declare class TransportationRequest implements ITransportationRequest {
|
|
|
125
125
|
surgicalServicesRequested: boolean;
|
|
126
126
|
transportationOptions: TransportationOptions;
|
|
127
127
|
status: TransportationRequestStatus;
|
|
128
|
-
createdAt
|
|
129
|
-
updatedAt
|
|
128
|
+
createdAt?: number;
|
|
129
|
+
updatedAt?: number;
|
|
130
130
|
constructor(transportationRequest: TransportationRequest);
|
|
131
131
|
}
|