@shisyamo4131/air-guard-v2-schemas 2.3.7-dev.12 → 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/package.json +1 -1
- package/src/Company.js +8 -1
package/package.json
CHANGED
package/src/Company.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Company Model
|
|
3
|
-
* @version 1.
|
|
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 {
|