@tricoteuses/assemblee 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3,12 +3,12 @@ export interface Acteur {
|
|
|
3
3
|
}
|
|
4
4
|
export interface ActeurActeur {
|
|
5
5
|
"@xmlns"?: string;
|
|
6
|
-
uid:
|
|
7
|
-
etatCivil:
|
|
6
|
+
uid: Uid;
|
|
7
|
+
etatCivil: EtatCivil;
|
|
8
8
|
profession: Profession;
|
|
9
|
-
uri_hatvp:
|
|
9
|
+
uri_hatvp: Nil | null | string;
|
|
10
10
|
adresses: Adresses | null;
|
|
11
|
-
mandats?:
|
|
11
|
+
mandats?: Mandats;
|
|
12
12
|
"@xmlns:xsi"?: string;
|
|
13
13
|
}
|
|
14
14
|
export interface Adresses {
|
|
@@ -20,31 +20,31 @@ export interface Adresses {
|
|
|
20
20
|
"@xmlns:xsi"?: string;
|
|
21
21
|
"@xsi:nil"?: string;
|
|
22
22
|
}
|
|
23
|
-
export interface
|
|
24
|
-
ident:
|
|
25
|
-
infoNaissance:
|
|
26
|
-
dateDeces:
|
|
23
|
+
export interface EtatCivil {
|
|
24
|
+
ident: Ident;
|
|
25
|
+
infoNaissance: InfoNaissance;
|
|
26
|
+
dateDeces: Nil | Date | null;
|
|
27
27
|
}
|
|
28
|
-
export interface
|
|
28
|
+
export interface Nil {
|
|
29
29
|
"@xmlns:xsi": string;
|
|
30
30
|
"@xsi:nil": string;
|
|
31
31
|
}
|
|
32
|
-
export interface
|
|
32
|
+
export interface Ident {
|
|
33
33
|
civ: Civ;
|
|
34
34
|
prenom: string;
|
|
35
35
|
nom: string;
|
|
36
36
|
alpha: string;
|
|
37
|
-
trigramme:
|
|
37
|
+
trigramme: Nil | null | string;
|
|
38
38
|
}
|
|
39
39
|
export declare enum Civ {
|
|
40
40
|
M = "M.",
|
|
41
41
|
Mme = "Mme"
|
|
42
42
|
}
|
|
43
|
-
export interface
|
|
44
|
-
dateNais:
|
|
45
|
-
villeNais:
|
|
46
|
-
depNais:
|
|
47
|
-
paysNais:
|
|
43
|
+
export interface InfoNaissance {
|
|
44
|
+
dateNais: Nil | Date | null;
|
|
45
|
+
villeNais: Nil | null | string;
|
|
46
|
+
depNais: Nil | DepNais | null;
|
|
47
|
+
paysNais: Nil | null | string;
|
|
48
48
|
}
|
|
49
49
|
export declare enum DepNais {
|
|
50
50
|
Ain = "Ain",
|
|
@@ -160,12 +160,12 @@ export declare enum DepNais {
|
|
|
160
160
|
Yonne = "Yonne",
|
|
161
161
|
Yvelines = "Yvelines"
|
|
162
162
|
}
|
|
163
|
-
export interface
|
|
164
|
-
mandat:
|
|
163
|
+
export interface Mandats {
|
|
164
|
+
mandat: Mandat[] | Mandat;
|
|
165
165
|
}
|
|
166
|
-
export interface
|
|
166
|
+
export interface Mandat {
|
|
167
167
|
"@xmlns:xsi"?: string;
|
|
168
|
-
"@xsi:type"
|
|
168
|
+
"@xsi:type"?: MandatXsiType;
|
|
169
169
|
uid: string;
|
|
170
170
|
acteurRef: string;
|
|
171
171
|
legislature: null | string;
|
|
@@ -176,13 +176,14 @@ export interface PurpleMandat {
|
|
|
176
176
|
preseance: null | string;
|
|
177
177
|
nominPrincipale: string;
|
|
178
178
|
infosQualite: InfosQualite;
|
|
179
|
-
organes:
|
|
179
|
+
organes: Organes;
|
|
180
180
|
libelle?: null | string;
|
|
181
181
|
missionSuivanteRef?: null | string;
|
|
182
182
|
missionPrecedenteRef?: null | string;
|
|
183
183
|
suppleants?: Suppleants | null;
|
|
184
184
|
chambre?: null;
|
|
185
|
-
election?:
|
|
185
|
+
election?: Election;
|
|
186
|
+
InfosHorsSIAN?: InfosHorsSian;
|
|
186
187
|
mandature?: Mandature;
|
|
187
188
|
collaborateurs?: null[] | Collaborateurs | null;
|
|
188
189
|
}
|
|
@@ -202,7 +203,7 @@ export interface CollaborateurElement {
|
|
|
202
203
|
dateDebut: null;
|
|
203
204
|
dateFin: null;
|
|
204
205
|
}
|
|
205
|
-
export interface
|
|
206
|
+
export interface Election {
|
|
206
207
|
lieu: ElectionLieu;
|
|
207
208
|
causeMandat: null | string;
|
|
208
209
|
refCirconscription?: null | string;
|
|
@@ -259,7 +260,7 @@ export interface Mandature {
|
|
|
259
260
|
mandatRemplaceRef?: null | string;
|
|
260
261
|
matriculeVote?: null | string;
|
|
261
262
|
}
|
|
262
|
-
export interface
|
|
263
|
+
export interface Organes {
|
|
263
264
|
organeRef: string[] | string;
|
|
264
265
|
}
|
|
265
266
|
export interface Suppleants {
|
|
@@ -305,36 +306,13 @@ export declare enum CodeType {
|
|
|
305
306
|
Presrep = "PRESREP",
|
|
306
307
|
Senat = "SENAT"
|
|
307
308
|
}
|
|
308
|
-
export interface FluffyMandat {
|
|
309
|
-
"@xmlns:xsi": string;
|
|
310
|
-
"@xsi:type": MandatXsiType;
|
|
311
|
-
uid: string;
|
|
312
|
-
acteurRef: string;
|
|
313
|
-
legislature: null | string;
|
|
314
|
-
typeOrgane: CodeType;
|
|
315
|
-
dateDebut: Date;
|
|
316
|
-
datePublication: null;
|
|
317
|
-
dateFin: Date | null;
|
|
318
|
-
preseance: null | string;
|
|
319
|
-
nominPrincipale: string;
|
|
320
|
-
infosQualite: InfosQualite;
|
|
321
|
-
organes: FluffyOrganes;
|
|
322
|
-
suppleants: null;
|
|
323
|
-
chambre: null;
|
|
324
|
-
election: PurpleElection;
|
|
325
|
-
mandature: Mandature;
|
|
326
|
-
collaborateurs?: null[] | Collaborateurs | null;
|
|
327
|
-
}
|
|
328
|
-
export interface FluffyOrganes {
|
|
329
|
-
organeRef: string;
|
|
330
|
-
}
|
|
331
309
|
export interface Profession {
|
|
332
|
-
libelleCourant:
|
|
310
|
+
libelleCourant: Nil | null | string;
|
|
333
311
|
socProcINSEE: SocProcInsee;
|
|
334
312
|
}
|
|
335
313
|
export interface SocProcInsee {
|
|
336
|
-
catSocPro:
|
|
337
|
-
famSocPro:
|
|
314
|
+
catSocPro: Nil | null | string;
|
|
315
|
+
famSocPro: Nil | FamSocProEnum | null;
|
|
338
316
|
}
|
|
339
317
|
export declare enum FamSocProEnum {
|
|
340
318
|
AgriculteursExploitants = "Agriculteurs exploitants",
|
|
@@ -347,7 +325,7 @@ export declare enum FamSocProEnum {
|
|
|
347
325
|
Retraités = "Retrait\u00E9s",
|
|
348
326
|
SansProfessionDéclarée = "Sans profession d\u00E9clar\u00E9e"
|
|
349
327
|
}
|
|
350
|
-
export interface
|
|
328
|
+
export interface Uid {
|
|
351
329
|
"@xmlns:xsi"?: string;
|
|
352
330
|
"@xsi:type": UidXsiType;
|
|
353
331
|
"#text": string;
|
|
@@ -491,30 +469,8 @@ export interface ViMoDe {
|
|
|
491
469
|
dateAgrement: Date | null;
|
|
492
470
|
dateFin: Date | null;
|
|
493
471
|
}
|
|
494
|
-
export interface
|
|
495
|
-
mandat:
|
|
496
|
-
}
|
|
497
|
-
export interface TentacledMandat {
|
|
498
|
-
"@xmlns:xsi"?: string;
|
|
499
|
-
uid: string;
|
|
500
|
-
acteurRef: string;
|
|
501
|
-
legislature: null | string;
|
|
502
|
-
typeOrgane: CodeType;
|
|
503
|
-
dateDebut: Date;
|
|
504
|
-
datePublication: Date | null;
|
|
505
|
-
dateFin: Date | null;
|
|
506
|
-
preseance: null | string;
|
|
507
|
-
nominPrincipale: string;
|
|
508
|
-
infosQualite: InfosQualite;
|
|
509
|
-
organes: PurpleOrganes;
|
|
510
|
-
suppleants?: Suppleants | null;
|
|
511
|
-
chambre?: null;
|
|
512
|
-
election?: PurpleElection;
|
|
513
|
-
mandature?: Mandature;
|
|
514
|
-
collaborateurs?: null[] | Collaborateurs | null;
|
|
515
|
-
libelle?: null | string;
|
|
516
|
-
missionSuivanteRef?: null | string;
|
|
517
|
-
missionPrecedenteRef?: null | string;
|
|
472
|
+
export interface MandatWrapper {
|
|
473
|
+
mandat: Mandat;
|
|
518
474
|
}
|
|
519
475
|
export interface ActeursEtOrganes {
|
|
520
476
|
export: Export;
|
|
@@ -528,82 +484,14 @@ export interface Acteurs {
|
|
|
528
484
|
acteur: ActeurElement[];
|
|
529
485
|
}
|
|
530
486
|
export interface ActeurElement {
|
|
531
|
-
uid:
|
|
532
|
-
etatCivil:
|
|
487
|
+
uid: Uid;
|
|
488
|
+
etatCivil: EtatCivil;
|
|
533
489
|
uri_hatvp?: null | string;
|
|
534
|
-
mandats:
|
|
535
|
-
}
|
|
536
|
-
export interface FluffyEtatCivil {
|
|
537
|
-
ident: FluffyIdent;
|
|
538
|
-
infoNaissance: FluffyInfoNaissance;
|
|
539
|
-
dateDeces: Date | null;
|
|
540
|
-
}
|
|
541
|
-
export interface FluffyIdent {
|
|
542
|
-
civ: Civ;
|
|
543
|
-
prenom: string;
|
|
544
|
-
nom: string;
|
|
545
|
-
alpha: string;
|
|
546
|
-
trigramme: null | string;
|
|
547
|
-
}
|
|
548
|
-
export interface FluffyInfoNaissance {
|
|
549
|
-
dateNais: Date;
|
|
550
|
-
villeNais: null | string;
|
|
551
|
-
depNais: DepNais | null;
|
|
552
|
-
paysNais: null | string;
|
|
553
|
-
}
|
|
554
|
-
export interface FluffyMandats {
|
|
555
|
-
mandat: StickyMandat[] | IndigoMandat;
|
|
556
|
-
}
|
|
557
|
-
export interface StickyMandat {
|
|
558
|
-
"@xsi:type": MandatXsiType;
|
|
559
|
-
uid: string;
|
|
560
|
-
acteurRef: string;
|
|
561
|
-
legislature: null | string;
|
|
562
|
-
typeOrgane: CodeType;
|
|
563
|
-
dateDebut: Date;
|
|
564
|
-
datePublication: Date | null;
|
|
565
|
-
dateFin: Date | null;
|
|
566
|
-
preseance: null | string;
|
|
567
|
-
nominPrincipale: string;
|
|
568
|
-
infosQualite: InfosQualite;
|
|
569
|
-
organes: PurpleOrganes;
|
|
570
|
-
suppleants?: Suppleants | null;
|
|
571
|
-
election?: PurpleElection;
|
|
572
|
-
InfosHorsSIAN?: InfosHorsSian;
|
|
573
|
-
mandature?: Mandature;
|
|
574
|
-
libelle?: null | string;
|
|
575
|
-
missionPrecedenteRef?: null | string;
|
|
576
|
-
missionSuivanteRef?: null | string;
|
|
490
|
+
mandats: Mandats;
|
|
577
491
|
}
|
|
578
492
|
export interface InfosHorsSian {
|
|
579
493
|
HATVP_URI: null;
|
|
580
494
|
}
|
|
581
|
-
export interface IndigoMandat {
|
|
582
|
-
"@xsi:type": MandatXsiType;
|
|
583
|
-
uid: string;
|
|
584
|
-
acteurRef: string;
|
|
585
|
-
legislature: null;
|
|
586
|
-
typeOrgane: CodeType;
|
|
587
|
-
dateDebut: Date;
|
|
588
|
-
datePublication: null;
|
|
589
|
-
dateFin: Date;
|
|
590
|
-
preseance: null | string;
|
|
591
|
-
nominPrincipale: string;
|
|
592
|
-
infosQualite: InfosQualite;
|
|
593
|
-
organes: FluffyOrganes;
|
|
594
|
-
suppleants: null;
|
|
595
|
-
election: FluffyElection;
|
|
596
|
-
InfosHorsSIAN: InfosHorsSian;
|
|
597
|
-
mandature: Mandature;
|
|
598
|
-
}
|
|
599
|
-
export interface FluffyElection {
|
|
600
|
-
lieu: ElectionLieu;
|
|
601
|
-
causeMandat: null;
|
|
602
|
-
}
|
|
603
|
-
export interface FluffyUid {
|
|
604
|
-
"@xsi:type": UidXsiType;
|
|
605
|
-
"#text": string;
|
|
606
|
-
}
|
|
607
495
|
export interface ExportOrganes {
|
|
608
496
|
organe: OrganeElement[];
|
|
609
497
|
}
|
|
@@ -629,8 +517,8 @@ export declare class Convert {
|
|
|
629
517
|
static deportToJson(value: Deport): string;
|
|
630
518
|
static toOrgane(json: string): Organe;
|
|
631
519
|
static organeToJson(value: Organe): string;
|
|
632
|
-
static
|
|
633
|
-
static
|
|
520
|
+
static toMandatWrapper(json: string): MandatWrapper;
|
|
521
|
+
static mandatWrapperToJson(value: MandatWrapper): string;
|
|
634
522
|
static toActeursEtOrganes(json: string): ActeursEtOrganes;
|
|
635
523
|
static acteursEtOrganesToJson(value: ActeursEtOrganes): string;
|
|
636
524
|
}
|