@platform-modules/foreign-ministry 1.3.145 → 1.3.146

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.
@@ -37,7 +37,7 @@ export declare class AppointmentRequests extends BaseModel {
37
37
  appointment_date: string | null;
38
38
  from_time: string | null;
39
39
  to_time: string | null;
40
- comments: string | null;
40
+ description: string | null;
41
41
  person_name: string | null;
42
42
  contact_number: string | null;
43
43
  agenda: string | null;
@@ -96,7 +96,7 @@ __decorate([
96
96
  __decorate([
97
97
  (0, typeorm_1.Column)({ type: 'text', nullable: true }),
98
98
  __metadata("design:type", Object)
99
- ], AppointmentRequests.prototype, "comments", void 0);
99
+ ], AppointmentRequests.prototype, "description", void 0);
100
100
  __decorate([
101
101
  (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
102
102
  __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.145",
3
+ "version": "1.3.146",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -70,7 +70,7 @@ export class AppointmentRequests extends BaseModel {
70
70
  to_time: string | null;
71
71
 
72
72
  @Column({ type: 'text', nullable: true })
73
- comments: string | null;
73
+ description: string | null;
74
74
 
75
75
  @Column({ type: 'varchar', length: 255, nullable: true })
76
76
  person_name: string | null;