@pulsecharterconnect/types 0.2.69 → 0.2.70
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 -0
- package/dist/types/Case.js +1 -0
- package/package.json +1 -1
package/dist/types/Case.d.ts
CHANGED
|
@@ -101,6 +101,7 @@ export interface ICase {
|
|
|
101
101
|
caseRecipientFacility: Facility;
|
|
102
102
|
caseRecoveryLocation: Facility;
|
|
103
103
|
casePickupLocation?: Facility;
|
|
104
|
+
equipmentReturnRequested?: boolean;
|
|
104
105
|
createdAt?: number;
|
|
105
106
|
updatedAt?: number;
|
|
106
107
|
}
|
|
@@ -115,6 +116,7 @@ export declare class Case implements ICase {
|
|
|
115
116
|
caseRecipientFacility: Facility;
|
|
116
117
|
caseRecoveryLocation: Facility;
|
|
117
118
|
casePickupLocation?: Facility;
|
|
119
|
+
equipmentReturnRequested?: boolean;
|
|
118
120
|
createdAt?: number;
|
|
119
121
|
updatedAt?: number;
|
|
120
122
|
constructor(caseData: ICase);
|
package/dist/types/Case.js
CHANGED
|
@@ -60,6 +60,7 @@ 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;
|
|
63
64
|
this.createdAt = caseData.createdAt;
|
|
64
65
|
this.updatedAt = caseData.updatedAt;
|
|
65
66
|
}
|