@tricoteuses/assemblee 2.5.20 → 2.5.22
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 +2 -5
- package/lib/loaders.js +560 -514
- package/lib/parsers/textes_lois.d.ts +0 -1
- package/lib/parsers.js +1 -1
- package/lib/schemas/dossiers_legislatifs.json +5 -11
- package/lib/scripts/retrieve_documents.d.ts +1 -1
- package/lib/types/dossiers_legislatifs.d.ts +5 -1
- package/package.json +1 -1
package/lib/loaders.d.ts
CHANGED
|
@@ -108,15 +108,12 @@ export declare function iterLoadAssembleeComptesRendus(dataDir: string, legislat
|
|
|
108
108
|
filePath: string;
|
|
109
109
|
gitStatus?: "A" | "M" | "D" | "R" | "C" | "T" | "U";
|
|
110
110
|
}, void, unknown>;
|
|
111
|
-
export declare function iterLoadAssembleeComptesRendusCommissions(dataDir: string, legislature: Legislature, {
|
|
112
|
-
enriched?: boolean | undefined;
|
|
113
|
-
}): Generator<{
|
|
111
|
+
export declare function iterLoadAssembleeComptesRendusCommissions(dataDir: string, legislature: Legislature, {}?: {}): Generator<{
|
|
114
112
|
compteRendu: CompteRendu;
|
|
115
113
|
datasetLegislature: Legislature;
|
|
116
114
|
filePath: string;
|
|
117
115
|
}, void, unknown>;
|
|
118
|
-
export declare function loadAssembleeData(dataDir: string, enabledDatasets: EnabledDatasets, legislature: Legislature, {
|
|
119
|
-
enriched?: boolean | undefined;
|
|
116
|
+
export declare function loadAssembleeData(dataDir: string, enabledDatasets: EnabledDatasets, legislature: Legislature, { log }?: {
|
|
120
117
|
log?: boolean | undefined;
|
|
121
118
|
}): Data;
|
|
122
119
|
export declare function loadAssembleeDataFromBigFiles(dataDir: string, enabledDatasets: EnabledDatasets, legislature: Legislature, { log }?: {
|