@tricoteuses/assemblee 0.25.2 → 0.26.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.
Files changed (79) hide show
  1. package/README.md +5 -0
  2. package/lib/bugs/acteur-00010.js +5 -5
  3. package/lib/bugs/agenda-00002.js +4 -4
  4. package/lib/bugs/agenda-00002.mjs +1 -1
  5. package/lib/bugs/agenda-00008.js +5 -5
  6. package/lib/bugs/agenda-00011.js +3 -3
  7. package/lib/bugs.js +2 -2
  8. package/lib/cleaners/acteurs.js +39 -2
  9. package/lib/cleaners/acteurs.mjs +25 -1
  10. package/lib/cleaners/amendements.mjs +3 -7
  11. package/lib/cleaners/documents.js +3 -1
  12. package/lib/cleaners/documents.mjs +3 -1
  13. package/lib/cleaners/organes.js +19 -2
  14. package/lib/cleaners/organes.mjs +18 -1
  15. package/lib/cleaners/reunions.js +1 -1
  16. package/lib/datasets.js +1 -1
  17. package/lib/datasets.mjs +1 -1
  18. package/lib/dates.js +1 -1
  19. package/lib/dates.mjs +1 -1
  20. package/lib/file_systems.js +7 -3
  21. package/lib/index.d.ts +2 -1
  22. package/lib/index.js +4 -2
  23. package/lib/index.mjs +3 -2
  24. package/lib/inserters.js +1 -1
  25. package/lib/inserters.mjs +1 -1
  26. package/lib/loaders.js +1 -1
  27. package/lib/loaders.mjs +1 -1
  28. package/lib/parsers/documents.js +2 -2
  29. package/lib/parsers/documents.mjs +2 -2
  30. package/lib/parsers/recherche_amendements.js +2 -2
  31. package/lib/raw_types/acteurs_et_organes.d.ts +181 -13
  32. package/lib/raw_types/acteurs_et_organes.js +327 -60
  33. package/lib/raw_types/acteurs_et_organes.mjs +318 -55
  34. package/lib/raw_types/agendas.d.ts +2 -1
  35. package/lib/raw_types/agendas.js +6 -5
  36. package/lib/raw_types/agendas.mjs +4 -3
  37. package/lib/raw_types/amendements.d.ts +2 -2
  38. package/lib/raw_types/amendements.js +5 -5
  39. package/lib/raw_types/amendements.mjs +3 -3
  40. package/lib/raw_types/dossiers_legislatifs.d.ts +80 -714
  41. package/lib/raw_types/dossiers_legislatifs.js +310 -1771
  42. package/lib/raw_types/dossiers_legislatifs.mjs +304 -1747
  43. package/lib/raw_types/scrutins.js +2 -2
  44. package/lib/scripts/bugs_helper.js +2 -2
  45. package/lib/scripts/clean_data.js +2 -2
  46. package/lib/scripts/clean_data.mjs +2 -2
  47. package/lib/scripts/clean_reorganized_data.js +2 -2
  48. package/lib/scripts/clean_reorganized_data.mjs +1 -1
  49. package/lib/scripts/document_dossiers_legislatifs.js +10 -10
  50. package/lib/scripts/document_dossiers_legislatifs.mjs +1 -1
  51. package/lib/scripts/raw_types_from_amendements.js +1 -1
  52. package/lib/scripts/raw_types_from_amendements.mjs +1 -1
  53. package/lib/scripts/reorganize_data.js +195 -136
  54. package/lib/scripts/reorganize_data.mjs +46 -2
  55. package/lib/scripts/retrieve_documents.js +2 -2
  56. package/lib/scripts/retrieve_open_data.js +2 -2
  57. package/lib/scripts/retrieve_open_data.mjs +2 -2
  58. package/lib/scripts/retrieve_pending_amendments.js +2 -2
  59. package/lib/scripts/retrieve_textes_lois.js +2 -2
  60. package/lib/scripts/test_load.js +2 -2
  61. package/lib/scripts/test_load.mjs +2 -2
  62. package/lib/scripts/test_load_big_files.js +2 -2
  63. package/lib/scripts/test_load_big_files.mjs +2 -2
  64. package/lib/scripts/validate_json.js +2 -2
  65. package/lib/shared_types/codes_actes.d.ts +413 -0
  66. package/lib/shared_types/codes_actes.js +262 -0
  67. package/lib/shared_types/codes_actes.mjs +227 -0
  68. package/lib/types/acteurs_et_organes.d.ts +48 -27
  69. package/lib/types/acteurs_et_organes.js +132 -39
  70. package/lib/types/acteurs_et_organes.mjs +128 -35
  71. package/lib/types/agendas.js +2 -2
  72. package/lib/types/amendements.js +2 -2
  73. package/lib/types/dossiers_legislatifs.d.ts +3 -413
  74. package/lib/types/dossiers_legislatifs.js +20 -262
  75. package/lib/types/dossiers_legislatifs.mjs +14 -231
  76. package/lib/types/scrutins.js +2 -2
  77. package/lib/urls.js +1 -1
  78. package/lib/urls.mjs +1 -1
  79. package/package.json +7 -7
@@ -1,3 +1,4 @@
1
+ import { CodeActe } from "../shared_types/codes_actes";
1
2
  export interface Document {
2
3
  document: DocumentDocument;
3
4
  }
@@ -22,6 +23,7 @@ export interface DocumentDocument {
22
23
  imprimerie: PurpleImprimerie | null;
23
24
  coSignataires?: CoSignataires | null;
24
25
  depotAmendements?: DepotAmendements | null;
26
+ rapportPublie?: string;
25
27
  }
