@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.
@@ -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);
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulsecharterconnect/types",
3
- "version": "0.2.69",
3
+ "version": "0.2.70",
4
4
  "description": "A TypeScript library for enhanced type safety.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",