@tricoteuses/assemblee 0.25.3 → 0.25.4
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/lib/raw_types/dossiers_legislatifs.d.ts +70 -435
- package/lib/raw_types/dossiers_legislatifs.js +285 -1458
- package/lib/raw_types/dossiers_legislatifs.mjs +283 -1453
- package/package.json +1 -1
|
@@ -115,15 +115,19 @@ export interface CoSignataires {
|
|
|
115
115
|
coSignataire: CoSignataireElement[] | CoSignataireElement;
|
|
116
116
|
}
|
|
117
117
|
export interface CoSignataireElement {
|
|
118
|
-
acteur?:
|
|
118
|
+
acteur?: CoSignataireActeur;
|
|
119
119
|
dateCosignature: string;
|
|
120
120
|
dateRetraitCosignature: null | string;
|
|
121
121
|
edite: string;
|
|
122
122
|
organe?: CoSignataireOrgane;
|
|
123
123
|
}
|
|
124
|
-
export interface
|
|
124
|
+
export interface CoSignataireActeur {
|
|
125
125
|
acteurRef: string;
|
|
126
126
|
}
|
|
127
|
+
export interface Initiateurs {
|
|
128
|
+
acteurRef?: string;
|
|
129
|
+
organeRef?: string;
|
|
130
|
+
}
|
|
127
131
|
export interface CoSignataireOrgane {
|
|
128
132
|
organeRef: string;
|
|
129
133
|
etApparentes: string;
|
|
@@ -250,7 +254,7 @@ export interface DossierParlementaireDossierParlementaire {
|
|
|
250
254
|
titreDossier: TitreDossier;
|
|
251
255
|
procedureParlementaire: ProcedureParlementaire;
|
|
252
256
|
initiateur: DossierParlementaireInitiateur | null;
|
|
253
|
-
actesLegislatifs:
|
|
257
|
+
actesLegislatifs: ActesLegislatifs | null;
|
|
254
258
|
fusionDossier: FusionDossier | null;
|
|
255
259
|
PLF?: Plf;
|
|
256
260
|
}
|
|
@@ -269,7 +273,7 @@ export interface EtudePlf {
|
|
|
269
273
|
uid: string;
|
|
270
274
|
organeRef: string;
|
|
271
275
|
texteAssocie?: string;
|
|
272
|
-
rapporteur?:
|
|
276
|
+
rapporteur?: Rapporteur[] | Rapporteur;
|
|
273
277
|
missionMinefi?: MissionMinefiElement;
|
|
274
278
|
ordreDIQS: string;
|
|
275
279
|
ordreCommission: string;
|
|
@@ -296,190 +300,99 @@ export declare enum TypeMission {
|
|
|
296
300
|
MissionSecondaire = "mission secondaire",
|
|
297
301
|
PartieDeMission = "partie de mission"
|
|
298
302
|
}
|
|
299
|
-
export interface
|
|
300
|
-
|
|
301
|
-
typeRapporteur: Qualite;
|
|
302
|
-
}
|
|
303
|
-
export interface PurpleActesLegislatifs {
|
|
304
|
-
acteLegislatif: PurpleActeLegislatif[] | AmbitiousActeLegislatif;
|
|
303
|
+
export interface ActesLegislatifs {
|
|
304
|
+
acteLegislatif: ActeLegislatif[] | ActeLegislatif;
|
|
305
305
|
}
|
|
306
|
-
export interface
|
|
307
|
-
"@xsi:type":
|
|
306
|
+
export interface ActeLegislatif {
|
|
307
|
+
"@xsi:type": ActeLegislatifXsiType;
|
|
308
308
|
uid: string;
|
|
309
309
|
codeActe: CodeActe;
|
|
310
310
|
libelleActe: LibelleActe;
|
|
311
311
|
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
312
|
dateActe: Date | null;
|
|
344
|
-
actesLegislatifs:
|
|
313
|
+
actesLegislatifs: ActesLegislatifs | null;
|
|
345
314
|
texteAssocie?: string;
|
|
346
315
|
contributionInternaute?: ContributionInternaute;
|
|
347
316
|
provenance?: string;
|
|
348
317
|
depotInitialLectureDefinitiveRef?: null | string;
|
|
349
318
|
initiateur?: ActeLegislatifInitiateur;
|
|
350
319
|
statutConclusion?: TypeDeclaration;
|
|
351
|
-
reunionRef?: null;
|
|
352
|
-
|
|
320
|
+
reunionRef?: string | null;
|
|
321
|
+
odjRef?: string | null;
|
|
322
|
+
odSeancejRef?: null;
|
|
323
|
+
voteRefs?: VoteRefs | null;
|
|
324
|
+
textesAssocies?: TextesAssocies;
|
|
325
|
+
rapporteurs?: Rapporteurs;
|
|
326
|
+
reunion?: null;
|
|
327
|
+
texteAdopte?: null | string;
|
|
353
328
|
casSaisine?: TypeDeclaration;
|
|
354
|
-
|
|
329
|
+
decision?: TypeDeclaration;
|
|
330
|
+
formuleDecision?: string;
|
|
331
|
+
initiateurs?: Initiateurs | null;
|
|
355
332
|
motif?: Motif;
|
|
356
333
|
urlConclusion?: string;
|
|
357
334
|
numDecision?: string;
|
|
358
335
|
anneeDecision?: string;
|
|
359
336
|
typeDeclaration?: TypeDeclaration;
|
|
360
337
|
typeMotionCensure?: TypeDeclaration;
|
|
361
|
-
auteurs?: ActeLegislatifAuteurs;
|
|
338
|
+
auteurs?: ActeLegislatifAuteurs | null;
|
|
339
|
+
typeMotion?: TypeDeclaration;
|
|
340
|
+
auteurMotion?: string;
|
|
362
341
|
dateRetrait?: null;
|
|
342
|
+
texteLoiRef?: string;
|
|
343
|
+
infoJO?: InfoJoElement;
|
|
344
|
+
urlEcheancierLoi?: null | string;
|
|
345
|
+
codeLoi?: string;
|
|
346
|
+
titreLoi?: string;
|
|
347
|
+
infoJORect?: InfoJoElement[] | InfoJoElement;
|
|
348
|
+
texteEuropeen?: TexteEuropeen;
|
|
349
|
+
infoJOCE?: InfoJoce;
|
|
350
|
+
statutAdoption?: TypeDeclaration;
|
|
351
|
+
urlLegifrance?: string;
|
|
352
|
+
referenceNOR?: string;
|
|
363
353
|
}
|
|
364
|
-
export
|
|
365
|
-
|
|
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 {
|
|
354
|
+
export declare enum ActeLegislatifXsiType {
|
|
355
|
+
AdoptionEuropeType = "Adoption_Europe_Type",
|
|
356
|
+
ConclusionEtapeCcType = "ConclusionEtapeCC_Type",
|
|
418
357
|
CreationOrganeTemporaireType = "CreationOrganeTemporaire_Type",
|
|
358
|
+
DecisionMotionCensureType = "DecisionMotionCensure_Type",
|
|
359
|
+
DecisionRecevabiliteBureauType = "DecisionRecevabiliteBureau_Type",
|
|
419
360
|
DecisionType = "Decision_Type",
|
|
420
361
|
DeclarationGouvernementType = "DeclarationGouvernement_Type",
|
|
362
|
+
DepotAccordInternationalType = "DepotAccordInternational_Type",
|
|
363
|
+
DepotAvisConseilEtatType = "DepotAvisConseilEtat_Type",
|
|
364
|
+
DepotInitiativeNavetteType = "DepotInitiativeNavette_Type",
|
|
421
365
|
DepotInitiativeType = "DepotInitiative_Type",
|
|
366
|
+
DepotLettreRectificativeType = "DepotLettreRectificative_Type",
|
|
367
|
+
DepotMotionCensureType = "DepotMotionCensure_Type",
|
|
368
|
+
DepotMotionReferendaireType = "DepotMotionReferendaire_Type",
|
|
422
369
|
DepotRapportType = "DepotRapport_Type",
|
|
423
370
|
DiscussionCommissionType = "DiscussionCommission_Type",
|
|
371
|
+
DiscussionSeancePubliqueType = "DiscussionSeancePublique_Type",
|
|
424
372
|
EtapeType = "Etape_Type",
|
|
373
|
+
EtudeImpactType = "EtudeImpact_Type",
|
|
374
|
+
MotionProcedureType = "MotionProcedure_Type",
|
|
425
375
|
NominRapporteursType = "NominRapporteurs_Type",
|
|
376
|
+
ProcedureAccelereType = "ProcedureAccelere_Type",
|
|
377
|
+
PromulgationType = "Promulgation_Type",
|
|
426
378
|
RenvoiPrealableType = "RenvoiPrealable_Type",
|
|
379
|
+
RenvoiCmpType = "RenvoiCMP_Type",
|
|
380
|
+
RetraitInitiativeType = "RetraitInitiative_Type",
|
|
427
381
|
SaisieComAvisType = "SaisieComAvis_Type",
|
|
428
|
-
SaisieComFondType = "SaisieComFond_Type"
|
|
382
|
+
SaisieComFondType = "SaisieComFond_Type",
|
|
383
|
+
SaisineConseilConstitType = "SaisineConseilConstit_Type"
|
|
429
384
|
}
|
|
430
385
|
export interface LibelleActe {
|
|
431
386
|
nomCanonique: string;
|
|
432
387
|
libelleCourt?: string;
|
|
433
388
|
}
|
|
434
|
-
export interface
|
|
435
|
-
rapporteur: PurpleRapporteur[] | PurpleRapporteur;
|
|
436
|
-
}
|
|
437
|
-
export interface PurpleRapporteur {
|
|
389
|
+
export interface Rapporteur {
|
|
438
390
|
acteurRef: string;
|
|
439
391
|
typeRapporteur: Qualite;
|
|
440
392
|
etudePLFRef?: string;
|
|
441
393
|
}
|
|
442
|
-
export interface
|
|
443
|
-
|
|
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;
|
|
394
|
+
export interface Rapporteurs {
|
|
395
|
+
rapporteur: Rapporteur[] | Rapporteur;
|
|
483
396
|
}
|
|
484
397
|
export interface TypeDeclaration {
|
|
485
398
|
fam_code: FamCode;
|
|
@@ -527,13 +440,10 @@ export declare enum FamCode {
|
|
|
527
440
|
Tsortmot01 = "TSORTMOT01",
|
|
528
441
|
Tsortmot02 = "TSORTMOT02"
|
|
529
442
|
}
|
|
530
|
-
export interface
|
|
531
|
-
rapporteur:
|
|
443
|
+
export interface Rapporteurs {
|
|
444
|
+
rapporteur: Rapporteur[] | Rapporteur;
|
|
532
445
|
}
|
|
533
|
-
export interface
|
|
534
|
-
rapporteur: RapporteursRapporteurClass[];
|
|
535
|
-
}
|
|
536
|
-
export interface PurpleTextesAssocies {
|
|
446
|
+
export interface TextesAssocies {
|
|
537
447
|
texteAssocie: TexteAssocieElement[] | TexteAssocieElement;
|
|
538
448
|
}
|
|
539
449
|
export interface TexteAssocieElement {
|
|
@@ -544,27 +454,11 @@ export declare enum TypeTexte {
|
|
|
544
454
|
Bta = "BTA",
|
|
545
455
|
Tap = "TAP"
|
|
546
456
|
}
|
|
547
|
-
export interface
|
|
457
|
+
export interface VoteRefs {
|
|
548
458
|
voteRef: string[] | string;
|
|
549
459
|
}
|
|
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
460
|
export interface ActeLegislatifAuteurs {
|
|
567
|
-
acteurRef: string[];
|
|
461
|
+
acteurRef: string[] | string;
|
|
568
462
|
}
|
|
569
463
|
export interface ContributionInternaute {
|
|
570
464
|
dateFermeture: null | string;
|
|
@@ -583,111 +477,17 @@ export interface ActeurElement {
|
|
|
583
477
|
export declare enum Motif {
|
|
584
478
|
EnApplicationDeLArticle612DeLaConstitution = "En application de l'article 61\u00A72 de la Constitution"
|
|
585
479
|
}
|
|
586
|
-
export interface
|
|
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 {
|
|
480
|
+
export interface InfoJoElement {
|
|
612
481
|
typeJO: TypeJo;
|
|
613
482
|
dateJO: string;
|
|
614
483
|
pageJO: null;
|
|
615
484
|
numJO: string;
|
|
616
|
-
urlLegifrance
|
|
617
|
-
referenceNOR
|
|
485
|
+
urlLegifrance?: string;
|
|
486
|
+
referenceNOR?: string;
|
|
618
487
|
}
|
|
619
488
|
export declare enum TypeJo {
|
|
620
489
|
JoLoiDecret = "JO_LOI_DECRET"
|
|
621
490
|
}
|
|
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
491
|
export interface FusionDossier {
|
|
692
492
|
cause: Cause;
|
|
693
493
|
dossierAbsorbantRef: string;
|
|
@@ -738,101 +538,11 @@ export interface DossierDossierParlementaire {
|
|
|
738
538
|
titreDossier: TitreDossier;
|
|
739
539
|
procedureParlementaire: ProcedureParlementaire;
|
|
740
540
|
initiateur: DossierParlementaireInitiateur | null;
|
|
741
|
-
actesLegislatifs:
|
|
541
|
+
actesLegislatifs: ActesLegislatifs;
|
|
742
542
|
fusionDossier: FusionDossier | null;
|
|
743
543
|
indexation?: Indexation;
|
|
744
544
|
PLF?: Plf;
|
|
745
545
|
}
|
|
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
546
|
export interface InfoJoce {
|
|
837
547
|
refJOCE: string;
|
|
838
548
|
dateJOCE: string;
|
|
@@ -841,81 +551,6 @@ export interface TexteEuropeen {
|
|
|
841
551
|
typeTexteEuropeen: string;
|
|
842
552
|
titreTexteEuropeen: string;
|
|
843
553
|
}
|
|
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
554
|
export interface Indexation {
|
|
920
555
|
themes: Themes;
|
|
921
556
|
}
|