@tricoteuses/assemblee 0.25.0 → 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/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.js +2 -2
- package/lib/raw_types/dossiers_legislatifs.d.ts +79 -723
- package/lib/raw_types/dossiers_legislatifs.js +184 -1681
- package/lib/raw_types/dossiers_legislatifs.mjs +179 -1657
- 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.js +2 -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
|
}
|
|
@@ -114,15 +115,19 @@ export interface CoSignataires {
|
|
|
114
115
|
coSignataire: CoSignataireElement[] | CoSignataireElement;
|
|
115
116
|
}
|
|
116
117
|
export interface CoSignataireElement {
|
|
117
|
-
acteur?:
|
|
118
|
+
acteur?: CoSignataireActeur;
|
|
118
119
|
dateCosignature: string;
|
|
119
120
|
dateRetraitCosignature: null | string;
|
|
120
121
|
edite: string;
|
|
121
122
|
organe?: CoSignataireOrgane;
|
|
122
123
|
}
|
|
123
|
-
export interface
|
|
124
|
+
export interface CoSignataireActeur {
|
|
124
125
|
acteurRef: string;
|
|
125
126
|
}
|
|
127
|
+
export interface Initiateurs {
|
|
128
|
+
acteurRef?: string;
|
|
129
|
+
organeRef?: string;
|
|
130
|
+
}
|
|
126
131
|
export interface CoSignataireOrgane {
|
|
127
132
|
organeRef: string;
|
|
128
133
|
etApparentes: string;
|
|
@@ -249,7 +254,7 @@ export interface DossierParlementaireDossierParlementaire {
|
|
|
249
254
|
titreDossier: TitreDossier;
|
|
250
255
|
procedureParlementaire: ProcedureParlementaire;
|
|
251
256
|
initiateur: DossierParlementaireInitiateur | null;
|
|
252
|
-
actesLegislatifs:
|
|
257
|
+
actesLegislatifs: ActesLegislatifs | null;
|
|
253
258
|
fusionDossier: FusionDossier | null;
|
|
254
259
|
PLF?: Plf;
|
|
255
260
|
}
|
|
@@ -268,7 +273,7 @@ export interface EtudePlf {
|
|
|
268
273
|
uid: string;
|
|
269
274
|
organeRef: string;
|
|
270
275
|
texteAssocie?: string;
|
|
271
|
-
rapporteur?:
|
|
276
|
+
rapporteur?: Rapporteur[] | Rapporteur;
|
|
272
277
|
missionMinefi?: MissionMinefiElement;
|
|
273
278
|
ordreDIQS: string;
|
|
274
279
|
ordreCommission: string;
|
|
@@ -295,222 +300,101 @@ export declare enum TypeMission {
|
|
|
295
300
|
MissionSecondaire = "mission secondaire",
|
|
296
301
|
PartieDeMission = "partie de mission"
|
|
297
302
|
}
|
|
298
|
-
export interface
|
|
299
|
-
|
|
300
|
-
typeRapporteur: Qualite;
|
|
301
|
-
}
|
|
302
|
-
export interface PurpleActesLegislatifs {
|
|
303
|
-
acteLegislatif: PurpleActeLegislatif[] | AmbitiousActeLegislatif;
|
|
303
|
+
export interface ActesLegislatifs {
|
|
304
|
+
acteLegislatif: ActeLegislatif[] | ActeLegislatif;
|
|
304
305
|
}
|
|
305
|
-
export interface
|
|
306
|
-
"@xsi:type":
|
|
306
|
+
export interface ActeLegislatif {
|
|
307
|
+
"@xsi:type": ActeLegislatifXsiType;
|
|
307
308
|
uid: string;
|
|
308
|
-
codeActe:
|
|
309
|
+
codeActe: CodeActe;
|
|
309
310
|
libelleActe: LibelleActe;
|
|
310
311
|
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
312
|
dateActe: Date | null;
|
|
343
|
-
actesLegislatifs:
|
|
313
|
+
actesLegislatifs: ActesLegislatifs | null;
|
|
344
314
|
texteAssocie?: string;
|
|
345
315
|
contributionInternaute?: ContributionInternaute;
|
|
346
316
|
provenance?: string;
|
|
317
|
+
depotInitialLectureDefinitiveRef?: null | string;
|
|
347
318
|
initiateur?: ActeLegislatifInitiateur;
|
|
348
|
-
statutConclusion?:
|
|
349
|
-
reunionRef?: null;
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
319
|
+
statutConclusion?: TypeDeclaration;
|
|
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;
|
|
328
|
+
casSaisine?: TypeDeclaration;
|
|
329
|
+
decision?: TypeDeclaration;
|
|
330
|
+
formuleDecision?: string;
|
|
331
|
+
initiateurs?: Initiateurs | null;
|
|
353
332
|
motif?: Motif;
|
|
354
333
|
urlConclusion?: string;
|
|
355
334
|
numDecision?: string;
|
|
356
335
|
anneeDecision?: string;
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
336
|
+
typeDeclaration?: TypeDeclaration;
|
|
337
|
+
typeMotionCensure?: TypeDeclaration;
|
|
338
|
+
auteurs?: ActeLegislatifAuteurs | null;
|
|
339
|
+
typeMotion?: TypeDeclaration;
|
|
340
|
+
auteurMotion?: string;
|
|
361
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;
|
|
362
353
|
}
|
|
363
|
-
export
|
|
364
|
-
|
|
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?: CasSaisine;
|
|
377
|
-
voteRefs?: PurpleVoteRefs | null;
|
|
378
|
-
textesAssocies?: PurpleTextesAssocies;
|
|
379
|
-
rapporteurs?: StickyRapporteurs;
|
|
380
|
-
reunion?: null;
|
|
381
|
-
texteAssocie?: string;
|
|
382
|
-
texteAdopte?: null | string;
|
|
383
|
-
decision?: CasSaisine;
|
|
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?: CasSaisine;
|
|
414
|
-
voteRefs?: null;
|
|
415
|
-
}
|
|
416
|
-
export declare enum TentacledXsiType {
|
|
354
|
+
export declare enum ActeLegislatifXsiType {
|
|
355
|
+
AdoptionEuropeType = "Adoption_Europe_Type",
|
|
356
|
+
ConclusionEtapeCcType = "ConclusionEtapeCC_Type",
|
|
417
357
|
CreationOrganeTemporaireType = "CreationOrganeTemporaire_Type",
|
|
358
|
+
DecisionMotionCensureType = "DecisionMotionCensure_Type",
|
|
359
|
+
DecisionRecevabiliteBureauType = "DecisionRecevabiliteBureau_Type",
|
|
418
360
|
DecisionType = "Decision_Type",
|
|
419
361
|
DeclarationGouvernementType = "DeclarationGouvernement_Type",
|
|
362
|
+
DepotAccordInternationalType = "DepotAccordInternational_Type",
|
|
363
|
+
DepotAvisConseilEtatType = "DepotAvisConseilEtat_Type",
|
|
364
|
+
DepotInitiativeNavetteType = "DepotInitiativeNavette_Type",
|
|
420
365
|
DepotInitiativeType = "DepotInitiative_Type",
|
|
366
|
+
DepotLettreRectificativeType = "DepotLettreRectificative_Type",
|
|
367
|
+
DepotMotionCensureType = "DepotMotionCensure_Type",
|
|
368
|
+
DepotMotionReferendaireType = "DepotMotionReferendaire_Type",
|
|
421
369
|
DepotRapportType = "DepotRapport_Type",
|
|
422
370
|
DiscussionCommissionType = "DiscussionCommission_Type",
|
|
371
|
+
DiscussionSeancePubliqueType = "DiscussionSeancePublique_Type",
|
|
423
372
|
EtapeType = "Etape_Type",
|
|
373
|
+
EtudeImpactType = "EtudeImpact_Type",
|
|
374
|
+
MotionProcedureType = "MotionProcedure_Type",
|
|
424
375
|
NominRapporteursType = "NominRapporteurs_Type",
|
|
376
|
+
ProcedureAccelereType = "ProcedureAccelere_Type",
|
|
377
|
+
PromulgationType = "Promulgation_Type",
|
|
425
378
|
RenvoiPrealableType = "RenvoiPrealable_Type",
|
|
379
|
+
RenvoiCmpType = "RenvoiCMP_Type",
|
|
380
|
+
RetraitInitiativeType = "RetraitInitiative_Type",
|
|
426
381
|
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"
|
|
382
|
+
SaisieComFondType = "SaisieComFond_Type",
|
|
383
|
+
SaisineConseilConstitType = "SaisineConseilConstit_Type"
|
|
500
384
|
}
|
|
501
385
|
export interface LibelleActe {
|
|
502
386
|
nomCanonique: string;
|
|
503
387
|
libelleCourt?: string;
|
|
504
388
|
}
|
|
505
|
-
export interface
|
|
506
|
-
rapporteur: PurpleRapporteur[] | PurpleRapporteur;
|
|
507
|
-
}
|
|
508
|
-
export interface PurpleRapporteur {
|
|
389
|
+
export interface Rapporteur {
|
|
509
390
|
acteurRef: string;
|
|
510
391
|
typeRapporteur: Qualite;
|
|
511
392
|
etudePLFRef?: string;
|
|
512
393
|
}
|
|
513
|
-
export interface
|
|
394
|
+
export interface Rapporteurs {
|
|
395
|
+
rapporteur: Rapporteur[] | Rapporteur;
|
|
396
|
+
}
|
|
397
|
+
export interface TypeDeclaration {
|
|
514
398
|
fam_code: FamCode;
|
|
515
399
|
libelle?: string;
|
|
516
400
|
}
|
|
@@ -556,99 +440,10 @@ export declare enum FamCode {
|
|
|
556
440
|
Tsortmot01 = "TSORTMOT01",
|
|
557
441
|
Tsortmot02 = "TSORTMOT02"
|
|
558
442
|
}
|
|
559
|
-
export interface
|
|
560
|
-
|
|
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;
|
|
443
|
+
export interface Rapporteurs {
|
|
444
|
+
rapporteur: Rapporteur[] | Rapporteur;
|
|
597
445
|
}
|
|
598
|
-
export interface
|
|
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 {
|
|
446
|
+
export interface TextesAssocies {
|
|
652
447
|
texteAssocie: TexteAssocieElement[] | TexteAssocieElement;
|
|
653
448
|
}
|
|
654
449
|
export interface TexteAssocieElement {
|
|
@@ -659,122 +454,11 @@ export declare enum TypeTexte {
|
|
|
659
454
|
Bta = "BTA",
|
|
660
455
|
Tap = "TAP"
|
|
661
456
|
}
|
|
662
|
-
export interface
|
|
457
|
+
export interface VoteRefs {
|
|
663
458
|
voteRef: string[] | string;
|
|
664
459
|
}
|
|
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?: CasSaisine;
|
|
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
460
|
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"
|
|
461
|
+
acteurRef: string[] | string;
|
|
778
462
|
}
|
|
779
463
|
export interface ContributionInternaute {
|
|
780
464
|
dateFermeture: null | string;
|
|
@@ -793,155 +477,17 @@ export interface ActeurElement {
|
|
|
793
477
|
export declare enum Motif {
|
|
794
478
|
EnApplicationDeLArticle612DeLaConstitution = "En application de l'article 61\u00A72 de la Constitution"
|
|
795
479
|
}
|
|
796
|
-
export interface
|
|
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?: CasSaisine;
|
|
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 {
|
|
480
|
+
export interface InfoJoElement {
|
|
830
481
|
typeJO: TypeJo;
|
|
831
482
|
dateJO: string;
|
|
832
483
|
pageJO: null;
|
|
833
484
|
numJO: string;
|
|
834
|
-
urlLegifrance
|
|
835
|
-
referenceNOR
|
|
485
|
+
urlLegifrance?: string;
|
|
486
|
+
referenceNOR?: string;
|
|
836
487
|
}
|
|
837
488
|
export declare enum TypeJo {
|
|
838
489
|
JoLoiDecret = "JO_LOI_DECRET"
|
|
839
490
|
}
|
|
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?: CasSaisine;
|
|
882
|
-
auteurs?: ActeLegislatifAuteurs;
|
|
883
|
-
dateRetrait?: null;
|
|
884
|
-
typeDeclaration?: CasSaisine;
|
|
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?: CasSaisine;
|
|
900
|
-
auteurMotion?: string;
|
|
901
|
-
dateRetrait?: null;
|
|
902
|
-
voteRefs?: FluffyVoteRefs | null;
|
|
903
|
-
statutConclusion?: CasSaisine;
|
|
904
|
-
textesAssocies?: PurpleTextesAssocies;
|
|
905
|
-
decision?: CasSaisine;
|
|
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: HilariousCodeActe;
|
|
932
|
-
libelleActe: LibelleActe;
|
|
933
|
-
organeRef: string;
|
|
934
|
-
dateActe: Date | null;
|
|
935
|
-
actesLegislatifs: IndigoActesLegislatifs | null;
|
|
936
|
-
statutConclusion?: CasSaisine;
|
|
937
|
-
reunionRef?: null | string;
|
|
938
|
-
voteRefs?: null;
|
|
939
|
-
textesAssocies?: FluffyTextesAssocies;
|
|
940
|
-
odjRef?: string;
|
|
941
|
-
}
|
|
942
|
-
export interface FluffyTextesAssocies {
|
|
943
|
-
texteAssocie: TexteAssocieElement;
|
|
944
|
-
}
|
|
945
491
|
export interface FusionDossier {
|
|
946
492
|
cause: Cause;
|
|
947
493
|
dossierAbsorbantRef: string;
|
|
@@ -992,121 +538,11 @@ export interface DossierDossierParlementaire {
|
|
|
992
538
|
titreDossier: TitreDossier;
|
|
993
539
|
procedureParlementaire: ProcedureParlementaire;
|
|
994
540
|
initiateur: DossierParlementaireInitiateur | null;
|
|
995
|
-
actesLegislatifs:
|
|
541
|
+
actesLegislatifs: ActesLegislatifs;
|
|
996
542
|
fusionDossier: FusionDossier | null;
|
|
997
543
|
indexation?: Indexation;
|
|
998
544
|
PLF?: Plf;
|
|
999
545
|
}
|
|
1000
|
-
export interface CunningActesLegislatifs {
|
|
1001
|
-
acteLegislatif: MischievousActeLegislatif[] | ActeLegislatif4;
|
|
1002
|
-
}
|
|
1003
|
-
export interface MischievousActeLegislatif {
|
|
1004
|
-
"@xsi:type": PurpleXsiType;
|
|
1005
|
-
uid: string;
|
|
1006
|
-
codeActe: IndecentCodeActe;
|
|
1007
|
-
libelleActe: LibelleActe;
|
|
1008
|
-
organeRef?: string;
|
|
1009
|
-
dateActe: null;
|
|
1010
|
-
actesLegislatifs: MagentaActesLegislatifs;
|
|
1011
|
-
}
|
|
1012
|
-
export interface MagentaActesLegislatifs {
|
|
1013
|
-
acteLegislatif: BraggadociousActeLegislatif[] | ActeLegislatif3;
|
|
1014
|
-
}
|
|
1015
|
-
export interface BraggadociousActeLegislatif {
|
|
1016
|
-
"@xsi:type": PurpleXsiType;
|
|
1017
|
-
uid: string;
|
|
1018
|
-
codeActe: StickyCodeActe;
|
|
1019
|
-
libelleActe: LibelleActe;
|
|
1020
|
-
organeRef?: string;
|
|
1021
|
-
dateActe: Date | null;
|
|
1022
|
-
actesLegislatifs: FriskyActesLegislatifs | null;
|
|
1023
|
-
texteAssocie?: string;
|
|
1024
|
-
provenance?: string;
|
|
1025
|
-
contributionInternaute?: ContributionInternaute;
|
|
1026
|
-
initiateur?: ActeLegislatifInitiateur;
|
|
1027
|
-
statutConclusion?: CasSaisine;
|
|
1028
|
-
reunionRef?: null;
|
|
1029
|
-
voteRefs?: null;
|
|
1030
|
-
casSaisine?: CasSaisine;
|
|
1031
|
-
initiateurs?: InitiateursClass | null;
|
|
1032
|
-
motif?: Motif;
|
|
1033
|
-
urlConclusion?: string;
|
|
1034
|
-
numDecision?: string;
|
|
1035
|
-
anneeDecision?: string;
|
|
1036
|
-
typeDeclaration?: CasSaisine;
|
|
1037
|
-
typeMotionCensure?: CasSaisine;
|
|
1038
|
-
auteurs?: ActeLegislatifAuteurs;
|
|
1039
|
-
dateRetrait?: null;
|
|
1040
|
-
texteEuropeen?: TexteEuropeen;
|
|
1041
|
-
infoJOCE?: InfoJoce;
|
|
1042
|
-
statutAdoption?: CasSaisine;
|
|
1043
|
-
}
|
|
1044
|
-
export interface FriskyActesLegislatifs {
|
|
1045
|
-
acteLegislatif: ActeLegislatif1[] | ActeLegislatif2;
|
|
1046
|
-
}
|
|
1047
|
-
export interface ActeLegislatif1 {
|
|
1048
|
-
"@xsi:type": FluffyXsiType;
|
|
1049
|
-
uid: string;
|
|
1050
|
-
codeActe: FluffyCodeActe;
|
|
1051
|
-
libelleActe: LibelleActe;
|
|
1052
|
-
organeRef: string;
|
|
1053
|
-
dateActe: Date | null;
|
|
1054
|
-
actesLegislatifs: MischievousActesLegislatifs | null;
|
|
1055
|
-
reunionRef?: null | string;
|
|
1056
|
-
odjRef?: string;
|
|
1057
|
-
statutConclusion?: CasSaisine;
|
|
1058
|
-
voteRefs?: PurpleVoteRefs | null;
|
|
1059
|
-
textesAssocies?: PurpleTextesAssocies;
|
|
1060
|
-
typeMotion?: CasSaisine;
|
|
1061
|
-
auteurMotion?: string;
|
|
1062
|
-
dateRetrait?: null;
|
|
1063
|
-
rapporteurs?: StickyRapporteurs;
|
|
1064
|
-
reunion?: null;
|
|
1065
|
-
texteAssocie?: string;
|
|
1066
|
-
texteAdopte?: null;
|
|
1067
|
-
auteurs?: InitiateursClass | null;
|
|
1068
|
-
decision?: CasSaisine;
|
|
1069
|
-
odSeancejRef?: null;
|
|
1070
|
-
}
|
|
1071
|
-
export interface MischievousActesLegislatifs {
|
|
1072
|
-
acteLegislatif: ActesLegislatifsActeLegislatifClass[];
|
|
1073
|
-
}
|
|
1074
|
-
export interface ActeLegislatif2 {
|
|
1075
|
-
"@xsi:type": FluffyXsiType;
|
|
1076
|
-
uid: string;
|
|
1077
|
-
codeActe: AmbitiousCodeActe;
|
|
1078
|
-
libelleActe: LibelleActe;
|
|
1079
|
-
organeRef: string;
|
|
1080
|
-
dateActe: Date | null;
|
|
1081
|
-
actesLegislatifs: IndigoActesLegislatifs | null;
|
|
1082
|
-
statutConclusion?: CasSaisine;
|
|
1083
|
-
reunionRef?: null | string;
|
|
1084
|
-
voteRefs?: FluffyVoteRefs | null;
|
|
1085
|
-
textesAssocies?: FluffyTextesAssocies;
|
|
1086
|
-
odjRef?: string;
|
|
1087
|
-
decision?: CasSaisine;
|
|
1088
|
-
odSeancejRef?: null;
|
|
1089
|
-
}
|
|
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
546
|
export interface InfoJoce {
|
|
1111
547
|
refJOCE: string;
|
|
1112
548
|
dateJOCE: string;
|
|
@@ -1115,86 +551,6 @@ export interface TexteEuropeen {
|
|
|
1115
551
|
typeTexteEuropeen: string;
|
|
1116
552
|
titreTexteEuropeen: string;
|
|
1117
553
|
}
|
|
1118
|
-
export interface ActeLegislatif3 {
|
|
1119
|
-
"@xsi:type": StickyXsiType;
|
|
1120
|
-
uid: string;
|
|
1121
|
-
codeActe: CunningCodeActe;
|
|
1122
|
-
libelleActe: LibelleActe;
|
|
1123
|
-
organeRef: string;
|
|
1124
|
-
dateActe: Date;
|
|
1125
|
-
actesLegislatifs: null;
|
|
1126
|
-
texteLoiRef?: string;
|
|
1127
|
-
infoJO?: InfoJoElement;
|
|
1128
|
-
urlLegifrance?: string;
|
|
1129
|
-
referenceNOR?: string;
|
|
1130
|
-
codeLoi?: string;
|
|
1131
|
-
titreLoi?: string;
|
|
1132
|
-
infoJORect?: InfoJoElement[] | InfoJoElement;
|
|
1133
|
-
texteAssocie?: string;
|
|
1134
|
-
texteAdopte?: null;
|
|
1135
|
-
}
|
|
1136
|
-
export declare enum CunningCodeActe {
|
|
1137
|
-
An20Rapport = "AN20-RAPPORT",
|
|
1138
|
-
AnAppliRapport = "AN-APPLI-RAPPORT",
|
|
1139
|
-
PromPub = "PROM-PUB"
|
|
1140
|
-
}
|
|
1141
|
-
export interface InfoJoElement {
|
|
1142
|
-
typeJO: TypeJo;
|
|
1143
|
-
dateJO: string;
|
|
1144
|
-
pageJO: null;
|
|
1145
|
-
numJO: string;
|
|
1146
|
-
}
|
|
1147
|
-
export interface ActeLegislatif4 {
|
|
1148
|
-
"@xsi:type": PurpleXsiType;
|
|
1149
|
-
uid: string;
|
|
1150
|
-
codeActe: IndecentCodeActe;
|
|
1151
|
-
libelleActe: LibelleActe;
|
|
1152
|
-
organeRef: string;
|
|
1153
|
-
dateActe: null;
|
|
1154
|
-
actesLegislatifs: BraggadociousActesLegislatifs;
|
|
1155
|
-
}
|
|
1156
|
-
export interface BraggadociousActesLegislatifs {
|
|
1157
|
-
acteLegislatif: ActeLegislatif5[] | IndigoActeLegislatif;
|
|
1158
|
-
}
|
|
1159
|
-
export interface ActeLegislatif5 {
|
|
1160
|
-
"@xsi:type": PurpleXsiType;
|
|
1161
|
-
uid: string;
|
|
1162
|
-
codeActe: StickyCodeActe;
|
|
1163
|
-
libelleActe: LibelleActe;
|
|
1164
|
-
organeRef: string;
|
|
1165
|
-
dateActe: Date | null;
|
|
1166
|
-
actesLegislatifs: ActesLegislatifs1 | null;
|
|
1167
|
-
texteAssocie?: string;
|
|
1168
|
-
contributionInternaute?: ContributionInternaute;
|
|
1169
|
-
decision?: CasSaisine;
|
|
1170
|
-
formuleDecision?: string;
|
|
1171
|
-
typeDeclaration?: CasSaisine;
|
|
1172
|
-
typeMotionCensure?: CasSaisine;
|
|
1173
|
-
auteurs?: ActeLegislatifAuteurs;
|
|
1174
|
-
dateRetrait?: null;
|
|
1175
|
-
}
|
|
1176
|
-
export interface ActesLegislatifs1 {
|
|
1177
|
-
acteLegislatif: ActeLegislatif6[] | ActeLegislatif2;
|
|
1178
|
-
}
|
|
1179
|
-
export interface ActeLegislatif6 {
|
|
1180
|
-
"@xsi:type": FluffyXsiType;
|
|
1181
|
-
uid: string;
|
|
1182
|
-
codeActe: HilariousCodeActe;
|
|
1183
|
-
libelleActe: LibelleActe;
|
|
1184
|
-
organeRef: string;
|
|
1185
|
-
dateActe: Date | null;
|
|
1186
|
-
actesLegislatifs: IndigoActesLegislatifs | null;
|
|
1187
|
-
reunionRef?: null | string;
|
|
1188
|
-
odjRef?: string;
|
|
1189
|
-
statutConclusion?: CasSaisine;
|
|
1190
|
-
voteRefs?: FluffyVoteRefs | null;
|
|
1191
|
-
textesAssocies?: FluffyTextesAssocies;
|
|
1192
|
-
typeMotion?: CasSaisine;
|
|
1193
|
-
auteurMotion?: string;
|
|
1194
|
-
dateRetrait?: null;
|
|
1195
|
-
decision?: CasSaisine;
|
|
1196
|
-
odSeancejRef?: null;
|
|
1197
|
-
}
|
|
1198
554
|
export interface Indexation {
|
|
1199
555
|
themes: Themes;
|
|
1200
556
|
}
|