@pulsecharterconnect/types 0.2.103 → 0.2.105
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
CHANGED
|
@@ -61,6 +61,8 @@ export type TransportationRequestAdditionalDetail = {
|
|
|
61
61
|
numberOfPassengers: number;
|
|
62
62
|
organTransportList: OrganTransport[];
|
|
63
63
|
specialInstructions?: string;
|
|
64
|
+
organProcurementOrganizationId?: string;
|
|
65
|
+
organProcurementOrganizationContactId?: string;
|
|
64
66
|
};
|
|
65
67
|
export interface ICreateCaseDto {
|
|
66
68
|
unosId: string;
|
|
@@ -189,6 +189,8 @@ export declare class TransportationRequest implements ITransportationRequest {
|
|
|
189
189
|
eventLog?: IEventLog[] | undefined;
|
|
190
190
|
isTrainingMode?: boolean;
|
|
191
191
|
equipmentReturnRequested?: boolean;
|
|
192
|
+
organProcurementOrganizationContactId?: string | undefined;
|
|
193
|
+
organProcurementOrganizationId?: string | undefined;
|
|
192
194
|
createdAt?: number;
|
|
193
195
|
updatedAt?: number;
|
|
194
196
|
constructor(transportationRequest: ITransportationRequest);
|
|
@@ -201,6 +201,10 @@ class TransportationRequest {
|
|
|
201
201
|
this.isTrainingMode = transportationRequest.isTrainingMode || false;
|
|
202
202
|
this.equipmentReturnRequested =
|
|
203
203
|
transportationRequest.equipmentReturnRequested || false;
|
|
204
|
+
this.organProcurementOrganizationContactId =
|
|
205
|
+
transportationRequest.organProcurementOrganizationContactId;
|
|
206
|
+
this.organProcurementOrganizationId =
|
|
207
|
+
transportationRequest.organProcurementOrganizationId;
|
|
204
208
|
this.createdAt = transportationRequest.createdAt;
|
|
205
209
|
this.updatedAt = transportationRequest.updatedAt;
|
|
206
210
|
}
|