@tricoteuses/assemblee 1.0.6 → 1.0.7
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.
|
@@ -12,15 +12,15 @@ export interface DocumentDocument {
|
|
|
12
12
|
denominationStructurelle: DocumentDenominationStructurelle;
|
|
13
13
|
provenance?: Provenance;
|
|
14
14
|
titres: Titres;
|
|
15
|
-
divisions:
|
|
15
|
+
divisions: Divisions | null;
|
|
16
16
|
dossierRef: string;
|
|
17
17
|
redacteur: null;
|
|
18
18
|
classification: Classification;
|
|
19
|
-
auteurs:
|
|
19
|
+
auteurs: Auteurs;
|
|
20
20
|
correction: Correction | null;
|
|
21
21
|
notice: Notice;
|
|
22
22
|
indexation: Indexation | null;
|
|
23
|
-
imprimerie:
|
|
23
|
+
imprimerie: Imprimerie | null;
|
|
24
24
|
coSignataires?: CoSignataires | null;
|
|
25
25
|
depotAmendements?: DepotAmendements | null;
|
|
26
26
|
organesReferents?: OrganesReferents | null;
|
|
@@ -33,7 +33,7 @@ export declare enum DocumentXsiType {
|
|
|
33
33
|
RapportParlementaireType = "rapportParlementaire_Type",
|
|
34
34
|
TexteLoiType = "texteLoi_Type"
|
|
35
35
|
}
|
|
36
|
-
export interface
|
|
36
|
+
export interface Auteurs {
|
|
37
37
|
auteur: AuteurElement[] | AuteurElement;
|
|
38
38
|
}
|
|
39
39
|
export interface AuteurElement {
|
|
@@ -183,60 +183,34 @@ export interface AmendementsSeance {
|
|
|
183
183
|
amendable: string;
|
|
184
184
|
dateLimiteDepot: null;
|
|
185
185
|
}
|
|
186
|
-
export interface
|
|
187
|
-
division:
|
|
186
|
+
export interface Divisions {
|
|
187
|
+
division: Division[] | Division;
|
|
188
188
|
}
|
|
189
|
-
export interface
|
|
189
|
+
export interface Division {
|
|
190
190
|
"@xsi:type": DocumentXsiType;
|
|
191
191
|
uid: string;
|
|
192
192
|
legislature: null | string;
|
|
193
193
|
cycleDeVie: CycleDeVie;
|
|
194
194
|
denominationStructurelle: string;
|
|
195
195
|
titres: Titres;
|
|
196
|
-
divisions:
|
|
196
|
+
divisions: Divisions | null;
|
|
197
197
|
dossierRef: string;
|
|
198
198
|
redacteur: null;
|
|
199
199
|
classification: Classification;
|
|
200
|
-
auteurs:
|
|
200
|
+
auteurs: Auteurs;
|
|
201
201
|
organesReferents?: OrganesReferents | null;
|
|
202
202
|
correction: Correction | null;
|
|
203
203
|
notice: Notice;
|
|
204
204
|
indexation: Indexation | null;
|
|
205
|
-
imprimerie:
|
|
205
|
+
imprimerie: Imprimerie | null;
|
|
206
206
|
coSignataires?: null;
|
|
207
207
|
depotAmendements?: null;
|
|
208
208
|
rapportPublie?: string;
|
|
209
209
|
}
|
|
210
|
-
export interface
|
|
211
|
-
auteur: AuteurElement[];
|
|
212
|
-
}
|
|
213
|
-
export interface FluffyDivisions {
|
|
214
|
-
division: FluffyDivision[];
|
|
215
|
-
}
|
|
216
|
-
export interface FluffyDivision {
|
|
217
|
-
"@xsi:type": DocumentXsiType;
|
|
218
|
-
uid: string;
|
|
219
|
-
legislature: string;
|
|
220
|
-
cycleDeVie: CycleDeVie;
|
|
221
|
-
denominationStructurelle: string;
|
|
222
|
-
titres: Titres;
|
|
223
|
-
divisions: null;
|
|
224
|
-
dossierRef: string;
|
|
225
|
-
redacteur: null;
|
|
226
|
-
classification: Classification;
|
|
227
|
-
auteurs: PurpleAuteurs;
|
|
228
|
-
correction: null;
|
|
229
|
-
notice: Notice;
|
|
230
|
-
indexation: Indexation | null;
|
|
231
|
-
imprimerie: PurpleImprimerie | null;
|
|
232
|
-
coSignataires?: null;
|
|
233
|
-
depotAmendements?: null;
|
|
234
|
-
rapportPublie?: string;
|
|
235
|
-
}
|
|
236
|
-
export interface PurpleImprimerie {
|
|
237
|
-
ISSN?: null;
|
|
238
|
-
ISBN?: null | string;
|
|
210
|
+
export interface Imprimerie {
|
|
239
211
|
DIAN?: null | string;
|
|
212
|
+
ISBN?: null | string;
|
|
213
|
+
ISSN?: null;
|
|
240
214
|
nbPage?: null | string;
|
|
241
215
|
prix: null | string;
|
|
242
216
|
}
|
|
@@ -543,92 +517,19 @@ export interface DocumentElement {
|
|
|
543
517
|
denominationStructurelle: DocumentDenominationStructurelle;
|
|
544
518
|
provenance?: Provenance;
|
|
545
519
|
titres: Titres;
|
|
546
|
-
divisions:
|
|
520
|
+
divisions: Divisions | null;
|
|
547
521
|
dossierRef: string;
|
|
548
522
|
redacteur: null;
|
|
549
523
|
classification: Classification;
|
|
550
|
-
auteurs:
|
|
524
|
+
auteurs: Auteurs;
|
|
551
525
|
correction: Correction | null;
|
|
552
526
|
notice: Notice;
|
|
553
527
|
indexation: Indexation | null;
|
|
554
|
-
imprimerie:
|
|
528
|
+
imprimerie: Imprimerie | null;
|
|
555
529
|
coSignataires?: CoSignataires | null;
|
|
556
530
|
depotAmendements?: DepotAmendements | null;
|
|
557
531
|
rapportPublie?: string;
|
|
558
532
|
}
|
|
559
|
-
export interface TentacledDivisions {
|
|
560
|
-
division: TentacledDivision[] | IndigoDivision;
|
|
561
|
-
}
|
|
562
|
-
export interface TentacledDivision {
|
|
563
|
-
"@xsi:type": DocumentXsiType;
|
|
564
|
-
uid: string;
|
|
565
|
-
legislature: null | string;
|
|
566
|
-
cycleDeVie: CycleDeVie;
|
|
567
|
-
denominationStructurelle: string;
|
|
568
|
-
titres: Titres;
|
|
569
|
-
divisions: StickyDivisions | null;
|
|
570
|
-
dossierRef: string;
|
|
571
|
-
redacteur: null;
|
|
572
|
-
classification: Classification;
|
|
573
|
-
auteurs: FluffyAuteurs;
|
|
574
|
-
correction: Correction | null;
|
|
575
|
-
notice: Notice;
|
|
576
|
-
indexation: Indexation | null;
|
|
577
|
-
imprimerie: FluffyImprimerie | null;
|
|
578
|
-
coSignataires?: null;
|
|
579
|
-
depotAmendements?: null;
|
|
580
|
-
rapportPublie?: string;
|
|
581
|
-
}
|
|
582
|
-
export interface FluffyAuteurs {
|
|
583
|
-
auteur: AuteurElement[] | PurpleAuteur;
|
|
584
|
-
}
|
|
585
|
-
export interface PurpleAuteur {
|
|
586
|
-
organe: AuteurOrgane;
|
|
587
|
-
}
|
|
588
|
-
export interface StickyDivisions {
|
|
589
|
-
division: StickyDivision[];
|
|
590
|
-
}
|
|
591
|
-
export interface StickyDivision {
|
|
592
|
-
"@xsi:type": DocumentXsiType;
|
|
593
|
-
uid: string;
|
|
594
|
-
legislature: string;
|
|
595
|
-
cycleDeVie: CycleDeVie;
|
|
596
|
-
denominationStructurelle: string;
|
|
597
|
-
titres: Titres;
|
|
598
|
-
divisions: null;
|
|
599
|
-
dossierRef: string;
|
|
600
|
-
redacteur: null;
|
|
601
|
-
classification: Classification;
|
|
602
|
-
auteurs: PurpleAuteurs;
|
|
603
|
-
correction: null;
|
|
604
|
-
notice: Notice;
|
|
605
|
-
indexation: Indexation | null;
|
|
606
|
-
imprimerie: FluffyImprimerie | null;
|
|
607
|
-
rapportPublie?: string;
|
|
608
|
-
}
|
|
609
|
-
export interface FluffyImprimerie {
|
|
610
|
-
prix: string;
|
|
611
|
-
}
|
|
612
|
-
export interface IndigoDivision {
|
|
613
|
-
"@xsi:type": DocumentXsiType;
|
|
614
|
-
uid: string;
|
|
615
|
-
legislature: null | string;
|
|
616
|
-
cycleDeVie: CycleDeVie;
|
|
617
|
-
denominationStructurelle: string;
|
|
618
|
-
titres: Titres;
|
|
619
|
-
divisions: null;
|
|
620
|
-
dossierRef: string;
|
|
621
|
-
redacteur: null;
|
|
622
|
-
classification: Classification;
|
|
623
|
-
auteurs: PurpleAuteurs;
|
|
624
|
-
correction: Correction | null;
|
|
625
|
-
notice: Notice;
|
|
626
|
-
indexation: Indexation | null;
|
|
627
|
-
imprimerie: FluffyImprimerie | null;
|
|
628
|
-
coSignataires?: null;
|
|
629
|
-
depotAmendements?: null;
|
|
630
|
-
rapportPublie?: string;
|
|
631
|
-
}
|
|
632
533
|
export declare class Convert {
|
|
633
534
|
static toDocument(json: string): Document;
|
|
634
535
|
static documentToJson(value: Document): string;
|