@shisyamo4131/air-guard-v2-schemas 2.3.7-dev.11 → 2.3.7-dev.13

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/index.js CHANGED
@@ -14,4 +14,5 @@ export { default as Site } from "./src/Site.js";
14
14
  export { default as SiteOperationSchedule } from "./src/SiteOperationSchedule.js";
15
15
  export { default as SiteOperationScheduleDetail } from "./src/SiteOperationScheduleDetail.js";
16
16
  export { default as SiteOrder } from "./src/SiteOrder.js";
17
+ export { default as System } from "./src/System.js";
17
18
  export { default as User } from "./src/User.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shisyamo4131/air-guard-v2-schemas",
3
- "version": "2.3.7-dev.11",
3
+ "version": "2.3.7-dev.13",
4
4
  "description": "Schemas for AirGuard V2",
5
5
  "type": "module",
6
6
  "main": "index.js",
package/src/Company.js CHANGED
@@ -1,7 +1,8 @@
1
1
  /**
2
2
  * Company Model
3
- * @version 1.3.0
3
+ * @version 1.4.0
4
4
  * @author shisyamo4131
5
+ * @update 2025-12-02 Add maintenance information properties.
5
6
  * @update 2025-12-01 Add Stripe integration fields (stripeCustomerId, subscription).
6
7
  * @update 2025-11-27 Add bank information fields for billing.
7
8
  * @update 2025-11-23 Set `usePrefix` to false.
@@ -111,6 +112,12 @@ const classProps = {
111
112
  employeeLimit: 10,
112
113
  }),
113
114
  }),
115
+
116
+ /** メンテナンス情報 */
117
+ maintenanceMode: defField("check", { default: false, hidden: true }),
118
+ maintenanceReason: defField("oneLine", { default: null, hidden: true }),
119
+ maintenanceStartAt: defField("dateAt", { default: null, hidden: true }),
120
+ maintenanceStartedBy: defField("oneLine", { default: null, hidden: true }),
114
121
  };
115
122
 
116
123
  export default class Company extends FireModel {