@platform-modules/foreign-ministry 1.3.204 → 1.3.205
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.
|
@@ -72,4 +72,6 @@ export declare class MediaRequests extends BaseModel {
|
|
|
72
72
|
popup_mandatory: MediaYesNo | null;
|
|
73
73
|
/** How long the popup remains visible (e.g. seconds or description) */
|
|
74
74
|
popup_duration: string | null;
|
|
75
|
+
/** When set to e.g. "Undersecretary Political", "Undersecretary Finance", "Ministry Office", approvers for Political_Opinion_Approval are resolved dynamically by the media approval API */
|
|
76
|
+
is_political_option_required_from: string | null;
|
|
75
77
|
}
|
|
@@ -157,6 +157,10 @@ __decorate([
|
|
|
157
157
|
(0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
|
|
158
158
|
__metadata("design:type", Object)
|
|
159
159
|
], MediaRequests.prototype, "popup_duration", void 0);
|
|
160
|
+
__decorate([
|
|
161
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
|
|
162
|
+
__metadata("design:type", Object)
|
|
163
|
+
], MediaRequests.prototype, "is_political_option_required_from", void 0);
|
|
160
164
|
exports.MediaRequests = MediaRequests = __decorate([
|
|
161
165
|
(0, typeorm_1.Entity)({ name: 'media_requests' })
|
|
162
166
|
], MediaRequests);
|
package/package.json
CHANGED
|
@@ -132,4 +132,8 @@ export class MediaRequests extends BaseModel {
|
|
|
132
132
|
/** How long the popup remains visible (e.g. seconds or description) */
|
|
133
133
|
@Column({ type: 'varchar', length: 100, nullable: true })
|
|
134
134
|
popup_duration: string | null;
|
|
135
|
+
|
|
136
|
+
/** When set to e.g. "Undersecretary Political", "Undersecretary Finance", "Ministry Office", approvers for Political_Opinion_Approval are resolved dynamically by the media approval API */
|
|
137
|
+
@Column({ type: 'varchar', length: 100, nullable: true })
|
|
138
|
+
is_political_option_required_from: string | null;
|
|
135
139
|
}
|