@platform-modules/foreign-ministry 1.3.190 → 1.3.191

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.
@@ -40,6 +40,8 @@ export declare class AppointmentRequests extends BaseModel {
40
40
  from_time: string | null;
41
41
  to_time: string | null;
42
42
  is_all_day: boolean | null;
43
+ /** When is_all_day is true: appointment repeats every day from appointment_date until this date (inclusive). */
44
+ recurrence_end_date: string | null;
43
45
  description: string | null;
44
46
  person_name: string | null;
45
47
  contact_number: string | null;
@@ -102,6 +102,10 @@ __decorate([
102
102
  (0, typeorm_1.Column)({ type: 'boolean', default: false, nullable: true }),
103
103
  __metadata("design:type", Object)
104
104
  ], AppointmentRequests.prototype, "is_all_day", void 0);
105
+ __decorate([
106
+ (0, typeorm_1.Column)({ type: 'date', nullable: true }),
107
+ __metadata("design:type", Object)
108
+ ], AppointmentRequests.prototype, "recurrence_end_date", void 0);
105
109
  __decorate([
106
110
  (0, typeorm_1.Column)({ type: 'text', nullable: true }),
107
111
  __metadata("design:type", Object)
@@ -53,6 +53,8 @@ export declare class MeetingRequests extends BaseModel {
53
53
  from_time: string | null;
54
54
  to_time: string | null;
55
55
  is_all_day: boolean | null;
56
+ /** When is_all_day is true: meeting repeats every day from meeting_date until this date (inclusive). */
57
+ recurrence_end_date: string | null;
56
58
  hall_id: number | null;
57
59
  other_resources_booking: OtherResourcesBooking | null;
58
60
  comments: string | null;
@@ -118,6 +118,10 @@ __decorate([
118
118
  (0, typeorm_1.Column)({ type: 'boolean', default: false, nullable: true }),
119
119
  __metadata("design:type", Object)
120
120
  ], MeetingRequests.prototype, "is_all_day", void 0);
121
+ __decorate([
122
+ (0, typeorm_1.Column)({ type: 'date', nullable: true }),
123
+ __metadata("design:type", Object)
124
+ ], MeetingRequests.prototype, "recurrence_end_date", void 0);
121
125
  __decorate([
122
126
  (0, typeorm_1.Column)({ type: 'int', nullable: true }),
123
127
  __metadata("design:type", Object)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/foreign-ministry",
3
- "version": "1.3.190",
3
+ "version": "1.3.191",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -76,6 +76,10 @@ export class AppointmentRequests extends BaseModel {
76
76
  @Column({ type: 'boolean', default: false, nullable: true })
77
77
  is_all_day: boolean | null;
78
78
 
79
+ /** When is_all_day is true: appointment repeats every day from appointment_date until this date (inclusive). */
80
+ @Column({ type: 'date', nullable: true })
81
+ recurrence_end_date: string | null;
82
+
79
83
  @Column({ type: 'text', nullable: true })
80
84
  description: string | null;
81
85
 
@@ -92,6 +92,10 @@ export class MeetingRequests extends BaseModel {
92
92
  @Column({ type: 'boolean', default: false, nullable: true })
93
93
  is_all_day: boolean | null;
94
94
 
95
+ /** When is_all_day is true: meeting repeats every day from meeting_date until this date (inclusive). */
96
+ @Column({ type: 'date', nullable: true })
97
+ recurrence_end_date: string | null;
98
+
95
99
  @Column({ type: 'int', nullable: true })
96
100
  hall_id: number | null;
97
101