@tricoteuses/assemblee 0.29.9 → 0.29.10
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.
|
@@ -19,7 +19,7 @@ export interface DocumentDocument {
|
|
|
19
19
|
auteurs: DocumentAuteurs;
|
|
20
20
|
correction: Correction | null;
|
|
21
21
|
notice: Notice;
|
|
22
|
-
indexation: null;
|
|
22
|
+
indexation: Indexation | null;
|
|
23
23
|
imprimerie: PurpleImprimerie | null;
|
|
24
24
|
coSignataires?: CoSignataires | null;
|
|
25
25
|
depotAmendements?: DepotAmendements | null;
|
|
@@ -200,7 +200,7 @@ export interface PurpleDivision {
|
|
|
200
200
|
auteurs: PurpleAuteurs;
|
|
201
201
|
correction: Correction | null;
|
|
202
202
|
notice: Notice;
|
|
203
|
-
indexation: null;
|
|
203
|
+
indexation: Indexation | null;
|
|
204
204
|
imprimerie: PurpleImprimerie | null;
|
|
205
205
|
coSignataires?: null;
|
|
206
206
|
depotAmendements?: null;
|
|
@@ -226,7 +226,7 @@ export interface FluffyDivision {
|
|
|
226
226
|
auteurs: PurpleAuteurs;
|
|
227
227
|
correction: null;
|
|
228
228
|
notice: Notice;
|
|
229
|
-
indexation: null;
|
|
229
|
+
indexation: Indexation | null;
|
|
230
230
|
imprimerie: PurpleImprimerie | null;
|
|
231
231
|
coSignataires?: null;
|
|
232
232
|
depotAmendements?: null;
|
|
@@ -269,6 +269,7 @@ export interface DossierParlementaireDossierParlementaire {
|
|
|
269
269
|
procedureParlementaire: ProcedureParlementaire;
|
|
270
270
|
initiateur: DossierParlementaireInitiateur | null;
|
|
271
271
|
actesLegislatifs: ActesLegislatifs | null;
|
|
272
|
+
indexation?: Indexation;
|
|
272
273
|
fusionDossier: FusionDossier | null;
|
|
273
274
|
PLF?: Plf;
|
|
274
275
|
}
|
|
@@ -553,8 +554,8 @@ export interface DossierDossierParlementaire {
|
|
|
553
554
|
procedureParlementaire: ProcedureParlementaire;
|
|
554
555
|
initiateur: DossierParlementaireInitiateur | null;
|
|
555
556
|
actesLegislatifs: ActesLegislatifs;
|
|
556
|
-
fusionDossier: FusionDossier | null;
|
|
557
557
|
indexation?: Indexation;
|
|
558
|
+
fusionDossier: FusionDossier | null;
|
|
558
559
|
PLF?: Plf;
|
|
559
560
|
}
|
|
560
561
|
export interface InfoJoce {
|