@tricoteuses/senat 2.22.11 → 2.22.13

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.
Files changed (138) hide show
  1. package/lib/config.d.ts +21 -0
  2. package/lib/config.js +27 -0
  3. package/lib/databases.d.ts +2 -0
  4. package/lib/databases.js +26 -0
  5. package/lib/datasets.d.ts +34 -0
  6. package/lib/datasets.js +233 -0
  7. package/lib/git.d.ts +26 -0
  8. package/lib/git.js +167 -0
  9. package/lib/index.d.ts +13 -0
  10. package/lib/index.js +1 -0
  11. package/lib/loaders.d.ts +58 -0
  12. package/lib/loaders.js +286 -0
  13. package/lib/model/agenda.d.ts +6 -0
  14. package/lib/model/agenda.js +148 -0
  15. package/lib/model/ameli.d.ts +51 -0
  16. package/lib/model/ameli.js +147 -0
  17. package/lib/model/commission.d.ts +18 -0
  18. package/lib/model/commission.js +269 -0
  19. package/lib/model/debats.d.ts +67 -0
  20. package/lib/model/debats.js +95 -0
  21. package/lib/model/documents.d.ts +12 -0
  22. package/lib/model/documents.js +138 -0
  23. package/lib/model/dosleg.d.ts +7 -0
  24. package/lib/model/dosleg.js +326 -0
  25. package/lib/model/index.d.ts +7 -0
  26. package/lib/model/index.js +7 -0
  27. package/lib/model/questions.d.ts +45 -0
  28. package/lib/model/questions.js +89 -0
  29. package/lib/model/scrutins.d.ts +13 -0
  30. package/lib/model/scrutins.js +114 -0
  31. package/lib/model/seance.d.ts +3 -0
  32. package/lib/model/seance.js +267 -0
  33. package/lib/model/sens.d.ts +146 -0
  34. package/lib/model/sens.js +454 -0
  35. package/lib/model/texte.d.ts +7 -0
  36. package/lib/model/texte.js +228 -0
  37. package/lib/model/util.d.ts +9 -0
  38. package/lib/model/util.js +38 -0
  39. package/lib/parsers/texte.d.ts +7 -0
  40. package/lib/parsers/texte.js +228 -0
  41. package/lib/raw_types/ameli.d.ts +914 -0
  42. package/lib/raw_types/ameli.js +5 -0
  43. package/lib/raw_types/debats.d.ts +207 -0
  44. package/lib/raw_types/debats.js +5 -0
  45. package/lib/raw_types/dosleg.d.ts +1619 -0
  46. package/lib/raw_types/dosleg.js +5 -0
  47. package/lib/raw_types/questions.d.ts +423 -0
  48. package/lib/raw_types/questions.js +5 -0
  49. package/lib/raw_types/senat.d.ts +11372 -0
  50. package/lib/raw_types/senat.js +5 -0
  51. package/lib/raw_types/sens.d.ts +8248 -0
  52. package/lib/raw_types/sens.js +5 -0
  53. package/lib/raw_types_schemats/ameli.d.ts +539 -0
  54. package/lib/raw_types_schemats/ameli.js +2 -0
  55. package/lib/raw_types_schemats/debats.d.ts +127 -0
  56. package/lib/raw_types_schemats/debats.js +2 -0
  57. package/lib/raw_types_schemats/dosleg.d.ts +977 -0
  58. package/lib/raw_types_schemats/dosleg.js +2 -0
  59. package/lib/raw_types_schemats/questions.d.ts +237 -0
  60. package/lib/raw_types_schemats/questions.js +2 -0
  61. package/lib/raw_types_schemats/sens.d.ts +6915 -0
  62. package/lib/raw_types_schemats/sens.js +2 -0
  63. package/lib/scripts/convert_data.d.ts +1 -0
  64. package/lib/scripts/convert_data.js +354 -0
  65. package/lib/scripts/data-download.d.ts +1 -0
  66. package/lib/scripts/data-download.js +12 -0
  67. package/lib/scripts/datautil.d.ts +8 -0
  68. package/lib/scripts/datautil.js +34 -0
  69. package/lib/scripts/parse_textes.d.ts +1 -0
  70. package/lib/scripts/parse_textes.js +44 -0
  71. package/lib/scripts/retrieve_agenda.d.ts +1 -0
  72. package/lib/scripts/retrieve_agenda.js +132 -0
  73. package/lib/scripts/retrieve_cr_commission.d.ts +1 -0
  74. package/lib/scripts/retrieve_cr_commission.js +364 -0
  75. package/lib/scripts/retrieve_cr_seance.d.ts +6 -0
  76. package/lib/scripts/retrieve_cr_seance.js +347 -0
  77. package/lib/scripts/retrieve_documents.d.ts +3 -0
  78. package/lib/scripts/retrieve_documents.js +219 -0
  79. package/lib/scripts/retrieve_open_data.d.ts +1 -0
  80. package/lib/scripts/retrieve_open_data.js +316 -0
  81. package/lib/scripts/retrieve_senateurs_photos.d.ts +1 -0
  82. package/lib/scripts/retrieve_senateurs_photos.js +147 -0
  83. package/lib/scripts/retrieve_videos.d.ts +1 -0
  84. package/lib/scripts/retrieve_videos.js +461 -0
  85. package/lib/scripts/shared/cli_helpers.d.ts +95 -0
  86. package/lib/scripts/shared/cli_helpers.js +91 -0
  87. package/lib/scripts/shared/util.d.ts +4 -0
  88. package/lib/scripts/shared/util.js +35 -0
  89. package/lib/scripts/test_iter_load.d.ts +1 -0
  90. package/lib/scripts/test_iter_load.js +12 -0
  91. package/lib/src/model/sens.d.ts +36 -0
  92. package/lib/src/model/sens.js +35 -4
  93. package/lib/src/scripts/retrieve_cr_commission.js +12 -0
  94. package/lib/src/scripts/retrieve_cr_seance.js +12 -0
  95. package/lib/src/scripts/retrieve_videos.js +13 -1
  96. package/lib/src/utils/nvs-timecode.d.ts +17 -0
  97. package/lib/src/utils/nvs-timecode.js +79 -0
  98. package/lib/src/utils/weights_scoring_config.d.ts +2 -0
  99. package/lib/src/utils/weights_scoring_config.js +15 -0
  100. package/lib/strings.d.ts +1 -0
  101. package/lib/strings.js +18 -0
  102. package/lib/types/agenda.d.ts +44 -0
  103. package/lib/types/agenda.js +1 -0
  104. package/lib/types/ameli.d.ts +5 -0
  105. package/lib/types/ameli.js +1 -0
  106. package/lib/types/compte_rendu.d.ts +83 -0
  107. package/lib/types/compte_rendu.js +1 -0
  108. package/lib/types/debats.d.ts +2 -0
  109. package/lib/types/debats.js +1 -0
  110. package/lib/types/dosleg.d.ts +70 -0
  111. package/lib/types/dosleg.js +1 -0
  112. package/lib/types/questions.d.ts +2 -0
  113. package/lib/types/questions.js +1 -0
  114. package/lib/types/sens.d.ts +10 -0
  115. package/lib/types/sens.js +1 -0
  116. package/lib/types/sessions.d.ts +5 -0
  117. package/lib/types/sessions.js +84 -0
  118. package/lib/types/texte.d.ts +74 -0
  119. package/lib/types/texte.js +16 -0
  120. package/lib/utils/cr_spliting.d.ts +28 -0
  121. package/lib/utils/cr_spliting.js +265 -0
  122. package/lib/utils/date.d.ts +10 -0
  123. package/lib/utils/date.js +100 -0
  124. package/lib/utils/nvs-timecode.d.ts +7 -0
  125. package/lib/utils/nvs-timecode.js +79 -0
  126. package/lib/utils/reunion_grouping.d.ts +11 -0
  127. package/lib/utils/reunion_grouping.js +337 -0
  128. package/lib/utils/reunion_odj_building.d.ts +5 -0
  129. package/lib/utils/reunion_odj_building.js +154 -0
  130. package/lib/utils/reunion_parsing.d.ts +23 -0
  131. package/lib/utils/reunion_parsing.js +209 -0
  132. package/lib/utils/scoring.d.ts +14 -0
  133. package/lib/utils/scoring.js +147 -0
  134. package/lib/utils/string_cleaning.d.ts +7 -0
  135. package/lib/utils/string_cleaning.js +57 -0
  136. package/lib/validators/config.d.ts +9 -0
  137. package/lib/validators/config.js +10 -0
  138. package/package.json +1 -1
