@tricoteuses/senat 2.10.5 → 2.11.1

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 (54) hide show
  1. package/lib/databases.d.ts +1 -28
  2. package/lib/databases.js +0 -6
  3. package/lib/datasets.d.ts +6 -0
  4. package/lib/datasets.js +233 -0
  5. package/lib/loaders.d.ts +5 -0
  6. package/lib/loaders.js +14 -9
  7. package/lib/model/ameli.d.ts +31 -143
  8. package/lib/model/ameli.js +102 -95
  9. package/lib/model/commission.d.ts +5 -0
  10. package/lib/model/commission.js +263 -0
  11. package/lib/model/debats.d.ts +13 -51
  12. package/lib/model/documents.d.ts +2 -0
  13. package/lib/model/documents.js +37 -0
  14. package/lib/model/dosleg.d.ts +9 -104
  15. package/lib/model/dosleg.js +76 -108
  16. package/lib/model/index.d.ts +4 -2
  17. package/lib/model/index.js +4 -2
  18. package/lib/model/questions.d.ts +10 -458
  19. package/lib/model/scrutins.d.ts +3 -0
  20. package/lib/model/scrutins.js +74 -0
  21. package/lib/model/{compte_rendu.js → seance.js} +47 -28
  22. package/lib/model/sens.d.ts +28 -1002
  23. package/lib/model/sens.js +65 -33
  24. package/lib/model/util.d.ts +1 -0
  25. package/lib/model/util.js +19 -1
  26. package/lib/raw_types/ameli.d.ts +778 -1521
  27. package/lib/raw_types/ameli.js +5 -345
  28. package/lib/raw_types/debats.d.ts +163 -306
  29. package/lib/raw_types/debats.js +5 -84
  30. package/lib/raw_types/dosleg.d.ts +1349 -2293
  31. package/lib/raw_types/dosleg.js +5 -550
  32. package/lib/raw_types/questions.d.ts +374 -519
  33. package/lib/raw_types/questions.js +5 -84
  34. package/lib/raw_types/senat.d.ts +11389 -0
  35. package/lib/raw_types/senat.js +5 -0
  36. package/lib/raw_types/sens.d.ts +6729 -12571
  37. package/lib/raw_types/sens.js +5 -2944
  38. package/lib/raw_types_schemats/ameli.d.ts +2 -2
  39. package/lib/raw_types_schemats/debats.d.ts +2 -2
  40. package/lib/raw_types_schemats/dosleg.d.ts +2 -2
  41. package/lib/raw_types_schemats/questions.d.ts +2 -2
  42. package/lib/raw_types_schemats/sens.d.ts +2 -2
  43. package/lib/scripts/convert_data.js +37 -31
  44. package/lib/scripts/retrieve_cr_commission.d.ts +1 -0
  45. package/lib/scripts/retrieve_cr_commission.js +291 -0
  46. package/lib/scripts/{retrieve_comptes_rendus.js → retrieve_cr_seance.js} +1 -1
  47. package/lib/scripts/retrieve_open_data.js +35 -1
  48. package/lib/utils/cr_spliting.d.ts +22 -1
  49. package/lib/utils/cr_spliting.js +273 -12
  50. package/lib/utils/reunion_grouping.d.ts +3 -0
  51. package/lib/utils/reunion_grouping.js +1 -1
  52. package/package.json +12 -11
  53. /package/lib/model/{compte_rendu.d.ts → seance.d.ts} +0 -0
  54. /package/lib/scripts/{retrieve_comptes_rendus.d.ts → retrieve_cr_seance.d.ts} +0 -0
