@platform-modules/foreign-ministry 1.3.118 → 1.3.120

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.
@@ -16,6 +16,7 @@ export declare enum MemberType {
16
16
  export declare class DiplomaticClubCardMembers extends BaseModel {
17
17
  diplomatic_request_id: number;
18
18
  family_member_name: string;
19
+ family_member_name_in_arabic: string | null;
19
20
  relation: string | null;
20
21
  title: string | null;
21
22
  diplomatic_title_id: number | null;
@@ -50,6 +50,10 @@ __decorate([
50
50
  (0, typeorm_1.Column)({ type: 'varchar', length: 255 }),
51
51
  __metadata("design:type", String)
52
52
  ], DiplomaticClubCardMembers.prototype, "family_member_name", void 0);
53
+ __decorate([
54
+ (0, typeorm_1.Column)({ type: 'varchar', length: 500, nullable: true }),
55
+ __metadata("design:type", Object)
56
+ ], DiplomaticClubCardMembers.prototype, "family_member_name_in_arabic", void 0);
53
57
  __decorate([
54
58
  (0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
55
59
  __metadata("design:type", Object)
@@ -33,6 +33,7 @@ export declare class DiplomaticRequests extends BaseModel {
33
33
  service_id: number | null;
34
34
  sub_service_id: number | null;
35
35
  member_name: string | null;
36
+ member_name_in_arabic: string | null;
36
37
  membership_type: string | null;
37
38
  diplomatic_title_id: number | null;
38
39
  location: string | null;
@@ -112,6 +112,10 @@ __decorate([
112
112
  (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
113
113
  __metadata("design:type", Object)
114
114
  ], DiplomaticRequests.prototype, "member_name", void 0);
115
+ __decorate([
116
+ (0, typeorm_1.Column)({ type: 'varchar', length: 500, nullable: true }),
117
+ __metadata("design:type", Object)
118
+ ], DiplomaticRequests.prototype, "member_name_in_arabic", void 0);
115
119
  __decorate([
116
120
  (0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
117
121
  __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.118",
3
+ "version": "1.3.120",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -26,6 +26,9 @@ export class DiplomaticClubCardMembers extends BaseModel {
26
26
  @Column({ type: 'varchar', length: 255 })
27
27
  family_member_name: string;
28
28
 
29
+ @Column({ type: 'varchar', length: 500, nullable: true })
30
+ family_member_name_in_arabic: string | null;
31
+
29
32
  @Column({ type: 'varchar', length: 100, nullable: true })
30
33
  relation: string | null;
31
34
 
@@ -75,6 +75,9 @@ export class DiplomaticRequests extends BaseModel {
75
75
  @Column({ type: 'varchar', length: 255, nullable: true })
76
76
  member_name: string | null;
77
77
 
78
+ @Column({ type: 'varchar', length: 500, nullable: true })
79
+ member_name_in_arabic: string | null;
80
+
78
81
  @Column({ type: 'varchar', length: 100, nullable: true })
79
82
  membership_type: string | null;
80
83