@platform-modules/foreign-ministry 1.0.59 → 1.0.61

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.
@@ -8,13 +8,11 @@ export declare class ContactInfo extends BaseModel {
8
8
  extension_number: string;
9
9
  fax_number: string;
10
10
  location: string;
11
- website: string;
12
- blog: string;
13
11
  street: string;
14
12
  city: string;
15
13
  state: string;
16
14
  zip_code: string;
17
15
  country: string;
18
16
  photo_url: string;
19
- department_Id: number;
17
+ department_id: number;
20
18
  }
@@ -47,14 +47,6 @@ __decorate([
47
47
  (0, typeorm_1.Column)({ type: "varchar", length: 255, nullable: true }),
48
48
  __metadata("design:type", String)
49
49
  ], ContactInfo.prototype, "location", void 0);
50
- __decorate([
51
- (0, typeorm_1.Column)({ type: "varchar", length: 255, nullable: true }),
52
- __metadata("design:type", String)
53
- ], ContactInfo.prototype, "website", void 0);
54
- __decorate([
55
- (0, typeorm_1.Column)({ type: "varchar", length: 255, nullable: true }),
56
- __metadata("design:type", String)
57
- ], ContactInfo.prototype, "blog", void 0);
58
50
  __decorate([
59
51
  (0, typeorm_1.Column)({ type: "varchar", length: 255, nullable: true }),
60
52
  __metadata("design:type", String)
@@ -82,7 +74,7 @@ __decorate([
82
74
  __decorate([
83
75
  (0, typeorm_1.Column)({ nullable: true }),
84
76
  __metadata("design:type", Number)
85
- ], ContactInfo.prototype, "department_Id", void 0);
77
+ ], ContactInfo.prototype, "department_id", void 0);
86
78
  exports.ContactInfo = ContactInfo = __decorate([
87
79
  (0, typeorm_1.Entity)({ name: "contact_info" })
88
80
  ], ContactInfo);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/foreign-ministry",
3
- "version": "1.0.59",
3
+ "version": "1.0.61",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -29,11 +29,11 @@ export class ContactInfo extends BaseModel {
29
29
  @Column({ type: "varchar", length: 255, nullable: true })
30
30
  location: string; // Optional
31
31
 
32
- @Column({ type: "varchar", length: 255, nullable: true })
33
- website: string; // Optional
32
+ // @Column({ type: "varchar", length: 255, nullable: true })
33
+ // website: string; // Optional
34
34
 
35
- @Column({ type: "varchar", length: 255, nullable: true })
36
- blog: string; // Optional
35
+ // @Column({ type: "varchar", length: 255, nullable: true })
36
+ // blog: string; // Optional
37
37
 
38
38
  // Business Postal Address Information
39
39
  @Column({ type: "varchar", length: 255, nullable: true })
@@ -56,5 +56,5 @@ export class ContactInfo extends BaseModel {
56
56
  photo_url: string;
57
57
 
58
58
  @Column({ nullable: true })
59
- department_Id: number;
59
+ department_id: number;
60
60
  }