@tricoteuses/senat 2.7.1 → 2.8.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/lib/aggregates.d.ts +52 -0
- package/lib/aggregates.js +949 -0
- package/lib/aggregates.mjs +726 -0
- package/lib/aggregates.ts +852 -0
- package/lib/config.mjs +16 -0
- package/lib/config.ts +26 -0
- package/lib/databases.mjs +55 -0
- package/lib/databases.ts +68 -0
- package/lib/datasets.mjs +78 -0
- package/lib/datasets.ts +118 -0
- package/lib/fields.d.ts +10 -0
- package/lib/fields.js +68 -0
- package/lib/fields.mjs +22 -0
- package/lib/fields.ts +29 -0
- package/lib/index.mjs +7 -0
- package/lib/index.ts +64 -0
- package/lib/inserters.d.ts +98 -0
- package/lib/inserters.js +500 -0
- package/lib/inserters.mjs +360 -0
- package/lib/inserters.ts +521 -0
- package/lib/loaders.d.ts +1 -0
- package/lib/loaders.js +5 -0
- package/lib/loaders.mjs +97 -0
- package/lib/loaders.ts +173 -0
- package/lib/model/agenda.js +22 -22
- package/lib/model/ameli.mjs +57 -0
- package/lib/model/ameli.ts +86 -0
- package/lib/model/debats.mjs +43 -0
- package/lib/model/debats.ts +68 -0
- package/lib/model/dosleg.mjs +163 -0
- package/lib/model/dosleg.ts +204 -0
- package/lib/model/index.mjs +4 -0
- package/lib/model/index.ts +13 -0
- package/lib/model/questions.d.ts +0 -20
- package/lib/model/questions.js +1 -32
- package/lib/model/questions.mjs +76 -0
- package/lib/model/questions.ts +102 -0
- package/lib/model/sens.mjs +339 -0
- package/lib/model/sens.ts +432 -0
- package/lib/model/texte.mjs +156 -0
- package/lib/model/texte.ts +174 -0
- package/lib/raw_types/ameli.d.ts +20 -0
- package/lib/raw_types/questions.d.ts +4 -70
- package/lib/raw_types_kysely/ameli.d.ts +915 -0
- package/lib/raw_types_kysely/ameli.js +7 -0
- package/lib/raw_types_kysely/ameli.mjs +5 -0
- package/lib/raw_types_kysely/ameli.ts +951 -0
- package/lib/raw_types_kysely/debats.d.ts +207 -0
- package/lib/raw_types_kysely/debats.js +7 -0
- package/lib/raw_types_kysely/debats.mjs +5 -0
- package/lib/raw_types_kysely/debats.ts +222 -0
- package/lib/raw_types_kysely/dosleg.d.ts +3532 -0
- package/lib/raw_types_kysely/dosleg.js +7 -0
- package/lib/raw_types_kysely/dosleg.mjs +5 -0
- package/lib/raw_types_kysely/dosleg.ts +3621 -0
- package/lib/raw_types_kysely/questions.d.ts +414 -0
- package/lib/raw_types_kysely/questions.js +7 -0
- package/lib/raw_types_kysely/questions.mjs +5 -0
- package/lib/raw_types_kysely/questions.ts +426 -0
- package/lib/raw_types_kysely/sens.d.ts +4394 -0
- package/lib/raw_types_kysely/sens.js +7 -0
- package/lib/raw_types_kysely/sens.mjs +5 -0
- package/lib/raw_types_kysely/sens.ts +4499 -0
- package/lib/raw_types_schemats/ameli.mjs +2 -0
- package/lib/raw_types_schemats/ameli.ts +601 -0
- package/lib/raw_types_schemats/debats.mjs +2 -0
- package/lib/raw_types_schemats/debats.ts +145 -0
- package/lib/raw_types_schemats/dosleg.mjs +2 -0
- package/lib/raw_types_schemats/dosleg.ts +2193 -0
- package/lib/raw_types_schemats/questions.mjs +2 -0
- package/lib/raw_types_schemats/questions.ts +249 -0
- package/lib/raw_types_schemats/sens.mjs +2 -0
- package/lib/raw_types_schemats/sens.ts +2907 -0
- package/lib/scripts/convert_data.mjs +95 -0
- package/lib/scripts/convert_data.ts +119 -0
- package/lib/scripts/data-download.d.ts +1 -0
- package/lib/scripts/data-download.js +9 -0
- package/lib/scripts/datautil.mjs +16 -0
- package/lib/scripts/datautil.ts +19 -0
- package/lib/scripts/images/transparent_150x192.jpg +0 -0
- package/lib/scripts/images/transparent_155x225.jpg +0 -0
- package/lib/scripts/parse_textes.mjs +38 -0
- package/lib/scripts/parse_textes.ts +52 -0
- package/lib/scripts/retrieve_documents.mjs +243 -0
- package/lib/scripts/retrieve_documents.ts +279 -0
- package/lib/scripts/retrieve_open_data.js +11 -9
- package/lib/scripts/retrieve_open_data.mjs +214 -0
- package/lib/scripts/retrieve_open_data.ts +261 -0
- package/lib/scripts/retrieve_senateurs_photos.mjs +147 -0
- package/lib/scripts/retrieve_senateurs_photos.ts +177 -0
- package/lib/scripts/retrieve_textes.d.ts +1 -0
- package/lib/scripts/retrieve_textes.mjs +165 -0
- package/lib/scripts/retrieve_textes.ts +79 -0
- package/lib/scripts/shared/cli_helpers.ts +36 -0
- package/lib/scripts/shared/util.ts +33 -0
- package/lib/strings.mjs +18 -0
- package/lib/strings.ts +26 -0
- package/lib/types/ameli.mjs +13 -0
- package/lib/types/ameli.ts +21 -0
- package/lib/types/debats.mjs +2 -0
- package/lib/types/debats.ts +6 -0
- package/lib/types/dosleg.mjs +151 -0
- package/lib/types/dosleg.ts +284 -0
- package/lib/types/questions.mjs +1 -0
- package/lib/types/questions.ts +3 -0
- package/lib/types/sens.mjs +1 -0
- package/lib/types/sens.ts +12 -0
- package/lib/types/sessions.mjs +43 -0
- package/lib/types/sessions.ts +42 -0
- package/lib/types/texte.mjs +16 -0
- package/lib/types/texte.ts +66 -0
- package/lib/typings/windows-1252.d.js +2 -0
- package/lib/typings/windows-1252.d.mjs +2 -0
- package/lib/typings/windows-1252.d.ts +11 -0
- package/lib/validators/config.mjs +54 -0
- package/lib/validators/config.ts +79 -0
- package/lib/validators/senat.mjs +24 -0
- package/lib/validators/senat.ts +26 -0
- package/package.json +7 -5
|
@@ -0,0 +1,4499 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was generated by kysely-codegen.
|
|
3
|
+
* Please do not edit it manually.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import type { ColumnType } from "kysely";
|
|
7
|
+
|
|
8
|
+
export type Generated<T> = T extends ColumnType<infer S, infer I, infer U>
|
|
9
|
+
? ColumnType<S, I | undefined, U>
|
|
10
|
+
: ColumnType<T, T | undefined, T>;
|
|
11
|
+
|
|
12
|
+
export type Int8 = ColumnType<string, bigint | number | string, bigint | number | string>;
|
|
13
|
+
|
|
14
|
+
export type Timestamp = ColumnType<Date, Date | string, Date | string>;
|
|
15
|
+
|
|
16
|
+
export interface Activite {
|
|
17
|
+
/**
|
|
18
|
+
* Identifiant
|
|
19
|
+
*/
|
|
20
|
+
actid: Int8;
|
|
21
|
+
/**
|
|
22
|
+
* Libellé
|
|
23
|
+
*/
|
|
24
|
+
actlib: string | null;
|
|
25
|
+
/**
|
|
26
|
+
* Libellé court
|
|
27
|
+
*/
|
|
28
|
+
actlic: string | null;
|
|
29
|
+
/**
|
|
30
|
+
* Catégorie
|
|
31
|
+
*/
|
|
32
|
+
catactcod: string;
|
|
33
|
+
comcod: string | null;
|
|
34
|
+
datdeb: Timestamp;
|
|
35
|
+
datfin: Timestamp;
|
|
36
|
+
delegacod: string | null;
|
|
37
|
+
envjodat: Timestamp | null;
|
|
38
|
+
gecod: string | null;
|
|
39
|
+
giacod: string | null;
|
|
40
|
+
nb_delegations: Generated<Int8>;
|
|
41
|
+
nb_participants: Generated<Int8>;
|
|
42
|
+
scrid: Int8 | null;
|
|
43
|
+
/**
|
|
44
|
+
* Type
|
|
45
|
+
*/
|
|
46
|
+
typactcod: string;
|
|
47
|
+
validdat: Timestamp | null;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export interface ActiviteDelegation {
|
|
51
|
+
actid: Int8;
|
|
52
|
+
delegactid: Int8;
|
|
53
|
+
delegidx: Generated<Int8>;
|
|
54
|
+
senmat: string;
|
|
55
|
+
senmat_delegue: string | null;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export interface ActiviteLoi {
|
|
59
|
+
/**
|
|
60
|
+
* Identifiant de l'activité
|
|
61
|
+
*/
|
|
62
|
+
actid: Int8;
|
|
63
|
+
/**
|
|
64
|
+
* Identifiant d'un texte dans la table loi de la base DOSLEG
|
|
65
|
+
*/
|
|
66
|
+
loicod: string;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export interface ActiviteParticipant {
|
|
70
|
+
/**
|
|
71
|
+
* Activité à laquelle le Sénateur participe
|
|
72
|
+
*/
|
|
73
|
+
actid: Int8;
|
|
74
|
+
/**
|
|
75
|
+
* Identifiant
|
|
76
|
+
*/
|
|
77
|
+
actparid: Int8;
|
|
78
|
+
/**
|
|
79
|
+
* Fonction particulière
|
|
80
|
+
*/
|
|
81
|
+
fapcod: Generated<string>;
|
|
82
|
+
/**
|
|
83
|
+
* Ordonnancement dans la fonction. Permet notamment d'ordonner les présidents de réunion.
|
|
84
|
+
*/
|
|
85
|
+
fapidx: Generated<Int8 | null>;
|
|
86
|
+
/**
|
|
87
|
+
* Sénateur
|
|
88
|
+
*/
|
|
89
|
+
senmat: string;
|
|
90
|
+
teleparticipation: Generated<number | null>;
|
|
91
|
+
/**
|
|
92
|
+
* Sénateur présent ou excusé (au sens de la commission, pas de l'article 23bis).
|
|
93
|
+
*/
|
|
94
|
+
typactparcod: Generated<string>;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
export interface ActiviteSenateur {
|
|
98
|
+
/**
|
|
99
|
+
* Identifiant
|
|
100
|
+
*/
|
|
101
|
+
actsenid: Int8;
|
|
102
|
+
/**
|
|
103
|
+
* Début
|
|
104
|
+
*/
|
|
105
|
+
datdeb: Timestamp;
|
|
106
|
+
/**
|
|
107
|
+
* Fin
|
|
108
|
+
*/
|
|
109
|
+
datfin: Timestamp;
|
|
110
|
+
libelle: string | null;
|
|
111
|
+
/**
|
|
112
|
+
* Sénateur
|
|
113
|
+
*/
|
|
114
|
+
senmat: string;
|
|
115
|
+
/**
|
|
116
|
+
* Type d'activité
|
|
117
|
+
*/
|
|
118
|
+
typactsencod: string;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
export interface ActivitesLiees {
|
|
122
|
+
droite: Int8;
|
|
123
|
+
gauche: Int8;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export interface Actpro {
|
|
127
|
+
/**
|
|
128
|
+
* Code activité professionnelle
|
|
129
|
+
*/
|
|
130
|
+
actprocod: string;
|
|
131
|
+
actprolib: string;
|
|
132
|
+
actpronumtri: Int8 | null;
|
|
133
|
+
/**
|
|
134
|
+
* Date système création
|
|
135
|
+
*/
|
|
136
|
+
syscredat: Timestamp | null;
|
|
137
|
+
/**
|
|
138
|
+
* Date système modification
|
|
139
|
+
*/
|
|
140
|
+
sysmajdat: Timestamp | null;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
export interface Adresse {
|
|
144
|
+
/**
|
|
145
|
+
* Bureau distributeur
|
|
146
|
+
*/
|
|
147
|
+
adrburdis: string | null;
|
|
148
|
+
/**
|
|
149
|
+
* Code Cedex
|
|
150
|
+
*/
|
|
151
|
+
adrcdxcod: string | null;
|
|
152
|
+
/**
|
|
153
|
+
* Libellé Cedex
|
|
154
|
+
*/
|
|
155
|
+
adrcdxlib: string | null;
|
|
156
|
+
/**
|
|
157
|
+
* Complément adresse
|
|
158
|
+
*/
|
|
159
|
+
adrcmp: string | null;
|
|
160
|
+
/**
|
|
161
|
+
* Complément adresse 2
|
|
162
|
+
*/
|
|
163
|
+
adrcmp2: string | null;
|
|
164
|
+
/**
|
|
165
|
+
* Code postal
|
|
166
|
+
*/
|
|
167
|
+
adrcodpos: string | null;
|
|
168
|
+
/**
|
|
169
|
+
* Commune
|
|
170
|
+
*/
|
|
171
|
+
adrcom: string | null;
|
|
172
|
+
/**
|
|
173
|
+
* Identifiant
|
|
174
|
+
*/
|
|
175
|
+
adrid: Int8;
|
|
176
|
+
/**
|
|
177
|
+
* nom de la voie
|
|
178
|
+
*/
|
|
179
|
+
adrnomvoi: string | null;
|
|
180
|
+
/**
|
|
181
|
+
* Numéro de tri
|
|
182
|
+
*/
|
|
183
|
+
adrnumtri: Int8 | null;
|
|
184
|
+
/**
|
|
185
|
+
* Numéro dans la voie
|
|
186
|
+
*/
|
|
187
|
+
adrnumvoi: string | null;
|
|
188
|
+
/**
|
|
189
|
+
* Identifiant point de contact
|
|
190
|
+
*/
|
|
191
|
+
poiconid: Int8;
|
|
192
|
+
syscredat: Timestamp | null;
|
|
193
|
+
sysmajdat: Timestamp | null;
|
|
194
|
+
typbistercod: string;
|
|
195
|
+
typvoicod: string;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
export interface Asster {
|
|
199
|
+
assterart: string | null;
|
|
200
|
+
asstercod: string;
|
|
201
|
+
assterlib: string | null;
|
|
202
|
+
assterlic: string | null;
|
|
203
|
+
assternumtri: Int8 | null;
|
|
204
|
+
assterurlcmp: string | null;
|
|
205
|
+
/**
|
|
206
|
+
* Date système création
|
|
207
|
+
*/
|
|
208
|
+
syscredat: Timestamp | null;
|
|
209
|
+
/**
|
|
210
|
+
* Date système modification
|
|
211
|
+
*/
|
|
212
|
+
sysmajdat: Timestamp | null;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
export interface Bur {
|
|
216
|
+
/**
|
|
217
|
+
* Code bureau 4e Rép.
|
|
218
|
+
*/
|
|
219
|
+
burcod: string;
|
|
220
|
+
/**
|
|
221
|
+
* Libellé
|
|
222
|
+
*/
|
|
223
|
+
burlib: string | null;
|
|
224
|
+
/**
|
|
225
|
+
* Libellé féminin
|
|
226
|
+
*/
|
|
227
|
+
burlibfem: string | null;
|
|
228
|
+
/**
|
|
229
|
+
* Libellé féminin pluriel
|
|
230
|
+
*/
|
|
231
|
+
burlibfemplu: string | null;
|
|
232
|
+
/**
|
|
233
|
+
* Libellé honorariat
|
|
234
|
+
*/
|
|
235
|
+
burlibhon: string | null;
|
|
236
|
+
/**
|
|
237
|
+
* Libellé honorariat féminin
|
|
238
|
+
*/
|
|
239
|
+
burlibhonfem: string | null;
|
|
240
|
+
/**
|
|
241
|
+
* Libellé honorariat pluriel
|
|
242
|
+
*/
|
|
243
|
+
burlibhonplu: string | null;
|
|
244
|
+
/**
|
|
245
|
+
* Libellé pluriel
|
|
246
|
+
*/
|
|
247
|
+
burlibplu: string | null;
|
|
248
|
+
/**
|
|
249
|
+
* Libellé court
|
|
250
|
+
*/
|
|
251
|
+
burlic: string | null;
|
|
252
|
+
/**
|
|
253
|
+
* Libellé court féminin
|
|
254
|
+
*/
|
|
255
|
+
burlicfem: string | null;
|
|
256
|
+
/**
|
|
257
|
+
* Libellé court féminin pluriel
|
|
258
|
+
*/
|
|
259
|
+
burlicfemplu: string | null;
|
|
260
|
+
/**
|
|
261
|
+
* Libellé court pluriel
|
|
262
|
+
*/
|
|
263
|
+
burlicplu: string | null;
|
|
264
|
+
/**
|
|
265
|
+
* Libellé long
|
|
266
|
+
*/
|
|
267
|
+
burlil: string | null;
|
|
268
|
+
/**
|
|
269
|
+
* Libellé long féminin
|
|
270
|
+
*/
|
|
271
|
+
burlilfem: string | null;
|
|
272
|
+
/**
|
|
273
|
+
* Libellé long féminin pluriel
|
|
274
|
+
*/
|
|
275
|
+
burlilfemplu: string | null;
|
|
276
|
+
/**
|
|
277
|
+
* Libellé long pluriel
|
|
278
|
+
*/
|
|
279
|
+
burlilplu: string | null;
|
|
280
|
+
/**
|
|
281
|
+
* Numéro de tri
|
|
282
|
+
*/
|
|
283
|
+
burnumtri: Int8 | null;
|
|
284
|
+
/**
|
|
285
|
+
* Date système création
|
|
286
|
+
*/
|
|
287
|
+
syscredat: Timestamp | null;
|
|
288
|
+
/**
|
|
289
|
+
* Date système modification
|
|
290
|
+
*/
|
|
291
|
+
sysmajdat: Timestamp | null;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
export interface CategorieActivite {
|
|
295
|
+
catactcod: string;
|
|
296
|
+
catactlib: string;
|
|
297
|
+
catactlibtap: string | null;
|
|
298
|
+
catactlic: string;
|
|
299
|
+
pleniere: Generated<number | null>;
|
|
300
|
+
publiee_jo: Generated<number | null>;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
export interface Com {
|
|
304
|
+
/**
|
|
305
|
+
* Code transfert AMELI
|
|
306
|
+
*/
|
|
307
|
+
comcodameli: string | null;
|
|
308
|
+
/**
|
|
309
|
+
* Libellé AMELI
|
|
310
|
+
*/
|
|
311
|
+
comlibameli: string | null;
|
|
312
|
+
/**
|
|
313
|
+
* Libellé long minuscule
|
|
314
|
+
*/
|
|
315
|
+
comlilmin: string | null;
|
|
316
|
+
/**
|
|
317
|
+
* Code division
|
|
318
|
+
*/
|
|
319
|
+
divcod: Generated<string | null>;
|
|
320
|
+
/**
|
|
321
|
+
* Libellé
|
|
322
|
+
*/
|
|
323
|
+
evelib: string | null;
|
|
324
|
+
/**
|
|
325
|
+
* Libellé court
|
|
326
|
+
*/
|
|
327
|
+
evelic: string | null;
|
|
328
|
+
/**
|
|
329
|
+
* Libellé long
|
|
330
|
+
*/
|
|
331
|
+
evelil: string | null;
|
|
332
|
+
/**
|
|
333
|
+
* Article
|
|
334
|
+
*/
|
|
335
|
+
orgart: string | null;
|
|
336
|
+
/**
|
|
337
|
+
* Code organisme
|
|
338
|
+
*/
|
|
339
|
+
orgcod: string;
|
|
340
|
+
/**
|
|
341
|
+
* Date création
|
|
342
|
+
*/
|
|
343
|
+
orgdatcre: Timestamp | null;
|
|
344
|
+
/**
|
|
345
|
+
* Date de fin
|
|
346
|
+
*/
|
|
347
|
+
orgdatfin: Timestamp | null;
|
|
348
|
+
/**
|
|
349
|
+
* NuméroTiers
|
|
350
|
+
*/
|
|
351
|
+
orgnumtie: string | null;
|
|
352
|
+
/**
|
|
353
|
+
* Numéro de tri
|
|
354
|
+
*/
|
|
355
|
+
orgnumtri: Int8 | null;
|
|
356
|
+
/**
|
|
357
|
+
* URL complet
|
|
358
|
+
*/
|
|
359
|
+
orgurlcmp: string | null;
|
|
360
|
+
/**
|
|
361
|
+
* URL simplifié
|
|
362
|
+
*/
|
|
363
|
+
orgurlsim: string | null;
|
|
364
|
+
/**
|
|
365
|
+
* Date système création
|
|
366
|
+
*/
|
|
367
|
+
syscredat: Timestamp | null;
|
|
368
|
+
/**
|
|
369
|
+
* Date système modification
|
|
370
|
+
*/
|
|
371
|
+
sysmajdat: Timestamp | null;
|
|
372
|
+
/**
|
|
373
|
+
* Code validité
|
|
374
|
+
*/
|
|
375
|
+
temvalcod: string | null;
|
|
376
|
+
/**
|
|
377
|
+
* Code type organisme
|
|
378
|
+
*/
|
|
379
|
+
typorgcod: string;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
export interface Csp {
|
|
383
|
+
/**
|
|
384
|
+
* Code catégorie professionnelle
|
|
385
|
+
*/
|
|
386
|
+
catprocod: string;
|
|
387
|
+
/**
|
|
388
|
+
* Code CSP
|
|
389
|
+
*/
|
|
390
|
+
cspcod: string;
|
|
391
|
+
/**
|
|
392
|
+
* Code famille CSP
|
|
393
|
+
*/
|
|
394
|
+
cspfamcod: string;
|
|
395
|
+
/**
|
|
396
|
+
* Rubrique CSP
|
|
397
|
+
*/
|
|
398
|
+
csplib: string | null;
|
|
399
|
+
/**
|
|
400
|
+
* Numéro de tri CSP
|
|
401
|
+
*/
|
|
402
|
+
cspnumtri: Int8 | null;
|
|
403
|
+
/**
|
|
404
|
+
* Date système création
|
|
405
|
+
*/
|
|
406
|
+
syscredat: Timestamp | null;
|
|
407
|
+
/**
|
|
408
|
+
* Date système modification
|
|
409
|
+
*/
|
|
410
|
+
sysmajdat: Timestamp | null;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
export interface Delega {
|
|
414
|
+
/**
|
|
415
|
+
* Libellé
|
|
416
|
+
*/
|
|
417
|
+
evelib: string | null;
|
|
418
|
+
/**
|
|
419
|
+
* Libellé court
|
|
420
|
+
*/
|
|
421
|
+
evelic: string | null;
|
|
422
|
+
/**
|
|
423
|
+
* Libellé long
|
|
424
|
+
*/
|
|
425
|
+
evelil: string | null;
|
|
426
|
+
/**
|
|
427
|
+
* Article
|
|
428
|
+
*/
|
|
429
|
+
orgart: string | null;
|
|
430
|
+
/**
|
|
431
|
+
* Code organisme
|
|
432
|
+
*/
|
|
433
|
+
orgcod: string;
|
|
434
|
+
/**
|
|
435
|
+
* Date création
|
|
436
|
+
*/
|
|
437
|
+
orgdatcre: Timestamp | null;
|
|
438
|
+
/**
|
|
439
|
+
* Date de fin
|
|
440
|
+
*/
|
|
441
|
+
orgdatfin: Timestamp | null;
|
|
442
|
+
/**
|
|
443
|
+
* Membres Députés
|
|
444
|
+
*/
|
|
445
|
+
orgmemdep: Generated<string | null>;
|
|
446
|
+
/**
|
|
447
|
+
* Mode désignation
|
|
448
|
+
*/
|
|
449
|
+
orgmoddes: string | null;
|
|
450
|
+
/**
|
|
451
|
+
* NuméroTiers
|
|
452
|
+
*/
|
|
453
|
+
orgnumtie: string | null;
|
|
454
|
+
/**
|
|
455
|
+
* Numéro de tri
|
|
456
|
+
*/
|
|
457
|
+
orgnumtri: Int8 | null;
|
|
458
|
+
/**
|
|
459
|
+
* Régime juridique
|
|
460
|
+
*/
|
|
461
|
+
orgregjur: string | null;
|
|
462
|
+
/**
|
|
463
|
+
* URL complet
|
|
464
|
+
*/
|
|
465
|
+
orgurlcmp: string | null;
|
|
466
|
+
/**
|
|
467
|
+
* URL simplifié
|
|
468
|
+
*/
|
|
469
|
+
orgurlsim: string | null;
|
|
470
|
+
/**
|
|
471
|
+
* Date système création
|
|
472
|
+
*/
|
|
473
|
+
syscredat: Timestamp | null;
|
|
474
|
+
/**
|
|
475
|
+
* Date système modification
|
|
476
|
+
*/
|
|
477
|
+
sysmajdat: Timestamp | null;
|
|
478
|
+
/**
|
|
479
|
+
* Code validité
|
|
480
|
+
*/
|
|
481
|
+
temvalcod: string | null;
|
|
482
|
+
/**
|
|
483
|
+
* Code type organisme
|
|
484
|
+
*/
|
|
485
|
+
typorgcod: string;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
export interface Design {
|
|
489
|
+
/**
|
|
490
|
+
* Code désignataire
|
|
491
|
+
*/
|
|
492
|
+
designcod: string;
|
|
493
|
+
/**
|
|
494
|
+
* Numéro de tri
|
|
495
|
+
*/
|
|
496
|
+
designnumtri: Int8 | null;
|
|
497
|
+
/**
|
|
498
|
+
* Libellé
|
|
499
|
+
*/
|
|
500
|
+
evelib: string | null;
|
|
501
|
+
/**
|
|
502
|
+
* Libellé court
|
|
503
|
+
*/
|
|
504
|
+
evelic: string | null;
|
|
505
|
+
/**
|
|
506
|
+
* Libellé long
|
|
507
|
+
*/
|
|
508
|
+
evelil: string | null;
|
|
509
|
+
/**
|
|
510
|
+
* Observations
|
|
511
|
+
*/
|
|
512
|
+
eveobs: string | null;
|
|
513
|
+
/**
|
|
514
|
+
* Code
|
|
515
|
+
*/
|
|
516
|
+
moddescod: string;
|
|
517
|
+
/**
|
|
518
|
+
* Code organisme
|
|
519
|
+
*/
|
|
520
|
+
orgcod: string;
|
|
521
|
+
/**
|
|
522
|
+
* Date système création
|
|
523
|
+
*/
|
|
524
|
+
syscredat: Timestamp | null;
|
|
525
|
+
/**
|
|
526
|
+
* Date système modification
|
|
527
|
+
*/
|
|
528
|
+
sysmajdat: Timestamp | null;
|
|
529
|
+
/**
|
|
530
|
+
* Code validité
|
|
531
|
+
*/
|
|
532
|
+
temvalcod: string | null;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
export interface Designoep {
|
|
536
|
+
/**
|
|
537
|
+
* Code désignataire
|
|
538
|
+
*/
|
|
539
|
+
designcod: string;
|
|
540
|
+
designoepdatdeb: Timestamp | null;
|
|
541
|
+
designoepdatfin: Timestamp | null;
|
|
542
|
+
designoepid: Int8;
|
|
543
|
+
designoepnbrsup: Int8 | null;
|
|
544
|
+
designoepnbrtit: Int8 | null;
|
|
545
|
+
designoepnumtri: Int8 | null;
|
|
546
|
+
/**
|
|
547
|
+
* Libellé
|
|
548
|
+
*/
|
|
549
|
+
evelib: string | null;
|
|
550
|
+
/**
|
|
551
|
+
* Libellé court
|
|
552
|
+
*/
|
|
553
|
+
evelic: string | null;
|
|
554
|
+
/**
|
|
555
|
+
* Libellé long
|
|
556
|
+
*/
|
|
557
|
+
evelil: string | null;
|
|
558
|
+
fonmemextparcod: Generated<string>;
|
|
559
|
+
fonremlil: string | null;
|
|
560
|
+
fontemrem: Generated<string | null>;
|
|
561
|
+
incompat: string | null;
|
|
562
|
+
/**
|
|
563
|
+
* Code organisme
|
|
564
|
+
*/
|
|
565
|
+
orgcod: string;
|
|
566
|
+
/**
|
|
567
|
+
* Date système création
|
|
568
|
+
*/
|
|
569
|
+
syscredat: Timestamp | null;
|
|
570
|
+
/**
|
|
571
|
+
* Date système modification
|
|
572
|
+
*/
|
|
573
|
+
sysmajdat: Timestamp | null;
|
|
574
|
+
/**
|
|
575
|
+
* Code validité
|
|
576
|
+
*/
|
|
577
|
+
temvalcod: string | null;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
export interface Designorg {
|
|
581
|
+
/**
|
|
582
|
+
* Code désignataire
|
|
583
|
+
*/
|
|
584
|
+
designcod: string;
|
|
585
|
+
/**
|
|
586
|
+
* Libellé
|
|
587
|
+
*/
|
|
588
|
+
designlib: string | null;
|
|
589
|
+
/**
|
|
590
|
+
* Lbellé féminin
|
|
591
|
+
*/
|
|
592
|
+
designlibfem: string | null;
|
|
593
|
+
/**
|
|
594
|
+
* Libellé court
|
|
595
|
+
*/
|
|
596
|
+
designlic: string | null;
|
|
597
|
+
/**
|
|
598
|
+
* Libellé féminin court
|
|
599
|
+
*/
|
|
600
|
+
designlicfem: string | null;
|
|
601
|
+
/**
|
|
602
|
+
* Libellé long
|
|
603
|
+
*/
|
|
604
|
+
designlil: string | null;
|
|
605
|
+
/**
|
|
606
|
+
* Libellé féminin long
|
|
607
|
+
*/
|
|
608
|
+
designlilfem: string | null;
|
|
609
|
+
/**
|
|
610
|
+
* Numéro de tri
|
|
611
|
+
*/
|
|
612
|
+
designnumtri: Int8 | null;
|
|
613
|
+
/**
|
|
614
|
+
* Libellé
|
|
615
|
+
*/
|
|
616
|
+
evelib: string | null;
|
|
617
|
+
/**
|
|
618
|
+
* Libellé court
|
|
619
|
+
*/
|
|
620
|
+
evelic: string | null;
|
|
621
|
+
/**
|
|
622
|
+
* Libellé long
|
|
623
|
+
*/
|
|
624
|
+
evelil: string | null;
|
|
625
|
+
/**
|
|
626
|
+
* Observations
|
|
627
|
+
*/
|
|
628
|
+
eveobs: string | null;
|
|
629
|
+
/**
|
|
630
|
+
* Date système création
|
|
631
|
+
*/
|
|
632
|
+
syscredat: Timestamp | null;
|
|
633
|
+
/**
|
|
634
|
+
* Date système modification
|
|
635
|
+
*/
|
|
636
|
+
sysmajdat: Timestamp | null;
|
|
637
|
+
/**
|
|
638
|
+
* Code validité
|
|
639
|
+
*/
|
|
640
|
+
temvalcod: string | null;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
export interface Dpt {
|
|
644
|
+
/**
|
|
645
|
+
* Article
|
|
646
|
+
*/
|
|
647
|
+
dptart: string | null;
|
|
648
|
+
/**
|
|
649
|
+
* Commentaire listes
|
|
650
|
+
*/
|
|
651
|
+
dptcmt: string | null;
|
|
652
|
+
/**
|
|
653
|
+
* Code INSEE
|
|
654
|
+
*/
|
|
655
|
+
dptcod: string;
|
|
656
|
+
/**
|
|
657
|
+
* Date de début
|
|
658
|
+
*/
|
|
659
|
+
dptdatdeb: Timestamp | null;
|
|
660
|
+
/**
|
|
661
|
+
* Date de fin
|
|
662
|
+
*/
|
|
663
|
+
dptdatfin: Timestamp | null;
|
|
664
|
+
/**
|
|
665
|
+
* Libellé
|
|
666
|
+
*/
|
|
667
|
+
dptlib: string;
|
|
668
|
+
/**
|
|
669
|
+
* Libellé Moyen
|
|
670
|
+
*/
|
|
671
|
+
dptlibtri: string | null;
|
|
672
|
+
/**
|
|
673
|
+
* Libellé court
|
|
674
|
+
*/
|
|
675
|
+
dptlic: string | null;
|
|
676
|
+
/**
|
|
677
|
+
* Mode scrutin sénatorial
|
|
678
|
+
*/
|
|
679
|
+
dptmodscrsen: string | null;
|
|
680
|
+
/**
|
|
681
|
+
* Nombre sénateurs
|
|
682
|
+
*/
|
|
683
|
+
dptnbrsen: Int8 | null;
|
|
684
|
+
/**
|
|
685
|
+
* Identifiant circonscription
|
|
686
|
+
*/
|
|
687
|
+
dptnum: Int8;
|
|
688
|
+
/**
|
|
689
|
+
* Numéro de tri
|
|
690
|
+
*/
|
|
691
|
+
dptnumtri: Int8;
|
|
692
|
+
/**
|
|
693
|
+
* Série (A,B,C)
|
|
694
|
+
*/
|
|
695
|
+
dptser: string;
|
|
696
|
+
/**
|
|
697
|
+
* Série (1,2)
|
|
698
|
+
*/
|
|
699
|
+
dptser2004: string | null;
|
|
700
|
+
/**
|
|
701
|
+
* URL
|
|
702
|
+
*/
|
|
703
|
+
dpturlcmp: string | null;
|
|
704
|
+
/**
|
|
705
|
+
* Libellé
|
|
706
|
+
*/
|
|
707
|
+
evelib: string | null;
|
|
708
|
+
/**
|
|
709
|
+
* Libellé court
|
|
710
|
+
*/
|
|
711
|
+
evelic: string | null;
|
|
712
|
+
/**
|
|
713
|
+
* Libellé long
|
|
714
|
+
*/
|
|
715
|
+
evelil: string | null;
|
|
716
|
+
/**
|
|
717
|
+
* Code région
|
|
718
|
+
*/
|
|
719
|
+
regcod: string;
|
|
720
|
+
/**
|
|
721
|
+
* Date système création
|
|
722
|
+
*/
|
|
723
|
+
syscredat: Timestamp | null;
|
|
724
|
+
/**
|
|
725
|
+
* Date système modification
|
|
726
|
+
*/
|
|
727
|
+
sysmajdat: Timestamp | null;
|
|
728
|
+
/**
|
|
729
|
+
* Code validité
|
|
730
|
+
*/
|
|
731
|
+
temvalcod: string | null;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
export interface Dptele {
|
|
735
|
+
dptelecmt: string | null;
|
|
736
|
+
/**
|
|
737
|
+
* Identifiant
|
|
738
|
+
*/
|
|
739
|
+
dpteleid: Int8;
|
|
740
|
+
/**
|
|
741
|
+
* Nombre de sièges
|
|
742
|
+
*/
|
|
743
|
+
dptelenbrsie: Int8 | null;
|
|
744
|
+
dptelenbrsiepvr: Int8 | null;
|
|
745
|
+
/**
|
|
746
|
+
* Identifiant circonscription
|
|
747
|
+
*/
|
|
748
|
+
dptnum: Int8;
|
|
749
|
+
/**
|
|
750
|
+
* Identifiant
|
|
751
|
+
*/
|
|
752
|
+
eleid: Int8;
|
|
753
|
+
/**
|
|
754
|
+
* Identifiant participation
|
|
755
|
+
*/
|
|
756
|
+
participaidt1: Int8 | null;
|
|
757
|
+
/**
|
|
758
|
+
* Identifiant participation
|
|
759
|
+
*/
|
|
760
|
+
participaidt2: Int8 | null;
|
|
761
|
+
/**
|
|
762
|
+
* Date système création
|
|
763
|
+
*/
|
|
764
|
+
syscredat: Timestamp | null;
|
|
765
|
+
/**
|
|
766
|
+
* Date système modification
|
|
767
|
+
*/
|
|
768
|
+
sysmajdat: Timestamp | null;
|
|
769
|
+
/**
|
|
770
|
+
* Code type élection
|
|
771
|
+
*/
|
|
772
|
+
typelecod: Generated<string>;
|
|
773
|
+
/**
|
|
774
|
+
* Code validation
|
|
775
|
+
*/
|
|
776
|
+
valid2cod: Generated<string>;
|
|
777
|
+
/**
|
|
778
|
+
* Code validation
|
|
779
|
+
*/
|
|
780
|
+
validcod: Generated<string>;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
export interface Dpttypman {
|
|
784
|
+
/**
|
|
785
|
+
* Identifiant circonscription
|
|
786
|
+
*/
|
|
787
|
+
dptnum: Int8;
|
|
788
|
+
dpttypmanid: Int8;
|
|
789
|
+
/**
|
|
790
|
+
* Code type mandat
|
|
791
|
+
*/
|
|
792
|
+
typmancod: string;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
export interface Ele {
|
|
796
|
+
/**
|
|
797
|
+
* Année
|
|
798
|
+
*/
|
|
799
|
+
eleann: string;
|
|
800
|
+
/**
|
|
801
|
+
* Date de l'élection
|
|
802
|
+
*/
|
|
803
|
+
eledat: Timestamp | null;
|
|
804
|
+
/**
|
|
805
|
+
* Date début mandat
|
|
806
|
+
*/
|
|
807
|
+
eledatdeb: Timestamp | null;
|
|
808
|
+
/**
|
|
809
|
+
* Date fin mandat précédent
|
|
810
|
+
*/
|
|
811
|
+
eledatfinpre: Timestamp | null;
|
|
812
|
+
/**
|
|
813
|
+
* Identifiant
|
|
814
|
+
*/
|
|
815
|
+
eleid: Int8;
|
|
816
|
+
/**
|
|
817
|
+
* Libellé
|
|
818
|
+
*/
|
|
819
|
+
elelib: string | null;
|
|
820
|
+
/**
|
|
821
|
+
* Libellé court
|
|
822
|
+
*/
|
|
823
|
+
elelic: string | null;
|
|
824
|
+
/**
|
|
825
|
+
* Libellé long
|
|
826
|
+
*/
|
|
827
|
+
elelil: string | null;
|
|
828
|
+
/**
|
|
829
|
+
* Élection partielle
|
|
830
|
+
*/
|
|
831
|
+
elepar: Generated<string | null>;
|
|
832
|
+
/**
|
|
833
|
+
* Série
|
|
834
|
+
*/
|
|
835
|
+
eleser: string | null;
|
|
836
|
+
/**
|
|
837
|
+
* Date système création
|
|
838
|
+
*/
|
|
839
|
+
syscredat: Timestamp | null;
|
|
840
|
+
/**
|
|
841
|
+
* Date système modification
|
|
842
|
+
*/
|
|
843
|
+
sysmajdat: Timestamp | null;
|
|
844
|
+
/**
|
|
845
|
+
* Code type mandat
|
|
846
|
+
*/
|
|
847
|
+
typmancod: string;
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
export interface Elucan {
|
|
851
|
+
/**
|
|
852
|
+
* Aaticle de la circonscription
|
|
853
|
+
*/
|
|
854
|
+
canart: string | null;
|
|
855
|
+
/**
|
|
856
|
+
* Identifiant du département
|
|
857
|
+
*/
|
|
858
|
+
dptnum: Int8 | null;
|
|
859
|
+
/**
|
|
860
|
+
* Année début mandat
|
|
861
|
+
*/
|
|
862
|
+
eluanndeb: Int8 | null;
|
|
863
|
+
/**
|
|
864
|
+
* Année fin mandat
|
|
865
|
+
*/
|
|
866
|
+
eluannfin: Int8 | null;
|
|
867
|
+
/**
|
|
868
|
+
* Date cumul
|
|
869
|
+
*/
|
|
870
|
+
eludatcum: Timestamp | null;
|
|
871
|
+
/**
|
|
872
|
+
* Date début mandat
|
|
873
|
+
*/
|
|
874
|
+
eludatdeb: Timestamp | null;
|
|
875
|
+
/**
|
|
876
|
+
* Date d'élection
|
|
877
|
+
*/
|
|
878
|
+
eludatelu: Timestamp | null;
|
|
879
|
+
/**
|
|
880
|
+
* Date fin mandat
|
|
881
|
+
*/
|
|
882
|
+
eludatfin: Timestamp | null;
|
|
883
|
+
/**
|
|
884
|
+
* Identifiant
|
|
885
|
+
*/
|
|
886
|
+
eluid: Int8;
|
|
887
|
+
/**
|
|
888
|
+
* Nombre d'habitants
|
|
889
|
+
*/
|
|
890
|
+
elunbrhab: Int8 | null;
|
|
891
|
+
/**
|
|
892
|
+
* Libellé
|
|
893
|
+
*/
|
|
894
|
+
evelib: string | null;
|
|
895
|
+
/**
|
|
896
|
+
* Libellé court
|
|
897
|
+
*/
|
|
898
|
+
evelic: string | null;
|
|
899
|
+
/**
|
|
900
|
+
* Libellé long
|
|
901
|
+
*/
|
|
902
|
+
evelil: string | null;
|
|
903
|
+
/**
|
|
904
|
+
* Observations
|
|
905
|
+
*/
|
|
906
|
+
eveobs: string | null;
|
|
907
|
+
/**
|
|
908
|
+
* Matricule
|
|
909
|
+
*/
|
|
910
|
+
senmat: string;
|
|
911
|
+
/**
|
|
912
|
+
* Date système création
|
|
913
|
+
*/
|
|
914
|
+
syscredat: Timestamp | null;
|
|
915
|
+
/**
|
|
916
|
+
* Date système modification
|
|
917
|
+
*/
|
|
918
|
+
sysmajdat: Timestamp | null;
|
|
919
|
+
/**
|
|
920
|
+
* Code validité
|
|
921
|
+
*/
|
|
922
|
+
temvalcod: string | null;
|
|
923
|
+
/**
|
|
924
|
+
* Code type mandat
|
|
925
|
+
*/
|
|
926
|
+
typmancod: string | null;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
export interface Eludep {
|
|
930
|
+
circo: Int8 | null;
|
|
931
|
+
depcod: string | null;
|
|
932
|
+
/**
|
|
933
|
+
* Année début mandat
|
|
934
|
+
*/
|
|
935
|
+
eluanndeb: Int8 | null;
|
|
936
|
+
/**
|
|
937
|
+
* Année fin mandat
|
|
938
|
+
*/
|
|
939
|
+
eluannfin: Int8 | null;
|
|
940
|
+
/**
|
|
941
|
+
* Date cumul
|
|
942
|
+
*/
|
|
943
|
+
eludatcum: Timestamp | null;
|
|
944
|
+
/**
|
|
945
|
+
* Date début mandat
|
|
946
|
+
*/
|
|
947
|
+
eludatdeb: Timestamp | null;
|
|
948
|
+
/**
|
|
949
|
+
* Date d'élection
|
|
950
|
+
*/
|
|
951
|
+
eludatelu: Timestamp | null;
|
|
952
|
+
/**
|
|
953
|
+
* Date fin mandat
|
|
954
|
+
*/
|
|
955
|
+
eludatfin: Timestamp | null;
|
|
956
|
+
/**
|
|
957
|
+
* Identifiant
|
|
958
|
+
*/
|
|
959
|
+
eluid: Int8;
|
|
960
|
+
/**
|
|
961
|
+
* Nombre d'habitants
|
|
962
|
+
*/
|
|
963
|
+
elunbrhab: Int8 | null;
|
|
964
|
+
/**
|
|
965
|
+
* Libellé
|
|
966
|
+
*/
|
|
967
|
+
evelib: string | null;
|
|
968
|
+
/**
|
|
969
|
+
* Libellé court
|
|
970
|
+
*/
|
|
971
|
+
evelic: string | null;
|
|
972
|
+
/**
|
|
973
|
+
* Libellé long
|
|
974
|
+
*/
|
|
975
|
+
evelil: string | null;
|
|
976
|
+
/**
|
|
977
|
+
* Observations
|
|
978
|
+
*/
|
|
979
|
+
eveobs: string | null;
|
|
980
|
+
id_organe_assnat: Generated<string | null>;
|
|
981
|
+
/**
|
|
982
|
+
* Matricule
|
|
983
|
+
*/
|
|
984
|
+
senmat: string;
|
|
985
|
+
/**
|
|
986
|
+
* Date système création
|
|
987
|
+
*/
|
|
988
|
+
syscredat: Timestamp | null;
|
|
989
|
+
/**
|
|
990
|
+
* Date système modification
|
|
991
|
+
*/
|
|
992
|
+
sysmajdat: Timestamp | null;
|
|
993
|
+
/**
|
|
994
|
+
* Code validité
|
|
995
|
+
*/
|
|
996
|
+
temvalcod: string | null;
|
|
997
|
+
/**
|
|
998
|
+
* Code type mandat
|
|
999
|
+
*/
|
|
1000
|
+
typmancod: string | null;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
export interface Eludiv {
|
|
1004
|
+
/**
|
|
1005
|
+
* Année début mandat
|
|
1006
|
+
*/
|
|
1007
|
+
eluanndeb: Int8 | null;
|
|
1008
|
+
/**
|
|
1009
|
+
* Année fin mandat
|
|
1010
|
+
*/
|
|
1011
|
+
eluannfin: Int8 | null;
|
|
1012
|
+
/**
|
|
1013
|
+
* Date cumul
|
|
1014
|
+
*/
|
|
1015
|
+
eludatcum: Timestamp | null;
|
|
1016
|
+
/**
|
|
1017
|
+
* Date début mandat
|
|
1018
|
+
*/
|
|
1019
|
+
eludatdeb: Timestamp | null;
|
|
1020
|
+
/**
|
|
1021
|
+
* Date d'élection
|
|
1022
|
+
*/
|
|
1023
|
+
eludatelu: Timestamp | null;
|
|
1024
|
+
/**
|
|
1025
|
+
* Date fin mandat
|
|
1026
|
+
*/
|
|
1027
|
+
eludatfin: Timestamp | null;
|
|
1028
|
+
eludivart: string | null;
|
|
1029
|
+
eludivurlcmp: string | null;
|
|
1030
|
+
/**
|
|
1031
|
+
* Identifiant
|
|
1032
|
+
*/
|
|
1033
|
+
eluid: Int8;
|
|
1034
|
+
/**
|
|
1035
|
+
* Nombre d'habitants
|
|
1036
|
+
*/
|
|
1037
|
+
elunbrhab: Int8 | null;
|
|
1038
|
+
/**
|
|
1039
|
+
* Libellé
|
|
1040
|
+
*/
|
|
1041
|
+
evelib: string | null;
|
|
1042
|
+
/**
|
|
1043
|
+
* Libellé court
|
|
1044
|
+
*/
|
|
1045
|
+
evelic: string | null;
|
|
1046
|
+
/**
|
|
1047
|
+
* Libellé long
|
|
1048
|
+
*/
|
|
1049
|
+
evelil: string | null;
|
|
1050
|
+
/**
|
|
1051
|
+
* Observations
|
|
1052
|
+
*/
|
|
1053
|
+
eveobs: string | null;
|
|
1054
|
+
/**
|
|
1055
|
+
* Matricule
|
|
1056
|
+
*/
|
|
1057
|
+
senmat: string;
|
|
1058
|
+
/**
|
|
1059
|
+
* Date système création
|
|
1060
|
+
*/
|
|
1061
|
+
syscredat: Timestamp | null;
|
|
1062
|
+
/**
|
|
1063
|
+
* Date système modification
|
|
1064
|
+
*/
|
|
1065
|
+
sysmajdat: Timestamp | null;
|
|
1066
|
+
/**
|
|
1067
|
+
* Code validité
|
|
1068
|
+
*/
|
|
1069
|
+
temvalcod: string | null;
|
|
1070
|
+
/**
|
|
1071
|
+
* Code type mandat
|
|
1072
|
+
*/
|
|
1073
|
+
typmancod: string | null;
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
export interface Elueur {
|
|
1077
|
+
/**
|
|
1078
|
+
* Année début mandat
|
|
1079
|
+
*/
|
|
1080
|
+
eluanndeb: Int8 | null;
|
|
1081
|
+
/**
|
|
1082
|
+
* Année fin mandat
|
|
1083
|
+
*/
|
|
1084
|
+
eluannfin: Int8 | null;
|
|
1085
|
+
/**
|
|
1086
|
+
* Date cumul
|
|
1087
|
+
*/
|
|
1088
|
+
eludatcum: Timestamp | null;
|
|
1089
|
+
/**
|
|
1090
|
+
* Date début mandat
|
|
1091
|
+
*/
|
|
1092
|
+
eludatdeb: Timestamp | null;
|
|
1093
|
+
/**
|
|
1094
|
+
* Date d'élection
|
|
1095
|
+
*/
|
|
1096
|
+
eludatelu: Timestamp | null;
|
|
1097
|
+
/**
|
|
1098
|
+
* Date fin mandat
|
|
1099
|
+
*/
|
|
1100
|
+
eludatfin: Timestamp | null;
|
|
1101
|
+
/**
|
|
1102
|
+
* Identifiant
|
|
1103
|
+
*/
|
|
1104
|
+
eluid: Int8;
|
|
1105
|
+
/**
|
|
1106
|
+
* Nombre d'habitants
|
|
1107
|
+
*/
|
|
1108
|
+
elunbrhab: Int8 | null;
|
|
1109
|
+
/**
|
|
1110
|
+
* Libellé
|
|
1111
|
+
*/
|
|
1112
|
+
evelib: string | null;
|
|
1113
|
+
/**
|
|
1114
|
+
* Libellé court
|
|
1115
|
+
*/
|
|
1116
|
+
evelic: string | null;
|
|
1117
|
+
/**
|
|
1118
|
+
* Libellé long
|
|
1119
|
+
*/
|
|
1120
|
+
evelil: string | null;
|
|
1121
|
+
/**
|
|
1122
|
+
* Observations
|
|
1123
|
+
*/
|
|
1124
|
+
eveobs: string | null;
|
|
1125
|
+
nationcod: string | null;
|
|
1126
|
+
/**
|
|
1127
|
+
* Matricule
|
|
1128
|
+
*/
|
|
1129
|
+
senmat: string;
|
|
1130
|
+
/**
|
|
1131
|
+
* Date système création
|
|
1132
|
+
*/
|
|
1133
|
+
syscredat: Timestamp | null;
|
|
1134
|
+
/**
|
|
1135
|
+
* Date système modification
|
|
1136
|
+
*/
|
|
1137
|
+
sysmajdat: Timestamp | null;
|
|
1138
|
+
/**
|
|
1139
|
+
* Code validité
|
|
1140
|
+
*/
|
|
1141
|
+
temvalcod: string | null;
|
|
1142
|
+
/**
|
|
1143
|
+
* Code type mandat
|
|
1144
|
+
*/
|
|
1145
|
+
typmancod: string | null;
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
export interface Elureg {
|
|
1149
|
+
/**
|
|
1150
|
+
* Année début mandat
|
|
1151
|
+
*/
|
|
1152
|
+
eluanndeb: Int8 | null;
|
|
1153
|
+
/**
|
|
1154
|
+
* Année fin mandat
|
|
1155
|
+
*/
|
|
1156
|
+
eluannfin: Int8 | null;
|
|
1157
|
+
/**
|
|
1158
|
+
* Date cumul
|
|
1159
|
+
*/
|
|
1160
|
+
eludatcum: Timestamp | null;
|
|
1161
|
+
/**
|
|
1162
|
+
* Date début mandat
|
|
1163
|
+
*/
|
|
1164
|
+
eludatdeb: Timestamp | null;
|
|
1165
|
+
/**
|
|
1166
|
+
* Date d'élection
|
|
1167
|
+
*/
|
|
1168
|
+
eludatelu: Timestamp | null;
|
|
1169
|
+
/**
|
|
1170
|
+
* Date fin mandat
|
|
1171
|
+
*/
|
|
1172
|
+
eludatfin: Timestamp | null;
|
|
1173
|
+
/**
|
|
1174
|
+
* Identifiant
|
|
1175
|
+
*/
|
|
1176
|
+
eluid: Int8;
|
|
1177
|
+
/**
|
|
1178
|
+
* Nombre d'habitants
|
|
1179
|
+
*/
|
|
1180
|
+
elunbrhab: Int8 | null;
|
|
1181
|
+
/**
|
|
1182
|
+
* Libellé
|
|
1183
|
+
*/
|
|
1184
|
+
evelib: string | null;
|
|
1185
|
+
/**
|
|
1186
|
+
* Libellé court
|
|
1187
|
+
*/
|
|
1188
|
+
evelic: string | null;
|
|
1189
|
+
/**
|
|
1190
|
+
* Libellé long
|
|
1191
|
+
*/
|
|
1192
|
+
evelil: string | null;
|
|
1193
|
+
/**
|
|
1194
|
+
* Observations
|
|
1195
|
+
*/
|
|
1196
|
+
eveobs: string | null;
|
|
1197
|
+
/**
|
|
1198
|
+
* Code région
|
|
1199
|
+
*/
|
|
1200
|
+
regcod: string | null;
|
|
1201
|
+
/**
|
|
1202
|
+
* Matricule
|
|
1203
|
+
*/
|
|
1204
|
+
senmat: string;
|
|
1205
|
+
/**
|
|
1206
|
+
* Date système création
|
|
1207
|
+
*/
|
|
1208
|
+
syscredat: Timestamp | null;
|
|
1209
|
+
/**
|
|
1210
|
+
* Date système modification
|
|
1211
|
+
*/
|
|
1212
|
+
sysmajdat: Timestamp | null;
|
|
1213
|
+
/**
|
|
1214
|
+
* Code validité
|
|
1215
|
+
*/
|
|
1216
|
+
temvalcod: string | null;
|
|
1217
|
+
/**
|
|
1218
|
+
* Code type mandat
|
|
1219
|
+
*/
|
|
1220
|
+
typmancod: string | null;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
export interface Elusen {
|
|
1224
|
+
/**
|
|
1225
|
+
* Identifiant circonscription
|
|
1226
|
+
*/
|
|
1227
|
+
dptnum: Int8;
|
|
1228
|
+
/**
|
|
1229
|
+
* Année début mandat
|
|
1230
|
+
*/
|
|
1231
|
+
eluanndeb: Int8 | null;
|
|
1232
|
+
/**
|
|
1233
|
+
* Année fin mandat
|
|
1234
|
+
*/
|
|
1235
|
+
eluannfin: Int8 | null;
|
|
1236
|
+
/**
|
|
1237
|
+
* Date cumul
|
|
1238
|
+
*/
|
|
1239
|
+
eludatcum: Timestamp | null;
|
|
1240
|
+
/**
|
|
1241
|
+
* Date début mandat
|
|
1242
|
+
*/
|
|
1243
|
+
eludatdeb: Timestamp | null;
|
|
1244
|
+
/**
|
|
1245
|
+
* Date d'élection
|
|
1246
|
+
*/
|
|
1247
|
+
eludatelu: Timestamp | null;
|
|
1248
|
+
/**
|
|
1249
|
+
* Date fin mandat
|
|
1250
|
+
*/
|
|
1251
|
+
eludatfin: Timestamp | null;
|
|
1252
|
+
/**
|
|
1253
|
+
* Identifiant
|
|
1254
|
+
*/
|
|
1255
|
+
eluid: Int8;
|
|
1256
|
+
/**
|
|
1257
|
+
* Code début de mandat
|
|
1258
|
+
*/
|
|
1259
|
+
etadebmancod: string;
|
|
1260
|
+
/**
|
|
1261
|
+
* Code état fin de mandat
|
|
1262
|
+
*/
|
|
1263
|
+
etafinmancod: string | null;
|
|
1264
|
+
/**
|
|
1265
|
+
* Libellé
|
|
1266
|
+
*/
|
|
1267
|
+
evelib: string | null;
|
|
1268
|
+
/**
|
|
1269
|
+
* Libellé court
|
|
1270
|
+
*/
|
|
1271
|
+
evelic: string | null;
|
|
1272
|
+
/**
|
|
1273
|
+
* Libellé long
|
|
1274
|
+
*/
|
|
1275
|
+
evelil: string | null;
|
|
1276
|
+
/**
|
|
1277
|
+
* Matricule
|
|
1278
|
+
*/
|
|
1279
|
+
senmat: string;
|
|
1280
|
+
/**
|
|
1281
|
+
* Date système création
|
|
1282
|
+
*/
|
|
1283
|
+
syscredat: Timestamp | null;
|
|
1284
|
+
/**
|
|
1285
|
+
* Date système modification
|
|
1286
|
+
*/
|
|
1287
|
+
sysmajdat: Timestamp | null;
|
|
1288
|
+
/**
|
|
1289
|
+
* Code validité
|
|
1290
|
+
*/
|
|
1291
|
+
temvalcod: string | null;
|
|
1292
|
+
/**
|
|
1293
|
+
* Code tour élection
|
|
1294
|
+
*/
|
|
1295
|
+
turelucod: Generated<string>;
|
|
1296
|
+
/**
|
|
1297
|
+
* Code type mandat
|
|
1298
|
+
*/
|
|
1299
|
+
typmancod: string | null;
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1302
|
+
export interface Eluter {
|
|
1303
|
+
asstercod: string | null;
|
|
1304
|
+
/**
|
|
1305
|
+
* Année début mandat
|
|
1306
|
+
*/
|
|
1307
|
+
eluanndeb: Int8 | null;
|
|
1308
|
+
/**
|
|
1309
|
+
* Année fin mandat
|
|
1310
|
+
*/
|
|
1311
|
+
eluannfin: Int8 | null;
|
|
1312
|
+
/**
|
|
1313
|
+
* Date cumul
|
|
1314
|
+
*/
|
|
1315
|
+
eludatcum: Timestamp | null;
|
|
1316
|
+
/**
|
|
1317
|
+
* Date début mandat
|
|
1318
|
+
*/
|
|
1319
|
+
eludatdeb: Timestamp | null;
|
|
1320
|
+
/**
|
|
1321
|
+
* Date d'élection
|
|
1322
|
+
*/
|
|
1323
|
+
eludatelu: Timestamp | null;
|
|
1324
|
+
/**
|
|
1325
|
+
* Date fin mandat
|
|
1326
|
+
*/
|
|
1327
|
+
eludatfin: Timestamp | null;
|
|
1328
|
+
/**
|
|
1329
|
+
* Identifiant
|
|
1330
|
+
*/
|
|
1331
|
+
eluid: Int8;
|
|
1332
|
+
/**
|
|
1333
|
+
* Nombre d'habitants
|
|
1334
|
+
*/
|
|
1335
|
+
elunbrhab: Int8 | null;
|
|
1336
|
+
/**
|
|
1337
|
+
* Libellé
|
|
1338
|
+
*/
|
|
1339
|
+
evelib: string | null;
|
|
1340
|
+
/**
|
|
1341
|
+
* Libellé court
|
|
1342
|
+
*/
|
|
1343
|
+
evelic: string | null;
|
|
1344
|
+
/**
|
|
1345
|
+
* Libellé long
|
|
1346
|
+
*/
|
|
1347
|
+
evelil: string | null;
|
|
1348
|
+
/**
|
|
1349
|
+
* Observations
|
|
1350
|
+
*/
|
|
1351
|
+
eveobs: string | null;
|
|
1352
|
+
/**
|
|
1353
|
+
* Matricule
|
|
1354
|
+
*/
|
|
1355
|
+
senmat: string;
|
|
1356
|
+
/**
|
|
1357
|
+
* Date système création
|
|
1358
|
+
*/
|
|
1359
|
+
syscredat: Timestamp | null;
|
|
1360
|
+
/**
|
|
1361
|
+
* Date système modification
|
|
1362
|
+
*/
|
|
1363
|
+
sysmajdat: Timestamp | null;
|
|
1364
|
+
/**
|
|
1365
|
+
* Code validité
|
|
1366
|
+
*/
|
|
1367
|
+
temvalcod: string | null;
|
|
1368
|
+
/**
|
|
1369
|
+
* Code type mandat
|
|
1370
|
+
*/
|
|
1371
|
+
typmancod: string | null;
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
export interface Elutit {
|
|
1375
|
+
/**
|
|
1376
|
+
* Identifiant
|
|
1377
|
+
*/
|
|
1378
|
+
eluid: Int8;
|
|
1379
|
+
/**
|
|
1380
|
+
* Libellé
|
|
1381
|
+
*/
|
|
1382
|
+
evelib: string | null;
|
|
1383
|
+
/**
|
|
1384
|
+
* Libellé court
|
|
1385
|
+
*/
|
|
1386
|
+
evelic: string | null;
|
|
1387
|
+
/**
|
|
1388
|
+
* Libellé long
|
|
1389
|
+
*/
|
|
1390
|
+
evelil: string | null;
|
|
1391
|
+
/**
|
|
1392
|
+
* Date système création
|
|
1393
|
+
*/
|
|
1394
|
+
syscredat: Timestamp | null;
|
|
1395
|
+
/**
|
|
1396
|
+
* Date système modification
|
|
1397
|
+
*/
|
|
1398
|
+
sysmajdat: Timestamp | null;
|
|
1399
|
+
/**
|
|
1400
|
+
* Code validité
|
|
1401
|
+
*/
|
|
1402
|
+
temvalcod: string | null;
|
|
1403
|
+
/**
|
|
1404
|
+
* Code titre élu
|
|
1405
|
+
*/
|
|
1406
|
+
titelecod: string;
|
|
1407
|
+
/**
|
|
1408
|
+
* Année de début
|
|
1409
|
+
*/
|
|
1410
|
+
titeluanndeb: Int8 | null;
|
|
1411
|
+
/**
|
|
1412
|
+
* Année de fin
|
|
1413
|
+
*/
|
|
1414
|
+
titeluannfin: Int8 | null;
|
|
1415
|
+
/**
|
|
1416
|
+
* Date de début
|
|
1417
|
+
*/
|
|
1418
|
+
titeludatdeb: Timestamp | null;
|
|
1419
|
+
/**
|
|
1420
|
+
* Date de fin
|
|
1421
|
+
*/
|
|
1422
|
+
titeludatfin: Timestamp | null;
|
|
1423
|
+
/**
|
|
1424
|
+
* Honorariat
|
|
1425
|
+
*/
|
|
1426
|
+
titeluhon: string | null;
|
|
1427
|
+
/**
|
|
1428
|
+
* Identifiant
|
|
1429
|
+
*/
|
|
1430
|
+
titeluid: Int8;
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
export interface Eluvil {
|
|
1434
|
+
/**
|
|
1435
|
+
* Année début mandat
|
|
1436
|
+
*/
|
|
1437
|
+
eluanndeb: Int8 | null;
|
|
1438
|
+
/**
|
|
1439
|
+
* Année fin mandat
|
|
1440
|
+
*/
|
|
1441
|
+
eluannfin: Int8 | null;
|
|
1442
|
+
/**
|
|
1443
|
+
* Date cumul
|
|
1444
|
+
*/
|
|
1445
|
+
eludatcum: Timestamp | null;
|
|
1446
|
+
/**
|
|
1447
|
+
* Date début mandat
|
|
1448
|
+
*/
|
|
1449
|
+
eludatdeb: Timestamp | null;
|
|
1450
|
+
/**
|
|
1451
|
+
* Date d'élection
|
|
1452
|
+
*/
|
|
1453
|
+
eludatelu: Timestamp | null;
|
|
1454
|
+
/**
|
|
1455
|
+
* Date fin mandat
|
|
1456
|
+
*/
|
|
1457
|
+
eludatfin: Timestamp | null;
|
|
1458
|
+
/**
|
|
1459
|
+
* Identifiant
|
|
1460
|
+
*/
|
|
1461
|
+
eluid: Int8;
|
|
1462
|
+
/**
|
|
1463
|
+
* Nombre d'habitants
|
|
1464
|
+
*/
|
|
1465
|
+
elunbrhab: Int8 | null;
|
|
1466
|
+
/**
|
|
1467
|
+
* Libellé
|
|
1468
|
+
*/
|
|
1469
|
+
evelib: string | null;
|
|
1470
|
+
/**
|
|
1471
|
+
* Libellé court
|
|
1472
|
+
*/
|
|
1473
|
+
evelic: string | null;
|
|
1474
|
+
/**
|
|
1475
|
+
* Libellé long
|
|
1476
|
+
*/
|
|
1477
|
+
evelil: string | null;
|
|
1478
|
+
/**
|
|
1479
|
+
* Observations
|
|
1480
|
+
*/
|
|
1481
|
+
eveobs: string | null;
|
|
1482
|
+
/**
|
|
1483
|
+
* Matricule
|
|
1484
|
+
*/
|
|
1485
|
+
senmat: string;
|
|
1486
|
+
/**
|
|
1487
|
+
* Date système création
|
|
1488
|
+
*/
|
|
1489
|
+
syscredat: Timestamp | null;
|
|
1490
|
+
/**
|
|
1491
|
+
* Date système modification
|
|
1492
|
+
*/
|
|
1493
|
+
sysmajdat: Timestamp | null;
|
|
1494
|
+
/**
|
|
1495
|
+
* Code validité
|
|
1496
|
+
*/
|
|
1497
|
+
temvalcod: string | null;
|
|
1498
|
+
/**
|
|
1499
|
+
* Code type mandat
|
|
1500
|
+
*/
|
|
1501
|
+
typmancod: string | null;
|
|
1502
|
+
url: string | null;
|
|
1503
|
+
vilart: string | null;
|
|
1504
|
+
vilurlcmp: string | null;
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1507
|
+
export interface Etadebman {
|
|
1508
|
+
/**
|
|
1509
|
+
* Code début de mandat
|
|
1510
|
+
*/
|
|
1511
|
+
etadebmancod: string;
|
|
1512
|
+
/**
|
|
1513
|
+
* Libellé
|
|
1514
|
+
*/
|
|
1515
|
+
etadebmanlib: string;
|
|
1516
|
+
/**
|
|
1517
|
+
* Libellé féminin
|
|
1518
|
+
*/
|
|
1519
|
+
etadebmanlibfem: string | null;
|
|
1520
|
+
/**
|
|
1521
|
+
* Libellé pluriel
|
|
1522
|
+
*/
|
|
1523
|
+
etadebmanlibplu: string | null;
|
|
1524
|
+
/**
|
|
1525
|
+
* Libellé court
|
|
1526
|
+
*/
|
|
1527
|
+
etadebmanlic: string;
|
|
1528
|
+
/**
|
|
1529
|
+
* Libellé court féminin
|
|
1530
|
+
*/
|
|
1531
|
+
etadebmanlicfem: string | null;
|
|
1532
|
+
/**
|
|
1533
|
+
* Libellé court pluriel
|
|
1534
|
+
*/
|
|
1535
|
+
etadebmanlicplu: string | null;
|
|
1536
|
+
/**
|
|
1537
|
+
* Libellé long
|
|
1538
|
+
*/
|
|
1539
|
+
etadebmanlil: string | null;
|
|
1540
|
+
/**
|
|
1541
|
+
* Libellé long féminin
|
|
1542
|
+
*/
|
|
1543
|
+
etadebmanlilfem: string | null;
|
|
1544
|
+
/**
|
|
1545
|
+
* Libellé long pluriel
|
|
1546
|
+
*/
|
|
1547
|
+
etadebmanlilplu: string | null;
|
|
1548
|
+
/**
|
|
1549
|
+
* Numéro de tri
|
|
1550
|
+
*/
|
|
1551
|
+
etadebmannumtri: Int8 | null;
|
|
1552
|
+
/**
|
|
1553
|
+
* Date système création
|
|
1554
|
+
*/
|
|
1555
|
+
syscredat: Timestamp | null;
|
|
1556
|
+
/**
|
|
1557
|
+
* Date système modification
|
|
1558
|
+
*/
|
|
1559
|
+
sysmajdat: Timestamp | null;
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1562
|
+
export interface Etafinman {
|
|
1563
|
+
/**
|
|
1564
|
+
* Libellé
|
|
1565
|
+
*/
|
|
1566
|
+
etafinman: string;
|
|
1567
|
+
/**
|
|
1568
|
+
* Code état fin de mandat
|
|
1569
|
+
*/
|
|
1570
|
+
etafinmancod: string;
|
|
1571
|
+
/**
|
|
1572
|
+
* Libellé féminin
|
|
1573
|
+
*/
|
|
1574
|
+
etafinmanlibfem: string | null;
|
|
1575
|
+
/**
|
|
1576
|
+
* Libellé pluriel
|
|
1577
|
+
*/
|
|
1578
|
+
etafinmanlibplu: string | null;
|
|
1579
|
+
/**
|
|
1580
|
+
* Libellé court
|
|
1581
|
+
*/
|
|
1582
|
+
etafinmanlic: string;
|
|
1583
|
+
/**
|
|
1584
|
+
* Libellé court féminin
|
|
1585
|
+
*/
|
|
1586
|
+
etafinmanlicfem: string | null;
|
|
1587
|
+
/**
|
|
1588
|
+
* Libelle court pluriel
|
|
1589
|
+
*/
|
|
1590
|
+
etafinmanlicplu: string | null;
|
|
1591
|
+
/**
|
|
1592
|
+
* Libellé long
|
|
1593
|
+
*/
|
|
1594
|
+
etafinmanlil: string | null;
|
|
1595
|
+
/**
|
|
1596
|
+
* Libellé long féminin
|
|
1597
|
+
*/
|
|
1598
|
+
etafinmanlilfem: string | null;
|
|
1599
|
+
/**
|
|
1600
|
+
* Libellé long pluriel
|
|
1601
|
+
*/
|
|
1602
|
+
etafinmanlilplu: string | null;
|
|
1603
|
+
/**
|
|
1604
|
+
* Numéro de tri
|
|
1605
|
+
*/
|
|
1606
|
+
etafinmannumtri: Int8 | null;
|
|
1607
|
+
/**
|
|
1608
|
+
* Date système création
|
|
1609
|
+
*/
|
|
1610
|
+
syscredat: Timestamp | null;
|
|
1611
|
+
/**
|
|
1612
|
+
* Date système modification
|
|
1613
|
+
*/
|
|
1614
|
+
sysmajdat: Timestamp | null;
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
export interface Etasen {
|
|
1618
|
+
/**
|
|
1619
|
+
* Code état sénateur
|
|
1620
|
+
*/
|
|
1621
|
+
etasencod: string;
|
|
1622
|
+
/**
|
|
1623
|
+
* Libellé
|
|
1624
|
+
*/
|
|
1625
|
+
etasenlib: string | null;
|
|
1626
|
+
/**
|
|
1627
|
+
* Libellé féminin
|
|
1628
|
+
*/
|
|
1629
|
+
etasenlibfem: string | null;
|
|
1630
|
+
/**
|
|
1631
|
+
* Libellé pluriel
|
|
1632
|
+
*/
|
|
1633
|
+
etasenlibplu: string | null;
|
|
1634
|
+
/**
|
|
1635
|
+
* Libellé court
|
|
1636
|
+
*/
|
|
1637
|
+
etasenlic: string;
|
|
1638
|
+
/**
|
|
1639
|
+
* Libellé court féminin
|
|
1640
|
+
*/
|
|
1641
|
+
etasenlicfem: string | null;
|
|
1642
|
+
/**
|
|
1643
|
+
* Libelle court pluriel
|
|
1644
|
+
*/
|
|
1645
|
+
etasenlicplu: string | null;
|
|
1646
|
+
/**
|
|
1647
|
+
* Libellé long
|
|
1648
|
+
*/
|
|
1649
|
+
etasenlil: string | null;
|
|
1650
|
+
/**
|
|
1651
|
+
* Libellé long féminin
|
|
1652
|
+
*/
|
|
1653
|
+
etasenlilfem: string | null;
|
|
1654
|
+
/**
|
|
1655
|
+
* Libellé long pluriel
|
|
1656
|
+
*/
|
|
1657
|
+
etasenlilplu: string | null;
|
|
1658
|
+
/**
|
|
1659
|
+
* Numéro de tri
|
|
1660
|
+
*/
|
|
1661
|
+
etasennumtri: Int8 | null;
|
|
1662
|
+
/**
|
|
1663
|
+
* Date système création
|
|
1664
|
+
*/
|
|
1665
|
+
syscredat: Timestamp | null;
|
|
1666
|
+
/**
|
|
1667
|
+
* Date système modification
|
|
1668
|
+
*/
|
|
1669
|
+
sysmajdat: Timestamp | null;
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
export interface FonactParticipant {
|
|
1673
|
+
fapcod: string;
|
|
1674
|
+
faplib: string;
|
|
1675
|
+
faplibfem: string;
|
|
1676
|
+
faplibfemplu: string;
|
|
1677
|
+
faplibplu: string;
|
|
1678
|
+
faplic: string;
|
|
1679
|
+
faplicfem: string;
|
|
1680
|
+
faplicfemplu: string;
|
|
1681
|
+
faplicplu: string;
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
export interface Foncom {
|
|
1685
|
+
/**
|
|
1686
|
+
* Code fonction commission
|
|
1687
|
+
*/
|
|
1688
|
+
foncomcod: string;
|
|
1689
|
+
/**
|
|
1690
|
+
* Libellé
|
|
1691
|
+
*/
|
|
1692
|
+
foncomlib: string;
|
|
1693
|
+
/**
|
|
1694
|
+
* Libellé féminin
|
|
1695
|
+
*/
|
|
1696
|
+
foncomlibfem: string | null;
|
|
1697
|
+
/**
|
|
1698
|
+
* Libellé féminin pluriel
|
|
1699
|
+
*/
|
|
1700
|
+
foncomlibfemplu: string | null;
|
|
1701
|
+
/**
|
|
1702
|
+
* Libellé pluriel
|
|
1703
|
+
*/
|
|
1704
|
+
foncomlibplu: string | null;
|
|
1705
|
+
/**
|
|
1706
|
+
* Libellé court
|
|
1707
|
+
*/
|
|
1708
|
+
foncomlic: string;
|
|
1709
|
+
/**
|
|
1710
|
+
* Libellé court féminin
|
|
1711
|
+
*/
|
|
1712
|
+
foncomlicfem: string | null;
|
|
1713
|
+
/**
|
|
1714
|
+
* Libellé court féminin pluriel
|
|
1715
|
+
*/
|
|
1716
|
+
foncomlicfemplu: string | null;
|
|
1717
|
+
/**
|
|
1718
|
+
* Libellé court pluriel
|
|
1719
|
+
*/
|
|
1720
|
+
foncomlicplu: string | null;
|
|
1721
|
+
/**
|
|
1722
|
+
* Libellé long
|
|
1723
|
+
*/
|
|
1724
|
+
foncomlil: string | null;
|
|
1725
|
+
/**
|
|
1726
|
+
* Libellé long féminin
|
|
1727
|
+
*/
|
|
1728
|
+
foncomlilfem: string | null;
|
|
1729
|
+
/**
|
|
1730
|
+
* Libellé long féminin pluriel
|
|
1731
|
+
*/
|
|
1732
|
+
foncomlilfemplu: string | null;
|
|
1733
|
+
/**
|
|
1734
|
+
* Libellé long pluriel
|
|
1735
|
+
*/
|
|
1736
|
+
foncomlilplu: string | null;
|
|
1737
|
+
/**
|
|
1738
|
+
* Numéro de tri
|
|
1739
|
+
*/
|
|
1740
|
+
foncomnumtri: Int8 | null;
|
|
1741
|
+
/**
|
|
1742
|
+
* Date système création
|
|
1743
|
+
*/
|
|
1744
|
+
syscredat: Timestamp | null;
|
|
1745
|
+
/**
|
|
1746
|
+
* Date système modification
|
|
1747
|
+
*/
|
|
1748
|
+
sysmajdat: Timestamp | null;
|
|
1749
|
+
}
|
|
1750
|
+
|
|
1751
|
+
export interface Fondelega {
|
|
1752
|
+
/**
|
|
1753
|
+
* Code fonction délégation
|
|
1754
|
+
*/
|
|
1755
|
+
fondelcod: string;
|
|
1756
|
+
/**
|
|
1757
|
+
* Libellé
|
|
1758
|
+
*/
|
|
1759
|
+
fondellib: string;
|
|
1760
|
+
/**
|
|
1761
|
+
* Libellé féminin
|
|
1762
|
+
*/
|
|
1763
|
+
fondellibfem: string | null;
|
|
1764
|
+
/**
|
|
1765
|
+
* Libellé féminin pluriel
|
|
1766
|
+
*/
|
|
1767
|
+
fondellibfemplu: string | null;
|
|
1768
|
+
/**
|
|
1769
|
+
* Libellé pluriel
|
|
1770
|
+
*/
|
|
1771
|
+
fondellibplu: string | null;
|
|
1772
|
+
/**
|
|
1773
|
+
* Libellé court
|
|
1774
|
+
*/
|
|
1775
|
+
fondellic: string;
|
|
1776
|
+
/**
|
|
1777
|
+
* Libellé court féminin
|
|
1778
|
+
*/
|
|
1779
|
+
fondellicfem: string | null;
|
|
1780
|
+
/**
|
|
1781
|
+
* Libellé court féminin pluriel
|
|
1782
|
+
*/
|
|
1783
|
+
fondellicfemplu: string | null;
|
|
1784
|
+
/**
|
|
1785
|
+
* Libelle court pluriel
|
|
1786
|
+
*/
|
|
1787
|
+
fondellicplu: string | null;
|
|
1788
|
+
/**
|
|
1789
|
+
* Libellé long
|
|
1790
|
+
*/
|
|
1791
|
+
fondellil: string | null;
|
|
1792
|
+
/**
|
|
1793
|
+
* Libellé long féminin
|
|
1794
|
+
*/
|
|
1795
|
+
fondellilfem: string | null;
|
|
1796
|
+
/**
|
|
1797
|
+
* Libellé long féminin pluriel
|
|
1798
|
+
*/
|
|
1799
|
+
fondellilfemplu: string | null;
|
|
1800
|
+
/**
|
|
1801
|
+
* Libellé long pluriel
|
|
1802
|
+
*/
|
|
1803
|
+
fondellilplu: string | null;
|
|
1804
|
+
/**
|
|
1805
|
+
* Numéro de tri
|
|
1806
|
+
*/
|
|
1807
|
+
fondelnumtri: Int8 | null;
|
|
1808
|
+
/**
|
|
1809
|
+
* Date système création
|
|
1810
|
+
*/
|
|
1811
|
+
syscredat: Timestamp | null;
|
|
1812
|
+
/**
|
|
1813
|
+
* Date système modification
|
|
1814
|
+
*/
|
|
1815
|
+
sysmajdat: Timestamp | null;
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
export interface Fongrppol {
|
|
1819
|
+
/**
|
|
1820
|
+
* Code fonction groupe politique
|
|
1821
|
+
*/
|
|
1822
|
+
fongrppolcod: string;
|
|
1823
|
+
/**
|
|
1824
|
+
* Libellé
|
|
1825
|
+
*/
|
|
1826
|
+
fongrppollib: string;
|
|
1827
|
+
/**
|
|
1828
|
+
* Libellé féminin
|
|
1829
|
+
*/
|
|
1830
|
+
fongrppollibfem: string | null;
|
|
1831
|
+
/**
|
|
1832
|
+
* Libellé féminin pluriel
|
|
1833
|
+
*/
|
|
1834
|
+
fongrppollibfemplu: string | null;
|
|
1835
|
+
/**
|
|
1836
|
+
* Libellé pluriel
|
|
1837
|
+
*/
|
|
1838
|
+
fongrppollibplu: string | null;
|
|
1839
|
+
/**
|
|
1840
|
+
* Libellé court
|
|
1841
|
+
*/
|
|
1842
|
+
fongrppollic: string;
|
|
1843
|
+
/**
|
|
1844
|
+
* Libellé court féminin
|
|
1845
|
+
*/
|
|
1846
|
+
fongrppollicfem: string | null;
|
|
1847
|
+
/**
|
|
1848
|
+
* Libellé court féminin pluriel
|
|
1849
|
+
*/
|
|
1850
|
+
fongrppollicfemplu: string | null;
|
|
1851
|
+
/**
|
|
1852
|
+
* Libellé court pluriel
|
|
1853
|
+
*/
|
|
1854
|
+
fongrppollicplu: string | null;
|
|
1855
|
+
/**
|
|
1856
|
+
* Libellé long
|
|
1857
|
+
*/
|
|
1858
|
+
fongrppollil: string | null;
|
|
1859
|
+
/**
|
|
1860
|
+
* Libellé long féminin
|
|
1861
|
+
*/
|
|
1862
|
+
fongrppollilfem: string | null;
|
|
1863
|
+
/**
|
|
1864
|
+
* Libellé long féminin pluriel
|
|
1865
|
+
*/
|
|
1866
|
+
fongrppollilfemplu: string | null;
|
|
1867
|
+
/**
|
|
1868
|
+
* Libellé long pluriel
|
|
1869
|
+
*/
|
|
1870
|
+
fongrppollilplu: string | null;
|
|
1871
|
+
/**
|
|
1872
|
+
* Numéro de tri
|
|
1873
|
+
*/
|
|
1874
|
+
fongrppolnumtri: Int8 | null;
|
|
1875
|
+
/**
|
|
1876
|
+
* Date système création
|
|
1877
|
+
*/
|
|
1878
|
+
syscredat: Timestamp | null;
|
|
1879
|
+
/**
|
|
1880
|
+
* Date système modification
|
|
1881
|
+
*/
|
|
1882
|
+
sysmajdat: Timestamp | null;
|
|
1883
|
+
}
|
|
1884
|
+
|
|
1885
|
+
export interface Fongrpsen {
|
|
1886
|
+
/**
|
|
1887
|
+
* Code fonction groupe sénatorial
|
|
1888
|
+
*/
|
|
1889
|
+
fongrpsencod: string;
|
|
1890
|
+
fongrpsenlib: string;
|
|
1891
|
+
fongrpsenlibfem: string | null;
|
|
1892
|
+
fongrpsenlibfemplu: string | null;
|
|
1893
|
+
fongrpsenlibplu: string | null;
|
|
1894
|
+
fongrpsenlic: string;
|
|
1895
|
+
fongrpsenlicfem: string | null;
|
|
1896
|
+
fongrpsenlicfemplu: string | null;
|
|
1897
|
+
fongrpsenlicplu: string | null;
|
|
1898
|
+
fongrpsenlil: string | null;
|
|
1899
|
+
fongrpsenlilfem: string | null;
|
|
1900
|
+
fongrpsenlilfemplu: string | null;
|
|
1901
|
+
fongrpsenlilplu: string | null;
|
|
1902
|
+
fongrpsennumtri: Int8 | null;
|
|
1903
|
+
/**
|
|
1904
|
+
* Date système création
|
|
1905
|
+
*/
|
|
1906
|
+
syscredat: Timestamp | null;
|
|
1907
|
+
/**
|
|
1908
|
+
* Date système modification
|
|
1909
|
+
*/
|
|
1910
|
+
sysmajdat: Timestamp | null;
|
|
1911
|
+
}
|
|
1912
|
+
|
|
1913
|
+
export interface Fonmemcom {
|
|
1914
|
+
/**
|
|
1915
|
+
* Libellé
|
|
1916
|
+
*/
|
|
1917
|
+
evelib: string | null;
|
|
1918
|
+
/**
|
|
1919
|
+
* Libellé court
|
|
1920
|
+
*/
|
|
1921
|
+
evelic: string | null;
|
|
1922
|
+
/**
|
|
1923
|
+
* Libellé long
|
|
1924
|
+
*/
|
|
1925
|
+
evelil: string | null;
|
|
1926
|
+
/**
|
|
1927
|
+
* Observations
|
|
1928
|
+
*/
|
|
1929
|
+
eveobs: string | null;
|
|
1930
|
+
/**
|
|
1931
|
+
* Code fonction commission
|
|
1932
|
+
*/
|
|
1933
|
+
foncomcod: string;
|
|
1934
|
+
/**
|
|
1935
|
+
* Date de début
|
|
1936
|
+
*/
|
|
1937
|
+
fonmemcomdatdeb: Timestamp | null;
|
|
1938
|
+
/**
|
|
1939
|
+
* Date de fin
|
|
1940
|
+
*/
|
|
1941
|
+
fonmemcomdatfin: Timestamp | null;
|
|
1942
|
+
/**
|
|
1943
|
+
* Identifiant
|
|
1944
|
+
*/
|
|
1945
|
+
fonmemcomid: Int8;
|
|
1946
|
+
/**
|
|
1947
|
+
* Rang protocolaire
|
|
1948
|
+
*/
|
|
1949
|
+
fonmemcomrngprt: Int8 | null;
|
|
1950
|
+
/**
|
|
1951
|
+
* Identifiant
|
|
1952
|
+
*/
|
|
1953
|
+
memcomid: Int8;
|
|
1954
|
+
/**
|
|
1955
|
+
* Date système création
|
|
1956
|
+
*/
|
|
1957
|
+
syscredat: Timestamp | null;
|
|
1958
|
+
/**
|
|
1959
|
+
* Date système modification
|
|
1960
|
+
*/
|
|
1961
|
+
sysmajdat: Timestamp | null;
|
|
1962
|
+
/**
|
|
1963
|
+
* Code validité
|
|
1964
|
+
*/
|
|
1965
|
+
temvalcod: string | null;
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
export interface Fonmemdelega {
|
|
1969
|
+
/**
|
|
1970
|
+
* Libellé
|
|
1971
|
+
*/
|
|
1972
|
+
evelib: string | null;
|
|
1973
|
+
/**
|
|
1974
|
+
* Libellé court
|
|
1975
|
+
*/
|
|
1976
|
+
evelic: string | null;
|
|
1977
|
+
/**
|
|
1978
|
+
* Libellé long
|
|
1979
|
+
*/
|
|
1980
|
+
evelil: string | null;
|
|
1981
|
+
/**
|
|
1982
|
+
* Observations
|
|
1983
|
+
*/
|
|
1984
|
+
eveobs: string | null;
|
|
1985
|
+
/**
|
|
1986
|
+
* Code fonction délégation
|
|
1987
|
+
*/
|
|
1988
|
+
fondelcod: string;
|
|
1989
|
+
/**
|
|
1990
|
+
* Date de début
|
|
1991
|
+
*/
|
|
1992
|
+
fonmemdeldatdeb: Timestamp | null;
|
|
1993
|
+
/**
|
|
1994
|
+
* Date de fin
|
|
1995
|
+
*/
|
|
1996
|
+
fonmemdeldatfin: Timestamp | null;
|
|
1997
|
+
/**
|
|
1998
|
+
* Identifiant
|
|
1999
|
+
*/
|
|
2000
|
+
fonmemdelid: Int8;
|
|
2001
|
+
/**
|
|
2002
|
+
* Rang élection
|
|
2003
|
+
*/
|
|
2004
|
+
fonmemdelrngele: Int8 | null;
|
|
2005
|
+
/**
|
|
2006
|
+
* Identifiant
|
|
2007
|
+
*/
|
|
2008
|
+
memdelegaid: Int8;
|
|
2009
|
+
/**
|
|
2010
|
+
* Date système création
|
|
2011
|
+
*/
|
|
2012
|
+
syscredat: Timestamp | null;
|
|
2013
|
+
/**
|
|
2014
|
+
* Date système modification
|
|
2015
|
+
*/
|
|
2016
|
+
sysmajdat: Timestamp | null;
|
|
2017
|
+
/**
|
|
2018
|
+
* Code validité
|
|
2019
|
+
*/
|
|
2020
|
+
temvalcod: string | null;
|
|
2021
|
+
}
|
|
2022
|
+
|
|
2023
|
+
export interface Fonmemgrppol {
|
|
2024
|
+
/**
|
|
2025
|
+
* Libellé
|
|
2026
|
+
*/
|
|
2027
|
+
evelib: string | null;
|
|
2028
|
+
/**
|
|
2029
|
+
* Libellé court
|
|
2030
|
+
*/
|
|
2031
|
+
evelic: string | null;
|
|
2032
|
+
/**
|
|
2033
|
+
* Libellé long
|
|
2034
|
+
*/
|
|
2035
|
+
evelil: string | null;
|
|
2036
|
+
/**
|
|
2037
|
+
* Observations
|
|
2038
|
+
*/
|
|
2039
|
+
eveobs: string | null;
|
|
2040
|
+
/**
|
|
2041
|
+
* Code fonction groupe politique
|
|
2042
|
+
*/
|
|
2043
|
+
fongrppolcod: string;
|
|
2044
|
+
/**
|
|
2045
|
+
* Date de début
|
|
2046
|
+
*/
|
|
2047
|
+
fonmemgrppoldatdeb: Timestamp | null;
|
|
2048
|
+
/**
|
|
2049
|
+
* Date de fin
|
|
2050
|
+
*/
|
|
2051
|
+
fonmemgrppoldatfin: Timestamp | null;
|
|
2052
|
+
/**
|
|
2053
|
+
* Identifiant
|
|
2054
|
+
*/
|
|
2055
|
+
fonmemgrppolid: Int8;
|
|
2056
|
+
/**
|
|
2057
|
+
* Identifiant
|
|
2058
|
+
*/
|
|
2059
|
+
memgrppolid: Int8;
|
|
2060
|
+
/**
|
|
2061
|
+
* Date système création
|
|
2062
|
+
*/
|
|
2063
|
+
syscredat: Timestamp | null;
|
|
2064
|
+
/**
|
|
2065
|
+
* Date système modification
|
|
2066
|
+
*/
|
|
2067
|
+
sysmajdat: Timestamp | null;
|
|
2068
|
+
/**
|
|
2069
|
+
* Code validité
|
|
2070
|
+
*/
|
|
2071
|
+
temvalcod: string | null;
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2074
|
+
export interface Fonmemgrpsen {
|
|
2075
|
+
/**
|
|
2076
|
+
* Libellé
|
|
2077
|
+
*/
|
|
2078
|
+
evelib: string | null;
|
|
2079
|
+
/**
|
|
2080
|
+
* Libellé court
|
|
2081
|
+
*/
|
|
2082
|
+
evelic: string | null;
|
|
2083
|
+
/**
|
|
2084
|
+
* Libellé long
|
|
2085
|
+
*/
|
|
2086
|
+
evelil: string | null;
|
|
2087
|
+
/**
|
|
2088
|
+
* Observations
|
|
2089
|
+
*/
|
|
2090
|
+
eveobs: string | null;
|
|
2091
|
+
/**
|
|
2092
|
+
* Code fonction groupe sénatorial
|
|
2093
|
+
*/
|
|
2094
|
+
fongrpsencod: string;
|
|
2095
|
+
fonmemgrpsendatdeb: Timestamp;
|
|
2096
|
+
fonmemgrpsendatfin: Timestamp | null;
|
|
2097
|
+
fonmemgrpsenid: Int8;
|
|
2098
|
+
fonmemgrpsenrngele: Int8 | null;
|
|
2099
|
+
memgrpsenid: Int8;
|
|
2100
|
+
/**
|
|
2101
|
+
* Date système création
|
|
2102
|
+
*/
|
|
2103
|
+
syscredat: Timestamp | null;
|
|
2104
|
+
/**
|
|
2105
|
+
* Date système modification
|
|
2106
|
+
*/
|
|
2107
|
+
sysmajdat: Timestamp | null;
|
|
2108
|
+
/**
|
|
2109
|
+
* Code validité
|
|
2110
|
+
*/
|
|
2111
|
+
temvalcod: string | null;
|
|
2112
|
+
}
|
|
2113
|
+
|
|
2114
|
+
export interface Fonmemorg {
|
|
2115
|
+
/**
|
|
2116
|
+
* Libellé
|
|
2117
|
+
*/
|
|
2118
|
+
evelib: string | null;
|
|
2119
|
+
/**
|
|
2120
|
+
* Libellé court
|
|
2121
|
+
*/
|
|
2122
|
+
evelic: string | null;
|
|
2123
|
+
/**
|
|
2124
|
+
* Libellé long
|
|
2125
|
+
*/
|
|
2126
|
+
evelil: string | null;
|
|
2127
|
+
/**
|
|
2128
|
+
* Observations
|
|
2129
|
+
*/
|
|
2130
|
+
eveobs: string | null;
|
|
2131
|
+
/**
|
|
2132
|
+
* Année de début
|
|
2133
|
+
*/
|
|
2134
|
+
fonmemorganndeb: Int8 | null;
|
|
2135
|
+
/**
|
|
2136
|
+
* Année de fin
|
|
2137
|
+
*/
|
|
2138
|
+
fonmemorgannfin: Int8 | null;
|
|
2139
|
+
/**
|
|
2140
|
+
* Date de début
|
|
2141
|
+
*/
|
|
2142
|
+
fonmemorgdatdeb: Timestamp | null;
|
|
2143
|
+
/**
|
|
2144
|
+
* Date de fin
|
|
2145
|
+
*/
|
|
2146
|
+
fonmemorgdatfin: Timestamp | null;
|
|
2147
|
+
/**
|
|
2148
|
+
* Identifiant
|
|
2149
|
+
*/
|
|
2150
|
+
fonmemorgid: Int8;
|
|
2151
|
+
/**
|
|
2152
|
+
* Rang élection
|
|
2153
|
+
*/
|
|
2154
|
+
fonmemorgrngele: Int8 | null;
|
|
2155
|
+
/**
|
|
2156
|
+
* Code fonction organisme
|
|
2157
|
+
*/
|
|
2158
|
+
fonorgcod: string;
|
|
2159
|
+
/**
|
|
2160
|
+
* Identifiant
|
|
2161
|
+
*/
|
|
2162
|
+
memorgid: Int8;
|
|
2163
|
+
/**
|
|
2164
|
+
* Date système création
|
|
2165
|
+
*/
|
|
2166
|
+
syscredat: Timestamp | null;
|
|
2167
|
+
/**
|
|
2168
|
+
* Date système modification
|
|
2169
|
+
*/
|
|
2170
|
+
sysmajdat: Timestamp | null;
|
|
2171
|
+
/**
|
|
2172
|
+
* Code validité
|
|
2173
|
+
*/
|
|
2174
|
+
temvalcod: string | null;
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2177
|
+
export interface Fonorg {
|
|
2178
|
+
/**
|
|
2179
|
+
* Code fonction organisme
|
|
2180
|
+
*/
|
|
2181
|
+
fonorgcod: string;
|
|
2182
|
+
/**
|
|
2183
|
+
* Libellé
|
|
2184
|
+
*/
|
|
2185
|
+
fonorglib: string | null;
|
|
2186
|
+
/**
|
|
2187
|
+
* Libellé féminin
|
|
2188
|
+
*/
|
|
2189
|
+
fonorglibfem: string | null;
|
|
2190
|
+
/**
|
|
2191
|
+
* Libellé féminin pluriel
|
|
2192
|
+
*/
|
|
2193
|
+
fonorglibfemplu: string | null;
|
|
2194
|
+
/**
|
|
2195
|
+
* Libellé pluriel
|
|
2196
|
+
*/
|
|
2197
|
+
fonorglibplu: string | null;
|
|
2198
|
+
/**
|
|
2199
|
+
* Libellé court
|
|
2200
|
+
*/
|
|
2201
|
+
fonorglic: string | null;
|
|
2202
|
+
/**
|
|
2203
|
+
* Libellé court féminin
|
|
2204
|
+
*/
|
|
2205
|
+
fonorglicfem: string | null;
|
|
2206
|
+
/**
|
|
2207
|
+
* Libellé court féminin pluriel
|
|
2208
|
+
*/
|
|
2209
|
+
fonorglicfemplu: string | null;
|
|
2210
|
+
/**
|
|
2211
|
+
* Libellé court pluriel
|
|
2212
|
+
*/
|
|
2213
|
+
fonorglicplu: string | null;
|
|
2214
|
+
/**
|
|
2215
|
+
* Libellé long
|
|
2216
|
+
*/
|
|
2217
|
+
fonorglil: string | null;
|
|
2218
|
+
/**
|
|
2219
|
+
* Libellé long féminin
|
|
2220
|
+
*/
|
|
2221
|
+
fonorglilfem: string | null;
|
|
2222
|
+
/**
|
|
2223
|
+
* Libellé long féminin pluriel
|
|
2224
|
+
*/
|
|
2225
|
+
fonorglilfemplu: string | null;
|
|
2226
|
+
/**
|
|
2227
|
+
* Libellé long pluriel
|
|
2228
|
+
*/
|
|
2229
|
+
fonorglilplu: string | null;
|
|
2230
|
+
/**
|
|
2231
|
+
* Numéro de tri
|
|
2232
|
+
*/
|
|
2233
|
+
fonorgnumtri: Int8 | null;
|
|
2234
|
+
/**
|
|
2235
|
+
* Date système création
|
|
2236
|
+
*/
|
|
2237
|
+
syscredat: Timestamp | null;
|
|
2238
|
+
/**
|
|
2239
|
+
* Date système modification
|
|
2240
|
+
*/
|
|
2241
|
+
sysmajdat: Timestamp | null;
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
export interface Grppol {
|
|
2245
|
+
/**
|
|
2246
|
+
* Libellé
|
|
2247
|
+
*/
|
|
2248
|
+
evelib: string | null;
|
|
2249
|
+
/**
|
|
2250
|
+
* Libellé court
|
|
2251
|
+
*/
|
|
2252
|
+
evelic: string | null;
|
|
2253
|
+
/**
|
|
2254
|
+
* Libellé long
|
|
2255
|
+
*/
|
|
2256
|
+
evelil: string | null;
|
|
2257
|
+
/**
|
|
2258
|
+
* Article
|
|
2259
|
+
*/
|
|
2260
|
+
grppolart: string | null;
|
|
2261
|
+
/**
|
|
2262
|
+
* Code groupe politique 4e Rép.
|
|
2263
|
+
*/
|
|
2264
|
+
grppolcod: string;
|
|
2265
|
+
/**
|
|
2266
|
+
* Code transfert AMELI
|
|
2267
|
+
*/
|
|
2268
|
+
grppolcodamelicou: string | null;
|
|
2269
|
+
/**
|
|
2270
|
+
* Date création
|
|
2271
|
+
*/
|
|
2272
|
+
grppoldatcre: Timestamp | null;
|
|
2273
|
+
/**
|
|
2274
|
+
* Date de fin
|
|
2275
|
+
*/
|
|
2276
|
+
grppoldatfin: Timestamp | null;
|
|
2277
|
+
/**
|
|
2278
|
+
* Libellé courant
|
|
2279
|
+
*/
|
|
2280
|
+
grppollibcou: string | null;
|
|
2281
|
+
/**
|
|
2282
|
+
* Libellé court courant
|
|
2283
|
+
*/
|
|
2284
|
+
grppolliccou: string | null;
|
|
2285
|
+
/**
|
|
2286
|
+
* Libellé long courant
|
|
2287
|
+
*/
|
|
2288
|
+
grppollilcou: string | null;
|
|
2289
|
+
/**
|
|
2290
|
+
* A un président (ou un délégué)
|
|
2291
|
+
*/
|
|
2292
|
+
grppolpre: string | null;
|
|
2293
|
+
/**
|
|
2294
|
+
* URL complète
|
|
2295
|
+
*/
|
|
2296
|
+
grppolurlcmp: string | null;
|
|
2297
|
+
/**
|
|
2298
|
+
* URL simplifiée (relative)
|
|
2299
|
+
*/
|
|
2300
|
+
grppolurlsim: string | null;
|
|
2301
|
+
/**
|
|
2302
|
+
* Date système création
|
|
2303
|
+
*/
|
|
2304
|
+
syscredat: Timestamp | null;
|
|
2305
|
+
/**
|
|
2306
|
+
* Date système modification
|
|
2307
|
+
*/
|
|
2308
|
+
sysmajdat: Timestamp | null;
|
|
2309
|
+
/**
|
|
2310
|
+
* Code validité
|
|
2311
|
+
*/
|
|
2312
|
+
temvalcod: string | null;
|
|
2313
|
+
/**
|
|
2314
|
+
* Code type organisme
|
|
2315
|
+
*/
|
|
2316
|
+
typorgcod: string;
|
|
2317
|
+
}
|
|
2318
|
+
|
|
2319
|
+
export interface Grpsenami {
|
|
2320
|
+
/**
|
|
2321
|
+
* Code organisme
|
|
2322
|
+
*/
|
|
2323
|
+
comorgcod: Generated<string>;
|
|
2324
|
+
/**
|
|
2325
|
+
* Libellé
|
|
2326
|
+
*/
|
|
2327
|
+
evelib: string | null;
|
|
2328
|
+
/**
|
|
2329
|
+
* Libellé court
|
|
2330
|
+
*/
|
|
2331
|
+
evelic: string | null;
|
|
2332
|
+
/**
|
|
2333
|
+
* Libellé long
|
|
2334
|
+
*/
|
|
2335
|
+
evelil: string | null;
|
|
2336
|
+
/**
|
|
2337
|
+
* Membre APF
|
|
2338
|
+
*/
|
|
2339
|
+
grpsenalf: string | null;
|
|
2340
|
+
/**
|
|
2341
|
+
* Edition WEB
|
|
2342
|
+
*/
|
|
2343
|
+
grpsenweb: string | null;
|
|
2344
|
+
/**
|
|
2345
|
+
* Article
|
|
2346
|
+
*/
|
|
2347
|
+
orgart: string | null;
|
|
2348
|
+
/**
|
|
2349
|
+
* Code organisme
|
|
2350
|
+
*/
|
|
2351
|
+
orgcod: string;
|
|
2352
|
+
/**
|
|
2353
|
+
* Date création
|
|
2354
|
+
*/
|
|
2355
|
+
orgdatcre: Timestamp;
|
|
2356
|
+
/**
|
|
2357
|
+
* Date de fin
|
|
2358
|
+
*/
|
|
2359
|
+
orgdatfin: Timestamp | null;
|
|
2360
|
+
/**
|
|
2361
|
+
* Numéro de tri
|
|
2362
|
+
*/
|
|
2363
|
+
orgnumtri: Int8 | null;
|
|
2364
|
+
/**
|
|
2365
|
+
* Témoin transfert ANNUAIRE
|
|
2366
|
+
*/
|
|
2367
|
+
orgtemannu: Generated<string | null>;
|
|
2368
|
+
/**
|
|
2369
|
+
* URL complet
|
|
2370
|
+
*/
|
|
2371
|
+
orgurlcmp: string | null;
|
|
2372
|
+
/**
|
|
2373
|
+
* URL simplifié
|
|
2374
|
+
*/
|
|
2375
|
+
orgurlsim: string | null;
|
|
2376
|
+
plaindcod: Generated<string>;
|
|
2377
|
+
/**
|
|
2378
|
+
* Code organisme
|
|
2379
|
+
*/
|
|
2380
|
+
scnorgcod: string | null;
|
|
2381
|
+
/**
|
|
2382
|
+
* Date système création
|
|
2383
|
+
*/
|
|
2384
|
+
syscredat: Timestamp | null;
|
|
2385
|
+
/**
|
|
2386
|
+
* Date système modification
|
|
2387
|
+
*/
|
|
2388
|
+
sysmajdat: Timestamp | null;
|
|
2389
|
+
/**
|
|
2390
|
+
* Code validité
|
|
2391
|
+
*/
|
|
2392
|
+
temvalcod: string | null;
|
|
2393
|
+
/**
|
|
2394
|
+
* Pour les groupes non rattachés à une commission (COMORGCOD='NEANT')
|
|
2395
|
+
* précise le type spécial de groupe :
|
|
2396
|
+
* - HORSCOM : groupe hors commission (intergroupe par exemple)
|
|
2397
|
+
* - TOUTCOM : groupe rattaché à plusieurs commissions (nouveau besoin 01/2018)
|
|
2398
|
+
*
|
|
2399
|
+
*/
|
|
2400
|
+
type_com_neant: string | null;
|
|
2401
|
+
/**
|
|
2402
|
+
* Code type groupe
|
|
2403
|
+
*/
|
|
2404
|
+
typgrpsencod: Generated<string>;
|
|
2405
|
+
/**
|
|
2406
|
+
* Code type organisme
|
|
2407
|
+
*/
|
|
2408
|
+
typorgcod: string;
|
|
2409
|
+
}
|
|
2410
|
+
|
|
2411
|
+
export interface Libcom {
|
|
2412
|
+
/**
|
|
2413
|
+
* Libellé
|
|
2414
|
+
*/
|
|
2415
|
+
evelib: string | null;
|
|
2416
|
+
/**
|
|
2417
|
+
* Libellé court
|
|
2418
|
+
*/
|
|
2419
|
+
evelic: string | null;
|
|
2420
|
+
/**
|
|
2421
|
+
* Libellé long
|
|
2422
|
+
*/
|
|
2423
|
+
evelil: string | null;
|
|
2424
|
+
/**
|
|
2425
|
+
* Article
|
|
2426
|
+
*/
|
|
2427
|
+
libcomart: string | null;
|
|
2428
|
+
/**
|
|
2429
|
+
* Date début
|
|
2430
|
+
*/
|
|
2431
|
+
libcomdatdeb: Timestamp;
|
|
2432
|
+
/**
|
|
2433
|
+
* Date fin
|
|
2434
|
+
*/
|
|
2435
|
+
libcomdatfin: Timestamp | null;
|
|
2436
|
+
/**
|
|
2437
|
+
* Identifiant
|
|
2438
|
+
*/
|
|
2439
|
+
libcomid: Int8;
|
|
2440
|
+
/**
|
|
2441
|
+
* Libellé transfert AMELI
|
|
2442
|
+
*/
|
|
2443
|
+
libcomlibameli: string | null;
|
|
2444
|
+
/**
|
|
2445
|
+
* Libellé Minuscule
|
|
2446
|
+
*/
|
|
2447
|
+
libcomlilmin: string | null;
|
|
2448
|
+
/**
|
|
2449
|
+
* Code organisme
|
|
2450
|
+
*/
|
|
2451
|
+
orgcod: string;
|
|
2452
|
+
/**
|
|
2453
|
+
* Date système création
|
|
2454
|
+
*/
|
|
2455
|
+
syscredat: Timestamp | null;
|
|
2456
|
+
/**
|
|
2457
|
+
* Date système modification
|
|
2458
|
+
*/
|
|
2459
|
+
sysmajdat: Timestamp | null;
|
|
2460
|
+
/**
|
|
2461
|
+
* Code validité
|
|
2462
|
+
*/
|
|
2463
|
+
temvalcod: string | null;
|
|
2464
|
+
}
|
|
2465
|
+
|
|
2466
|
+
export interface Libdelega {
|
|
2467
|
+
/**
|
|
2468
|
+
* Libellé
|
|
2469
|
+
*/
|
|
2470
|
+
evelib: string | null;
|
|
2471
|
+
/**
|
|
2472
|
+
* Libellé court
|
|
2473
|
+
*/
|
|
2474
|
+
evelic: string | null;
|
|
2475
|
+
/**
|
|
2476
|
+
* Libellé long
|
|
2477
|
+
*/
|
|
2478
|
+
evelil: string | null;
|
|
2479
|
+
/**
|
|
2480
|
+
* Observations
|
|
2481
|
+
*/
|
|
2482
|
+
eveobs: string | null;
|
|
2483
|
+
/**
|
|
2484
|
+
* Article
|
|
2485
|
+
*/
|
|
2486
|
+
libdelegaart: string | null;
|
|
2487
|
+
/**
|
|
2488
|
+
* Date de début
|
|
2489
|
+
*/
|
|
2490
|
+
libdelegadatdeb: Timestamp;
|
|
2491
|
+
/**
|
|
2492
|
+
* Date fin
|
|
2493
|
+
*/
|
|
2494
|
+
libdelegadatfin: Timestamp | null;
|
|
2495
|
+
/**
|
|
2496
|
+
* Identifiant
|
|
2497
|
+
*/
|
|
2498
|
+
libdelegaid: Int8;
|
|
2499
|
+
/**
|
|
2500
|
+
* Code organisme
|
|
2501
|
+
*/
|
|
2502
|
+
orgcod: string;
|
|
2503
|
+
/**
|
|
2504
|
+
* Date système création
|
|
2505
|
+
*/
|
|
2506
|
+
syscredat: Timestamp | null;
|
|
2507
|
+
/**
|
|
2508
|
+
* Date système modification
|
|
2509
|
+
*/
|
|
2510
|
+
sysmajdat: Timestamp | null;
|
|
2511
|
+
/**
|
|
2512
|
+
* Code validité
|
|
2513
|
+
*/
|
|
2514
|
+
temvalcod: string | null;
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2517
|
+
export interface Libgrppol {
|
|
2518
|
+
/**
|
|
2519
|
+
* Libellé
|
|
2520
|
+
*/
|
|
2521
|
+
evelib: string | null;
|
|
2522
|
+
/**
|
|
2523
|
+
* Libellé court
|
|
2524
|
+
*/
|
|
2525
|
+
evelic: string | null;
|
|
2526
|
+
/**
|
|
2527
|
+
* Libellé long
|
|
2528
|
+
*/
|
|
2529
|
+
evelil: string | null;
|
|
2530
|
+
/**
|
|
2531
|
+
* Observations
|
|
2532
|
+
*/
|
|
2533
|
+
eveobs: string | null;
|
|
2534
|
+
/**
|
|
2535
|
+
* Code groupe politique 4e Rép.
|
|
2536
|
+
*/
|
|
2537
|
+
grppolcod: string;
|
|
2538
|
+
/**
|
|
2539
|
+
* Article
|
|
2540
|
+
*/
|
|
2541
|
+
libgrppolart: string | null;
|
|
2542
|
+
/**
|
|
2543
|
+
* Code transfert AMELI
|
|
2544
|
+
*/
|
|
2545
|
+
libgrppolcodameli: string | null;
|
|
2546
|
+
/**
|
|
2547
|
+
* Date début
|
|
2548
|
+
*/
|
|
2549
|
+
libgrppoldatdeb: Timestamp;
|
|
2550
|
+
/**
|
|
2551
|
+
* Date de fin
|
|
2552
|
+
*/
|
|
2553
|
+
libgrppoldatfin: Timestamp | null;
|
|
2554
|
+
/**
|
|
2555
|
+
* Identifiant
|
|
2556
|
+
*/
|
|
2557
|
+
libgrppolid: Int8;
|
|
2558
|
+
/**
|
|
2559
|
+
* Date système création
|
|
2560
|
+
*/
|
|
2561
|
+
syscredat: Timestamp | null;
|
|
2562
|
+
/**
|
|
2563
|
+
* Date système modification
|
|
2564
|
+
*/
|
|
2565
|
+
sysmajdat: Timestamp | null;
|
|
2566
|
+
/**
|
|
2567
|
+
* Code validité
|
|
2568
|
+
*/
|
|
2569
|
+
temvalcod: string | null;
|
|
2570
|
+
}
|
|
2571
|
+
|
|
2572
|
+
export interface Libgrpsen {
|
|
2573
|
+
/**
|
|
2574
|
+
* Article
|
|
2575
|
+
*/
|
|
2576
|
+
libgrpsenart: string | null;
|
|
2577
|
+
/**
|
|
2578
|
+
* Date d'autorisation bureau
|
|
2579
|
+
*/
|
|
2580
|
+
libgrpsendatautbur: Timestamp;
|
|
2581
|
+
/**
|
|
2582
|
+
* Date de fin
|
|
2583
|
+
*/
|
|
2584
|
+
libgrpsendatfin: Timestamp | null;
|
|
2585
|
+
libgrpsenid: Int8;
|
|
2586
|
+
/**
|
|
2587
|
+
* Libellé groupe sénatorial
|
|
2588
|
+
*/
|
|
2589
|
+
libgrpsenlib: string;
|
|
2590
|
+
/**
|
|
2591
|
+
* Libellé court
|
|
2592
|
+
*/
|
|
2593
|
+
libgrpsenlic: string;
|
|
2594
|
+
/**
|
|
2595
|
+
* Libellé long
|
|
2596
|
+
*/
|
|
2597
|
+
libgrpsenlil: string | null;
|
|
2598
|
+
/**
|
|
2599
|
+
* Code organisme
|
|
2600
|
+
*/
|
|
2601
|
+
orgcod: string;
|
|
2602
|
+
/**
|
|
2603
|
+
* Date système création
|
|
2604
|
+
*/
|
|
2605
|
+
syscredat: Timestamp | null;
|
|
2606
|
+
/**
|
|
2607
|
+
* Date système modification
|
|
2608
|
+
*/
|
|
2609
|
+
sysmajdat: Timestamp | null;
|
|
2610
|
+
}
|
|
2611
|
+
|
|
2612
|
+
export interface Liborg {
|
|
2613
|
+
/**
|
|
2614
|
+
* Libellé
|
|
2615
|
+
*/
|
|
2616
|
+
evelib: string | null;
|
|
2617
|
+
/**
|
|
2618
|
+
* Libellé court
|
|
2619
|
+
*/
|
|
2620
|
+
evelic: string | null;
|
|
2621
|
+
/**
|
|
2622
|
+
* Libellé long
|
|
2623
|
+
*/
|
|
2624
|
+
evelil: string | null;
|
|
2625
|
+
/**
|
|
2626
|
+
* Observations
|
|
2627
|
+
*/
|
|
2628
|
+
eveobs: string | null;
|
|
2629
|
+
/**
|
|
2630
|
+
* Article
|
|
2631
|
+
*/
|
|
2632
|
+
liborgart: string | null;
|
|
2633
|
+
/**
|
|
2634
|
+
* Date de début
|
|
2635
|
+
*/
|
|
2636
|
+
liborgdatdeb: Timestamp;
|
|
2637
|
+
/**
|
|
2638
|
+
* Date de fin
|
|
2639
|
+
*/
|
|
2640
|
+
liborgdatfin: Timestamp | null;
|
|
2641
|
+
/**
|
|
2642
|
+
* Identifiant
|
|
2643
|
+
*/
|
|
2644
|
+
liborgid: Int8;
|
|
2645
|
+
/**
|
|
2646
|
+
* Code organisme
|
|
2647
|
+
*/
|
|
2648
|
+
orgcod: string;
|
|
2649
|
+
/**
|
|
2650
|
+
* Date système création
|
|
2651
|
+
*/
|
|
2652
|
+
syscredat: Timestamp | null;
|
|
2653
|
+
/**
|
|
2654
|
+
* Date système modification
|
|
2655
|
+
*/
|
|
2656
|
+
sysmajdat: Timestamp | null;
|
|
2657
|
+
/**
|
|
2658
|
+
* Code validité
|
|
2659
|
+
*/
|
|
2660
|
+
temvalcod: string | null;
|
|
2661
|
+
}
|
|
2662
|
+
|
|
2663
|
+
export interface Mel {
|
|
2664
|
+
/**
|
|
2665
|
+
* Adresse Mel
|
|
2666
|
+
*/
|
|
2667
|
+
melema: string | null;
|
|
2668
|
+
/**
|
|
2669
|
+
* Identifiant Mel
|
|
2670
|
+
*/
|
|
2671
|
+
melid: Int8;
|
|
2672
|
+
/**
|
|
2673
|
+
* Numéro de tri
|
|
2674
|
+
*/
|
|
2675
|
+
melnumtri: Int8 | null;
|
|
2676
|
+
/**
|
|
2677
|
+
* Identifiant point de contact
|
|
2678
|
+
*/
|
|
2679
|
+
poiconid: Int8;
|
|
2680
|
+
syscredat: Timestamp | null;
|
|
2681
|
+
sysmajdat: Timestamp | null;
|
|
2682
|
+
}
|
|
2683
|
+
|
|
2684
|
+
export interface Memcom {
|
|
2685
|
+
/**
|
|
2686
|
+
* Libellé
|
|
2687
|
+
*/
|
|
2688
|
+
evelib: string | null;
|
|
2689
|
+
/**
|
|
2690
|
+
* Libellé court
|
|
2691
|
+
*/
|
|
2692
|
+
evelic: string | null;
|
|
2693
|
+
/**
|
|
2694
|
+
* Libellé long
|
|
2695
|
+
*/
|
|
2696
|
+
evelil: string | null;
|
|
2697
|
+
/**
|
|
2698
|
+
* Observations
|
|
2699
|
+
*/
|
|
2700
|
+
eveobs: string | null;
|
|
2701
|
+
/**
|
|
2702
|
+
* Date de début
|
|
2703
|
+
*/
|
|
2704
|
+
memcomdatdeb: Timestamp | null;
|
|
2705
|
+
/**
|
|
2706
|
+
* Date de fin
|
|
2707
|
+
*/
|
|
2708
|
+
memcomdatfin: Timestamp | null;
|
|
2709
|
+
/**
|
|
2710
|
+
* Identifiant
|
|
2711
|
+
*/
|
|
2712
|
+
memcomid: Int8;
|
|
2713
|
+
/**
|
|
2714
|
+
* Titulaire/Suppléant
|
|
2715
|
+
*/
|
|
2716
|
+
memcomtitsup: string | null;
|
|
2717
|
+
/**
|
|
2718
|
+
* Code organisme
|
|
2719
|
+
*/
|
|
2720
|
+
orgcod: string;
|
|
2721
|
+
/**
|
|
2722
|
+
* Matricule
|
|
2723
|
+
*/
|
|
2724
|
+
senmat: string;
|
|
2725
|
+
/**
|
|
2726
|
+
* Date système création
|
|
2727
|
+
*/
|
|
2728
|
+
syscredat: Timestamp | null;
|
|
2729
|
+
/**
|
|
2730
|
+
* Date système modification
|
|
2731
|
+
*/
|
|
2732
|
+
sysmajdat: Timestamp | null;
|
|
2733
|
+
/**
|
|
2734
|
+
* Code validité
|
|
2735
|
+
*/
|
|
2736
|
+
temvalcod: string | null;
|
|
2737
|
+
}
|
|
2738
|
+
|
|
2739
|
+
export interface Memdelega {
|
|
2740
|
+
/**
|
|
2741
|
+
* Code désignataire
|
|
2742
|
+
*/
|
|
2743
|
+
designcod: Generated<string>;
|
|
2744
|
+
/**
|
|
2745
|
+
* Libellé
|
|
2746
|
+
*/
|
|
2747
|
+
evelib: string | null;
|
|
2748
|
+
/**
|
|
2749
|
+
* Libellé court
|
|
2750
|
+
*/
|
|
2751
|
+
evelic: string | null;
|
|
2752
|
+
/**
|
|
2753
|
+
* Libellé long
|
|
2754
|
+
*/
|
|
2755
|
+
evelil: string | null;
|
|
2756
|
+
/**
|
|
2757
|
+
* Observations
|
|
2758
|
+
*/
|
|
2759
|
+
eveobs: string | null;
|
|
2760
|
+
/**
|
|
2761
|
+
* Date de début
|
|
2762
|
+
*/
|
|
2763
|
+
memdelegadatdeb: Timestamp | null;
|
|
2764
|
+
/**
|
|
2765
|
+
* Date de fin
|
|
2766
|
+
*/
|
|
2767
|
+
memdelegadatfin: Timestamp | null;
|
|
2768
|
+
/**
|
|
2769
|
+
* Identifiant
|
|
2770
|
+
*/
|
|
2771
|
+
memdelegaid: Int8;
|
|
2772
|
+
/**
|
|
2773
|
+
* Code organisme
|
|
2774
|
+
*/
|
|
2775
|
+
orgcod: string;
|
|
2776
|
+
/**
|
|
2777
|
+
* Matricule
|
|
2778
|
+
*/
|
|
2779
|
+
senmat: string;
|
|
2780
|
+
/**
|
|
2781
|
+
* Date système création
|
|
2782
|
+
*/
|
|
2783
|
+
syscredat: Timestamp | null;
|
|
2784
|
+
/**
|
|
2785
|
+
* Date système modification
|
|
2786
|
+
*/
|
|
2787
|
+
sysmajdat: Timestamp | null;
|
|
2788
|
+
/**
|
|
2789
|
+
* Code validité
|
|
2790
|
+
*/
|
|
2791
|
+
temvalcod: string | null;
|
|
2792
|
+
}
|
|
2793
|
+
|
|
2794
|
+
export interface Memextpar {
|
|
2795
|
+
avis_an: Generated<string>;
|
|
2796
|
+
avis_global: Generated<string>;
|
|
2797
|
+
avis_senat: Generated<string>;
|
|
2798
|
+
date_annonce_seance: Timestamp | null;
|
|
2799
|
+
date_audition_senat: Timestamp | null;
|
|
2800
|
+
date_avis_an: Timestamp | null;
|
|
2801
|
+
date_avis_global: Timestamp | null;
|
|
2802
|
+
date_avis_senat: Timestamp | null;
|
|
2803
|
+
date_publication_jo: Timestamp | null;
|
|
2804
|
+
date_reponse_exec: Timestamp | null;
|
|
2805
|
+
date_saisine_exec: Timestamp | null;
|
|
2806
|
+
/**
|
|
2807
|
+
* Code désignataire
|
|
2808
|
+
*/
|
|
2809
|
+
designcod: Generated<string>;
|
|
2810
|
+
/**
|
|
2811
|
+
* Libellé
|
|
2812
|
+
*/
|
|
2813
|
+
evelib: string | null;
|
|
2814
|
+
/**
|
|
2815
|
+
* Libellé court
|
|
2816
|
+
*/
|
|
2817
|
+
evelic: string | null;
|
|
2818
|
+
/**
|
|
2819
|
+
* Libellé long
|
|
2820
|
+
*/
|
|
2821
|
+
evelil: string | null;
|
|
2822
|
+
/**
|
|
2823
|
+
* Observations
|
|
2824
|
+
*/
|
|
2825
|
+
eveobs: string | null;
|
|
2826
|
+
fonmemextparcod: Generated<string | null>;
|
|
2827
|
+
/**
|
|
2828
|
+
* Date de Debut
|
|
2829
|
+
*/
|
|
2830
|
+
memextpardatdeb: Timestamp | null;
|
|
2831
|
+
/**
|
|
2832
|
+
* Date de fin
|
|
2833
|
+
*/
|
|
2834
|
+
memextpardatfin: Timestamp | null;
|
|
2835
|
+
/**
|
|
2836
|
+
* Identifiant
|
|
2837
|
+
*/
|
|
2838
|
+
memextparid: Int8;
|
|
2839
|
+
memextparrngele: Int8 | null;
|
|
2840
|
+
/**
|
|
2841
|
+
* Titulaire Suppleant
|
|
2842
|
+
*/
|
|
2843
|
+
memextpartitsup: string | null;
|
|
2844
|
+
/**
|
|
2845
|
+
* Code organisme
|
|
2846
|
+
*/
|
|
2847
|
+
orgcod: string | null;
|
|
2848
|
+
/**
|
|
2849
|
+
* Matricule
|
|
2850
|
+
*/
|
|
2851
|
+
senmat: string;
|
|
2852
|
+
/**
|
|
2853
|
+
* Date système création
|
|
2854
|
+
*/
|
|
2855
|
+
syscredat: Timestamp | null;
|
|
2856
|
+
/**
|
|
2857
|
+
* Date système modification
|
|
2858
|
+
*/
|
|
2859
|
+
sysmajdat: Timestamp | null;
|
|
2860
|
+
/**
|
|
2861
|
+
* Code validité
|
|
2862
|
+
*/
|
|
2863
|
+
temvalcod: string | null;
|
|
2864
|
+
texte_avis_an: string | null;
|
|
2865
|
+
texte_avis_global: string | null;
|
|
2866
|
+
texte_avis_senat: string | null;
|
|
2867
|
+
}
|
|
2868
|
+
|
|
2869
|
+
export interface Memgrppol {
|
|
2870
|
+
/**
|
|
2871
|
+
* Libellé
|
|
2872
|
+
*/
|
|
2873
|
+
evelib: string | null;
|
|
2874
|
+
/**
|
|
2875
|
+
* Libellé court
|
|
2876
|
+
*/
|
|
2877
|
+
evelic: string | null;
|
|
2878
|
+
/**
|
|
2879
|
+
* Libellé long
|
|
2880
|
+
*/
|
|
2881
|
+
evelil: string | null;
|
|
2882
|
+
/**
|
|
2883
|
+
* Observations
|
|
2884
|
+
*/
|
|
2885
|
+
eveobs: string | null;
|
|
2886
|
+
/**
|
|
2887
|
+
* Code groupe politique 4e Rép.
|
|
2888
|
+
*/
|
|
2889
|
+
grppolcod: string;
|
|
2890
|
+
/**
|
|
2891
|
+
* Date de début
|
|
2892
|
+
*/
|
|
2893
|
+
memgrppoldatdeb: Timestamp | null;
|
|
2894
|
+
/**
|
|
2895
|
+
* Date de fin
|
|
2896
|
+
*/
|
|
2897
|
+
memgrppoldatfin: Timestamp | null;
|
|
2898
|
+
/**
|
|
2899
|
+
* Identifiant
|
|
2900
|
+
*/
|
|
2901
|
+
memgrppolid: Int8;
|
|
2902
|
+
/**
|
|
2903
|
+
* Matricule
|
|
2904
|
+
*/
|
|
2905
|
+
senmat: string;
|
|
2906
|
+
/**
|
|
2907
|
+
* Date système création
|
|
2908
|
+
*/
|
|
2909
|
+
syscredat: Timestamp | null;
|
|
2910
|
+
/**
|
|
2911
|
+
* Date système modification
|
|
2912
|
+
*/
|
|
2913
|
+
sysmajdat: Timestamp | null;
|
|
2914
|
+
/**
|
|
2915
|
+
* Code validité
|
|
2916
|
+
*/
|
|
2917
|
+
temvalcod: string | null;
|
|
2918
|
+
/**
|
|
2919
|
+
* Code type appartenance
|
|
2920
|
+
*/
|
|
2921
|
+
typapppolcod: string;
|
|
2922
|
+
}
|
|
2923
|
+
|
|
2924
|
+
export interface Memgrpsen {
|
|
2925
|
+
/**
|
|
2926
|
+
* Libellé
|
|
2927
|
+
*/
|
|
2928
|
+
evelib: string | null;
|
|
2929
|
+
/**
|
|
2930
|
+
* Libellé court
|
|
2931
|
+
*/
|
|
2932
|
+
evelic: string | null;
|
|
2933
|
+
/**
|
|
2934
|
+
* Libellé long
|
|
2935
|
+
*/
|
|
2936
|
+
evelil: string | null;
|
|
2937
|
+
memgrpsendatent: Timestamp;
|
|
2938
|
+
memgrpsendatsor: Timestamp;
|
|
2939
|
+
memgrpsenid: Int8;
|
|
2940
|
+
/**
|
|
2941
|
+
* Code organisme
|
|
2942
|
+
*/
|
|
2943
|
+
orgcod: string;
|
|
2944
|
+
/**
|
|
2945
|
+
* Matricule
|
|
2946
|
+
*/
|
|
2947
|
+
senmat: string;
|
|
2948
|
+
/**
|
|
2949
|
+
* Date système création
|
|
2950
|
+
*/
|
|
2951
|
+
syscredat: Timestamp | null;
|
|
2952
|
+
/**
|
|
2953
|
+
* Date système modification
|
|
2954
|
+
*/
|
|
2955
|
+
sysmajdat: Timestamp | null;
|
|
2956
|
+
/**
|
|
2957
|
+
* Code validité
|
|
2958
|
+
*/
|
|
2959
|
+
temvalcod: string | null;
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2962
|
+
export interface Memorg {
|
|
2963
|
+
/**
|
|
2964
|
+
* Code désignataire
|
|
2965
|
+
*/
|
|
2966
|
+
designcod: Generated<string>;
|
|
2967
|
+
/**
|
|
2968
|
+
* Libellé
|
|
2969
|
+
*/
|
|
2970
|
+
evelib: string | null;
|
|
2971
|
+
/**
|
|
2972
|
+
* Libellé court
|
|
2973
|
+
*/
|
|
2974
|
+
evelic: string | null;
|
|
2975
|
+
/**
|
|
2976
|
+
* Libellé long
|
|
2977
|
+
*/
|
|
2978
|
+
evelil: string | null;
|
|
2979
|
+
/**
|
|
2980
|
+
* Observations
|
|
2981
|
+
*/
|
|
2982
|
+
eveobs: string | null;
|
|
2983
|
+
/**
|
|
2984
|
+
* Année de début
|
|
2985
|
+
*/
|
|
2986
|
+
memorganndeb: Int8 | null;
|
|
2987
|
+
/**
|
|
2988
|
+
* Année de fin
|
|
2989
|
+
*/
|
|
2990
|
+
memorgannfin: Int8 | null;
|
|
2991
|
+
/**
|
|
2992
|
+
* Date de début
|
|
2993
|
+
*/
|
|
2994
|
+
memorgdatdeb: Timestamp | null;
|
|
2995
|
+
/**
|
|
2996
|
+
* Date de fin
|
|
2997
|
+
*/
|
|
2998
|
+
memorgdatfin: Timestamp | null;
|
|
2999
|
+
/**
|
|
3000
|
+
* Identifiant
|
|
3001
|
+
*/
|
|
3002
|
+
memorgid: Int8;
|
|
3003
|
+
/**
|
|
3004
|
+
* Code organisme
|
|
3005
|
+
*/
|
|
3006
|
+
orgcod: string;
|
|
3007
|
+
/**
|
|
3008
|
+
* Matricule
|
|
3009
|
+
*/
|
|
3010
|
+
senmat: string;
|
|
3011
|
+
/**
|
|
3012
|
+
* Date système création
|
|
3013
|
+
*/
|
|
3014
|
+
syscredat: Timestamp | null;
|
|
3015
|
+
/**
|
|
3016
|
+
* Date système modification
|
|
3017
|
+
*/
|
|
3018
|
+
sysmajdat: Timestamp | null;
|
|
3019
|
+
/**
|
|
3020
|
+
* Code validité
|
|
3021
|
+
*/
|
|
3022
|
+
temvalcod: string | null;
|
|
3023
|
+
}
|
|
3024
|
+
|
|
3025
|
+
export interface Minind {
|
|
3026
|
+
/**
|
|
3027
|
+
* Libellé
|
|
3028
|
+
*/
|
|
3029
|
+
evelib: string | null;
|
|
3030
|
+
/**
|
|
3031
|
+
* Libellé court
|
|
3032
|
+
*/
|
|
3033
|
+
evelic: string | null;
|
|
3034
|
+
/**
|
|
3035
|
+
* Libellé long
|
|
3036
|
+
*/
|
|
3037
|
+
evelil: string | null;
|
|
3038
|
+
/**
|
|
3039
|
+
* Observations
|
|
3040
|
+
*/
|
|
3041
|
+
eveobs: string | null;
|
|
3042
|
+
gvtid: Int8;
|
|
3043
|
+
memgvtrngprt: Int8 | null;
|
|
3044
|
+
/**
|
|
3045
|
+
* Année début
|
|
3046
|
+
*/
|
|
3047
|
+
minanndeb: Int8 | null;
|
|
3048
|
+
/**
|
|
3049
|
+
* Année fin
|
|
3050
|
+
*/
|
|
3051
|
+
minannfin: Int8 | null;
|
|
3052
|
+
/**
|
|
3053
|
+
* Circ fin fon
|
|
3054
|
+
*/
|
|
3055
|
+
mincirfin: string | null;
|
|
3056
|
+
/**
|
|
3057
|
+
* Date Nomination
|
|
3058
|
+
*/
|
|
3059
|
+
mindatdeb: Timestamp | null;
|
|
3060
|
+
/**
|
|
3061
|
+
* Date fin fonctions
|
|
3062
|
+
*/
|
|
3063
|
+
mindatfin: Timestamp | null;
|
|
3064
|
+
/**
|
|
3065
|
+
* Ministre délégué
|
|
3066
|
+
*/
|
|
3067
|
+
mindel: Generated<string | null>;
|
|
3068
|
+
/**
|
|
3069
|
+
* Identifiant
|
|
3070
|
+
*/
|
|
3071
|
+
minid: Int8;
|
|
3072
|
+
poicon: Int8 | null;
|
|
3073
|
+
/**
|
|
3074
|
+
* Matricule
|
|
3075
|
+
*/
|
|
3076
|
+
senmat: string | null;
|
|
3077
|
+
/**
|
|
3078
|
+
* Date système création
|
|
3079
|
+
*/
|
|
3080
|
+
syscredat: Timestamp | null;
|
|
3081
|
+
/**
|
|
3082
|
+
* Date système modification
|
|
3083
|
+
*/
|
|
3084
|
+
sysmajdat: Timestamp | null;
|
|
3085
|
+
/**
|
|
3086
|
+
* Code validité
|
|
3087
|
+
*/
|
|
3088
|
+
temvalcod: string | null;
|
|
3089
|
+
titmincod: string;
|
|
3090
|
+
typmincod: string;
|
|
3091
|
+
}
|
|
3092
|
+
|
|
3093
|
+
export interface Mismin {
|
|
3094
|
+
/**
|
|
3095
|
+
* Identifiant Ministre
|
|
3096
|
+
*/
|
|
3097
|
+
minid: Int8;
|
|
3098
|
+
/**
|
|
3099
|
+
* Identifiant Mission
|
|
3100
|
+
*/
|
|
3101
|
+
misid: Int8;
|
|
3102
|
+
/**
|
|
3103
|
+
* Date système création
|
|
3104
|
+
*/
|
|
3105
|
+
syscredat: Timestamp | null;
|
|
3106
|
+
/**
|
|
3107
|
+
* Date système modification
|
|
3108
|
+
*/
|
|
3109
|
+
sysmajdat: Timestamp | null;
|
|
3110
|
+
}
|
|
3111
|
+
|
|
3112
|
+
export interface Missen {
|
|
3113
|
+
/**
|
|
3114
|
+
* Identifiant
|
|
3115
|
+
*/
|
|
3116
|
+
misid: Int8;
|
|
3117
|
+
/**
|
|
3118
|
+
* Matricule
|
|
3119
|
+
*/
|
|
3120
|
+
senmat: string;
|
|
3121
|
+
/**
|
|
3122
|
+
* Date système création
|
|
3123
|
+
*/
|
|
3124
|
+
syscredat: Timestamp | null;
|
|
3125
|
+
/**
|
|
3126
|
+
* Date système modification
|
|
3127
|
+
*/
|
|
3128
|
+
sysmajdat: Timestamp | null;
|
|
3129
|
+
}
|
|
3130
|
+
|
|
3131
|
+
export interface Moddes {
|
|
3132
|
+
avis_com_an: Generated<string | null>;
|
|
3133
|
+
avis_com_senat: Generated<string | null>;
|
|
3134
|
+
/**
|
|
3135
|
+
* Libellé
|
|
3136
|
+
*/
|
|
3137
|
+
evelib: string | null;
|
|
3138
|
+
/**
|
|
3139
|
+
* Libellé court
|
|
3140
|
+
*/
|
|
3141
|
+
evelic: string | null;
|
|
3142
|
+
/**
|
|
3143
|
+
* Libellé long
|
|
3144
|
+
*/
|
|
3145
|
+
evelil: string | null;
|
|
3146
|
+
/**
|
|
3147
|
+
* Observations
|
|
3148
|
+
*/
|
|
3149
|
+
eveobs: string | null;
|
|
3150
|
+
/**
|
|
3151
|
+
* Code
|
|
3152
|
+
*/
|
|
3153
|
+
moddescod: string;
|
|
3154
|
+
/**
|
|
3155
|
+
* Numéro de tri
|
|
3156
|
+
*/
|
|
3157
|
+
moddesnumtri: Int8 | null;
|
|
3158
|
+
/**
|
|
3159
|
+
* Date système création
|
|
3160
|
+
*/
|
|
3161
|
+
syscredat: Timestamp | null;
|
|
3162
|
+
/**
|
|
3163
|
+
* Date système modification
|
|
3164
|
+
*/
|
|
3165
|
+
sysmajdat: Timestamp | null;
|
|
3166
|
+
/**
|
|
3167
|
+
* Code validité
|
|
3168
|
+
*/
|
|
3169
|
+
temvalcod: string | null;
|
|
3170
|
+
typmoddescod: Generated<string | null>;
|
|
3171
|
+
}
|
|
3172
|
+
|
|
3173
|
+
export interface Nation {
|
|
3174
|
+
nationactual: string | null;
|
|
3175
|
+
nationancnom: string | null;
|
|
3176
|
+
nationannind: string | null;
|
|
3177
|
+
nationcod: string;
|
|
3178
|
+
nationlibcog: string | null;
|
|
3179
|
+
nationlibenr: string | null;
|
|
3180
|
+
nationlic: string | null;
|
|
3181
|
+
nationliccap: string | null;
|
|
3182
|
+
nationlictri: string | null;
|
|
3183
|
+
nationnumtri: Int8 | null;
|
|
3184
|
+
nationurlcmp: string | null;
|
|
3185
|
+
/**
|
|
3186
|
+
* Date système création
|
|
3187
|
+
*/
|
|
3188
|
+
syscredat: Timestamp | null;
|
|
3189
|
+
/**
|
|
3190
|
+
* Date système modification
|
|
3191
|
+
*/
|
|
3192
|
+
sysmajdat: Timestamp | null;
|
|
3193
|
+
/**
|
|
3194
|
+
* Code zone géographique
|
|
3195
|
+
*/
|
|
3196
|
+
zongeocod: string;
|
|
3197
|
+
}
|
|
3198
|
+
|
|
3199
|
+
export interface Nationgrpsen {
|
|
3200
|
+
/**
|
|
3201
|
+
* Libellé
|
|
3202
|
+
*/
|
|
3203
|
+
evelib: string | null;
|
|
3204
|
+
/**
|
|
3205
|
+
* Libellé court
|
|
3206
|
+
*/
|
|
3207
|
+
evelic: string | null;
|
|
3208
|
+
/**
|
|
3209
|
+
* Libellé long
|
|
3210
|
+
*/
|
|
3211
|
+
evelil: string | null;
|
|
3212
|
+
/**
|
|
3213
|
+
* Observations
|
|
3214
|
+
*/
|
|
3215
|
+
eveobs: string | null;
|
|
3216
|
+
nationcod: string;
|
|
3217
|
+
nationgpsendatdeb: Timestamp | null;
|
|
3218
|
+
nationgrpsendatfin: Timestamp | null;
|
|
3219
|
+
nationgrpsenid: Int8;
|
|
3220
|
+
/**
|
|
3221
|
+
* Code organisme
|
|
3222
|
+
*/
|
|
3223
|
+
orgcod: string;
|
|
3224
|
+
/**
|
|
3225
|
+
* Date système création
|
|
3226
|
+
*/
|
|
3227
|
+
syscredat: Timestamp | null;
|
|
3228
|
+
/**
|
|
3229
|
+
* Date système modification
|
|
3230
|
+
*/
|
|
3231
|
+
sysmajdat: Timestamp | null;
|
|
3232
|
+
/**
|
|
3233
|
+
* Code validité
|
|
3234
|
+
*/
|
|
3235
|
+
temvalcod: string | null;
|
|
3236
|
+
}
|
|
3237
|
+
|
|
3238
|
+
export interface Org {
|
|
3239
|
+
/**
|
|
3240
|
+
* Libellé
|
|
3241
|
+
*/
|
|
3242
|
+
evelib: string | null;
|
|
3243
|
+
/**
|
|
3244
|
+
* Libellé court
|
|
3245
|
+
*/
|
|
3246
|
+
evelic: string | null;
|
|
3247
|
+
/**
|
|
3248
|
+
* Libellé long
|
|
3249
|
+
*/
|
|
3250
|
+
evelil: string | null;
|
|
3251
|
+
/**
|
|
3252
|
+
* Article
|
|
3253
|
+
*/
|
|
3254
|
+
orgart: string | null;
|
|
3255
|
+
/**
|
|
3256
|
+
* Code organisme
|
|
3257
|
+
*/
|
|
3258
|
+
orgcod: string;
|
|
3259
|
+
/**
|
|
3260
|
+
* Date création
|
|
3261
|
+
*/
|
|
3262
|
+
orgdatcre: Timestamp | null;
|
|
3263
|
+
/**
|
|
3264
|
+
* Date de fin
|
|
3265
|
+
*/
|
|
3266
|
+
orgdatfin: Timestamp | null;
|
|
3267
|
+
/**
|
|
3268
|
+
* Membres Députés
|
|
3269
|
+
*/
|
|
3270
|
+
orgmemdep: Generated<string | null>;
|
|
3271
|
+
/**
|
|
3272
|
+
* Mode désignation
|
|
3273
|
+
*/
|
|
3274
|
+
orgmoddes: string | null;
|
|
3275
|
+
/**
|
|
3276
|
+
* Numéro de tri
|
|
3277
|
+
*/
|
|
3278
|
+
orgnumtri: Int8 | null;
|
|
3279
|
+
/**
|
|
3280
|
+
* Régime juridique
|
|
3281
|
+
*/
|
|
3282
|
+
orgregjur: string | null;
|
|
3283
|
+
/**
|
|
3284
|
+
* Témoin transfert ANNUAIRE
|
|
3285
|
+
*/
|
|
3286
|
+
orgtemannu: Generated<string | null>;
|
|
3287
|
+
/**
|
|
3288
|
+
* URL complet
|
|
3289
|
+
*/
|
|
3290
|
+
orgurlcmp: string | null;
|
|
3291
|
+
/**
|
|
3292
|
+
* URL simplifié
|
|
3293
|
+
*/
|
|
3294
|
+
orgurlsim: string | null;
|
|
3295
|
+
/**
|
|
3296
|
+
* Date système création
|
|
3297
|
+
*/
|
|
3298
|
+
syscredat: Timestamp | null;
|
|
3299
|
+
/**
|
|
3300
|
+
* Date système modification
|
|
3301
|
+
*/
|
|
3302
|
+
sysmajdat: Timestamp | null;
|
|
3303
|
+
/**
|
|
3304
|
+
* Code validité
|
|
3305
|
+
*/
|
|
3306
|
+
temvalcod: string | null;
|
|
3307
|
+
/**
|
|
3308
|
+
* Code type organisme
|
|
3309
|
+
*/
|
|
3310
|
+
typorgcod: string;
|
|
3311
|
+
}
|
|
3312
|
+
|
|
3313
|
+
export interface Orgext {
|
|
3314
|
+
/**
|
|
3315
|
+
* Code
|
|
3316
|
+
*/
|
|
3317
|
+
basdescod: Generated<string>;
|
|
3318
|
+
codesgg: string | null;
|
|
3319
|
+
/**
|
|
3320
|
+
* Code
|
|
3321
|
+
*/
|
|
3322
|
+
etaprrcod: Generated<string>;
|
|
3323
|
+
/**
|
|
3324
|
+
* Libellé
|
|
3325
|
+
*/
|
|
3326
|
+
evelib: string | null;
|
|
3327
|
+
/**
|
|
3328
|
+
* Libellé court
|
|
3329
|
+
*/
|
|
3330
|
+
evelic: string | null;
|
|
3331
|
+
/**
|
|
3332
|
+
* Libellé long
|
|
3333
|
+
*/
|
|
3334
|
+
evelil: string | null;
|
|
3335
|
+
/**
|
|
3336
|
+
* Observations
|
|
3337
|
+
*/
|
|
3338
|
+
eveobs: string | null;
|
|
3339
|
+
/**
|
|
3340
|
+
* Article
|
|
3341
|
+
*/
|
|
3342
|
+
orgart: string | null;
|
|
3343
|
+
/**
|
|
3344
|
+
* Code organisme
|
|
3345
|
+
*/
|
|
3346
|
+
orgcod: string;
|
|
3347
|
+
/**
|
|
3348
|
+
* Date création
|
|
3349
|
+
*/
|
|
3350
|
+
orgdatcre: Timestamp | null;
|
|
3351
|
+
/**
|
|
3352
|
+
* Date de fin
|
|
3353
|
+
*/
|
|
3354
|
+
orgdatfin: Timestamp | null;
|
|
3355
|
+
/**
|
|
3356
|
+
* Date de décrêt de prorogation
|
|
3357
|
+
*/
|
|
3358
|
+
orgextdatprr: Timestamp | null;
|
|
3359
|
+
/**
|
|
3360
|
+
* Durée du mandat
|
|
3361
|
+
*/
|
|
3362
|
+
orgextdurman: string | null;
|
|
3363
|
+
/**
|
|
3364
|
+
* Ministère de rattachement
|
|
3365
|
+
*/
|
|
3366
|
+
orgextminrat: string | null;
|
|
3367
|
+
/**
|
|
3368
|
+
* Mode de désignation
|
|
3369
|
+
*/
|
|
3370
|
+
orgextmoddes: string | null;
|
|
3371
|
+
/**
|
|
3372
|
+
* Nombre de représentants
|
|
3373
|
+
*/
|
|
3374
|
+
orgextnbrsen: Int8 | null;
|
|
3375
|
+
orgextprescod: Generated<string>;
|
|
3376
|
+
/**
|
|
3377
|
+
* Régime juridique
|
|
3378
|
+
*/
|
|
3379
|
+
orgextregjur: string | null;
|
|
3380
|
+
/**
|
|
3381
|
+
* Représentants
|
|
3382
|
+
*/
|
|
3383
|
+
orgextrep: string | null;
|
|
3384
|
+
/**
|
|
3385
|
+
* Rubrique de classement (obsolète)
|
|
3386
|
+
*/
|
|
3387
|
+
orgextrubclas: string | null;
|
|
3388
|
+
/**
|
|
3389
|
+
* NuméroTiers
|
|
3390
|
+
*/
|
|
3391
|
+
orgnumtie: string | null;
|
|
3392
|
+
/**
|
|
3393
|
+
* Numéro de tri
|
|
3394
|
+
*/
|
|
3395
|
+
orgnumtri: Int8 | null;
|
|
3396
|
+
/**
|
|
3397
|
+
* Parité
|
|
3398
|
+
*/
|
|
3399
|
+
orgparite: Generated<string | null>;
|
|
3400
|
+
/**
|
|
3401
|
+
* Témoin transfert ANNUAIRE
|
|
3402
|
+
*/
|
|
3403
|
+
orgtemannu: Generated<string | null>;
|
|
3404
|
+
/**
|
|
3405
|
+
* URL complet
|
|
3406
|
+
*/
|
|
3407
|
+
orgurlcmp: string | null;
|
|
3408
|
+
/**
|
|
3409
|
+
* URL simplifié
|
|
3410
|
+
*/
|
|
3411
|
+
orgurlsim: string | null;
|
|
3412
|
+
/**
|
|
3413
|
+
* Code
|
|
3414
|
+
*/
|
|
3415
|
+
stajurcod: Generated<string>;
|
|
3416
|
+
/**
|
|
3417
|
+
* Date système création
|
|
3418
|
+
*/
|
|
3419
|
+
syscredat: Timestamp | null;
|
|
3420
|
+
/**
|
|
3421
|
+
* Date système modification
|
|
3422
|
+
*/
|
|
3423
|
+
sysmajdat: Timestamp | null;
|
|
3424
|
+
/**
|
|
3425
|
+
* Code validité
|
|
3426
|
+
*/
|
|
3427
|
+
temvalcod: string | null;
|
|
3428
|
+
/**
|
|
3429
|
+
* Code type organisme
|
|
3430
|
+
*/
|
|
3431
|
+
typorgcod: string;
|
|
3432
|
+
typorgextcod: Generated<string>;
|
|
3433
|
+
}
|
|
3434
|
+
|
|
3435
|
+
export interface Orgthe {
|
|
3436
|
+
/**
|
|
3437
|
+
* Code organisme
|
|
3438
|
+
*/
|
|
3439
|
+
orgcod: string;
|
|
3440
|
+
/**
|
|
3441
|
+
* Clé
|
|
3442
|
+
*/
|
|
3443
|
+
thecle: number;
|
|
3444
|
+
}
|
|
3445
|
+
|
|
3446
|
+
export interface Pcs {
|
|
3447
|
+
/**
|
|
3448
|
+
* Code PCS42
|
|
3449
|
+
*/
|
|
3450
|
+
pcs42cod: string;
|
|
3451
|
+
/**
|
|
3452
|
+
* Code PCS
|
|
3453
|
+
*/
|
|
3454
|
+
pcscod: string;
|
|
3455
|
+
/**
|
|
3456
|
+
* Libellé
|
|
3457
|
+
*/
|
|
3458
|
+
pcslil: string | null;
|
|
3459
|
+
}
|
|
3460
|
+
|
|
3461
|
+
export interface Pcs24 {
|
|
3462
|
+
/**
|
|
3463
|
+
* Code PCS24
|
|
3464
|
+
*/
|
|
3465
|
+
pcs24cod: string;
|
|
3466
|
+
/**
|
|
3467
|
+
* Libellé
|
|
3468
|
+
*/
|
|
3469
|
+
pcs24lib: string | null;
|
|
3470
|
+
/**
|
|
3471
|
+
* Code PCS8
|
|
3472
|
+
*/
|
|
3473
|
+
pcs8cod: string;
|
|
3474
|
+
}
|
|
3475
|
+
|
|
3476
|
+
export interface Pcs42 {
|
|
3477
|
+
/**
|
|
3478
|
+
* Code PCS24
|
|
3479
|
+
*/
|
|
3480
|
+
pcs24cod: string;
|
|
3481
|
+
/**
|
|
3482
|
+
* Code PCS42
|
|
3483
|
+
*/
|
|
3484
|
+
pcs42cod: string;
|
|
3485
|
+
/**
|
|
3486
|
+
* Libellé
|
|
3487
|
+
*/
|
|
3488
|
+
pcs42lib: string | null;
|
|
3489
|
+
}
|
|
3490
|
+
|
|
3491
|
+
export interface Pcs8 {
|
|
3492
|
+
/**
|
|
3493
|
+
* Code PCS8
|
|
3494
|
+
*/
|
|
3495
|
+
pcs8cod: string;
|
|
3496
|
+
/**
|
|
3497
|
+
* Libellé
|
|
3498
|
+
*/
|
|
3499
|
+
pcs8lil: string | null;
|
|
3500
|
+
}
|
|
3501
|
+
|
|
3502
|
+
export interface Pcscatpro {
|
|
3503
|
+
/**
|
|
3504
|
+
* Code catégorie professionnelle
|
|
3505
|
+
*/
|
|
3506
|
+
catprocod: string;
|
|
3507
|
+
pcscatproid: Int8;
|
|
3508
|
+
/**
|
|
3509
|
+
* Code PCS
|
|
3510
|
+
*/
|
|
3511
|
+
pcscod: string;
|
|
3512
|
+
procatprodef: string | null;
|
|
3513
|
+
}
|
|
3514
|
+
|
|
3515
|
+
export interface Poicon {
|
|
3516
|
+
/**
|
|
3517
|
+
* Identifiant point de contact
|
|
3518
|
+
*/
|
|
3519
|
+
poiconid: Int8;
|
|
3520
|
+
poiconlib: string | null;
|
|
3521
|
+
/**
|
|
3522
|
+
* Numéro de tri
|
|
3523
|
+
*/
|
|
3524
|
+
poiconnumtri: Int8 | null;
|
|
3525
|
+
/**
|
|
3526
|
+
* Matricule
|
|
3527
|
+
*/
|
|
3528
|
+
senmat: string;
|
|
3529
|
+
syscredat: Timestamp | null;
|
|
3530
|
+
sysmajdat: Timestamp | null;
|
|
3531
|
+
/**
|
|
3532
|
+
* Code type Point de contact
|
|
3533
|
+
*/
|
|
3534
|
+
typpoiconcod: string;
|
|
3535
|
+
}
|
|
3536
|
+
|
|
3537
|
+
export interface Qua {
|
|
3538
|
+
/**
|
|
3539
|
+
* Code qualité
|
|
3540
|
+
*/
|
|
3541
|
+
quacod: string;
|
|
3542
|
+
/**
|
|
3543
|
+
* Code sexe
|
|
3544
|
+
*/
|
|
3545
|
+
quacodsex: string | null;
|
|
3546
|
+
/**
|
|
3547
|
+
* Libellé
|
|
3548
|
+
*/
|
|
3549
|
+
qualib: string | null;
|
|
3550
|
+
/**
|
|
3551
|
+
* Libellé pluriel
|
|
3552
|
+
*/
|
|
3553
|
+
qualibplu: string | null;
|
|
3554
|
+
/**
|
|
3555
|
+
* Libellé court
|
|
3556
|
+
*/
|
|
3557
|
+
qualic: string;
|
|
3558
|
+
/**
|
|
3559
|
+
* Libellé court pluriel
|
|
3560
|
+
*/
|
|
3561
|
+
qualicplu: string | null;
|
|
3562
|
+
/**
|
|
3563
|
+
* Libellé long
|
|
3564
|
+
*/
|
|
3565
|
+
qualil: string | null;
|
|
3566
|
+
/**
|
|
3567
|
+
* Libellé long pluriel
|
|
3568
|
+
*/
|
|
3569
|
+
qualilplu: string | null;
|
|
3570
|
+
/**
|
|
3571
|
+
* Numéro de tri
|
|
3572
|
+
*/
|
|
3573
|
+
quanumtri: Int8 | null;
|
|
3574
|
+
/**
|
|
3575
|
+
* Date système création
|
|
3576
|
+
*/
|
|
3577
|
+
syscredat: Timestamp | null;
|
|
3578
|
+
/**
|
|
3579
|
+
* Date système modification
|
|
3580
|
+
*/
|
|
3581
|
+
sysmajdat: Timestamp | null;
|
|
3582
|
+
}
|
|
3583
|
+
|
|
3584
|
+
export interface Reg {
|
|
3585
|
+
/**
|
|
3586
|
+
* Article
|
|
3587
|
+
*/
|
|
3588
|
+
artreg: string | null;
|
|
3589
|
+
/**
|
|
3590
|
+
* Code région
|
|
3591
|
+
*/
|
|
3592
|
+
regcod: string;
|
|
3593
|
+
regcodint: Generated<string | null>;
|
|
3594
|
+
/**
|
|
3595
|
+
* Code transfert Parlis
|
|
3596
|
+
*/
|
|
3597
|
+
regcodparlis: string | null;
|
|
3598
|
+
/**
|
|
3599
|
+
* Code région remplaçante
|
|
3600
|
+
*/
|
|
3601
|
+
regcodrpl: string | null;
|
|
3602
|
+
/**
|
|
3603
|
+
* Date début région
|
|
3604
|
+
*/
|
|
3605
|
+
regdatdeb: Timestamp | null;
|
|
3606
|
+
/**
|
|
3607
|
+
* Date fin région
|
|
3608
|
+
*/
|
|
3609
|
+
regdatfin: Timestamp | null;
|
|
3610
|
+
/**
|
|
3611
|
+
* Libellé région
|
|
3612
|
+
*/
|
|
3613
|
+
reglib: string;
|
|
3614
|
+
/**
|
|
3615
|
+
* Libellé court région
|
|
3616
|
+
*/
|
|
3617
|
+
reglic: string | null;
|
|
3618
|
+
/**
|
|
3619
|
+
* Libellé long région
|
|
3620
|
+
*/
|
|
3621
|
+
reglil: string | null;
|
|
3622
|
+
/**
|
|
3623
|
+
* Numéro de tri
|
|
3624
|
+
*/
|
|
3625
|
+
regnumtri: Int8 | null;
|
|
3626
|
+
/**
|
|
3627
|
+
* URL
|
|
3628
|
+
*/
|
|
3629
|
+
regurlcmp: string | null;
|
|
3630
|
+
/**
|
|
3631
|
+
* Date système création
|
|
3632
|
+
*/
|
|
3633
|
+
syscredat: Timestamp | null;
|
|
3634
|
+
/**
|
|
3635
|
+
* Date système modification
|
|
3636
|
+
*/
|
|
3637
|
+
sysmajdat: Timestamp | null;
|
|
3638
|
+
/**
|
|
3639
|
+
* Code
|
|
3640
|
+
*/
|
|
3641
|
+
territcod: string;
|
|
3642
|
+
}
|
|
3643
|
+
|
|
3644
|
+
export interface Sen {
|
|
3645
|
+
/**
|
|
3646
|
+
* Code catégorie professionnelle
|
|
3647
|
+
*/
|
|
3648
|
+
catprocod: Generated<string>;
|
|
3649
|
+
/**
|
|
3650
|
+
* Code état sénateur
|
|
3651
|
+
*/
|
|
3652
|
+
etasencod: string;
|
|
3653
|
+
/**
|
|
3654
|
+
* Code PCS
|
|
3655
|
+
*/
|
|
3656
|
+
pcscod: Generated<string>;
|
|
3657
|
+
/**
|
|
3658
|
+
* Code qualité
|
|
3659
|
+
*/
|
|
3660
|
+
quacod: string;
|
|
3661
|
+
/**
|
|
3662
|
+
* Fonction bureau courante
|
|
3663
|
+
*/
|
|
3664
|
+
senburliccou: string | null;
|
|
3665
|
+
/**
|
|
3666
|
+
* Circonscription courante
|
|
3667
|
+
*/
|
|
3668
|
+
sencircou: string | null;
|
|
3669
|
+
/**
|
|
3670
|
+
* Identifiant circonscription
|
|
3671
|
+
*/
|
|
3672
|
+
sencirnumcou: Int8 | null;
|
|
3673
|
+
/**
|
|
3674
|
+
* Code commission courante
|
|
3675
|
+
*/
|
|
3676
|
+
sencomcodcou: string | null;
|
|
3677
|
+
/**
|
|
3678
|
+
* Commission courante
|
|
3679
|
+
*/
|
|
3680
|
+
sencomliccou: string | null;
|
|
3681
|
+
/**
|
|
3682
|
+
* URL des déclarations d'intérêts
|
|
3683
|
+
*/
|
|
3684
|
+
sendaiurl: string | null;
|
|
3685
|
+
/**
|
|
3686
|
+
* Date du décés
|
|
3687
|
+
*/
|
|
3688
|
+
sendatdec: Timestamp | null;
|
|
3689
|
+
/**
|
|
3690
|
+
* Date de naissance
|
|
3691
|
+
*/
|
|
3692
|
+
sendatnai: Timestamp | null;
|
|
3693
|
+
/**
|
|
3694
|
+
* Description Profession
|
|
3695
|
+
*/
|
|
3696
|
+
sendespro: string | null;
|
|
3697
|
+
/**
|
|
3698
|
+
* Adresse électronique
|
|
3699
|
+
*/
|
|
3700
|
+
senema: string | null;
|
|
3701
|
+
/**
|
|
3702
|
+
* Féminisation fonctions
|
|
3703
|
+
*/
|
|
3704
|
+
senfem: Generated<string | null>;
|
|
3705
|
+
/**
|
|
3706
|
+
* Code groupe politique courant
|
|
3707
|
+
*/
|
|
3708
|
+
sengrppolcodcou: string | null;
|
|
3709
|
+
/**
|
|
3710
|
+
* Libellé groupe politique courant
|
|
3711
|
+
*/
|
|
3712
|
+
sengrppolliccou: string | null;
|
|
3713
|
+
/**
|
|
3714
|
+
* Matricule
|
|
3715
|
+
*/
|
|
3716
|
+
senmat: string;
|
|
3717
|
+
/**
|
|
3718
|
+
* Nom technique (tris)
|
|
3719
|
+
*/
|
|
3720
|
+
sennomtec: string;
|
|
3721
|
+
/**
|
|
3722
|
+
* Nom usuel
|
|
3723
|
+
*/
|
|
3724
|
+
sennomuse: string;
|
|
3725
|
+
/**
|
|
3726
|
+
* Nom usuel Capitales
|
|
3727
|
+
*/
|
|
3728
|
+
sennomusecap: string;
|
|
3729
|
+
/**
|
|
3730
|
+
* N° de siège Hémicycle
|
|
3731
|
+
*/
|
|
3732
|
+
sennumsie: Int8 | null;
|
|
3733
|
+
/**
|
|
3734
|
+
* Prénom usuel
|
|
3735
|
+
*/
|
|
3736
|
+
senprenomuse: string;
|
|
3737
|
+
/**
|
|
3738
|
+
* Appartenance politique courante
|
|
3739
|
+
*/
|
|
3740
|
+
sentypappcou: string | null;
|
|
3741
|
+
/**
|
|
3742
|
+
* Date système création
|
|
3743
|
+
*/
|
|
3744
|
+
syscredat: Timestamp | null;
|
|
3745
|
+
/**
|
|
3746
|
+
* Date système modification
|
|
3747
|
+
*/
|
|
3748
|
+
sysmajdat: Timestamp | null;
|
|
3749
|
+
}
|
|
3750
|
+
|
|
3751
|
+
export interface Senbur {
|
|
3752
|
+
/**
|
|
3753
|
+
* Code bureau 4e Rép.
|
|
3754
|
+
*/
|
|
3755
|
+
burcod: string;
|
|
3756
|
+
/**
|
|
3757
|
+
* Libellé
|
|
3758
|
+
*/
|
|
3759
|
+
evelib: string | null;
|
|
3760
|
+
/**
|
|
3761
|
+
* Libellé court
|
|
3762
|
+
*/
|
|
3763
|
+
evelic: string | null;
|
|
3764
|
+
/**
|
|
3765
|
+
* Libellé long
|
|
3766
|
+
*/
|
|
3767
|
+
evelil: string | null;
|
|
3768
|
+
/**
|
|
3769
|
+
* Observations
|
|
3770
|
+
*/
|
|
3771
|
+
eveobs: string | null;
|
|
3772
|
+
/**
|
|
3773
|
+
* Date de début
|
|
3774
|
+
*/
|
|
3775
|
+
senburdatdeb: Timestamp | null;
|
|
3776
|
+
/**
|
|
3777
|
+
* Date de fin
|
|
3778
|
+
*/
|
|
3779
|
+
senburdatfin: Timestamp | null;
|
|
3780
|
+
/**
|
|
3781
|
+
* Honorariat
|
|
3782
|
+
*/
|
|
3783
|
+
senburhon: string | null;
|
|
3784
|
+
/**
|
|
3785
|
+
* Identifiant
|
|
3786
|
+
*/
|
|
3787
|
+
senburid: Int8;
|
|
3788
|
+
/**
|
|
3789
|
+
* Chargé Relations Internationales
|
|
3790
|
+
*/
|
|
3791
|
+
senburrelint: string | null;
|
|
3792
|
+
/**
|
|
3793
|
+
* Rang d'élection
|
|
3794
|
+
*/
|
|
3795
|
+
senburrngele: Int8 | null;
|
|
3796
|
+
/**
|
|
3797
|
+
* Matricule
|
|
3798
|
+
*/
|
|
3799
|
+
senmat: string;
|
|
3800
|
+
/**
|
|
3801
|
+
* Date système création
|
|
3802
|
+
*/
|
|
3803
|
+
syscredat: Timestamp | null;
|
|
3804
|
+
/**
|
|
3805
|
+
* Date système modification
|
|
3806
|
+
*/
|
|
3807
|
+
sysmajdat: Timestamp | null;
|
|
3808
|
+
/**
|
|
3809
|
+
* Code validité
|
|
3810
|
+
*/
|
|
3811
|
+
temvalcod: string | null;
|
|
3812
|
+
}
|
|
3813
|
+
|
|
3814
|
+
export interface Sennom {
|
|
3815
|
+
/**
|
|
3816
|
+
* Code qualité
|
|
3817
|
+
*/
|
|
3818
|
+
quacod: string;
|
|
3819
|
+
/**
|
|
3820
|
+
* Matricule
|
|
3821
|
+
*/
|
|
3822
|
+
senmat: string;
|
|
3823
|
+
/**
|
|
3824
|
+
* Date de début
|
|
3825
|
+
*/
|
|
3826
|
+
sennomdatdeb: Timestamp;
|
|
3827
|
+
/**
|
|
3828
|
+
* Date de fin
|
|
3829
|
+
*/
|
|
3830
|
+
sennomdatfin: Timestamp | null;
|
|
3831
|
+
/**
|
|
3832
|
+
* Identifiant
|
|
3833
|
+
*/
|
|
3834
|
+
sennomid: Int8;
|
|
3835
|
+
/**
|
|
3836
|
+
* Nom technique
|
|
3837
|
+
*/
|
|
3838
|
+
sennomtec: string;
|
|
3839
|
+
/**
|
|
3840
|
+
* Nom usuel
|
|
3841
|
+
*/
|
|
3842
|
+
sennomuse: string;
|
|
3843
|
+
/**
|
|
3844
|
+
* Nom usuel Capitales
|
|
3845
|
+
*/
|
|
3846
|
+
sennomusecap: string;
|
|
3847
|
+
/**
|
|
3848
|
+
* Prénom usuel
|
|
3849
|
+
*/
|
|
3850
|
+
senprenomuse: string;
|
|
3851
|
+
/**
|
|
3852
|
+
* Date système création
|
|
3853
|
+
*/
|
|
3854
|
+
syscredat: Timestamp | null;
|
|
3855
|
+
/**
|
|
3856
|
+
* Date système modification
|
|
3857
|
+
*/
|
|
3858
|
+
sysmajdat: Timestamp | null;
|
|
3859
|
+
}
|
|
3860
|
+
|
|
3861
|
+
export interface Senurl {
|
|
3862
|
+
/**
|
|
3863
|
+
* Libellé
|
|
3864
|
+
*/
|
|
3865
|
+
evelib: string | null;
|
|
3866
|
+
/**
|
|
3867
|
+
* Libellé court
|
|
3868
|
+
*/
|
|
3869
|
+
evelic: string | null;
|
|
3870
|
+
/**
|
|
3871
|
+
* Libellé long
|
|
3872
|
+
*/
|
|
3873
|
+
evelil: string | null;
|
|
3874
|
+
/**
|
|
3875
|
+
* Observations
|
|
3876
|
+
*/
|
|
3877
|
+
eveobs: string | null;
|
|
3878
|
+
/**
|
|
3879
|
+
* Matricule
|
|
3880
|
+
*/
|
|
3881
|
+
senmat: string;
|
|
3882
|
+
/**
|
|
3883
|
+
* Identifiant
|
|
3884
|
+
*/
|
|
3885
|
+
senurlid: Int8;
|
|
3886
|
+
/**
|
|
3887
|
+
* Numéro de tri
|
|
3888
|
+
*/
|
|
3889
|
+
senurlnumtri: Int8 | null;
|
|
3890
|
+
/**
|
|
3891
|
+
* URL
|
|
3892
|
+
*/
|
|
3893
|
+
senurlurl: string;
|
|
3894
|
+
/**
|
|
3895
|
+
* Date système création
|
|
3896
|
+
*/
|
|
3897
|
+
syscredat: Timestamp | null;
|
|
3898
|
+
/**
|
|
3899
|
+
* Date système modification
|
|
3900
|
+
*/
|
|
3901
|
+
sysmajdat: Timestamp | null;
|
|
3902
|
+
/**
|
|
3903
|
+
* Code validité
|
|
3904
|
+
*/
|
|
3905
|
+
temvalcod: string | null;
|
|
3906
|
+
/**
|
|
3907
|
+
* Code type URL
|
|
3908
|
+
*/
|
|
3909
|
+
typurlcod: string;
|
|
3910
|
+
}
|
|
3911
|
+
|
|
3912
|
+
export interface Stajur {
|
|
3913
|
+
/**
|
|
3914
|
+
* Code
|
|
3915
|
+
*/
|
|
3916
|
+
stajurcod: string;
|
|
3917
|
+
/**
|
|
3918
|
+
* Libellé
|
|
3919
|
+
*/
|
|
3920
|
+
stajurlib: string | null;
|
|
3921
|
+
/**
|
|
3922
|
+
* Libellé court
|
|
3923
|
+
*/
|
|
3924
|
+
stajurlic: string | null;
|
|
3925
|
+
/**
|
|
3926
|
+
* Numéro de tri
|
|
3927
|
+
*/
|
|
3928
|
+
stajurnumtri: Int8 | null;
|
|
3929
|
+
/**
|
|
3930
|
+
* Date système création
|
|
3931
|
+
*/
|
|
3932
|
+
syscredat: Timestamp | null;
|
|
3933
|
+
/**
|
|
3934
|
+
* Date système modification
|
|
3935
|
+
*/
|
|
3936
|
+
sysmajdat: Timestamp | null;
|
|
3937
|
+
}
|
|
3938
|
+
|
|
3939
|
+
export interface Telephone {
|
|
3940
|
+
/**
|
|
3941
|
+
* Identifiant point de contact
|
|
3942
|
+
*/
|
|
3943
|
+
poiconid: Int8;
|
|
3944
|
+
syscredat: Timestamp | null;
|
|
3945
|
+
sysmajdat: Timestamp | null;
|
|
3946
|
+
/**
|
|
3947
|
+
* Identifiant téléphone
|
|
3948
|
+
*/
|
|
3949
|
+
telid: Int8;
|
|
3950
|
+
/**
|
|
3951
|
+
* Numéro de tel
|
|
3952
|
+
*/
|
|
3953
|
+
telnum: string | null;
|
|
3954
|
+
/**
|
|
3955
|
+
* Numéro de tri
|
|
3956
|
+
*/
|
|
3957
|
+
telnumtri: Int8 | null;
|
|
3958
|
+
/**
|
|
3959
|
+
* Code type numéro de téléphone
|
|
3960
|
+
*/
|
|
3961
|
+
typtelcod: string;
|
|
3962
|
+
}
|
|
3963
|
+
|
|
3964
|
+
export interface Temval {
|
|
3965
|
+
/**
|
|
3966
|
+
* Code validité
|
|
3967
|
+
*/
|
|
3968
|
+
temvalcod: string;
|
|
3969
|
+
/**
|
|
3970
|
+
* Libellé
|
|
3971
|
+
*/
|
|
3972
|
+
temvallib: string;
|
|
3973
|
+
/**
|
|
3974
|
+
* Libellé court
|
|
3975
|
+
*/
|
|
3976
|
+
temvallic: string;
|
|
3977
|
+
}
|
|
3978
|
+
|
|
3979
|
+
export interface Territ {
|
|
3980
|
+
catterritcod: Generated<string>;
|
|
3981
|
+
/**
|
|
3982
|
+
* Date système création
|
|
3983
|
+
*/
|
|
3984
|
+
syscredat: Timestamp | null;
|
|
3985
|
+
/**
|
|
3986
|
+
* Date système modification
|
|
3987
|
+
*/
|
|
3988
|
+
sysmajdat: Timestamp | null;
|
|
3989
|
+
/**
|
|
3990
|
+
* Article
|
|
3991
|
+
*/
|
|
3992
|
+
territart: string | null;
|
|
3993
|
+
/**
|
|
3994
|
+
* Code
|
|
3995
|
+
*/
|
|
3996
|
+
territcod: string;
|
|
3997
|
+
/**
|
|
3998
|
+
* Libellé territoire
|
|
3999
|
+
*/
|
|
4000
|
+
territlib: string | null;
|
|
4001
|
+
territlic: string | null;
|
|
4002
|
+
territlil: string | null;
|
|
4003
|
+
/**
|
|
4004
|
+
* Ordre de tri
|
|
4005
|
+
*/
|
|
4006
|
+
territnumtri: Int8 | null;
|
|
4007
|
+
/**
|
|
4008
|
+
* URL
|
|
4009
|
+
*/
|
|
4010
|
+
territurlcmp: string | null;
|
|
4011
|
+
}
|
|
4012
|
+
|
|
4013
|
+
export interface Titele {
|
|
4014
|
+
/**
|
|
4015
|
+
* Date système création
|
|
4016
|
+
*/
|
|
4017
|
+
syscredat: Timestamp | null;
|
|
4018
|
+
/**
|
|
4019
|
+
* Date système modification
|
|
4020
|
+
*/
|
|
4021
|
+
sysmajdat: Timestamp | null;
|
|
4022
|
+
/**
|
|
4023
|
+
* Code titre élu
|
|
4024
|
+
*/
|
|
4025
|
+
titelecod: string;
|
|
4026
|
+
titeledef: string | null;
|
|
4027
|
+
titelelib: string;
|
|
4028
|
+
titelelibfem: string | null;
|
|
4029
|
+
titelelibhon: string | null;
|
|
4030
|
+
titelelibhonfem: string | null;
|
|
4031
|
+
titelelibhonplu: string | null;
|
|
4032
|
+
titelelibplu: string | null;
|
|
4033
|
+
titelelic: string;
|
|
4034
|
+
titelelicfem: string | null;
|
|
4035
|
+
titelelicplu: string | null;
|
|
4036
|
+
titelelil: string | null;
|
|
4037
|
+
titelelilfem: string | null;
|
|
4038
|
+
titelelilplu: string | null;
|
|
4039
|
+
titelenumtri: Int8 | null;
|
|
4040
|
+
titeleurltempub: string | null;
|
|
4041
|
+
/**
|
|
4042
|
+
* Code type mandat
|
|
4043
|
+
*/
|
|
4044
|
+
typmancod: string;
|
|
4045
|
+
}
|
|
4046
|
+
|
|
4047
|
+
export interface Typadr {
|
|
4048
|
+
/**
|
|
4049
|
+
* Date système création
|
|
4050
|
+
*/
|
|
4051
|
+
syscredat: Timestamp | null;
|
|
4052
|
+
/**
|
|
4053
|
+
* Date système modification
|
|
4054
|
+
*/
|
|
4055
|
+
sysmajdat: Timestamp | null;
|
|
4056
|
+
/**
|
|
4057
|
+
* Code type adresse
|
|
4058
|
+
*/
|
|
4059
|
+
typadrcod: string;
|
|
4060
|
+
/**
|
|
4061
|
+
* Libellé
|
|
4062
|
+
*/
|
|
4063
|
+
typadrlib: string | null;
|
|
4064
|
+
/**
|
|
4065
|
+
* Libellé court
|
|
4066
|
+
*/
|
|
4067
|
+
typadrlic: string | null;
|
|
4068
|
+
/**
|
|
4069
|
+
* Numéro de tri
|
|
4070
|
+
*/
|
|
4071
|
+
typadrnumtri: Int8 | null;
|
|
4072
|
+
}
|
|
4073
|
+
|
|
4074
|
+
export interface Typapppol {
|
|
4075
|
+
/**
|
|
4076
|
+
* Date système création
|
|
4077
|
+
*/
|
|
4078
|
+
syscredat: Timestamp | null;
|
|
4079
|
+
/**
|
|
4080
|
+
* Date système modification
|
|
4081
|
+
*/
|
|
4082
|
+
sysmajdat: Timestamp | null;
|
|
4083
|
+
/**
|
|
4084
|
+
* Code type appartenance
|
|
4085
|
+
*/
|
|
4086
|
+
typapppolcod: string;
|
|
4087
|
+
/**
|
|
4088
|
+
* Libellé
|
|
4089
|
+
*/
|
|
4090
|
+
typapppollib: string | null;
|
|
4091
|
+
/**
|
|
4092
|
+
* Libellé féminin
|
|
4093
|
+
*/
|
|
4094
|
+
typapppollibfem: string | null;
|
|
4095
|
+
/**
|
|
4096
|
+
* Libellé pluriel
|
|
4097
|
+
*/
|
|
4098
|
+
typapppollibplu: string | null;
|
|
4099
|
+
/**
|
|
4100
|
+
* Libellé court
|
|
4101
|
+
*/
|
|
4102
|
+
typapppollic: string | null;
|
|
4103
|
+
/**
|
|
4104
|
+
* Libellé court féminin
|
|
4105
|
+
*/
|
|
4106
|
+
typapppollicfem: string | null;
|
|
4107
|
+
/**
|
|
4108
|
+
* Libellé court pluriel
|
|
4109
|
+
*/
|
|
4110
|
+
typapppollicplu: string | null;
|
|
4111
|
+
/**
|
|
4112
|
+
* Libellé long
|
|
4113
|
+
*/
|
|
4114
|
+
typapppollil: string | null;
|
|
4115
|
+
/**
|
|
4116
|
+
* Libellé long féminin
|
|
4117
|
+
*/
|
|
4118
|
+
typapppollilfem: string | null;
|
|
4119
|
+
/**
|
|
4120
|
+
* Libellé long pluriel
|
|
4121
|
+
*/
|
|
4122
|
+
typapppollilplu: string | null;
|
|
4123
|
+
/**
|
|
4124
|
+
* Numéro de tri
|
|
4125
|
+
*/
|
|
4126
|
+
typapppolnumtri: Int8 | null;
|
|
4127
|
+
}
|
|
4128
|
+
|
|
4129
|
+
export interface Typbister {
|
|
4130
|
+
/**
|
|
4131
|
+
* Code Type bis ter
|
|
4132
|
+
*/
|
|
4133
|
+
typbistercod: string;
|
|
4134
|
+
/**
|
|
4135
|
+
* Libellé
|
|
4136
|
+
*/
|
|
4137
|
+
typbisterlib: string | null;
|
|
4138
|
+
/**
|
|
4139
|
+
* Libellé court
|
|
4140
|
+
*/
|
|
4141
|
+
typbisterlic: string | null;
|
|
4142
|
+
/**
|
|
4143
|
+
* Numéro de tri
|
|
4144
|
+
*/
|
|
4145
|
+
typbisternumtri: Int8 | null;
|
|
4146
|
+
}
|
|
4147
|
+
|
|
4148
|
+
export interface TypeActivite {
|
|
4149
|
+
typactcod: string;
|
|
4150
|
+
typactlib: string;
|
|
4151
|
+
typactlibtap: string | null;
|
|
4152
|
+
typactlic: string;
|
|
4153
|
+
}
|
|
4154
|
+
|
|
4155
|
+
export interface TypeActiviteParticipant {
|
|
4156
|
+
typactparcod: string;
|
|
4157
|
+
typactparlib: string;
|
|
4158
|
+
typactparlibfem: string;
|
|
4159
|
+
}
|
|
4160
|
+
|
|
4161
|
+
export interface TypeActiviteSenateur {
|
|
4162
|
+
numtri: Int8;
|
|
4163
|
+
typactsencod: string;
|
|
4164
|
+
typactsenlib: string;
|
|
4165
|
+
typactsenlic: string;
|
|
4166
|
+
}
|
|
4167
|
+
|
|
4168
|
+
export interface TypeCategorie {
|
|
4169
|
+
catactcod: string;
|
|
4170
|
+
par_defaut: Generated<string>;
|
|
4171
|
+
typactcod: string;
|
|
4172
|
+
}
|
|
4173
|
+
|
|
4174
|
+
export interface Typele {
|
|
4175
|
+
/**
|
|
4176
|
+
* Date système création
|
|
4177
|
+
*/
|
|
4178
|
+
syscredat: Timestamp | null;
|
|
4179
|
+
/**
|
|
4180
|
+
* Date système modification
|
|
4181
|
+
*/
|
|
4182
|
+
sysmajdat: Timestamp | null;
|
|
4183
|
+
/**
|
|
4184
|
+
* Code type élection
|
|
4185
|
+
*/
|
|
4186
|
+
typelecod: string;
|
|
4187
|
+
/**
|
|
4188
|
+
* Libellé
|
|
4189
|
+
*/
|
|
4190
|
+
typelelib: string | null;
|
|
4191
|
+
/**
|
|
4192
|
+
* Libellé court
|
|
4193
|
+
*/
|
|
4194
|
+
typelelic: string | null;
|
|
4195
|
+
/**
|
|
4196
|
+
* Libellé long
|
|
4197
|
+
*/
|
|
4198
|
+
typelelil: string | null;
|
|
4199
|
+
/**
|
|
4200
|
+
* Numéro de tri
|
|
4201
|
+
*/
|
|
4202
|
+
typelenumtri: Int8 | null;
|
|
4203
|
+
}
|
|
4204
|
+
|
|
4205
|
+
export interface Typgrpsen {
|
|
4206
|
+
/**
|
|
4207
|
+
* Libellé
|
|
4208
|
+
*/
|
|
4209
|
+
evelib: string | null;
|
|
4210
|
+
/**
|
|
4211
|
+
* Libellé court
|
|
4212
|
+
*/
|
|
4213
|
+
evelic: string | null;
|
|
4214
|
+
/**
|
|
4215
|
+
* Libellé long
|
|
4216
|
+
*/
|
|
4217
|
+
evelil: string | null;
|
|
4218
|
+
/**
|
|
4219
|
+
* Date système création
|
|
4220
|
+
*/
|
|
4221
|
+
syscredat: Timestamp | null;
|
|
4222
|
+
/**
|
|
4223
|
+
* Date système modification
|
|
4224
|
+
*/
|
|
4225
|
+
sysmajdat: Timestamp | null;
|
|
4226
|
+
/**
|
|
4227
|
+
* Code validité
|
|
4228
|
+
*/
|
|
4229
|
+
temvalcod: string | null;
|
|
4230
|
+
/**
|
|
4231
|
+
* Code type groupe
|
|
4232
|
+
*/
|
|
4233
|
+
typgrpsencod: string;
|
|
4234
|
+
typgrpsennumtri: Int8 | null;
|
|
4235
|
+
}
|
|
4236
|
+
|
|
4237
|
+
export interface Typman {
|
|
4238
|
+
/**
|
|
4239
|
+
* Date système création
|
|
4240
|
+
*/
|
|
4241
|
+
syscredat: Timestamp | null;
|
|
4242
|
+
/**
|
|
4243
|
+
* Date système modification
|
|
4244
|
+
*/
|
|
4245
|
+
sysmajdat: Timestamp | null;
|
|
4246
|
+
/**
|
|
4247
|
+
* Code type mandat
|
|
4248
|
+
*/
|
|
4249
|
+
typmancod: string;
|
|
4250
|
+
/**
|
|
4251
|
+
* Libellé type mandat
|
|
4252
|
+
*/
|
|
4253
|
+
typmanlib: string | null;
|
|
4254
|
+
/**
|
|
4255
|
+
* Numéro de tri
|
|
4256
|
+
*/
|
|
4257
|
+
typmannumtri: Int8 | null;
|
|
4258
|
+
/**
|
|
4259
|
+
* Type d'élection
|
|
4260
|
+
*/
|
|
4261
|
+
typmantypele: string | null;
|
|
4262
|
+
}
|
|
4263
|
+
|
|
4264
|
+
export interface Typorg {
|
|
4265
|
+
/**
|
|
4266
|
+
* Date système création
|
|
4267
|
+
*/
|
|
4268
|
+
syscredat: Timestamp | null;
|
|
4269
|
+
/**
|
|
4270
|
+
* Date système modification
|
|
4271
|
+
*/
|
|
4272
|
+
sysmajdat: Timestamp | null;
|
|
4273
|
+
/**
|
|
4274
|
+
* Code type organisme
|
|
4275
|
+
*/
|
|
4276
|
+
typorgcod: string;
|
|
4277
|
+
/**
|
|
4278
|
+
* Libellé
|
|
4279
|
+
*/
|
|
4280
|
+
typorglib: string;
|
|
4281
|
+
/**
|
|
4282
|
+
* Libellé pluriel
|
|
4283
|
+
*/
|
|
4284
|
+
typorglibplu: string | null;
|
|
4285
|
+
/**
|
|
4286
|
+
* Libellé court
|
|
4287
|
+
*/
|
|
4288
|
+
typorglic: string;
|
|
4289
|
+
/**
|
|
4290
|
+
* Numéro de tri
|
|
4291
|
+
*/
|
|
4292
|
+
typorgnumtri: Int8 | null;
|
|
4293
|
+
/**
|
|
4294
|
+
* URL complète
|
|
4295
|
+
*/
|
|
4296
|
+
typorgurlcmp: string | null;
|
|
4297
|
+
/**
|
|
4298
|
+
* URL simplifiée
|
|
4299
|
+
*/
|
|
4300
|
+
typorgurlsim: string | null;
|
|
4301
|
+
}
|
|
4302
|
+
|
|
4303
|
+
export interface Typurl {
|
|
4304
|
+
/**
|
|
4305
|
+
* Libellé
|
|
4306
|
+
*/
|
|
4307
|
+
evelib: string | null;
|
|
4308
|
+
/**
|
|
4309
|
+
* Libellé court
|
|
4310
|
+
*/
|
|
4311
|
+
evelic: string | null;
|
|
4312
|
+
/**
|
|
4313
|
+
* Libellé long
|
|
4314
|
+
*/
|
|
4315
|
+
evelil: string | null;
|
|
4316
|
+
/**
|
|
4317
|
+
* Observations
|
|
4318
|
+
*/
|
|
4319
|
+
eveobs: string | null;
|
|
4320
|
+
/**
|
|
4321
|
+
* Date système création
|
|
4322
|
+
*/
|
|
4323
|
+
syscredat: Timestamp | null;
|
|
4324
|
+
/**
|
|
4325
|
+
* Date système modification
|
|
4326
|
+
*/
|
|
4327
|
+
sysmajdat: Timestamp | null;
|
|
4328
|
+
/**
|
|
4329
|
+
* Code validité
|
|
4330
|
+
*/
|
|
4331
|
+
temvalcod: string | null;
|
|
4332
|
+
/**
|
|
4333
|
+
* Code type URL
|
|
4334
|
+
*/
|
|
4335
|
+
typurlcod: string;
|
|
4336
|
+
/**
|
|
4337
|
+
* Logo
|
|
4338
|
+
*/
|
|
4339
|
+
typurllogo: string | null;
|
|
4340
|
+
/**
|
|
4341
|
+
* OBSOLETE
|
|
4342
|
+
*/
|
|
4343
|
+
typurllogoref: string | null;
|
|
4344
|
+
/**
|
|
4345
|
+
* Numéro de tri
|
|
4346
|
+
*/
|
|
4347
|
+
typurlnumtri: Int8 | null;
|
|
4348
|
+
}
|
|
4349
|
+
|
|
4350
|
+
export interface Typvoi {
|
|
4351
|
+
/**
|
|
4352
|
+
* Code type de voie
|
|
4353
|
+
*/
|
|
4354
|
+
typvoicod: string;
|
|
4355
|
+
/**
|
|
4356
|
+
* Libellé
|
|
4357
|
+
*/
|
|
4358
|
+
typvoilib: string | null;
|
|
4359
|
+
/**
|
|
4360
|
+
* Libellé court
|
|
4361
|
+
*/
|
|
4362
|
+
typvoilic: string | null;
|
|
4363
|
+
/**
|
|
4364
|
+
* Numéro de tri
|
|
4365
|
+
*/
|
|
4366
|
+
typvoinumtri: Int8 | null;
|
|
4367
|
+
}
|
|
4368
|
+
|
|
4369
|
+
export interface Zongeo {
|
|
4370
|
+
/**
|
|
4371
|
+
* Code continent
|
|
4372
|
+
*/
|
|
4373
|
+
concod: string;
|
|
4374
|
+
/**
|
|
4375
|
+
* Date système création
|
|
4376
|
+
*/
|
|
4377
|
+
syscredat: Timestamp | null;
|
|
4378
|
+
/**
|
|
4379
|
+
* Date système modification
|
|
4380
|
+
*/
|
|
4381
|
+
sysmajdat: Timestamp | null;
|
|
4382
|
+
/**
|
|
4383
|
+
* Code zone géographique
|
|
4384
|
+
*/
|
|
4385
|
+
zongeocod: string;
|
|
4386
|
+
/**
|
|
4387
|
+
* Libellé
|
|
4388
|
+
*/
|
|
4389
|
+
zongeolib: string;
|
|
4390
|
+
/**
|
|
4391
|
+
* Libellé court
|
|
4392
|
+
*/
|
|
4393
|
+
zongeolic: string;
|
|
4394
|
+
/**
|
|
4395
|
+
* Numéro de tri
|
|
4396
|
+
*/
|
|
4397
|
+
zongeonumtri: Int8 | null;
|
|
4398
|
+
}
|
|
4399
|
+
|
|
4400
|
+
export interface DB {
|
|
4401
|
+
activite: Activite;
|
|
4402
|
+
activite_delegation: ActiviteDelegation;
|
|
4403
|
+
activite_loi: ActiviteLoi;
|
|
4404
|
+
activite_participant: ActiviteParticipant;
|
|
4405
|
+
activite_senateur: ActiviteSenateur;
|
|
4406
|
+
activites_liees: ActivitesLiees;
|
|
4407
|
+
actpro: Actpro;
|
|
4408
|
+
adresse: Adresse;
|
|
4409
|
+
asster: Asster;
|
|
4410
|
+
bur: Bur;
|
|
4411
|
+
categorie_activite: CategorieActivite;
|
|
4412
|
+
com: Com;
|
|
4413
|
+
csp: Csp;
|
|
4414
|
+
delega: Delega;
|
|
4415
|
+
design: Design;
|
|
4416
|
+
designoep: Designoep;
|
|
4417
|
+
designorg: Designorg;
|
|
4418
|
+
dpt: Dpt;
|
|
4419
|
+
dptele: Dptele;
|
|
4420
|
+
dpttypman: Dpttypman;
|
|
4421
|
+
ele: Ele;
|
|
4422
|
+
elucan: Elucan;
|
|
4423
|
+
eludep: Eludep;
|
|
4424
|
+
eludiv: Eludiv;
|
|
4425
|
+
elueur: Elueur;
|
|
4426
|
+
elureg: Elureg;
|
|
4427
|
+
elusen: Elusen;
|
|
4428
|
+
eluter: Eluter;
|
|
4429
|
+
elutit: Elutit;
|
|
4430
|
+
eluvil: Eluvil;
|
|
4431
|
+
etadebman: Etadebman;
|
|
4432
|
+
etafinman: Etafinman;
|
|
4433
|
+
etasen: Etasen;
|
|
4434
|
+
fonact_participant: FonactParticipant;
|
|
4435
|
+
foncom: Foncom;
|
|
4436
|
+
fondelega: Fondelega;
|
|
4437
|
+
fongrppol: Fongrppol;
|
|
4438
|
+
fongrpsen: Fongrpsen;
|
|
4439
|
+
fonmemcom: Fonmemcom;
|
|
4440
|
+
fonmemdelega: Fonmemdelega;
|
|
4441
|
+
fonmemgrppol: Fonmemgrppol;
|
|
4442
|
+
fonmemgrpsen: Fonmemgrpsen;
|
|
4443
|
+
fonmemorg: Fonmemorg;
|
|
4444
|
+
fonorg: Fonorg;
|
|
4445
|
+
grppol: Grppol;
|
|
4446
|
+
grpsenami: Grpsenami;
|
|
4447
|
+
libcom: Libcom;
|
|
4448
|
+
libdelega: Libdelega;
|
|
4449
|
+
libgrppol: Libgrppol;
|
|
4450
|
+
libgrpsen: Libgrpsen;
|
|
4451
|
+
liborg: Liborg;
|
|
4452
|
+
mel: Mel;
|
|
4453
|
+
memcom: Memcom;
|
|
4454
|
+
memdelega: Memdelega;
|
|
4455
|
+
memextpar: Memextpar;
|
|
4456
|
+
memgrppol: Memgrppol;
|
|
4457
|
+
memgrpsen: Memgrpsen;
|
|
4458
|
+
memorg: Memorg;
|
|
4459
|
+
minind: Minind;
|
|
4460
|
+
mismin: Mismin;
|
|
4461
|
+
missen: Missen;
|
|
4462
|
+
moddes: Moddes;
|
|
4463
|
+
nation: Nation;
|
|
4464
|
+
nationgrpsen: Nationgrpsen;
|
|
4465
|
+
org: Org;
|
|
4466
|
+
orgext: Orgext;
|
|
4467
|
+
orgthe: Orgthe;
|
|
4468
|
+
pcs: Pcs;
|
|
4469
|
+
pcs24: Pcs24;
|
|
4470
|
+
pcs42: Pcs42;
|
|
4471
|
+
pcs8: Pcs8;
|
|
4472
|
+
pcscatpro: Pcscatpro;
|
|
4473
|
+
poicon: Poicon;
|
|
4474
|
+
qua: Qua;
|
|
4475
|
+
reg: Reg;
|
|
4476
|
+
sen: Sen;
|
|
4477
|
+
senbur: Senbur;
|
|
4478
|
+
sennom: Sennom;
|
|
4479
|
+
senurl: Senurl;
|
|
4480
|
+
stajur: Stajur;
|
|
4481
|
+
telephone: Telephone;
|
|
4482
|
+
temval: Temval;
|
|
4483
|
+
territ: Territ;
|
|
4484
|
+
titele: Titele;
|
|
4485
|
+
typadr: Typadr;
|
|
4486
|
+
typapppol: Typapppol;
|
|
4487
|
+
typbister: Typbister;
|
|
4488
|
+
type_activite: TypeActivite;
|
|
4489
|
+
type_activite_participant: TypeActiviteParticipant;
|
|
4490
|
+
type_activite_senateur: TypeActiviteSenateur;
|
|
4491
|
+
type_categorie: TypeCategorie;
|
|
4492
|
+
typele: Typele;
|
|
4493
|
+
typgrpsen: Typgrpsen;
|
|
4494
|
+
typman: Typman;
|
|
4495
|
+
typorg: Typorg;
|
|
4496
|
+
typurl: Typurl;
|
|
4497
|
+
typvoi: Typvoi;
|
|
4498
|
+
zongeo: Zongeo;
|
|
4499
|
+
}
|