@provis/provis-common-be-module 2.5.35 → 2.5.36

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.
@@ -7,6 +7,10 @@ export declare const invoiceStatusCode: {
7
7
  readonly code: 100;
8
8
  readonly name: "Paid";
9
9
  };
10
+ readonly INSTALLMENT: {
11
+ readonly code: 110;
12
+ readonly name: "Installment";
13
+ };
10
14
  readonly SUBMIT: {
11
15
  readonly code: 200;
12
16
  readonly name: "Submit";
@@ -10,6 +10,10 @@ exports.invoiceStatusCode = {
10
10
  code: 100,
11
11
  name: 'Paid',
12
12
  },
13
+ INSTALLMENT: {
14
+ code: 110,
15
+ name: 'Installment',
16
+ },
13
17
  SUBMIT: {
14
18
  code: 200,
15
19
  name: 'Submit',
@@ -26,6 +30,7 @@ exports.invoiceStatusCode = {
26
30
  exports.invoiceinvoiceStatusCodeName = {
27
31
  [exports.invoiceStatusCode.INITIAL.code]: exports.invoiceStatusCode.INITIAL.name,
28
32
  [exports.invoiceStatusCode.PAID.code]: exports.invoiceStatusCode.PAID.name,
33
+ [exports.invoiceStatusCode.INSTALLMENT.code]: exports.invoiceStatusCode.INSTALLMENT.name,
29
34
  [exports.invoiceStatusCode.SUBMIT.code]: exports.invoiceStatusCode.SUBMIT.name,
30
35
  [exports.invoiceStatusCode.CANCEL.code]: exports.invoiceStatusCode.CANCEL.name,
31
36
  [exports.invoiceStatusCode.EXPIRED.code]: exports.invoiceStatusCode.EXPIRED.name,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provis/provis-common-be-module",
3
- "version": "2.5.35",
3
+ "version": "2.5.36",
4
4
  "description": "This common module for Provis internal backend use lib",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {