@pulsecharterconnect/types 0.2.70 → 0.2.71
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 +2 -2
- package/dist/types/Case.js +0 -1
- package/package.json +1 -1
package/dist/types/Case.d.ts
CHANGED
|
@@ -71,6 +71,7 @@ export interface ICreateCaseDto {
|
|
|
71
71
|
casePickupLocation?: Facility;
|
|
72
72
|
transportationRequested: boolean;
|
|
73
73
|
transportationRequestAdditionalDetail?: TransportationRequestAdditionalDetail;
|
|
74
|
+
equipmentReturnRequested?: boolean;
|
|
74
75
|
}
|
|
75
76
|
export interface IUpdateCaseDto {
|
|
76
77
|
id: string;
|
|
@@ -84,6 +85,7 @@ export interface IUpdateCaseDto {
|
|
|
84
85
|
transportationRequestAdditionalDetail?: TransportationRequestAdditionalDetail;
|
|
85
86
|
tripId: string;
|
|
86
87
|
transportationRequestId?: string;
|
|
88
|
+
equipmentReturnRequested?: boolean;
|
|
87
89
|
}
|
|
88
90
|
export interface ICaseDto extends ICase {
|
|
89
91
|
transportationRequestAdditionalDetail?: TransportationRequestAdditionalDetail;
|
|
@@ -101,7 +103,6 @@ export interface ICase {
|
|
|
101
103
|
caseRecipientFacility: Facility;
|
|
102
104
|
caseRecoveryLocation: Facility;
|
|
103
105
|
casePickupLocation?: Facility;
|
|
104
|
-
equipmentReturnRequested?: boolean;
|
|
105
106
|
createdAt?: number;
|
|
106
107
|
updatedAt?: number;
|
|
107
108
|
}
|
|
@@ -116,7 +117,6 @@ export declare class Case implements ICase {
|
|
|
116
117
|
caseRecipientFacility: Facility;
|
|
117
118
|
caseRecoveryLocation: Facility;
|
|
118
119
|
casePickupLocation?: Facility;
|
|
119
|
-
equipmentReturnRequested?: boolean;
|
|
120
120
|
createdAt?: number;
|
|
121
121
|
updatedAt?: number;
|
|
122
122
|
constructor(caseData: ICase);
|
package/dist/types/Case.js
CHANGED
|
@@ -60,7 +60,6 @@ class Case {
|
|
|
60
60
|
this.caseRecipientFacility = caseData.caseRecipientFacility;
|
|
61
61
|
this.caseRecoveryLocation = caseData.caseRecoveryLocation;
|
|
62
62
|
this.casePickupLocation = caseData.casePickupLocation;
|
|
63
|
-
this.equipmentReturnRequested = caseData.equipmentReturnRequested || false;
|
|
64
63
|
this.createdAt = caseData.createdAt;
|
|
65
64
|
this.updatedAt = caseData.updatedAt;
|
|
66
65
|
}
|