euparliamentmonitor 0.8.4
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.
- package/LICENSE +201 -0
- package/README.md +1005 -0
- package/SECURITY.md +151 -0
- package/package.json +131 -0
- package/scripts/constants/committee-indicator-map.d.ts +199 -0
- package/scripts/constants/committee-indicator-map.d.ts.map +1 -0
- package/scripts/constants/committee-indicator-map.js +1224 -0
- package/scripts/constants/committee-indicator-map.js.map +1 -0
- package/scripts/constants/config.d.ts +38 -0
- package/scripts/constants/config.d.ts.map +1 -0
- package/scripts/constants/config.js +66 -0
- package/scripts/constants/config.js.map +1 -0
- package/scripts/constants/language-articles.d.ts +84 -0
- package/scripts/constants/language-articles.d.ts.map +1 -0
- package/scripts/constants/language-articles.js +6771 -0
- package/scripts/constants/language-articles.js.map +1 -0
- package/scripts/constants/language-core.d.ts +38 -0
- package/scripts/constants/language-core.d.ts.map +1 -0
- package/scripts/constants/language-core.js +90 -0
- package/scripts/constants/language-core.js.map +1 -0
- package/scripts/constants/language-ui.d.ts +82 -0
- package/scripts/constants/language-ui.d.ts.map +1 -0
- package/scripts/constants/language-ui.js +889 -0
- package/scripts/constants/language-ui.js.map +1 -0
- package/scripts/constants/languages.d.ts +14 -0
- package/scripts/constants/languages.d.ts.map +1 -0
- package/scripts/constants/languages.js +15 -0
- package/scripts/constants/languages.js.map +1 -0
- package/scripts/generators/analysis-builders.d.ts +266 -0
- package/scripts/generators/analysis-builders.d.ts.map +1 -0
- package/scripts/generators/analysis-builders.js +2903 -0
- package/scripts/generators/analysis-builders.js.map +1 -0
- package/scripts/generators/breaking-content.d.ts +45 -0
- package/scripts/generators/breaking-content.d.ts.map +1 -0
- package/scripts/generators/breaking-content.js +530 -0
- package/scripts/generators/breaking-content.js.map +1 -0
- package/scripts/generators/committee-helpers.d.ts +54 -0
- package/scripts/generators/committee-helpers.d.ts.map +1 -0
- package/scripts/generators/committee-helpers.js +154 -0
- package/scripts/generators/committee-helpers.js.map +1 -0
- package/scripts/generators/dashboard-content.d.ts +95 -0
- package/scripts/generators/dashboard-content.d.ts.map +1 -0
- package/scripts/generators/dashboard-content.js +630 -0
- package/scripts/generators/dashboard-content.js.map +1 -0
- package/scripts/generators/deep-analysis-content.d.ts +23 -0
- package/scripts/generators/deep-analysis-content.d.ts.map +1 -0
- package/scripts/generators/deep-analysis-content.js +831 -0
- package/scripts/generators/deep-analysis-content.js.map +1 -0
- package/scripts/generators/mindmap-content.d.ts +55 -0
- package/scripts/generators/mindmap-content.d.ts.map +1 -0
- package/scripts/generators/mindmap-content.js +512 -0
- package/scripts/generators/mindmap-content.js.map +1 -0
- package/scripts/generators/motions-content.d.ts +50 -0
- package/scripts/generators/motions-content.d.ts.map +1 -0
- package/scripts/generators/motions-content.js +391 -0
- package/scripts/generators/motions-content.js.map +1 -0
- package/scripts/generators/news-enhanced.d.ts +14 -0
- package/scripts/generators/news-enhanced.d.ts.map +1 -0
- package/scripts/generators/news-enhanced.js +169 -0
- package/scripts/generators/news-enhanced.js.map +1 -0
- package/scripts/generators/news-indexes.d.ts +31 -0
- package/scripts/generators/news-indexes.d.ts.map +1 -0
- package/scripts/generators/news-indexes.js +410 -0
- package/scripts/generators/news-indexes.js.map +1 -0
- package/scripts/generators/pipeline/fetch-stage.d.ts +352 -0
- package/scripts/generators/pipeline/fetch-stage.d.ts.map +1 -0
- package/scripts/generators/pipeline/fetch-stage.js +1522 -0
- package/scripts/generators/pipeline/fetch-stage.js.map +1 -0
- package/scripts/generators/pipeline/generate-stage.d.ts +43 -0
- package/scripts/generators/pipeline/generate-stage.d.ts.map +1 -0
- package/scripts/generators/pipeline/generate-stage.js +204 -0
- package/scripts/generators/pipeline/generate-stage.js.map +1 -0
- package/scripts/generators/pipeline/output-stage.d.ts +48 -0
- package/scripts/generators/pipeline/output-stage.d.ts.map +1 -0
- package/scripts/generators/pipeline/output-stage.js +145 -0
- package/scripts/generators/pipeline/output-stage.js.map +1 -0
- package/scripts/generators/pipeline/transform-stage.d.ts +57 -0
- package/scripts/generators/pipeline/transform-stage.d.ts.map +1 -0
- package/scripts/generators/pipeline/transform-stage.js +111 -0
- package/scripts/generators/pipeline/transform-stage.js.map +1 -0
- package/scripts/generators/propositions-content.d.ts +29 -0
- package/scripts/generators/propositions-content.d.ts.map +1 -0
- package/scripts/generators/propositions-content.js +90 -0
- package/scripts/generators/propositions-content.js.map +1 -0
- package/scripts/generators/sankey-content.d.ts +45 -0
- package/scripts/generators/sankey-content.d.ts.map +1 -0
- package/scripts/generators/sankey-content.js +227 -0
- package/scripts/generators/sankey-content.js.map +1 -0
- package/scripts/generators/sitemap.d.ts +66 -0
- package/scripts/generators/sitemap.d.ts.map +1 -0
- package/scripts/generators/sitemap.js +562 -0
- package/scripts/generators/sitemap.js.map +1 -0
- package/scripts/generators/strategies/article-strategy.d.ts +146 -0
- package/scripts/generators/strategies/article-strategy.d.ts.map +1 -0
- package/scripts/generators/strategies/article-strategy.js +4 -0
- package/scripts/generators/strategies/article-strategy.js.map +1 -0
- package/scripts/generators/strategies/breaking-news-strategy.d.ts +64 -0
- package/scripts/generators/strategies/breaking-news-strategy.d.ts.map +1 -0
- package/scripts/generators/strategies/breaking-news-strategy.js +246 -0
- package/scripts/generators/strategies/breaking-news-strategy.js.map +1 -0
- package/scripts/generators/strategies/committee-reports-strategy.d.ts +93 -0
- package/scripts/generators/strategies/committee-reports-strategy.d.ts.map +1 -0
- package/scripts/generators/strategies/committee-reports-strategy.js +447 -0
- package/scripts/generators/strategies/committee-reports-strategy.js.map +1 -0
- package/scripts/generators/strategies/month-ahead-strategy.d.ts +60 -0
- package/scripts/generators/strategies/month-ahead-strategy.d.ts.map +1 -0
- package/scripts/generators/strategies/month-ahead-strategy.js +175 -0
- package/scripts/generators/strategies/month-ahead-strategy.js.map +1 -0
- package/scripts/generators/strategies/monthly-review-strategy.d.ts +66 -0
- package/scripts/generators/strategies/monthly-review-strategy.d.ts.map +1 -0
- package/scripts/generators/strategies/monthly-review-strategy.js +204 -0
- package/scripts/generators/strategies/monthly-review-strategy.js.map +1 -0
- package/scripts/generators/strategies/motions-strategy.d.ts +61 -0
- package/scripts/generators/strategies/motions-strategy.d.ts.map +1 -0
- package/scripts/generators/strategies/motions-strategy.js +215 -0
- package/scripts/generators/strategies/motions-strategy.js.map +1 -0
- package/scripts/generators/strategies/propositions-strategy.d.ts +60 -0
- package/scripts/generators/strategies/propositions-strategy.d.ts.map +1 -0
- package/scripts/generators/strategies/propositions-strategy.js +257 -0
- package/scripts/generators/strategies/propositions-strategy.js.map +1 -0
- package/scripts/generators/strategies/week-ahead-strategy.d.ts +57 -0
- package/scripts/generators/strategies/week-ahead-strategy.d.ts.map +1 -0
- package/scripts/generators/strategies/week-ahead-strategy.js +178 -0
- package/scripts/generators/strategies/week-ahead-strategy.js.map +1 -0
- package/scripts/generators/strategies/weekly-review-strategy.d.ts +63 -0
- package/scripts/generators/strategies/weekly-review-strategy.d.ts.map +1 -0
- package/scripts/generators/strategies/weekly-review-strategy.js +211 -0
- package/scripts/generators/strategies/weekly-review-strategy.js.map +1 -0
- package/scripts/generators/swot-content.d.ts +42 -0
- package/scripts/generators/swot-content.d.ts.map +1 -0
- package/scripts/generators/swot-content.js +366 -0
- package/scripts/generators/swot-content.js.map +1 -0
- package/scripts/generators/week-ahead-content.d.ts +103 -0
- package/scripts/generators/week-ahead-content.d.ts.map +1 -0
- package/scripts/generators/week-ahead-content.js +610 -0
- package/scripts/generators/week-ahead-content.js.map +1 -0
- package/scripts/index.d.ts +40 -0
- package/scripts/index.d.ts.map +1 -0
- package/scripts/index.js +53 -0
- package/scripts/index.js.map +1 -0
- package/scripts/mcp/ep-mcp-client.d.ts +471 -0
- package/scripts/mcp/ep-mcp-client.d.ts.map +1 -0
- package/scripts/mcp/ep-mcp-client.js +734 -0
- package/scripts/mcp/ep-mcp-client.js.map +1 -0
- package/scripts/mcp/mcp-connection.d.ts +264 -0
- package/scripts/mcp/mcp-connection.d.ts.map +1 -0
- package/scripts/mcp/mcp-connection.js +790 -0
- package/scripts/mcp/mcp-connection.js.map +1 -0
- package/scripts/mcp/mcp-health.d.ts +75 -0
- package/scripts/mcp/mcp-health.d.ts.map +1 -0
- package/scripts/mcp/mcp-health.js +78 -0
- package/scripts/mcp/mcp-health.js.map +1 -0
- package/scripts/mcp/mcp-retry.d.ts +94 -0
- package/scripts/mcp/mcp-retry.d.ts.map +1 -0
- package/scripts/mcp/mcp-retry.js +127 -0
- package/scripts/mcp/mcp-retry.js.map +1 -0
- package/scripts/mcp/wb-mcp-client.d.ts +38 -0
- package/scripts/mcp/wb-mcp-client.d.ts.map +1 -0
- package/scripts/mcp/wb-mcp-client.js +112 -0
- package/scripts/mcp/wb-mcp-client.js.map +1 -0
- package/scripts/templates/article-template.d.ts +9 -0
- package/scripts/templates/article-template.d.ts.map +1 -0
- package/scripts/templates/article-template.js +378 -0
- package/scripts/templates/article-template.js.map +1 -0
- package/scripts/templates/section-builders.d.ts +28 -0
- package/scripts/templates/section-builders.d.ts.map +1 -0
- package/scripts/templates/section-builders.js +142 -0
- package/scripts/templates/section-builders.js.map +1 -0
- package/scripts/types/analysis.d.ts +115 -0
- package/scripts/types/analysis.d.ts.map +1 -0
- package/scripts/types/analysis.js +4 -0
- package/scripts/types/analysis.js.map +1 -0
- package/scripts/types/common.d.ts +584 -0
- package/scripts/types/common.d.ts.map +1 -0
- package/scripts/types/common.js +96 -0
- package/scripts/types/common.js.map +1 -0
- package/scripts/types/generation.d.ts +104 -0
- package/scripts/types/generation.d.ts.map +1 -0
- package/scripts/types/generation.js +4 -0
- package/scripts/types/generation.js.map +1 -0
- package/scripts/types/index.d.ts +24 -0
- package/scripts/types/index.d.ts.map +1 -0
- package/scripts/types/index.js +16 -0
- package/scripts/types/index.js.map +1 -0
- package/scripts/types/intelligence.d.ts +129 -0
- package/scripts/types/intelligence.d.ts.map +1 -0
- package/scripts/types/intelligence.js +4 -0
- package/scripts/types/intelligence.js.map +1 -0
- package/scripts/types/mcp.d.ts +418 -0
- package/scripts/types/mcp.d.ts.map +1 -0
- package/scripts/types/mcp.js +4 -0
- package/scripts/types/mcp.js.map +1 -0
- package/scripts/types/parliament.d.ts +388 -0
- package/scripts/types/parliament.d.ts.map +1 -0
- package/scripts/types/parliament.js +4 -0
- package/scripts/types/parliament.js.map +1 -0
- package/scripts/types/quality.d.ts +114 -0
- package/scripts/types/quality.d.ts.map +1 -0
- package/scripts/types/quality.js +4 -0
- package/scripts/types/quality.js.map +1 -0
- package/scripts/types/stakeholder.d.ts +88 -0
- package/scripts/types/stakeholder.d.ts.map +1 -0
- package/scripts/types/stakeholder.js +16 -0
- package/scripts/types/stakeholder.js.map +1 -0
- package/scripts/types/visualization.d.ts +708 -0
- package/scripts/types/visualization.d.ts.map +1 -0
- package/scripts/types/visualization.js +4 -0
- package/scripts/types/visualization.js.map +1 -0
- package/scripts/types/world-bank.d.ts +85 -0
- package/scripts/types/world-bank.d.ts.map +1 -0
- package/scripts/types/world-bank.js +4 -0
- package/scripts/types/world-bank.js.map +1 -0
- package/scripts/utils/article-category.d.ts +18 -0
- package/scripts/utils/article-category.d.ts.map +1 -0
- package/scripts/utils/article-category.js +49 -0
- package/scripts/utils/article-category.js.map +1 -0
- package/scripts/utils/article-quality-scorer.d.ts +87 -0
- package/scripts/utils/article-quality-scorer.d.ts.map +1 -0
- package/scripts/utils/article-quality-scorer.js +1048 -0
- package/scripts/utils/article-quality-scorer.js.map +1 -0
- package/scripts/utils/content-metadata.d.ts +34 -0
- package/scripts/utils/content-metadata.d.ts.map +1 -0
- package/scripts/utils/content-metadata.js +249 -0
- package/scripts/utils/content-metadata.js.map +1 -0
- package/scripts/utils/content-validator.d.ts +94 -0
- package/scripts/utils/content-validator.d.ts.map +1 -0
- package/scripts/utils/content-validator.js +489 -0
- package/scripts/utils/content-validator.js.map +1 -0
- package/scripts/utils/copy-test-reports.d.ts +9 -0
- package/scripts/utils/copy-test-reports.d.ts.map +1 -0
- package/scripts/utils/copy-test-reports.js +508 -0
- package/scripts/utils/copy-test-reports.js.map +1 -0
- package/scripts/utils/file-utils.d.ts +144 -0
- package/scripts/utils/file-utils.d.ts.map +1 -0
- package/scripts/utils/file-utils.js +374 -0
- package/scripts/utils/file-utils.js.map +1 -0
- package/scripts/utils/fix-articles.d.ts +27 -0
- package/scripts/utils/fix-articles.d.ts.map +1 -0
- package/scripts/utils/fix-articles.js +510 -0
- package/scripts/utils/fix-articles.js.map +1 -0
- package/scripts/utils/generate-docs-index.d.ts +8 -0
- package/scripts/utils/generate-docs-index.d.ts.map +1 -0
- package/scripts/utils/generate-docs-index.js +275 -0
- package/scripts/utils/generate-docs-index.js.map +1 -0
- package/scripts/utils/html-sanitize.d.ts +18 -0
- package/scripts/utils/html-sanitize.d.ts.map +1 -0
- package/scripts/utils/html-sanitize.js +57 -0
- package/scripts/utils/html-sanitize.js.map +1 -0
- package/scripts/utils/intelligence-analysis.d.ts +173 -0
- package/scripts/utils/intelligence-analysis.d.ts.map +1 -0
- package/scripts/utils/intelligence-analysis.js +936 -0
- package/scripts/utils/intelligence-analysis.js.map +1 -0
- package/scripts/utils/intelligence-index.d.ts +126 -0
- package/scripts/utils/intelligence-index.d.ts.map +1 -0
- package/scripts/utils/intelligence-index.js +731 -0
- package/scripts/utils/intelligence-index.js.map +1 -0
- package/scripts/utils/metadata-utils.d.ts +14 -0
- package/scripts/utils/metadata-utils.d.ts.map +1 -0
- package/scripts/utils/metadata-utils.js +18 -0
- package/scripts/utils/metadata-utils.js.map +1 -0
- package/scripts/utils/news-metadata.d.ts +47 -0
- package/scripts/utils/news-metadata.d.ts.map +1 -0
- package/scripts/utils/news-metadata.js +259 -0
- package/scripts/utils/news-metadata.js.map +1 -0
- package/scripts/utils/validate-articles.d.ts +2 -0
- package/scripts/utils/validate-articles.d.ts.map +1 -0
- package/scripts/utils/validate-articles.js +284 -0
- package/scripts/utils/validate-articles.js.map +1 -0
- package/scripts/utils/validate-ep-api.d.ts +51 -0
- package/scripts/utils/validate-ep-api.d.ts.map +1 -0
- package/scripts/utils/validate-ep-api.js +160 -0
- package/scripts/utils/validate-ep-api.js.map +1 -0
- package/scripts/utils/world-bank-data.d.ts +84 -0
- package/scripts/utils/world-bank-data.d.ts.map +1 -0
- package/scripts/utils/world-bank-data.js +311 -0
- package/scripts/utils/world-bank-data.js.map +1 -0
|
@@ -0,0 +1,584 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module Types/Common
|
|
3
|
+
* @description Core shared types — language codes, article enums, and category mappings.
|
|
4
|
+
* These foundational types are used across all bounded contexts.
|
|
5
|
+
*/
|
|
6
|
+
import type { StakeholderPerspective, StakeholderOutcomeMatrix } from './stakeholder.js';
|
|
7
|
+
export type { StakeholderPerspective, StakeholderOutcomeMatrix } from './stakeholder.js';
|
|
8
|
+
/** Supported language codes */
|
|
9
|
+
export type LanguageCode = 'en' | 'sv' | 'da' | 'no' | 'fi' | 'de' | 'fr' | 'es' | 'nl' | 'ar' | 'he' | 'ja' | 'ko' | 'zh';
|
|
10
|
+
/** RTL language codes */
|
|
11
|
+
export type RTLLanguageCode = 'ar' | 'he';
|
|
12
|
+
/** All possible language codes (including RTL) */
|
|
13
|
+
export type AnyLanguageCode = LanguageCode;
|
|
14
|
+
/**
|
|
15
|
+
* Article category — the primary classifier for content generation.
|
|
16
|
+
* Each value represents a distinct article type with its own data pipeline,
|
|
17
|
+
* template structure, and editorial voice.
|
|
18
|
+
*/
|
|
19
|
+
export declare enum ArticleCategory {
|
|
20
|
+
WEEK_AHEAD = "week-ahead",
|
|
21
|
+
MONTH_AHEAD = "month-ahead",
|
|
22
|
+
YEAR_AHEAD = "year-ahead",
|
|
23
|
+
WEEK_IN_REVIEW = "week-in-review",
|
|
24
|
+
MONTH_IN_REVIEW = "month-in-review",
|
|
25
|
+
YEAR_IN_REVIEW = "year-in-review",
|
|
26
|
+
BREAKING_NEWS = "breaking",
|
|
27
|
+
COMMITTEE_REPORTS = "committee-reports",
|
|
28
|
+
MOTIONS = "motions",
|
|
29
|
+
PROPOSITIONS = "propositions",
|
|
30
|
+
DEEP_ANALYSIS = "deep-analysis"
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Temporal perspective of an article — derived from its category.
|
|
34
|
+
* Determines the editorial framing and verb tense.
|
|
35
|
+
*/
|
|
36
|
+
export declare enum ArticlePerspective {
|
|
37
|
+
/** Forward-looking: previews, agendas, upcoming events */
|
|
38
|
+
PROSPECTIVE = "prospective",
|
|
39
|
+
/** Backward-looking: reviews, summaries, retrospectives */
|
|
40
|
+
RETROSPECTIVE = "retrospective",
|
|
41
|
+
/** Live/current: breaking news, urgent developments */
|
|
42
|
+
REAL_TIME = "real-time",
|
|
43
|
+
/** Deep dive: multi-perspective analysis, root cause */
|
|
44
|
+
ANALYTICAL = "analytical"
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Time period scope for periodic articles (look-ahead or in-review).
|
|
48
|
+
*/
|
|
49
|
+
export declare enum TimePeriod {
|
|
50
|
+
WEEK = "week",
|
|
51
|
+
MONTH = "month",
|
|
52
|
+
YEAR = "year"
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* Analysis perspective for "5 Whys" deep analysis articles.
|
|
56
|
+
* Each perspective frames the same events through a different lens,
|
|
57
|
+
* asking "why" iteratively to uncover root causes.
|
|
58
|
+
*/
|
|
59
|
+
export declare enum AnalysisPerspective {
|
|
60
|
+
/** Party dynamics, power shifts, political strategy */
|
|
61
|
+
POLITICAL = "political",
|
|
62
|
+
/** Budget impact, market effects, fiscal policy */
|
|
63
|
+
ECONOMIC = "economic",
|
|
64
|
+
/** Citizen impact, public opinion, social equity */
|
|
65
|
+
SOCIAL = "social",
|
|
66
|
+
/** Treaty basis, legal competence, compliance */
|
|
67
|
+
LEGAL = "legal",
|
|
68
|
+
/** Climate, sustainability, green transition */
|
|
69
|
+
ENVIRONMENTAL = "environmental",
|
|
70
|
+
/** EU external relations, global positioning */
|
|
71
|
+
GEOPOLITICAL = "geopolitical",
|
|
72
|
+
/** EU institutional mechanics, inter-institutional balance */
|
|
73
|
+
INSTITUTIONAL = "institutional"
|
|
74
|
+
}
|
|
75
|
+
/** Mapping from ArticleCategory to its inherent ArticlePerspective */
|
|
76
|
+
export declare const CATEGORY_PERSPECTIVE: Record<ArticleCategory, ArticlePerspective>;
|
|
77
|
+
/** Mapping from periodic categories to their time period scope */
|
|
78
|
+
export declare const CATEGORY_TIME_PERIOD: Partial<Record<ArticleCategory, TimePeriod>>;
|
|
79
|
+
/** Language preset names */
|
|
80
|
+
export type LanguagePreset = 'all' | 'eu-core' | 'nordic';
|
|
81
|
+
/** Map from language code to translated string */
|
|
82
|
+
export type LanguageMap<T = string> = Record<LanguageCode, T>;
|
|
83
|
+
/** Article category labels for a single language — one entry per ArticleCategory */
|
|
84
|
+
export type ArticleCategoryLabels = Record<ArticleCategory, string>;
|
|
85
|
+
/** Language-specific title and subtitle */
|
|
86
|
+
export interface LangTitleSubtitle {
|
|
87
|
+
title: string;
|
|
88
|
+
subtitle: string;
|
|
89
|
+
}
|
|
90
|
+
/** Localized strings for propositions articles */
|
|
91
|
+
export interface PropositionsStrings {
|
|
92
|
+
lede: string;
|
|
93
|
+
proposalsHeading: string;
|
|
94
|
+
adoptedTextsHeading: string;
|
|
95
|
+
pipelineHeading: string;
|
|
96
|
+
procedureHeading: string;
|
|
97
|
+
analysisHeading: string;
|
|
98
|
+
analysis: string;
|
|
99
|
+
pipelineHealthLabel: string;
|
|
100
|
+
throughputRateLabel: string;
|
|
101
|
+
whyThisMatters: string;
|
|
102
|
+
}
|
|
103
|
+
/** Localized editorial strings shared across article types */
|
|
104
|
+
export interface EditorialStrings {
|
|
105
|
+
/** Heading for "Why This Matters" citizen-impact section */
|
|
106
|
+
whyThisMatters: string;
|
|
107
|
+
/** Heading for key analytical finding */
|
|
108
|
+
keyTakeaway: string;
|
|
109
|
+
/** Heading for parliamentary context section */
|
|
110
|
+
parliamentaryContext: string;
|
|
111
|
+
/** Source attribution phrase (e.g. "According to European Parliament records") */
|
|
112
|
+
sourceAttribution: string;
|
|
113
|
+
/** Analytical note label */
|
|
114
|
+
analysisNote: string;
|
|
115
|
+
}
|
|
116
|
+
/** Localized section heading strings for motions articles */
|
|
117
|
+
export interface MotionsStrings {
|
|
118
|
+
lede: string;
|
|
119
|
+
votingRecordsHeading: string;
|
|
120
|
+
partyCohesionHeading: string;
|
|
121
|
+
anomaliesHeading: string;
|
|
122
|
+
questionsHeading: string;
|
|
123
|
+
dateLabel: string;
|
|
124
|
+
resultLabel: string;
|
|
125
|
+
forLabel: string;
|
|
126
|
+
againstLabel: string;
|
|
127
|
+
abstainLabel: string;
|
|
128
|
+
cohesionLabel: string;
|
|
129
|
+
participationLabel: string;
|
|
130
|
+
severityLabel: string;
|
|
131
|
+
statusLabel: string;
|
|
132
|
+
keyTakeawayText: string;
|
|
133
|
+
politicalAlignmentHeading: string;
|
|
134
|
+
ledeAnalysis: string;
|
|
135
|
+
}
|
|
136
|
+
/** Localized section heading strings for week-ahead articles */
|
|
137
|
+
export interface WeekAheadStrings {
|
|
138
|
+
lede: string;
|
|
139
|
+
plenarySessions: string;
|
|
140
|
+
committeeMeetings: string;
|
|
141
|
+
legislativeDocuments: string;
|
|
142
|
+
legislativePipeline: string;
|
|
143
|
+
parliamentaryQuestions: string;
|
|
144
|
+
noPlenary: string;
|
|
145
|
+
bottleneckIndicator: string;
|
|
146
|
+
whatToWatch: string;
|
|
147
|
+
}
|
|
148
|
+
/** Localized strings for the week-ahead stakeholder impact section */
|
|
149
|
+
export interface WeekAheadStakeholderStrings {
|
|
150
|
+
/** Section heading */
|
|
151
|
+
heading: string;
|
|
152
|
+
/** Political temperature gauge label */
|
|
153
|
+
temperatureLabel: string;
|
|
154
|
+
/** "Impact" table column header */
|
|
155
|
+
impactHeader: string;
|
|
156
|
+
/** "Stakeholder" table column header */
|
|
157
|
+
stakeholderHeader: string;
|
|
158
|
+
/** "Reason" table column header */
|
|
159
|
+
reasonHeader: string;
|
|
160
|
+
/** Temperature descriptor: Low (0–24) */
|
|
161
|
+
tempLow: string;
|
|
162
|
+
/** Temperature descriptor: Moderate (25–49) */
|
|
163
|
+
tempModerate: string;
|
|
164
|
+
/** Temperature descriptor: High (50–74) */
|
|
165
|
+
tempHigh: string;
|
|
166
|
+
/** Temperature descriptor: Very High (75–100) */
|
|
167
|
+
tempVeryHigh: string;
|
|
168
|
+
/** Stakeholder label: Political Groups */
|
|
169
|
+
stakeholderPoliticalGroups: string;
|
|
170
|
+
/** Stakeholder label: Civil Society */
|
|
171
|
+
stakeholderCivilSociety: string;
|
|
172
|
+
/** Stakeholder label: Industry */
|
|
173
|
+
stakeholderIndustry: string;
|
|
174
|
+
/** Stakeholder label: EU Citizens */
|
|
175
|
+
stakeholderEuCitizens: string;
|
|
176
|
+
/** Stakeholder label: National Governments */
|
|
177
|
+
stakeholderNationalGovernments: string;
|
|
178
|
+
/** Stakeholder label: EU Institutions */
|
|
179
|
+
stakeholderEuInstitutions: string;
|
|
180
|
+
/** Reason template: "{count} parliamentary event(s) scheduled" */
|
|
181
|
+
reasonEventsScheduled: string;
|
|
182
|
+
/** Reason template: "{count} legislative document(s) under review" */
|
|
183
|
+
reasonDocumentsUnderReview: string;
|
|
184
|
+
/** Reason: Regulatory agenda may affect business environment */
|
|
185
|
+
reasonIndustryRegulatoryAgenda: string;
|
|
186
|
+
/** Reason: Parliamentary decisions shape EU-wide policy */
|
|
187
|
+
reasonCitizensDecisionsShapePolicy: string;
|
|
188
|
+
/** Reason template: "{count} document(s) may require national transposition" */
|
|
189
|
+
reasonDocumentsRequireTransposition: string;
|
|
190
|
+
/** Reason: Cross-institutional coordination required */
|
|
191
|
+
reasonInstitutionsCoordination: string;
|
|
192
|
+
}
|
|
193
|
+
/** A single row in the stakeholder impact matrix */
|
|
194
|
+
export interface StakeholderImpactRow {
|
|
195
|
+
/** Stakeholder label */
|
|
196
|
+
readonly stakeholder: string;
|
|
197
|
+
/** Impact level: high, medium, or low */
|
|
198
|
+
readonly impact: 'high' | 'medium' | 'low';
|
|
199
|
+
/** Short reason explaining the impact */
|
|
200
|
+
readonly reason: string;
|
|
201
|
+
}
|
|
202
|
+
/** Stakeholder impact section data for week-ahead articles */
|
|
203
|
+
export interface StakeholderImpactSection {
|
|
204
|
+
/** Rows of stakeholder impact assessments */
|
|
205
|
+
readonly rows: readonly StakeholderImpactRow[];
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* Band key for political temperature, used for localization at render time.
|
|
209
|
+
*
|
|
210
|
+
* These values are language-agnostic and must not be localized directly.
|
|
211
|
+
* UI layers should map this band to appropriate, localized display strings.
|
|
212
|
+
*/
|
|
213
|
+
export type PoliticalTemperatureBand = 'low' | 'moderate' | 'high' | 'veryHigh';
|
|
214
|
+
/**
|
|
215
|
+
* Political temperature score for a parliamentary week.
|
|
216
|
+
* A composite urgency/controversy score on a 0–100 scale.
|
|
217
|
+
*/
|
|
218
|
+
export interface PoliticalTemperature {
|
|
219
|
+
/** Overall score from 0 (calm) to 100 (highly contentious) */
|
|
220
|
+
readonly score: number;
|
|
221
|
+
/**
|
|
222
|
+
* Language-agnostic band key for the political temperature.
|
|
223
|
+
* Use this band to derive localized labels and visual styling.
|
|
224
|
+
*/
|
|
225
|
+
readonly band: PoliticalTemperatureBand;
|
|
226
|
+
}
|
|
227
|
+
/** Localized section heading strings for breaking news articles */
|
|
228
|
+
export interface BreakingStrings {
|
|
229
|
+
breakingBanner: string;
|
|
230
|
+
votingAnomalyIntel: string;
|
|
231
|
+
coalitionDynamics: string;
|
|
232
|
+
analyticalReport: string;
|
|
233
|
+
keyMEPInfluence: string;
|
|
234
|
+
intelligenceBriefing: string;
|
|
235
|
+
votingAnomalyAlert: string;
|
|
236
|
+
coalitionDynamicsSection: string;
|
|
237
|
+
keyPlayers: string;
|
|
238
|
+
placeholderNotice: string;
|
|
239
|
+
placeholderLede: string;
|
|
240
|
+
lede: string;
|
|
241
|
+
/** Neutral feed-first lede used when analytical data is absent */
|
|
242
|
+
feedLede: string;
|
|
243
|
+
/** Section heading for recently adopted texts from EP feeds */
|
|
244
|
+
adoptedTextsHeading: string;
|
|
245
|
+
/** Section heading for recent EP events from feeds */
|
|
246
|
+
recentEventsHeading: string;
|
|
247
|
+
/** Section heading for legislative procedure updates from feeds */
|
|
248
|
+
procedureUpdatesHeading: string;
|
|
249
|
+
/** Section heading for MEP updates from feeds */
|
|
250
|
+
mepUpdatesHeading: string;
|
|
251
|
+
/** Label for the no-feed-data notice */
|
|
252
|
+
noFeedDataNotice: string;
|
|
253
|
+
/** Localized "as of" phrase used in lede section (e.g. "as of", "zum", "au") */
|
|
254
|
+
asOf: string;
|
|
255
|
+
/** Template function for "what happened" deep-analysis text */
|
|
256
|
+
breakingWhatFn: (date: string, adopted: number, events: number, procedures: number, meps: number) => string;
|
|
257
|
+
/** "Why it matters" text when voting anomalies are present */
|
|
258
|
+
breakingWhyAnomalies: string;
|
|
259
|
+
/** "Why it matters" text for normal parliamentary activity */
|
|
260
|
+
breakingWhyNormal: string;
|
|
261
|
+
/** Localized name for the legislative majority stakeholder */
|
|
262
|
+
breakingWinnerActor: string;
|
|
263
|
+
/** Template function for winner stakeholder reason */
|
|
264
|
+
breakingWinnerReasonFn: (count: number) => string;
|
|
265
|
+
/** Localized name for the opposition groups stakeholder */
|
|
266
|
+
breakingNeutralActor: string;
|
|
267
|
+
/** Neutral stakeholder reason text */
|
|
268
|
+
breakingNeutralReason: string;
|
|
269
|
+
/** Template function for active-legislative-phase outlook */
|
|
270
|
+
breakingOutlookActiveFn: (date: string) => string;
|
|
271
|
+
/** Template function for transitional-period outlook */
|
|
272
|
+
breakingOutlookTransitionalFn: (date: string) => string;
|
|
273
|
+
/** Consequence text for adopted texts ("New legal obligations…") */
|
|
274
|
+
breakingLegalObligationsConsequence: string;
|
|
275
|
+
/** Consequence text for procedure updates ("Legislative trajectory altered…") */
|
|
276
|
+
breakingProcedureConsequence: string;
|
|
277
|
+
/** Political impact text when voting anomalies are present */
|
|
278
|
+
breakingImpactPoliticalAnomalies: string;
|
|
279
|
+
/** Template function for political impact text in normal activity */
|
|
280
|
+
breakingImpactPoliticalNormalFn: (count: number) => string;
|
|
281
|
+
/** Economic impact text */
|
|
282
|
+
breakingImpactEconomic: string;
|
|
283
|
+
/** Social impact text */
|
|
284
|
+
breakingImpactSocial: string;
|
|
285
|
+
/** Template function for legal impact text */
|
|
286
|
+
breakingImpactLegalFn: (count: number) => string;
|
|
287
|
+
/** Geopolitical impact text when coalition data available */
|
|
288
|
+
breakingImpactGeopoliticalCoalition: string;
|
|
289
|
+
/** Geopolitical impact text for normal activity */
|
|
290
|
+
breakingImpactGeopoliticalNormal: string;
|
|
291
|
+
/** "Political group whips" mistake actor name */
|
|
292
|
+
breakingMistakeActor: string;
|
|
293
|
+
/** Mistake description text */
|
|
294
|
+
breakingMistakeDescription: string;
|
|
295
|
+
/** Mistake alternative text */
|
|
296
|
+
breakingMistakeAlternative: string;
|
|
297
|
+
/** Localized prefix for adopted text items in the "Who" list (e.g. "Adopted:", "Angenommen:") */
|
|
298
|
+
breakingAdoptedPrefix: string;
|
|
299
|
+
/** Localized prefix for MEP items in the "Who" list (e.g. "MEP:", "MdEP:") */
|
|
300
|
+
breakingMEPPrefix: string;
|
|
301
|
+
/** User-friendly fallback shown when voting anomaly data is unavailable */
|
|
302
|
+
anomalyUnavailable: string;
|
|
303
|
+
/** User-friendly fallback shown when coalition dynamics data is unavailable */
|
|
304
|
+
coalitionUnavailable: string;
|
|
305
|
+
/** Human-readable localized label for the adopted-text type (replaces raw "[TEXT_ADOPTED]" token) */
|
|
306
|
+
adoptedTextTypeLabel: string;
|
|
307
|
+
/** Template to format an adopted-text item title from its label/identifier (e.g. "T10-0315/2025") */
|
|
308
|
+
adoptedTextItemLabelFn: (label: string) => string;
|
|
309
|
+
/** Template to show truncation note: "Showing {shown} of {total}" */
|
|
310
|
+
showingXofNFn: (shown: number, total: number) => string;
|
|
311
|
+
}
|
|
312
|
+
/**
|
|
313
|
+
* Single consequence resulting from a parliamentary action.
|
|
314
|
+
* Maps an action to its downstream political, economic, or social effects.
|
|
315
|
+
*/
|
|
316
|
+
export interface ActionConsequence {
|
|
317
|
+
/** The parliamentary action taken */
|
|
318
|
+
readonly action: string;
|
|
319
|
+
/** The resulting consequence or ripple effect */
|
|
320
|
+
readonly consequence: string;
|
|
321
|
+
/** How significant is this consequence: low, medium, high, critical */
|
|
322
|
+
readonly severity: 'low' | 'medium' | 'high' | 'critical';
|
|
323
|
+
}
|
|
324
|
+
/**
|
|
325
|
+
* Political stakeholder assessment: winners, losers, and their reasons.
|
|
326
|
+
*/
|
|
327
|
+
export interface StakeholderOutcome {
|
|
328
|
+
/** Name of stakeholder, political group, institution, or member state */
|
|
329
|
+
readonly actor: string;
|
|
330
|
+
/** Whether this actor benefits or is disadvantaged */
|
|
331
|
+
readonly outcome: 'winner' | 'loser' | 'neutral';
|
|
332
|
+
/** Explanation of why */
|
|
333
|
+
readonly reason: string;
|
|
334
|
+
}
|
|
335
|
+
/**
|
|
336
|
+
* A single identified mistake, miscalculation, or missed opportunity
|
|
337
|
+
* in parliamentary proceedings.
|
|
338
|
+
*/
|
|
339
|
+
export interface PoliticalMistake {
|
|
340
|
+
/** Who made the mistake */
|
|
341
|
+
readonly actor: string;
|
|
342
|
+
/** What the mistake or miscalculation was */
|
|
343
|
+
readonly description: string;
|
|
344
|
+
/** What they should have done differently */
|
|
345
|
+
readonly alternative: string;
|
|
346
|
+
}
|
|
347
|
+
/**
|
|
348
|
+
* Comprehensive deep political analysis using the "5W + Impact" framework.
|
|
349
|
+
* Every article type populates this from its available data to provide
|
|
350
|
+
* parliament-intelligence-grade analysis for sophisticated readers.
|
|
351
|
+
*
|
|
352
|
+
* Fields map to the framework:
|
|
353
|
+
* - **What**: What happened / what is proposed
|
|
354
|
+
* - **Who**: Key actors, political groups, rapporteurs, shadows
|
|
355
|
+
* - **When**: Timeline, deadlines, key dates
|
|
356
|
+
* - **Why**: Root causes, political motivations, strategic calculations
|
|
357
|
+
* - **Winners/Losers**: Who benefits, who loses, stakeholder impact
|
|
358
|
+
* - **Impact**: Multi-perspective consequences (political, economic, social, legal)
|
|
359
|
+
* - **Actions → Consequences**: Causal chains from decisions to outcomes
|
|
360
|
+
* - **Mistakes**: Miscalculations, missed opportunities
|
|
361
|
+
* - **Outlook**: What happens next, strategic implications
|
|
362
|
+
* - **Stakeholder Perspectives**: Multi-stakeholder impact assessment per group
|
|
363
|
+
* - **Stakeholder Outcome Matrix**: Winner/loser/neutral matrix per action per group
|
|
364
|
+
*/
|
|
365
|
+
export interface DeepAnalysis {
|
|
366
|
+
/** WHAT: Core subject — what happened or is being proposed */
|
|
367
|
+
readonly what: string;
|
|
368
|
+
/** WHO: Key actors — political groups, rapporteurs, MEPs, institutions */
|
|
369
|
+
readonly who: readonly string[];
|
|
370
|
+
/** WHEN: Key dates — timeline, deadlines, procedural milestones */
|
|
371
|
+
readonly when: readonly string[];
|
|
372
|
+
/** WHY: Root causes — political motivations, strategic calculations */
|
|
373
|
+
readonly why: string;
|
|
374
|
+
/** WINNERS & LOSERS: Stakeholder impact assessment */
|
|
375
|
+
readonly stakeholderOutcomes: readonly StakeholderOutcome[];
|
|
376
|
+
/** IMPACT: Multi-perspective analysis of consequences */
|
|
377
|
+
readonly impactAssessment: {
|
|
378
|
+
readonly political: string;
|
|
379
|
+
readonly economic: string;
|
|
380
|
+
readonly social: string;
|
|
381
|
+
readonly legal: string;
|
|
382
|
+
readonly geopolitical: string;
|
|
383
|
+
};
|
|
384
|
+
/** ACTIONS → CONSEQUENCES: Causal chains */
|
|
385
|
+
readonly actionConsequences: readonly ActionConsequence[];
|
|
386
|
+
/** MISTAKES: Miscalculations and missed opportunities */
|
|
387
|
+
readonly mistakes: readonly PoliticalMistake[];
|
|
388
|
+
/** OUTLOOK: What happens next — strategic forward look */
|
|
389
|
+
readonly outlook: string;
|
|
390
|
+
/**
|
|
391
|
+
* MULTI-STAKEHOLDER PERSPECTIVES: Detailed impact per stakeholder group.
|
|
392
|
+
* Optional — populated by enhanced analysis builders.
|
|
393
|
+
*/
|
|
394
|
+
readonly stakeholderPerspectives?: readonly StakeholderPerspective[];
|
|
395
|
+
/**
|
|
396
|
+
* STAKEHOLDER OUTCOME MATRIX: Winner/loser/neutral per action per group.
|
|
397
|
+
* Optional — populated by enhanced analysis builders.
|
|
398
|
+
*/
|
|
399
|
+
readonly stakeholderOutcomeMatrix?: readonly StakeholderOutcomeMatrix[];
|
|
400
|
+
}
|
|
401
|
+
/** Localized strings for deep analysis section headings */
|
|
402
|
+
export interface DeepAnalysisStrings {
|
|
403
|
+
/** Main section heading */
|
|
404
|
+
readonly sectionHeading: string;
|
|
405
|
+
/** Sub-heading for "What" */
|
|
406
|
+
readonly whatHeading: string;
|
|
407
|
+
/** Sub-heading for "Who" */
|
|
408
|
+
readonly whoHeading: string;
|
|
409
|
+
/** Sub-heading for "When" */
|
|
410
|
+
readonly whenHeading: string;
|
|
411
|
+
/** Sub-heading for "Why" */
|
|
412
|
+
readonly whyHeading: string;
|
|
413
|
+
/** Sub-heading for Winners & Losers */
|
|
414
|
+
readonly stakeholderHeading: string;
|
|
415
|
+
/** Label for winner outcome */
|
|
416
|
+
readonly winnerLabel: string;
|
|
417
|
+
/** Label for loser outcome */
|
|
418
|
+
readonly loserLabel: string;
|
|
419
|
+
/** Label for neutral outcome */
|
|
420
|
+
readonly neutralLabel: string;
|
|
421
|
+
/** Sub-heading for impact assessment */
|
|
422
|
+
readonly impactHeading: string;
|
|
423
|
+
/** Impact perspective labels */
|
|
424
|
+
readonly politicalLabel: string;
|
|
425
|
+
readonly economicLabel: string;
|
|
426
|
+
readonly socialLabel: string;
|
|
427
|
+
readonly legalLabel: string;
|
|
428
|
+
readonly geopoliticalLabel: string;
|
|
429
|
+
/** Sub-heading for actions → consequences */
|
|
430
|
+
readonly consequencesHeading: string;
|
|
431
|
+
/** Label for action column */
|
|
432
|
+
readonly actionLabel: string;
|
|
433
|
+
/** Label for consequence column */
|
|
434
|
+
readonly consequenceLabel: string;
|
|
435
|
+
/** Label for severity column header */
|
|
436
|
+
readonly severityColumnLabel: string;
|
|
437
|
+
/** Sub-heading for mistakes */
|
|
438
|
+
readonly mistakesHeading: string;
|
|
439
|
+
/** Label for "should have" alternative */
|
|
440
|
+
readonly alternativeLabel: string;
|
|
441
|
+
/** Sub-heading for outlook */
|
|
442
|
+
readonly outlookHeading: string;
|
|
443
|
+
/** Severity labels */
|
|
444
|
+
readonly severityLow: string;
|
|
445
|
+
readonly severityMedium: string;
|
|
446
|
+
readonly severityHigh: string;
|
|
447
|
+
readonly severityCritical: string;
|
|
448
|
+
/** Sub-heading for multi-stakeholder perspectives section */
|
|
449
|
+
readonly perspectivesHeading: string;
|
|
450
|
+
/** Sub-heading for stakeholder outcome matrix section */
|
|
451
|
+
readonly outcomeMatrixHeading: string;
|
|
452
|
+
/** Column header for "Confidence" in the outcome matrix */
|
|
453
|
+
readonly confidenceLabel: string;
|
|
454
|
+
/** Localized stakeholder group labels for the outcome matrix columns */
|
|
455
|
+
readonly politicalGroupsLabel: string;
|
|
456
|
+
readonly civilSocietyLabel: string;
|
|
457
|
+
readonly industryLabel: string;
|
|
458
|
+
readonly nationalGovtsLabel: string;
|
|
459
|
+
readonly citizensLabel: string;
|
|
460
|
+
readonly euInstitutionsLabel: string;
|
|
461
|
+
/** Impact direction labels for stakeholder perspective cards */
|
|
462
|
+
readonly positiveLabel: string;
|
|
463
|
+
readonly negativeLabel: string;
|
|
464
|
+
readonly mixedLabel: string;
|
|
465
|
+
/** Heading for executive summary section */
|
|
466
|
+
readonly executiveSummaryHeading: string;
|
|
467
|
+
/** Confidence level labels */
|
|
468
|
+
readonly confidenceHigh: string;
|
|
469
|
+
readonly confidenceMedium: string;
|
|
470
|
+
readonly confidenceLow: string;
|
|
471
|
+
/** Evidence references heading */
|
|
472
|
+
readonly evidenceRefsHeading: string;
|
|
473
|
+
/** Counter-arguments heading */
|
|
474
|
+
readonly counterArgumentsHeading: string;
|
|
475
|
+
/** Section labels for reasoning chains */
|
|
476
|
+
readonly conclusionLabel: string;
|
|
477
|
+
readonly premiseLabel: string;
|
|
478
|
+
readonly inferenceLabel: string;
|
|
479
|
+
/** Heading for reasoning chains section */
|
|
480
|
+
readonly reasoningChainsHeading: string;
|
|
481
|
+
/** Heading for scenario planning section */
|
|
482
|
+
readonly scenarioPlanningHeading: string;
|
|
483
|
+
/** Scenario labels */
|
|
484
|
+
readonly bestCaseLabel: string;
|
|
485
|
+
readonly worstCaseLabel: string;
|
|
486
|
+
readonly mostLikelyLabel: string;
|
|
487
|
+
readonly wildcardsLabel: string;
|
|
488
|
+
readonly probabilityLabel: string;
|
|
489
|
+
readonly triggersLabel: string;
|
|
490
|
+
readonly impliedImpactsLabel: string;
|
|
491
|
+
readonly timelineLabel: string;
|
|
492
|
+
/** Heading for analysis methodology section */
|
|
493
|
+
readonly analysisMethodologyHeading: string;
|
|
494
|
+
/** Methodology metadata labels */
|
|
495
|
+
readonly iterationCountLabel: string;
|
|
496
|
+
readonly evidenceStrengthLabel: string;
|
|
497
|
+
/** Evidence strength values */
|
|
498
|
+
readonly evidenceStrong: string;
|
|
499
|
+
readonly evidenceModerate: string;
|
|
500
|
+
readonly evidenceWeak: string;
|
|
501
|
+
/** Iteration type labels */
|
|
502
|
+
readonly iterationInitial: string;
|
|
503
|
+
readonly iterationStakeholderChallenge: string;
|
|
504
|
+
readonly iterationEvidenceValidation: string;
|
|
505
|
+
readonly iterationSynthesis: string;
|
|
506
|
+
/** Label for overall confidence in methodology stats */
|
|
507
|
+
readonly overallConfidenceLabel: string;
|
|
508
|
+
}
|
|
509
|
+
/** Localized content strings for the committee analysis deep analysis body text */
|
|
510
|
+
export interface CommitteeAnalysisContentStrings {
|
|
511
|
+
/** Template: what happened. {date}, {total}, {docs}, {active} placeholders */
|
|
512
|
+
readonly what: string;
|
|
513
|
+
/** Template: what happened when no documents are available. {date}, {total} placeholders */
|
|
514
|
+
readonly whatNoData: string;
|
|
515
|
+
/** "Reporting date:" label prefix */
|
|
516
|
+
readonly reportDateLabel: string;
|
|
517
|
+
/** "members" label */
|
|
518
|
+
readonly membersLabel: string;
|
|
519
|
+
/** "Chair:" label */
|
|
520
|
+
readonly chairLabel: string;
|
|
521
|
+
/** "robust" productivity descriptor */
|
|
522
|
+
readonly productivityRobust: string;
|
|
523
|
+
/** "moderate" productivity descriptor */
|
|
524
|
+
readonly productivityModerate: string;
|
|
525
|
+
/** "low" productivity descriptor used when 0% of committees have recent documents */
|
|
526
|
+
readonly productivityLow: string;
|
|
527
|
+
/** Why section text. {pct}, {descriptor} placeholders */
|
|
528
|
+
readonly why: string;
|
|
529
|
+
/** Impact political text when no committees are active. */
|
|
530
|
+
readonly impactPoliticalNone: string;
|
|
531
|
+
/** Stakeholder reason: highly productive. {n} placeholder */
|
|
532
|
+
readonly stakeholderHighlyProductive: string;
|
|
533
|
+
/** Stakeholder reason: moderate activity. {n} placeholder */
|
|
534
|
+
readonly stakeholderModerateActivity: string;
|
|
535
|
+
/** Stakeholder reason: no documents */
|
|
536
|
+
readonly stakeholderNoDocs: string;
|
|
537
|
+
/** Impact political text. {active}, {total} placeholders */
|
|
538
|
+
readonly impactPolitical: string;
|
|
539
|
+
/** Impact economic text */
|
|
540
|
+
readonly impactEconomic: string;
|
|
541
|
+
/** Impact social text */
|
|
542
|
+
readonly impactSocial: string;
|
|
543
|
+
/** Impact legal text. {docs} placeholder */
|
|
544
|
+
readonly impactLegal: string;
|
|
545
|
+
/** Impact geopolitical text */
|
|
546
|
+
readonly impactGeopolitical: string;
|
|
547
|
+
/** Action label. {abbr}, {n} placeholders */
|
|
548
|
+
readonly actionProcessed: string;
|
|
549
|
+
/** Consequence text */
|
|
550
|
+
readonly actionConsequence: string;
|
|
551
|
+
/** Mistake description */
|
|
552
|
+
readonly mistakeDescription: string;
|
|
553
|
+
/** Mistake alternative */
|
|
554
|
+
readonly mistakeAlternative: string;
|
|
555
|
+
/** Outlook when pipeline is healthy. {n}, {total} placeholders */
|
|
556
|
+
readonly outlookGood: string;
|
|
557
|
+
/** Outlook when pipeline has concerns */
|
|
558
|
+
readonly outlookConcern: string;
|
|
559
|
+
/** Lede paragraph for the committee-reports article overview */
|
|
560
|
+
readonly lede: string;
|
|
561
|
+
/** "No recent documents available" fallback list item */
|
|
562
|
+
readonly noRecentDocs: string;
|
|
563
|
+
/** Notice shown in committee cards when all committee metadata is unavailable from the EP API */
|
|
564
|
+
readonly committeeMetadataUnavailable: string;
|
|
565
|
+
/** Section heading for the adopted texts overview in feed-enriched articles */
|
|
566
|
+
readonly adoptedTextsSectionHeading: string;
|
|
567
|
+
/** Summary paragraph for adopted texts section (plural). {count} placeholder is replaced with the number of texts */
|
|
568
|
+
readonly adoptedTextsSummary: string;
|
|
569
|
+
/** Summary paragraph for adopted texts section when exactly one text was adopted (singular form) */
|
|
570
|
+
readonly adoptedTextsSummarySingular: string;
|
|
571
|
+
/** Full name of the ENVI committee */
|
|
572
|
+
readonly committeeNameENVI: string;
|
|
573
|
+
/** Full name of the ECON committee */
|
|
574
|
+
readonly committeeNameECON: string;
|
|
575
|
+
/** Full name of the AFET committee */
|
|
576
|
+
readonly committeeNameAFET: string;
|
|
577
|
+
/** Full name of the LIBE committee */
|
|
578
|
+
readonly committeeNameLIBE: string;
|
|
579
|
+
/** Full name of the AGRI committee */
|
|
580
|
+
readonly committeeNameAGRI: string;
|
|
581
|
+
/** Label for texts not fitting the named committee themes */
|
|
582
|
+
readonly committeeNameOTHER: string;
|
|
583
|
+
}
|
|
584
|
+
//# sourceMappingURL=common.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../src/types/common.ts"],"names":[],"mappings":"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"}
|