26
28
  export declare enum DocumentXsiType {
27
29
  AccordInternationalType = "accordInternational_Type",
@@ -114,15 +116,19 @@ export interface CoSignataires {
114
116
  coSignataire: CoSignataireElement[] | CoSignataireElement;
115
117
  }
116
118
  export interface CoSignataireElement {
117
- acteur?: InitiateursClass;
119
+ acteur?: CoSignataireActeur;
118
120
  dateCosignature: string;
119
121
  dateRetraitCosignature: null | string;
120
122
  edite: string;
121
123
  organe?: CoSignataireOrgane;
122
124
  }
123
- export interface InitiateursClass {
125
+ export interface CoSignataireActeur {
124
126
  acteurRef: string;
125
127
  }
128
+ export interface Initiateurs {
129
+ acteurRef?: string;
130
+ organeRef?: string;
131
+ }
126
132
  export interface CoSignataireOrgane {
127
133
  organeRef: string;
128
134
  etApparentes: string;
@@ -190,6 +196,7 @@ export interface PurpleDivision {
190
196
  imprimerie: PurpleImprimerie | null;
191
197
  coSignataires?: null;
192
198
  depotAmendements?: null;
199
+ rapportPublie?: string;
193
200
  }
194
201
  export interface PurpleAuteurs {
195
202
  auteur: AuteurElement[];
@@ -215,6 +222,7 @@ export interface FluffyDivision {
215
222
  imprimerie: PurpleImprimerie | null;
216
223
  coSignataires?: null;
217
224
  depotAmendements?: null;
225
+ rapportPublie?: string;
218
226
  }
219
227
  export interface PurpleImprimerie {
220
228
  ISSN?: null;
@@ -249,7 +257,7 @@ export interface DossierParlementaireDossierParlementaire {
249
257
  titreDossier: TitreDossier;
250
258
  procedureParlementaire: ProcedureParlementaire;
251
259
  initiateur: DossierParlementaireInitiateur | null;
252
- actesLegislatifs: PurpleActesLegislatifs | null;
260
+ actesLegislatifs: ActesLegislatifs | null;
253
261
  fusionDossier: FusionDossier | null;
254
262
  PLF?: Plf;
255
263
  }
@@ -268,7 +276,7 @@ export interface EtudePlf {
268
276
  uid: string;
269
277
  organeRef: string;
270
278
  texteAssocie?: string;
271
- rapporteur?: RapporteursRapporteurClass[] | RapporteursRapporteurClass;
279
+ rapporteur?: Rapporteur[] | Rapporteur;
272
280
  missionMinefi?: MissionMinefiElement;
273
281
  ordreDIQS: string;
274
282
  ordreCommission: string;
@@ -295,221 +303,100 @@ export declare enum TypeMission {
295
303
  MissionSecondaire = "mission secondaire",
296
304
  PartieDeMission = "partie de mission"
297
305
  }
298
- export interface RapporteursRapporteurClass {
299
- acteurRef: string;
300
- typeRapporteur: Qualite;
301
- }
302
- export interface PurpleActesLegislatifs {
303
- acteLegislatif: PurpleActeLegislatif[] | AmbitiousActeLegislatif;
306
+ export interface ActesLegislatifs {
307
+ acteLegislatif: ActeLegislatif[] | ActeLegislatif;
304
308
  }
305
- export interface PurpleActeLegislatif {
306
- "@xsi:type": PurpleXsiType;
309
+ export interface ActeLegislatif {
310
+ "@xsi:type": ActeLegislatifXsiType;
307
311
  uid: string;
308
- codeActe: IndecentCodeActe;
312
+ codeActe: CodeActe;
309
313
  libelleActe: LibelleActe;
310
314
  organeRef?: string;
311
- dateActe: null;
312
- actesLegislatifs: FluffyActesLegislatifs;
313
- }
314
- export declare enum PurpleXsiType {
315
- AdoptionEuropeType = "Adoption_Europe_Type",
316
- ConclusionEtapeCcType = "ConclusionEtapeCC_Type",
317
- DecisionRecevabiliteBureauType = "DecisionRecevabiliteBureau_Type",
318
- DecisionType = "Decision_Type",
319
- DeclarationGouvernementType = "DeclarationGouvernement_Type",
320
- DepotAccordInternationalType = "DepotAccordInternational_Type",
321
- DepotAvisConseilEtatType = "DepotAvisConseilEtat_Type",
322
- DepotInitiativeNavetteType = "DepotInitiativeNavette_Type",
323
- DepotInitiativeType = "DepotInitiative_Type",
324
- DepotLettreRectificativeType = "DepotLettreRectificative_Type",
325
- DepotMotionCensureType = "DepotMotionCensure_Type",
326
- EtapeType = "Etape_Type",
327
- EtudeImpactType = "EtudeImpact_Type",
328
- ProcedureAccelereType = "ProcedureAccelere_Type",
329
- RenvoiCmpType = "RenvoiCMP_Type",
330
- RetraitInitiativeType = "RetraitInitiative_Type",
331
- SaisineConseilConstitType = "SaisineConseilConstit_Type"
332
- }
333
- export interface FluffyActesLegislatifs {
334
- acteLegislatif: FluffyActeLegislatif[] | HilariousActeLegislatif;
335
- }
336
- export interface FluffyActeLegislatif {
337
- "@xsi:type": PurpleXsiType;
338
- uid: string;
339
- codeActe: StickyCodeActe;
340
- libelleActe: LibelleActe;
341
- organeRef: string;
342
315
  dateActe: Date | null;
343
- actesLegislatifs: TentacledActesLegislatifs | null;
316
+ actesLegislatifs: ActesLegislatifs | null;
344
317
  texteAssocie?: string;
345
318
  contributionInternaute?: ContributionInternaute;
346
319
  provenance?: string;
347
320
  depotInitialLectureDefinitiveRef?: null | string;
348
321
  initiateur?: ActeLegislatifInitiateur;
349
322
  statutConclusion?: TypeDeclaration;
350
- reunionRef?: null;
351
- 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;
352
331
  casSaisine?: TypeDeclaration;
353
- initiateurs?: InitiateursClass | null;
332
+ decision?: TypeDeclaration;
333
+ formuleDecision?: string;
334
+ initiateurs?: Initiateurs | null;
354
335
  motif?: Motif;
355
336
  urlConclusion?: string;
356
337
  numDecision?: string;
357
338
  anneeDecision?: string;
358
339
  typeDeclaration?: TypeDeclaration;
359
340
  typeMotionCensure?: TypeDeclaration;
360
- auteurs?: ActeLegislatifAuteurs;
341
+ auteurs?: ActeLegislatifAuteurs | null;
342
+ typeMotion?: TypeDeclaration;
343
+ auteurMotion?: string;
361
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;
362
356
  }
363
- export interface TentacledActesLegislatifs {
364
- acteLegislatif: TentacledActeLegislatif[] | IndecentActeLegislatif;
365
- }
366
- export interface TentacledActeLegislatif {
367
- "@xsi:type": FluffyXsiType;
368
- uid: string;
369
- codeActe: FluffyCodeActe;
370
- libelleActe: LibelleActe;
371
- organeRef: string;
372
- dateActe: Date | null;
373
- actesLegislatifs: StickyActesLegislatifs | null;
374
- reunionRef?: string;
375
- odjRef?: string;
376
- statutConclusion?: TypeDeclaration;
377
- voteRefs?: PurpleVoteRefs | null;
378
- textesAssocies?: PurpleTextesAssocies;
379
- rapporteurs?: StickyRapporteurs;
380
- reunion?: null;
381
- texteAssocie?: string;
382
- texteAdopte?: null | string;
383
- decision?: TypeDeclaration;
384
- odSeancejRef?: null;
385
- }
386
- export declare enum FluffyXsiType {
387
- DecisionMotionCensureType = "DecisionMotionCensure_Type",
388
- DecisionType = "Decision_Type",
389
- DepotMotionReferendaireType = "DepotMotionReferendaire_Type",
390
- DepotRapportType = "DepotRapport_Type",
391
- DiscussionSeancePubliqueType = "DiscussionSeancePublique_Type",
392
- EtapeType = "Etape_Type",
393
- MotionProcedureType = "MotionProcedure_Type",
394
- NominRapporteursType = "NominRapporteurs_Type"
395
- }
396
- export interface StickyActesLegislatifs {
397
- acteLegislatif: ActesLegislatifsActeLegislatifClass[] | StickyActeLegislatif;
398
- }
399
- export interface ActesLegislatifsActeLegislatifClass {
400
- "@xsi:type": TentacledXsiType;
401
- uid: string;
402
- codeActe: PurpleCodeActe;
403
- libelleActe: LibelleActe;
404
- organeRef: string;
405
- dateActe: Date | null;
406
- actesLegislatifs: null;
407
- rapporteurs?: PurpleRapporteurs;
408
- reunion?: null;
409
- texteAssocie?: string;
410
- texteAdopte?: null | string;
411
- reunionRef?: null | string;
412
- odjRef?: null | string;
413
- statutConclusion?: TypeDeclaration;
414
- voteRefs?: null;
415
- }
416
- export declare enum TentacledXsiType {
357
+ export declare enum ActeLegislatifXsiType {
358
+ AdoptionEuropeType = "Adoption_Europe_Type",
359
+ ConclusionEtapeCcType = "ConclusionEtapeCC_Type",
417
360
  CreationOrganeTemporaireType = "CreationOrganeTemporaire_Type",
361
+ DecisionMotionCensureType = "DecisionMotionCensure_Type",
362
+ DecisionRecevabiliteBureauType = "DecisionRecevabiliteBureau_Type",
418
363
  DecisionType = "Decision_Type",
419
364
  DeclarationGouvernementType = "DeclarationGouvernement_Type",
365
+ DepotAccordInternationalType = "DepotAccordInternational_Type",
366
+ DepotAvisConseilEtatType = "DepotAvisConseilEtat_Type",
367
+ DepotInitiativeNavetteType = "DepotInitiativeNavette_Type",
420
368
  DepotInitiativeType = "DepotInitiative_Type",
369
+ DepotLettreRectificativeType = "DepotLettreRectificative_Type",
370
+ DepotMotionCensureType = "DepotMotionCensure_Type",
371
+ DepotMotionReferendaireType = "DepotMotionReferendaire_Type",
421
372
  DepotRapportType = "DepotRapport_Type",
422
373
  DiscussionCommissionType = "DiscussionCommission_Type",
374
+ DiscussionSeancePubliqueType = "DiscussionSeancePublique_Type",
423
375
  EtapeType = "Etape_Type",
376
+ EtudeImpactType = "EtudeImpact_Type",
377
+ MotionProcedureType = "MotionProcedure_Type",
424
378
  NominRapporteursType = "NominRapporteurs_Type",
379
+ ProcedureAccelereType = "ProcedureAccelere_Type",
380
+ PromulgationType = "Promulgation_Type",
425
381
  RenvoiPrealableType = "RenvoiPrealable_Type",
382
+ RenvoiCmpType = "RenvoiCMP_Type",
383
+ RetraitInitiativeType = "RetraitInitiative_Type",
426
384
  SaisieComAvisType = "SaisieComAvis_Type",
427
- SaisieComFondType = "SaisieComFond_Type"
428
- }
429
- export declare enum PurpleCodeActe {
430
- An1ComAvisNomin = "AN1-COM-AVIS-NOMIN",
431
- An1ComAvisRapport = "AN1-COM-AVIS-RAPPORT",
432
- An1ComAvisReunion = "AN1-COM-AVIS-REUNION",
433
- An1ComAvisSaisie = "AN1-COM-AVIS-SAISIE",
434
- An1ComFondNomin = "AN1-COM-FOND-NOMIN",
435
- An1ComFondRapport = "AN1-COM-FOND-RAPPORT",
436
- An1ComFondReunion = "AN1-COM-FOND-REUNION",
437
- An1ComFondSaisie = "AN1-COM-FOND-SAISIE",
438
- An1Depot = "AN1-DEPOT",
439
- An20Comenq = "AN20-COMENQ",
440
- An20ComenqCrea = "AN20-COMENQ-CREA",
441
- An20ComenqNomin = "AN20-COMENQ-NOMIN",
442
- An20ComenqRapport = "AN20-COMENQ-RAPPORT",
443
- An20Misinf = "AN20-MISINF",
444
- An20MisinfCrea = "AN20-MISINF-CREA",
445
- An20MisinfNomin = "AN20-MISINF-NOMIN",
446
- An20MisinfRapport = "AN20-MISINF-RAPPORT",
447
- An20Rapport = "AN20-RAPPORT",
448
- An21Apan = "AN21-APAN",
449
- An21Dgvt = "AN21-DGVT",
450
- An2ComAvisRapport = "AN2-COM-AVIS-RAPPORT",
451
- An2ComAvisReunion = "AN2-COM-AVIS-REUNION",
452
- An2ComAvisSaisie = "AN2-COM-AVIS-SAISIE",
453
- An2ComFondNomin = "AN2-COM-FOND-NOMIN",
454
- An2ComFondRapport = "AN2-COM-FOND-RAPPORT",
455
- An2ComFondReunion = "AN2-COM-FOND-REUNION",
456
- An2ComFondSaisie = "AN2-COM-FOND-SAISIE",
457
- An3ComFondNomin = "AN3-COM-FOND-NOMIN",
458
- An3ComFondRapport = "AN3-COM-FOND-RAPPORT",
459
- An3ComFondReunion = "AN3-COM-FOND-REUNION",
460
- An3ComFondSaisie = "AN3-COM-FOND-SAISIE",
461
- AnldefComFondRapport = "ANLDEF-COM-FOND-RAPPORT",
462
- AnldefComFondReunion = "ANLDEF-COM-FOND-REUNION",
463
- AnldefComFondSaisie = "ANLDEF-COM-FOND-SAISIE",
464
- AnluniComCaeDec = "ANLUNI-COM-CAE-DEC",
465
- AnluniComCaeNomin = "ANLUNI-COM-CAE-NOMIN",
466
- AnluniComCaeRapport = "ANLUNI-COM-CAE-RAPPORT",
467
- AnluniComCaeReunion = "ANLUNI-COM-CAE-REUNION",
468
- AnluniComCaeSaisie = "ANLUNI-COM-CAE-SAISIE",
469
- AnluniComFondNomin = "ANLUNI-COM-FOND-NOMIN",
470
- AnluniComFondRapport = "ANLUNI-COM-FOND-RAPPORT",
471
- AnluniComFondReunion = "ANLUNI-COM-FOND-REUNION",
472
- AnluniComFondSaisie = "ANLUNI-COM-FOND-SAISIE",
473
- AnluniDepot = "ANLUNI-DEPOT",
474
- AnnlecComAvisNomin = "ANNLEC-COM-AVIS-NOMIN",
475
- AnnlecComAvisRapport = "ANNLEC-COM-AVIS-RAPPORT",
476
- AnnlecComAvisReunion = "ANNLEC-COM-AVIS-REUNION",
477
- AnnlecComAvisSaisie = "ANNLEC-COM-AVIS-SAISIE",
478
- AnnlecComFondNomin = "ANNLEC-COM-FOND-NOMIN",
479
- AnnlecComFondRapport = "ANNLEC-COM-FOND-RAPPORT",
480
- AnnlecComFondReunion = "ANNLEC-COM-FOND-REUNION",
481
- AnnlecComFondSaisie = "ANNLEC-COM-FOND-SAISIE",
482
- Sn1ComAvisNomin = "SN1-COM-AVIS-NOMIN",
483
- Sn1ComAvisRapport = "SN1-COM-AVIS-RAPPORT",
484
- Sn1ComAvisSaisie = "SN1-COM-AVIS-SAISIE",
485
- Sn1ComFondNomin = "SN1-COM-FOND-NOMIN",
486
- Sn1ComFondRapport = "SN1-COM-FOND-RAPPORT",
487
- Sn1ComFondSaisie = "SN1-COM-FOND-SAISIE",
488
- Sn1Depot = "SN1-DEPOT",
489
- Sn2ComAvisNomin = "SN2-COM-AVIS-NOMIN",
490
- Sn2ComAvisRapport = "SN2-COM-AVIS-RAPPORT",
491
- Sn2ComAvisSaisie = "SN2-COM-AVIS-SAISIE",
492
- Sn2ComFondNomin = "SN2-COM-FOND-NOMIN",
493
- Sn2ComFondRapport = "SN2-COM-FOND-RAPPORT",
494
- Sn2ComFondSaisie = "SN2-COM-FOND-SAISIE",
495
- Sn3ComFondRapport = "SN3-COM-FOND-RAPPORT",
496
- Sn3ComFondSaisie = "SN3-COM-FOND-SAISIE",
497
- SnnlecComFondNomin = "SNNLEC-COM-FOND-NOMIN",
498
- SnnlecComFondRapport = "SNNLEC-COM-FOND-RAPPORT",
499
- SnnlecComFondSaisie = "SNNLEC-COM-FOND-SAISIE"
385
+ SaisieComFondType = "SaisieComFond_Type",
386
+ SaisineConseilConstitType = "SaisineConseilConstit_Type"
500
387
  }
501
388
  export interface LibelleActe {
502
389
  nomCanonique: string;
503
390
  libelleCourt?: string;
504
391
  }
505
- export interface PurpleRapporteurs {
506
- rapporteur: PurpleRapporteur[] | PurpleRapporteur;
507
- }
508
- export interface PurpleRapporteur {
392
+ export interface Rapporteur {
509
393
  acteurRef: string;
510
394
  typeRapporteur: Qualite;
511
395
  etudePLFRef?: string;
512
396
  }
397
+ export interface Rapporteurs {
398
+ rapporteur: Rapporteur[] | Rapporteur;
399
+ }
513
400
  export interface TypeDeclaration {
514
401
  fam_code: FamCode;
515
402
  libelle?: string;
@@ -556,99 +443,10 @@ export declare enum FamCode {
556
443
  Tsortmot01 = "TSORTMOT01",
557
444
  Tsortmot02 = "TSORTMOT02"
558
445
  }
559
- export interface IndecentActesLegislatifs {
560
- acteLegislatif: StickyActeLegislatif[] | StickyActeLegislatif;
446
+ export interface Rapporteurs {
447
+ rapporteur: Rapporteur[] | Rapporteur;
561
448
  }
562
- export interface IndigoActeLegislatif {
563
- "@xsi:type": TentacledXsiType;
564
- uid: string;
565
- codeActe: PurpleCodeActe;
566
- libelleActe: LibelleActe;
567
- organeRef: string;
568
- dateActe: Date | null;
569
- actesLegislatifs: IndecentActesLegislatifs | null;
570
- reunionRef?: null | string;
571
- odjRef?: null | string;
572
- texteAssocie?: string;
573
- texteAdopte?: null | string;
574
- rapporteurs?: FluffyRapporteurs;
575
- reunion?: null;
576
- initiateurs?: AuteurOrgane;
577
- statutConclusion?: TypeDeclaration;
578
- voteRefs?: null;
579
- typeDeclaration?: TypeDeclaration;
580
- }
581
- export interface IndigoActesLegislatifs {
582
- acteLegislatif: IndigoActeLegislatif[] | StickyActeLegislatif;
583
- }
584
- export interface StickyActeLegislatif {
585
- "@xsi:type": TentacledXsiType;
586
- uid: string;
587
- codeActe: PurpleCodeActe;
588
- libelleActe: LibelleActe;
589
- organeRef: string;
590
- dateActe: Date | null;
591
- actesLegislatifs: IndigoActesLegislatifs | null;
592
- texteAssocie?: string;
593
- texteAdopte?: null;
594
- initiateurs?: AuteurOrgane;
595
- rapporteurs?: TentacledRapporteurs;
596
- reunion?: null;
597
- }
598
- export interface FluffyRapporteurs {
599
- rapporteur: RapporteursRapporteurClass[] | RapporteursRapporteurClass;
600
- }
601
- export interface TentacledRapporteurs {
602
- rapporteur: RapporteursRapporteurClass;
603
- }
604
- export declare enum FluffyCodeActe {
605
- An1ComAvis = "AN1-COM-AVIS",
606
- An1ComFond = "AN1-COM-FOND",
607
- An1DebatsDec = "AN1-DEBATS-DEC",
608
- An1DebatsMotion = "AN1-DEBATS-MOTION",
609
- An1DebatsMotionVote = "AN1-DEBATS-MOTION-VOTE",
610
- An1DebatsSeance = "AN1-DEBATS-SEANCE",
611
- An2ComAvis = "AN2-COM-AVIS",
612
- An2ComFond = "AN2-COM-FOND",
613
- An2DebatsDec = "AN2-DEBATS-DEC",
614
- An2DebatsSeance = "AN2-DEBATS-SEANCE",
615
- An3DebatsDec = "AN3-DEBATS-DEC",
616
- An3DebatsSeance = "AN3-DEBATS-SEANCE",
617
- AnldefDebatsDec = "ANLDEF-DEBATS-DEC",
618
- AnldefDebatsSeance = "ANLDEF-DEBATS-SEANCE",
619
- AnluniDebatsDec = "ANLUNI-DEBATS-DEC",
620
- AnluniDebatsSeance = "ANLUNI-DEBATS-SEANCE",
621
- AnnlecComAvis = "ANNLEC-COM-AVIS",
622
- AnnlecComFond = "ANNLEC-COM-FOND",
623
- AnnlecDebatsDec = "ANNLEC-DEBATS-DEC",
624
- AnnlecDebatsMotionVote = "ANNLEC-DEBATS-MOTION-VOTE",
625
- AnnlecDebatsSeance = "ANNLEC-DEBATS-SEANCE",
626
- CmpComNomin = "CMP-COM-NOMIN",
627
- CmpComRapportAn = "CMP-COM-RAPPORT-AN",
628
- CmpComRapportSn = "CMP-COM-RAPPORT-SN",
629
- CmpDebatsAnDec = "CMP-DEBATS-AN-DEC",
630
- CmpDebatsAnSeance = "CMP-DEBATS-AN-SEANCE",
631
- CmpDebatsSnDec = "CMP-DEBATS-SN-DEC",
632
- CmpDebatsSnSeance = "CMP-DEBATS-SN-SEANCE",
633
- Sn1ComAvis = "SN1-COM-AVIS",
634
- Sn1ComFond = "SN1-COM-FOND",
635
- Sn1DebatsDec = "SN1-DEBATS-DEC",
636
- Sn1DebatsMotion = "SN1-DEBATS-MOTION",
637
- Sn1DebatsMotionVote = "SN1-DEBATS-MOTION-VOTE",
638
- Sn1DebatsSeance = "SN1-DEBATS-SEANCE",
639
- Sn2ComAvis = "SN2-COM-AVIS",
640
- Sn2ComFond = "SN2-COM-FOND",
641
- Sn2DebatsDec = "SN2-DEBATS-DEC",
642
- Sn2DebatsSeance = "SN2-DEBATS-SEANCE",
643
- Sn3DebatsDec = "SN3-DEBATS-DEC",
644
- Sn3DebatsSeance = "SN3-DEBATS-SEANCE",
645
- SnnlecDebatsDec = "SNNLEC-DEBATS-DEC",
646
- SnnlecDebatsSeance = "SNNLEC-DEBATS-SEANCE"
647
- }
648
- export interface StickyRapporteurs {
649
- rapporteur: RapporteursRapporteurClass[];
650
- }
651
- export interface PurpleTextesAssocies {
449
+ export interface TextesAssocies {
652
450
  texteAssocie: TexteAssocieElement[] | TexteAssocieElement;
653
451
  }
654
452
  export interface TexteAssocieElement {
@@ -659,122 +457,11 @@ export declare enum TypeTexte {
659
457
  Bta = "BTA",
660
458
  Tap = "TAP"
661
459
  }
662
- export interface PurpleVoteRefs {
460
+ export interface VoteRefs {
663
461
  voteRef: string[] | string;
664
462
  }
665
- export interface IndecentActeLegislatif {
666
- "@xsi:type": FluffyXsiType;
667
- uid: string;
668
- codeActe: TentacledCodeActe;
669
- libelleActe: LibelleActe;
670
- organeRef: string;
671
- dateActe: Date | null;
672
- actesLegislatifs: IndigoActesLegislatifs | null;
673
- statutConclusion?: TypeDeclaration;
674
- reunionRef?: null | string;
675
- voteRefs?: null;
676
- textesAssocies?: PurpleTextesAssocies;
677
- odjRef?: string;
678
- }
679
- export declare enum TentacledCodeActe {
680
- An1ComFond = "AN1-COM-FOND",
681
- An1DebatsDec = "AN1-DEBATS-DEC",
682
- An1DebatsSeance = "AN1-DEBATS-SEANCE",
683
- An21DebatsMotionVote = "AN21-DEBATS-MOTION-VOTE",
684
- An2ComFond = "AN2-COM-FOND",
685
- An2DebatsSeance = "AN2-DEBATS-SEANCE",
686
- An3ComFond = "AN3-COM-FOND",
687
- An3DebatsSeance = "AN3-DEBATS-SEANCE",
688
- AnldefComFond = "ANLDEF-COM-FOND",
689
- AnldefDebatsDec = "ANLDEF-DEBATS-DEC",
690
- AnldefDebatsSeance = "ANLDEF-DEBATS-SEANCE",
691
- AnluniComCae = "ANLUNI-COM-CAE",
692
- AnluniComFond = "ANLUNI-COM-FOND",
693
- AnluniDebatsDec = "ANLUNI-DEBATS-DEC",
694
- AnnlecComFond = "ANNLEC-COM-FOND",
695
- AnnlecDebatsDec = "ANNLEC-DEBATS-DEC",
696
- CmpDebatsAnDec = "CMP-DEBATS-AN-DEC",
697
- CmpDebatsAnSeance = "CMP-DEBATS-AN-SEANCE",
698
- CmpDebatsSnDec = "CMP-DEBATS-SN-DEC",
699
- Sn1ComFond = "SN1-COM-FOND",
700
- Sn1DebatsDec = "SN1-DEBATS-DEC",
701
- Sn1DebatsSeance = "SN1-DEBATS-SEANCE",
702
- Sn2ComFond = "SN2-COM-FOND",
703
- Sn2DebatsDec = "SN2-DEBATS-DEC",
704
- Sn3ComFond = "SN3-COM-FOND",
705
- SnnlecComFond = "SNNLEC-COM-FOND",
706
- SnnlecDebatsDec = "SNNLEC-DEBATS-DEC"
707
- }
708
463
  export interface ActeLegislatifAuteurs {
709
- acteurRef: string[];
710
- }
711
- export declare enum StickyCodeActe {
712
- An1Acin = "AN1-ACIN",
713
- An1Avce = "AN1-AVCE",
714
- An1Com = "AN1-COM",
715
- An1Debats = "AN1-DEBATS",
716
- An1Depot = "AN1-DEPOT",
717
- An1Dgvt = "AN1-DGVT",
718
- An1Dptlettrect = "AN1-DPTLETTRECT",
719
- An1Eti = "AN1-ETI",
720
- An1Motion = "AN1-MOTION",
721
- An1Procacc = "AN1-PROCACC",
722
- An1Recbureau = "AN1-RECBUREAU",
723
- An1Rtrini = "AN1-RTRINI",
724
- An21Debats = "AN21-DEBATS",
725
- An21Dgvt = "AN21-DGVT",
726
- An21Motion = "AN21-MOTION",
727
- An2Com = "AN2-COM",
728
- An2Debats = "AN2-DEBATS",
729
- An2Depot = "AN2-DEPOT",
730
- An3Com = "AN3-COM",
731
- An3Debats = "AN3-DEBATS",
732
- An3Depot = "AN3-DEPOT",
733
- AnldefCom = "ANLDEF-COM",
734
- AnldefDebats = "ANLDEF-DEBATS",
735
- AnldefDepot = "ANLDEF-DEPOT",
736
- AnldefDgvt = "ANLDEF-DGVT",
737
- AnluniCom = "ANLUNI-COM",
738
- AnluniDebats = "ANLUNI-DEBATS",
739
- AnluniDepot = "ANLUNI-DEPOT",
740
- AnluniRtrini = "ANLUNI-RTRINI",
741
- AnnlecCom = "ANNLEC-COM",
742
- AnnlecDebats = "ANNLEC-DEBATS",
743
- AnnlecDepot = "ANNLEC-DEPOT",
744
- AnnlecDgvt = "ANNLEC-DGVT",
745
- AnnlecMotion = "ANNLEC-MOTION",
746
- CcConclusion = "CC-CONCLUSION",
747
- CcSaisieAn = "CC-SAISIE-AN",
748
- CcSaisieDroit = "CC-SAISIE-DROIT",
749
- CcSaisiePan = "CC-SAISIE-PAN",
750
- CcSaisiePm = "CC-SAISIE-PM",
751
- CcSaisiePr = "CC-SAISIE-PR",
752
- CcSaisiePsn = "CC-SAISIE-PSN",
753
- CcSaisieSn = "CC-SAISIE-SN",
754
- CmpCom = "CMP-COM",
755
- CmpDebatsAn = "CMP-DEBATS-AN",
756
- CmpDebatsSn = "CMP-DEBATS-SN",
757
- CmpDec = "CMP-DEC",
758
- CmpDepot = "CMP-DEPOT",
759
- CmpSaisie = "CMP-SAISIE",
760
- EuDec = "EU-DEC",
761
- Sn1Avce = "SN1-AVCE",
762
- Sn1Com = "SN1-COM",
763
- Sn1Debats = "SN1-DEBATS",
764
- Sn1Depot = "SN1-DEPOT",
765
- Sn1Dptlettrect = "SN1-DPTLETTRECT",
766
- Sn1Eti = "SN1-ETI",
767
- Sn1Procacc = "SN1-PROCACC",
768
- Sn1Rtrini = "SN1-RTRINI",
769
- Sn2Com = "SN2-COM",
770
- Sn2Debats = "SN2-DEBATS",
771
- Sn2Depot = "SN2-DEPOT",
772
- Sn3Com = "SN3-COM",
773
- Sn3Debats = "SN3-DEBATS",
774
- Sn3Depot = "SN3-DEPOT",
775
- SnnlecCom = "SNNLEC-COM",
776
- SnnlecDebats = "SNNLEC-DEBATS",
777
- SnnlecDepot = "SNNLEC-DEPOT"
464
+ acteurRef: string[] | string;
778
465
  }
779
466
  export interface ContributionInternaute {
780
467
  dateFermeture: null | string;
@@ -793,177 +480,17 @@ export interface ActeurElement {
793
480
  export declare enum Motif {
794
481
  EnApplicationDeLArticle612DeLaConstitution = "En application de l'article 61\u00A72 de la Constitution"
795
482
  }
796
- export interface HilariousActeLegislatif {
797
- "@xsi:type": StickyXsiType;
798
- uid: string;
799
- codeActe: IndigoCodeActe;
800
- libelleActe: LibelleActe;
801
- organeRef?: string;
802
- dateActe: Date;
803
- actesLegislatifs: null;
804
- texteLoiRef?: string;
805
- infoJO?: PurpleInfoJo;
806
- urlEcheancierLoi?: null | string;
807
- codeLoi?: string;
808
- titreLoi?: string;
809
- infoJORect?: PurpleInfoJo;
810
- texteAssocie?: string;
811
- texteAdopte?: null;
812
- casSaisine?: TypeDeclaration;
813
- initiateurs?: null;
814
- motif?: Motif;
815
- }
816
- export declare enum StickyXsiType {
817
- DepotRapportType = "DepotRapport_Type",
818
- PromulgationType = "Promulgation_Type",
819
- SaisineConseilConstitType = "SaisineConseilConstit_Type"
820
- }
821
- export declare enum IndigoCodeActe {
822
- An20Rapport = "AN20-RAPPORT",
823
- AnAppliRapport = "AN-APPLI-RAPPORT",
824
- CcSaisieAn = "CC-SAISIE-AN",
825
- CcSaisieDroit = "CC-SAISIE-DROIT",
826
- CcSaisieSn = "CC-SAISIE-SN",
827
- PromPub = "PROM-PUB"
828
- }
829
- export interface PurpleInfoJo {
483
+ export interface InfoJoElement {
830
484
  typeJO: TypeJo;
831
485
  dateJO: string;
832
486
  pageJO: null;
833
487
  numJO: string;
834
- urlLegifrance: string;
835
- referenceNOR: string;
488
+ urlLegifrance?: string;
489
+ referenceNOR?: string;
836
490
  }
837
491
  export declare enum TypeJo {
838
492
  JoLoiDecret = "JO_LOI_DECRET"
839
493
  }
840
- export declare enum IndecentCodeActe {
841
- An1 = "AN1",
842
- An2 = "AN2",
843
- An20 = "AN20",
844
- An21 = "AN21",
845
- An3 = "AN3",
846
- AnAppli = "AN-APPLI",
847
- Anldef = "ANLDEF",
848
- Anluni = "ANLUNI",
849
- Annlec = "ANNLEC",
850
- Cc = "CC",
851
- Cmp = "CMP",
852
- Eu = "EU",
853
- Prom = "PROM",
854
- Sn1 = "SN1",
855
- Sn2 = "SN2",
856
- Sn3 = "SN3",
857
- Snnlec = "SNNLEC"
858
- }
859
- export interface AmbitiousActeLegislatif {
860
- "@xsi:type": PurpleXsiType;
861
- uid: string;
862
- codeActe: IndecentCodeActe;
863
- libelleActe: LibelleActe;
864
- organeRef: string;
865
- dateActe: null;
866
- actesLegislatifs: HilariousActesLegislatifs;
867
- }
868
- export interface HilariousActesLegislatifs {
869
- acteLegislatif: CunningActeLegislatif[] | StickyActeLegislatif;
870
- }
871
- export interface CunningActeLegislatif {
872
- "@xsi:type": PurpleXsiType;
873
- uid: string;
874
- codeActe: StickyCodeActe;
875
- libelleActe: LibelleActe;
876
- organeRef: string;
877
- dateActe: Date | null;
878
- actesLegislatifs: AmbitiousActesLegislatifs | null;
879
- texteAssocie?: string;
880
- contributionInternaute?: ContributionInternaute;
881
- typeMotionCensure?: TypeDeclaration;
882
- auteurs?: ActeLegislatifAuteurs;
883
- dateRetrait?: null;
884
- typeDeclaration?: TypeDeclaration;
885
- }
886
- export interface AmbitiousActesLegislatifs {
887
- acteLegislatif: MagentaActeLegislatif[] | FriskyActeLegislatif;
888
- }
889
- export interface MagentaActeLegislatif {
890
- "@xsi:type": FluffyXsiType;
891
- uid: string;
892
- codeActe: HilariousCodeActe;
893
- libelleActe: LibelleActe;
894
- organeRef: string;
895
- dateActe: Date | null;
896
- actesLegislatifs: StickyActesLegislatifs | null;
897
- reunionRef?: null | string;
898
- odjRef?: string;
899
- typeMotion?: TypeDeclaration;
900
- auteurMotion?: string;
901
- dateRetrait?: null;
902
- voteRefs?: FluffyVoteRefs | null;
903
- statutConclusion?: TypeDeclaration;
904
- textesAssocies?: PurpleTextesAssocies;
905
- decision?: TypeDeclaration;
906
- odSeancejRef?: null;
907
- }
908
- export declare enum HilariousCodeActe {
909
- An1ComAvis = "AN1-COM-AVIS",
910
- An1ComFond = "AN1-COM-FOND",
911
- An1DebatsDec = "AN1-DEBATS-DEC",
912
- An1DebatsMotion = "AN1-DEBATS-MOTION",
913
- An1DebatsMotionVote = "AN1-DEBATS-MOTION-VOTE",
914
- An1DebatsSeance = "AN1-DEBATS-SEANCE",
915
- An21DebatsMotionVote = "AN21-DEBATS-MOTION-VOTE",
916
- An21DebatsSeance = "AN21-DEBATS-SEANCE",
917
- AnluniComCae = "ANLUNI-COM-CAE",
918
- AnluniComFond = "ANLUNI-COM-FOND",
919
- AnluniDebatsDec = "ANLUNI-DEBATS-DEC",
920
- AnluniDebatsSeance = "ANLUNI-DEBATS-SEANCE",
921
- Sn1ComAvis = "SN1-COM-AVIS",
922
- Sn1ComFond = "SN1-COM-FOND",
923
- Sn1DebatsSeance = "SN1-DEBATS-SEANCE"
924
- }
925
- export interface FluffyVoteRefs {
926
- voteRef: string;
927
- }
928
- export interface FriskyActeLegislatif {
929
- "@xsi:type": FluffyXsiType;
930
- uid: string;
931
- codeActe: AmbitiousCodeActe;
932
- libelleActe: LibelleActe;
933
- organeRef: string;
934
- dateActe: Date | null;
935
- actesLegislatifs: IndigoActesLegislatifs | null;
936
- statutConclusion?: TypeDeclaration;
937
- reunionRef?: null | string;
938
- voteRefs?: null;
939
- textesAssocies?: FluffyTextesAssocies;
940
- odjRef?: string;
941
- }
942
- export declare enum AmbitiousCodeActe {
943
- An1ComFond = "AN1-COM-FOND",
944
- An1DebatsDec = "AN1-DEBATS-DEC",
945
- An1DebatsSeance = "AN1-DEBATS-SEANCE",
946
- An21DebatsMotionVote = "AN21-DEBATS-MOTION-VOTE",
947
- An21DebatsSeance = "AN21-DEBATS-SEANCE",
948
- An2ComFond = "AN2-COM-FOND",
949
- AnldefComFond = "ANLDEF-COM-FOND",
950
- AnldefDebatsDec = "ANLDEF-DEBATS-DEC",
951
- AnluniComCae = "ANLUNI-COM-CAE",
952
- AnluniComFond = "ANLUNI-COM-FOND",
953
- AnluniDebatsDec = "ANLUNI-DEBATS-DEC",
954
- AnluniDebatsSeance = "ANLUNI-DEBATS-SEANCE",
955
- AnnlecComFond = "ANNLEC-COM-FOND",
956
- CmpDebatsAnDec = "CMP-DEBATS-AN-DEC",
957
- Sn1ComFond = "SN1-COM-FOND",
958
- Sn1DebatsDec = "SN1-DEBATS-DEC",
959
- Sn1DebatsSeance = "SN1-DEBATS-SEANCE",
960
- Sn2ComFond = "SN2-COM-FOND",
961
- Sn3ComFond = "SN3-COM-FOND",
962
- SnnlecComFond = "SNNLEC-COM-FOND"
963
- }
964
- export interface FluffyTextesAssocies {
965
- texteAssocie: TexteAssocieElement;
966
- }
967
494
  export interface FusionDossier {
968
495
  cause: Cause;
969
496
  dossierAbsorbantRef: string;
@@ -1014,101 +541,11 @@ export interface DossierDossierParlementaire {
1014
541
  titreDossier: TitreDossier;
1015
542
  procedureParlementaire: ProcedureParlementaire;
1016
543
  initiateur: DossierParlementaireInitiateur | null;
1017
- actesLegislatifs: CunningActesLegislatifs;
544
+ actesLegislatifs: ActesLegislatifs;
1018
545
  fusionDossier: FusionDossier | null;
1019
546
  indexation?: Indexation;
1020
547
  PLF?: Plf;
1021
548
  }
1022
- export interface CunningActesLegislatifs {
1023
- acteLegislatif: MischievousActeLegislatif[] | ActeLegislatif4;
1024
- }
1025
- export interface MischievousActeLegislatif {
1026
- "@xsi:type": PurpleXsiType;
1027
- uid: string;
1028
- codeActe: IndecentCodeActe;
1029
- libelleActe: LibelleActe;
1030
- organeRef?: string;
1031
- dateActe: null;
1032
- actesLegislatifs: MagentaActesLegislatifs;
1033
- }
1034
- export interface MagentaActesLegislatifs {
1035
- acteLegislatif: BraggadociousActeLegislatif[] | ActeLegislatif3;
1036
- }
1037
- export interface BraggadociousActeLegislatif {
1038
- "@xsi:type": PurpleXsiType;
1039
- uid: string;
1040
- codeActe: StickyCodeActe;
1041
- libelleActe: LibelleActe;
1042
- organeRef?: string;
1043
- dateActe: Date | null;
1044
- actesLegislatifs: FriskyActesLegislatifs | null;
1045
- texteAssocie?: string;
1046
- provenance?: string;
1047
- contributionInternaute?: ContributionInternaute;
1048
- initiateur?: ActeLegislatifInitiateur;
1049
- statutConclusion?: TypeDeclaration;
1050
- reunionRef?: null;
1051
- voteRefs?: null;
1052
- casSaisine?: TypeDeclaration;
1053
- initiateurs?: InitiateursClass | null;
1054
- motif?: Motif;
1055
- urlConclusion?: string;
1056
- numDecision?: string;
1057
- anneeDecision?: string;
1058
- typeDeclaration?: TypeDeclaration;
1059
- typeMotionCensure?: TypeDeclaration;
1060
- auteurs?: ActeLegislatifAuteurs;
1061
- dateRetrait?: null;
1062
- texteEuropeen?: TexteEuropeen;
1063
- infoJOCE?: InfoJoce;
1064
- statutAdoption?: TypeDeclaration;
1065
- }
1066
- export interface FriskyActesLegislatifs {
1067
- acteLegislatif: ActeLegislatif1[] | ActeLegislatif2;
1068
- }
1069
- export interface ActeLegislatif1 {
1070
- "@xsi:type": FluffyXsiType;
1071
- uid: string;
1072
- codeActe: FluffyCodeActe;
1073
- libelleActe: LibelleActe;
1074
- organeRef: string;
1075
- dateActe: Date | null;
1076
- actesLegislatifs: MischievousActesLegislatifs | null;
1077
- reunionRef?: null | string;
1078
- odjRef?: string;
1079
- statutConclusion?: TypeDeclaration;
1080
- voteRefs?: PurpleVoteRefs | null;
1081
- textesAssocies?: PurpleTextesAssocies;
1082
- typeMotion?: TypeDeclaration;
1083
- auteurMotion?: string;
1084
- dateRetrait?: null;
1085
- rapporteurs?: StickyRapporteurs;
1086
- reunion?: null;
1087
- texteAssocie?: string;
1088
- texteAdopte?: null;
1089
- auteurs?: InitiateursClass | null;
1090
- decision?: TypeDeclaration;
1091
- odSeancejRef?: null;
1092
- }
1093
- export interface MischievousActesLegislatifs {
1094
- acteLegislatif: ActesLegislatifsActeLegislatifClass[];
1095
- }
1096
- export interface ActeLegislatif2 {
1097
- "@xsi:type": FluffyXsiType;
1098
- uid: string;
1099
- codeActe: AmbitiousCodeActe;
1100
- libelleActe: LibelleActe;
1101
- organeRef: string;
1102
- dateActe: Date | null;
1103
- actesLegislatifs: IndigoActesLegislatifs | null;
1104
- statutConclusion?: TypeDeclaration;
1105
- reunionRef?: null | string;
1106
- voteRefs?: FluffyVoteRefs | null;
1107
- textesAssocies?: FluffyTextesAssocies;
1108
- odjRef?: string;
1109
- decision?: TypeDeclaration;
1110
- odSeancejRef?: null;
1111
- }
1112
549
  export interface InfoJoce {
1113
550
  refJOCE: string;
1114
551
  dateJOCE: string;
@@ -1117,81 +554,6 @@ export interface TexteEuropeen {
1117
554
  typeTexteEuropeen: string;
1118
555
  titreTexteEuropeen: string;
1119
556
  }
1120
- export interface ActeLegislatif3 {
1121
- "@xsi:type": StickyXsiType;
1122
- uid: string;
1123
- codeActe: IndigoCodeActe;
1124
- libelleActe: LibelleActe;
1125
- organeRef: string;
1126
- dateActe: Date;
1127
- actesLegislatifs: null;
1128
- texteLoiRef?: string;
1129
- infoJO?: InfoJoElement;
1130
- urlLegifrance?: string;
1131
- referenceNOR?: string;
1132
- codeLoi?: string;
1133
- titreLoi?: string;
1134
- infoJORect?: InfoJoElement[] | InfoJoElement;
1135
- texteAssocie?: string;
1136
- texteAdopte?: null;
1137
- }
1138
- export interface InfoJoElement {
1139
- typeJO: TypeJo;
1140
- dateJO: string;
1141
- pageJO: null;
1142
- numJO: string;
1143
- }
1144
- export interface ActeLegislatif4 {
1145
- "@xsi:type": PurpleXsiType;
1146
- uid: string;
1147
- codeActe: IndecentCodeActe;
1148
- libelleActe: LibelleActe;
1149
- organeRef: string;
1150
- dateActe: null;
1151
- actesLegislatifs: BraggadociousActesLegislatifs;
1152
- }
1153
- export interface BraggadociousActesLegislatifs {
1154
- acteLegislatif: ActeLegislatif5[] | IndigoActeLegislatif;
1155
- }
1156
- export interface ActeLegislatif5 {
1157
- "@xsi:type": PurpleXsiType;
1158
- uid: string;
1159
- codeActe: StickyCodeActe;
1160
- libelleActe: LibelleActe;
1161
- organeRef: string;
1162
- dateActe: Date | null;
1163
- actesLegislatifs: ActesLegislatifs1 | null;
1164
- texteAssocie?: string;
1165
- contributionInternaute?: ContributionInternaute;
1166
- decision?: TypeDeclaration;
1167
- formuleDecision?: string;
1168
- typeDeclaration?: TypeDeclaration;
1169
- typeMotionCensure?: TypeDeclaration;
1170
- auteurs?: ActeLegislatifAuteurs;
1171
- dateRetrait?: null;
1172
- }
1173
- export interface ActesLegislatifs1 {
1174
- acteLegislatif: ActeLegislatif6[] | ActeLegislatif2;
1175
- }
1176
- export interface ActeLegislatif6 {
1177
- "@xsi:type": FluffyXsiType;
1178
- uid: string;
1179
- codeActe: HilariousCodeActe;
1180
- libelleActe: LibelleActe;
1181
- organeRef: string;
1182
- dateActe: Date | null;
1183
- actesLegislatifs: IndigoActesLegislatifs | null;
1184
- reunionRef?: null | string;
1185
- odjRef?: string;
1186
- statutConclusion?: TypeDeclaration;
1187
- voteRefs?: FluffyVoteRefs | null;
1188
- textesAssocies?: FluffyTextesAssocies;
1189
- typeMotion?: TypeDeclaration;
1190
- auteurMotion?: string;
1191
- dateRetrait?: null;
1192
- decision?: TypeDeclaration;
1193
- odSeancejRef?: null;
1194
- }
1195
557
  export interface Indexation {
1196
558
  themes: Themes;
1197
559
  }
@@ -1224,6 +586,7 @@ export interface DocumentElement {
1224
586
  imprimerie: FluffyImprimerie | null;
1225
587
  coSignataires?: CoSignataires | null;
1226
588
  depotAmendements?: DepotAmendements | null;
589
+ rapportPublie?: string;
1227
590
  }
1228
591
  export interface TentacledDivisions {
1229
592
  division: TentacledDivision[] | IndigoDivision;
@@ -1246,6 +609,7 @@ export interface TentacledDivision {
1246
609
  imprimerie: FluffyImprimerie | null;
1247
610
  coSignataires?: null;
1248
611
  depotAmendements?: null;
612
+ rapportPublie?: string;
1249
613
  }
1250
614
  export interface FluffyAuteurs {
1251
615
  auteur: AuteurElement[] | PurpleAuteur;
@@ -1272,6 +636,7 @@ export interface StickyDivision {
1272
636
  notice: Notice;
1273
637
  indexation: Indexation | null;
1274
638
  imprimerie: FluffyImprimerie | null;
639
+ rapportPublie?: string;
1275
640
  }
1276
641
  export interface FluffyImprimerie {
1277
642
  prix: string;
@@ -1294,6 +659,7 @@ export interface IndigoDivision {
1294
659
  imprimerie: FluffyImprimerie | null;
1295
660
  coSignataires?: null;
1296
661
  depotAmendements?: null;
662
+ rapportPublie?: string;
1297
663
  }
1298
664
  export declare class Convert {
1299
665
  static toDocument(json: string): Document;