@platform-modules/foreign-ministry 1.3.332 → 1.3.333

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.
@@ -11,6 +11,11 @@ export declare class EmbassyEvaluationCycle extends BaseModel {
11
11
  start_date: string;
12
12
  /** End of evaluation window, format MM-DD. Submissions locked after this date in the active year. */
13
13
  end_date: string;
14
+ /**
15
+ * Last day submissions are allowed (MM-DD). Closing reminders use this date.
16
+ * When null, `end_date` is used for submission and reminders.
17
+ */
18
+ last_evaluation_date: string | null;
14
19
  status: EmbassyEvaluationCycleStatus;
15
20
  service_id: number | null;
16
21
  sub_service_id: number | null;
@@ -34,6 +34,10 @@ __decorate([
34
34
  (0, typeorm_1.Column)({ type: 'varchar', length: 10, nullable: false }),
35
35
  __metadata("design:type", String)
36
36
  ], EmbassyEvaluationCycle.prototype, "end_date", void 0);
37
+ __decorate([
38
+ (0, typeorm_1.Column)({ type: 'varchar', length: 10, nullable: true }),
39
+ __metadata("design:type", Object)
40
+ ], EmbassyEvaluationCycle.prototype, "last_evaluation_date", void 0);
37
41
  __decorate([
38
42
  (0, typeorm_1.Column)({
39
43
  type: 'enum',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/foreign-ministry",
3
- "version": "1.3.332",
3
+ "version": "1.3.333",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "exports": {
@@ -21,6 +21,13 @@ export class EmbassyEvaluationCycle extends BaseModel {
21
21
  @Column({ type: 'varchar', length: 10, nullable: false })
22
22
  end_date: string;
23
23
 
24
+ /**
25
+ * Last day submissions are allowed (MM-DD). Closing reminders use this date.
26
+ * When null, `end_date` is used for submission and reminders.
27
+ */
28
+ @Column({ type: 'varchar', length: 10, nullable: true })
29
+ last_evaluation_date: string | null;
30
+
24
31
  @Column({
25
32
  type: 'enum',
26
33
  enum: EmbassyEvaluationCycleStatus,