@tricoteuses/assemblee 2.4.0 → 2.4.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/file_systems-CzTtoLWb.js +33 -0
- package/lib/git.js +121 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +229 -223
- package/lib/loaders.d.ts +10 -0
- package/lib/loaders.js +441 -425
- package/lib/numbers.d.ts +4 -0
- package/lib/scripts/retrieve_documents.d.ts +2 -1
- package/lib/scripts/shared/utils.d.ts +0 -1
- package/lib/{scrutins-DhX6h3KY.js → uids-DaRrTkI-.js} +100 -94
- package/lib/uids.d.ts +6 -0
- package/package.json +6 -1
package/lib/loaders.d.ts
CHANGED
|
@@ -57,42 +57,52 @@ export interface Data {
|
|
|
57
57
|
export declare function iterLoadAssembleeActeurs(dataDir: string, legislature: Legislature, options?: {}): Generator<{
|
|
58
58
|
acteur: Acteur;
|
|
59
59
|
datasetLegislature: Legislature;
|
|
60
|
+
filePath: string;
|
|
60
61
|
}, void, unknown>;
|
|
61
62
|
export declare function iterLoadAssembleeOrganes(dataDir: string, legislature: Legislature, options?: {}): Generator<{
|
|
62
63
|
organe: Organe;
|
|
63
64
|
datasetLegislature: Legislature;
|
|
65
|
+
filePath: string;
|
|
64
66
|
}, void, unknown>;
|
|
65
67
|
export declare function iterLoadAssembleeAmendements(dataDir: string, legislature: Legislature, options?: {}): Generator<{
|
|
66
68
|
amendement: Amendement;
|
|
67
69
|
datasetLegislature: Legislature;
|
|
70
|
+
filePath: string;
|
|
68
71
|
}, void, unknown>;
|
|
69
72
|
export declare function iterLoadAssembleeDocuments(dataDir: string, legislature: Legislature, options?: {}): Generator<{
|
|
70
73
|
document: Document;
|
|
71
74
|
datasetLegislature: Legislature;
|
|
75
|
+
filePath: string;
|
|
72
76
|
}, void, unknown>;
|
|
73
77
|
export declare function iterLoadAssembleeDossiersParlementaires(dataDir: string, legislature: Legislature, options?: {}): Generator<{
|
|
74
78
|
dossierParlementaire: DossierParlementaire;
|
|
75
79
|
datasetLegislature: Legislature;
|
|
80
|
+
filePath: string;
|
|
76
81
|
}, void, unknown>;
|
|
77
82
|
export declare function iterLoadAssembleeReunions(dataDir: string, legislature: Legislature, options?: {}): Generator<{
|
|
78
83
|
reunion: Reunion;
|
|
79
84
|
datasetLegislature: Legislature;
|
|
85
|
+
filePath: string;
|
|
80
86
|
}, void, unknown>;
|
|
81
87
|
export declare function iterLoadAssembleeScrutins(dataDir: string, legislature: Legislature, options?: {}): Generator<{
|
|
82
88
|
scrutin: Scrutin;
|
|
83
89
|
datasetLegislature: Legislature;
|
|
90
|
+
filePath: string;
|
|
84
91
|
}, void, unknown>;
|
|
85
92
|
export declare function iterLoadAssembleeQuestions(dataDir: string, legislature: Legislature, options?: {}): Generator<{
|
|
86
93
|
question: Question;
|
|
87
94
|
datasetLegislature: Legislature;
|
|
95
|
+
filePath: string;
|
|
88
96
|
}, void, unknown>;
|
|
89
97
|
export declare function iterLoadAssembleeComptesRendus(dataDir: string, legislature: Legislature, options?: {}): Generator<{
|
|
90
98
|
compteRendu: CompteRendu;
|
|
91
99
|
datasetLegislature: Legislature;
|
|
100
|
+
filePath: string;
|
|
92
101
|
}, void, unknown>;
|
|
93
102
|
export declare function iterLoadAssembleeComptesRendusCommissions(dataDir: string, legislature: Legislature): Generator<{
|
|
94
103
|
compteRendu: CompteRendu;
|
|
95
104
|
datasetLegislature: Legislature;
|
|
105
|
+
filePath: string;
|
|
96
106
|
}, void, unknown>;
|
|
97
107
|
export declare function loadAssembleeData(dataDir: string, enabledDatasets: EnabledDatasets, legislature: Legislature, { log }?: {
|
|
98
108
|
log?: boolean | undefined;
|