energy-flow-control--types-and-enums 1.0.258 → 1.0.260

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "energy-flow-control--types-and-enums",
3
- "version": "1.0.258",
3
+ "version": "1.0.260",
4
4
  "description": "",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -693,3 +693,12 @@ export interface IUnifiedUserProfile {
693
693
  lastName: string
694
694
  email: string
695
695
  }
696
+
697
+ export interface IEnergyMeterAssignedToCustomerOrAccommodationUnit extends ITimeTravelProps {
698
+ energyMeterId: number
699
+ customerId: number | null
700
+ accommodationUnitId: number | null
701
+ effectiveFrom: Date
702
+ reversedAt: Date | null
703
+ reversedBy: number | null
704
+ }