@anthor/entities-types 1.132.29 → 1.132.30

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.
@@ -138,4 +138,10 @@ export interface Activity extends BaseModel {
138
138
  isTrial: boolean;
139
139
  startDateTime: Date;
140
140
  endDateTime: Date;
141
+ /**
142
+ * Momento do último compromisso (reserva/confirmação). Usado pela janela de
143
+ * arrependimento no cancelamento (feat/mission-regret-window). Opcional/aditivo:
144
+ * activities legadas têm undefined (= sem benefício de arrependimento).
145
+ */
146
+ committedAt?: Date;
141
147
  }
@@ -14,4 +14,9 @@ export interface ActivityCancelJustification extends BaseModel {
14
14
  activityType: MissionTypes;
15
15
  activityStartDateTime: Date;
16
16
  cancelationDateTime: Date;
17
+ /**
18
+ * Marca um cancelamento-arrependimento penalidade-zero (feat/mission-regret-window).
19
+ * Opcional/aditivo; default false no schema.
20
+ */
21
+ isRegret?: boolean;
17
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anthor/entities-types",
3
- "version": "1.132.29",
3
+ "version": "1.132.30",
4
4
  "publishConfig": {
5
5
  "access": "restricted"
6
6
  },
@@ -25,5 +25,5 @@
25
25
  "geojson": "^0.5.0",
26
26
  "jest-sonar-reporter": "^2.0.0"
27
27
  },
28
- "gitHead": "ab37f157d2c5fb1c5624a9d6f88e3d583b82cbea"
28
+ "gitHead": "9248165ca1734ddf9acb88715777695123084137"
29
29
  }