@shisyamo4131/air-guard-v2-schemas 2.3.3 → 2.3.4
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
|
@@ -135,7 +135,10 @@
|
|
|
135
135
|
import SiteOperationScheduleDetail from "./SiteOperationScheduleDetail.js";
|
|
136
136
|
import { getDateAt, ContextualError } from "./utils/index.js";
|
|
137
137
|
import { defField } from "./parts/fieldDefinitions.js";
|
|
138
|
-
import {
|
|
138
|
+
import {
|
|
139
|
+
VALUES,
|
|
140
|
+
OPTIONS,
|
|
141
|
+
} from "./constants/arrangement-notification-status.js";
|
|
139
142
|
|
|
140
143
|
const classProps = {
|
|
141
144
|
status: defField("arrangementNotificationStatus", { required: true }),
|
|
@@ -166,6 +169,7 @@ export default class ArrangementNotification extends SiteOperationScheduleDetail
|
|
|
166
169
|
static classProps = classProps;
|
|
167
170
|
|
|
168
171
|
static STATUS = VALUES;
|
|
172
|
+
static STATUS_OPTIONS = OPTIONS;
|
|
169
173
|
|
|
170
174
|
afterInitialize(item = {}) {
|
|
171
175
|
// Define computed properties that are defined on SiteOperationScheduleDetail
|