@tricoteuses/assemblee 0.25.3 → 0.26.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.
Files changed (59) hide show
  1. package/README.md +5 -3
  2. package/lib/bugs/acteur-00010.js +3 -3
  3. package/lib/bugs/agenda-00002.js +3 -3
  4. package/lib/bugs/agenda-00008.js +3 -3
  5. package/lib/bugs/agenda-00011.js +3 -3
  6. package/lib/bugs.js +2 -2
  7. package/lib/cleaners/acteurs.js +39 -2
  8. package/lib/cleaners/acteurs.mjs +25 -1
  9. package/lib/cleaners/documents.js +3 -1
  10. package/lib/cleaners/documents.mjs +3 -1
  11. package/lib/cleaners/organes.js +19 -2
  12. package/lib/cleaners/organes.mjs +18 -1
  13. package/lib/cleaners/reunions.js +1 -1
  14. package/lib/file_systems.js +7 -3
  15. package/lib/parsers/documents.js +2 -2
  16. package/lib/parsers/documents.mjs +2 -2
  17. package/lib/parsers/recherche_amendements.js +2 -2
  18. package/lib/raw_types/acteurs_et_organes.d.ts +181 -13
  19. package/lib/raw_types/acteurs_et_organes.js +327 -60
  20. package/lib/raw_types/acteurs_et_organes.mjs +318 -55
  21. package/lib/raw_types/agendas.d.ts +3 -1
  22. package/lib/raw_types/agendas.js +7 -5
  23. package/lib/raw_types/agendas.mjs +5 -3
  24. package/lib/raw_types/amendements.d.ts +2 -2
  25. package/lib/raw_types/amendements.js +5 -5
  26. package/lib/raw_types/amendements.mjs +3 -3
  27. package/lib/raw_types/dossiers_legislatifs.d.ts +77 -435
  28. package/lib/raw_types/dossiers_legislatifs.js +294 -1439
  29. package/lib/raw_types/dossiers_legislatifs.mjs +290 -1432
  30. package/lib/raw_types/scrutins.js +2 -2
  31. package/lib/scripts/bugs_helper.js +2 -2
  32. package/lib/scripts/clean_data.js +2 -2
  33. package/lib/scripts/clean_data.mjs +2 -2
  34. package/lib/scripts/clean_reorganized_data.js +1 -1
  35. package/lib/scripts/document_dossiers_legislatifs.js +10 -10
  36. package/lib/scripts/reorganize_data.js +195 -136
  37. package/lib/scripts/reorganize_data.mjs +46 -2
  38. package/lib/scripts/retrieve_documents.js +2 -2
  39. package/lib/scripts/retrieve_open_data.js +2 -2
  40. package/lib/scripts/retrieve_open_data.mjs +2 -2
  41. package/lib/scripts/retrieve_pending_amendments.js +2 -2
  42. package/lib/scripts/retrieve_textes_lois.js +2 -2
  43. package/lib/scripts/test_load.js +2 -2
  44. package/lib/scripts/test_load.mjs +2 -2
  45. package/lib/scripts/test_load_big_files.js +2 -2
  46. package/lib/scripts/test_load_big_files.mjs +2 -2
  47. package/lib/scripts/validate_json.js +2 -2
  48. package/lib/shared_types/codes_actes.js +3 -3
  49. package/lib/shared_types/codes_actes.mjs +1 -1
  50. package/lib/types/acteurs_et_organes.d.ts +48 -27
  51. package/lib/types/acteurs_et_organes.js +132 -39
  52. package/lib/types/acteurs_et_organes.mjs +128 -35
  53. package/lib/types/agendas.js +2 -2
  54. package/lib/types/amendements.js +2 -2
  55. package/lib/types/dossiers_legislatifs.d.ts +2 -0
  56. package/lib/types/dossiers_legislatifs.js +11 -3
  57. package/lib/types/dossiers_legislatifs.mjs +9 -1
  58. package/lib/types/scrutins.js +2 -2
  59. package/package.json +7 -7
@@ -23,6 +23,7 @@ export interface DocumentDocument {
23
23
  imprimerie: PurpleImprimerie | null;
24
24
  coSignataires?: CoSignataires | null;
25
25
  depotAmendements?: DepotAmendements | null;
26
+ rapportPublie?: string;
26
27
  }
