energy-flow-control--types-and-enums 1.0.206 → 1.0.208

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.206",
3
+ "version": "1.0.208",
4
4
  "description": "",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -71,6 +71,7 @@ export enum EnumInvoiceState {
71
71
  export enum EnumBookingReason {
72
72
  PAYMENT_RECEIPT = 'PAYMENT_RECEIPT',
73
73
  INVOICE = 'INVOICE',
74
+ COUNTER_ENTRY = 'COUNTER_ENTRY',
74
75
  }
75
76
 
76
77
  export enum EnumInvoiceTopic {
package/src/index.js CHANGED
@@ -73,6 +73,7 @@ var EnumBookingReason;
73
73
  (function (EnumBookingReason) {
74
74
  EnumBookingReason["PAYMENT_RECEIPT"] = "PAYMENT_RECEIPT";
75
75
  EnumBookingReason["INVOICE"] = "INVOICE";
76
+ EnumBookingReason["COUNTER_ENTRY"] = "COUNTER_ENTRY";
76
77
  })(EnumBookingReason || (exports.EnumBookingReason = EnumBookingReason = {}));
77
78
  var EnumInvoiceTopic;
78
79
  (function (EnumInvoiceTopic) {
@@ -302,6 +302,7 @@ export interface ILedger extends ITimeTravelProps {
302
302
  credit: number | null
303
303
  comment: string | null
304
304
 
305
+ invoiceState: EnumInvoiceState | null
305
306
  journalized: boolean
306
307
  }
307
308