@tricoteuses/assemblee 3.1.1 → 3.1.2
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/lib/cleaners/reunions.d.ts +2 -1
- package/lib/loaders.js +7 -0
- package/package.json +1 -1
|
@@ -6,9 +6,10 @@ export declare function hasMissingOrNotFinalizedText(node: Point | undefined | n
|
|
|
6
6
|
* Remove compteRenduRef from reunion if the referenced compte rendu is missing or has missing/not finalized content,
|
|
7
7
|
* and delete the compte rendu file in that case.
|
|
8
8
|
*/
|
|
9
|
-
export declare function reconcileReunionCompteRenduRef(reunion: Reunion, datasetCleanDir: string, { dataDir, legislature, removeMissingSeanceCR, verbose, }: {
|
|
9
|
+
export declare function reconcileReunionCompteRenduRef(reunion: Reunion, datasetCleanDir: string, { dataDir, legislature, removeMissingSeanceCR, verbose, onlyRecent, }: {
|
|
10
10
|
dataDir: string;
|
|
11
11
|
legislature: number;
|
|
12
12
|
removeMissingSeanceCR?: boolean;
|
|
13
13
|
verbose?: boolean;
|
|
14
|
+
onlyRecent?: number;
|
|
14
15
|
}): void;
|
package/lib/loaders.js
CHANGED
|
@@ -1366,6 +1366,13 @@ const le = {
|
|
|
1366
1366
|
structure: h.SegmentedFiles,
|
|
1367
1367
|
title: "Comptes rendus des séances publiques de la XVIème législature",
|
|
1368
1368
|
url: "https://data.assemblee-nationale.fr/static/openData/repository/16/vp/syceronbrut/syseron.xml.zip"
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
filename: "Comptes_Rendus_Commissions_XVII.xml",
|
|
1372
|
+
name: "Comptes_Rendus_Commissions_XVII",
|
|
1373
|
+
legislature: l.DixSept,
|
|
1374
|
+
structure: h.SegmentedFiles,
|
|
1375
|
+
title: "Comptes rendus des commissions de la XVIIème législature"
|
|
1369
1376
|
}
|
|
1370
1377
|
]
|
|
1371
1378
|
};
|