27
28
  export declare enum DocumentXsiType {
28
29
  AccordInternationalType = "accordInternational_Type",
@@ -115,15 +116,19 @@ export interface CoSignataires {
115
116
  coSignataire: CoSignataireElement[] | CoSignataireElement;
116
117
  }
117
118
  export interface CoSignataireElement {
118
- acteur?: InitiateursClass;
119
+ acteur?: CoSignataireActeur;
119
120
  dateCosignature: string;
120
121
  dateRetraitCosignature: null | string;
121
122
  edite: string;
122
123
  organe?: CoSignataireOrgane;
123
124
  }
124
- export interface InitiateursClass {
125
+ export interface CoSignataireActeur {
125
126
  acteurRef: string;
126
127
  }
128
+ export interface Initiateurs {
129
+ acteurRef?: string;
130
+ organeRef?: string;
131
+ }
127
132
  export interface CoSignataireOrgane {
128
133
  organeRef: string;
129
134
  etApparentes: string;
@@ -191,6 +196,7 @@ export interface PurpleDivision {
191
196
  imprimerie: PurpleImprimerie | null;
192
197
  coSignataires?: null;
193
198
  depotAmendements?: null;
199
+ rapportPublie?: string;
194
200
  }
195
201
  export interface PurpleAuteurs {
196
202
  auteur: AuteurElement[];
@@ -216,6 +222,7 @@ export interface FluffyDivision {
216
222
  imprimerie: PurpleImprimerie | null;
217
223
  coSignataires?: null;
218
224
  depotAmendements?: null;
225
+ rapportPublie?: string;
219
226
  }
220
227
  export interface PurpleImprimerie {
221
228
  ISSN?: null;
@@ -250,7 +257,7 @@ export interface DossierParlementaireDossierParlementaire {
250
257
  titreDossier: TitreDossier;
251
258
  procedureParlementaire: ProcedureParlementaire;
252
259
  initiateur: DossierParlementaireInitiateur | null;
253
- actesLegislatifs: PurpleActesLegislatifs | null;
260
+ actesLegislatifs: ActesLegislatifs | null;
254
261
  fusionDossier: FusionDossier | null;
255
262
  PLF?: Plf;
256
263
  }
@@ -269,7 +276,7 @@ export interface EtudePlf {
269
276
  uid: string;
270
277
  organeRef: string;
271
278
  texteAssocie?: string;
272
- rapporteur?: RapporteursRapporteurClass[] | RapporteursRapporteurClass;
279
+ rapporteur?: Rapporteur[] | Rapporteur;
273
280
  missionMinefi?: MissionMinefiElement;
274
281
  ordreDIQS: string;
275
282
  ordreCommission: string;
@@ -296,190 +303,99 @@ export declare enum TypeMission {
296
303
  MissionSecondaire = "mission secondaire",
297
304
  PartieDeMission = "partie de mission"
298
305
  }
299
- export interface RapporteursRapporteurClass {
300
- acteurRef: string;
301
- typeRapporteur: Qualite;
302
- }
303
- export interface PurpleActesLegislatifs {
304
- acteLegislatif: PurpleActeLegislatif[] | AmbitiousActeLegislatif;
306
+ export interface ActesLegislatifs {
307
+ acteLegislatif: ActeLegislatif[] | ActeLegislatif;
305
308
  }
306
- export interface PurpleActeLegislatif {
307
- "@xsi:type": PurpleXsiType;
309
+ export interface ActeLegislatif {
310
+ "@xsi:type": ActeLegislatifXsiType;
308
311
  uid: string;
309
312
  codeActe: CodeActe;
310
313
  libelleActe: LibelleActe;
311
314
  organeRef?: string;
312
- dateActe: null;
313
- actesLegislatifs: FluffyActesLegislatifs;
314
- }
315
- export declare enum PurpleXsiType {
316
- AdoptionEuropeType = "Adoption_Europe_Type",
317
- ConclusionEtapeCcType = "ConclusionEtapeCC_Type",
318
- DecisionRecevabiliteBureauType = "DecisionRecevabiliteBureau_Type",
319
- DecisionType = "Decision_Type",
320
- DeclarationGouvernementType = "DeclarationGouvernement_Type",
321
- DepotAccordInternationalType = "DepotAccordInternational_Type",
322
- DepotAvisConseilEtatType = "DepotAvisConseilEtat_Type",
323
- DepotInitiativeNavetteType = "DepotInitiativeNavette_Type",
324
- DepotInitiativeType = "DepotInitiative_Type",
325
- DepotLettreRectificativeType = "DepotLettreRectificative_Type",
326
- DepotMotionCensureType = "DepotMotionCensure_Type",
327
- EtapeType = "Etape_Type",
328
- EtudeImpactType = "EtudeImpact_Type",
329
- ProcedureAccelereType = "ProcedureAccelere_Type",
330
- RenvoiCmpType = "RenvoiCMP_Type",
331
- RetraitInitiativeType = "RetraitInitiative_Type",
332
- SaisineConseilConstitType = "SaisineConseilConstit_Type"
333
- }
334
- export interface FluffyActesLegislatifs {
335
- acteLegislatif: FluffyActeLegislatif[] | HilariousActeLegislatif;
336
- }
337
- export interface FluffyActeLegislatif {
338
- "@xsi:type": PurpleXsiType;
339
- uid: string;
340
- codeActe: CodeActe;
341
- libelleActe: LibelleActe;
342
- organeRef: string;
343
315
  dateActe: Date | null;
344
- actesLegislatifs: TentacledActesLegislatifs | null;
316
+ actesLegislatifs: ActesLegislatifs | null;
345
317
  texteAssocie?: string;
346
318
  contributionInternaute?: ContributionInternaute;
347
319
  provenance?: string;
348
320
  depotInitialLectureDefinitiveRef?: null | string;
349
321
  initiateur?: ActeLegislatifInitiateur;
350
322
  statutConclusion?: TypeDeclaration;
351
- reunionRef?: null;
352
- voteRefs?: null;
323
+ reunionRef?: string | null;
324
+ odjRef?: string | null;
325
+ odSeancejRef?: null;
326
+ voteRefs?: VoteRefs | null;
327
+ textesAssocies?: TextesAssocies;
328
+ rapporteurs?: Rapporteurs;
329
+ reunion?: null;
330
+ texteAdopte?: null | string;
353
331
  casSaisine?: TypeDeclaration;
354
- initiateurs?: InitiateursClass | null;
332
+ decision?: TypeDeclaration;
333
+ formuleDecision?: string;
334
+ initiateurs?: Initiateurs | null;
355
335
  motif?: Motif;
356
336
  urlConclusion?: string;
357
337
  numDecision?: string;
358
338
  anneeDecision?: string;
359
339
  typeDeclaration?: TypeDeclaration;
360
340
  typeMotionCensure?: TypeDeclaration;
361
- auteurs?: ActeLegislatifAuteurs;
341
+ auteurs?: ActeLegislatifAuteurs | null;
342
+ typeMotion?: TypeDeclaration;
343
+ auteurMotion?: string;
362
344
  dateRetrait?: null;
345
+ texteLoiRef?: string;
346
+ infoJO?: InfoJoElement;
347
+ urlEcheancierLoi?: null | string;
348
+ codeLoi?: string;
349
+ titreLoi?: string;
350
+ infoJORect?: InfoJoElement[] | InfoJoElement;
351
+ texteEuropeen?: TexteEuropeen;
352
+ infoJOCE?: InfoJoce;
353
+ statutAdoption?: TypeDeclaration;
354
+ urlLegifrance?: string;
355
+ referenceNOR?: string;
363
356
  }
364
- export interface TentacledActesLegislatifs {
365
- acteLegislatif: TentacledActeLegislatif[] | IndecentActeLegislatif;
366
- }
367
- export interface TentacledActeLegislatif {
368
- "@xsi:type": FluffyXsiType;
369
- uid: string;
370
- codeActe: CodeActe;
371
- libelleActe: LibelleActe;
372
- organeRef: string;
373
- dateActe: Date | null;
374
- actesLegislatifs: StickyActesLegislatifs | null;
375
- reunionRef?: string;
376
- odjRef?: string;
377
- statutConclusion?: TypeDeclaration;
378
- voteRefs?: PurpleVoteRefs | null;
379
- textesAssocies?: PurpleTextesAssocies;
380
- rapporteurs?: StickyRapporteurs;
381
- reunion?: null;
382
- texteAssocie?: string;
383
- texteAdopte?: null | string;
384
- decision?: TypeDeclaration;
385
- odSeancejRef?: null;
386
- }
387
- export declare enum FluffyXsiType {
388
- DecisionMotionCensureType = "DecisionMotionCensure_Type",
389
- DecisionType = "Decision_Type",
390
- DepotMotionReferendaireType = "DepotMotionReferendaire_Type",
391
- DepotRapportType = "DepotRapport_Type",
392
- DiscussionSeancePubliqueType = "DiscussionSeancePublique_Type",
393
- EtapeType = "Etape_Type",
394
- MotionProcedureType = "MotionProcedure_Type",
395
- NominRapporteursType = "NominRapporteurs_Type"
396
- }
397
- export interface StickyActesLegislatifs {
398
- acteLegislatif: ActesLegislatifsActeLegislatifClass[] | StickyActeLegislatif;
399
- }
400
- export interface ActesLegislatifsActeLegislatifClass {
401
- "@xsi:type": TentacledXsiType;
402
- uid: string;
403
- codeActe: CodeActe;
404
- libelleActe: LibelleActe;
405
- organeRef: string;
406
- dateActe: Date | null;
407
- actesLegislatifs: null;
408
- rapporteurs?: PurpleRapporteurs;
409
- reunion?: null;
410
- texteAssocie?: string;
411
- texteAdopte?: null | string;
412
- reunionRef?: null | string;
413
- odjRef?: null | string;
414
- statutConclusion?: TypeDeclaration;
415
- voteRefs?: null;
416
- }
417
- export declare enum TentacledXsiType {
357
+ export declare enum ActeLegislatifXsiType {
358
+ AdoptionEuropeType = "Adoption_Europe_Type",
359
+ ConclusionEtapeCcType = "ConclusionEtapeCC_Type",
418
360
  CreationOrganeTemporaireType = "CreationOrganeTemporaire_Type",
361
+ DecisionMotionCensureType = "DecisionMotionCensure_Type",
362
+ DecisionRecevabiliteBureauType = "DecisionRecevabiliteBureau_Type",
419
363
  DecisionType = "Decision_Type",
420
364
  DeclarationGouvernementType = "DeclarationGouvernement_Type",
365
+ DepotAccordInternationalType = "DepotAccordInternational_Type",
366
+ DepotAvisConseilEtatType = "DepotAvisConseilEtat_Type",
367
+ DepotInitiativeNavetteType = "DepotInitiativeNavette_Type",
421
368
  DepotInitiativeType = "DepotInitiative_Type",
369
+ DepotLettreRectificativeType = "DepotLettreRectificative_Type",
370
+ DepotMotionCensureType = "DepotMotionCensure_Type",
371
+ DepotMotionReferendaireType = "DepotMotionReferendaire_Type",
422
372
  DepotRapportType = "DepotRapport_Type",
423
373
  DiscussionCommissionType = "DiscussionCommission_Type",
374
+ DiscussionSeancePubliqueType = "DiscussionSeancePublique_Type",
424
375
  EtapeType = "Etape_Type",
376
+ EtudeImpactType = "EtudeImpact_Type",
377
+ MotionProcedureType = "MotionProcedure_Type",
425
378
  NominRapporteursType = "NominRapporteurs_Type",
379
+ ProcedureAccelereType = "ProcedureAccelere_Type",
380
+ PromulgationType = "Promulgation_Type",
426
381
  RenvoiPrealableType = "RenvoiPrealable_Type",
382
+ RenvoiCmpType = "RenvoiCMP_Type",
383
+ RetraitInitiativeType = "RetraitInitiative_Type",
427
384
  SaisieComAvisType = "SaisieComAvis_Type",
428
- SaisieComFondType = "SaisieComFond_Type"
385
+ SaisieComFondType = "SaisieComFond_Type",
386
+ SaisineConseilConstitType = "SaisineConseilConstit_Type"
429
387
  }
430
388
  export interface LibelleActe {
431
389
  nomCanonique: string;
432
390
  libelleCourt?: string;
433
391
  }
434
- export interface PurpleRapporteurs {
435
- rapporteur: PurpleRapporteur[] | PurpleRapporteur;
436
- }
437
- export interface PurpleRapporteur {
392
+ export interface Rapporteur {
438
393
  acteurRef: string;
439
394
  typeRapporteur: Qualite;
440
395
  etudePLFRef?: string;
441
396
  }
442
- export interface IndecentActesLegislatifs {
443
- acteLegislatif: StickyActeLegislatif[] | StickyActeLegislatif;
444
- }
445
- export interface IndigoActeLegislatif {
446
- "@xsi:type": TentacledXsiType;
447
- uid: string;
448
- codeActe: CodeActe;
449
- libelleActe: LibelleActe;
450
- organeRef: string;
451
- dateActe: Date | null;
452
- actesLegislatifs: IndecentActesLegislatifs | null;
453
- reunionRef?: null | string;
454
- odjRef?: null | string;
455
- texteAssocie?: string;
456
- texteAdopte?: null | string;
457
- rapporteurs?: FluffyRapporteurs;
458
- reunion?: null;
459
- statutConclusion?: TypeDeclaration;
460
- voteRefs?: null;
461
- initiateurs?: AuteurOrgane;
462
- typeDeclaration?: TypeDeclaration;
463
- }
464
- export interface IndigoActesLegislatifs {
465
- acteLegislatif: IndigoActeLegislatif[] | StickyActeLegislatif;
466
- }
467
- export interface StickyActeLegislatif {
468
- "@xsi:type": TentacledXsiType;
469
- uid: string;
470
- codeActe: CodeActe;
471
- libelleActe: LibelleActe;
472
- organeRef: string;
473
- dateActe: Date | null;
474
- actesLegislatifs: IndigoActesLegislatifs | null;
475
- texteAssocie?: string;
476
- texteAdopte?: null;
477
- initiateurs?: AuteurOrgane;
478
- rapporteurs?: TentacledRapporteurs;
479
- reunion?: null;
480
- }
481
- export interface FluffyRapporteurs {
482
- rapporteur: RapporteursRapporteurClass[] | RapporteursRapporteurClass;
397
+ export interface Rapporteurs {
398
+ rapporteur: Rapporteur[] | Rapporteur;
483
399
  }
484
400
  export interface TypeDeclaration {
485
401
  fam_code: FamCode;
@@ -527,13 +443,10 @@ export declare enum FamCode {
527
443
  Tsortmot01 = "TSORTMOT01",
528
444
  Tsortmot02 = "TSORTMOT02"
529
445
  }
530
- export interface TentacledRapporteurs {
531
- rapporteur: RapporteursRapporteurClass;
446
+ export interface Rapporteurs {
447
+ rapporteur: Rapporteur[] | Rapporteur;
532
448
  }
533
- export interface StickyRapporteurs {
534
- rapporteur: RapporteursRapporteurClass[];
535
- }
536
- export interface PurpleTextesAssocies {
449
+ export interface TextesAssocies {
537
450
  texteAssocie: TexteAssocieElement[] | TexteAssocieElement;
538
451
  }
539
452
  export interface TexteAssocieElement {
@@ -544,27 +457,11 @@ export declare enum TypeTexte {
544
457
  Bta = "BTA",
545
458
  Tap = "TAP"
546
459
  }
547
- export interface PurpleVoteRefs {
460
+ export interface VoteRefs {
548
461
  voteRef: string[] | string;
549
462
  }
550
- export interface IndecentActeLegislatif {
551
- "@xsi:type": FluffyXsiType;
552
- uid: string;
553
- codeActe: CodeActe;
554
- libelleActe: LibelleActe;
555
- organeRef: string;
556
- dateActe: Date | null;
557
- actesLegislatifs: IndigoActesLegislatifs | null;
558
- statutConclusion?: TypeDeclaration;
559
- reunionRef?: null | string;
560
- voteRefs?: null;
561
- textesAssocies?: PurpleTextesAssocies;
562
- odjRef?: string;
563
- rapporteurs?: StickyRapporteurs;
564
- reunion?: null;
565
- }
566
463
  export interface ActeLegislatifAuteurs {
567
- acteurRef: string[];
464
+ acteurRef: string[] | string;
568
465
  }
569
466
  export interface ContributionInternaute {
570
467
  dateFermeture: null | string;
@@ -583,111 +480,17 @@ export interface ActeurElement {
583
480
  export declare enum Motif {
584
481
  EnApplicationDeLArticle612DeLaConstitution = "En application de l'article 61\u00A72 de la Constitution"
585
482
  }
586
- export interface HilariousActeLegislatif {
587
- "@xsi:type": StickyXsiType;
588
- uid: string;
589
- codeActe: CodeActe;
590
- libelleActe: LibelleActe;
591
- organeRef?: string;
592
- dateActe: Date;
593
- actesLegislatifs: null;
594
- texteLoiRef?: string;
595
- infoJO?: PurpleInfoJo;
596
- urlEcheancierLoi?: null | string;
597
- codeLoi?: string;
598
- titreLoi?: string;
599
- infoJORect?: PurpleInfoJo;
600
- texteAssocie?: string;
601
- texteAdopte?: null;
602
- casSaisine?: TypeDeclaration;
603
- initiateurs?: null;
604
- motif?: Motif;
605
- }
606
- export declare enum StickyXsiType {
607
- DepotRapportType = "DepotRapport_Type",
608
- PromulgationType = "Promulgation_Type",
609
- SaisineConseilConstitType = "SaisineConseilConstit_Type"
610
- }
611
- export interface PurpleInfoJo {
483
+ export interface InfoJoElement {
612
484
  typeJO: TypeJo;
613
485
  dateJO: string;
614
486
  pageJO: null;
615
487
  numJO: string;
616
- urlLegifrance: string;
617
- referenceNOR: string;
488
+ urlLegifrance?: string;
489
+ referenceNOR?: string;
618
490
  }
619
491
  export declare enum TypeJo {
620
492
  JoLoiDecret = "JO_LOI_DECRET"
621
493
  }
622
- export interface AmbitiousActeLegislatif {
623
- "@xsi:type": PurpleXsiType;
624
- uid: string;
625
- codeActe: CodeActe;
626
- libelleActe: LibelleActe;
627
- organeRef: string;
628
- dateActe: null;
629
- actesLegislatifs: HilariousActesLegislatifs;
630
- }
631
- export interface HilariousActesLegislatifs {
632
- acteLegislatif: CunningActeLegislatif[] | StickyActeLegislatif;
633
- }
634
- export interface CunningActeLegislatif {
635
- "@xsi:type": PurpleXsiType;
636
- uid: string;
637
- codeActe: CodeActe;
638
- libelleActe: LibelleActe;
639
- organeRef: string;
640
- dateActe: Date | null;
641
- actesLegislatifs: AmbitiousActesLegislatifs | null;
642
- texteAssocie?: string;
643
- contributionInternaute?: ContributionInternaute;
644
- typeMotionCensure?: TypeDeclaration;
645
- auteurs?: ActeLegislatifAuteurs;
646
- dateRetrait?: null;
647
- typeDeclaration?: TypeDeclaration;
648
- }
649
- export interface AmbitiousActesLegislatifs {
650
- acteLegislatif: MagentaActeLegislatif[] | FriskyActeLegislatif;
651
- }
652
- export interface MagentaActeLegislatif {
653
- "@xsi:type": FluffyXsiType;
654
- uid: string;
655
- codeActe: CodeActe;
656
- libelleActe: LibelleActe;
657
- organeRef: string;
658
- dateActe: Date | null;
659
- actesLegislatifs: IndigoActesLegislatifs | null;
660
- reunionRef?: null | string;
661
- odjRef?: string;
662
- typeMotion?: TypeDeclaration;
663
- auteurMotion?: string;
664
- dateRetrait?: null;
665
- voteRefs?: FluffyVoteRefs | null;
666
- statutConclusion?: TypeDeclaration;
667
- textesAssocies?: PurpleTextesAssocies;
668
- decision?: TypeDeclaration;
669
- odSeancejRef?: null;
670
- }
671
- export interface FluffyVoteRefs {
672
- voteRef: string;
673
- }
674
- export interface FriskyActeLegislatif {
675
- "@xsi:type": FluffyXsiType;
676
- uid: string;
677
- codeActe: CodeActe;
678
- libelleActe: LibelleActe;
679
- organeRef: string;
680
- dateActe: Date | null;
681
- actesLegislatifs: IndigoActesLegislatifs | null;
682
- statutConclusion?: TypeDeclaration;
683
- reunionRef?: null | string;
684
- voteRefs?: null;
685
- textesAssocies?: FluffyTextesAssocies;
686
- odjRef?: string;
687
- }
688
- export interface FluffyTextesAssocies {
689
- texteAssocie: TexteAssocieElement;
690
- }
691
494
  export interface FusionDossier {
692
495
  cause: Cause;
693
496
  dossierAbsorbantRef: string;
@@ -738,101 +541,11 @@ export interface DossierDossierParlementaire {
738
541
  titreDossier: TitreDossier;
739
542
  procedureParlementaire: ProcedureParlementaire;
740
543
  initiateur: DossierParlementaireInitiateur | null;
741
- actesLegislatifs: CunningActesLegislatifs;
544
+ actesLegislatifs: ActesLegislatifs;
742
545
  fusionDossier: FusionDossier | null;
743
546
  indexation?: Indexation;
744
547
  PLF?: Plf;
745
548
  }
746
- export interface CunningActesLegislatifs {
747
- acteLegislatif: MischievousActeLegislatif[] | ActeLegislatif4;
748
- }
749
- export interface MischievousActeLegislatif {
750
- "@xsi:type": PurpleXsiType;
751
- uid: string;
752
- codeActe: CodeActe;
753
- libelleActe: LibelleActe;
754
- organeRef?: string;
755
- dateActe: null;
756
- actesLegislatifs: MagentaActesLegislatifs;
757
- }
758
- export interface MagentaActesLegislatifs {
759
- acteLegislatif: BraggadociousActeLegislatif[] | ActeLegislatif3;
760
- }
761
- export interface BraggadociousActeLegislatif {
762
- "@xsi:type": PurpleXsiType;
763
- uid: string;
764
- codeActe: CodeActe;
765
- libelleActe: LibelleActe;
766
- organeRef?: string;
767
- dateActe: Date | null;
768
- actesLegislatifs: FriskyActesLegislatifs | null;
769
- texteAssocie?: string;
770
- provenance?: string;
771
- contributionInternaute?: ContributionInternaute;
772
- initiateur?: ActeLegislatifInitiateur;
773
- statutConclusion?: TypeDeclaration;
774
- reunionRef?: null;
775
- voteRefs?: null;
776
- casSaisine?: TypeDeclaration;
777
- initiateurs?: InitiateursClass | null;
778
- motif?: Motif;
779
- urlConclusion?: string;
780
- numDecision?: string;
781
- anneeDecision?: string;
782
- typeDeclaration?: TypeDeclaration;
783
- typeMotionCensure?: TypeDeclaration;
784
- auteurs?: ActeLegislatifAuteurs;
785
- dateRetrait?: null;
786
- texteEuropeen?: TexteEuropeen;
787
- infoJOCE?: InfoJoce;
788
- statutAdoption?: TypeDeclaration;
789
- }
790
- export interface FriskyActesLegislatifs {
791
- acteLegislatif: ActeLegislatif1[] | ActeLegislatif2;
792
- }
793
- export interface ActeLegislatif1 {
794
- "@xsi:type": FluffyXsiType;
795
- uid: string;
796
- codeActe: CodeActe;
797
- libelleActe: LibelleActe;
798
- organeRef: string;
799
- dateActe: Date | null;
800
- actesLegislatifs: MischievousActesLegislatifs | null;
801
- reunionRef?: null | string;
802
- odjRef?: string;
803
- statutConclusion?: TypeDeclaration;
804
- voteRefs?: PurpleVoteRefs | null;
805
- textesAssocies?: PurpleTextesAssocies;
806
- typeMotion?: TypeDeclaration;
807
- auteurMotion?: string;
808
- dateRetrait?: null;
809
- rapporteurs?: StickyRapporteurs;
810
- reunion?: null;
811
- texteAssocie?: string;
812
- texteAdopte?: null;
813
- auteurs?: InitiateursClass | null;
814
- decision?: TypeDeclaration;
815
- odSeancejRef?: null;
816
- }
817
- export interface MischievousActesLegislatifs {
818
- acteLegislatif: ActesLegislatifsActeLegislatifClass[];
819
- }
820
- export interface ActeLegislatif2 {
821
- "@xsi:type": FluffyXsiType;
822
- uid: string;
823
- codeActe: CodeActe;
824
- libelleActe: LibelleActe;
825
- organeRef: string;
826
- dateActe: Date | null;
827
- actesLegislatifs: IndigoActesLegislatifs | null;
828
- statutConclusion?: TypeDeclaration;
829
- reunionRef?: null | string;
830
- voteRefs?: FluffyVoteRefs | null;
831
- textesAssocies?: FluffyTextesAssocies;
832
- odjRef?: string;
833
- decision?: TypeDeclaration;
834
- odSeancejRef?: null;
835
- }
836
549
  export interface InfoJoce {
837
550
  refJOCE: string;
838
551
  dateJOCE: string;
@@ -841,81 +554,6 @@ export interface TexteEuropeen {
841
554
  typeTexteEuropeen: string;
842
555
  titreTexteEuropeen: string;
843
556
  }
844
- export interface ActeLegislatif3 {
845
- "@xsi:type": StickyXsiType;
846
- uid: string;
847
- codeActe: CodeActe;
848
- libelleActe: LibelleActe;
849
- organeRef: string;
850
- dateActe: Date;
851
- actesLegislatifs: null;
852
- texteLoiRef?: string;
853
- infoJO?: InfoJoElement;
854
- urlLegifrance?: string;
855
- referenceNOR?: string;
856
- codeLoi?: string;
857
- titreLoi?: string;
858
- infoJORect?: InfoJoElement[] | InfoJoElement;
859
- texteAssocie?: string;
860
- texteAdopte?: null;
861
- }
862
- export interface InfoJoElement {
863
- typeJO: TypeJo;
864
- dateJO: string;
865
- pageJO: null;
866
- numJO: string;
867
- }
868
- export interface ActeLegislatif4 {
869
- "@xsi:type": PurpleXsiType;
870
- uid: string;
871
- codeActe: CodeActe;
872
- libelleActe: LibelleActe;
873
- organeRef: string;
874
- dateActe: null;
875
- actesLegislatifs: BraggadociousActesLegislatifs;
876
- }
877
- export interface BraggadociousActesLegislatifs {
878
- acteLegislatif: ActeLegislatif5[] | IndigoActeLegislatif;
879
- }
880
- export interface ActeLegislatif5 {
881
- "@xsi:type": PurpleXsiType;
882
- uid: string;
883
- codeActe: CodeActe;
884
- libelleActe: LibelleActe;
885
- organeRef: string;
886
- dateActe: Date | null;
887
- actesLegislatifs: ActesLegislatifs1 | null;
888
- texteAssocie?: string;
889
- contributionInternaute?: ContributionInternaute;
890
- decision?: TypeDeclaration;
891
- formuleDecision?: string;
892
- typeDeclaration?: TypeDeclaration;
893
- typeMotionCensure?: TypeDeclaration;
894
- auteurs?: ActeLegislatifAuteurs;
895
- dateRetrait?: null;
896
- }
897
- export interface ActesLegislatifs1 {
898
- acteLegislatif: ActeLegislatif6[] | ActeLegislatif2;
899
- }
900
- export interface ActeLegislatif6 {
901
- "@xsi:type": FluffyXsiType;
902
- uid: string;
903
- codeActe: CodeActe;
904
- libelleActe: LibelleActe;
905
- organeRef: string;
906
- dateActe: Date | null;
907
- actesLegislatifs: IndigoActesLegislatifs | null;
908
- reunionRef?: null | string;
909
- odjRef?: string;
910
- statutConclusion?: TypeDeclaration;
911
- voteRefs?: FluffyVoteRefs | null;
912
- textesAssocies?: FluffyTextesAssocies;
913
- typeMotion?: TypeDeclaration;
914
- auteurMotion?: string;
915
- dateRetrait?: null;
916
- decision?: TypeDeclaration;
917
- odSeancejRef?: null;
918
- }
919
557
  export interface Indexation {
920
558
  themes: Themes;
921
559
  }
@@ -948,6 +586,7 @@ export interface DocumentElement {
948
586
  imprimerie: FluffyImprimerie | null;
949
587
  coSignataires?: CoSignataires | null;
950
588
  depotAmendements?: DepotAmendements | null;
589
+ rapportPublie?: string;
951
590
  }
952
591
  export interface TentacledDivisions {
953
592
  division: TentacledDivision[] | IndigoDivision;
@@ -970,6 +609,7 @@ export interface TentacledDivision {
970
609
  imprimerie: FluffyImprimerie | null;
971
610
  coSignataires?: null;
972
611
  depotAmendements?: null;
612
+ rapportPublie?: string;
973
613
  }
974
614
  export interface FluffyAuteurs {
975
615
  auteur: AuteurElement[] | PurpleAuteur;
@@ -996,6 +636,7 @@ export interface StickyDivision {
996
636
  notice: Notice;
997
637
  indexation: Indexation | null;
998
638
  imprimerie: FluffyImprimerie | null;
639
+ rapportPublie?: string;
999
640
  }
1000
641
  export interface FluffyImprimerie {
1001
642
  prix: string;
@@ -1018,6 +659,7 @@ export interface IndigoDivision {
1018
659
  imprimerie: FluffyImprimerie | null;
1019
660
  coSignataires?: null;
1020
661
  depotAmendements?: null;
662
+ rapportPublie?: string;
1021
663
  }
1022
664
  export declare class Convert {
1023
665
  static toDocument(json: string): Document;