@tricoteuses/assemblee 2.4.2 → 2.4.3
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/loaders.d.ts +5 -2
- package/lib/loaders.js +453 -450
- package/package.json +1 -1
package/lib/loaders.d.ts
CHANGED
|
@@ -99,12 +99,15 @@ export declare function iterLoadAssembleeComptesRendus(dataDir: string, legislat
|
|
|
99
99
|
datasetLegislature: Legislature;
|
|
100
100
|
filePath: string;
|
|
101
101
|
}, void, unknown>;
|
|
102
|
-
export declare function iterLoadAssembleeComptesRendusCommissions(dataDir: string, legislature: Legislature
|
|
102
|
+
export declare function iterLoadAssembleeComptesRendusCommissions(dataDir: string, legislature: Legislature, { enriched }?: {
|
|
103
|
+
enriched?: boolean | undefined;
|
|
104
|
+
}): Generator<{
|
|
103
105
|
compteRendu: CompteRendu;
|
|
104
106
|
datasetLegislature: Legislature;
|
|
105
107
|
filePath: string;
|
|
106
108
|
}, void, unknown>;
|
|
107
|
-
export declare function loadAssembleeData(dataDir: string, enabledDatasets: EnabledDatasets, legislature: Legislature, { log }?: {
|
|
109
|
+
export declare function loadAssembleeData(dataDir: string, enabledDatasets: EnabledDatasets, legislature: Legislature, { enriched, log }?: {
|
|
110
|
+
enriched?: boolean | undefined;
|
|
108
111
|
log?: boolean | undefined;
|
|
109
112
|
}): Data;
|
|
110
113
|
export declare function loadAssembleeDataFromBigFiles(dataDir: string, enabledDatasets: EnabledDatasets, legislature: Legislature, { log }?: {
|