@@ -0,0 +1,977 @@
1
+ /**
2
+ * AUTO-GENERATED FILE - DO NOT EDIT!
3
+ *
4
+ * This file was automatically generated by schemats v.2.20.33
5
+ * $ schemats generate -c postgres://username:password@localhost:5432/senat -t amescr -t ass -t aud -t auteur -t ble -t catrap -t corscr -t date_seance -t deccoc -t denrap -t doc -t docatt -t docsea -t ecr -t etaloi -t evtsea -t forpub -t gen -t lecass -t lecassrap -t lecture -t lnkrap -t loi -t loithe -t natloi -t org -t orgnomhis -t orippr -t oritxt -t posvot -t qua -t rap -t raporg -t rapthe -t rolsig -t scr -t ses -t stavot -t texte -t texte_ancien -t the -t titsen -t typatt -t typaut -t typdoc -t typevtsea -t typlec -t typloi -t typorg -t typrap -t typtxt -t typurl -t votsen -s dosleg
6
+ *
7
+ */
8
+ export declare namespace amescrFields {
9
+ type amescrnum = string;
10
+ type scrnum = number;
11
+ type sesann = number;
12
+ }
13
+ export interface amescr {
14
+ amescrnum: amescrFields.amescrnum;
15
+ scrnum: amescrFields.scrnum;
16
+ sesann: amescrFields.sesann;
17
+ }
18
+ export declare namespace assFields {
19
+ type codass = string;
20
+ type libass = string;
21
+ }
22
+ export interface ass {
23
+ codass: assFields.codass;
24
+ libass: assFields.libass;
25
+ }
26
+ export declare namespace audFields {
27
+ type audcle = number;
28
+ type auddat = Date;
29
+ type audtit = string;
30
+ type audurl = string;
31
+ type lecassidt = string;
32
+ type orgcod = string;
33
+ }
34
+ export interface aud {
35
+ audcle: audFields.audcle;
36
+ auddat: audFields.auddat;
37
+ audtit: audFields.audtit;
38
+ audurl: audFields.audurl;
39
+ lecassidt: audFields.lecassidt;
40
+ orgcod: audFields.orgcod;
41
+ }
42
+ export declare namespace auteurFields {
43
+ type autcod = string;
44
+ type autfct = string | null;
45
+ type autmat = string | null;
46
+ type datdeb = Date | null;
47
+ type datfin = Date | null;
48
+ type grpapp = string | null;
49
+ type grprat = string | null;
50
+ type nomtec = string;
51
+ type nomuse = string;
52
+ type prenom = string | null;
53
+ type quacod = string;
54
+ type senfem = string | null;
55
+ type typautcod = string;
56
+ }
57
+ export interface auteur {
58
+ autcod: auteurFields.autcod;
59
+ autfct: auteurFields.autfct;
60
+ autmat: auteurFields.autmat;
61
+ datdeb: auteurFields.datdeb;
62
+ datfin: auteurFields.datfin;
63
+ grpapp: auteurFields.grpapp;
64
+ grprat: auteurFields.grprat;
65
+ nomtec: auteurFields.nomtec;
66
+ nomuse: auteurFields.nomuse;
67
+ prenom: auteurFields.prenom;
68
+ quacod: auteurFields.quacod;
69
+ senfem: auteurFields.senfem;
70
+ typautcod: auteurFields.typautcod;
71
+ }
72
+ export declare namespace bleFields {
73
+ type blecod = string;
74
+ type blelib = string;
75
+ }
76
+ export interface ble {
77
+ blecod: bleFields.blecod;
78
+ blelib: bleFields.blelib;
79
+ }
80
+ export declare namespace catrapFields {
81
+ type catrapcod = string;
82
+ type catraplib = string;
83
+ }
84
+ export interface catrap {
85
+ catrapcod: catrapFields.catrapcod;
86
+ catraplib: catrapFields.catraplib;
87
+ }
88
+ export declare namespace corscrFields {
89
+ type corscrord = number | null;
90
+ type corscrtxt = string;
91
+ type corscrurl = string | null;
92
+ type scrnum = number;
93
+ type sesann = number;
94
+ }
95
+ export interface corscr {
96
+ corscrord: corscrFields.corscrord;
97
+ corscrtxt: corscrFields.corscrtxt;
98
+ corscrurl: corscrFields.corscrurl;
99
+ scrnum: corscrFields.scrnum;
100
+ sesann: corscrFields.sesann;
101
+ }
102
+ export declare namespace date_seanceFields {
103
+ type code = number;
104
+ type date_s = Date | null;
105
+ type lecidt = string | null;
106
+ type statut = string | null;
107
+ }
108
+ export interface date_seance {
109
+ code: date_seanceFields.code;
110
+ date_s: date_seanceFields.date_s;
111
+ lecidt: date_seanceFields.lecidt;
112
+ statut: date_seanceFields.statut;
113
+ }
114
+ export declare namespace deccocFields {
115
+ type deccoccod = string;
116
+ type deccoclib = string;
117
+ }
118
+ export interface deccoc {
119
+ deccoccod: deccocFields.deccoccod;
120
+ deccoclib: deccocFields.deccoclib;
121
+ }
122
+ export declare namespace denrapFields {
123
+ type coddenrap = string;
124
+ type denrapmin = string | null;
125
+ type denrapstymin = string | null;
126
+ type denraptit = string | null;
127
+ type gencod = string;
128
+ type libdenrap = string;
129
+ type ordre = number | null;
130
+ type solnatrapcod = string | null;
131
+ type typraprap = string;
132
+ }
133
+ export interface denrap {
134
+ coddenrap: denrapFields.coddenrap;
135
+ denrapmin: denrapFields.denrapmin;
136
+ denrapstymin: denrapFields.denrapstymin;
137
+ denraptit: denrapFields.denraptit;
138
+ gencod: denrapFields.gencod;
139
+ libdenrap: denrapFields.libdenrap;
140
+ ordre: denrapFields.ordre;
141
+ solnatrapcod: denrapFields.solnatrapcod;
142
+ typraprap: denrapFields.typraprap;
143
+ }
144
+ export declare namespace docFields {
145
+ type date_depot = Date | null;
146
+ type docdat = Date | null;
147
+ type docdatsea = Date | null;
148
+ type docidt = number;
149
+ type docint = string | null;
150
+ type docnum = number | null;
151
+ type doctitcou = string | null;
152
+ type docurl = string | null;
153
+ type lecidt = string | null;
154
+ type sesann = number | null;
155
+ type typdoccod = string | null;
156
+ }
157
+ export interface doc {
158
+ date_depot: docFields.date_depot;
159
+ docdat: docFields.docdat;
160
+ docdatsea: docFields.docdatsea;
161
+ docidt: docFields.docidt;
162
+ docint: docFields.docint;
163
+ docnum: docFields.docnum;
164
+ doctitcou: docFields.doctitcou;
165
+ docurl: docFields.docurl;
166
+ lecidt: docFields.lecidt;
167
+ sesann: docFields.sesann;
168
+ typdoccod: docFields.typdoccod;
169
+ }
170
+ export declare namespace docattFields {
171
+ type docattcle = number;
172
+ type docatturl = string | null;
173
+ type rapcod = number;
174
+ type typattcod = string;
175
+ }
176
+ export interface docatt {
177
+ docattcle: docattFields.docattcle;
178
+ docatturl: docattFields.docatturl;
179
+ rapcod: docattFields.rapcod;
180
+ typattcod: docattFields.typattcod;
181
+ }
182
+ export declare namespace docseaFields {
183
+ type docseaord = number | null;
184
+ type docseaurl = string | null;
185
+ type docseaurlapr = string | null;
186
+ type docseaurlava = string | null;
187
+ type docseaurltxt = string | null;
188
+ type evtseacle = number;
189
+ }
190
+ export interface docsea {
191
+ docseaord: docseaFields.docseaord;
192
+ docseaurl: docseaFields.docseaurl;
193
+ docseaurlapr: docseaFields.docseaurlapr;
194
+ docseaurlava: docseaFields.docseaurlava;
195
+ docseaurltxt: docseaFields.docseaurltxt;
196
+ evtseacle: docseaFields.evtseacle;
197
+ }
198
+ export declare namespace ecrFields {
199
+ type autcod = string | null;
200
+ type docidt = number | null;
201
+ type ecrnum = number;
202
+ type ecrnumtri = number;
203
+ type ecrqua = string | null;
204
+ type rapcod = number | null;
205
+ type signataire = string | null;
206
+ type texcod = number | null;
207
+ type typedoc = string | null;
208
+ }
209
+ export interface ecr {
210
+ autcod: ecrFields.autcod;
211
+ docidt: ecrFields.docidt;
212
+ ecrnum: ecrFields.ecrnum;
213
+ ecrnumtri: ecrFields.ecrnumtri;
214
+ ecrqua: ecrFields.ecrqua;
215
+ rapcod: ecrFields.rapcod;
216
+ signataire: ecrFields.signataire;
217
+ texcod: ecrFields.texcod;
218
+ typedoc: ecrFields.typedoc;
219
+ }
220
+ export declare namespace etaloiFields {
221
+ type etaloicod = string;
222
+ type etaloilib = string;
223
+ }
224
+ export interface etaloi {
225
+ etaloicod: etaloiFields.etaloicod;
226
+ etaloilib: etaloiFields.etaloilib;
227
+ }
228
+ export declare namespace evtseaFields {
229
+ type evtseacle = number;
230
+ type evtseadat = Date | null;
231
+ type lecassidt = string;
232
+ type loicod = string | null;
233
+ type typevtcod = string;
234
+ }
235
+ export interface evtsea {
236
+ evtseacle: evtseaFields.evtseacle;
237
+ evtseadat: evtseaFields.evtseadat;
238
+ lecassidt: evtseaFields.lecassidt;
239
+ loicod: evtseaFields.loicod;
240
+ typevtcod: evtseaFields.typevtcod;
241
+ }
242
+ export declare namespace forpubFields {
243
+ type forpubcod = string;
244
+ type forpublib = string;
245
+ }
246
+ export interface forpub {
247
+ forpubcod: forpubFields.forpubcod;
248
+ forpublib: forpubFields.forpublib;
249
+ }
250
+ export declare namespace genFields {
251
+ type gencod = string;
252
+ type genlib = string;
253
+ }
254
+ export interface gen {
255
+ gencod: genFields.gencod;
256
+ genlib: genFields.genlib;
257
+ }
258
+ export declare namespace lecassFields {
259
+ type aliasppr = string | null;
260
+ type codass = string;
261
+ type debatsurl = string | null;
262
+ type depot_only = string;
263
+ type lecassame = string | null;
264
+ type lecassameado = string | null;
265
+ type lecassameadodat = Date | null;
266
+ type lecassameadoses = number | null;
267
+ type lecassamecom = string | null;
268
+ type lecassamecomado = string | null;
269
+ type lecassamecomadodat = Date | null;
270
+ type lecassamecomadoses = number | null;
271
+ type lecassamecomdat = Date | null;
272
+ type lecassamedat = Date | null;
273
+ type lecassameses = number | null;
274
+ type lecassamesescom = number | null;
275
+ type lecassidt = string;
276
+ type lecidt = string;
277
+ type libppr = string | null;
278
+ type loiintmod = string | null;
279
+ type ordreass = number;
280
+ type orgcod = string | null;
281
+ type orippr = string | null;
282
+ type ptlnot = string | null;
283
+ type ptlnot2 = string | null;
284
+ type ptlnot3 = string | null;
285
+ type ptlnum = number | null;
286
+ type ptlnumcom = number | null;
287
+ type ptlnumcpl = string | null;
288
+ type ptlnumcpl2 = string | null;
289
+ type ptlnumcpl3 = string | null;
290
+ type ptlurl = string | null;
291
+ type ptlurl2 = string | null;
292
+ type ptlurl3 = string | null;
293
+ type ptlurlcom = string | null;
294
+ type reucom = string | null;
295
+ type sesann = number | null;
296
+ type sesppr = number | null;
297
+ }
298
+ export interface lecass {
299
+ aliasppr: lecassFields.aliasppr;
300
+ codass: lecassFields.codass;
301
+ debatsurl: lecassFields.debatsurl;
302
+ depot_only: lecassFields.depot_only;
303
+ lecassame: lecassFields.lecassame;
304
+ lecassameado: lecassFields.lecassameado;
305
+ lecassameadodat: lecassFields.lecassameadodat;
306
+ lecassameadoses: lecassFields.lecassameadoses;
307
+ lecassamecom: lecassFields.lecassamecom;
308
+ lecassamecomado: lecassFields.lecassamecomado;
309
+ lecassamecomadodat: lecassFields.lecassamecomadodat;
310
+ lecassamecomadoses: lecassFields.lecassamecomadoses;
311
+ lecassamecomdat: lecassFields.lecassamecomdat;
312
+ lecassamedat: lecassFields.lecassamedat;
313
+ lecassameses: lecassFields.lecassameses;
314
+ lecassamesescom: lecassFields.lecassamesescom;
315
+ lecassidt: lecassFields.lecassidt;
316
+ lecidt: lecassFields.lecidt;
317
+ libppr: lecassFields.libppr;
318
+ loiintmod: lecassFields.loiintmod;
319
+ ordreass: lecassFields.ordreass;
320
+ orgcod: lecassFields.orgcod;
321
+ orippr: lecassFields.orippr;
322
+ ptlnot: lecassFields.ptlnot;
323
+ ptlnot2: lecassFields.ptlnot2;
324
+ ptlnot3: lecassFields.ptlnot3;
325
+ ptlnum: lecassFields.ptlnum;
326
+ ptlnumcom: lecassFields.ptlnumcom;
327
+ ptlnumcpl: lecassFields.ptlnumcpl;
328
+ ptlnumcpl2: lecassFields.ptlnumcpl2;
329
+ ptlnumcpl3: lecassFields.ptlnumcpl3;
330
+ ptlurl: lecassFields.ptlurl;
331
+ ptlurl2: lecassFields.ptlurl2;
332
+ ptlurl3: lecassFields.ptlurl3;
333
+ ptlurlcom: lecassFields.ptlurlcom;
334
+ reucom: lecassFields.reucom;
335
+ sesann: lecassFields.sesann;
336
+ sesppr: lecassFields.sesppr;
337
+ }
338
+ export declare namespace lecassrapFields {
339
+ type lecassidt = string;
340
+ type lecassrapord = number | null;
341
+ type rapcod = number;
342
+ }
343
+ export interface lecassrap {
344
+ lecassidt: lecassrapFields.lecassidt;
345
+ lecassrapord: lecassrapFields.lecassrapord;
346
+ rapcod: lecassrapFields.rapcod;
347
+ }
348
+ export declare namespace lectureFields {
349
+ type leccom = string | null;
350
+ type lecidt = string;
351
+ type loicod = string;
352
+ type typleccod = string;
353
+ }
354
+ export interface lecture {
355
+ leccom: lectureFields.leccom;
356
+ lecidt: lectureFields.lecidt;
357
+ loicod: lectureFields.loicod;
358
+ typleccod: lectureFields.typleccod;
359
+ }
360
+ export declare namespace lnkrapFields {
361
+ type rapcodenf = number;
362
+ type rapcodper = number;
363
+ type rapenfdsc = string | null;
364
+ type rapperdsc = string | null;
365
+ }
366
+ export interface lnkrap {
367
+ rapcodenf: lnkrapFields.rapcodenf;
368
+ rapcodper: lnkrapFields.rapcodper;
369
+ rapenfdsc: lnkrapFields.rapenfdsc;
370
+ rapperdsc: lnkrapFields.rapperdsc;
371
+ }
372
+ export declare namespace loiFields {
373
+ type date_decision = Date | null;
374
+ type date_loi = Date | null;
375
+ type deccoccod = string | null;
376
+ type deccocurl = string | null;
377
+ type doscocurl = string | null;
378
+ type en_clair_chapo = string | null;
379
+ type en_clair_image = string | null;
380
+ type en_clair_url = string | null;
381
+ type etaloicod = string | null;
382
+ type loicod = string;
383
+ type loicodmai = string | null;
384
+ type loidatjo = Date | null;
385
+ type loidatjo2 = Date | null;
386
+ type loidatjo3 = Date | null;
387
+ type loient = string | null;
388
+ type loiint = string | null;
389
+ type loiintori = string | null;
390
+ type loinoudelibcod = string | null;
391
+ type loinumjo = string | null;
392
+ type loinumjo2 = string | null;
393
+ type loinumjo3 = string | null;
394
+ type loitit = string | null;
395
+ type loititjo = string | null;
396
+ type motclef = string | null;
397
+ type motionloiorigcod = string | null;
398
+ type num_decision = string | null;
399
+ type numero = string | null;
400
+ type objet = string | null;
401
+ type orgcod = string | null;
402
+ type proaccdat = Date | null;
403
+ type proaccoppdat = Date | null;
404
+ type retproaccdat = Date | null;
405
+ type saisine_date = Date | null;
406
+ type saisine_par = string | null;
407
+ type signet = string | null;
408
+ type signetalt = string | null;
409
+ type typloicod = string;
410
+ type urgence = string | null;
411
+ type url_an = string | null;
412
+ type url_jo = string | null;
413
+ type url_jo2 = string | null;
414
+ type url_jo3 = string | null;
415
+ type url_ordonnance = string | null;
416
+ type url_presart = string | null;
417
+ }
418
+ export interface loi {
419
+ date_decision: loiFields.date_decision;
420
+ date_loi: loiFields.date_loi;
421
+ deccoccod: loiFields.deccoccod;
422
+ deccocurl: loiFields.deccocurl;
423
+ doscocurl: loiFields.doscocurl;
424
+ en_clair_chapo: loiFields.en_clair_chapo;
425
+ en_clair_image: loiFields.en_clair_image;
426
+ en_clair_url: loiFields.en_clair_url;
427
+ etaloicod: loiFields.etaloicod;
428
+ loicod: loiFields.loicod;
429
+ loicodmai: loiFields.loicodmai;
430
+ loidatjo: loiFields.loidatjo;
431
+ loidatjo2: loiFields.loidatjo2;
432
+ loidatjo3: loiFields.loidatjo3;
433
+ loient: loiFields.loient;
434
+ loiint: loiFields.loiint;
435
+ loiintori: loiFields.loiintori;
436
+ loinoudelibcod: loiFields.loinoudelibcod;
437
+ loinumjo: loiFields.loinumjo;
438
+ loinumjo2: loiFields.loinumjo2;
439
+ loinumjo3: loiFields.loinumjo3;
440
+ loitit: loiFields.loitit;
441
+ loititjo: loiFields.loititjo;
442
+ motclef: loiFields.motclef;
443
+ motionloiorigcod: loiFields.motionloiorigcod;
444
+ num_decision: loiFields.num_decision;
445
+ numero: loiFields.numero;
446
+ objet: loiFields.objet;
447
+ orgcod: loiFields.orgcod;
448
+ proaccdat: loiFields.proaccdat;
449
+ proaccoppdat: loiFields.proaccoppdat;
450
+ retproaccdat: loiFields.retproaccdat;
451
+ saisine_date: loiFields.saisine_date;
452
+ saisine_par: loiFields.saisine_par;
453
+ signet: loiFields.signet;
454
+ signetalt: loiFields.signetalt;
455
+ typloicod: loiFields.typloicod;
456
+ urgence: loiFields.urgence;
457
+ url_an: loiFields.url_an;
458
+ url_jo: loiFields.url_jo;
459
+ url_jo2: loiFields.url_jo2;
460
+ url_jo3: loiFields.url_jo3;
461
+ url_ordonnance: loiFields.url_ordonnance;
462
+ url_presart: loiFields.url_presart;
463
+ }
464
+ export declare namespace loitheFields {
465
+ type loicod = string;
466
+ type thecle = number;
467
+ }
468
+ export interface loithe {
469
+ loicod: loitheFields.loicod;
470
+ thecle: loitheFields.thecle;
471
+ }
472
+ export declare namespace natloiFields {
473
+ type groupe = string;
474
+ type natloilib = string;
475
+ }
476
+ export interface natloi {
477
+ groupe: natloiFields.groupe;
478
+ natloilib: natloiFields.natloilib;
479
+ }
480
+ export declare namespace orgFields {
481
+ type codass = string | null;
482
+ type html_color = string | null;
483
+ type inttra = string | null;
484
+ type org_de = string | null;
485
+ type orgcod = string;
486
+ type orgdatdeb = Date | null;
487
+ type orgdatdebcop = Date | null;
488
+ type orgdatfin = Date | null;
489
+ type orgdatfincop = Date | null;
490
+ type orggen = string | null;
491
+ type orglibaff = string | null;
492
+ type orglibcou = string | null;
493
+ type orgliblon = string | null;
494
+ type orgnom = string;
495
+ type orgnomcouv = string | null;
496
+ type orgord = number | null;
497
+ type orgurl = string | null;
498
+ type senorgcod = string | null;
499
+ type typorgcod = string;
500
+ type url_podcast = string | null;
501
+ type urltra = string | null;
502
+ }
503
+ export interface org {
504
+ codass: orgFields.codass;
505
+ html_color: orgFields.html_color;
506
+ inttra: orgFields.inttra;
507
+ org_de: orgFields.org_de;
508
+ orgcod: orgFields.orgcod;
509
+ orgdatdeb: orgFields.orgdatdeb;
510
+ orgdatdebcop: orgFields.orgdatdebcop;
511
+ orgdatfin: orgFields.orgdatfin;
512
+ orgdatfincop: orgFields.orgdatfincop;
513
+ orggen: orgFields.orggen;
514
+ orglibaff: orgFields.orglibaff;
515
+ orglibcou: orgFields.orglibcou;
516
+ orgliblon: orgFields.orgliblon;
517
+ orgnom: orgFields.orgnom;
518
+ orgnomcouv: orgFields.orgnomcouv;
519
+ orgord: orgFields.orgord;
520
+ orgurl: orgFields.orgurl;
521
+ senorgcod: orgFields.senorgcod;
522
+ typorgcod: orgFields.typorgcod;
523
+ url_podcast: orgFields.url_podcast;
524
+ urltra: orgFields.urltra;
525
+ }
526
+ export declare namespace orgnomhisFields {
527
+ type intra = string | null;
528
+ type onhfin = Date;
529
+ type onhnum = number;
530
+ type org_de = string;
531
+ type orgcod = string;
532
+ type orglibaff = string | null;
533
+ type orglibcou = string;
534
+ type orgliblon = string;
535
+ type orgnom = string;
536
+ type orgnomcouv = string | null;
537
+ }
538
+ export interface orgnomhis {
539
+ intra: orgnomhisFields.intra;
540
+ onhfin: orgnomhisFields.onhfin;
541
+ onhnum: orgnomhisFields.onhnum;
542
+ org_de: orgnomhisFields.org_de;
543
+ orgcod: orgnomhisFields.orgcod;
544
+ orglibaff: orgnomhisFields.orglibaff;
545
+ orglibcou: orgnomhisFields.orglibcou;
546
+ orgliblon: orgnomhisFields.orgliblon;
547
+ orgnom: orgnomhisFields.orgnom;
548
+ orgnomcouv: orgnomhisFields.orgnomcouv;
549
+ }
550
+ export declare namespace oripprFields {
551
+ type oripprcod = string;
552
+ type oripprlib = string;
553
+ }
554
+ export interface orippr {
555
+ oripprcod: oripprFields.oripprcod;
556
+ oripprlib: oripprFields.oripprlib;
557
+ }
558
+ export declare namespace oritxtFields {
559
+ type codass = string | null;
560
+ type oriordre = string | null;
561
+ type oritxtado = string | null;
562
+ type oritxtcod = string;
563
+ type oritxtign = string | null;
564
+ type oritxtlib = string;
565
+ type oritxtlibfem = string;
566
+ type oritxtmod = string | null;
567
+ type oritxtorg = string | null;
568
+ }
569
+ export interface oritxt {
570
+ codass: oritxtFields.codass;
571
+ oriordre: oritxtFields.oriordre;
572
+ oritxtado: oritxtFields.oritxtado;
573
+ oritxtcod: oritxtFields.oritxtcod;
574
+ oritxtign: oritxtFields.oritxtign;
575
+ oritxtlib: oritxtFields.oritxtlib;
576
+ oritxtlibfem: oritxtFields.oritxtlibfem;
577
+ oritxtmod: oritxtFields.oritxtmod;
578
+ oritxtorg: oritxtFields.oritxtorg;
579
+ }
580
+ export declare namespace posvotFields {
581
+ type posvotcod = string;
582
+ type posvotlib = string;
583
+ }
584
+ export interface posvot {
585
+ posvotcod: posvotFields.posvotcod;
586
+ posvotlib: posvotFields.posvotlib;
587
+ }
588
+ export declare namespace quaFields {
589
+ type quaabr = string;
590
+ type quaabrplu = string;
591
+ type quacod = string;
592
+ type qualic = string;
593
+ }
594
+ export interface qua {
595
+ quaabr: quaFields.quaabr;
596
+ quaabrplu: quaFields.quaabrplu;
597
+ quacod: quaFields.quacod;
598
+ qualic: quaFields.qualic;
599
+ }
600
+ export declare namespace rapFields {
601
+ type blecod = string | null;
602
+ type coddenrap = string;
603
+ type date_depot = Date;
604
+ type depot_only = string | null;
605
+ type forpubcod = string | null;
606
+ type numerobis = string | null;
607
+ type prix = string | null;
608
+ type rapann = number | null;
609
+ type rapcod = number;
610
+ type rapdatsea = Date | null;
611
+ type rapfac = number | null;
612
+ type rapnum = number | null;
613
+ type rapnuman = number | null;
614
+ type rapres = string | null;
615
+ type rapsoustit = string | null;
616
+ type raptil = string | null;
617
+ type raptitcou = string | null;
618
+ type raptom = number | null;
619
+ type rapurl = string | null;
620
+ type rapvol = number | null;
621
+ type sesann = number;
622
+ type typurl = string;
623
+ type url2 = string | null;
624
+ type url2txt = string | null;
625
+ type url3 = string | null;
626
+ type url3txt = string | null;
627
+ type url4 = string | null;
628
+ type url4txt = string | null;
629
+ }
630
+ export interface rap {
631
+ blecod: rapFields.blecod;
632
+ coddenrap: rapFields.coddenrap;
633
+ date_depot: rapFields.date_depot;
634
+ depot_only: rapFields.depot_only;
635
+ forpubcod: rapFields.forpubcod;
636
+ numerobis: rapFields.numerobis;
637
+ prix: rapFields.prix;
638
+ rapann: rapFields.rapann;
639
+ rapcod: rapFields.rapcod;
640
+ rapdatsea: rapFields.rapdatsea;
641
+ rapfac: rapFields.rapfac;
642
+ rapnum: rapFields.rapnum;
643
+ rapnuman: rapFields.rapnuman;
644
+ rapres: rapFields.rapres;
645
+ rapsoustit: rapFields.rapsoustit;
646
+ raptil: rapFields.raptil;
647
+ raptitcou: rapFields.raptitcou;
648
+ raptom: rapFields.raptom;
649
+ rapurl: rapFields.rapurl;
650
+ rapvol: rapFields.rapvol;
651
+ sesann: rapFields.sesann;
652
+ typurl: rapFields.typurl;
653
+ url2: rapFields.url2;
654
+ url2txt: rapFields.url2txt;
655
+ url3: rapFields.url3;
656
+ url3txt: rapFields.url3txt;
657
+ url4: rapFields.url4;
658
+ url4txt: rapFields.url4txt;
659
+ }
660
+ export declare namespace raporgFields {
661
+ type orgcod = string;
662
+ type rapcod = number;
663
+ }
664
+ export interface raporg {
665
+ orgcod: raporgFields.orgcod;
666
+ rapcod: raporgFields.rapcod;
667
+ }
668
+ export declare namespace raptheFields {
669
+ type rapcod = number;
670
+ type thecle = number;
671
+ }
672
+ export interface rapthe {
673
+ rapcod: raptheFields.rapcod;
674
+ thecle: raptheFields.thecle;
675
+ }
676
+ export declare namespace rolsigFields {
677
+ type rolsiglib = string;
678
+ type signataire = string;
679
+ }
680
+ export interface rolsig {
681
+ rolsiglib: rolsigFields.rolsiglib;
682
+ signataire: rolsigFields.signataire;
683
+ }
684
+ export declare namespace scrFields {
685
+ type code = number | null;
686
+ type scrbaspag = string | null;
687
+ type scrcon = number | null;
688
+ type scrconsea = number | null;
689
+ type scrdat = Date | null;
690
+ type scrdateff = Date | null;
691
+ type scrint = string | null;
692
+ type scrjso = string | null;
693
+ type scrmaj = number | null;
694
+ type scrmajsea = number | null;
695
+ type scrnum = number;
696
+ type scrpou = number | null;
697
+ type scrpousea = number | null;
698
+ type scrsuf = number | null;
699
+ type scrsufsea = number | null;
700
+ type scrvot = number | null;
701
+ type scrvotsea = number | null;
702
+ type sesann = number;
703
+ type soslib = string | null;
704
+ }
705
+ export interface scr {
706
+ code: scrFields.code;
707
+ scrbaspag: scrFields.scrbaspag;
708
+ scrcon: scrFields.scrcon;
709
+ scrconsea: scrFields.scrconsea;
710
+ scrdat: scrFields.scrdat;
711
+ scrdateff: scrFields.scrdateff;
712
+ scrint: scrFields.scrint;
713
+ scrjso: scrFields.scrjso;
714
+ scrmaj: scrFields.scrmaj;
715
+ scrmajsea: scrFields.scrmajsea;
716
+ scrnum: scrFields.scrnum;
717
+ scrpou: scrFields.scrpou;
718
+ scrpousea: scrFields.scrpousea;
719
+ scrsuf: scrFields.scrsuf;
720
+ scrsufsea: scrFields.scrsufsea;
721
+ scrvot: scrFields.scrvot;
722
+ scrvotsea: scrFields.scrvotsea;
723
+ sesann: scrFields.sesann;
724
+ soslib: scrFields.soslib;
725
+ }
726
+ export declare namespace sesFields {
727
+ type sesann = number;
728
+ type seslib = string;
729
+ }
730
+ export interface ses {
731
+ sesann: sesFields.sesann;
732
+ seslib: sesFields.seslib;
733
+ }
734
+ export declare namespace stavotFields {
735
+ type stavotidt = string;
736
+ type stavotlib = string;
737
+ }
738
+ export interface stavot {
739
+ stavotidt: stavotFields.stavotidt;
740
+ stavotlib: stavotFields.stavotlib;
741
+ }
742
+ export declare namespace texteFields {
743
+ type datrejet_disc_immediate = Date | null;
744
+ type lecassidt = string;
745
+ type numerobis = string | null;
746
+ type orgcod = string | null;
747
+ type oritxtcod = string | null;
748
+ type prix = string | null;
749
+ type reserve_comspe = string | null;
750
+ type sesann = number | null;
751
+ type texace = string | null;
752
+ type texcod = number;
753
+ type texdatsea = Date | null;
754
+ type texnum = number | null;
755
+ type texurl = string | null;
756
+ type txtoritxtdat = Date;
757
+ type typtxtcod = string;
758
+ type typurl = string;
759
+ type url2 = string | null;
760
+ type url2txt = string | null;
761
+ type url3 = string | null;
762
+ type url3txt = string | null;
763
+ type url4 = string | null;
764
+ type url4txt = string | null;
765
+ type url_cnen = string | null;
766
+ }
767
+ export interface texte {
768
+ datrejet_disc_immediate: texteFields.datrejet_disc_immediate;
769
+ lecassidt: texteFields.lecassidt;
770
+ numerobis: texteFields.numerobis;
771
+ orgcod: texteFields.orgcod;
772
+ oritxtcod: texteFields.oritxtcod;
773
+ prix: texteFields.prix;
774
+ reserve_comspe: texteFields.reserve_comspe;
775
+ sesann: texteFields.sesann;
776
+ texace: texteFields.texace;
777
+ texcod: texteFields.texcod;
778
+ texdatsea: texteFields.texdatsea;
779
+ texnum: texteFields.texnum;
780
+ texurl: texteFields.texurl;
781
+ txtoritxtdat: texteFields.txtoritxtdat;
782
+ typtxtcod: texteFields.typtxtcod;
783
+ typurl: texteFields.typurl;
784
+ url2: texteFields.url2;
785
+ url2txt: texteFields.url2txt;
786
+ url3: texteFields.url3;
787
+ url3txt: texteFields.url3txt;
788
+ url4: texteFields.url4;
789
+ url4txt: texteFields.url4txt;
790
+ url_cnen: texteFields.url_cnen;
791
+ }
792
+ export declare namespace texte_ancienFields {
793
+ type article_type = string | null;
794
+ type date_effet = Date | null;
795
+ type fichier = string | null;
796
+ type id = number;
797
+ type lecture = string | null;
798
+ type libelle = string | null;
799
+ type numero = number;
800
+ type origine = string;
801
+ type rectifie = number;
802
+ type sesann = number;
803
+ type statut = string | null;
804
+ type type_texte = string | null;
805
+ type urgence = number;
806
+ }
807
+ export interface texte_ancien {
808
+ article_type: texte_ancienFields.article_type;
809
+ date_effet: texte_ancienFields.date_effet;
810
+ fichier: texte_ancienFields.fichier;
811
+ id: texte_ancienFields.id;
812
+ lecture: texte_ancienFields.lecture;
813
+ libelle: texte_ancienFields.libelle;
814
+ numero: texte_ancienFields.numero;
815
+ origine: texte_ancienFields.origine;
816
+ rectifie: texte_ancienFields.rectifie;
817
+ sesann: texte_ancienFields.sesann;
818
+ statut: texte_ancienFields.statut;
819
+ type_texte: texte_ancienFields.type_texte;
820
+ urgence: texte_ancienFields.urgence;
821
+ }
822
+ export declare namespace theFields {
823
+ type theali = string | null;
824
+ type thecle = number;
825
+ type thelib = string;
826
+ }
827
+ export interface the {
828
+ theali: theFields.theali;
829
+ thecle: theFields.thecle;
830
+ thelib: theFields.thelib;
831
+ }
832
+ export declare namespace titsenFields {
833
+ type titsencod = string;
834
+ type titsenlib = string | null;
835
+ }
836
+ export interface titsen {
837
+ titsencod: titsenFields.titsencod;
838
+ titsenlib: titsenFields.titsenlib;
839
+ }
840
+ export declare namespace typattFields {
841
+ type typattcod = string;
842
+ type typattlib = string;
843
+ }
844
+ export interface typatt {
845
+ typattcod: typattFields.typattcod;
846
+ typattlib: typattFields.typattlib;
847
+ }
848
+ export declare namespace typautFields {
849
+ type typautcod = string;
850
+ type typautlib = string;
851
+ }
852
+ export interface typaut {
853
+ typautcod: typautFields.typautcod;
854
+ typautlib: typautFields.typautlib;
855
+ }
856
+ export declare namespace typdocFields {
857
+ type typdoccod = string;
858
+ type typdoclib = string | null;
859
+ }
860
+ export interface typdoc {
861
+ typdoccod: typdocFields.typdoccod;
862
+ typdoclib: typdocFields.typdoclib;
863
+ }
864
+ export declare namespace typevtseaFields {
865
+ type typevtcod = string;
866
+ type typevtlib = string;
867
+ }
868
+ export interface typevtsea {
869
+ typevtcod: typevtseaFields.typevtcod;
870
+ typevtlib: typevtseaFields.typevtlib;
871
+ }
872
+ export declare namespace typlecFields {
873
+ type typleccod = string;
874
+ type typleclib = string;
875
+ type typlecord = number | null;
876
+ }
877
+ export interface typlec {
878
+ typleccod: typlecFields.typleccod;
879
+ typleclib: typlecFields.typleclib;
880
+ typlecord: typlecFields.typlecord;
881
+ }
882
+ export declare namespace typloiFields {
883
+ type groupe = string | null;
884
+ type typloiabr = string | null;
885
+ type typloicod = string;
886
+ type typloide = string | null;
887
+ type typloiden = string | null;
888
+ type typloidenplu = string | null;
889
+ type typloigen = string | null;
890
+ type typloilib = string;
891
+ type typloitit = string | null;
892
+ }
893
+ export interface typloi {
894
+ groupe: typloiFields.groupe;
895
+ typloiabr: typloiFields.typloiabr;
896
+ typloicod: typloiFields.typloicod;
897
+ typloide: typloiFields.typloide;
898
+ typloiden: typloiFields.typloiden;
899
+ typloidenplu: typloiFields.typloidenplu;
900
+ typloigen: typloiFields.typloigen;
901
+ typloilib: typloiFields.typloilib;
902
+ typloitit: typloiFields.typloitit;
903
+ }
904
+ export declare namespace typorgFields {
905
+ type typorgcod = string;
906
+ type typorglib = string;
907
+ type typorgord = number | null;
908
+ type typorgtitens = string | null;
909
+ type typorgurl = string | null;
910
+ type typorgvid = string | null;
911
+ }
912
+ export interface typorg {
913
+ typorgcod: typorgFields.typorgcod;
914
+ typorglib: typorgFields.typorglib;
915
+ typorgord: typorgFields.typorgord;
916
+ typorgtitens: typorgFields.typorgtitens;
917
+ typorgurl: typorgFields.typorgurl;
918
+ typorgvid: typorgFields.typorgvid;
919
+ }
920
+ export declare namespace typrapFields {
921
+ type catrapcod = string | null;
922
+ type typrapind = string;
923
+ type typraplib = string;
924
+ type typraplibplu = string | null;
925
+ type typrapnot = string | null;
926
+ type typraprap = string;
927
+ type typraprep = string | null;
928
+ type typrapses = string | null;
929
+ type typrapurl = string | null;
930
+ }
931
+ export interface typrap {
932
+ catrapcod: typrapFields.catrapcod;
933
+ typrapind: typrapFields.typrapind;
934
+ typraplib: typrapFields.typraplib;
935
+ typraplibplu: typrapFields.typraplibplu;
936
+ typrapnot: typrapFields.typrapnot;
937
+ typraprap: typrapFields.typraprap;
938
+ typraprep: typrapFields.typraprep;
939
+ typrapses: typrapFields.typrapses;
940
+ typrapurl: typrapFields.typrapurl;
941
+ }
942
+ export declare namespace typtxtFields {
943
+ type typtxtcod = string;
944
+ type typtxtlib = string;
945
+ }
946
+ export interface typtxt {
947
+ typtxtcod: typtxtFields.typtxtcod;
948
+ typtxtlib: typtxtFields.typtxtlib;
949
+ }
950
+ export declare namespace typurlFields {
951
+ type libtypurl = string;
952
+ type typurl = string;
953
+ }
954
+ export interface typurl {
955
+ libtypurl: typurlFields.libtypurl;
956
+ typurl: typurlFields.typurl;
957
+ }
958
+ export declare namespace votsenFields {
959
+ type posvotcod = string | null;
960
+ type scrnum = number;
961
+ type senmat = string;
962
+ type senmatdel = string | null;
963
+ type sesann = number;
964
+ type stavotidt = string;
965
+ type titsencod = string;
966
+ type votsenmar = string | null;
967
+ }
968
+ export interface votsen {
969
+ posvotcod: votsenFields.posvotcod;
970
+ scrnum: votsenFields.scrnum;
971
+ senmat: votsenFields.senmat;
972
+ senmatdel: votsenFields.senmatdel;
973
+ sesann: votsenFields.sesann;
974
+ stavotidt: votsenFields.stavotidt;
975
+ titsencod: votsenFields.titsencod;
976
+ votsenmar: votsenFields.votsenmar;
977
+ }