@platform-modules/civil-aviation-authority 2.3.137 → 2.3.138
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.
|
@@ -29,6 +29,12 @@ export declare class AppealAgainstAdministrativeDecisionRequest extends BaseMode
|
|
|
29
29
|
decision_date: Date;
|
|
30
30
|
decision_subject: string;
|
|
31
31
|
grievance_details: string;
|
|
32
|
+
individuals_involved: string[] | null;
|
|
33
|
+
times: string[] | null;
|
|
34
|
+
dates: Date | null;
|
|
35
|
+
location: string | null;
|
|
36
|
+
requests: string[] | null;
|
|
37
|
+
events: string[] | null;
|
|
32
38
|
grievant_name: string;
|
|
33
39
|
grievant_employee_number: string;
|
|
34
40
|
grievant_directorate_id: number | null;
|
|
@@ -109,6 +109,30 @@ __decorate([
|
|
|
109
109
|
(0, typeorm_1.Column)({ type: "text", nullable: false }),
|
|
110
110
|
__metadata("design:type", String)
|
|
111
111
|
], AppealAgainstAdministrativeDecisionRequest.prototype, "grievance_details", void 0);
|
|
112
|
+
__decorate([
|
|
113
|
+
(0, typeorm_1.Column)({ type: "jsonb", nullable: true }),
|
|
114
|
+
__metadata("design:type", Object)
|
|
115
|
+
], AppealAgainstAdministrativeDecisionRequest.prototype, "individuals_involved", void 0);
|
|
116
|
+
__decorate([
|
|
117
|
+
(0, typeorm_1.Column)({ type: "jsonb", nullable: true }),
|
|
118
|
+
__metadata("design:type", Object)
|
|
119
|
+
], AppealAgainstAdministrativeDecisionRequest.prototype, "times", void 0);
|
|
120
|
+
__decorate([
|
|
121
|
+
(0, typeorm_1.Column)({ type: "date", nullable: true }),
|
|
122
|
+
__metadata("design:type", Object)
|
|
123
|
+
], AppealAgainstAdministrativeDecisionRequest.prototype, "dates", void 0);
|
|
124
|
+
__decorate([
|
|
125
|
+
(0, typeorm_1.Column)({ type: "text", nullable: true }),
|
|
126
|
+
__metadata("design:type", Object)
|
|
127
|
+
], AppealAgainstAdministrativeDecisionRequest.prototype, "location", void 0);
|
|
128
|
+
__decorate([
|
|
129
|
+
(0, typeorm_1.Column)({ type: "jsonb", nullable: true }),
|
|
130
|
+
__metadata("design:type", Object)
|
|
131
|
+
], AppealAgainstAdministrativeDecisionRequest.prototype, "requests", void 0);
|
|
132
|
+
__decorate([
|
|
133
|
+
(0, typeorm_1.Column)({ type: "jsonb", nullable: true }),
|
|
134
|
+
__metadata("design:type", Object)
|
|
135
|
+
], AppealAgainstAdministrativeDecisionRequest.prototype, "events", void 0);
|
|
112
136
|
__decorate([
|
|
113
137
|
(0, typeorm_1.Column)({ type: "varchar", length: 500, nullable: false }),
|
|
114
138
|
__metadata("design:type", String)
|
package/package.json
CHANGED
|
@@ -75,11 +75,29 @@ export class AppealAgainstAdministrativeDecisionRequest extends BaseModel {
|
|
|
75
75
|
@Column({ type: "text", nullable: false })
|
|
76
76
|
decision_subject: string;
|
|
77
77
|
|
|
78
|
-
@Column({ type: "text", nullable: false })
|
|
79
|
-
grievance_details: string;
|
|
80
|
-
|
|
81
|
-
@Column({ type: "
|
|
82
|
-
|
|
78
|
+
@Column({ type: "text", nullable: false })
|
|
79
|
+
grievance_details: string;
|
|
80
|
+
|
|
81
|
+
@Column({ type: "jsonb", nullable: true })
|
|
82
|
+
individuals_involved: string[] | null;
|
|
83
|
+
|
|
84
|
+
@Column({ type: "jsonb", nullable: true })
|
|
85
|
+
times: string[] | null;
|
|
86
|
+
|
|
87
|
+
@Column({ type: "date", nullable: true })
|
|
88
|
+
dates: Date | null;
|
|
89
|
+
|
|
90
|
+
@Column({ type: "text", nullable: true })
|
|
91
|
+
location: string | null;
|
|
92
|
+
|
|
93
|
+
@Column({ type: "jsonb", nullable: true })
|
|
94
|
+
requests: string[] | null;
|
|
95
|
+
|
|
96
|
+
@Column({ type: "jsonb", nullable: true })
|
|
97
|
+
events: string[] | null;
|
|
98
|
+
|
|
99
|
+
@Column({ type: "varchar", length: 500, nullable: false })
|
|
100
|
+
grievant_name: string;
|
|
83
101
|
|
|
84
102
|
@Column({ type: "varchar", length: 100, nullable: false })
|
|
85
103
|
grievant_employee_number: string;
|