@tricoteuses/assemblee 3.0.18 → 3.1.1
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/README.md +2 -2
- package/lib/{amendements-Bab1iUCY.js → amendements-Blw6Aa6-.js} +3 -3
- package/lib/amendements-DiMsxlUL.js +178 -0
- package/lib/cleaners/actes_legislatifs.d.ts +2 -2
- package/lib/cleaners/acteurs.d.ts +7 -2
- package/lib/cleaners/amendements.d.ts +2 -2
- package/lib/cleaners/documents.d.ts +1 -1
- package/lib/cleaners/dossiers_legislatifs.d.ts +1 -1
- package/lib/cleaners/organes.d.ts +1 -1
- package/lib/cleaners/reunions.d.ts +1 -1
- package/lib/cleaners/scrutins.d.ts +10 -2
- package/lib/cleaners.js +576 -485
- package/lib/datasets.d.ts +2 -6
- package/lib/git.js +54 -51
- package/lib/index.js +263 -257
- package/lib/inserters.d.ts +22 -2
- package/lib/loaders.js +495 -544
- package/lib/logger.d.ts +1 -1
- package/lib/parsers.js +5 -5
- package/lib/{questions-BiakXZ6q.js → questions-XokaUGcy.js} +4 -1
- package/lib/registries.d.ts +4 -4
- package/lib/schemas/clean/acteurs_et_organes.d.ts +37 -37
- package/lib/schemas/clean/amendements.d.ts +38 -25
- package/lib/schemas/clean/dossiers_legislatifs.d.ts +16 -16
- package/lib/schemas/clean/scrutins.d.ts +2 -2
- package/lib/schemas/enriched/acteurs_et_organes.d.ts +2 -2
- package/lib/schemas/enriched/amendements.d.ts +135 -15
- package/lib/schemas/enriched/dossiers_legislatifs.d.ts +12 -12
- package/lib/schemas/enriched/scrutins.d.ts +2 -2
- package/lib/schemas/raw/acteurs_et_organes.d.ts +99 -99
- package/lib/schemas/raw/agendas.d.ts +11 -11
- package/lib/schemas/raw/amendements.d.ts +49 -37
- package/lib/schemas/raw/dossiers_legislatifs.d.ts +146 -63
- package/lib/schemas/raw/questions.d.ts +44 -44
- package/lib/schemas/raw/scrutins.d.ts +4 -4
- package/lib/scripts/retrieve_documents.d.ts +5 -1
- package/lib/scripts/retrieve_open_data.d.ts +4 -0
- package/lib/scripts/shared/cli_helpers.d.ts +8 -0
- package/package.json +26 -26
- package/lib/amendements-BKGwufEi.js +0 -170
package/lib/inserters.d.ts
CHANGED
|
@@ -130,7 +130,17 @@ export declare function insertAmendementReferences(amendement: Amendement, data:
|
|
|
130
130
|
} | undefined;
|
|
131
131
|
dispositifAmdtCreditPLFR?: {
|
|
132
132
|
cpEgalAe: string;
|
|
133
|
-
listeProgrammes?:
|
|
133
|
+
listeProgrammes?: {
|
|
134
|
+
libelle: string;
|
|
135
|
+
programmeRef?: string;
|
|
136
|
+
autorisationEngagementSupplementaire: string;
|
|
137
|
+
creditPaiementSupplementaire: string;
|
|
138
|
+
autorisationEngagementAnnule: string;
|
|
139
|
+
creditPaiementAnnule: string;
|
|
140
|
+
action: import('zod').infer<typeof import('./index.js').ActionSchema>;
|
|
141
|
+
lignesCredits?: import('./index.js').LigneCreditPLFR[];
|
|
142
|
+
id?: string;
|
|
143
|
+
}[] | undefined;
|
|
134
144
|
totalAE?: {
|
|
135
145
|
supplementaire: string;
|
|
136
146
|
annule: string;
|
|
@@ -165,7 +175,17 @@ export declare function insertAmendementReferences(amendement: Amendement, data:
|
|
|
165
175
|
} | undefined;
|
|
166
176
|
dispositifAmdtCreditPLFR?: {
|
|
167
177
|
cpEgalAe: string;
|
|
168
|
-
listeProgrammes?:
|
|
178
|
+
listeProgrammes?: {
|
|
179
|
+
libelle: string;
|
|
180
|
+
programmeRef?: string;
|
|
181
|
+
autorisationEngagementSupplementaire: string;
|
|
182
|
+
creditPaiementSupplementaire: string;
|
|
183
|
+
autorisationEngagementAnnule: string;
|
|
184
|
+
creditPaiementAnnule: string;
|
|
185
|
+
action: import('zod').infer<typeof import('./index.js').ActionSchema>;
|
|
186
|
+
lignesCredits?: import('./index.js').LigneCreditPLFR[];
|
|
187
|
+
id?: string;
|
|
188
|
+
}[] | undefined;
|
|
169
189
|
totalAE?: {
|
|
170
190
|
supplementaire: string;
|
|
171
191
|
annule: string;
|