@shisyamo4131/air-guard-v2-schemas 2.3.7-dev.40 → 2.3.7-dev.43
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 +1 -1
- package/src/Customer.js +2 -0
package/package.json
CHANGED
package/src/Customer.js
CHANGED
|
@@ -78,6 +78,7 @@ const classProps = {
|
|
|
78
78
|
* @prop {string} prefecture - prefecture name derived from `prefCode` (read-only)
|
|
79
79
|
*
|
|
80
80
|
* @static
|
|
81
|
+
* @prop {object} STATUS - constant mapping for contract statuses
|
|
81
82
|
* @prop {string} STATUS_ACTIVE - constant for active contract status
|
|
82
83
|
* @prop {string} STATUS_TERMINATED - constant for terminated contract status
|
|
83
84
|
*
|
|
@@ -107,6 +108,7 @@ export default class Customer extends FireModel {
|
|
|
107
108
|
{ key: "fullAddress", title: "所在地" },
|
|
108
109
|
];
|
|
109
110
|
|
|
111
|
+
static STATUS = VALUES;
|
|
110
112
|
static STATUS_ACTIVE = VALUES.ACTIVE.value;
|
|
111
113
|
static STATUS_TERMINATED = VALUES.TERMINATED.value;
|
|
112
114
|
|