@tricoteuses/senat 2.8.1 → 2.8.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. package/lib/aggregates.d.ts +52 -0
  2. package/lib/aggregates.js +949 -0
  3. package/lib/aggregates.mjs +726 -0
  4. package/lib/aggregates.ts +852 -0
  5. package/lib/config.mjs +16 -0
  6. package/lib/config.ts +26 -0
  7. package/lib/databases.mjs +55 -0
  8. package/lib/databases.ts +68 -0
  9. package/lib/datasets.mjs +78 -0
  10. package/lib/datasets.ts +118 -0
  11. package/lib/fields.d.ts +10 -0
  12. package/lib/fields.js +68 -0
  13. package/lib/fields.mjs +22 -0
  14. package/lib/fields.ts +29 -0
  15. package/lib/index.mjs +7 -0
  16. package/lib/index.ts +64 -0
  17. package/lib/inserters.d.ts +98 -0
  18. package/lib/inserters.js +500 -0
  19. package/lib/inserters.mjs +360 -0
  20. package/lib/inserters.ts +521 -0
  21. package/lib/loaders.mjs +97 -0
  22. package/lib/loaders.ts +173 -0
  23. package/lib/model/ameli.mjs +57 -0
  24. package/lib/model/ameli.ts +86 -0
  25. package/lib/model/debats.mjs +43 -0
  26. package/lib/model/debats.ts +68 -0
  27. package/lib/model/dosleg.mjs +163 -0
  28. package/lib/model/dosleg.ts +204 -0
  29. package/lib/model/index.mjs +4 -0
  30. package/lib/model/index.ts +13 -0
  31. package/lib/model/questions.d.ts +0 -20
  32. package/lib/model/questions.js +1 -32
  33. package/lib/model/questions.mjs +76 -0
  34. package/lib/model/questions.ts +102 -0
  35. package/lib/model/sens.mjs +339 -0
  36. package/lib/model/sens.ts +432 -0
  37. package/lib/model/texte.mjs +156 -0
  38. package/lib/model/texte.ts +174 -0
  39. package/lib/raw_types/ameli.d.ts +20 -0
  40. package/lib/raw_types/questions.d.ts +4 -70
  41. package/lib/raw_types_kysely/ameli.d.ts +915 -0
  42. package/lib/raw_types_kysely/ameli.js +7 -0
  43. package/lib/raw_types_kysely/ameli.mjs +5 -0
  44. package/lib/raw_types_kysely/ameli.ts +951 -0
  45. package/lib/raw_types_kysely/debats.d.ts +207 -0
  46. package/lib/raw_types_kysely/debats.js +7 -0
  47. package/lib/raw_types_kysely/debats.mjs +5 -0
  48. package/lib/raw_types_kysely/debats.ts +222 -0
  49. package/lib/raw_types_kysely/dosleg.d.ts +3532 -0
  50. package/lib/raw_types_kysely/dosleg.js +7 -0
  51. package/lib/raw_types_kysely/dosleg.mjs +5 -0
  52. package/lib/raw_types_kysely/dosleg.ts +3621 -0
  53. package/lib/raw_types_kysely/questions.d.ts +414 -0
  54. package/lib/raw_types_kysely/questions.js +7 -0
  55. package/lib/raw_types_kysely/questions.mjs +5 -0
  56. package/lib/raw_types_kysely/questions.ts +426 -0
  57. package/lib/raw_types_kysely/sens.d.ts +4394 -0
  58. package/lib/raw_types_kysely/sens.js +7 -0
  59. package/lib/raw_types_kysely/sens.mjs +5 -0
  60. package/lib/raw_types_kysely/sens.ts +4499 -0
  61. package/lib/raw_types_schemats/ameli.mjs +2 -0
  62. package/lib/raw_types_schemats/ameli.ts +601 -0
  63. package/lib/raw_types_schemats/debats.mjs +2 -0
  64. package/lib/raw_types_schemats/debats.ts +145 -0
  65. package/lib/raw_types_schemats/dosleg.mjs +2 -0
  66. package/lib/raw_types_schemats/dosleg.ts +2193 -0
  67. package/lib/raw_types_schemats/questions.mjs +2 -0
  68. package/lib/raw_types_schemats/questions.ts +249 -0
  69. package/lib/raw_types_schemats/sens.mjs +2 -0
  70. package/lib/raw_types_schemats/sens.ts +2907 -0
  71. package/lib/scripts/convert_data.mjs +95 -0
  72. package/lib/scripts/convert_data.ts +119 -0
  73. package/lib/scripts/data-download.d.ts +1 -0
  74. package/lib/scripts/data-download.js +9 -0
  75. package/lib/scripts/datautil.mjs +16 -0
  76. package/lib/scripts/datautil.ts +19 -0
  77. package/lib/scripts/images/transparent_150x192.jpg +0 -0
  78. package/lib/scripts/images/transparent_155x225.jpg +0 -0
  79. package/lib/scripts/parse_textes.mjs +38 -0
  80. package/lib/scripts/parse_textes.ts +52 -0
  81. package/lib/scripts/retrieve_documents.mjs +243 -0
  82. package/lib/scripts/retrieve_documents.ts +279 -0
  83. package/lib/scripts/retrieve_open_data.js +11 -9
  84. package/lib/scripts/retrieve_open_data.mjs +214 -0
  85. package/lib/scripts/retrieve_open_data.ts +261 -0
  86. package/lib/scripts/retrieve_senateurs_photos.mjs +147 -0
  87. package/lib/scripts/retrieve_senateurs_photos.ts +177 -0
  88. package/lib/scripts/retrieve_textes.d.ts +1 -0
  89. package/lib/scripts/retrieve_textes.mjs +165 -0
  90. package/lib/scripts/retrieve_textes.ts +79 -0
  91. package/lib/scripts/shared/cli_helpers.ts +36 -0
  92. package/lib/scripts/shared/util.ts +33 -0
  93. package/lib/strings.mjs +18 -0
  94. package/lib/strings.ts +26 -0
  95. package/lib/types/ameli.mjs +13 -0
  96. package/lib/types/ameli.ts +21 -0
  97. package/lib/types/debats.mjs +2 -0
  98. package/lib/types/debats.ts +6 -0
  99. package/lib/types/dosleg.mjs +151 -0
  100. package/lib/types/dosleg.ts +284 -0
  101. package/lib/types/questions.mjs +1 -0
  102. package/lib/types/questions.ts +3 -0
  103. package/lib/types/sens.mjs +1 -0
  104. package/lib/types/sens.ts +12 -0
  105. package/lib/types/sessions.mjs +43 -0
  106. package/lib/types/sessions.ts +42 -0
  107. package/lib/types/texte.mjs +16 -0
  108. package/lib/types/texte.ts +66 -0
  109. package/lib/typings/windows-1252.d.js +2 -0
  110. package/lib/typings/windows-1252.d.mjs +2 -0
  111. package/lib/typings/windows-1252.d.ts +11 -0
  112. package/lib/validators/config.mjs +54 -0
  113. package/lib/validators/config.ts +79 -0
  114. package/lib/validators/senat.mjs +24 -0
  115. package/lib/validators/senat.ts +26 -0
  116. package/package.json +6 -4
