@shisyamo4131/air-guard-v2-schemas 2.3.7-dev.45 → 2.3.7-dev.48

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": "@shisyamo4131/air-guard-v2-schemas",
3
- "version": "2.3.7-dev.45",
3
+ "version": "2.3.7-dev.48",
4
4
  "description": "Schemas for AirGuard V2",
5
5
  "type": "module",
6
6
  "main": "index.js",
package/src/Employee.js CHANGED
@@ -25,7 +25,7 @@ const classProps = {
25
25
  address: defField("address", { required: true }),
26
26
  building: defField("building"),
27
27
  location: defField("location", { hidden: true }),
28
- mobile: defField("mobile", { required: true }),
28
+ mobile: defField("mobile"),
29
29
  email: defField("email", { required: false }),
30
30
  dateOfHire: defField("dateOfHire", { required: true }),
31
31
  employmentStatus: defField("employmentStatus", { required: true }),
package/src/Site.js CHANGED
@@ -121,6 +121,7 @@ export default class Site extends FireModel {
121
121
  { title: "取引先名", key: "customer.name", value: "customer.name" },
122
122
  ];
123
123
 
124
+ static STATUS = VALUES;
124
125
  static STATUS_ACTIVE = VALUES.ACTIVE.value;
125
126
  static STATUS_TERMINATED = VALUES.TERMINATED.value;
126
127