@tricoteuses/assemblee 0.24.1 → 0.25.3
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 +3 -0
- package/lib/bugs/acteur-00010.js +5 -3
- package/lib/bugs/agenda-00002.js +3 -3
- package/lib/bugs/agenda-00002.mjs +1 -1
- package/lib/bugs/agenda-00008.js +2 -2
- package/lib/bugs/agenda-00011.js +2 -2
- package/lib/bugs.js +5 -3
- package/lib/cleaners/actes_legislatifs.js +3 -1
- package/lib/cleaners/acteurs.js +5 -3
- package/lib/cleaners/amendements.js +2 -2
- package/lib/cleaners/amendements.mjs +3 -7
- package/lib/cleaners/documents.js +3 -1
- package/lib/cleaners/dossiers_legislatifs.js +3 -1
- package/lib/cleaners/reunions.js +2 -2
- package/lib/cleaners/scrutins.js +5 -3
- package/lib/cleaners/xml.js +3 -1
- package/lib/datasets.js +1 -1
- package/lib/datasets.mjs +1 -1
- package/lib/dates.js +1 -1
- package/lib/dates.mjs +1 -1
- package/lib/dossiers_legislatifs.js +3 -1
- package/lib/file_systems.js +5 -3
- package/lib/git.js +3 -1
- package/lib/index.d.ts +2 -1
- package/lib/index.js +4 -2
- package/lib/index.mjs +3 -2
- package/lib/inserters.js +3 -1
- package/lib/inserters.mjs +1 -1
- package/lib/loaders.js +1 -1
- package/lib/loaders.mjs +1 -1
- package/lib/parsers/recherche_amendements.js +4 -2
- package/lib/raw_types/acteurs_et_organes.js +2 -2
- package/lib/raw_types/agendas.d.ts +1 -0
- package/lib/raw_types/agendas.js +5 -4
- package/lib/raw_types/agendas.mjs +3 -2
- package/lib/raw_types/amendements.d.ts +3 -2
- package/lib/raw_types/amendements.js +22 -21
- package/lib/raw_types/amendements.mjs +18 -17
- package/lib/raw_types/dossiers_legislatifs.d.ts +97 -376
- package/lib/raw_types/dossiers_legislatifs.js +89 -413
- package/lib/raw_types/dossiers_legislatifs.mjs +83 -391
- package/lib/raw_types/scrutins.js +2 -2
- package/lib/scripts/clean_data.js +3 -3
- package/lib/scripts/clean_data.mjs +1 -1
- package/lib/scripts/clean_reorganized_data.js +3 -3
- package/lib/scripts/clean_reorganized_data.mjs +1 -1
- package/lib/scripts/diff_amendements.js +2 -2
- package/lib/scripts/document_dossiers_legislatifs.js +1 -1
- package/lib/scripts/document_dossiers_legislatifs.mjs +1 -1
- package/lib/scripts/merge_scrutins.js +3 -1
- package/lib/scripts/parse_textes_lois.js +3 -1
- package/lib/scripts/raw_types_from_amendements.js +3 -1
- package/lib/scripts/raw_types_from_amendements.mjs +1 -1
- package/lib/scripts/reorganize_data.js +5 -5
- package/lib/scripts/reorganize_data.mjs +1 -1
- package/lib/scripts/retrieve_deputes_photos.js +4 -4
- package/lib/scripts/retrieve_documents.js +3 -1
- package/lib/scripts/retrieve_open_data.js +3 -1
- package/lib/scripts/retrieve_open_data.mjs +1 -1
- package/lib/scripts/retrieve_pending_amendments.js +168 -155
- package/lib/scripts/retrieve_senateurs_photos.js +2 -2
- package/lib/scripts/retrieve_textes_lois.js +4 -4
- package/lib/scripts/test_load.js +3 -1
- package/lib/scripts/test_load.mjs +1 -1
- package/lib/scripts/test_load_big_files.js +3 -1
- package/lib/scripts/test_load_big_files.mjs +1 -1
- package/lib/shared_types/codes_actes.d.ts +413 -0
- package/lib/shared_types/codes_actes.js +262 -0
- package/lib/shared_types/codes_actes.mjs +227 -0
- package/lib/types/acteurs_et_organes.js +2 -2
- package/lib/types/agendas.js +2 -2
- package/lib/types/amendements.d.ts +1 -0
- package/lib/types/amendements.js +5 -4
- package/lib/types/amendements.mjs +3 -2
- package/lib/types/dossiers_legislatifs.d.ts +1 -413
- package/lib/types/dossiers_legislatifs.js +12 -262
- package/lib/types/dossiers_legislatifs.mjs +6 -231
- package/lib/types/scrutins.js +2 -2
- package/lib/urls.js +1 -1
- package/lib/urls.mjs +1 -1
- package/package.json +3 -3
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { CodeActe } from "../shared_types/codes_actes";
|
|
1
2
|
export interface Document {
|
|
2
3
|
document: DocumentDocument;
|
|
3
4
|
}
|
|
@@ -305,7 +306,7 @@ export interface PurpleActesLegislatifs {
|
|
|
305
306
|
export interface PurpleActeLegislatif {
|
|
306
307
|
"@xsi:type": PurpleXsiType;
|
|
307
308
|
uid: string;
|
|
308
|
-
codeActe:
|
|
309
|
+
codeActe: CodeActe;
|
|
309
310
|
libelleActe: LibelleActe;
|
|
310
311
|
organeRef?: string;
|
|
311
312
|
dateActe: null;
|
|
@@ -336,7 +337,7 @@ export interface FluffyActesLegislatifs {
|
|
|
336
337
|
export interface FluffyActeLegislatif {
|
|
337
338
|
"@xsi:type": PurpleXsiType;
|
|
338
339
|
uid: string;
|
|
339
|
-
codeActe:
|
|
340
|
+
codeActe: CodeActe;
|
|
340
341
|
libelleActe: LibelleActe;
|
|
341
342
|
organeRef: string;
|
|
342
343
|
dateActe: Date | null;
|
|
@@ -344,19 +345,19 @@ export interface FluffyActeLegislatif {
|
|
|
344
345
|
texteAssocie?: string;
|
|
345
346
|
contributionInternaute?: ContributionInternaute;
|
|
346
347
|
provenance?: string;
|
|
348
|
+
depotInitialLectureDefinitiveRef?: null | string;
|
|
347
349
|
initiateur?: ActeLegislatifInitiateur;
|
|
348
|
-
statutConclusion?:
|
|
350
|
+
statutConclusion?: TypeDeclaration;
|
|
349
351
|
reunionRef?: null;
|
|
350
352
|
voteRefs?: null;
|
|
351
|
-
casSaisine?:
|
|
353
|
+
casSaisine?: TypeDeclaration;
|
|
352
354
|
initiateurs?: InitiateursClass | null;
|
|
353
355
|
motif?: Motif;
|
|
354
356
|
urlConclusion?: string;
|
|
355
357
|
numDecision?: string;
|
|
356
358
|
anneeDecision?: string;
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
typeMotionCensure?: CasSaisine;
|
|
359
|
+
typeDeclaration?: TypeDeclaration;
|
|
360
|
+
typeMotionCensure?: TypeDeclaration;
|
|
360
361
|
auteurs?: ActeLegislatifAuteurs;
|
|
361
362
|
dateRetrait?: null;
|
|
362
363
|
}
|
|
@@ -366,21 +367,21 @@ export interface TentacledActesLegislatifs {
|
|
|
366
367
|
export interface TentacledActeLegislatif {
|
|
367
368
|
"@xsi:type": FluffyXsiType;
|
|
368
369
|
uid: string;
|
|
369
|
-
codeActe:
|
|
370
|
+
codeActe: CodeActe;
|
|
370
371
|
libelleActe: LibelleActe;
|
|
371
372
|
organeRef: string;
|
|
372
373
|
dateActe: Date | null;
|
|
373
374
|
actesLegislatifs: StickyActesLegislatifs | null;
|
|
374
375
|
reunionRef?: string;
|
|
375
376
|
odjRef?: string;
|
|
376
|
-
statutConclusion?:
|
|
377
|
+
statutConclusion?: TypeDeclaration;
|
|
377
378
|
voteRefs?: PurpleVoteRefs | null;
|
|
378
379
|
textesAssocies?: PurpleTextesAssocies;
|
|
379
380
|
rapporteurs?: StickyRapporteurs;
|
|
380
381
|
reunion?: null;
|
|
381
382
|
texteAssocie?: string;
|
|
382
383
|
texteAdopte?: null | string;
|
|
383
|
-
decision?:
|
|
384
|
+
decision?: TypeDeclaration;
|
|
384
385
|
odSeancejRef?: null;
|
|
385
386
|
}
|
|
386
387
|
export declare enum FluffyXsiType {
|
|
@@ -399,7 +400,7 @@ export interface StickyActesLegislatifs {
|
|
|
399
400
|
export interface ActesLegislatifsActeLegislatifClass {
|
|
400
401
|
"@xsi:type": TentacledXsiType;
|
|
401
402
|
uid: string;
|
|
402
|
-
codeActe:
|
|
403
|
+
codeActe: CodeActe;
|
|
403
404
|
libelleActe: LibelleActe;
|
|
404
405
|
organeRef: string;
|
|
405
406
|
dateActe: Date | null;
|
|
@@ -410,7 +411,7 @@ export interface ActesLegislatifsActeLegislatifClass {
|
|
|
410
411
|
texteAdopte?: null | string;
|
|
411
412
|
reunionRef?: null | string;
|
|
412
413
|
odjRef?: null | string;
|
|
413
|
-
statutConclusion?:
|
|
414
|
+
statutConclusion?: TypeDeclaration;
|
|
414
415
|
voteRefs?: null;
|
|
415
416
|
}
|
|
416
417
|
export declare enum TentacledXsiType {
|
|
@@ -426,78 +427,6 @@ export declare enum TentacledXsiType {
|
|
|
426
427
|
SaisieComAvisType = "SaisieComAvis_Type",
|
|
427
428
|
SaisieComFondType = "SaisieComFond_Type"
|
|
428
429
|
}
|
|
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"
|
|
500
|
-
}
|
|
501
430
|
export interface LibelleActe {
|
|
502
431
|
nomCanonique: string;
|
|
503
432
|
libelleCourt?: string;
|
|
@@ -510,7 +439,49 @@ export interface PurpleRapporteur {
|
|
|
510
439
|
typeRapporteur: Qualite;
|
|
511
440
|
etudePLFRef?: string;
|
|
512
441
|
}
|
|
513
|
-
export interface
|
|
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;
|
|
483
|
+
}
|
|
484
|
+
export interface TypeDeclaration {
|
|
514
485
|
fam_code: FamCode;
|
|
515
486
|
libelle?: string;
|
|
516
487
|
}
|
|
@@ -556,95 +527,9 @@ export declare enum FamCode {
|
|
|
556
527
|
Tsortmot01 = "TSORTMOT01",
|
|
557
528
|
Tsortmot02 = "TSORTMOT02"
|
|
558
529
|
}
|
|
559
|
-
export interface IndecentActesLegislatifs {
|
|
560
|
-
acteLegislatif: StickyActeLegislatif[] | StickyActeLegislatif;
|
|
561
|
-
}
|
|
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?: CasSaisine;
|
|
578
|
-
voteRefs?: null;
|
|
579
|
-
typeDeclaration?: CasSaisine;
|
|
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
530
|
export interface TentacledRapporteurs {
|
|
602
531
|
rapporteur: RapporteursRapporteurClass;
|
|
603
532
|
}
|
|
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
533
|
export interface StickyRapporteurs {
|
|
649
534
|
rapporteur: RapporteursRapporteurClass[];
|
|
650
535
|
}
|
|
@@ -665,117 +550,22 @@ export interface PurpleVoteRefs {
|
|
|
665
550
|
export interface IndecentActeLegislatif {
|
|
666
551
|
"@xsi:type": FluffyXsiType;
|
|
667
552
|
uid: string;
|
|
668
|
-
codeActe:
|
|
553
|
+
codeActe: CodeActe;
|
|
669
554
|
libelleActe: LibelleActe;
|
|
670
555
|
organeRef: string;
|
|
671
556
|
dateActe: Date | null;
|
|
672
557
|
actesLegislatifs: IndigoActesLegislatifs | null;
|
|
673
|
-
statutConclusion?:
|
|
558
|
+
statutConclusion?: TypeDeclaration;
|
|
674
559
|
reunionRef?: null | string;
|
|
675
560
|
voteRefs?: null;
|
|
676
561
|
textesAssocies?: PurpleTextesAssocies;
|
|
677
562
|
odjRef?: string;
|
|
678
|
-
|
|
679
|
-
|
|
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"
|
|
563
|
+
rapporteurs?: StickyRapporteurs;
|
|
564
|
+
reunion?: null;
|
|
707
565
|
}
|
|
708
566
|
export interface ActeLegislatifAuteurs {
|
|
709
567
|
acteurRef: string[];
|
|
710
568
|
}
|
|
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"
|
|
778
|
-
}
|
|
779
569
|
export interface ContributionInternaute {
|
|
780
570
|
dateFermeture: null | string;
|
|
781
571
|
dateOuverture?: string;
|
|
@@ -796,7 +586,7 @@ export declare enum Motif {
|
|
|
796
586
|
export interface HilariousActeLegislatif {
|
|
797
587
|
"@xsi:type": StickyXsiType;
|
|
798
588
|
uid: string;
|
|
799
|
-
codeActe:
|
|
589
|
+
codeActe: CodeActe;
|
|
800
590
|
libelleActe: LibelleActe;
|
|
801
591
|
organeRef?: string;
|
|
802
592
|
dateActe: Date;
|
|
@@ -809,7 +599,7 @@ export interface HilariousActeLegislatif {
|
|
|
809
599
|
infoJORect?: PurpleInfoJo;
|
|
810
600
|
texteAssocie?: string;
|
|
811
601
|
texteAdopte?: null;
|
|
812
|
-
casSaisine?:
|
|
602
|
+
casSaisine?: TypeDeclaration;
|
|
813
603
|
initiateurs?: null;
|
|
814
604
|
motif?: Motif;
|
|
815
605
|
}
|
|
@@ -818,14 +608,6 @@ export declare enum StickyXsiType {
|
|
|
818
608
|
PromulgationType = "Promulgation_Type",
|
|
819
609
|
SaisineConseilConstitType = "SaisineConseilConstit_Type"
|
|
820
610
|
}
|
|
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
611
|
export interface PurpleInfoJo {
|
|
830
612
|
typeJO: TypeJo;
|
|
831
613
|
dateJO: string;
|
|
@@ -837,29 +619,10 @@ export interface PurpleInfoJo {
|
|
|
837
619
|
export declare enum TypeJo {
|
|
838
620
|
JoLoiDecret = "JO_LOI_DECRET"
|
|
839
621
|
}
|
|
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
622
|
export interface AmbitiousActeLegislatif {
|
|
860
623
|
"@xsi:type": PurpleXsiType;
|
|
861
624
|
uid: string;
|
|
862
|
-
codeActe:
|
|
625
|
+
codeActe: CodeActe;
|
|
863
626
|
libelleActe: LibelleActe;
|
|
864
627
|
organeRef: string;
|
|
865
628
|
dateActe: null;
|
|
@@ -871,17 +634,17 @@ export interface HilariousActesLegislatifs {
|
|
|
871
634
|
export interface CunningActeLegislatif {
|
|
872
635
|
"@xsi:type": PurpleXsiType;
|
|
873
636
|
uid: string;
|
|
874
|
-
codeActe:
|
|
637
|
+
codeActe: CodeActe;
|
|
875
638
|
libelleActe: LibelleActe;
|
|
876
639
|
organeRef: string;
|
|
877
640
|
dateActe: Date | null;
|
|
878
641
|
actesLegislatifs: AmbitiousActesLegislatifs | null;
|
|
879
642
|
texteAssocie?: string;
|
|
880
643
|
contributionInternaute?: ContributionInternaute;
|
|
881
|
-
typeMotionCensure?:
|
|
644
|
+
typeMotionCensure?: TypeDeclaration;
|
|
882
645
|
auteurs?: ActeLegislatifAuteurs;
|
|
883
646
|
dateRetrait?: null;
|
|
884
|
-
typeDeclaration?:
|
|
647
|
+
typeDeclaration?: TypeDeclaration;
|
|
885
648
|
}
|
|
886
649
|
export interface AmbitiousActesLegislatifs {
|
|
887
650
|
acteLegislatif: MagentaActeLegislatif[] | FriskyActeLegislatif;
|
|
@@ -889,51 +652,34 @@ export interface AmbitiousActesLegislatifs {
|
|
|
889
652
|
export interface MagentaActeLegislatif {
|
|
890
653
|
"@xsi:type": FluffyXsiType;
|
|
891
654
|
uid: string;
|
|
892
|
-
codeActe:
|
|
655
|
+
codeActe: CodeActe;
|
|
893
656
|
libelleActe: LibelleActe;
|
|
894
657
|
organeRef: string;
|
|
895
658
|
dateActe: Date | null;
|
|
896
|
-
actesLegislatifs:
|
|
659
|
+
actesLegislatifs: IndigoActesLegislatifs | null;
|
|
897
660
|
reunionRef?: null | string;
|
|
898
661
|
odjRef?: string;
|
|
899
|
-
typeMotion?:
|
|
662
|
+
typeMotion?: TypeDeclaration;
|
|
900
663
|
auteurMotion?: string;
|
|
901
664
|
dateRetrait?: null;
|
|
902
665
|
voteRefs?: FluffyVoteRefs | null;
|
|
903
|
-
statutConclusion?:
|
|
666
|
+
statutConclusion?: TypeDeclaration;
|
|
904
667
|
textesAssocies?: PurpleTextesAssocies;
|
|
905
|
-
decision?:
|
|
668
|
+
decision?: TypeDeclaration;
|
|
906
669
|
odSeancejRef?: null;
|
|
907
670
|
}
|
|
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
671
|
export interface FluffyVoteRefs {
|
|
926
672
|
voteRef: string;
|
|
927
673
|
}
|
|
928
674
|
export interface FriskyActeLegislatif {
|
|
929
675
|
"@xsi:type": FluffyXsiType;
|
|
930
676
|
uid: string;
|
|
931
|
-
codeActe:
|
|
677
|
+
codeActe: CodeActe;
|
|
932
678
|
libelleActe: LibelleActe;
|
|
933
679
|
organeRef: string;
|
|
934
680
|
dateActe: Date | null;
|
|
935
681
|
actesLegislatifs: IndigoActesLegislatifs | null;
|
|
936
|
-
statutConclusion?:
|
|
682
|
+
statutConclusion?: TypeDeclaration;
|
|
937
683
|
reunionRef?: null | string;
|
|
938
684
|
voteRefs?: null;
|
|
939
685
|
textesAssocies?: FluffyTextesAssocies;
|
|
@@ -1003,7 +749,7 @@ export interface CunningActesLegislatifs {
|
|
|
1003
749
|
export interface MischievousActeLegislatif {
|
|
1004
750
|
"@xsi:type": PurpleXsiType;
|
|
1005
751
|
uid: string;
|
|
1006
|
-
codeActe:
|
|
752
|
+
codeActe: CodeActe;
|
|
1007
753
|
libelleActe: LibelleActe;
|
|
1008
754
|
organeRef?: string;
|
|
1009
755
|
dateActe: null;
|
|
@@ -1015,7 +761,7 @@ export interface MagentaActesLegislatifs {
|
|
|
1015
761
|
export interface BraggadociousActeLegislatif {
|
|
1016
762
|
"@xsi:type": PurpleXsiType;
|
|
1017
763
|
uid: string;
|
|
1018
|
-
codeActe:
|
|
764
|
+
codeActe: CodeActe;
|
|
1019
765
|
libelleActe: LibelleActe;
|
|
1020
766
|
organeRef?: string;
|
|
1021
767
|
dateActe: Date | null;
|
|
@@ -1024,22 +770,22 @@ export interface BraggadociousActeLegislatif {
|
|
|
1024
770
|
provenance?: string;
|
|
1025
771
|
contributionInternaute?: ContributionInternaute;
|
|
1026
772
|
initiateur?: ActeLegislatifInitiateur;
|
|
1027
|
-
statutConclusion?:
|
|
773
|
+
statutConclusion?: TypeDeclaration;
|
|
1028
774
|
reunionRef?: null;
|
|
1029
775
|
voteRefs?: null;
|
|
1030
|
-
casSaisine?:
|
|
776
|
+
casSaisine?: TypeDeclaration;
|
|
1031
777
|
initiateurs?: InitiateursClass | null;
|
|
1032
778
|
motif?: Motif;
|
|
1033
779
|
urlConclusion?: string;
|
|
1034
780
|
numDecision?: string;
|
|
1035
781
|
anneeDecision?: string;
|
|
1036
|
-
typeDeclaration?:
|
|
1037
|
-
typeMotionCensure?:
|
|
782
|
+
typeDeclaration?: TypeDeclaration;
|
|
783
|
+
typeMotionCensure?: TypeDeclaration;
|
|
1038
784
|
auteurs?: ActeLegislatifAuteurs;
|
|
1039
785
|
dateRetrait?: null;
|
|
1040
786
|
texteEuropeen?: TexteEuropeen;
|
|
1041
787
|
infoJOCE?: InfoJoce;
|
|
1042
|
-
statutAdoption?:
|
|
788
|
+
statutAdoption?: TypeDeclaration;
|
|
1043
789
|
}
|
|
1044
790
|
export interface FriskyActesLegislatifs {
|
|
1045
791
|
acteLegislatif: ActeLegislatif1[] | ActeLegislatif2;
|
|
@@ -1047,17 +793,17 @@ export interface FriskyActesLegislatifs {
|
|
|
1047
793
|
export interface ActeLegislatif1 {
|
|
1048
794
|
"@xsi:type": FluffyXsiType;
|
|
1049
795
|
uid: string;
|
|
1050
|
-
codeActe:
|
|
796
|
+
codeActe: CodeActe;
|
|
1051
797
|
libelleActe: LibelleActe;
|
|
1052
798
|
organeRef: string;
|
|
1053
799
|
dateActe: Date | null;
|
|
1054
800
|
actesLegislatifs: MischievousActesLegislatifs | null;
|
|
1055
801
|
reunionRef?: null | string;
|
|
1056
802
|
odjRef?: string;
|
|
1057
|
-
statutConclusion?:
|
|
803
|
+
statutConclusion?: TypeDeclaration;
|
|
1058
804
|
voteRefs?: PurpleVoteRefs | null;
|
|
1059
805
|
textesAssocies?: PurpleTextesAssocies;
|
|
1060
|
-
typeMotion?:
|
|
806
|
+
typeMotion?: TypeDeclaration;
|
|
1061
807
|
auteurMotion?: string;
|
|
1062
808
|
dateRetrait?: null;
|
|
1063
809
|
rapporteurs?: StickyRapporteurs;
|
|
@@ -1065,7 +811,7 @@ export interface ActeLegislatif1 {
|
|
|
1065
811
|
texteAssocie?: string;
|
|
1066
812
|
texteAdopte?: null;
|
|
1067
813
|
auteurs?: InitiateursClass | null;
|
|
1068
|
-
decision?:
|
|
814
|
+
decision?: TypeDeclaration;
|
|
1069
815
|
odSeancejRef?: null;
|
|
1070
816
|
}
|
|
1071
817
|
export interface MischievousActesLegislatifs {
|
|
@@ -1074,39 +820,19 @@ export interface MischievousActesLegislatifs {
|
|
|
1074
820
|
export interface ActeLegislatif2 {
|
|
1075
821
|
"@xsi:type": FluffyXsiType;
|
|
1076
822
|
uid: string;
|
|
1077
|
-
codeActe:
|
|
823
|
+
codeActe: CodeActe;
|
|
1078
824
|
libelleActe: LibelleActe;
|
|
1079
825
|
organeRef: string;
|
|
1080
826
|
dateActe: Date | null;
|
|
1081
827
|
actesLegislatifs: IndigoActesLegislatifs | null;
|
|
1082
|
-
statutConclusion?:
|
|
828
|
+
statutConclusion?: TypeDeclaration;
|
|
1083
829
|
reunionRef?: null | string;
|
|
1084
830
|
voteRefs?: FluffyVoteRefs | null;
|
|
1085
831
|
textesAssocies?: FluffyTextesAssocies;
|
|
1086
832
|
odjRef?: string;
|
|
1087
|
-
decision?:
|
|
833
|
+
decision?: TypeDeclaration;
|
|
1088
834
|
odSeancejRef?: null;
|
|
1089
835
|
}
|
|
1090
|
-
export declare enum AmbitiousCodeActe {
|
|
1091
|
-
An1ComFond = "AN1-COM-FOND",
|
|
1092
|
-
An1DebatsDec = "AN1-DEBATS-DEC",
|
|
1093
|
-
An1DebatsSeance = "AN1-DEBATS-SEANCE",
|
|
1094
|
-
An21DebatsMotionVote = "AN21-DEBATS-MOTION-VOTE",
|
|
1095
|
-
An2ComFond = "AN2-COM-FOND",
|
|
1096
|
-
AnldefComFond = "ANLDEF-COM-FOND",
|
|
1097
|
-
AnldefDebatsDec = "ANLDEF-DEBATS-DEC",
|
|
1098
|
-
AnluniComCae = "ANLUNI-COM-CAE",
|
|
1099
|
-
AnluniComFond = "ANLUNI-COM-FOND",
|
|
1100
|
-
AnluniDebatsDec = "ANLUNI-DEBATS-DEC",
|
|
1101
|
-
AnnlecComFond = "ANNLEC-COM-FOND",
|
|
1102
|
-
CmpDebatsAnDec = "CMP-DEBATS-AN-DEC",
|
|
1103
|
-
Sn1ComFond = "SN1-COM-FOND",
|
|
1104
|
-
Sn1DebatsDec = "SN1-DEBATS-DEC",
|
|
1105
|
-
Sn1DebatsSeance = "SN1-DEBATS-SEANCE",
|
|
1106
|
-
Sn2ComFond = "SN2-COM-FOND",
|
|
1107
|
-
Sn3ComFond = "SN3-COM-FOND",
|
|
1108
|
-
SnnlecComFond = "SNNLEC-COM-FOND"
|
|
1109
|
-
}
|
|
1110
836
|
export interface InfoJoce {
|
|
1111
837
|
refJOCE: string;
|
|
1112
838
|
dateJOCE: string;
|
|
@@ -1118,7 +844,7 @@ export interface TexteEuropeen {
|
|
|
1118
844
|
export interface ActeLegislatif3 {
|
|
1119
845
|
"@xsi:type": StickyXsiType;
|
|
1120
846
|
uid: string;
|
|
1121
|
-
codeActe:
|
|
847
|
+
codeActe: CodeActe;
|
|
1122
848
|
libelleActe: LibelleActe;
|
|
1123
849
|
organeRef: string;
|
|
1124
850
|
dateActe: Date;
|
|
@@ -1133,11 +859,6 @@ export interface ActeLegislatif3 {
|
|
|
1133
859
|
texteAssocie?: string;
|
|
1134
860
|
texteAdopte?: null;
|
|
1135
861
|
}
|
|
1136
|
-
export declare enum CunningCodeActe {
|
|
1137
|
-
An20Rapport = "AN20-RAPPORT",
|
|
1138
|
-
AnAppliRapport = "AN-APPLI-RAPPORT",
|
|
1139
|
-
PromPub = "PROM-PUB"
|
|
1140
|
-
}
|
|
1141
862
|
export interface InfoJoElement {
|
|
1142
863
|
typeJO: TypeJo;
|
|
1143
864
|
dateJO: string;
|
|
@@ -1147,7 +868,7 @@ export interface InfoJoElement {
|
|
|
1147
868
|
export interface ActeLegislatif4 {
|
|
1148
869
|
"@xsi:type": PurpleXsiType;
|
|
1149
870
|
uid: string;
|
|
1150
|
-
codeActe:
|
|
871
|
+
codeActe: CodeActe;
|
|
1151
872
|
libelleActe: LibelleActe;
|
|
1152
873
|
organeRef: string;
|
|
1153
874
|
dateActe: null;
|
|
@@ -1159,17 +880,17 @@ export interface BraggadociousActesLegislatifs {
|
|
|
1159
880
|
export interface ActeLegislatif5 {
|
|
1160
881
|
"@xsi:type": PurpleXsiType;
|
|
1161
882
|
uid: string;
|
|
1162
|
-
codeActe:
|
|
883
|
+
codeActe: CodeActe;
|
|
1163
884
|
libelleActe: LibelleActe;
|
|
1164
885
|
organeRef: string;
|
|
1165
886
|
dateActe: Date | null;
|
|
1166
887
|
actesLegislatifs: ActesLegislatifs1 | null;
|
|
1167
888
|
texteAssocie?: string;
|
|
1168
889
|
contributionInternaute?: ContributionInternaute;
|
|
1169
|
-
decision?:
|
|
890
|
+
decision?: TypeDeclaration;
|
|
1170
891
|
formuleDecision?: string;
|
|
1171
|
-
typeDeclaration?:
|
|
1172
|
-
typeMotionCensure?:
|
|
892
|
+
typeDeclaration?: TypeDeclaration;
|
|
893
|
+
typeMotionCensure?: TypeDeclaration;
|
|
1173
894
|
auteurs?: ActeLegislatifAuteurs;
|
|
1174
895
|
dateRetrait?: null;
|
|
1175
896
|
}
|
|
@@ -1179,20 +900,20 @@ export interface ActesLegislatifs1 {
|
|
|
1179
900
|
export interface ActeLegislatif6 {
|
|
1180
901
|
"@xsi:type": FluffyXsiType;
|
|
1181
902
|
uid: string;
|
|
1182
|
-
codeActe:
|
|
903
|
+
codeActe: CodeActe;
|
|
1183
904
|
libelleActe: LibelleActe;
|
|
1184
905
|
organeRef: string;
|
|
1185
906
|
dateActe: Date | null;
|
|
1186
907
|
actesLegislatifs: IndigoActesLegislatifs | null;
|
|
1187
908
|
reunionRef?: null | string;
|
|
1188
909
|
odjRef?: string;
|
|
1189
|
-
statutConclusion?:
|
|
910
|
+
statutConclusion?: TypeDeclaration;
|
|
1190
911
|
voteRefs?: FluffyVoteRefs | null;
|
|
1191
912
|
textesAssocies?: FluffyTextesAssocies;
|
|
1192
|
-
typeMotion?:
|
|
913
|
+
typeMotion?: TypeDeclaration;
|
|
1193
914
|
auteurMotion?: string;
|
|
1194
915
|
dateRetrait?: null;
|
|
1195
|
-
decision?:
|
|
916
|
+
decision?: TypeDeclaration;
|
|
1196
917
|
odSeancejRef?: null;
|
|
1197
918
|
}
|
|
1198
919
|
export interface Indexation {
|