@tricoteuses/assemblee 2.4.1 → 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/file_systems-CzTtoLWb.js +33 -0
- package/lib/git.js +121 -0
- package/lib/loaders.d.ts +15 -2
- package/lib/loaders.js +475 -469
- package/lib/scripts/retrieve_documents.d.ts +2 -1
- package/package.json +6 -1
|
@@ -7,6 +7,7 @@ type CommonOptions = {
|
|
|
7
7
|
parseDocuments?: boolean;
|
|
8
8
|
fullCompteRenduCommissions?: boolean;
|
|
9
9
|
};
|
|
10
|
-
export declare function downloadAndParse(document: Document,
|
|
10
|
+
export declare function downloadAndParse(document: Document, datasetDir: string, options: any): Promise<void>;
|
|
11
11
|
export declare function downloadAndParseVideosAndCR(reunion: Reunion, datasetCleanDir: string, options: CommonOptions): Promise<void>;
|
|
12
|
+
export declare function parseDocument(document: Document, documentPath: string, options: any): Promise<void>;
|
|
12
13
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tricoteuses/assemblee",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.3",
|
|
4
4
|
"description": "Retrieve, clean up & handle French Assemblée nationale's open data",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Assemblée nationale",
|
|
@@ -40,6 +40,11 @@
|
|
|
40
40
|
"import": "./lib/cleaners.js",
|
|
41
41
|
"types": "./lib/cleaners/index.d.ts"
|
|
42
42
|
},
|
|
43
|
+
"./git": {
|
|
44
|
+
"typedoc": "./src/git.ts",
|
|
45
|
+
"import": "./lib/git.js",
|
|
46
|
+
"types": "./lib/git.d.ts"
|
|
47
|
+
},
|
|
43
48
|
"./loaders": {
|
|
44
49
|
"typedoc": "./src/loaders.ts",
|
|
45
50
|
"import": "./lib/loaders.js",
|