@@ -0,0 +1,2907 @@
1
+ /* tslint:disable */
2
+
3
+ /**
4
+ * AUTO-GENERATED FILE - DO NOT EDIT!
5
+ *
6
+ * This file was automatically generated by schemats v.1.1.2
7
+ * $ schemats generate -c postgres://username:password@localhost:5432/sens -t activite -t activite_delegation -t activite_loi -t activite_participant -t activite_senateur -t activites_liees -t actpro -t adresse -t asster -t bur -t categorie_activite -t com -t csp -t delega -t design -t designoep -t designorg -t dpt -t dptele -t dpttypman -t ele -t elucan -t eludep -t eludiv -t elueur -t elureg -t elusen -t eluter -t elutit -t eluvil -t etadebman -t etafinman -t etasen -t fonact_participant -t foncom -t fondelega -t fongrppol -t fongrpsen -t fonmemcom -t fonmemdelega -t fonmemgrppol -t fonmemgrpsen -t fonmemorg -t fonorg -t grppol -t grpsenami -t libcom -t libdelega -t libgrppol -t libgrpsen -t liborg -t mel -t memcom -t memdelega -t memextpar -t memgrppol -t memgrpsen -t memorg -t minind -t mismin -t missen -t moddes -t nation -t nationgrpsen -t org -t orgext -t orgthe -t pcs -t pcs24 -t pcs42 -t pcs8 -t pcscatpro -t poicon -t qua -t reg -t sen -t senbur -t sennom -t senurl -t stajur -t telephone -t temval -t territ -t titele -t typadr -t typapppol -t typbister -t type_activite -t type_activite_participant -t type_activite_senateur -t type_categorie -t typele -t typgrpsen -t typman -t typorg -t typurl -t typvoi -t zongeo -s public
8
+ *
9
+ */
10
+
11
+ export namespace activiteFields {
12
+ export type actid = number
13
+ export type actlib = string | null
14
+ export type actlic = string | null
15
+ export type catactcod = string
16
+ export type comcod = string | null
17
+ export type datdeb = Date
18
+ export type datfin = Date
19
+ export type delegacod = string | null
20
+ export type envjodat = Date | null
21
+ export type gecod = string | null
22
+ export type giacod = string | null
23
+ export type nb_delegations = number
24
+ export type nb_participants = number
25
+ export type scrid = number | null
26
+ export type typactcod = string
27
+ export type validdat = Date | null
28
+ }
29
+
30
+ export interface activite {
31
+ actid: activiteFields.actid
32
+ actlib: activiteFields.actlib
33
+ actlic: activiteFields.actlic
34
+ catactcod: activiteFields.catactcod
35
+ comcod: activiteFields.comcod
36
+ datdeb: activiteFields.datdeb
37
+ datfin: activiteFields.datfin
38
+ delegacod: activiteFields.delegacod
39
+ envjodat: activiteFields.envjodat
40
+ gecod: activiteFields.gecod
41
+ giacod: activiteFields.giacod
42
+ nb_delegations: activiteFields.nb_delegations
43
+ nb_participants: activiteFields.nb_participants
44
+ scrid: activiteFields.scrid
45
+ typactcod: activiteFields.typactcod
46
+ validdat: activiteFields.validdat
47
+ }
48
+
49
+ export namespace activite_delegationFields {
50
+ export type actid = number
51
+ export type delegactid = number
52
+ export type delegidx = number
53
+ export type senmat = string
54
+ export type senmat_delegue = string | null
55
+ }
56
+
57
+ export interface activite_delegation {
58
+ actid: activite_delegationFields.actid
59
+ delegactid: activite_delegationFields.delegactid
60
+ delegidx: activite_delegationFields.delegidx
61
+ senmat: activite_delegationFields.senmat
62
+ senmat_delegue: activite_delegationFields.senmat_delegue
63
+ }
64
+
65
+ export namespace activite_loiFields {
66
+ export type actid = number
67
+ export type loicod = string
68
+ }
69
+
70
+ export interface activite_loi {
71
+ actid: activite_loiFields.actid
72
+ loicod: activite_loiFields.loicod
73
+ }
74
+
75
+ export namespace activite_participantFields {
76
+ export type actid = number
77
+ export type actparid = number
78
+ export type fapcod = string
79
+ export type fapidx = number | null
80
+ export type senmat = string
81
+ export type teleparticipation = number | null
82
+ export type typactparcod = string
83
+ }
84
+
85
+ export interface activite_participant {
86
+ actid: activite_participantFields.actid
87
+ actparid: activite_participantFields.actparid
88
+ fapcod: activite_participantFields.fapcod
89
+ fapidx: activite_participantFields.fapidx
90
+ senmat: activite_participantFields.senmat
91
+ teleparticipation: activite_participantFields.teleparticipation
92
+ typactparcod: activite_participantFields.typactparcod
93
+ }
94
+
95
+ export namespace activite_senateurFields {
96
+ export type actsenid = number
97
+ export type datdeb = Date
98
+ export type datfin = Date
99
+ export type libelle = string | null
100
+ export type senmat = string
101
+ export type typactsencod = string
102
+ }
103
+
104
+ export interface activite_senateur {
105
+ actsenid: activite_senateurFields.actsenid
106
+ datdeb: activite_senateurFields.datdeb
107
+ datfin: activite_senateurFields.datfin
108
+ libelle: activite_senateurFields.libelle
109
+ senmat: activite_senateurFields.senmat
110
+ typactsencod: activite_senateurFields.typactsencod
111
+ }
112
+
113
+ export namespace activites_lieesFields {
114
+ export type droite = number
115
+ export type gauche = number
116
+ }
117
+
118
+ export interface activites_liees {
119
+ droite: activites_lieesFields.droite
120
+ gauche: activites_lieesFields.gauche
121
+ }
122
+
123
+ export namespace actproFields {
124
+ export type actprocod = string
125
+ export type actprolib = string
126
+ export type actpronumtri = number | null
127
+ export type syscredat = Date | null
128
+ export type sysmajdat = Date | null
129
+ }
130
+
131
+ export interface actpro {
132
+ actprocod: actproFields.actprocod
133
+ actprolib: actproFields.actprolib
134
+ actpronumtri: actproFields.actpronumtri
135
+ syscredat: actproFields.syscredat
136
+ sysmajdat: actproFields.sysmajdat
137
+ }
138
+
139
+ export namespace adresseFields {
140
+ export type adrburdis = string | null
141
+ export type adrcdxcod = string | null
142
+ export type adrcdxlib = string | null
143
+ export type adrcmp = string | null
144
+ export type adrcmp2 = string | null
145
+ export type adrcodpos = string | null
146
+ export type adrcom = string | null
147
+ export type adrid = number
148
+ export type adrnomvoi = string | null
149
+ export type adrnumtri = number | null
150
+ export type adrnumvoi = string | null
151
+ export type poiconid = number
152
+ export type syscredat = Date | null
153
+ export type sysmajdat = Date | null
154
+ export type typbistercod = string
155
+ export type typvoicod = string
156
+ }
157
+
158
+ export interface adresse {
159
+ adrburdis: adresseFields.adrburdis
160
+ adrcdxcod: adresseFields.adrcdxcod
161
+ adrcdxlib: adresseFields.adrcdxlib
162
+ adrcmp: adresseFields.adrcmp
163
+ adrcmp2: adresseFields.adrcmp2
164
+ adrcodpos: adresseFields.adrcodpos
165
+ adrcom: adresseFields.adrcom
166
+ adrid: adresseFields.adrid
167
+ adrnomvoi: adresseFields.adrnomvoi
168
+ adrnumtri: adresseFields.adrnumtri
169
+ adrnumvoi: adresseFields.adrnumvoi
170
+ poiconid: adresseFields.poiconid
171
+ syscredat: adresseFields.syscredat
172
+ sysmajdat: adresseFields.sysmajdat
173
+ typbistercod: adresseFields.typbistercod
174
+ typvoicod: adresseFields.typvoicod
175
+ }
176
+
177
+ export namespace assterFields {
178
+ export type assterart = string | null
179
+ export type asstercod = string
180
+ export type assterlib = string | null
181
+ export type assterlic = string | null
182
+ export type assternumtri = number | null
183
+ export type assterurlcmp = string | null
184
+ export type syscredat = Date | null
185
+ export type sysmajdat = Date | null
186
+ }
187
+
188
+ export interface asster {
189
+ assterart: assterFields.assterart
190
+ asstercod: assterFields.asstercod
191
+ assterlib: assterFields.assterlib
192
+ assterlic: assterFields.assterlic
193
+ assternumtri: assterFields.assternumtri
194
+ assterurlcmp: assterFields.assterurlcmp
195
+ syscredat: assterFields.syscredat
196
+ sysmajdat: assterFields.sysmajdat
197
+ }
198
+
199
+ export namespace burFields {
200
+ export type burcod = string
201
+ export type burlib = string | null
202
+ export type burlibfem = string | null
203
+ export type burlibfemplu = string | null
204
+ export type burlibhon = string | null
205
+ export type burlibhonfem = string | null
206
+ export type burlibhonplu = string | null
207
+ export type burlibplu = string | null
208
+ export type burlic = string | null
209
+ export type burlicfem = string | null
210
+ export type burlicfemplu = string | null
211
+ export type burlicplu = string | null
212
+ export type burlil = string | null
213
+ export type burlilfem = string | null
214
+ export type burlilfemplu = string | null
215
+ export type burlilplu = string | null
216
+ export type burnumtri = number | null
217
+ export type syscredat = Date | null
218
+ export type sysmajdat = Date | null
219
+ }
220
+
221
+ export interface bur {
222
+ burcod: burFields.burcod
223
+ burlib: burFields.burlib
224
+ burlibfem: burFields.burlibfem
225
+ burlibfemplu: burFields.burlibfemplu
226
+ burlibhon: burFields.burlibhon
227
+ burlibhonfem: burFields.burlibhonfem
228
+ burlibhonplu: burFields.burlibhonplu
229
+ burlibplu: burFields.burlibplu
230
+ burlic: burFields.burlic
231
+ burlicfem: burFields.burlicfem
232
+ burlicfemplu: burFields.burlicfemplu
233
+ burlicplu: burFields.burlicplu
234
+ burlil: burFields.burlil
235
+ burlilfem: burFields.burlilfem
236
+ burlilfemplu: burFields.burlilfemplu
237
+ burlilplu: burFields.burlilplu
238
+ burnumtri: burFields.burnumtri
239
+ syscredat: burFields.syscredat
240
+ sysmajdat: burFields.sysmajdat
241
+ }
242
+
243
+ export namespace categorie_activiteFields {
244
+ export type catactcod = string
245
+ export type catactlib = string
246
+ export type catactlibtap = string | null
247
+ export type catactlic = string
248
+ export type pleniere = number | null
249
+ export type publiee_jo = number | null
250
+ }
251
+
252
+ export interface categorie_activite {
253
+ catactcod: categorie_activiteFields.catactcod
254
+ catactlib: categorie_activiteFields.catactlib
255
+ catactlibtap: categorie_activiteFields.catactlibtap
256
+ catactlic: categorie_activiteFields.catactlic
257
+ pleniere: categorie_activiteFields.pleniere
258
+ publiee_jo: categorie_activiteFields.publiee_jo
259
+ }
260
+
261
+ export namespace comFields {
262
+ export type comcodameli = string | null
263
+ export type comlibameli = string | null
264
+ export type comlilmin = string | null
265
+ export type divcod = string | null
266
+ export type evelib = string | null
267
+ export type evelic = string | null
268
+ export type evelil = string | null
269
+ export type orgart = string | null
270
+ export type orgcod = string
271
+ export type orgdatcre = Date | null
272
+ export type orgdatfin = Date | null
273
+ export type orgnumtie = string | null
274
+ export type orgnumtri = number | null
275
+ export type orgurlcmp = string | null
276
+ export type orgurlsim = string | null
277
+ export type syscredat = Date | null
278
+ export type sysmajdat = Date | null
279
+ export type temvalcod = string | null
280
+ export type typorgcod = string
281
+ }
282
+
283
+ export interface com {
284
+ comcodameli: comFields.comcodameli
285
+ comlibameli: comFields.comlibameli
286
+ comlilmin: comFields.comlilmin
287
+ divcod: comFields.divcod
288
+ evelib: comFields.evelib
289
+ evelic: comFields.evelic
290
+ evelil: comFields.evelil
291
+ orgart: comFields.orgart
292
+ orgcod: comFields.orgcod
293
+ orgdatcre: comFields.orgdatcre
294
+ orgdatfin: comFields.orgdatfin
295
+ orgnumtie: comFields.orgnumtie
296
+ orgnumtri: comFields.orgnumtri
297
+ orgurlcmp: comFields.orgurlcmp
298
+ orgurlsim: comFields.orgurlsim
299
+ syscredat: comFields.syscredat
300
+ sysmajdat: comFields.sysmajdat
301
+ temvalcod: comFields.temvalcod
302
+ typorgcod: comFields.typorgcod
303
+ }
304
+
305
+ export namespace cspFields {
306
+ export type catprocod = string
307
+ export type cspcod = string
308
+ export type cspfamcod = string
309
+ export type csplib = string | null
310
+ export type cspnumtri = number | null
311
+ export type syscredat = Date | null
312
+ export type sysmajdat = Date | null
313
+ }
314
+
315
+ export interface csp {
316
+ catprocod: cspFields.catprocod
317
+ cspcod: cspFields.cspcod
318
+ cspfamcod: cspFields.cspfamcod
319
+ csplib: cspFields.csplib
320
+ cspnumtri: cspFields.cspnumtri
321
+ syscredat: cspFields.syscredat
322
+ sysmajdat: cspFields.sysmajdat
323
+ }
324
+
325
+ export namespace delegaFields {
326
+ export type evelib = string | null
327
+ export type evelic = string | null
328
+ export type evelil = string | null
329
+ export type orgart = string | null
330
+ export type orgcod = string
331
+ export type orgdatcre = Date | null
332
+ export type orgdatfin = Date | null
333
+ export type orgmemdep = string | null
334
+ export type orgmoddes = string | null
335
+ export type orgnumtie = string | null
336
+ export type orgnumtri = number | null
337
+ export type orgregjur = string | null
338
+ export type orgurlcmp = string | null
339
+ export type orgurlsim = string | null
340
+ export type syscredat = Date | null
341
+ export type sysmajdat = Date | null
342
+ export type temvalcod = string | null
343
+ export type typorgcod = string
344
+ }
345
+
346
+ export interface delega {
347
+ evelib: delegaFields.evelib
348
+ evelic: delegaFields.evelic
349
+ evelil: delegaFields.evelil
350
+ orgart: delegaFields.orgart
351
+ orgcod: delegaFields.orgcod
352
+ orgdatcre: delegaFields.orgdatcre
353
+ orgdatfin: delegaFields.orgdatfin
354
+ orgmemdep: delegaFields.orgmemdep
355
+ orgmoddes: delegaFields.orgmoddes
356
+ orgnumtie: delegaFields.orgnumtie
357
+ orgnumtri: delegaFields.orgnumtri
358
+ orgregjur: delegaFields.orgregjur
359
+ orgurlcmp: delegaFields.orgurlcmp
360
+ orgurlsim: delegaFields.orgurlsim
361
+ syscredat: delegaFields.syscredat
362
+ sysmajdat: delegaFields.sysmajdat
363
+ temvalcod: delegaFields.temvalcod
364
+ typorgcod: delegaFields.typorgcod
365
+ }
366
+
367
+ export namespace designFields {
368
+ export type designcod = string
369
+ export type designnumtri = number | null
370
+ export type evelib = string | null
371
+ export type evelic = string | null
372
+ export type evelil = string | null
373
+ export type eveobs = string | null
374
+ export type moddescod = string
375
+ export type orgcod = string
376
+ export type syscredat = Date | null
377
+ export type sysmajdat = Date | null
378
+ export type temvalcod = string | null
379
+ }
380
+
381
+ export interface design {
382
+ designcod: designFields.designcod
383
+ designnumtri: designFields.designnumtri
384
+ evelib: designFields.evelib
385
+ evelic: designFields.evelic
386
+ evelil: designFields.evelil
387
+ eveobs: designFields.eveobs
388
+ moddescod: designFields.moddescod
389
+ orgcod: designFields.orgcod
390
+ syscredat: designFields.syscredat
391
+ sysmajdat: designFields.sysmajdat
392
+ temvalcod: designFields.temvalcod
393
+ }
394
+
395
+ export namespace designoepFields {
396
+ export type designcod = string
397
+ export type designoepdatdeb = Date | null
398
+ export type designoepdatfin = Date | null
399
+ export type designoepid = number
400
+ export type designoepnbrsup = number | null
401
+ export type designoepnbrtit = number | null
402
+ export type designoepnumtri = number | null
403
+ export type evelib = string | null
404
+ export type evelic = string | null
405
+ export type evelil = string | null
406
+ export type fonmemextparcod = string
407
+ export type fonremlil = string | null
408
+ export type fontemrem = string | null
409
+ export type incompat = string | null
410
+ export type orgcod = string
411
+ export type syscredat = Date | null
412
+ export type sysmajdat = Date | null
413
+ export type temvalcod = string | null
414
+ }
415
+
416
+ export interface designoep {
417
+ designcod: designoepFields.designcod
418
+ designoepdatdeb: designoepFields.designoepdatdeb
419
+ designoepdatfin: designoepFields.designoepdatfin
420
+ designoepid: designoepFields.designoepid
421
+ designoepnbrsup: designoepFields.designoepnbrsup
422
+ designoepnbrtit: designoepFields.designoepnbrtit
423
+ designoepnumtri: designoepFields.designoepnumtri
424
+ evelib: designoepFields.evelib
425
+ evelic: designoepFields.evelic
426
+ evelil: designoepFields.evelil
427
+ fonmemextparcod: designoepFields.fonmemextparcod
428
+ fonremlil: designoepFields.fonremlil
429
+ fontemrem: designoepFields.fontemrem
430
+ incompat: designoepFields.incompat
431
+ orgcod: designoepFields.orgcod
432
+ syscredat: designoepFields.syscredat
433
+ sysmajdat: designoepFields.sysmajdat
434
+ temvalcod: designoepFields.temvalcod
435
+ }
436
+
437
+ export namespace designorgFields {
438
+ export type designcod = string
439
+ export type designlib = string | null
440
+ export type designlibfem = string | null
441
+ export type designlic = string | null
442
+ export type designlicfem = string | null
443
+ export type designlil = string | null
444
+ export type designlilfem = string | null
445
+ export type designnumtri = number | null
446
+ export type evelib = string | null
447
+ export type evelic = string | null
448
+ export type evelil = string | null
449
+ export type eveobs = string | null
450
+ export type syscredat = Date | null
451
+ export type sysmajdat = Date | null
452
+ export type temvalcod = string | null
453
+ }
454
+
455
+ export interface designorg {
456
+ designcod: designorgFields.designcod
457
+ designlib: designorgFields.designlib
458
+ designlibfem: designorgFields.designlibfem
459
+ designlic: designorgFields.designlic
460
+ designlicfem: designorgFields.designlicfem
461
+ designlil: designorgFields.designlil
462
+ designlilfem: designorgFields.designlilfem
463
+ designnumtri: designorgFields.designnumtri
464
+ evelib: designorgFields.evelib
465
+ evelic: designorgFields.evelic
466
+ evelil: designorgFields.evelil
467
+ eveobs: designorgFields.eveobs
468
+ syscredat: designorgFields.syscredat
469
+ sysmajdat: designorgFields.sysmajdat
470
+ temvalcod: designorgFields.temvalcod
471
+ }
472
+
473
+ export namespace dptFields {
474
+ export type dptart = string | null
475
+ export type dptcmt = string | null
476
+ export type dptcod = string
477
+ export type dptdatdeb = Date | null
478
+ export type dptdatfin = Date | null
479
+ export type dptlib = string
480
+ export type dptlibtri = string | null
481
+ export type dptlic = string | null
482
+ export type dptmodscrsen = string | null
483
+ export type dptnbrsen = number | null
484
+ export type dptnum = number
485
+ export type dptnumtri = number
486
+ export type dptser = string
487
+ export type dptser2004 = string | null
488
+ export type dpturlcmp = string | null
489
+ export type evelib = string | null
490
+ export type evelic = string | null
491
+ export type evelil = string | null
492
+ export type regcod = string
493
+ export type syscredat = Date | null
494
+ export type sysmajdat = Date | null
495
+ export type temvalcod = string | null
496
+ }
497
+
498
+ export interface dpt {
499
+ dptart: dptFields.dptart
500
+ dptcmt: dptFields.dptcmt
501
+ dptcod: dptFields.dptcod
502
+ dptdatdeb: dptFields.dptdatdeb
503
+ dptdatfin: dptFields.dptdatfin
504
+ dptlib: dptFields.dptlib
505
+ dptlibtri: dptFields.dptlibtri
506
+ dptlic: dptFields.dptlic
507
+ dptmodscrsen: dptFields.dptmodscrsen
508
+ dptnbrsen: dptFields.dptnbrsen
509
+ dptnum: dptFields.dptnum
510
+ dptnumtri: dptFields.dptnumtri
511
+ dptser: dptFields.dptser
512
+ dptser2004: dptFields.dptser2004
513
+ dpturlcmp: dptFields.dpturlcmp
514
+ evelib: dptFields.evelib
515
+ evelic: dptFields.evelic
516
+ evelil: dptFields.evelil
517
+ regcod: dptFields.regcod
518
+ syscredat: dptFields.syscredat
519
+ sysmajdat: dptFields.sysmajdat
520
+ temvalcod: dptFields.temvalcod
521
+ }
522
+
523
+ export namespace dpteleFields {
524
+ export type dptelecmt = string | null
525
+ export type dpteleid = number
526
+ export type dptelenbrsie = number | null
527
+ export type dptelenbrsiepvr = number | null
528
+ export type dptnum = number
529
+ export type eleid = number
530
+ export type participaidt1 = number | null
531
+ export type participaidt2 = number | null
532
+ export type syscredat = Date | null
533
+ export type sysmajdat = Date | null
534
+ export type typelecod = string
535
+ export type valid2cod = string
536
+ export type validcod = string
537
+ }
538
+
539
+ export interface dptele {
540
+ dptelecmt: dpteleFields.dptelecmt
541
+ dpteleid: dpteleFields.dpteleid
542
+ dptelenbrsie: dpteleFields.dptelenbrsie
543
+ dptelenbrsiepvr: dpteleFields.dptelenbrsiepvr
544
+ dptnum: dpteleFields.dptnum
545
+ eleid: dpteleFields.eleid
546
+ participaidt1: dpteleFields.participaidt1
547
+ participaidt2: dpteleFields.participaidt2
548
+ syscredat: dpteleFields.syscredat
549
+ sysmajdat: dpteleFields.sysmajdat
550
+ typelecod: dpteleFields.typelecod
551
+ valid2cod: dpteleFields.valid2cod
552
+ validcod: dpteleFields.validcod
553
+ }
554
+
555
+ export namespace dpttypmanFields {
556
+ export type dptnum = number
557
+ export type dpttypmanid = number
558
+ export type typmancod = string
559
+ }
560
+
561
+ export interface dpttypman {
562
+ dptnum: dpttypmanFields.dptnum
563
+ dpttypmanid: dpttypmanFields.dpttypmanid
564
+ typmancod: dpttypmanFields.typmancod
565
+ }
566
+
567
+ export namespace eleFields {
568
+ export type eleann = string
569
+ export type eledat = Date | null
570
+ export type eledatdeb = Date | null
571
+ export type eledatfinpre = Date | null
572
+ export type eleid = number
573
+ export type elelib = string | null
574
+ export type elelic = string | null
575
+ export type elelil = string | null
576
+ export type elepar = string | null
577
+ export type eleser = string | null
578
+ export type syscredat = Date | null
579
+ export type sysmajdat = Date | null
580
+ export type typmancod = string
581
+ }
582
+
583
+ export interface ele {
584
+ eleann: eleFields.eleann
585
+ eledat: eleFields.eledat
586
+ eledatdeb: eleFields.eledatdeb
587
+ eledatfinpre: eleFields.eledatfinpre
588
+ eleid: eleFields.eleid
589
+ elelib: eleFields.elelib
590
+ elelic: eleFields.elelic
591
+ elelil: eleFields.elelil
592
+ elepar: eleFields.elepar
593
+ eleser: eleFields.eleser
594
+ syscredat: eleFields.syscredat
595
+ sysmajdat: eleFields.sysmajdat
596
+ typmancod: eleFields.typmancod
597
+ }
598
+
599
+ export namespace elucanFields {
600
+ export type canart = string | null
601
+ export type dptnum = number | null
602
+ export type eluanndeb = number | null
603
+ export type eluannfin = number | null
604
+ export type eludatcum = Date | null
605
+ export type eludatdeb = Date | null
606
+ export type eludatelu = Date | null
607
+ export type eludatfin = Date | null
608
+ export type eluid = number
609
+ export type elunbrhab = number | null
610
+ export type evelib = string | null
611
+ export type evelic = string | null
612
+ export type evelil = string | null
613
+ export type eveobs = string | null
614
+ export type senmat = string
615
+ export type syscredat = Date | null
616
+ export type sysmajdat = Date | null
617
+ export type temvalcod = string | null
618
+ export type typmancod = string | null
619
+ }
620
+
621
+ export interface elucan {
622
+ canart: elucanFields.canart
623
+ dptnum: elucanFields.dptnum
624
+ eluanndeb: elucanFields.eluanndeb
625
+ eluannfin: elucanFields.eluannfin
626
+ eludatcum: elucanFields.eludatcum
627
+ eludatdeb: elucanFields.eludatdeb
628
+ eludatelu: elucanFields.eludatelu
629
+ eludatfin: elucanFields.eludatfin
630
+ eluid: elucanFields.eluid
631
+ elunbrhab: elucanFields.elunbrhab
632
+ evelib: elucanFields.evelib
633
+ evelic: elucanFields.evelic
634
+ evelil: elucanFields.evelil
635
+ eveobs: elucanFields.eveobs
636
+ senmat: elucanFields.senmat
637
+ syscredat: elucanFields.syscredat
638
+ sysmajdat: elucanFields.sysmajdat
639
+ temvalcod: elucanFields.temvalcod
640
+ typmancod: elucanFields.typmancod
641
+ }
642
+
643
+ export namespace eludepFields {
644
+ export type circo = number | null
645
+ export type depcod = string | null
646
+ export type eluanndeb = number | null
647
+ export type eluannfin = number | null
648
+ export type eludatcum = Date | null
649
+ export type eludatdeb = Date | null
650
+ export type eludatelu = Date | null
651
+ export type eludatfin = Date | null
652
+ export type eluid = number
653
+ export type elunbrhab = number | null
654
+ export type evelib = string | null
655
+ export type evelic = string | null
656
+ export type evelil = string | null
657
+ export type eveobs = string | null
658
+ export type id_organe_assnat = string | null
659
+ export type senmat = string
660
+ export type syscredat = Date | null
661
+ export type sysmajdat = Date | null
662
+ export type temvalcod = string | null
663
+ export type typmancod = string | null
664
+ }
665
+
666
+ export interface eludep {
667
+ circo: eludepFields.circo
668
+ depcod: eludepFields.depcod
669
+ eluanndeb: eludepFields.eluanndeb
670
+ eluannfin: eludepFields.eluannfin
671
+ eludatcum: eludepFields.eludatcum
672
+ eludatdeb: eludepFields.eludatdeb
673
+ eludatelu: eludepFields.eludatelu
674
+ eludatfin: eludepFields.eludatfin
675
+ eluid: eludepFields.eluid
676
+ elunbrhab: eludepFields.elunbrhab
677
+ evelib: eludepFields.evelib
678
+ evelic: eludepFields.evelic
679
+ evelil: eludepFields.evelil
680
+ eveobs: eludepFields.eveobs
681
+ id_organe_assnat: eludepFields.id_organe_assnat
682
+ senmat: eludepFields.senmat
683
+ syscredat: eludepFields.syscredat
684
+ sysmajdat: eludepFields.sysmajdat
685
+ temvalcod: eludepFields.temvalcod
686
+ typmancod: eludepFields.typmancod
687
+ }
688
+
689
+ export namespace eludivFields {
690
+ export type eluanndeb = number | null
691
+ export type eluannfin = number | null
692
+ export type eludatcum = Date | null
693
+ export type eludatdeb = Date | null
694
+ export type eludatelu = Date | null
695
+ export type eludatfin = Date | null
696
+ export type eludivart = string | null
697
+ export type eludivurlcmp = string | null
698
+ export type eluid = number
699
+ export type elunbrhab = number | null
700
+ export type evelib = string | null
701
+ export type evelic = string | null
702
+ export type evelil = string | null
703
+ export type eveobs = string | null
704
+ export type senmat = string
705
+ export type syscredat = Date | null
706
+ export type sysmajdat = Date | null
707
+ export type temvalcod = string | null
708
+ export type typmancod = string | null
709
+ }
710
+
711
+ export interface eludiv {
712
+ eluanndeb: eludivFields.eluanndeb
713
+ eluannfin: eludivFields.eluannfin
714
+ eludatcum: eludivFields.eludatcum
715
+ eludatdeb: eludivFields.eludatdeb
716
+ eludatelu: eludivFields.eludatelu
717
+ eludatfin: eludivFields.eludatfin
718
+ eludivart: eludivFields.eludivart
719
+ eludivurlcmp: eludivFields.eludivurlcmp
720
+ eluid: eludivFields.eluid
721
+ elunbrhab: eludivFields.elunbrhab
722
+ evelib: eludivFields.evelib
723
+ evelic: eludivFields.evelic
724
+ evelil: eludivFields.evelil
725
+ eveobs: eludivFields.eveobs
726
+ senmat: eludivFields.senmat
727
+ syscredat: eludivFields.syscredat
728
+ sysmajdat: eludivFields.sysmajdat
729
+ temvalcod: eludivFields.temvalcod
730
+ typmancod: eludivFields.typmancod
731
+ }
732
+
733
+ export namespace elueurFields {
734
+ export type eluanndeb = number | null
735
+ export type eluannfin = number | null
736
+ export type eludatcum = Date | null
737
+ export type eludatdeb = Date | null
738
+ export type eludatelu = Date | null
739
+ export type eludatfin = Date | null
740
+ export type eluid = number
741
+ export type elunbrhab = number | null
742
+ export type evelib = string | null
743
+ export type evelic = string | null
744
+ export type evelil = string | null
745
+ export type eveobs = string | null
746
+ export type nationcod = string | null
747
+ export type senmat = string
748
+ export type syscredat = Date | null
749
+ export type sysmajdat = Date | null
750
+ export type temvalcod = string | null
751
+ export type typmancod = string | null
752
+ }
753
+
754
+ export interface elueur {
755
+ eluanndeb: elueurFields.eluanndeb
756
+ eluannfin: elueurFields.eluannfin
757
+ eludatcum: elueurFields.eludatcum
758
+ eludatdeb: elueurFields.eludatdeb
759
+ eludatelu: elueurFields.eludatelu
760
+ eludatfin: elueurFields.eludatfin
761
+ eluid: elueurFields.eluid
762
+ elunbrhab: elueurFields.elunbrhab
763
+ evelib: elueurFields.evelib
764
+ evelic: elueurFields.evelic
765
+ evelil: elueurFields.evelil
766
+ eveobs: elueurFields.eveobs
767
+ nationcod: elueurFields.nationcod
768
+ senmat: elueurFields.senmat
769
+ syscredat: elueurFields.syscredat
770
+ sysmajdat: elueurFields.sysmajdat
771
+ temvalcod: elueurFields.temvalcod
772
+ typmancod: elueurFields.typmancod
773
+ }
774
+
775
+ export namespace eluregFields {
776
+ export type eluanndeb = number | null
777
+ export type eluannfin = number | null
778
+ export type eludatcum = Date | null
779
+ export type eludatdeb = Date | null
780
+ export type eludatelu = Date | null
781
+ export type eludatfin = Date | null
782
+ export type eluid = number
783
+ export type elunbrhab = number | null
784
+ export type evelib = string | null
785
+ export type evelic = string | null
786
+ export type evelil = string | null
787
+ export type eveobs = string | null
788
+ export type regcod = string | null
789
+ export type senmat = string
790
+ export type syscredat = Date | null
791
+ export type sysmajdat = Date | null
792
+ export type temvalcod = string | null
793
+ export type typmancod = string | null
794
+ }
795
+
796
+ export interface elureg {
797
+ eluanndeb: eluregFields.eluanndeb
798
+ eluannfin: eluregFields.eluannfin
799
+ eludatcum: eluregFields.eludatcum
800
+ eludatdeb: eluregFields.eludatdeb
801
+ eludatelu: eluregFields.eludatelu
802
+ eludatfin: eluregFields.eludatfin
803
+ eluid: eluregFields.eluid
804
+ elunbrhab: eluregFields.elunbrhab
805
+ evelib: eluregFields.evelib
806
+ evelic: eluregFields.evelic
807
+ evelil: eluregFields.evelil
808
+ eveobs: eluregFields.eveobs
809
+ regcod: eluregFields.regcod
810
+ senmat: eluregFields.senmat
811
+ syscredat: eluregFields.syscredat
812
+ sysmajdat: eluregFields.sysmajdat
813
+ temvalcod: eluregFields.temvalcod
814
+ typmancod: eluregFields.typmancod
815
+ }
816
+
817
+ export namespace elusenFields {
818
+ export type dptnum = number
819
+ export type eluanndeb = number | null
820
+ export type eluannfin = number | null
821
+ export type eludatcum = Date | null
822
+ export type eludatdeb = Date | null
823
+ export type eludatelu = Date | null
824
+ export type eludatfin = Date | null
825
+ export type eluid = number
826
+ export type etadebmancod = string
827
+ export type etafinmancod = string | null
828
+ export type evelib = string | null
829
+ export type evelic = string | null
830
+ export type evelil = string | null
831
+ export type senmat = string
832
+ export type syscredat = Date | null
833
+ export type sysmajdat = Date | null
834
+ export type temvalcod = string | null
835
+ export type turelucod = string
836
+ export type typmancod = string | null
837
+ }
838
+
839
+ export interface elusen {
840
+ dptnum: elusenFields.dptnum
841
+ eluanndeb: elusenFields.eluanndeb
842
+ eluannfin: elusenFields.eluannfin
843
+ eludatcum: elusenFields.eludatcum
844
+ eludatdeb: elusenFields.eludatdeb
845
+ eludatelu: elusenFields.eludatelu
846
+ eludatfin: elusenFields.eludatfin
847
+ eluid: elusenFields.eluid
848
+ etadebmancod: elusenFields.etadebmancod
849
+ etafinmancod: elusenFields.etafinmancod
850
+ evelib: elusenFields.evelib
851
+ evelic: elusenFields.evelic
852
+ evelil: elusenFields.evelil
853
+ senmat: elusenFields.senmat
854
+ syscredat: elusenFields.syscredat
855
+ sysmajdat: elusenFields.sysmajdat
856
+ temvalcod: elusenFields.temvalcod
857
+ turelucod: elusenFields.turelucod
858
+ typmancod: elusenFields.typmancod
859
+ }
860
+
861
+ export namespace eluterFields {
862
+ export type asstercod = string | null
863
+ export type eluanndeb = number | null
864
+ export type eluannfin = number | null
865
+ export type eludatcum = Date | null
866
+ export type eludatdeb = Date | null
867
+ export type eludatelu = Date | null
868
+ export type eludatfin = Date | null
869
+ export type eluid = number
870
+ export type elunbrhab = number | null
871
+ export type evelib = string | null
872
+ export type evelic = string | null
873
+ export type evelil = string | null
874
+ export type eveobs = string | null
875
+ export type senmat = string
876
+ export type syscredat = Date | null
877
+ export type sysmajdat = Date | null
878
+ export type temvalcod = string | null
879
+ export type typmancod = string | null
880
+ }
881
+
882
+ export interface eluter {
883
+ asstercod: eluterFields.asstercod
884
+ eluanndeb: eluterFields.eluanndeb
885
+ eluannfin: eluterFields.eluannfin
886
+ eludatcum: eluterFields.eludatcum
887
+ eludatdeb: eluterFields.eludatdeb
888
+ eludatelu: eluterFields.eludatelu
889
+ eludatfin: eluterFields.eludatfin
890
+ eluid: eluterFields.eluid
891
+ elunbrhab: eluterFields.elunbrhab
892
+ evelib: eluterFields.evelib
893
+ evelic: eluterFields.evelic
894
+ evelil: eluterFields.evelil
895
+ eveobs: eluterFields.eveobs
896
+ senmat: eluterFields.senmat
897
+ syscredat: eluterFields.syscredat
898
+ sysmajdat: eluterFields.sysmajdat
899
+ temvalcod: eluterFields.temvalcod
900
+ typmancod: eluterFields.typmancod
901
+ }
902
+
903
+ export namespace elutitFields {
904
+ export type eluid = number
905
+ export type evelib = string | null
906
+ export type evelic = string | null
907
+ export type evelil = string | null
908
+ export type syscredat = Date | null
909
+ export type sysmajdat = Date | null
910
+ export type temvalcod = string | null
911
+ export type titelecod = string
912
+ export type titeluanndeb = number | null
913
+ export type titeluannfin = number | null
914
+ export type titeludatdeb = Date | null
915
+ export type titeludatfin = Date | null
916
+ export type titeluhon = string | null
917
+ export type titeluid = number
918
+ }
919
+
920
+ export interface elutit {
921
+ eluid: elutitFields.eluid
922
+ evelib: elutitFields.evelib
923
+ evelic: elutitFields.evelic
924
+ evelil: elutitFields.evelil
925
+ syscredat: elutitFields.syscredat
926
+ sysmajdat: elutitFields.sysmajdat
927
+ temvalcod: elutitFields.temvalcod
928
+ titelecod: elutitFields.titelecod
929
+ titeluanndeb: elutitFields.titeluanndeb
930
+ titeluannfin: elutitFields.titeluannfin
931
+ titeludatdeb: elutitFields.titeludatdeb
932
+ titeludatfin: elutitFields.titeludatfin
933
+ titeluhon: elutitFields.titeluhon
934
+ titeluid: elutitFields.titeluid
935
+ }
936
+
937
+ export namespace eluvilFields {
938
+ export type eluanndeb = number | null
939
+ export type eluannfin = number | null
940
+ export type eludatcum = Date | null
941
+ export type eludatdeb = Date | null
942
+ export type eludatelu = Date | null
943
+ export type eludatfin = Date | null
944
+ export type eluid = number
945
+ export type elunbrhab = number | null
946
+ export type evelib = string | null
947
+ export type evelic = string | null
948
+ export type evelil = string | null
949
+ export type eveobs = string | null
950
+ export type senmat = string
951
+ export type syscredat = Date | null
952
+ export type sysmajdat = Date | null
953
+ export type temvalcod = string | null
954
+ export type typmancod = string | null
955
+ export type url = string | null
956
+ export type vilart = string | null
957
+ export type vilurlcmp = string | null
958
+ }
959
+
960
+ export interface eluvil {
961
+ eluanndeb: eluvilFields.eluanndeb
962
+ eluannfin: eluvilFields.eluannfin
963
+ eludatcum: eluvilFields.eludatcum
964
+ eludatdeb: eluvilFields.eludatdeb
965
+ eludatelu: eluvilFields.eludatelu
966
+ eludatfin: eluvilFields.eludatfin
967
+ eluid: eluvilFields.eluid
968
+ elunbrhab: eluvilFields.elunbrhab
969
+ evelib: eluvilFields.evelib
970
+ evelic: eluvilFields.evelic
971
+ evelil: eluvilFields.evelil
972
+ eveobs: eluvilFields.eveobs
973
+ senmat: eluvilFields.senmat
974
+ syscredat: eluvilFields.syscredat
975
+ sysmajdat: eluvilFields.sysmajdat
976
+ temvalcod: eluvilFields.temvalcod
977
+ typmancod: eluvilFields.typmancod
978
+ url: eluvilFields.url
979
+ vilart: eluvilFields.vilart
980
+ vilurlcmp: eluvilFields.vilurlcmp
981
+ }
982
+
983
+ export namespace etadebmanFields {
984
+ export type etadebmancod = string
985
+ export type etadebmanlib = string
986
+ export type etadebmanlibfem = string | null
987
+ export type etadebmanlibplu = string | null
988
+ export type etadebmanlic = string
989
+ export type etadebmanlicfem = string | null
990
+ export type etadebmanlicplu = string | null
991
+ export type etadebmanlil = string | null
992
+ export type etadebmanlilfem = string | null
993
+ export type etadebmanlilplu = string | null
994
+ export type etadebmannumtri = number | null
995
+ export type syscredat = Date | null
996
+ export type sysmajdat = Date | null
997
+ }
998
+
999
+ export interface etadebman {
1000
+ etadebmancod: etadebmanFields.etadebmancod
1001
+ etadebmanlib: etadebmanFields.etadebmanlib
1002
+ etadebmanlibfem: etadebmanFields.etadebmanlibfem
1003
+ etadebmanlibplu: etadebmanFields.etadebmanlibplu
1004
+ etadebmanlic: etadebmanFields.etadebmanlic
1005
+ etadebmanlicfem: etadebmanFields.etadebmanlicfem
1006
+ etadebmanlicplu: etadebmanFields.etadebmanlicplu
1007
+ etadebmanlil: etadebmanFields.etadebmanlil
1008
+ etadebmanlilfem: etadebmanFields.etadebmanlilfem
1009
+ etadebmanlilplu: etadebmanFields.etadebmanlilplu
1010
+ etadebmannumtri: etadebmanFields.etadebmannumtri
1011
+ syscredat: etadebmanFields.syscredat
1012
+ sysmajdat: etadebmanFields.sysmajdat
1013
+ }
1014
+
1015
+ export namespace etafinmanFields {
1016
+ export type etafinman = string
1017
+ export type etafinmancod = string
1018
+ export type etafinmanlibfem = string | null
1019
+ export type etafinmanlibplu = string | null
1020
+ export type etafinmanlic = string
1021
+ export type etafinmanlicfem = string | null
1022
+ export type etafinmanlicplu = string | null
1023
+ export type etafinmanlil = string | null
1024
+ export type etafinmanlilfem = string | null
1025
+ export type etafinmanlilplu = string | null
1026
+ export type etafinmannumtri = number | null
1027
+ export type syscredat = Date | null
1028
+ export type sysmajdat = Date | null
1029
+ }
1030
+
1031
+ export interface etafinman {
1032
+ etafinman: etafinmanFields.etafinman
1033
+ etafinmancod: etafinmanFields.etafinmancod
1034
+ etafinmanlibfem: etafinmanFields.etafinmanlibfem
1035
+ etafinmanlibplu: etafinmanFields.etafinmanlibplu
1036
+ etafinmanlic: etafinmanFields.etafinmanlic
1037
+ etafinmanlicfem: etafinmanFields.etafinmanlicfem
1038
+ etafinmanlicplu: etafinmanFields.etafinmanlicplu
1039
+ etafinmanlil: etafinmanFields.etafinmanlil
1040
+ etafinmanlilfem: etafinmanFields.etafinmanlilfem
1041
+ etafinmanlilplu: etafinmanFields.etafinmanlilplu
1042
+ etafinmannumtri: etafinmanFields.etafinmannumtri
1043
+ syscredat: etafinmanFields.syscredat
1044
+ sysmajdat: etafinmanFields.sysmajdat
1045
+ }
1046
+
1047
+ export namespace etasenFields {
1048
+ export type etasencod = string
1049
+ export type etasenlib = string | null
1050
+ export type etasenlibfem = string | null
1051
+ export type etasenlibplu = string | null
1052
+ export type etasenlic = string
1053
+ export type etasenlicfem = string | null
1054
+ export type etasenlicplu = string | null
1055
+ export type etasenlil = string | null
1056
+ export type etasenlilfem = string | null
1057
+ export type etasenlilplu = string | null
1058
+ export type etasennumtri = number | null
1059
+ export type syscredat = Date | null
1060
+ export type sysmajdat = Date | null
1061
+ }
1062
+
1063
+ export interface etasen {
1064
+ etasencod: etasenFields.etasencod
1065
+ etasenlib: etasenFields.etasenlib
1066
+ etasenlibfem: etasenFields.etasenlibfem
1067
+ etasenlibplu: etasenFields.etasenlibplu
1068
+ etasenlic: etasenFields.etasenlic
1069
+ etasenlicfem: etasenFields.etasenlicfem
1070
+ etasenlicplu: etasenFields.etasenlicplu
1071
+ etasenlil: etasenFields.etasenlil
1072
+ etasenlilfem: etasenFields.etasenlilfem
1073
+ etasenlilplu: etasenFields.etasenlilplu
1074
+ etasennumtri: etasenFields.etasennumtri
1075
+ syscredat: etasenFields.syscredat
1076
+ sysmajdat: etasenFields.sysmajdat
1077
+ }
1078
+
1079
+ export namespace fonact_participantFields {
1080
+ export type fapcod = string
1081
+ export type faplib = string
1082
+ export type faplibfem = string
1083
+ export type faplibfemplu = string
1084
+ export type faplibplu = string
1085
+ export type faplic = string
1086
+ export type faplicfem = string
1087
+ export type faplicfemplu = string
1088
+ export type faplicplu = string
1089
+ }
1090
+
1091
+ export interface fonact_participant {
1092
+ fapcod: fonact_participantFields.fapcod
1093
+ faplib: fonact_participantFields.faplib
1094
+ faplibfem: fonact_participantFields.faplibfem
1095
+ faplibfemplu: fonact_participantFields.faplibfemplu
1096
+ faplibplu: fonact_participantFields.faplibplu
1097
+ faplic: fonact_participantFields.faplic
1098
+ faplicfem: fonact_participantFields.faplicfem
1099
+ faplicfemplu: fonact_participantFields.faplicfemplu
1100
+ faplicplu: fonact_participantFields.faplicplu
1101
+ }
1102
+
1103
+ export namespace foncomFields {
1104
+ export type foncomcod = string
1105
+ export type foncomlib = string
1106
+ export type foncomlibfem = string | null
1107
+ export type foncomlibfemplu = string | null
1108
+ export type foncomlibplu = string | null
1109
+ export type foncomlic = string
1110
+ export type foncomlicfem = string | null
1111
+ export type foncomlicfemplu = string | null
1112
+ export type foncomlicplu = string | null
1113
+ export type foncomlil = string | null
1114
+ export type foncomlilfem = string | null
1115
+ export type foncomlilfemplu = string | null
1116
+ export type foncomlilplu = string | null
1117
+ export type foncomnumtri = number | null
1118
+ export type syscredat = Date | null
1119
+ export type sysmajdat = Date | null
1120
+ }
1121
+
1122
+ export interface foncom {
1123
+ foncomcod: foncomFields.foncomcod
1124
+ foncomlib: foncomFields.foncomlib
1125
+ foncomlibfem: foncomFields.foncomlibfem
1126
+ foncomlibfemplu: foncomFields.foncomlibfemplu
1127
+ foncomlibplu: foncomFields.foncomlibplu
1128
+ foncomlic: foncomFields.foncomlic
1129
+ foncomlicfem: foncomFields.foncomlicfem
1130
+ foncomlicfemplu: foncomFields.foncomlicfemplu
1131
+ foncomlicplu: foncomFields.foncomlicplu
1132
+ foncomlil: foncomFields.foncomlil
1133
+ foncomlilfem: foncomFields.foncomlilfem
1134
+ foncomlilfemplu: foncomFields.foncomlilfemplu
1135
+ foncomlilplu: foncomFields.foncomlilplu
1136
+ foncomnumtri: foncomFields.foncomnumtri
1137
+ syscredat: foncomFields.syscredat
1138
+ sysmajdat: foncomFields.sysmajdat
1139
+ }
1140
+
1141
+ export namespace fondelegaFields {
1142
+ export type fondelcod = string
1143
+ export type fondellib = string
1144
+ export type fondellibfem = string | null
1145
+ export type fondellibfemplu = string | null
1146
+ export type fondellibplu = string | null
1147
+ export type fondellic = string
1148
+ export type fondellicfem = string | null
1149
+ export type fondellicfemplu = string | null
1150
+ export type fondellicplu = string | null
1151
+ export type fondellil = string | null
1152
+ export type fondellilfem = string | null
1153
+ export type fondellilfemplu = string | null
1154
+ export type fondellilplu = string | null
1155
+ export type fondelnumtri = number | null
1156
+ export type syscredat = Date | null
1157
+ export type sysmajdat = Date | null
1158
+ }
1159
+
1160
+ export interface fondelega {
1161
+ fondelcod: fondelegaFields.fondelcod
1162
+ fondellib: fondelegaFields.fondellib
1163
+ fondellibfem: fondelegaFields.fondellibfem
1164
+ fondellibfemplu: fondelegaFields.fondellibfemplu
1165
+ fondellibplu: fondelegaFields.fondellibplu
1166
+ fondellic: fondelegaFields.fondellic
1167
+ fondellicfem: fondelegaFields.fondellicfem
1168
+ fondellicfemplu: fondelegaFields.fondellicfemplu
1169
+ fondellicplu: fondelegaFields.fondellicplu
1170
+ fondellil: fondelegaFields.fondellil
1171
+ fondellilfem: fondelegaFields.fondellilfem
1172
+ fondellilfemplu: fondelegaFields.fondellilfemplu
1173
+ fondellilplu: fondelegaFields.fondellilplu
1174
+ fondelnumtri: fondelegaFields.fondelnumtri
1175
+ syscredat: fondelegaFields.syscredat
1176
+ sysmajdat: fondelegaFields.sysmajdat
1177
+ }
1178
+
1179
+ export namespace fongrppolFields {
1180
+ export type fongrppolcod = string
1181
+ export type fongrppollib = string
1182
+ export type fongrppollibfem = string | null
1183
+ export type fongrppollibfemplu = string | null
1184
+ export type fongrppollibplu = string | null
1185
+ export type fongrppollic = string
1186
+ export type fongrppollicfem = string | null
1187
+ export type fongrppollicfemplu = string | null
1188
+ export type fongrppollicplu = string | null
1189
+ export type fongrppollil = string | null
1190
+ export type fongrppollilfem = string | null
1191
+ export type fongrppollilfemplu = string | null
1192
+ export type fongrppollilplu = string | null
1193
+ export type fongrppolnumtri = number | null
1194
+ export type syscredat = Date | null
1195
+ export type sysmajdat = Date | null
1196
+ }
1197
+
1198
+ export interface fongrppol {
1199
+ fongrppolcod: fongrppolFields.fongrppolcod
1200
+ fongrppollib: fongrppolFields.fongrppollib
1201
+ fongrppollibfem: fongrppolFields.fongrppollibfem
1202
+ fongrppollibfemplu: fongrppolFields.fongrppollibfemplu
1203
+ fongrppollibplu: fongrppolFields.fongrppollibplu
1204
+ fongrppollic: fongrppolFields.fongrppollic
1205
+ fongrppollicfem: fongrppolFields.fongrppollicfem
1206
+ fongrppollicfemplu: fongrppolFields.fongrppollicfemplu
1207
+ fongrppollicplu: fongrppolFields.fongrppollicplu
1208
+ fongrppollil: fongrppolFields.fongrppollil
1209
+ fongrppollilfem: fongrppolFields.fongrppollilfem
1210
+ fongrppollilfemplu: fongrppolFields.fongrppollilfemplu
1211
+ fongrppollilplu: fongrppolFields.fongrppollilplu
1212
+ fongrppolnumtri: fongrppolFields.fongrppolnumtri
1213
+ syscredat: fongrppolFields.syscredat
1214
+ sysmajdat: fongrppolFields.sysmajdat
1215
+ }
1216
+
1217
+ export namespace fongrpsenFields {
1218
+ export type fongrpsencod = string
1219
+ export type fongrpsenlib = string
1220
+ export type fongrpsenlibfem = string | null
1221
+ export type fongrpsenlibfemplu = string | null
1222
+ export type fongrpsenlibplu = string | null
1223
+ export type fongrpsenlic = string
1224
+ export type fongrpsenlicfem = string | null
1225
+ export type fongrpsenlicfemplu = string | null
1226
+ export type fongrpsenlicplu = string | null
1227
+ export type fongrpsenlil = string | null
1228
+ export type fongrpsenlilfem = string | null
1229
+ export type fongrpsenlilfemplu = string | null
1230
+ export type fongrpsenlilplu = string | null
1231
+ export type fongrpsennumtri = number | null
1232
+ export type syscredat = Date | null
1233
+ export type sysmajdat = Date | null
1234
+ }
1235
+
1236
+ export interface fongrpsen {
1237
+ fongrpsencod: fongrpsenFields.fongrpsencod
1238
+ fongrpsenlib: fongrpsenFields.fongrpsenlib
1239
+ fongrpsenlibfem: fongrpsenFields.fongrpsenlibfem
1240
+ fongrpsenlibfemplu: fongrpsenFields.fongrpsenlibfemplu
1241
+ fongrpsenlibplu: fongrpsenFields.fongrpsenlibplu
1242
+ fongrpsenlic: fongrpsenFields.fongrpsenlic
1243
+ fongrpsenlicfem: fongrpsenFields.fongrpsenlicfem
1244
+ fongrpsenlicfemplu: fongrpsenFields.fongrpsenlicfemplu
1245
+ fongrpsenlicplu: fongrpsenFields.fongrpsenlicplu
1246
+ fongrpsenlil: fongrpsenFields.fongrpsenlil
1247
+ fongrpsenlilfem: fongrpsenFields.fongrpsenlilfem
1248
+ fongrpsenlilfemplu: fongrpsenFields.fongrpsenlilfemplu
1249
+ fongrpsenlilplu: fongrpsenFields.fongrpsenlilplu
1250
+ fongrpsennumtri: fongrpsenFields.fongrpsennumtri
1251
+ syscredat: fongrpsenFields.syscredat
1252
+ sysmajdat: fongrpsenFields.sysmajdat
1253
+ }
1254
+
1255
+ export namespace fonmemcomFields {
1256
+ export type evelib = string | null
1257
+ export type evelic = string | null
1258
+ export type evelil = string | null
1259
+ export type eveobs = string | null
1260
+ export type foncomcod = string
1261
+ export type fonmemcomdatdeb = Date | null
1262
+ export type fonmemcomdatfin = Date | null
1263
+ export type fonmemcomid = number
1264
+ export type fonmemcomrngprt = number | null
1265
+ export type memcomid = number
1266
+ export type syscredat = Date | null
1267
+ export type sysmajdat = Date | null
1268
+ export type temvalcod = string | null
1269
+ }
1270
+
1271
+ export interface fonmemcom {
1272
+ evelib: fonmemcomFields.evelib
1273
+ evelic: fonmemcomFields.evelic
1274
+ evelil: fonmemcomFields.evelil
1275
+ eveobs: fonmemcomFields.eveobs
1276
+ foncomcod: fonmemcomFields.foncomcod
1277
+ fonmemcomdatdeb: fonmemcomFields.fonmemcomdatdeb
1278
+ fonmemcomdatfin: fonmemcomFields.fonmemcomdatfin
1279
+ fonmemcomid: fonmemcomFields.fonmemcomid
1280
+ fonmemcomrngprt: fonmemcomFields.fonmemcomrngprt
1281
+ memcomid: fonmemcomFields.memcomid
1282
+ syscredat: fonmemcomFields.syscredat
1283
+ sysmajdat: fonmemcomFields.sysmajdat
1284
+ temvalcod: fonmemcomFields.temvalcod
1285
+ }
1286
+
1287
+ export namespace fonmemdelegaFields {
1288
+ export type evelib = string | null
1289
+ export type evelic = string | null
1290
+ export type evelil = string | null
1291
+ export type eveobs = string | null
1292
+ export type fondelcod = string
1293
+ export type fonmemdeldatdeb = Date | null
1294
+ export type fonmemdeldatfin = Date | null
1295
+ export type fonmemdelid = number
1296
+ export type fonmemdelrngele = number | null
1297
+ export type memdelegaid = number
1298
+ export type syscredat = Date | null
1299
+ export type sysmajdat = Date | null
1300
+ export type temvalcod = string | null
1301
+ }
1302
+
1303
+ export interface fonmemdelega {
1304
+ evelib: fonmemdelegaFields.evelib
1305
+ evelic: fonmemdelegaFields.evelic
1306
+ evelil: fonmemdelegaFields.evelil
1307
+ eveobs: fonmemdelegaFields.eveobs
1308
+ fondelcod: fonmemdelegaFields.fondelcod
1309
+ fonmemdeldatdeb: fonmemdelegaFields.fonmemdeldatdeb
1310
+ fonmemdeldatfin: fonmemdelegaFields.fonmemdeldatfin
1311
+ fonmemdelid: fonmemdelegaFields.fonmemdelid
1312
+ fonmemdelrngele: fonmemdelegaFields.fonmemdelrngele
1313
+ memdelegaid: fonmemdelegaFields.memdelegaid
1314
+ syscredat: fonmemdelegaFields.syscredat
1315
+ sysmajdat: fonmemdelegaFields.sysmajdat
1316
+ temvalcod: fonmemdelegaFields.temvalcod
1317
+ }
1318
+
1319
+ export namespace fonmemgrppolFields {
1320
+ export type evelib = string | null
1321
+ export type evelic = string | null
1322
+ export type evelil = string | null
1323
+ export type eveobs = string | null
1324
+ export type fongrppolcod = string
1325
+ export type fonmemgrppoldatdeb = Date | null
1326
+ export type fonmemgrppoldatfin = Date | null
1327
+ export type fonmemgrppolid = number
1328
+ export type memgrppolid = number
1329
+ export type syscredat = Date | null
1330
+ export type sysmajdat = Date | null
1331
+ export type temvalcod = string | null
1332
+ }
1333
+
1334
+ export interface fonmemgrppol {
1335
+ evelib: fonmemgrppolFields.evelib
1336
+ evelic: fonmemgrppolFields.evelic
1337
+ evelil: fonmemgrppolFields.evelil
1338
+ eveobs: fonmemgrppolFields.eveobs
1339
+ fongrppolcod: fonmemgrppolFields.fongrppolcod
1340
+ fonmemgrppoldatdeb: fonmemgrppolFields.fonmemgrppoldatdeb
1341
+ fonmemgrppoldatfin: fonmemgrppolFields.fonmemgrppoldatfin
1342
+ fonmemgrppolid: fonmemgrppolFields.fonmemgrppolid
1343
+ memgrppolid: fonmemgrppolFields.memgrppolid
1344
+ syscredat: fonmemgrppolFields.syscredat
1345
+ sysmajdat: fonmemgrppolFields.sysmajdat
1346
+ temvalcod: fonmemgrppolFields.temvalcod
1347
+ }
1348
+
1349
+ export namespace fonmemgrpsenFields {
1350
+ export type evelib = string | null
1351
+ export type evelic = string | null
1352
+ export type evelil = string | null
1353
+ export type eveobs = string | null
1354
+ export type fongrpsencod = string
1355
+ export type fonmemgrpsendatdeb = Date
1356
+ export type fonmemgrpsendatfin = Date | null
1357
+ export type fonmemgrpsenid = number
1358
+ export type fonmemgrpsenrngele = number | null
1359
+ export type memgrpsenid = number
1360
+ export type syscredat = Date | null
1361
+ export type sysmajdat = Date | null
1362
+ export type temvalcod = string | null
1363
+ }
1364
+
1365
+ export interface fonmemgrpsen {
1366
+ evelib: fonmemgrpsenFields.evelib
1367
+ evelic: fonmemgrpsenFields.evelic
1368
+ evelil: fonmemgrpsenFields.evelil
1369
+ eveobs: fonmemgrpsenFields.eveobs
1370
+ fongrpsencod: fonmemgrpsenFields.fongrpsencod
1371
+ fonmemgrpsendatdeb: fonmemgrpsenFields.fonmemgrpsendatdeb
1372
+ fonmemgrpsendatfin: fonmemgrpsenFields.fonmemgrpsendatfin
1373
+ fonmemgrpsenid: fonmemgrpsenFields.fonmemgrpsenid
1374
+ fonmemgrpsenrngele: fonmemgrpsenFields.fonmemgrpsenrngele
1375
+ memgrpsenid: fonmemgrpsenFields.memgrpsenid
1376
+ syscredat: fonmemgrpsenFields.syscredat
1377
+ sysmajdat: fonmemgrpsenFields.sysmajdat
1378
+ temvalcod: fonmemgrpsenFields.temvalcod
1379
+ }
1380
+
1381
+ export namespace fonmemorgFields {
1382
+ export type evelib = string | null
1383
+ export type evelic = string | null
1384
+ export type evelil = string | null
1385
+ export type eveobs = string | null
1386
+ export type fonmemorganndeb = number | null
1387
+ export type fonmemorgannfin = number | null
1388
+ export type fonmemorgdatdeb = Date | null
1389
+ export type fonmemorgdatfin = Date | null
1390
+ export type fonmemorgid = number
1391
+ export type fonmemorgrngele = number | null
1392
+ export type fonorgcod = string
1393
+ export type memorgid = number
1394
+ export type syscredat = Date | null
1395
+ export type sysmajdat = Date | null
1396
+ export type temvalcod = string | null
1397
+ }
1398
+
1399
+ export interface fonmemorg {
1400
+ evelib: fonmemorgFields.evelib
1401
+ evelic: fonmemorgFields.evelic
1402
+ evelil: fonmemorgFields.evelil
1403
+ eveobs: fonmemorgFields.eveobs
1404
+ fonmemorganndeb: fonmemorgFields.fonmemorganndeb
1405
+ fonmemorgannfin: fonmemorgFields.fonmemorgannfin
1406
+ fonmemorgdatdeb: fonmemorgFields.fonmemorgdatdeb
1407
+ fonmemorgdatfin: fonmemorgFields.fonmemorgdatfin
1408
+ fonmemorgid: fonmemorgFields.fonmemorgid
1409
+ fonmemorgrngele: fonmemorgFields.fonmemorgrngele
1410
+ fonorgcod: fonmemorgFields.fonorgcod
1411
+ memorgid: fonmemorgFields.memorgid
1412
+ syscredat: fonmemorgFields.syscredat
1413
+ sysmajdat: fonmemorgFields.sysmajdat
1414
+ temvalcod: fonmemorgFields.temvalcod
1415
+ }
1416
+
1417
+ export namespace fonorgFields {
1418
+ export type fonorgcod = string
1419
+ export type fonorglib = string | null
1420
+ export type fonorglibfem = string | null
1421
+ export type fonorglibfemplu = string | null
1422
+ export type fonorglibplu = string | null
1423
+ export type fonorglic = string | null
1424
+ export type fonorglicfem = string | null
1425
+ export type fonorglicfemplu = string | null
1426
+ export type fonorglicplu = string | null
1427
+ export type fonorglil = string | null
1428
+ export type fonorglilfem = string | null
1429
+ export type fonorglilfemplu = string | null
1430
+ export type fonorglilplu = string | null
1431
+ export type fonorgnumtri = number | null
1432
+ export type syscredat = Date | null
1433
+ export type sysmajdat = Date | null
1434
+ }
1435
+
1436
+ export interface fonorg {
1437
+ fonorgcod: fonorgFields.fonorgcod
1438
+ fonorglib: fonorgFields.fonorglib
1439
+ fonorglibfem: fonorgFields.fonorglibfem
1440
+ fonorglibfemplu: fonorgFields.fonorglibfemplu
1441
+ fonorglibplu: fonorgFields.fonorglibplu
1442
+ fonorglic: fonorgFields.fonorglic
1443
+ fonorglicfem: fonorgFields.fonorglicfem
1444
+ fonorglicfemplu: fonorgFields.fonorglicfemplu
1445
+ fonorglicplu: fonorgFields.fonorglicplu
1446
+ fonorglil: fonorgFields.fonorglil
1447
+ fonorglilfem: fonorgFields.fonorglilfem
1448
+ fonorglilfemplu: fonorgFields.fonorglilfemplu
1449
+ fonorglilplu: fonorgFields.fonorglilplu
1450
+ fonorgnumtri: fonorgFields.fonorgnumtri
1451
+ syscredat: fonorgFields.syscredat
1452
+ sysmajdat: fonorgFields.sysmajdat
1453
+ }
1454
+
1455
+ export namespace grppolFields {
1456
+ export type evelib = string | null
1457
+ export type evelic = string | null
1458
+ export type evelil = string | null
1459
+ export type grppolart = string | null
1460
+ export type grppolcod = string
1461
+ export type grppolcodamelicou = string | null
1462
+ export type grppoldatcre = Date | null
1463
+ export type grppoldatfin = Date | null
1464
+ export type grppollibcou = string | null
1465
+ export type grppolliccou = string | null
1466
+ export type grppollilcou = string | null
1467
+ export type grppolpre = string | null
1468
+ export type grppolurlcmp = string | null
1469
+ export type grppolurlsim = string | null
1470
+ export type syscredat = Date | null
1471
+ export type sysmajdat = Date | null
1472
+ export type temvalcod = string | null
1473
+ export type typorgcod = string
1474
+ }
1475
+
1476
+ export interface grppol {
1477
+ evelib: grppolFields.evelib
1478
+ evelic: grppolFields.evelic
1479
+ evelil: grppolFields.evelil
1480
+ grppolart: grppolFields.grppolart
1481
+ grppolcod: grppolFields.grppolcod
1482
+ grppolcodamelicou: grppolFields.grppolcodamelicou
1483
+ grppoldatcre: grppolFields.grppoldatcre
1484
+ grppoldatfin: grppolFields.grppoldatfin
1485
+ grppollibcou: grppolFields.grppollibcou
1486
+ grppolliccou: grppolFields.grppolliccou
1487
+ grppollilcou: grppolFields.grppollilcou
1488
+ grppolpre: grppolFields.grppolpre
1489
+ grppolurlcmp: grppolFields.grppolurlcmp
1490
+ grppolurlsim: grppolFields.grppolurlsim
1491
+ syscredat: grppolFields.syscredat
1492
+ sysmajdat: grppolFields.sysmajdat
1493
+ temvalcod: grppolFields.temvalcod
1494
+ typorgcod: grppolFields.typorgcod
1495
+ }
1496
+
1497
+ export namespace grpsenamiFields {
1498
+ export type comorgcod = string
1499
+ export type evelib = string | null
1500
+ export type evelic = string | null
1501
+ export type evelil = string | null
1502
+ export type grpsenalf = string | null
1503
+ export type grpsenweb = string | null
1504
+ export type orgart = string | null
1505
+ export type orgcod = string
1506
+ export type orgdatcre = Date
1507
+ export type orgdatfin = Date | null
1508
+ export type orgnumtri = number | null
1509
+ export type orgtemannu = string | null
1510
+ export type orgurlcmp = string | null
1511
+ export type orgurlsim = string | null
1512
+ export type plaindcod = string
1513
+ export type scnorgcod = string | null
1514
+ export type syscredat = Date | null
1515
+ export type sysmajdat = Date | null
1516
+ export type temvalcod = string | null
1517
+ export type type_com_neant = string | null
1518
+ export type typgrpsencod = string
1519
+ export type typorgcod = string
1520
+ }
1521
+
1522
+ export interface grpsenami {
1523
+ comorgcod: grpsenamiFields.comorgcod
1524
+ evelib: grpsenamiFields.evelib
1525
+ evelic: grpsenamiFields.evelic
1526
+ evelil: grpsenamiFields.evelil
1527
+ grpsenalf: grpsenamiFields.grpsenalf
1528
+ grpsenweb: grpsenamiFields.grpsenweb
1529
+ orgart: grpsenamiFields.orgart
1530
+ orgcod: grpsenamiFields.orgcod
1531
+ orgdatcre: grpsenamiFields.orgdatcre
1532
+ orgdatfin: grpsenamiFields.orgdatfin
1533
+ orgnumtri: grpsenamiFields.orgnumtri
1534
+ orgtemannu: grpsenamiFields.orgtemannu
1535
+ orgurlcmp: grpsenamiFields.orgurlcmp
1536
+ orgurlsim: grpsenamiFields.orgurlsim
1537
+ plaindcod: grpsenamiFields.plaindcod
1538
+ scnorgcod: grpsenamiFields.scnorgcod
1539
+ syscredat: grpsenamiFields.syscredat
1540
+ sysmajdat: grpsenamiFields.sysmajdat
1541
+ temvalcod: grpsenamiFields.temvalcod
1542
+ type_com_neant: grpsenamiFields.type_com_neant
1543
+ typgrpsencod: grpsenamiFields.typgrpsencod
1544
+ typorgcod: grpsenamiFields.typorgcod
1545
+ }
1546
+
1547
+ export namespace libcomFields {
1548
+ export type evelib = string | null
1549
+ export type evelic = string | null
1550
+ export type evelil = string | null
1551
+ export type libcomart = string | null
1552
+ export type libcomdatdeb = Date
1553
+ export type libcomdatfin = Date | null
1554
+ export type libcomid = number
1555
+ export type libcomlibameli = string | null
1556
+ export type libcomlilmin = string | null
1557
+ export type orgcod = string
1558
+ export type syscredat = Date | null
1559
+ export type sysmajdat = Date | null
1560
+ export type temvalcod = string | null
1561
+ }
1562
+
1563
+ export interface libcom {
1564
+ evelib: libcomFields.evelib
1565
+ evelic: libcomFields.evelic
1566
+ evelil: libcomFields.evelil
1567
+ libcomart: libcomFields.libcomart
1568
+ libcomdatdeb: libcomFields.libcomdatdeb
1569
+ libcomdatfin: libcomFields.libcomdatfin
1570
+ libcomid: libcomFields.libcomid
1571
+ libcomlibameli: libcomFields.libcomlibameli
1572
+ libcomlilmin: libcomFields.libcomlilmin
1573
+ orgcod: libcomFields.orgcod
1574
+ syscredat: libcomFields.syscredat
1575
+ sysmajdat: libcomFields.sysmajdat
1576
+ temvalcod: libcomFields.temvalcod
1577
+ }
1578
+
1579
+ export namespace libdelegaFields {
1580
+ export type evelib = string | null
1581
+ export type evelic = string | null
1582
+ export type evelil = string | null
1583
+ export type eveobs = string | null
1584
+ export type libdelegaart = string | null
1585
+ export type libdelegadatdeb = Date
1586
+ export type libdelegadatfin = Date | null
1587
+ export type libdelegaid = number
1588
+ export type orgcod = string
1589
+ export type syscredat = Date | null
1590
+ export type sysmajdat = Date | null
1591
+ export type temvalcod = string | null
1592
+ }
1593
+
1594
+ export interface libdelega {
1595
+ evelib: libdelegaFields.evelib
1596
+ evelic: libdelegaFields.evelic
1597
+ evelil: libdelegaFields.evelil
1598
+ eveobs: libdelegaFields.eveobs
1599
+ libdelegaart: libdelegaFields.libdelegaart
1600
+ libdelegadatdeb: libdelegaFields.libdelegadatdeb
1601
+ libdelegadatfin: libdelegaFields.libdelegadatfin
1602
+ libdelegaid: libdelegaFields.libdelegaid
1603
+ orgcod: libdelegaFields.orgcod
1604
+ syscredat: libdelegaFields.syscredat
1605
+ sysmajdat: libdelegaFields.sysmajdat
1606
+ temvalcod: libdelegaFields.temvalcod
1607
+ }
1608
+
1609
+ export namespace libgrppolFields {
1610
+ export type evelib = string | null
1611
+ export type evelic = string | null
1612
+ export type evelil = string | null
1613
+ export type eveobs = string | null
1614
+ export type grppolcod = string
1615
+ export type libgrppolart = string | null
1616
+ export type libgrppolcodameli = string | null
1617
+ export type libgrppoldatdeb = Date
1618
+ export type libgrppoldatfin = Date | null
1619
+ export type libgrppolid = number
1620
+ export type syscredat = Date | null
1621
+ export type sysmajdat = Date | null
1622
+ export type temvalcod = string | null
1623
+ }
1624
+
1625
+ export interface libgrppol {
1626
+ evelib: libgrppolFields.evelib
1627
+ evelic: libgrppolFields.evelic
1628
+ evelil: libgrppolFields.evelil
1629
+ eveobs: libgrppolFields.eveobs
1630
+ grppolcod: libgrppolFields.grppolcod
1631
+ libgrppolart: libgrppolFields.libgrppolart
1632
+ libgrppolcodameli: libgrppolFields.libgrppolcodameli
1633
+ libgrppoldatdeb: libgrppolFields.libgrppoldatdeb
1634
+ libgrppoldatfin: libgrppolFields.libgrppoldatfin
1635
+ libgrppolid: libgrppolFields.libgrppolid
1636
+ syscredat: libgrppolFields.syscredat
1637
+ sysmajdat: libgrppolFields.sysmajdat
1638
+ temvalcod: libgrppolFields.temvalcod
1639
+ }
1640
+
1641
+ export namespace libgrpsenFields {
1642
+ export type libgrpsenart = string | null
1643
+ export type libgrpsendatautbur = Date
1644
+ export type libgrpsendatfin = Date | null
1645
+ export type libgrpsenid = number
1646
+ export type libgrpsenlib = string
1647
+ export type libgrpsenlic = string
1648
+ export type libgrpsenlil = string | null
1649
+ export type orgcod = string
1650
+ export type syscredat = Date | null
1651
+ export type sysmajdat = Date | null
1652
+ }
1653
+
1654
+ export interface libgrpsen {
1655
+ libgrpsenart: libgrpsenFields.libgrpsenart
1656
+ libgrpsendatautbur: libgrpsenFields.libgrpsendatautbur
1657
+ libgrpsendatfin: libgrpsenFields.libgrpsendatfin
1658
+ libgrpsenid: libgrpsenFields.libgrpsenid
1659
+ libgrpsenlib: libgrpsenFields.libgrpsenlib
1660
+ libgrpsenlic: libgrpsenFields.libgrpsenlic
1661
+ libgrpsenlil: libgrpsenFields.libgrpsenlil
1662
+ orgcod: libgrpsenFields.orgcod
1663
+ syscredat: libgrpsenFields.syscredat
1664
+ sysmajdat: libgrpsenFields.sysmajdat
1665
+ }
1666
+
1667
+ export namespace liborgFields {
1668
+ export type evelib = string | null
1669
+ export type evelic = string | null
1670
+ export type evelil = string | null
1671
+ export type eveobs = string | null
1672
+ export type liborgart = string | null
1673
+ export type liborgdatdeb = Date
1674
+ export type liborgdatfin = Date | null
1675
+ export type liborgid = number
1676
+ export type orgcod = string
1677
+ export type syscredat = Date | null
1678
+ export type sysmajdat = Date | null
1679
+ export type temvalcod = string | null
1680
+ }
1681
+
1682
+ export interface liborg {
1683
+ evelib: liborgFields.evelib
1684
+ evelic: liborgFields.evelic
1685
+ evelil: liborgFields.evelil
1686
+ eveobs: liborgFields.eveobs
1687
+ liborgart: liborgFields.liborgart
1688
+ liborgdatdeb: liborgFields.liborgdatdeb
1689
+ liborgdatfin: liborgFields.liborgdatfin
1690
+ liborgid: liborgFields.liborgid
1691
+ orgcod: liborgFields.orgcod
1692
+ syscredat: liborgFields.syscredat
1693
+ sysmajdat: liborgFields.sysmajdat
1694
+ temvalcod: liborgFields.temvalcod
1695
+ }
1696
+
1697
+ export namespace melFields {
1698
+ export type melema = string | null
1699
+ export type melid = number
1700
+ export type melnumtri = number | null
1701
+ export type poiconid = number
1702
+ export type syscredat = Date | null
1703
+ export type sysmajdat = Date | null
1704
+ }
1705
+
1706
+ export interface mel {
1707
+ melema: melFields.melema
1708
+ melid: melFields.melid
1709
+ melnumtri: melFields.melnumtri
1710
+ poiconid: melFields.poiconid
1711
+ syscredat: melFields.syscredat
1712
+ sysmajdat: melFields.sysmajdat
1713
+ }
1714
+
1715
+ export namespace memcomFields {
1716
+ export type evelib = string | null
1717
+ export type evelic = string | null
1718
+ export type evelil = string | null
1719
+ export type eveobs = string | null
1720
+ export type memcomdatdeb = Date | null
1721
+ export type memcomdatfin = Date | null
1722
+ export type memcomid = number
1723
+ export type memcomtitsup = string | null
1724
+ export type orgcod = string
1725
+ export type senmat = string
1726
+ export type syscredat = Date | null
1727
+ export type sysmajdat = Date | null
1728
+ export type temvalcod = string | null
1729
+ }
1730
+
1731
+ export interface memcom {
1732
+ evelib: memcomFields.evelib
1733
+ evelic: memcomFields.evelic
1734
+ evelil: memcomFields.evelil
1735
+ eveobs: memcomFields.eveobs
1736
+ memcomdatdeb: memcomFields.memcomdatdeb
1737
+ memcomdatfin: memcomFields.memcomdatfin
1738
+ memcomid: memcomFields.memcomid
1739
+ memcomtitsup: memcomFields.memcomtitsup
1740
+ orgcod: memcomFields.orgcod
1741
+ senmat: memcomFields.senmat
1742
+ syscredat: memcomFields.syscredat
1743
+ sysmajdat: memcomFields.sysmajdat
1744
+ temvalcod: memcomFields.temvalcod
1745
+ }
1746
+
1747
+ export namespace memdelegaFields {
1748
+ export type designcod = string
1749
+ export type evelib = string | null
1750
+ export type evelic = string | null
1751
+ export type evelil = string | null
1752
+ export type eveobs = string | null
1753
+ export type memdelegadatdeb = Date | null
1754
+ export type memdelegadatfin = Date | null
1755
+ export type memdelegaid = number
1756
+ export type orgcod = string
1757
+ export type senmat = string
1758
+ export type syscredat = Date | null
1759
+ export type sysmajdat = Date | null
1760
+ export type temvalcod = string | null
1761
+ }
1762
+
1763
+ export interface memdelega {
1764
+ designcod: memdelegaFields.designcod
1765
+ evelib: memdelegaFields.evelib
1766
+ evelic: memdelegaFields.evelic
1767
+ evelil: memdelegaFields.evelil
1768
+ eveobs: memdelegaFields.eveobs
1769
+ memdelegadatdeb: memdelegaFields.memdelegadatdeb
1770
+ memdelegadatfin: memdelegaFields.memdelegadatfin
1771
+ memdelegaid: memdelegaFields.memdelegaid
1772
+ orgcod: memdelegaFields.orgcod
1773
+ senmat: memdelegaFields.senmat
1774
+ syscredat: memdelegaFields.syscredat
1775
+ sysmajdat: memdelegaFields.sysmajdat
1776
+ temvalcod: memdelegaFields.temvalcod
1777
+ }
1778
+
1779
+ export namespace memextparFields {
1780
+ export type avis_an = string
1781
+ export type avis_global = string
1782
+ export type avis_senat = string
1783
+ export type date_annonce_seance = Date | null
1784
+ export type date_audition_senat = Date | null
1785
+ export type date_avis_an = Date | null
1786
+ export type date_avis_global = Date | null
1787
+ export type date_avis_senat = Date | null
1788
+ export type date_publication_jo = Date | null
1789
+ export type date_reponse_exec = Date | null
1790
+ export type date_saisine_exec = Date | null
1791
+ export type designcod = string
1792
+ export type evelib = string | null
1793
+ export type evelic = string | null
1794
+ export type evelil = string | null
1795
+ export type eveobs = string | null
1796
+ export type fonmemextparcod = string | null
1797
+ export type memextpardatdeb = Date | null
1798
+ export type memextpardatfin = Date | null
1799
+ export type memextparid = number
1800
+ export type memextparrngele = number | null
1801
+ export type memextpartitsup = string | null
1802
+ export type orgcod = string | null
1803
+ export type senmat = string
1804
+ export type syscredat = Date | null
1805
+ export type sysmajdat = Date | null
1806
+ export type temvalcod = string | null
1807
+ export type texte_avis_an = string | null
1808
+ export type texte_avis_global = string | null
1809
+ export type texte_avis_senat = string | null
1810
+ }
1811
+
1812
+ export interface memextpar {
1813
+ avis_an: memextparFields.avis_an
1814
+ avis_global: memextparFields.avis_global
1815
+ avis_senat: memextparFields.avis_senat
1816
+ date_annonce_seance: memextparFields.date_annonce_seance
1817
+ date_audition_senat: memextparFields.date_audition_senat
1818
+ date_avis_an: memextparFields.date_avis_an
1819
+ date_avis_global: memextparFields.date_avis_global
1820
+ date_avis_senat: memextparFields.date_avis_senat
1821
+ date_publication_jo: memextparFields.date_publication_jo
1822
+ date_reponse_exec: memextparFields.date_reponse_exec
1823
+ date_saisine_exec: memextparFields.date_saisine_exec
1824
+ designcod: memextparFields.designcod
1825
+ evelib: memextparFields.evelib
1826
+ evelic: memextparFields.evelic
1827
+ evelil: memextparFields.evelil
1828
+ eveobs: memextparFields.eveobs
1829
+ fonmemextparcod: memextparFields.fonmemextparcod
1830
+ memextpardatdeb: memextparFields.memextpardatdeb
1831
+ memextpardatfin: memextparFields.memextpardatfin
1832
+ memextparid: memextparFields.memextparid
1833
+ memextparrngele: memextparFields.memextparrngele
1834
+ memextpartitsup: memextparFields.memextpartitsup
1835
+ orgcod: memextparFields.orgcod
1836
+ senmat: memextparFields.senmat
1837
+ syscredat: memextparFields.syscredat
1838
+ sysmajdat: memextparFields.sysmajdat
1839
+ temvalcod: memextparFields.temvalcod
1840
+ texte_avis_an: memextparFields.texte_avis_an
1841
+ texte_avis_global: memextparFields.texte_avis_global
1842
+ texte_avis_senat: memextparFields.texte_avis_senat
1843
+ }
1844
+
1845
+ export namespace memgrppolFields {
1846
+ export type evelib = string | null
1847
+ export type evelic = string | null
1848
+ export type evelil = string | null
1849
+ export type eveobs = string | null
1850
+ export type grppolcod = string
1851
+ export type memgrppoldatdeb = Date | null
1852
+ export type memgrppoldatfin = Date | null
1853
+ export type memgrppolid = number
1854
+ export type senmat = string
1855
+ export type syscredat = Date | null
1856
+ export type sysmajdat = Date | null
1857
+ export type temvalcod = string | null
1858
+ export type typapppolcod = string
1859
+ }
1860
+
1861
+ export interface memgrppol {
1862
+ evelib: memgrppolFields.evelib
1863
+ evelic: memgrppolFields.evelic
1864
+ evelil: memgrppolFields.evelil
1865
+ eveobs: memgrppolFields.eveobs
1866
+ grppolcod: memgrppolFields.grppolcod
1867
+ memgrppoldatdeb: memgrppolFields.memgrppoldatdeb
1868
+ memgrppoldatfin: memgrppolFields.memgrppoldatfin
1869
+ memgrppolid: memgrppolFields.memgrppolid
1870
+ senmat: memgrppolFields.senmat
1871
+ syscredat: memgrppolFields.syscredat
1872
+ sysmajdat: memgrppolFields.sysmajdat
1873
+ temvalcod: memgrppolFields.temvalcod
1874
+ typapppolcod: memgrppolFields.typapppolcod
1875
+ }
1876
+
1877
+ export namespace memgrpsenFields {
1878
+ export type evelib = string | null
1879
+ export type evelic = string | null
1880
+ export type evelil = string | null
1881
+ export type memgrpsendatent = Date
1882
+ export type memgrpsendatsor = Date
1883
+ export type memgrpsenid = number
1884
+ export type orgcod = string
1885
+ export type senmat = string
1886
+ export type syscredat = Date | null
1887
+ export type sysmajdat = Date | null
1888
+ export type temvalcod = string | null
1889
+ }
1890
+
1891
+ export interface memgrpsen {
1892
+ evelib: memgrpsenFields.evelib
1893
+ evelic: memgrpsenFields.evelic
1894
+ evelil: memgrpsenFields.evelil
1895
+ memgrpsendatent: memgrpsenFields.memgrpsendatent
1896
+ memgrpsendatsor: memgrpsenFields.memgrpsendatsor
1897
+ memgrpsenid: memgrpsenFields.memgrpsenid
1898
+ orgcod: memgrpsenFields.orgcod
1899
+ senmat: memgrpsenFields.senmat
1900
+ syscredat: memgrpsenFields.syscredat
1901
+ sysmajdat: memgrpsenFields.sysmajdat
1902
+ temvalcod: memgrpsenFields.temvalcod
1903
+ }
1904
+
1905
+ export namespace memorgFields {
1906
+ export type designcod = string
1907
+ export type evelib = string | null
1908
+ export type evelic = string | null
1909
+ export type evelil = string | null
1910
+ export type eveobs = string | null
1911
+ export type memorganndeb = number | null
1912
+ export type memorgannfin = number | null
1913
+ export type memorgdatdeb = Date | null
1914
+ export type memorgdatfin = Date | null
1915
+ export type memorgid = number
1916
+ export type orgcod = string
1917
+ export type senmat = string
1918
+ export type syscredat = Date | null
1919
+ export type sysmajdat = Date | null
1920
+ export type temvalcod = string | null
1921
+ }
1922
+
1923
+ export interface memorg {
1924
+ designcod: memorgFields.designcod
1925
+ evelib: memorgFields.evelib
1926
+ evelic: memorgFields.evelic
1927
+ evelil: memorgFields.evelil
1928
+ eveobs: memorgFields.eveobs
1929
+ memorganndeb: memorgFields.memorganndeb
1930
+ memorgannfin: memorgFields.memorgannfin
1931
+ memorgdatdeb: memorgFields.memorgdatdeb
1932
+ memorgdatfin: memorgFields.memorgdatfin
1933
+ memorgid: memorgFields.memorgid
1934
+ orgcod: memorgFields.orgcod
1935
+ senmat: memorgFields.senmat
1936
+ syscredat: memorgFields.syscredat
1937
+ sysmajdat: memorgFields.sysmajdat
1938
+ temvalcod: memorgFields.temvalcod
1939
+ }
1940
+
1941
+ export namespace minindFields {
1942
+ export type evelib = string | null
1943
+ export type evelic = string | null
1944
+ export type evelil = string | null
1945
+ export type eveobs = string | null
1946
+ export type gvtid = number
1947
+ export type memgvtrngprt = number | null
1948
+ export type minanndeb = number | null
1949
+ export type minannfin = number | null
1950
+ export type mincirfin = string | null
1951
+ export type mindatdeb = Date | null
1952
+ export type mindatfin = Date | null
1953
+ export type mindel = string | null
1954
+ export type minid = number
1955
+ export type poicon = number | null
1956
+ export type senmat = string | null
1957
+ export type syscredat = Date | null
1958
+ export type sysmajdat = Date | null
1959
+ export type temvalcod = string | null
1960
+ export type titmincod = string
1961
+ export type typmincod = string
1962
+ }
1963
+
1964
+ export interface minind {
1965
+ evelib: minindFields.evelib
1966
+ evelic: minindFields.evelic
1967
+ evelil: minindFields.evelil
1968
+ eveobs: minindFields.eveobs
1969
+ gvtid: minindFields.gvtid
1970
+ memgvtrngprt: minindFields.memgvtrngprt
1971
+ minanndeb: minindFields.minanndeb
1972
+ minannfin: minindFields.minannfin
1973
+ mincirfin: minindFields.mincirfin
1974
+ mindatdeb: minindFields.mindatdeb
1975
+ mindatfin: minindFields.mindatfin
1976
+ mindel: minindFields.mindel
1977
+ minid: minindFields.minid
1978
+ poicon: minindFields.poicon
1979
+ senmat: minindFields.senmat
1980
+ syscredat: minindFields.syscredat
1981
+ sysmajdat: minindFields.sysmajdat
1982
+ temvalcod: minindFields.temvalcod
1983
+ titmincod: minindFields.titmincod
1984
+ typmincod: minindFields.typmincod
1985
+ }
1986
+
1987
+ export namespace misminFields {
1988
+ export type minid = number
1989
+ export type misid = number
1990
+ export type syscredat = Date | null
1991
+ export type sysmajdat = Date | null
1992
+ }
1993
+
1994
+ export interface mismin {
1995
+ minid: misminFields.minid
1996
+ misid: misminFields.misid
1997
+ syscredat: misminFields.syscredat
1998
+ sysmajdat: misminFields.sysmajdat
1999
+ }
2000
+
2001
+ export namespace missenFields {
2002
+ export type misid = number
2003
+ export type senmat = string
2004
+ export type syscredat = Date | null
2005
+ export type sysmajdat = Date | null
2006
+ }
2007
+
2008
+ export interface missen {
2009
+ misid: missenFields.misid
2010
+ senmat: missenFields.senmat
2011
+ syscredat: missenFields.syscredat
2012
+ sysmajdat: missenFields.sysmajdat
2013
+ }
2014
+
2015
+ export namespace moddesFields {
2016
+ export type avis_com_an = string | null
2017
+ export type avis_com_senat = string | null
2018
+ export type evelib = string | null
2019
+ export type evelic = string | null
2020
+ export type evelil = string | null
2021
+ export type eveobs = string | null
2022
+ export type moddescod = string
2023
+ export type moddesnumtri = number | null
2024
+ export type syscredat = Date | null
2025
+ export type sysmajdat = Date | null
2026
+ export type temvalcod = string | null
2027
+ export type typmoddescod = string | null
2028
+ }
2029
+
2030
+ export interface moddes {
2031
+ avis_com_an: moddesFields.avis_com_an
2032
+ avis_com_senat: moddesFields.avis_com_senat
2033
+ evelib: moddesFields.evelib
2034
+ evelic: moddesFields.evelic
2035
+ evelil: moddesFields.evelil
2036
+ eveobs: moddesFields.eveobs
2037
+ moddescod: moddesFields.moddescod
2038
+ moddesnumtri: moddesFields.moddesnumtri
2039
+ syscredat: moddesFields.syscredat
2040
+ sysmajdat: moddesFields.sysmajdat
2041
+ temvalcod: moddesFields.temvalcod
2042
+ typmoddescod: moddesFields.typmoddescod
2043
+ }
2044
+
2045
+ export namespace nationFields {
2046
+ export type nationactual = string | null
2047
+ export type nationancnom = string | null
2048
+ export type nationannind = string | null
2049
+ export type nationcod = string
2050
+ export type nationlibcog = string | null
2051
+ export type nationlibenr = string | null
2052
+ export type nationlic = string | null
2053
+ export type nationliccap = string | null
2054
+ export type nationlictri = string | null
2055
+ export type nationnumtri = number | null
2056
+ export type nationurlcmp = string | null
2057
+ export type syscredat = Date | null
2058
+ export type sysmajdat = Date | null
2059
+ export type zongeocod = string
2060
+ }
2061
+
2062
+ export interface nation {
2063
+ nationactual: nationFields.nationactual
2064
+ nationancnom: nationFields.nationancnom
2065
+ nationannind: nationFields.nationannind
2066
+ nationcod: nationFields.nationcod
2067
+ nationlibcog: nationFields.nationlibcog
2068
+ nationlibenr: nationFields.nationlibenr
2069
+ nationlic: nationFields.nationlic
2070
+ nationliccap: nationFields.nationliccap
2071
+ nationlictri: nationFields.nationlictri
2072
+ nationnumtri: nationFields.nationnumtri
2073
+ nationurlcmp: nationFields.nationurlcmp
2074
+ syscredat: nationFields.syscredat
2075
+ sysmajdat: nationFields.sysmajdat
2076
+ zongeocod: nationFields.zongeocod
2077
+ }
2078
+
2079
+ export namespace nationgrpsenFields {
2080
+ export type evelib = string | null
2081
+ export type evelic = string | null
2082
+ export type evelil = string | null
2083
+ export type eveobs = string | null
2084
+ export type nationcod = string
2085
+ export type nationgpsendatdeb = Date | null
2086
+ export type nationgrpsendatfin = Date | null
2087
+ export type nationgrpsenid = number
2088
+ export type orgcod = string
2089
+ export type syscredat = Date | null
2090
+ export type sysmajdat = Date | null
2091
+ export type temvalcod = string | null
2092
+ }
2093
+
2094
+ export interface nationgrpsen {
2095
+ evelib: nationgrpsenFields.evelib
2096
+ evelic: nationgrpsenFields.evelic
2097
+ evelil: nationgrpsenFields.evelil
2098
+ eveobs: nationgrpsenFields.eveobs
2099
+ nationcod: nationgrpsenFields.nationcod
2100
+ nationgpsendatdeb: nationgrpsenFields.nationgpsendatdeb
2101
+ nationgrpsendatfin: nationgrpsenFields.nationgrpsendatfin
2102
+ nationgrpsenid: nationgrpsenFields.nationgrpsenid
2103
+ orgcod: nationgrpsenFields.orgcod
2104
+ syscredat: nationgrpsenFields.syscredat
2105
+ sysmajdat: nationgrpsenFields.sysmajdat
2106
+ temvalcod: nationgrpsenFields.temvalcod
2107
+ }
2108
+
2109
+ export namespace orgFields {
2110
+ export type evelib = string | null
2111
+ export type evelic = string | null
2112
+ export type evelil = string | null
2113
+ export type orgart = string | null
2114
+ export type orgcod = string
2115
+ export type orgdatcre = Date | null
2116
+ export type orgdatfin = Date | null
2117
+ export type orgmemdep = string | null
2118
+ export type orgmoddes = string | null
2119
+ export type orgnumtri = number | null
2120
+ export type orgregjur = string | null
2121
+ export type orgtemannu = string | null
2122
+ export type orgurlcmp = string | null
2123
+ export type orgurlsim = string | null
2124
+ export type syscredat = Date | null
2125
+ export type sysmajdat = Date | null
2126
+ export type temvalcod = string | null
2127
+ export type typorgcod = string
2128
+ }
2129
+
2130
+ export interface org {
2131
+ evelib: orgFields.evelib
2132
+ evelic: orgFields.evelic
2133
+ evelil: orgFields.evelil
2134
+ orgart: orgFields.orgart
2135
+ orgcod: orgFields.orgcod
2136
+ orgdatcre: orgFields.orgdatcre
2137
+ orgdatfin: orgFields.orgdatfin
2138
+ orgmemdep: orgFields.orgmemdep
2139
+ orgmoddes: orgFields.orgmoddes
2140
+ orgnumtri: orgFields.orgnumtri
2141
+ orgregjur: orgFields.orgregjur
2142
+ orgtemannu: orgFields.orgtemannu
2143
+ orgurlcmp: orgFields.orgurlcmp
2144
+ orgurlsim: orgFields.orgurlsim
2145
+ syscredat: orgFields.syscredat
2146
+ sysmajdat: orgFields.sysmajdat
2147
+ temvalcod: orgFields.temvalcod
2148
+ typorgcod: orgFields.typorgcod
2149
+ }
2150
+
2151
+ export namespace orgextFields {
2152
+ export type basdescod = string
2153
+ export type codesgg = string | null
2154
+ export type etaprrcod = string
2155
+ export type evelib = string | null
2156
+ export type evelic = string | null
2157
+ export type evelil = string | null
2158
+ export type eveobs = string | null
2159
+ export type orgart = string | null
2160
+ export type orgcod = string
2161
+ export type orgdatcre = Date | null
2162
+ export type orgdatfin = Date | null
2163
+ export type orgextdatprr = Date | null
2164
+ export type orgextdurman = string | null
2165
+ export type orgextminrat = string | null
2166
+ export type orgextmoddes = string | null
2167
+ export type orgextnbrsen = number | null
2168
+ export type orgextprescod = string
2169
+ export type orgextregjur = string | null
2170
+ export type orgextrep = string | null
2171
+ export type orgextrubclas = string | null
2172
+ export type orgnumtie = string | null
2173
+ export type orgnumtri = number | null
2174
+ export type orgparite = string | null
2175
+ export type orgtemannu = string | null
2176
+ export type orgurlcmp = string | null
2177
+ export type orgurlsim = string | null
2178
+ export type stajurcod = string
2179
+ export type syscredat = Date | null
2180
+ export type sysmajdat = Date | null
2181
+ export type temvalcod = string | null
2182
+ export type typorgcod = string
2183
+ export type typorgextcod = string
2184
+ }
2185
+
2186
+ export interface orgext {
2187
+ basdescod: orgextFields.basdescod
2188
+ codesgg: orgextFields.codesgg
2189
+ etaprrcod: orgextFields.etaprrcod
2190
+ evelib: orgextFields.evelib
2191
+ evelic: orgextFields.evelic
2192
+ evelil: orgextFields.evelil
2193
+ eveobs: orgextFields.eveobs
2194
+ orgart: orgextFields.orgart
2195
+ orgcod: orgextFields.orgcod
2196
+ orgdatcre: orgextFields.orgdatcre
2197
+ orgdatfin: orgextFields.orgdatfin
2198
+ orgextdatprr: orgextFields.orgextdatprr
2199
+ orgextdurman: orgextFields.orgextdurman
2200
+ orgextminrat: orgextFields.orgextminrat
2201
+ orgextmoddes: orgextFields.orgextmoddes
2202
+ orgextnbrsen: orgextFields.orgextnbrsen
2203
+ orgextprescod: orgextFields.orgextprescod
2204
+ orgextregjur: orgextFields.orgextregjur
2205
+ orgextrep: orgextFields.orgextrep
2206
+ orgextrubclas: orgextFields.orgextrubclas
2207
+ orgnumtie: orgextFields.orgnumtie
2208
+ orgnumtri: orgextFields.orgnumtri
2209
+ orgparite: orgextFields.orgparite
2210
+ orgtemannu: orgextFields.orgtemannu
2211
+ orgurlcmp: orgextFields.orgurlcmp
2212
+ orgurlsim: orgextFields.orgurlsim
2213
+ stajurcod: orgextFields.stajurcod
2214
+ syscredat: orgextFields.syscredat
2215
+ sysmajdat: orgextFields.sysmajdat
2216
+ temvalcod: orgextFields.temvalcod
2217
+ typorgcod: orgextFields.typorgcod
2218
+ typorgextcod: orgextFields.typorgextcod
2219
+ }
2220
+
2221
+ export namespace orgtheFields {
2222
+ export type orgcod = string
2223
+ export type thecle = number
2224
+ }
2225
+
2226
+ export interface orgthe {
2227
+ orgcod: orgtheFields.orgcod
2228
+ thecle: orgtheFields.thecle
2229
+ }
2230
+
2231
+ export namespace pcsFields {
2232
+ export type pcs42cod = string
2233
+ export type pcscod = string
2234
+ export type pcslil = string | null
2235
+ }
2236
+
2237
+ export interface pcs {
2238
+ pcs42cod: pcsFields.pcs42cod
2239
+ pcscod: pcsFields.pcscod
2240
+ pcslil: pcsFields.pcslil
2241
+ }
2242
+
2243
+ export namespace pcs24Fields {
2244
+ export type pcs24cod = string
2245
+ export type pcs24lib = string | null
2246
+ export type pcs8cod = string
2247
+ }
2248
+
2249
+ export interface pcs24 {
2250
+ pcs24cod: pcs24Fields.pcs24cod
2251
+ pcs24lib: pcs24Fields.pcs24lib
2252
+ pcs8cod: pcs24Fields.pcs8cod
2253
+ }
2254
+
2255
+ export namespace pcs42Fields {
2256
+ export type pcs24cod = string
2257
+ export type pcs42cod = string
2258
+ export type pcs42lib = string | null
2259
+ }
2260
+
2261
+ export interface pcs42 {
2262
+ pcs24cod: pcs42Fields.pcs24cod
2263
+ pcs42cod: pcs42Fields.pcs42cod
2264
+ pcs42lib: pcs42Fields.pcs42lib
2265
+ }
2266
+
2267
+ export namespace pcs8Fields {
2268
+ export type pcs8cod = string
2269
+ export type pcs8lil = string | null
2270
+ }
2271
+
2272
+ export interface pcs8 {
2273
+ pcs8cod: pcs8Fields.pcs8cod
2274
+ pcs8lil: pcs8Fields.pcs8lil
2275
+ }
2276
+
2277
+ export namespace pcscatproFields {
2278
+ export type catprocod = string
2279
+ export type pcscatproid = number
2280
+ export type pcscod = string
2281
+ export type procatprodef = string | null
2282
+ }
2283
+
2284
+ export interface pcscatpro {
2285
+ catprocod: pcscatproFields.catprocod
2286
+ pcscatproid: pcscatproFields.pcscatproid
2287
+ pcscod: pcscatproFields.pcscod
2288
+ procatprodef: pcscatproFields.procatprodef
2289
+ }
2290
+
2291
+ export namespace poiconFields {
2292
+ export type poiconid = number
2293
+ export type poiconlib = string | null
2294
+ export type poiconnumtri = number | null
2295
+ export type senmat = string
2296
+ export type syscredat = Date | null
2297
+ export type sysmajdat = Date | null
2298
+ export type typpoiconcod = string
2299
+ }
2300
+
2301
+ export interface poicon {
2302
+ poiconid: poiconFields.poiconid
2303
+ poiconlib: poiconFields.poiconlib
2304
+ poiconnumtri: poiconFields.poiconnumtri
2305
+ senmat: poiconFields.senmat
2306
+ syscredat: poiconFields.syscredat
2307
+ sysmajdat: poiconFields.sysmajdat
2308
+ typpoiconcod: poiconFields.typpoiconcod
2309
+ }
2310
+
2311
+ export namespace quaFields {
2312
+ export type quacod = string
2313
+ export type quacodsex = string | null
2314
+ export type qualib = string | null
2315
+ export type qualibplu = string | null
2316
+ export type qualic = string
2317
+ export type qualicplu = string | null
2318
+ export type qualil = string | null
2319
+ export type qualilplu = string | null
2320
+ export type quanumtri = number | null
2321
+ export type syscredat = Date | null
2322
+ export type sysmajdat = Date | null
2323
+ }
2324
+
2325
+ export interface qua {
2326
+ quacod: quaFields.quacod
2327
+ quacodsex: quaFields.quacodsex
2328
+ qualib: quaFields.qualib
2329
+ qualibplu: quaFields.qualibplu
2330
+ qualic: quaFields.qualic
2331
+ qualicplu: quaFields.qualicplu
2332
+ qualil: quaFields.qualil
2333
+ qualilplu: quaFields.qualilplu
2334
+ quanumtri: quaFields.quanumtri
2335
+ syscredat: quaFields.syscredat
2336
+ sysmajdat: quaFields.sysmajdat
2337
+ }
2338
+
2339
+ export namespace regFields {
2340
+ export type artreg = string | null
2341
+ export type regcod = string
2342
+ export type regcodint = string | null
2343
+ export type regcodparlis = string | null
2344
+ export type regcodrpl = string | null
2345
+ export type regdatdeb = Date | null
2346
+ export type regdatfin = Date | null
2347
+ export type reglib = string
2348
+ export type reglic = string | null
2349
+ export type reglil = string | null
2350
+ export type regnumtri = number | null
2351
+ export type regurlcmp = string | null
2352
+ export type syscredat = Date | null
2353
+ export type sysmajdat = Date | null
2354
+ export type territcod = string
2355
+ }
2356
+
2357
+ export interface reg {
2358
+ artreg: regFields.artreg
2359
+ regcod: regFields.regcod
2360
+ regcodint: regFields.regcodint
2361
+ regcodparlis: regFields.regcodparlis
2362
+ regcodrpl: regFields.regcodrpl
2363
+ regdatdeb: regFields.regdatdeb
2364
+ regdatfin: regFields.regdatfin
2365
+ reglib: regFields.reglib
2366
+ reglic: regFields.reglic
2367
+ reglil: regFields.reglil
2368
+ regnumtri: regFields.regnumtri
2369
+ regurlcmp: regFields.regurlcmp
2370
+ syscredat: regFields.syscredat
2371
+ sysmajdat: regFields.sysmajdat
2372
+ territcod: regFields.territcod
2373
+ }
2374
+
2375
+ export namespace senFields {
2376
+ export type catprocod = string
2377
+ export type etasencod = string
2378
+ export type pcscod = string
2379
+ export type quacod = string
2380
+ export type senburliccou = string | null
2381
+ export type sencircou = string | null
2382
+ export type sencirnumcou = number | null
2383
+ export type sencomcodcou = string | null
2384
+ export type sencomliccou = string | null
2385
+ export type sendaiurl = string | null
2386
+ export type sendatdec = Date | null
2387
+ export type sendatnai = Date | null
2388
+ export type sendespro = string | null
2389
+ export type senema = string | null
2390
+ export type senfem = string | null
2391
+ export type sengrppolcodcou = string | null
2392
+ export type sengrppolliccou = string | null
2393
+ export type senmat = string
2394
+ export type sennomtec = string
2395
+ export type sennomuse = string
2396
+ export type sennomusecap = string
2397
+ export type sennumsie = number | null
2398
+ export type senprenomuse = string
2399
+ export type sentypappcou = string | null
2400
+ export type syscredat = Date | null
2401
+ export type sysmajdat = Date | null
2402
+ }
2403
+
2404
+ export interface sen {
2405
+ catprocod: senFields.catprocod
2406
+ etasencod: senFields.etasencod
2407
+ pcscod: senFields.pcscod
2408
+ quacod: senFields.quacod
2409
+ senburliccou: senFields.senburliccou
2410
+ sencircou: senFields.sencircou
2411
+ sencirnumcou: senFields.sencirnumcou
2412
+ sencomcodcou: senFields.sencomcodcou
2413
+ sencomliccou: senFields.sencomliccou
2414
+ sendaiurl: senFields.sendaiurl
2415
+ sendatdec: senFields.sendatdec
2416
+ sendatnai: senFields.sendatnai
2417
+ sendespro: senFields.sendespro
2418
+ senema: senFields.senema
2419
+ senfem: senFields.senfem
2420
+ sengrppolcodcou: senFields.sengrppolcodcou
2421
+ sengrppolliccou: senFields.sengrppolliccou
2422
+ senmat: senFields.senmat
2423
+ sennomtec: senFields.sennomtec
2424
+ sennomuse: senFields.sennomuse
2425
+ sennomusecap: senFields.sennomusecap
2426
+ sennumsie: senFields.sennumsie
2427
+ senprenomuse: senFields.senprenomuse
2428
+ sentypappcou: senFields.sentypappcou
2429
+ syscredat: senFields.syscredat
2430
+ sysmajdat: senFields.sysmajdat
2431
+ }
2432
+
2433
+ export namespace senburFields {
2434
+ export type burcod = string
2435
+ export type evelib = string | null
2436
+ export type evelic = string | null
2437
+ export type evelil = string | null
2438
+ export type eveobs = string | null
2439
+ export type senburdatdeb = Date | null
2440
+ export type senburdatfin = Date | null
2441
+ export type senburhon = string | null
2442
+ export type senburid = number
2443
+ export type senburrelint = string | null
2444
+ export type senburrngele = number | null
2445
+ export type senmat = string
2446
+ export type syscredat = Date | null
2447
+ export type sysmajdat = Date | null
2448
+ export type temvalcod = string | null
2449
+ }
2450
+
2451
+ export interface senbur {
2452
+ burcod: senburFields.burcod
2453
+ evelib: senburFields.evelib
2454
+ evelic: senburFields.evelic
2455
+ evelil: senburFields.evelil
2456
+ eveobs: senburFields.eveobs
2457
+ senburdatdeb: senburFields.senburdatdeb
2458
+ senburdatfin: senburFields.senburdatfin
2459
+ senburhon: senburFields.senburhon
2460
+ senburid: senburFields.senburid
2461
+ senburrelint: senburFields.senburrelint
2462
+ senburrngele: senburFields.senburrngele
2463
+ senmat: senburFields.senmat
2464
+ syscredat: senburFields.syscredat
2465
+ sysmajdat: senburFields.sysmajdat
2466
+ temvalcod: senburFields.temvalcod
2467
+ }
2468
+
2469
+ export namespace sennomFields {
2470
+ export type quacod = string
2471
+ export type senmat = string
2472
+ export type sennomdatdeb = Date
2473
+ export type sennomdatfin = Date | null
2474
+ export type sennomid = number
2475
+ export type sennomtec = string
2476
+ export type sennomuse = string
2477
+ export type sennomusecap = string
2478
+ export type senprenomuse = string
2479
+ export type syscredat = Date | null
2480
+ export type sysmajdat = Date | null
2481
+ }
2482
+
2483
+ export interface sennom {
2484
+ quacod: sennomFields.quacod
2485
+ senmat: sennomFields.senmat
2486
+ sennomdatdeb: sennomFields.sennomdatdeb
2487
+ sennomdatfin: sennomFields.sennomdatfin
2488
+ sennomid: sennomFields.sennomid
2489
+ sennomtec: sennomFields.sennomtec
2490
+ sennomuse: sennomFields.sennomuse
2491
+ sennomusecap: sennomFields.sennomusecap
2492
+ senprenomuse: sennomFields.senprenomuse
2493
+ syscredat: sennomFields.syscredat
2494
+ sysmajdat: sennomFields.sysmajdat
2495
+ }
2496
+
2497
+ export namespace senurlFields {
2498
+ export type evelib = string | null
2499
+ export type evelic = string | null
2500
+ export type evelil = string | null
2501
+ export type eveobs = string | null
2502
+ export type senmat = string
2503
+ export type senurlid = number
2504
+ export type senurlnumtri = number | null
2505
+ export type senurlurl = string
2506
+ export type syscredat = Date | null
2507
+ export type sysmajdat = Date | null
2508
+ export type temvalcod = string | null
2509
+ export type typurlcod = string
2510
+ }
2511
+
2512
+ export interface senurl {
2513
+ evelib: senurlFields.evelib
2514
+ evelic: senurlFields.evelic
2515
+ evelil: senurlFields.evelil
2516
+ eveobs: senurlFields.eveobs
2517
+ senmat: senurlFields.senmat
2518
+ senurlid: senurlFields.senurlid
2519
+ senurlnumtri: senurlFields.senurlnumtri
2520
+ senurlurl: senurlFields.senurlurl
2521
+ syscredat: senurlFields.syscredat
2522
+ sysmajdat: senurlFields.sysmajdat
2523
+ temvalcod: senurlFields.temvalcod
2524
+ typurlcod: senurlFields.typurlcod
2525
+ }
2526
+
2527
+ export namespace stajurFields {
2528
+ export type stajurcod = string
2529
+ export type stajurlib = string | null
2530
+ export type stajurlic = string | null
2531
+ export type stajurnumtri = number | null
2532
+ export type syscredat = Date | null
2533
+ export type sysmajdat = Date | null
2534
+ }
2535
+
2536
+ export interface stajur {
2537
+ stajurcod: stajurFields.stajurcod
2538
+ stajurlib: stajurFields.stajurlib
2539
+ stajurlic: stajurFields.stajurlic
2540
+ stajurnumtri: stajurFields.stajurnumtri
2541
+ syscredat: stajurFields.syscredat
2542
+ sysmajdat: stajurFields.sysmajdat
2543
+ }
2544
+
2545
+ export namespace telephoneFields {
2546
+ export type poiconid = number
2547
+ export type syscredat = Date | null
2548
+ export type sysmajdat = Date | null
2549
+ export type telid = number
2550
+ export type telnum = string | null
2551
+ export type telnumtri = number | null
2552
+ export type typtelcod = string
2553
+ }
2554
+
2555
+ export interface telephone {
2556
+ poiconid: telephoneFields.poiconid
2557
+ syscredat: telephoneFields.syscredat
2558
+ sysmajdat: telephoneFields.sysmajdat
2559
+ telid: telephoneFields.telid
2560
+ telnum: telephoneFields.telnum
2561
+ telnumtri: telephoneFields.telnumtri
2562
+ typtelcod: telephoneFields.typtelcod
2563
+ }
2564
+
2565
+ export namespace temvalFields {
2566
+ export type temvalcod = string
2567
+ export type temvallib = string
2568
+ export type temvallic = string
2569
+ }
2570
+
2571
+ export interface temval {
2572
+ temvalcod: temvalFields.temvalcod
2573
+ temvallib: temvalFields.temvallib
2574
+ temvallic: temvalFields.temvallic
2575
+ }
2576
+
2577
+ export namespace territFields {
2578
+ export type catterritcod = string
2579
+ export type syscredat = Date | null
2580
+ export type sysmajdat = Date | null
2581
+ export type territart = string | null
2582
+ export type territcod = string
2583
+ export type territlib = string | null
2584
+ export type territlic = string | null
2585
+ export type territlil = string | null
2586
+ export type territnumtri = number | null
2587
+ export type territurlcmp = string | null
2588
+ }
2589
+
2590
+ export interface territ {
2591
+ catterritcod: territFields.catterritcod
2592
+ syscredat: territFields.syscredat
2593
+ sysmajdat: territFields.sysmajdat
2594
+ territart: territFields.territart
2595
+ territcod: territFields.territcod
2596
+ territlib: territFields.territlib
2597
+ territlic: territFields.territlic
2598
+ territlil: territFields.territlil
2599
+ territnumtri: territFields.territnumtri
2600
+ territurlcmp: territFields.territurlcmp
2601
+ }
2602
+
2603
+ export namespace titeleFields {
2604
+ export type syscredat = Date | null
2605
+ export type sysmajdat = Date | null
2606
+ export type titelecod = string
2607
+ export type titeledef = string | null
2608
+ export type titelelib = string
2609
+ export type titelelibfem = string | null
2610
+ export type titelelibhon = string | null
2611
+ export type titelelibhonfem = string | null
2612
+ export type titelelibhonplu = string | null
2613
+ export type titelelibplu = string | null
2614
+ export type titelelic = string
2615
+ export type titelelicfem = string | null
2616
+ export type titelelicplu = string | null
2617
+ export type titelelil = string | null
2618
+ export type titelelilfem = string | null
2619
+ export type titelelilplu = string | null
2620
+ export type titelenumtri = number | null
2621
+ export type titeleurltempub = string | null
2622
+ export type typmancod = string
2623
+ }
2624
+
2625
+ export interface titele {
2626
+ syscredat: titeleFields.syscredat
2627
+ sysmajdat: titeleFields.sysmajdat
2628
+ titelecod: titeleFields.titelecod
2629
+ titeledef: titeleFields.titeledef
2630
+ titelelib: titeleFields.titelelib
2631
+ titelelibfem: titeleFields.titelelibfem
2632
+ titelelibhon: titeleFields.titelelibhon
2633
+ titelelibhonfem: titeleFields.titelelibhonfem
2634
+ titelelibhonplu: titeleFields.titelelibhonplu
2635
+ titelelibplu: titeleFields.titelelibplu
2636
+ titelelic: titeleFields.titelelic
2637
+ titelelicfem: titeleFields.titelelicfem
2638
+ titelelicplu: titeleFields.titelelicplu
2639
+ titelelil: titeleFields.titelelil
2640
+ titelelilfem: titeleFields.titelelilfem
2641
+ titelelilplu: titeleFields.titelelilplu
2642
+ titelenumtri: titeleFields.titelenumtri
2643
+ titeleurltempub: titeleFields.titeleurltempub
2644
+ typmancod: titeleFields.typmancod
2645
+ }
2646
+
2647
+ export namespace typadrFields {
2648
+ export type syscredat = Date | null
2649
+ export type sysmajdat = Date | null
2650
+ export type typadrcod = string
2651
+ export type typadrlib = string | null
2652
+ export type typadrlic = string | null
2653
+ export type typadrnumtri = number | null
2654
+ }
2655
+
2656
+ export interface typadr {
2657
+ syscredat: typadrFields.syscredat
2658
+ sysmajdat: typadrFields.sysmajdat
2659
+ typadrcod: typadrFields.typadrcod
2660
+ typadrlib: typadrFields.typadrlib
2661
+ typadrlic: typadrFields.typadrlic
2662
+ typadrnumtri: typadrFields.typadrnumtri
2663
+ }
2664
+
2665
+ export namespace typapppolFields {
2666
+ export type syscredat = Date | null
2667
+ export type sysmajdat = Date | null
2668
+ export type typapppolcod = string
2669
+ export type typapppollib = string | null
2670
+ export type typapppollibfem = string | null
2671
+ export type typapppollibplu = string | null
2672
+ export type typapppollic = string | null
2673
+ export type typapppollicfem = string | null
2674
+ export type typapppollicplu = string | null
2675
+ export type typapppollil = string | null
2676
+ export type typapppollilfem = string | null
2677
+ export type typapppollilplu = string | null
2678
+ export type typapppolnumtri = number | null
2679
+ }
2680
+
2681
+ export interface typapppol {
2682
+ syscredat: typapppolFields.syscredat
2683
+ sysmajdat: typapppolFields.sysmajdat
2684
+ typapppolcod: typapppolFields.typapppolcod
2685
+ typapppollib: typapppolFields.typapppollib
2686
+ typapppollibfem: typapppolFields.typapppollibfem
2687
+ typapppollibplu: typapppolFields.typapppollibplu
2688
+ typapppollic: typapppolFields.typapppollic
2689
+ typapppollicfem: typapppolFields.typapppollicfem
2690
+ typapppollicplu: typapppolFields.typapppollicplu
2691
+ typapppollil: typapppolFields.typapppollil
2692
+ typapppollilfem: typapppolFields.typapppollilfem
2693
+ typapppollilplu: typapppolFields.typapppollilplu
2694
+ typapppolnumtri: typapppolFields.typapppolnumtri
2695
+ }
2696
+
2697
+ export namespace typbisterFields {
2698
+ export type typbistercod = string
2699
+ export type typbisterlib = string | null
2700
+ export type typbisterlic = string | null
2701
+ export type typbisternumtri = number | null
2702
+ }
2703
+
2704
+ export interface typbister {
2705
+ typbistercod: typbisterFields.typbistercod
2706
+ typbisterlib: typbisterFields.typbisterlib
2707
+ typbisterlic: typbisterFields.typbisterlic
2708
+ typbisternumtri: typbisterFields.typbisternumtri
2709
+ }
2710
+
2711
+ export namespace type_activiteFields {
2712
+ export type typactcod = string
2713
+ export type typactlib = string
2714
+ export type typactlibtap = string | null
2715
+ export type typactlic = string
2716
+ }
2717
+
2718
+ export interface type_activite {
2719
+ typactcod: type_activiteFields.typactcod
2720
+ typactlib: type_activiteFields.typactlib
2721
+ typactlibtap: type_activiteFields.typactlibtap
2722
+ typactlic: type_activiteFields.typactlic
2723
+ }
2724
+
2725
+ export namespace type_activite_participantFields {
2726
+ export type typactparcod = string
2727
+ export type typactparlib = string
2728
+ export type typactparlibfem = string
2729
+ }
2730
+
2731
+ export interface type_activite_participant {
2732
+ typactparcod: type_activite_participantFields.typactparcod
2733
+ typactparlib: type_activite_participantFields.typactparlib
2734
+ typactparlibfem: type_activite_participantFields.typactparlibfem
2735
+ }
2736
+
2737
+ export namespace type_activite_senateurFields {
2738
+ export type numtri = number
2739
+ export type typactsencod = string
2740
+ export type typactsenlib = string
2741
+ export type typactsenlic = string
2742
+ }
2743
+
2744
+ export interface type_activite_senateur {
2745
+ numtri: type_activite_senateurFields.numtri
2746
+ typactsencod: type_activite_senateurFields.typactsencod
2747
+ typactsenlib: type_activite_senateurFields.typactsenlib
2748
+ typactsenlic: type_activite_senateurFields.typactsenlic
2749
+ }
2750
+
2751
+ export namespace type_categorieFields {
2752
+ export type catactcod = string
2753
+ export type par_defaut = string
2754
+ export type typactcod = string
2755
+ }
2756
+
2757
+ export interface type_categorie {
2758
+ catactcod: type_categorieFields.catactcod
2759
+ par_defaut: type_categorieFields.par_defaut
2760
+ typactcod: type_categorieFields.typactcod
2761
+ }
2762
+
2763
+ export namespace typeleFields {
2764
+ export type syscredat = Date | null
2765
+ export type sysmajdat = Date | null
2766
+ export type typelecod = string
2767
+ export type typelelib = string | null
2768
+ export type typelelic = string | null
2769
+ export type typelelil = string | null
2770
+ export type typelenumtri = number | null
2771
+ }
2772
+
2773
+ export interface typele {
2774
+ syscredat: typeleFields.syscredat
2775
+ sysmajdat: typeleFields.sysmajdat
2776
+ typelecod: typeleFields.typelecod
2777
+ typelelib: typeleFields.typelelib
2778
+ typelelic: typeleFields.typelelic
2779
+ typelelil: typeleFields.typelelil
2780
+ typelenumtri: typeleFields.typelenumtri
2781
+ }
2782
+
2783
+ export namespace typgrpsenFields {
2784
+ export type evelib = string | null
2785
+ export type evelic = string | null
2786
+ export type evelil = string | null
2787
+ export type syscredat = Date | null
2788
+ export type sysmajdat = Date | null
2789
+ export type temvalcod = string | null
2790
+ export type typgrpsencod = string
2791
+ export type typgrpsennumtri = number | null
2792
+ }
2793
+
2794
+ export interface typgrpsen {
2795
+ evelib: typgrpsenFields.evelib
2796
+ evelic: typgrpsenFields.evelic
2797
+ evelil: typgrpsenFields.evelil
2798
+ syscredat: typgrpsenFields.syscredat
2799
+ sysmajdat: typgrpsenFields.sysmajdat
2800
+ temvalcod: typgrpsenFields.temvalcod
2801
+ typgrpsencod: typgrpsenFields.typgrpsencod
2802
+ typgrpsennumtri: typgrpsenFields.typgrpsennumtri
2803
+ }
2804
+
2805
+ export namespace typmanFields {
2806
+ export type syscredat = Date | null
2807
+ export type sysmajdat = Date | null
2808
+ export type typmancod = string
2809
+ export type typmanlib = string | null
2810
+ export type typmannumtri = number | null
2811
+ export type typmantypele = string | null
2812
+ }
2813
+
2814
+ export interface typman {
2815
+ syscredat: typmanFields.syscredat
2816
+ sysmajdat: typmanFields.sysmajdat
2817
+ typmancod: typmanFields.typmancod
2818
+ typmanlib: typmanFields.typmanlib
2819
+ typmannumtri: typmanFields.typmannumtri
2820
+ typmantypele: typmanFields.typmantypele
2821
+ }
2822
+
2823
+ export namespace typorgFields {
2824
+ export type syscredat = Date | null
2825
+ export type sysmajdat = Date | null
2826
+ export type typorgcod = string
2827
+ export type typorglib = string
2828
+ export type typorglibplu = string | null
2829
+ export type typorglic = string
2830
+ export type typorgnumtri = number | null
2831
+ export type typorgurlcmp = string | null
2832
+ export type typorgurlsim = string | null
2833
+ }
2834
+
2835
+ export interface typorg {
2836
+ syscredat: typorgFields.syscredat
2837
+ sysmajdat: typorgFields.sysmajdat
2838
+ typorgcod: typorgFields.typorgcod
2839
+ typorglib: typorgFields.typorglib
2840
+ typorglibplu: typorgFields.typorglibplu
2841
+ typorglic: typorgFields.typorglic
2842
+ typorgnumtri: typorgFields.typorgnumtri
2843
+ typorgurlcmp: typorgFields.typorgurlcmp
2844
+ typorgurlsim: typorgFields.typorgurlsim
2845
+ }
2846
+
2847
+ export namespace typurlFields {
2848
+ export type evelib = string | null
2849
+ export type evelic = string | null
2850
+ export type evelil = string | null
2851
+ export type eveobs = string | null
2852
+ export type syscredat = Date | null
2853
+ export type sysmajdat = Date | null
2854
+ export type temvalcod = string | null
2855
+ export type typurlcod = string
2856
+ export type typurllogo = string | null
2857
+ export type typurllogoref = string | null
2858
+ export type typurlnumtri = number | null
2859
+ }
2860
+
2861
+ export interface typurl {
2862
+ evelib: typurlFields.evelib
2863
+ evelic: typurlFields.evelic
2864
+ evelil: typurlFields.evelil
2865
+ eveobs: typurlFields.eveobs
2866
+ syscredat: typurlFields.syscredat
2867
+ sysmajdat: typurlFields.sysmajdat
2868
+ temvalcod: typurlFields.temvalcod
2869
+ typurlcod: typurlFields.typurlcod
2870
+ typurllogo: typurlFields.typurllogo
2871
+ typurllogoref: typurlFields.typurllogoref
2872
+ typurlnumtri: typurlFields.typurlnumtri
2873
+ }
2874
+
2875
+ export namespace typvoiFields {
2876
+ export type typvoicod = string
2877
+ export type typvoilib = string | null
2878
+ export type typvoilic = string | null
2879
+ export type typvoinumtri = number | null
2880
+ }
2881
+
2882
+ export interface typvoi {
2883
+ typvoicod: typvoiFields.typvoicod
2884
+ typvoilib: typvoiFields.typvoilib
2885
+ typvoilic: typvoiFields.typvoilic
2886
+ typvoinumtri: typvoiFields.typvoinumtri
2887
+ }
2888
+
2889
+ export namespace zongeoFields {
2890
+ export type concod = string
2891
+ export type syscredat = Date | null
2892
+ export type sysmajdat = Date | null
2893
+ export type zongeocod = string
2894
+ export type zongeolib = string
2895
+ export type zongeolic = string
2896
+ export type zongeonumtri = number | null
2897
+ }
2898
+
2899
+ export interface zongeo {
2900
+ concod: zongeoFields.concod
2901
+ syscredat: zongeoFields.syscredat
2902
+ sysmajdat: zongeoFields.sysmajdat
2903
+ zongeocod: zongeoFields.zongeocod
2904
+ zongeolib: zongeoFields.zongeolib
2905
+ zongeolic: zongeoFields.zongeolic
2906
+ zongeonumtri: zongeoFields.zongeonumtri
2907
+ }