@shisyamo4131/air-guard-v2-schemas 1.0.1 → 1.1.0
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 +1 -0
- package/package.json +1 -1
- package/src/OperationResult.js +1 -0
package/index.js
CHANGED
|
@@ -2,6 +2,7 @@ export { default as Agreement } from "./src/Agreement.js";
|
|
|
2
2
|
export { default as ArrangementNotification } from "./src/ArrangementNotification.js";
|
|
3
3
|
export { default as Company } from "./src/Company.js";
|
|
4
4
|
export { default as Customer, CustomerMinimal } from "./src/Customer.js";
|
|
5
|
+
export { default as CutoffDate } from "./src/utils/CutoffDate.js";
|
|
5
6
|
export { default as Employee } from "./src/Employee.js";
|
|
6
7
|
export { default as OperationBilling } from "./src/OperationBilling.js";
|
|
7
8
|
export { default as OperationResult } from "./src/OperationResult.js";
|
package/package.json
CHANGED
package/src/OperationResult.js
CHANGED
|
@@ -188,6 +188,7 @@ import CutoffDate from "./utils/CutoffDate.js";
|
|
|
188
188
|
const classProps = {
|
|
189
189
|
...Operation.classProps,
|
|
190
190
|
...Agreement.classProps,
|
|
191
|
+
// Override Agreement's `cutoffDate` field to be hidden.
|
|
191
192
|
cutoffDate: defField("select", {
|
|
192
193
|
label: "締日区分",
|
|
193
194
|
default: CutoffDate.VALUES.END_OF_MONTH,
|