@@ -1,550 +1,5 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- const amescr = {
4
- tableName: 'amescr',
5
- columns: ['sesann', 'scrnum', 'amescrnum'],
6
- requiredForInsert: ['sesann', 'scrnum', 'amescrnum'],
7
- primaryKey: null,
8
- foreignKeys: {},
9
- $type: null,
10
- $input: null
11
- };
12
- const ass = {
13
- tableName: 'ass',
14
- columns: ['codass', 'libass'],
15
- requiredForInsert: ['codass', 'libass'],
16
- primaryKey: 'codass',
17
- foreignKeys: {},
18
- $type: null,
19
- $input: null
20
- };
21
- const aud = {
22
- tableName: 'aud',
23
- columns: ['audcle', 'lecassidt', 'auddat', 'audtit', 'audurl', 'orgcod'],
24
- requiredForInsert: ['audcle', 'lecassidt', 'auddat', 'audtit', 'audurl', 'orgcod'],
25
- primaryKey: 'audcle',
26
- foreignKeys: {},
27
- $type: null,
28
- $input: null
29
- };
30
- const auteur = {
31
- tableName: 'auteur',
32
- columns: ['autcod', 'quacod', 'typautcod', 'nomuse', 'prenom', 'nomtec', 'autmat', 'grpapp', 'grprat', 'autfct', 'datdeb', 'datfin', 'senfem'],
33
- requiredForInsert: ['autcod', 'quacod', 'typautcod', 'nomuse', 'nomtec'],
34
- primaryKey: 'autcod',
35
- foreignKeys: {},
36
- $type: null,
37
- $input: null
38
- };
39
- const ble = {
40
- tableName: 'ble',
41
- columns: ['blecod', 'blelib'],
42
- requiredForInsert: ['blecod', 'blelib'],
43
- primaryKey: 'blecod',
44
- foreignKeys: {},
45
- $type: null,
46
- $input: null
47
- };
48
- const catrap = {
49
- tableName: 'catrap',
50
- columns: ['catrapcod', 'catraplib'],
51
- requiredForInsert: ['catrapcod', 'catraplib'],
52
- primaryKey: 'catrapcod',
53
- foreignKeys: {},
54
- $type: null,
55
- $input: null
56
- };
57
- const corscr = {
58
- tableName: 'corscr',
59
- columns: ['sesann', 'scrnum', 'corscrord', 'corscrtxt', 'corscrurl'],
60
- requiredForInsert: ['sesann', 'scrnum', 'corscrtxt'],
61
- primaryKey: null,
62
- foreignKeys: {},
63
- $type: null,
64
- $input: null
65
- };
66
- const date_seance = {
67
- tableName: 'date_seance',
68
- columns: ['lecidt', 'date_s', 'code', 'statut'],
69
- requiredForInsert: ['code'],
70
- primaryKey: 'code',
71
- foreignKeys: {},
72
- $type: null,
73
- $input: null
74
- };
75
- const deccoc = {
76
- tableName: 'deccoc',
77
- columns: ['deccoccod', 'deccoclib'],
78
- requiredForInsert: ['deccoccod', 'deccoclib'],
79
- primaryKey: 'deccoccod',
80
- foreignKeys: {},
81
- $type: null,
82
- $input: null
83
- };
84
- const denrap = {
85
- tableName: 'denrap',
86
- columns: ['coddenrap', 'typraprap', 'libdenrap', 'ordre', 'denrapmin', 'denraptit', 'denrapstymin', 'gencod', 'solnatrapcod'],
87
- requiredForInsert: ['coddenrap', 'typraprap', 'libdenrap', 'gencod'],
88
- primaryKey: 'coddenrap',
89
- foreignKeys: {},
90
- $type: null,
91
- $input: null
92
- };
93
- const doc = {
94
- tableName: 'doc',
95
- columns: ['docidt', 'typdoccod', 'docint', 'docurl', 'lecidt', 'docdat', 'docnum', 'sesann', 'date_depot', 'doctitcou', 'docdatsea'],
96
- requiredForInsert: ['docidt'],
97
- primaryKey: 'docidt',
98
- foreignKeys: {
99
- typdoccod: { table: 'typdoc', column: 'typdoccod', $type: null },
100
- lecidt: { table: 'lecture', column: 'lecidt', $type: null },
101
- sesann: { table: 'ses', column: 'sesann', $type: null },
102
- },
103
- $type: null,
104
- $input: null
105
- };
106
- const docatt = {
107
- tableName: 'docatt',
108
- columns: ['docattcle', 'rapcod', 'typattcod', 'docatturl'],
109
- requiredForInsert: ['docattcle', 'rapcod', 'typattcod'],
110
- primaryKey: 'docattcle',
111
- foreignKeys: {},
112
- $type: null,
113
- $input: null
114
- };
115
- const docsea = {
116
- tableName: 'docsea',
117
- columns: ['evtseacle', 'docseaurl', 'docseaurltxt', 'docseaurlava', 'docseaurlapr', 'docseaord'],
118
- requiredForInsert: ['evtseacle'],
119
- primaryKey: null,
120
- foreignKeys: {},
121
- $type: null,
122
- $input: null
123
- };
124
- const ecr = {
125
- tableName: 'ecr',
126
- columns: ['rapcod', 'ecrnumtri', 'autcod', 'texcod', 'ecrnum', 'typedoc', 'signataire', 'docidt', 'ecrqua'],
127
- requiredForInsert: ['ecrnumtri', 'ecrnum'],
128
- primaryKey: 'ecrnum',
129
- foreignKeys: {},
130
- $type: null,
131
- $input: null
132
- };
133
- const etaloi = {
134
- tableName: 'etaloi',
135
- columns: ['etaloicod', 'etaloilib'],
136
- requiredForInsert: ['etaloicod', 'etaloilib'],
137
- primaryKey: 'etaloicod',
138
- foreignKeys: {},
139
- $type: null,
140
- $input: null
141
- };
142
- const evtsea = {
143
- tableName: 'evtsea',
144
- columns: ['evtseacle', 'loicod', 'typevtcod', 'lecassidt', 'evtseadat'],
145
- requiredForInsert: ['evtseacle', 'typevtcod', 'lecassidt'],
146
- primaryKey: 'evtseacle',
147
- foreignKeys: {},
148
- $type: null,
149
- $input: null
150
- };
151
- const forpub = {
152
- tableName: 'forpub',
153
- columns: ['forpubcod', 'forpublib'],
154
- requiredForInsert: ['forpubcod', 'forpublib'],
155
- primaryKey: 'forpubcod',
156
- foreignKeys: {},
157
- $type: null,
158
- $input: null
159
- };
160
- const gen = {
161
- tableName: 'gen',
162
- columns: ['gencod', 'genlib'],
163
- requiredForInsert: ['gencod', 'genlib'],
164
- primaryKey: null,
165
- foreignKeys: {},
166
- $type: null,
167
- $input: null
168
- };
169
- const lecass = {
170
- tableName: 'lecass',
171
- columns: ['lecassidt', 'lecidt', 'codass', 'ordreass', 'sesann', 'ptlnum', 'ptlurl', 'ptlnumcpl', 'ptlnot', 'ptlurl2', 'ptlnot2', 'ptlurl3', 'ptlnot3', 'ptlnumcpl2', 'ptlnumcpl3', 'lecassame', 'lecassameses', 'orgcod', 'loiintmod', 'reucom', 'debatsurl', 'depot_only', 'lecassamedat', 'lecassamecomdat', 'orippr', 'libppr', 'sesppr', 'ptlurlcom', 'aliasppr', 'lecassamecom', 'lecassamesescom', 'ptlnumcom', 'lecassameado', 'lecassameadodat', 'lecassameadoses', 'lecassamecomado', 'lecassamecomadodat', 'lecassamecomadoses'],
172
- requiredForInsert: ['lecassidt', 'lecidt', 'codass', 'ordreass'],
173
- primaryKey: 'lecassidt',
174
- foreignKeys: {},
175
- $type: null,
176
- $input: null
177
- };
178
- const lecassrap = {
179
- tableName: 'lecassrap',
180
- columns: ['lecassidt', 'rapcod', 'lecassrapord'],
181
- requiredForInsert: ['lecassidt', 'rapcod'],
182
- primaryKey: 'lecassidt',
183
- foreignKeys: {},
184
- $type: null,
185
- $input: null
186
- };
187
- const lecture = {
188
- tableName: 'lecture',
189
- columns: ['lecidt', 'loicod', 'typleccod', 'leccom'],
190
- requiredForInsert: ['lecidt', 'loicod', 'typleccod'],
191
- primaryKey: 'lecidt',
192
- foreignKeys: {},
193
- $type: null,
194
- $input: null
195
- };
196
- const lnkrap = {
197
- tableName: 'lnkrap',
198
- columns: ['rapcodper', 'rapcodenf', 'rapperdsc', 'rapenfdsc'],
199
- requiredForInsert: ['rapcodper', 'rapcodenf'],
200
- primaryKey: 'rapcodper',
201
- foreignKeys: {
202
- rapcodper: { table: 'rap', column: 'rapcod', $type: null },
203
- rapcodenf: { table: 'rap', column: 'rapcod', $type: null },
204
- },
205
- $type: null,
206
- $input: null
207
- };
208
- const loi = {
209
- tableName: 'loi',
210
- columns: ['loicod', 'typloicod', 'etaloicod', 'deccoccod', 'numero', 'signet', 'loient', 'motclef', 'loitit', 'loiint', 'urgence', 'url_jo', 'loinumjo', 'loidatjo', 'date_loi', 'loititjo', 'url_jo2', 'loinumjo2', 'loidatjo2', 'deccocurl', 'num_decision', 'date_decision', 'loicodmai', 'loinoudelibcod', 'motionloiorigcod', 'objet', 'url_ordonnance', 'saisine_date', 'saisine_par', 'loidatjo3', 'loinumjo3', 'url_jo3', 'url_an', 'url_presart', 'signetalt', 'orgcod', 'doscocurl', 'loiintori', 'proaccdat', 'proaccoppdat', 'retproaccdat', 'en_clair_url', 'en_clair_image', 'en_clair_chapo'],
211
- requiredForInsert: ['loicod', 'typloicod'],
212
- primaryKey: 'loicod',
213
- foreignKeys: {},
214
- $type: null,
215
- $input: null
216
- };
217
- const loithe = {
218
- tableName: 'loithe',
219
- columns: ['loicod', 'thecle'],
220
- requiredForInsert: ['loicod', 'thecle'],
221
- primaryKey: 'loicod',
222
- foreignKeys: {
223
- loicod: { table: 'loi', column: 'loicod', $type: null },
224
- thecle: { table: 'the', column: 'thecle', $type: null },
225
- },
226
- $type: null,
227
- $input: null
228
- };
229
- const natloi = {
230
- tableName: 'natloi',
231
- columns: ['groupe', 'natloilib'],
232
- requiredForInsert: ['groupe', 'natloilib'],
233
- primaryKey: 'groupe',
234
- foreignKeys: {},
235
- $type: null,
236
- $input: null
237
- };
238
- const org = {
239
- tableName: 'org',
240
- columns: ['orgcod', 'typorgcod', 'orgnom', 'orgliblon', 'codass', 'orglibaff', 'orgord', 'orgurl', 'orglibcou', 'org_de', 'urltra', 'inttra', 'orgdatdebcop', 'orgdatfincop', 'orgnomcouv', 'senorgcod', 'html_color', 'orgdatdeb', 'orgdatfin', 'orggen', 'url_podcast'],
241
- requiredForInsert: ['orgcod', 'typorgcod', 'orgnom'],
242
- primaryKey: 'orgcod',
243
- foreignKeys: {},
244
- $type: null,
245
- $input: null
246
- };
247
- const orgnomhis = {
248
- tableName: 'orgnomhis',
249
- columns: ['onhnum', 'orgcod', 'orgnom', 'orglibcou', 'orgliblon', 'org_de', 'intra', 'orgnomcouv', 'onhfin', 'orglibaff'],
250
- requiredForInsert: ['onhnum', 'orgcod', 'orgnom', 'orglibcou', 'orgliblon', 'org_de', 'onhfin'],
251
- primaryKey: 'onhnum',
252
- foreignKeys: { orgcod: { table: 'org', column: 'orgcod', $type: null }, },
253
- $type: null,
254
- $input: null
255
- };
256
- const orippr = {
257
- tableName: 'orippr',
258
- columns: ['oripprcod', 'oripprlib'],
259
- requiredForInsert: ['oripprcod', 'oripprlib'],
260
- primaryKey: 'oripprcod',
261
- foreignKeys: {},
262
- $type: null,
263
- $input: null
264
- };
265
- const oritxt = {
266
- tableName: 'oritxt',
267
- columns: ['oritxtcod', 'oritxtlib', 'oriordre', 'codass', 'oritxtlibfem', 'oritxtado', 'oritxtorg', 'oritxtmod', 'oritxtign'],
268
- requiredForInsert: ['oritxtcod', 'oritxtlib', 'oritxtlibfem'],
269
- primaryKey: 'oritxtcod',
270
- foreignKeys: {},
271
- $type: null,
272
- $input: null
273
- };
274
- const posvot = {
275
- tableName: 'posvot',
276
- columns: ['posvotcod', 'posvotlib'],
277
- requiredForInsert: ['posvotcod', 'posvotlib'],
278
- primaryKey: 'posvotcod',
279
- foreignKeys: {},
280
- $type: null,
281
- $input: null
282
- };
283
- const qua = {
284
- tableName: 'qua',
285
- columns: ['quacod', 'qualic', 'quaabr', 'quaabrplu'],
286
- requiredForInsert: ['quacod', 'qualic', 'quaabr', 'quaabrplu'],
287
- primaryKey: 'quacod',
288
- foreignKeys: {},
289
- $type: null,
290
- $input: null
291
- };
292
- const rap = {
293
- tableName: 'rap',
294
- columns: ['rapcod', 'sesann', 'coddenrap', 'typurl', 'blecod', 'rapnum', 'raptom', 'rapfac', 'rapann', 'rapvol', 'raptitcou', 'raptil', 'rapurl', 'url2', 'url3', 'url4', 'url2txt', 'url3txt', 'url4txt', 'date_depot', 'prix', 'rapnuman', 'numerobis', 'rapsoustit', 'rapdatsea', 'depot_only', 'rapres', 'forpubcod'],
295
- requiredForInsert: ['rapcod', 'sesann', 'coddenrap', 'typurl', 'date_depot'],
296
- primaryKey: 'rapcod',
297
- foreignKeys: {},
298
- $type: null,
299
- $input: null
300
- };
301
- const raporg = {
302
- tableName: 'raporg',
303
- columns: ['rapcod', 'orgcod'],
304
- requiredForInsert: ['rapcod', 'orgcod'],
305
- primaryKey: 'rapcod',
306
- foreignKeys: {
307
- rapcod: { table: 'rap', column: 'rapcod', $type: null },
308
- orgcod: { table: 'org', column: 'orgcod', $type: null },
309
- },
310
- $type: null,
311
- $input: null
312
- };
313
- const rapthe = {
314
- tableName: 'rapthe',
315
- columns: ['rapcod', 'thecle'],
316
- requiredForInsert: ['rapcod', 'thecle'],
317
- primaryKey: 'rapcod',
318
- foreignKeys: {
319
- rapcod: { table: 'rap', column: 'rapcod', $type: null },
320
- thecle: { table: 'the', column: 'thecle', $type: null },
321
- },
322
- $type: null,
323
- $input: null
324
- };
325
- const rolsig = {
326
- tableName: 'rolsig',
327
- columns: ['signataire', 'rolsiglib'],
328
- requiredForInsert: ['signataire', 'rolsiglib'],
329
- primaryKey: 'signataire',
330
- foreignKeys: {},
331
- $type: null,
332
- $input: null
333
- };
334
- const scr = {
335
- tableName: 'scr',
336
- columns: ['sesann', 'scrnum', 'code', 'scrint', 'scrdat', 'scrpou', 'scrcon', 'scrvot', 'scrsuf', 'scrvotsea', 'scrsufsea', 'scrpousea', 'scrconsea', 'scrmaj', 'scrmajsea', 'soslib', 'scrbaspag', 'scrdateff', 'scrjso'],
337
- requiredForInsert: ['sesann', 'scrnum'],
338
- primaryKey: 'sesann',
339
- foreignKeys: {},
340
- $type: null,
341
- $input: null
342
- };
343
- const ses = {
344
- tableName: 'ses',
345
- columns: ['sesann', 'seslib'],
346
- requiredForInsert: ['sesann', 'seslib'],
347
- primaryKey: 'sesann',
348
- foreignKeys: {},
349
- $type: null,
350
- $input: null
351
- };
352
- const stavot = {
353
- tableName: 'stavot',
354
- columns: ['stavotidt', 'stavotlib'],
355
- requiredForInsert: ['stavotidt', 'stavotlib'],
356
- primaryKey: 'stavotidt',
357
- foreignKeys: {},
358
- $type: null,
359
- $input: null
360
- };
361
- const texte = {
362
- tableName: 'texte',
363
- columns: ['texcod', 'oritxtcod', 'typtxtcod', 'typurl', 'lecassidt', 'sesann', 'orgcod', 'texnum', 'texurl', 'url2', 'url3', 'url4', 'url2txt', 'url3txt', 'url4txt', 'txtoritxtdat', 'prix', 'numerobis', 'texdatsea', 'reserve_comspe', 'datrejet_disc_immediate', 'texace', 'url_cnen'],
364
- requiredForInsert: ['texcod', 'typtxtcod', 'typurl', 'lecassidt', 'txtoritxtdat'],
365
- primaryKey: 'texcod',
366
- foreignKeys: {},
367
- $type: null,
368
- $input: null
369
- };
370
- const texte_ancien = {
371
- tableName: 'texte_ancien',
372
- columns: ['id', 'origine', 'sesann', 'numero', 'rectifie', 'date_effet', 'lecture', 'statut', 'urgence', 'article_type', 'type_texte', 'libelle', 'fichier'],
373
- requiredForInsert: ['id', 'origine', 'sesann', 'numero', 'rectifie', 'urgence'],
374
- primaryKey: 'id',
375
- foreignKeys: {},
376
- $type: null,
377
- $input: null
378
- };
379
- const the = {
380
- tableName: 'the',
381
- columns: ['thecle', 'thelib', 'theali'],
382
- requiredForInsert: ['thecle', 'thelib'],
383
- primaryKey: 'thecle',
384
- foreignKeys: {},
385
- $type: null,
386
- $input: null
387
- };
388
- const titsen = {
389
- tableName: 'titsen',
390
- columns: ['titsencod', 'titsenlib'],
391
- requiredForInsert: ['titsencod'],
392
- primaryKey: 'titsencod',
393
- foreignKeys: {},
394
- $type: null,
395
- $input: null
396
- };
397
- const typatt = {
398
- tableName: 'typatt',
399
- columns: ['typattcod', 'typattlib'],
400
- requiredForInsert: ['typattcod', 'typattlib'],
401
- primaryKey: 'typattcod',
402
- foreignKeys: {},
403
- $type: null,
404
- $input: null
405
- };
406
- const typaut = {
407
- tableName: 'typaut',
408
- columns: ['typautcod', 'typautlib'],
409
- requiredForInsert: ['typautcod', 'typautlib'],
410
- primaryKey: 'typautcod',
411
- foreignKeys: {},
412
- $type: null,
413
- $input: null
414
- };
415
- const typdoc = {
416
- tableName: 'typdoc',
417
- columns: ['typdoccod', 'typdoclib'],
418
- requiredForInsert: ['typdoccod'],
419
- primaryKey: 'typdoccod',
420
- foreignKeys: {},
421
- $type: null,
422
- $input: null
423
- };
424
- const typevtsea = {
425
- tableName: 'typevtsea',
426
- columns: ['typevtcod', 'typevtlib'],
427
- requiredForInsert: ['typevtcod', 'typevtlib'],
428
- primaryKey: 'typevtcod',
429
- foreignKeys: {},
430
- $type: null,
431
- $input: null
432
- };
433
- const typlec = {
434
- tableName: 'typlec',
435
- columns: ['typleccod', 'typleclib', 'typlecord'],
436
- requiredForInsert: ['typleccod', 'typleclib'],
437
- primaryKey: 'typleccod',
438
- foreignKeys: {},
439
- $type: null,
440
- $input: null
441
- };
442
- const typloi = {
443
- tableName: 'typloi',
444
- columns: ['typloicod', 'typloilib', 'groupe', 'typloiden', 'typloigen', 'typloitit', 'typloidenplu', 'typloide', 'typloiabr'],
445
- requiredForInsert: ['typloicod', 'typloilib'],
446
- primaryKey: 'typloicod',
447
- foreignKeys: {},
448
- $type: null,
449
- $input: null
450
- };
451
- const typorg = {
452
- tableName: 'typorg',
453
- columns: ['typorgcod', 'typorglib', 'typorgurl', 'typorgtitens', 'typorgvid', 'typorgord'],
454
- requiredForInsert: ['typorgcod', 'typorglib'],
455
- primaryKey: 'typorgcod',
456
- foreignKeys: {},
457
- $type: null,
458
- $input: null
459
- };
460
- const typrap = {
461
- tableName: 'typrap',
462
- columns: ['typraprap', 'typraplib', 'typrapind', 'typraplibplu', 'typrapurl', 'catrapcod', 'typraprep', 'typrapnot', 'typrapses'],
463
- requiredForInsert: ['typraprap', 'typraplib', 'typrapind'],
464
- primaryKey: 'typraprap',
465
- foreignKeys: {},
466
- $type: null,
467
- $input: null
468
- };
469
- const typtxt = {
470
- tableName: 'typtxt',
471
- columns: ['typtxtcod', 'typtxtlib'],
472
- requiredForInsert: ['typtxtcod', 'typtxtlib'],
473
- primaryKey: 'typtxtcod',
474
- foreignKeys: {},
475
- $type: null,
476
- $input: null
477
- };
478
- const typurl = {
479
- tableName: 'typurl',
480
- columns: ['typurl', 'libtypurl'],
481
- requiredForInsert: ['typurl', 'libtypurl'],
482
- primaryKey: 'typurl',
483
- foreignKeys: {},
484
- $type: null,
485
- $input: null
486
- };
487
- const votsen = {
488
- tableName: 'votsen',
489
- columns: ['sesann', 'scrnum', 'senmat', 'posvotcod', 'titsencod', 'stavotidt', 'senmatdel', 'votsenmar'],
490
- requiredForInsert: ['sesann', 'scrnum', 'senmat', 'titsencod', 'stavotidt'],
491
- primaryKey: 'sesann',
492
- foreignKeys: {},
493
- $type: null,
494
- $input: null
495
- };
496
- export const tables = {
497
- amescr,
498
- ass,
499
- aud,
500
- auteur,
501
- ble,
502
- catrap,
503
- corscr,
504
- date_seance,
505
- deccoc,
506
- denrap,
507
- doc,
508
- docatt,
509
- docsea,
510
- ecr,
511
- etaloi,
512
- evtsea,
513
- forpub,
514
- gen,
515
- lecass,
516
- lecassrap,
517
- lecture,
518
- lnkrap,
519
- loi,
520
- loithe,
521
- natloi,
522
- org,
523
- orgnomhis,
524
- orippr,
525
- oritxt,
526
- posvot,
527
- qua,
528
- rap,
529
- raporg,
530
- rapthe,
531
- rolsig,
532
- scr,
533
- ses,
534
- stavot,
535
- texte,
536
- texte_ancien,
537
- the,
538
- titsen,
539
- typatt,
540
- typaut,
541
- typdoc,
542
- typevtsea,
543
- typlec,
544
- typloi,
545
- typorg,
546
- typrap,
547
- typtxt,
548
- typurl,
549
- votsen,
550
- };
1
+ /**
2
+ * This file was generated by kysely-codegen.
3
+ * Please do not edit it manually.
4
+ */
5
+ export {};