@shisyamo4131/air-guard-v2-schemas 2.3.7-dev.52 → 2.3.7-dev.53

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.52",
3
+ "version": "2.3.7-dev.53",
4
4
  "description": "Schemas for AirGuard V2",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -616,6 +616,12 @@ export default class SiteOperationSchedule extends Operation {
616
616
  instance.docId = "";
617
617
  instance.dateAt = new Date(date);
618
618
  instance.operationResultId = null;
619
+
620
+ // 2025-12-23 追加
621
+ // 複製元が既に配置通知を出している可能性があるため、`hasNotification` を false に更新
622
+ instance.employees.forEach((emp) => (emp.hasNotification = false));
623
+ instance.outsourcers.forEach((out) => (out.hasNotification = false));
624
+
619
625
  return instance;
620
626
  });
621
627