@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.
- package/lib/aggregates.d.ts +52 -0
- package/lib/aggregates.js +949 -0
- package/lib/aggregates.mjs +726 -0
- package/lib/aggregates.ts +852 -0
- package/lib/config.mjs +16 -0
- package/lib/config.ts +26 -0
- package/lib/databases.mjs +55 -0
- package/lib/databases.ts +68 -0
- package/lib/datasets.mjs +78 -0
- package/lib/datasets.ts +118 -0
- package/lib/fields.d.ts +10 -0
- package/lib/fields.js +68 -0
- package/lib/fields.mjs +22 -0
- package/lib/fields.ts +29 -0
- package/lib/index.mjs +7 -0
- package/lib/index.ts +64 -0
- package/lib/inserters.d.ts +98 -0
- package/lib/inserters.js +500 -0
- package/lib/inserters.mjs +360 -0
- package/lib/inserters.ts +521 -0
- package/lib/loaders.mjs +97 -0
- package/lib/loaders.ts +173 -0
- package/lib/model/ameli.mjs +57 -0
- package/lib/model/ameli.ts +86 -0
- package/lib/model/debats.mjs +43 -0
- package/lib/model/debats.ts +68 -0
- package/lib/model/dosleg.mjs +163 -0
- package/lib/model/dosleg.ts +204 -0
- package/lib/model/index.mjs +4 -0
- package/lib/model/index.ts +13 -0
- package/lib/model/questions.d.ts +0 -20
- package/lib/model/questions.js +1 -32
- package/lib/model/questions.mjs +76 -0
- package/lib/model/questions.ts +102 -0
- package/lib/model/sens.mjs +339 -0
- package/lib/model/sens.ts +432 -0
- package/lib/model/texte.mjs +156 -0
- package/lib/model/texte.ts +174 -0
- package/lib/raw_types/ameli.d.ts +20 -0
- package/lib/raw_types/questions.d.ts +4 -70
- package/lib/raw_types_kysely/ameli.d.ts +915 -0
- package/lib/raw_types_kysely/ameli.js +7 -0
- package/lib/raw_types_kysely/ameli.mjs +5 -0
- package/lib/raw_types_kysely/ameli.ts +951 -0
- package/lib/raw_types_kysely/debats.d.ts +207 -0
- package/lib/raw_types_kysely/debats.js +7 -0
- package/lib/raw_types_kysely/debats.mjs +5 -0
- package/lib/raw_types_kysely/debats.ts +222 -0
- package/lib/raw_types_kysely/dosleg.d.ts +3532 -0
- package/lib/raw_types_kysely/dosleg.js +7 -0
- package/lib/raw_types_kysely/dosleg.mjs +5 -0
- package/lib/raw_types_kysely/dosleg.ts +3621 -0
- package/lib/raw_types_kysely/questions.d.ts +414 -0
- package/lib/raw_types_kysely/questions.js +7 -0
- package/lib/raw_types_kysely/questions.mjs +5 -0
- package/lib/raw_types_kysely/questions.ts +426 -0
- package/lib/raw_types_kysely/sens.d.ts +4394 -0
- package/lib/raw_types_kysely/sens.js +7 -0
- package/lib/raw_types_kysely/sens.mjs +5 -0
- package/lib/raw_types_kysely/sens.ts +4499 -0
- package/lib/raw_types_schemats/ameli.mjs +2 -0
- package/lib/raw_types_schemats/ameli.ts +601 -0
- package/lib/raw_types_schemats/debats.mjs +2 -0
- package/lib/raw_types_schemats/debats.ts +145 -0
- package/lib/raw_types_schemats/dosleg.mjs +2 -0
- package/lib/raw_types_schemats/dosleg.ts +2193 -0
- package/lib/raw_types_schemats/questions.mjs +2 -0
- package/lib/raw_types_schemats/questions.ts +249 -0
- package/lib/raw_types_schemats/sens.mjs +2 -0
- package/lib/raw_types_schemats/sens.ts +2907 -0
- package/lib/scripts/convert_data.mjs +95 -0
- package/lib/scripts/convert_data.ts +119 -0
- package/lib/scripts/data-download.d.ts +1 -0
- package/lib/scripts/data-download.js +9 -0
- package/lib/scripts/datautil.mjs +16 -0
- package/lib/scripts/datautil.ts +19 -0
- package/lib/scripts/images/transparent_150x192.jpg +0 -0
- package/lib/scripts/images/transparent_155x225.jpg +0 -0
- package/lib/scripts/parse_textes.mjs +38 -0
- package/lib/scripts/parse_textes.ts +52 -0
- package/lib/scripts/retrieve_documents.mjs +243 -0
- package/lib/scripts/retrieve_documents.ts +279 -0
- package/lib/scripts/retrieve_open_data.js +11 -9
- package/lib/scripts/retrieve_open_data.mjs +214 -0
- package/lib/scripts/retrieve_open_data.ts +261 -0
- package/lib/scripts/retrieve_senateurs_photos.mjs +147 -0
- package/lib/scripts/retrieve_senateurs_photos.ts +177 -0
- package/lib/scripts/retrieve_textes.d.ts +1 -0
- package/lib/scripts/retrieve_textes.mjs +165 -0
- package/lib/scripts/retrieve_textes.ts +79 -0
- package/lib/scripts/shared/cli_helpers.ts +36 -0
- package/lib/scripts/shared/util.ts +33 -0
- package/lib/strings.mjs +18 -0
- package/lib/strings.ts +26 -0
- package/lib/types/ameli.mjs +13 -0
- package/lib/types/ameli.ts +21 -0
- package/lib/types/debats.mjs +2 -0
- package/lib/types/debats.ts +6 -0
- package/lib/types/dosleg.mjs +151 -0
- package/lib/types/dosleg.ts +284 -0
- package/lib/types/questions.mjs +1 -0
- package/lib/types/questions.ts +3 -0
- package/lib/types/sens.mjs +1 -0
- package/lib/types/sens.ts +12 -0
- package/lib/types/sessions.mjs +43 -0
- package/lib/types/sessions.ts +42 -0
- package/lib/types/texte.mjs +16 -0
- package/lib/types/texte.ts +66 -0
- package/lib/typings/windows-1252.d.js +2 -0
- package/lib/typings/windows-1252.d.mjs +2 -0
- package/lib/typings/windows-1252.d.ts +11 -0
- package/lib/validators/config.mjs +54 -0
- package/lib/validators/config.ts +79 -0
- package/lib/validators/senat.mjs +24 -0
- package/lib/validators/senat.ts +26 -0
- package/package.json +6 -4
|
@@ -0,0 +1,2193 @@
|
|
|
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/dosleg -t amescr -t ass -t aud -t auteur -t ble -t bur -t catrap -t com -t corscr -t date_seance -t deccoc -t delega -t denrap -t designorg -t doc -t docatt -t docsea -t dpt -t dptele -t ecr -t elusen -t etadebman -t etafinman -t etaloi -t etasen -t evtsea -t foncom -t fondelega -t fongrppol -t fonmemcom -t fonmemdelega -t fonmemgrppol -t forpub -t gen -t grppol -t lecass -t lecassrap -t lecture -t libcom -t libdelega -t libgrppol -t lnkrap -t loi -t loithe -t memcom -t memdelega -t memgrppol -t natloi -t org -t orgnomhis -t orippr -t oritxt -t posvot -t qua -t qua_sen -t rap -t raporg -t rapthe -t rolsig -t scr -t sen -t senbur -t sennom -t ses -t stavot -t texte -t texte_ancien -t the -t titsen -t typapppol -t typatt -t typaut -t typdoc -t typevtsea -t typlec -t typloi -t typorg -t typorg_sen -t typrap -t typtxt -t typurl -t votsen -s public
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
export namespace amescrFields {
|
|
12
|
+
export type amescrnum = string
|
|
13
|
+
export type scrnum = number
|
|
14
|
+
export type sesann = number
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface amescr {
|
|
18
|
+
amescrnum: amescrFields.amescrnum
|
|
19
|
+
scrnum: amescrFields.scrnum
|
|
20
|
+
sesann: amescrFields.sesann
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export namespace assFields {
|
|
24
|
+
export type codass = string
|
|
25
|
+
export type libass = string
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export interface ass {
|
|
29
|
+
codass: assFields.codass
|
|
30
|
+
libass: assFields.libass
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export namespace audFields {
|
|
34
|
+
export type audcle = number
|
|
35
|
+
export type auddat = Date
|
|
36
|
+
export type audtit = string
|
|
37
|
+
export type audurl = string
|
|
38
|
+
export type lecassidt = string
|
|
39
|
+
export type orgcod = string
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export interface aud {
|
|
43
|
+
audcle: audFields.audcle
|
|
44
|
+
auddat: audFields.auddat
|
|
45
|
+
audtit: audFields.audtit
|
|
46
|
+
audurl: audFields.audurl
|
|
47
|
+
lecassidt: audFields.lecassidt
|
|
48
|
+
orgcod: audFields.orgcod
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export namespace auteurFields {
|
|
52
|
+
export type autcod = string
|
|
53
|
+
export type autfct = string | null
|
|
54
|
+
export type autmat = string | null
|
|
55
|
+
export type datdeb = Date | null
|
|
56
|
+
export type datfin = Date | null
|
|
57
|
+
export type grpapp = string | null
|
|
58
|
+
export type grprat = string | null
|
|
59
|
+
export type nomtec = string
|
|
60
|
+
export type nomuse = string
|
|
61
|
+
export type prenom = string | null
|
|
62
|
+
export type quacod = string
|
|
63
|
+
export type senfem = string | null
|
|
64
|
+
export type typautcod = string
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export interface auteur {
|
|
68
|
+
autcod: auteurFields.autcod
|
|
69
|
+
autfct: auteurFields.autfct
|
|
70
|
+
autmat: auteurFields.autmat
|
|
71
|
+
datdeb: auteurFields.datdeb
|
|
72
|
+
datfin: auteurFields.datfin
|
|
73
|
+
grpapp: auteurFields.grpapp
|
|
74
|
+
grprat: auteurFields.grprat
|
|
75
|
+
nomtec: auteurFields.nomtec
|
|
76
|
+
nomuse: auteurFields.nomuse
|
|
77
|
+
prenom: auteurFields.prenom
|
|
78
|
+
quacod: auteurFields.quacod
|
|
79
|
+
senfem: auteurFields.senfem
|
|
80
|
+
typautcod: auteurFields.typautcod
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export namespace bleFields {
|
|
84
|
+
export type blecod = string
|
|
85
|
+
export type blelib = string
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export interface ble {
|
|
89
|
+
blecod: bleFields.blecod
|
|
90
|
+
blelib: bleFields.blelib
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export namespace burFields {
|
|
94
|
+
export type burcod = string
|
|
95
|
+
export type burlib = string | null
|
|
96
|
+
export type burlibfem = string | null
|
|
97
|
+
export type burlibfemplu = string | null
|
|
98
|
+
export type burlibhon = string | null
|
|
99
|
+
export type burlibhonfem = string | null
|
|
100
|
+
export type burlibhonplu = string | null
|
|
101
|
+
export type burlibplu = string | null
|
|
102
|
+
export type burlic = string | null
|
|
103
|
+
export type burlicfem = string | null
|
|
104
|
+
export type burlicfemplu = string | null
|
|
105
|
+
export type burlicplu = string | null
|
|
106
|
+
export type burlil = string | null
|
|
107
|
+
export type burlilfem = string | null
|
|
108
|
+
export type burlilfemplu = string | null
|
|
109
|
+
export type burlilplu = string | null
|
|
110
|
+
export type burnumtri = number | null
|
|
111
|
+
export type syscredat = Date | null
|
|
112
|
+
export type sysmajdat = Date | null
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
export interface bur {
|
|
116
|
+
burcod: burFields.burcod
|
|
117
|
+
burlib: burFields.burlib
|
|
118
|
+
burlibfem: burFields.burlibfem
|
|
119
|
+
burlibfemplu: burFields.burlibfemplu
|
|
120
|
+
burlibhon: burFields.burlibhon
|
|
121
|
+
burlibhonfem: burFields.burlibhonfem
|
|
122
|
+
burlibhonplu: burFields.burlibhonplu
|
|
123
|
+
burlibplu: burFields.burlibplu
|
|
124
|
+
burlic: burFields.burlic
|
|
125
|
+
burlicfem: burFields.burlicfem
|
|
126
|
+
burlicfemplu: burFields.burlicfemplu
|
|
127
|
+
burlicplu: burFields.burlicplu
|
|
128
|
+
burlil: burFields.burlil
|
|
129
|
+
burlilfem: burFields.burlilfem
|
|
130
|
+
burlilfemplu: burFields.burlilfemplu
|
|
131
|
+
burlilplu: burFields.burlilplu
|
|
132
|
+
burnumtri: burFields.burnumtri
|
|
133
|
+
syscredat: burFields.syscredat
|
|
134
|
+
sysmajdat: burFields.sysmajdat
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
export namespace catrapFields {
|
|
138
|
+
export type catrapcod = string
|
|
139
|
+
export type catraplib = string
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
export interface catrap {
|
|
143
|
+
catrapcod: catrapFields.catrapcod
|
|
144
|
+
catraplib: catrapFields.catraplib
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
export namespace comFields {
|
|
148
|
+
export type comcodameli = string | null
|
|
149
|
+
export type comlibameli = string | null
|
|
150
|
+
export type comlilmin = string | null
|
|
151
|
+
export type divcod = string | null
|
|
152
|
+
export type evelib = string | null
|
|
153
|
+
export type evelic = string | null
|
|
154
|
+
export type evelil = string | null
|
|
155
|
+
export type eveobs = string | null
|
|
156
|
+
export type orgart = string | null
|
|
157
|
+
export type orgcod = string
|
|
158
|
+
export type orgdatcre = Date | null
|
|
159
|
+
export type orgdatfin = Date | null
|
|
160
|
+
export type orgnumtie = string | null
|
|
161
|
+
export type orgnumtri = number | null
|
|
162
|
+
export type orgurlcmp = string | null
|
|
163
|
+
export type orgurlsim = string | null
|
|
164
|
+
export type syscredat = Date | null
|
|
165
|
+
export type sysmajdat = Date | null
|
|
166
|
+
export type temvalcod = string | null
|
|
167
|
+
export type typorgcod = string
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
export interface com {
|
|
171
|
+
comcodameli: comFields.comcodameli
|
|
172
|
+
comlibameli: comFields.comlibameli
|
|
173
|
+
comlilmin: comFields.comlilmin
|
|
174
|
+
divcod: comFields.divcod
|
|
175
|
+
evelib: comFields.evelib
|
|
176
|
+
evelic: comFields.evelic
|
|
177
|
+
evelil: comFields.evelil
|
|
178
|
+
eveobs: comFields.eveobs
|
|
179
|
+
orgart: comFields.orgart
|
|
180
|
+
orgcod: comFields.orgcod
|
|
181
|
+
orgdatcre: comFields.orgdatcre
|
|
182
|
+
orgdatfin: comFields.orgdatfin
|
|
183
|
+
orgnumtie: comFields.orgnumtie
|
|
184
|
+
orgnumtri: comFields.orgnumtri
|
|
185
|
+
orgurlcmp: comFields.orgurlcmp
|
|
186
|
+
orgurlsim: comFields.orgurlsim
|
|
187
|
+
syscredat: comFields.syscredat
|
|
188
|
+
sysmajdat: comFields.sysmajdat
|
|
189
|
+
temvalcod: comFields.temvalcod
|
|
190
|
+
typorgcod: comFields.typorgcod
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
export namespace corscrFields {
|
|
194
|
+
export type corscrord = number | null
|
|
195
|
+
export type corscrtxt = string
|
|
196
|
+
export type corscrurl = string | null
|
|
197
|
+
export type scrnum = number
|
|
198
|
+
export type sesann = number
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
export interface corscr {
|
|
202
|
+
corscrord: corscrFields.corscrord
|
|
203
|
+
corscrtxt: corscrFields.corscrtxt
|
|
204
|
+
corscrurl: corscrFields.corscrurl
|
|
205
|
+
scrnum: corscrFields.scrnum
|
|
206
|
+
sesann: corscrFields.sesann
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
export namespace date_seanceFields {
|
|
210
|
+
export type code = number
|
|
211
|
+
export type date_s = Date | null
|
|
212
|
+
export type lecidt = string | null
|
|
213
|
+
export type statut = string | null
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
export interface date_seance {
|
|
217
|
+
code: date_seanceFields.code
|
|
218
|
+
date_s: date_seanceFields.date_s
|
|
219
|
+
lecidt: date_seanceFields.lecidt
|
|
220
|
+
statut: date_seanceFields.statut
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
export namespace deccocFields {
|
|
224
|
+
export type deccoccod = string
|
|
225
|
+
export type deccoclib = string
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
export interface deccoc {
|
|
229
|
+
deccoccod: deccocFields.deccoccod
|
|
230
|
+
deccoclib: deccocFields.deccoclib
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
export namespace delegaFields {
|
|
234
|
+
export type evelib = string | null
|
|
235
|
+
export type evelic = string | null
|
|
236
|
+
export type evelil = string | null
|
|
237
|
+
export type eveobs = string | null
|
|
238
|
+
export type orgart = string | null
|
|
239
|
+
export type orgcod = string
|
|
240
|
+
export type orgdatcre = Date | null
|
|
241
|
+
export type orgdatfin = Date | null
|
|
242
|
+
export type orgmemdep = string | null
|
|
243
|
+
export type orgmoddes = string | null
|
|
244
|
+
export type orgnumtie = string | null
|
|
245
|
+
export type orgnumtri = number | null
|
|
246
|
+
export type orgregjur = string | null
|
|
247
|
+
export type orgurlcmp = string | null
|
|
248
|
+
export type orgurlsim = string | null
|
|
249
|
+
export type syscredat = Date | null
|
|
250
|
+
export type sysmajdat = Date | null
|
|
251
|
+
export type temvalcod = string | null
|
|
252
|
+
export type typorgcod = string
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
export interface delega {
|
|
256
|
+
evelib: delegaFields.evelib
|
|
257
|
+
evelic: delegaFields.evelic
|
|
258
|
+
evelil: delegaFields.evelil
|
|
259
|
+
eveobs: delegaFields.eveobs
|
|
260
|
+
orgart: delegaFields.orgart
|
|
261
|
+
orgcod: delegaFields.orgcod
|
|
262
|
+
orgdatcre: delegaFields.orgdatcre
|
|
263
|
+
orgdatfin: delegaFields.orgdatfin
|
|
264
|
+
orgmemdep: delegaFields.orgmemdep
|
|
265
|
+
orgmoddes: delegaFields.orgmoddes
|
|
266
|
+
orgnumtie: delegaFields.orgnumtie
|
|
267
|
+
orgnumtri: delegaFields.orgnumtri
|
|
268
|
+
orgregjur: delegaFields.orgregjur
|
|
269
|
+
orgurlcmp: delegaFields.orgurlcmp
|
|
270
|
+
orgurlsim: delegaFields.orgurlsim
|
|
271
|
+
syscredat: delegaFields.syscredat
|
|
272
|
+
sysmajdat: delegaFields.sysmajdat
|
|
273
|
+
temvalcod: delegaFields.temvalcod
|
|
274
|
+
typorgcod: delegaFields.typorgcod
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
export namespace denrapFields {
|
|
278
|
+
export type coddenrap = string
|
|
279
|
+
export type denrapmin = string | null
|
|
280
|
+
export type denrapstymin = string | null
|
|
281
|
+
export type denraptit = string | null
|
|
282
|
+
export type gencod = string
|
|
283
|
+
export type libdenrap = string
|
|
284
|
+
export type ordre = number | null
|
|
285
|
+
export type solnatrapcod = string | null
|
|
286
|
+
export type typraprap = string
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
export interface denrap {
|
|
290
|
+
coddenrap: denrapFields.coddenrap
|
|
291
|
+
denrapmin: denrapFields.denrapmin
|
|
292
|
+
denrapstymin: denrapFields.denrapstymin
|
|
293
|
+
denraptit: denrapFields.denraptit
|
|
294
|
+
gencod: denrapFields.gencod
|
|
295
|
+
libdenrap: denrapFields.libdenrap
|
|
296
|
+
ordre: denrapFields.ordre
|
|
297
|
+
solnatrapcod: denrapFields.solnatrapcod
|
|
298
|
+
typraprap: denrapFields.typraprap
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
export namespace designorgFields {
|
|
302
|
+
export type designcod = string
|
|
303
|
+
export type designlib = string | null
|
|
304
|
+
export type designlibfem = string | null
|
|
305
|
+
export type designlic = string | null
|
|
306
|
+
export type designlicfem = string | null
|
|
307
|
+
export type designlil = string | null
|
|
308
|
+
export type designlilfem = string | null
|
|
309
|
+
export type designnumtri = number | null
|
|
310
|
+
export type evelib = string | null
|
|
311
|
+
export type evelic = string | null
|
|
312
|
+
export type evelil = string | null
|
|
313
|
+
export type eveobs = string | null
|
|
314
|
+
export type syscredat = Date | null
|
|
315
|
+
export type sysmajdat = Date | null
|
|
316
|
+
export type temvalcod = string | null
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
export interface designorg {
|
|
320
|
+
designcod: designorgFields.designcod
|
|
321
|
+
designlib: designorgFields.designlib
|
|
322
|
+
designlibfem: designorgFields.designlibfem
|
|
323
|
+
designlic: designorgFields.designlic
|
|
324
|
+
designlicfem: designorgFields.designlicfem
|
|
325
|
+
designlil: designorgFields.designlil
|
|
326
|
+
designlilfem: designorgFields.designlilfem
|
|
327
|
+
designnumtri: designorgFields.designnumtri
|
|
328
|
+
evelib: designorgFields.evelib
|
|
329
|
+
evelic: designorgFields.evelic
|
|
330
|
+
evelil: designorgFields.evelil
|
|
331
|
+
eveobs: designorgFields.eveobs
|
|
332
|
+
syscredat: designorgFields.syscredat
|
|
333
|
+
sysmajdat: designorgFields.sysmajdat
|
|
334
|
+
temvalcod: designorgFields.temvalcod
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
export namespace docFields {
|
|
338
|
+
export type date_depot = Date | null
|
|
339
|
+
export type docdat = Date | null
|
|
340
|
+
export type docdatsea = Date | null
|
|
341
|
+
export type docidt = number
|
|
342
|
+
export type docint = string | null
|
|
343
|
+
export type docnum = number | null
|
|
344
|
+
export type doctitcou = string | null
|
|
345
|
+
export type docurl = string | null
|
|
346
|
+
export type lecidt = string | null
|
|
347
|
+
export type sesann = number | null
|
|
348
|
+
export type typdoccod = string | null
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
export interface doc {
|
|
352
|
+
date_depot: docFields.date_depot
|
|
353
|
+
docdat: docFields.docdat
|
|
354
|
+
docdatsea: docFields.docdatsea
|
|
355
|
+
docidt: docFields.docidt
|
|
356
|
+
docint: docFields.docint
|
|
357
|
+
docnum: docFields.docnum
|
|
358
|
+
doctitcou: docFields.doctitcou
|
|
359
|
+
docurl: docFields.docurl
|
|
360
|
+
lecidt: docFields.lecidt
|
|
361
|
+
sesann: docFields.sesann
|
|
362
|
+
typdoccod: docFields.typdoccod
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
export namespace docattFields {
|
|
366
|
+
export type docattcle = number
|
|
367
|
+
export type docatturl = string | null
|
|
368
|
+
export type rapcod = number
|
|
369
|
+
export type typattcod = string
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
export interface docatt {
|
|
373
|
+
docattcle: docattFields.docattcle
|
|
374
|
+
docatturl: docattFields.docatturl
|
|
375
|
+
rapcod: docattFields.rapcod
|
|
376
|
+
typattcod: docattFields.typattcod
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
export namespace docseaFields {
|
|
380
|
+
export type docseaord = number | null
|
|
381
|
+
export type docseaurl = string | null
|
|
382
|
+
export type docseaurlapr = string | null
|
|
383
|
+
export type docseaurlava = string | null
|
|
384
|
+
export type docseaurltxt = string | null
|
|
385
|
+
export type evtseacle = number
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
export interface docsea {
|
|
389
|
+
docseaord: docseaFields.docseaord
|
|
390
|
+
docseaurl: docseaFields.docseaurl
|
|
391
|
+
docseaurlapr: docseaFields.docseaurlapr
|
|
392
|
+
docseaurlava: docseaFields.docseaurlava
|
|
393
|
+
docseaurltxt: docseaFields.docseaurltxt
|
|
394
|
+
evtseacle: docseaFields.evtseacle
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
export namespace dptFields {
|
|
398
|
+
export type dptart = string | null
|
|
399
|
+
export type dptcmt = string | null
|
|
400
|
+
export type dptcod = string
|
|
401
|
+
export type dptdatdeb = Date | null
|
|
402
|
+
export type dptdatfin = Date | null
|
|
403
|
+
export type dptlib = string
|
|
404
|
+
export type dptlibtri = string | null
|
|
405
|
+
export type dptlic = string | null
|
|
406
|
+
export type dptmodscrsen = string | null
|
|
407
|
+
export type dptnbrsen = number | null
|
|
408
|
+
export type dptnum = number
|
|
409
|
+
export type dptnumtri = number
|
|
410
|
+
export type dptser = string
|
|
411
|
+
export type dptser2004 = string | null
|
|
412
|
+
export type dpturlcmp = string | null
|
|
413
|
+
export type evelib = string | null
|
|
414
|
+
export type evelic = string | null
|
|
415
|
+
export type evelil = string | null
|
|
416
|
+
export type evetempub = string | null
|
|
417
|
+
export type regcod = string
|
|
418
|
+
export type syscredat = Date | null
|
|
419
|
+
export type sysmajdat = Date | null
|
|
420
|
+
export type temvalcod = string | null
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
export interface dpt {
|
|
424
|
+
dptart: dptFields.dptart
|
|
425
|
+
dptcmt: dptFields.dptcmt
|
|
426
|
+
dptcod: dptFields.dptcod
|
|
427
|
+
dptdatdeb: dptFields.dptdatdeb
|
|
428
|
+
dptdatfin: dptFields.dptdatfin
|
|
429
|
+
dptlib: dptFields.dptlib
|
|
430
|
+
dptlibtri: dptFields.dptlibtri
|
|
431
|
+
dptlic: dptFields.dptlic
|
|
432
|
+
dptmodscrsen: dptFields.dptmodscrsen
|
|
433
|
+
dptnbrsen: dptFields.dptnbrsen
|
|
434
|
+
dptnum: dptFields.dptnum
|
|
435
|
+
dptnumtri: dptFields.dptnumtri
|
|
436
|
+
dptser: dptFields.dptser
|
|
437
|
+
dptser2004: dptFields.dptser2004
|
|
438
|
+
dpturlcmp: dptFields.dpturlcmp
|
|
439
|
+
evelib: dptFields.evelib
|
|
440
|
+
evelic: dptFields.evelic
|
|
441
|
+
evelil: dptFields.evelil
|
|
442
|
+
evetempub: dptFields.evetempub
|
|
443
|
+
regcod: dptFields.regcod
|
|
444
|
+
syscredat: dptFields.syscredat
|
|
445
|
+
sysmajdat: dptFields.sysmajdat
|
|
446
|
+
temvalcod: dptFields.temvalcod
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
export namespace dpteleFields {
|
|
450
|
+
export type dptelecmt = string | null
|
|
451
|
+
export type dpteleid = number
|
|
452
|
+
export type dptelenbrsie = number | null
|
|
453
|
+
export type dptelenbrsiepvr = number | null
|
|
454
|
+
export type dptnum = number
|
|
455
|
+
export type eleid = number
|
|
456
|
+
export type participaidt1 = number | null
|
|
457
|
+
export type participaidt2 = number | null
|
|
458
|
+
export type syscredat = Date | null
|
|
459
|
+
export type sysmajdat = Date | null
|
|
460
|
+
export type typelecod = string
|
|
461
|
+
export type valid2cod = string
|
|
462
|
+
export type validcod = string
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
export interface dptele {
|
|
466
|
+
dptelecmt: dpteleFields.dptelecmt
|
|
467
|
+
dpteleid: dpteleFields.dpteleid
|
|
468
|
+
dptelenbrsie: dpteleFields.dptelenbrsie
|
|
469
|
+
dptelenbrsiepvr: dpteleFields.dptelenbrsiepvr
|
|
470
|
+
dptnum: dpteleFields.dptnum
|
|
471
|
+
eleid: dpteleFields.eleid
|
|
472
|
+
participaidt1: dpteleFields.participaidt1
|
|
473
|
+
participaidt2: dpteleFields.participaidt2
|
|
474
|
+
syscredat: dpteleFields.syscredat
|
|
475
|
+
sysmajdat: dpteleFields.sysmajdat
|
|
476
|
+
typelecod: dpteleFields.typelecod
|
|
477
|
+
valid2cod: dpteleFields.valid2cod
|
|
478
|
+
validcod: dpteleFields.validcod
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
export namespace ecrFields {
|
|
482
|
+
export type autcod = string | null
|
|
483
|
+
export type docidt = number | null
|
|
484
|
+
export type ecrnum = number
|
|
485
|
+
export type ecrnumtri = number
|
|
486
|
+
export type ecrqua = string | null
|
|
487
|
+
export type rapcod = number | null
|
|
488
|
+
export type signataire = string | null
|
|
489
|
+
export type texcod = number | null
|
|
490
|
+
export type typedoc = string | null
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
export interface ecr {
|
|
494
|
+
autcod: ecrFields.autcod
|
|
495
|
+
docidt: ecrFields.docidt
|
|
496
|
+
ecrnum: ecrFields.ecrnum
|
|
497
|
+
ecrnumtri: ecrFields.ecrnumtri
|
|
498
|
+
ecrqua: ecrFields.ecrqua
|
|
499
|
+
rapcod: ecrFields.rapcod
|
|
500
|
+
signataire: ecrFields.signataire
|
|
501
|
+
texcod: ecrFields.texcod
|
|
502
|
+
typedoc: ecrFields.typedoc
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
export namespace elusenFields {
|
|
506
|
+
export type dptnum = number
|
|
507
|
+
export type eluanndeb = number | null
|
|
508
|
+
export type eluannfin = number | null
|
|
509
|
+
export type eludatcum = Date | null
|
|
510
|
+
export type eludatdeb = Date | null
|
|
511
|
+
export type eludatelu = Date | null
|
|
512
|
+
export type eludatfin = Date | null
|
|
513
|
+
export type eluid = number
|
|
514
|
+
export type etadebmancod = string
|
|
515
|
+
export type etafinmancod = string | null
|
|
516
|
+
export type evelib = string | null
|
|
517
|
+
export type evelic = string | null
|
|
518
|
+
export type evelil = string | null
|
|
519
|
+
export type senmat = string
|
|
520
|
+
export type syscredat = Date | null
|
|
521
|
+
export type sysmajdat = Date | null
|
|
522
|
+
export type temvalcod = string | null
|
|
523
|
+
export type turelucod = string
|
|
524
|
+
export type typmancod = string | null
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
export interface elusen {
|
|
528
|
+
dptnum: elusenFields.dptnum
|
|
529
|
+
eluanndeb: elusenFields.eluanndeb
|
|
530
|
+
eluannfin: elusenFields.eluannfin
|
|
531
|
+
eludatcum: elusenFields.eludatcum
|
|
532
|
+
eludatdeb: elusenFields.eludatdeb
|
|
533
|
+
eludatelu: elusenFields.eludatelu
|
|
534
|
+
eludatfin: elusenFields.eludatfin
|
|
535
|
+
eluid: elusenFields.eluid
|
|
536
|
+
etadebmancod: elusenFields.etadebmancod
|
|
537
|
+
etafinmancod: elusenFields.etafinmancod
|
|
538
|
+
evelib: elusenFields.evelib
|
|
539
|
+
evelic: elusenFields.evelic
|
|
540
|
+
evelil: elusenFields.evelil
|
|
541
|
+
senmat: elusenFields.senmat
|
|
542
|
+
syscredat: elusenFields.syscredat
|
|
543
|
+
sysmajdat: elusenFields.sysmajdat
|
|
544
|
+
temvalcod: elusenFields.temvalcod
|
|
545
|
+
turelucod: elusenFields.turelucod
|
|
546
|
+
typmancod: elusenFields.typmancod
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
export namespace etadebmanFields {
|
|
550
|
+
export type etadebmancod = string
|
|
551
|
+
export type etadebmanlib = string
|
|
552
|
+
export type etadebmanlibfem = string | null
|
|
553
|
+
export type etadebmanlibplu = string | null
|
|
554
|
+
export type etadebmanlic = string
|
|
555
|
+
export type etadebmanlicfem = string | null
|
|
556
|
+
export type etadebmanlicplu = string | null
|
|
557
|
+
export type etadebmanlil = string | null
|
|
558
|
+
export type etadebmanlilfem = string | null
|
|
559
|
+
export type etadebmanlilplu = string | null
|
|
560
|
+
export type etadebmannumtri = number | null
|
|
561
|
+
export type syscredat = Date | null
|
|
562
|
+
export type sysmajdat = Date | null
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
export interface etadebman {
|
|
566
|
+
etadebmancod: etadebmanFields.etadebmancod
|
|
567
|
+
etadebmanlib: etadebmanFields.etadebmanlib
|
|
568
|
+
etadebmanlibfem: etadebmanFields.etadebmanlibfem
|
|
569
|
+
etadebmanlibplu: etadebmanFields.etadebmanlibplu
|
|
570
|
+
etadebmanlic: etadebmanFields.etadebmanlic
|
|
571
|
+
etadebmanlicfem: etadebmanFields.etadebmanlicfem
|
|
572
|
+
etadebmanlicplu: etadebmanFields.etadebmanlicplu
|
|
573
|
+
etadebmanlil: etadebmanFields.etadebmanlil
|
|
574
|
+
etadebmanlilfem: etadebmanFields.etadebmanlilfem
|
|
575
|
+
etadebmanlilplu: etadebmanFields.etadebmanlilplu
|
|
576
|
+
etadebmannumtri: etadebmanFields.etadebmannumtri
|
|
577
|
+
syscredat: etadebmanFields.syscredat
|
|
578
|
+
sysmajdat: etadebmanFields.sysmajdat
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
export namespace etafinmanFields {
|
|
582
|
+
export type etafinman = string
|
|
583
|
+
export type etafinmancod = string
|
|
584
|
+
export type etafinmancodsirpas = string | null
|
|
585
|
+
export type etafinmanlibfem = string | null
|
|
586
|
+
export type etafinmanlibplu = string | null
|
|
587
|
+
export type etafinmanlic = string
|
|
588
|
+
export type etafinmanlicfem = string | null
|
|
589
|
+
export type etafinmanlicplu = string | null
|
|
590
|
+
export type etafinmanlil = string | null
|
|
591
|
+
export type etafinmanlilfem = string | null
|
|
592
|
+
export type etafinmanlilplu = string | null
|
|
593
|
+
export type etafinmannumtri = number | null
|
|
594
|
+
export type etafinmantemsirpas = string | null
|
|
595
|
+
export type syscredat = Date | null
|
|
596
|
+
export type sysmajdat = Date | null
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
export interface etafinman {
|
|
600
|
+
etafinman: etafinmanFields.etafinman
|
|
601
|
+
etafinmancod: etafinmanFields.etafinmancod
|
|
602
|
+
etafinmancodsirpas: etafinmanFields.etafinmancodsirpas
|
|
603
|
+
etafinmanlibfem: etafinmanFields.etafinmanlibfem
|
|
604
|
+
etafinmanlibplu: etafinmanFields.etafinmanlibplu
|
|
605
|
+
etafinmanlic: etafinmanFields.etafinmanlic
|
|
606
|
+
etafinmanlicfem: etafinmanFields.etafinmanlicfem
|
|
607
|
+
etafinmanlicplu: etafinmanFields.etafinmanlicplu
|
|
608
|
+
etafinmanlil: etafinmanFields.etafinmanlil
|
|
609
|
+
etafinmanlilfem: etafinmanFields.etafinmanlilfem
|
|
610
|
+
etafinmanlilplu: etafinmanFields.etafinmanlilplu
|
|
611
|
+
etafinmannumtri: etafinmanFields.etafinmannumtri
|
|
612
|
+
etafinmantemsirpas: etafinmanFields.etafinmantemsirpas
|
|
613
|
+
syscredat: etafinmanFields.syscredat
|
|
614
|
+
sysmajdat: etafinmanFields.sysmajdat
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
export namespace etaloiFields {
|
|
618
|
+
export type etaloicod = string
|
|
619
|
+
export type etaloilib = string
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
export interface etaloi {
|
|
623
|
+
etaloicod: etaloiFields.etaloicod
|
|
624
|
+
etaloilib: etaloiFields.etaloilib
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
export namespace etasenFields {
|
|
628
|
+
export type etasencod = string
|
|
629
|
+
export type etasenlib = string | null
|
|
630
|
+
export type etasenlibfem = string | null
|
|
631
|
+
export type etasenlibplu = string | null
|
|
632
|
+
export type etasenlic = string
|
|
633
|
+
export type etasenlicfem = string | null
|
|
634
|
+
export type etasenlicplu = string | null
|
|
635
|
+
export type etasenlil = string | null
|
|
636
|
+
export type etasenlilfem = string | null
|
|
637
|
+
export type etasenlilplu = string | null
|
|
638
|
+
export type etasennumtri = number | null
|
|
639
|
+
export type syscredat = Date | null
|
|
640
|
+
export type sysmajdat = Date | null
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
export interface etasen {
|
|
644
|
+
etasencod: etasenFields.etasencod
|
|
645
|
+
etasenlib: etasenFields.etasenlib
|
|
646
|
+
etasenlibfem: etasenFields.etasenlibfem
|
|
647
|
+
etasenlibplu: etasenFields.etasenlibplu
|
|
648
|
+
etasenlic: etasenFields.etasenlic
|
|
649
|
+
etasenlicfem: etasenFields.etasenlicfem
|
|
650
|
+
etasenlicplu: etasenFields.etasenlicplu
|
|
651
|
+
etasenlil: etasenFields.etasenlil
|
|
652
|
+
etasenlilfem: etasenFields.etasenlilfem
|
|
653
|
+
etasenlilplu: etasenFields.etasenlilplu
|
|
654
|
+
etasennumtri: etasenFields.etasennumtri
|
|
655
|
+
syscredat: etasenFields.syscredat
|
|
656
|
+
sysmajdat: etasenFields.sysmajdat
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
export namespace evtseaFields {
|
|
660
|
+
export type evtseacle = number
|
|
661
|
+
export type evtseadat = Date | null
|
|
662
|
+
export type lecassidt = string
|
|
663
|
+
export type loicod = string | null
|
|
664
|
+
export type typevtcod = string
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
export interface evtsea {
|
|
668
|
+
evtseacle: evtseaFields.evtseacle
|
|
669
|
+
evtseadat: evtseaFields.evtseadat
|
|
670
|
+
lecassidt: evtseaFields.lecassidt
|
|
671
|
+
loicod: evtseaFields.loicod
|
|
672
|
+
typevtcod: evtseaFields.typevtcod
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
export namespace foncomFields {
|
|
676
|
+
export type foncomcod = string
|
|
677
|
+
export type foncomlib = string
|
|
678
|
+
export type foncomlibfem = string | null
|
|
679
|
+
export type foncomlibfemplu = string | null
|
|
680
|
+
export type foncomlibplu = string | null
|
|
681
|
+
export type foncomlic = string
|
|
682
|
+
export type foncomlicfem = string | null
|
|
683
|
+
export type foncomlicfemplu = string | null
|
|
684
|
+
export type foncomlicplu = string | null
|
|
685
|
+
export type foncomlil = string | null
|
|
686
|
+
export type foncomlilfem = string | null
|
|
687
|
+
export type foncomlilfemplu = string | null
|
|
688
|
+
export type foncomlilplu = string | null
|
|
689
|
+
export type foncomnumtri = number | null
|
|
690
|
+
export type syscredat = Date | null
|
|
691
|
+
export type sysmajdat = Date | null
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
export interface foncom {
|
|
695
|
+
foncomcod: foncomFields.foncomcod
|
|
696
|
+
foncomlib: foncomFields.foncomlib
|
|
697
|
+
foncomlibfem: foncomFields.foncomlibfem
|
|
698
|
+
foncomlibfemplu: foncomFields.foncomlibfemplu
|
|
699
|
+
foncomlibplu: foncomFields.foncomlibplu
|
|
700
|
+
foncomlic: foncomFields.foncomlic
|
|
701
|
+
foncomlicfem: foncomFields.foncomlicfem
|
|
702
|
+
foncomlicfemplu: foncomFields.foncomlicfemplu
|
|
703
|
+
foncomlicplu: foncomFields.foncomlicplu
|
|
704
|
+
foncomlil: foncomFields.foncomlil
|
|
705
|
+
foncomlilfem: foncomFields.foncomlilfem
|
|
706
|
+
foncomlilfemplu: foncomFields.foncomlilfemplu
|
|
707
|
+
foncomlilplu: foncomFields.foncomlilplu
|
|
708
|
+
foncomnumtri: foncomFields.foncomnumtri
|
|
709
|
+
syscredat: foncomFields.syscredat
|
|
710
|
+
sysmajdat: foncomFields.sysmajdat
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
export namespace fondelegaFields {
|
|
714
|
+
export type fondelcod = string
|
|
715
|
+
export type fondellib = string
|
|
716
|
+
export type fondellibfem = string | null
|
|
717
|
+
export type fondellibfemplu = string | null
|
|
718
|
+
export type fondellibplu = string | null
|
|
719
|
+
export type fondellic = string
|
|
720
|
+
export type fondellicfem = string | null
|
|
721
|
+
export type fondellicfemplu = string | null
|
|
722
|
+
export type fondellicplu = string | null
|
|
723
|
+
export type fondellil = string | null
|
|
724
|
+
export type fondellilfem = string | null
|
|
725
|
+
export type fondellilfemplu = string | null
|
|
726
|
+
export type fondellilplu = string | null
|
|
727
|
+
export type fondelnumtri = number | null
|
|
728
|
+
export type syscredat = Date | null
|
|
729
|
+
export type sysmajdat = Date | null
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
export interface fondelega {
|
|
733
|
+
fondelcod: fondelegaFields.fondelcod
|
|
734
|
+
fondellib: fondelegaFields.fondellib
|
|
735
|
+
fondellibfem: fondelegaFields.fondellibfem
|
|
736
|
+
fondellibfemplu: fondelegaFields.fondellibfemplu
|
|
737
|
+
fondellibplu: fondelegaFields.fondellibplu
|
|
738
|
+
fondellic: fondelegaFields.fondellic
|
|
739
|
+
fondellicfem: fondelegaFields.fondellicfem
|
|
740
|
+
fondellicfemplu: fondelegaFields.fondellicfemplu
|
|
741
|
+
fondellicplu: fondelegaFields.fondellicplu
|
|
742
|
+
fondellil: fondelegaFields.fondellil
|
|
743
|
+
fondellilfem: fondelegaFields.fondellilfem
|
|
744
|
+
fondellilfemplu: fondelegaFields.fondellilfemplu
|
|
745
|
+
fondellilplu: fondelegaFields.fondellilplu
|
|
746
|
+
fondelnumtri: fondelegaFields.fondelnumtri
|
|
747
|
+
syscredat: fondelegaFields.syscredat
|
|
748
|
+
sysmajdat: fondelegaFields.sysmajdat
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
export namespace fongrppolFields {
|
|
752
|
+
export type fongrppolcod = string
|
|
753
|
+
export type fongrppollib = string
|
|
754
|
+
export type fongrppollibfem = string | null
|
|
755
|
+
export type fongrppollibfemplu = string | null
|
|
756
|
+
export type fongrppollibplu = string | null
|
|
757
|
+
export type fongrppollic = string
|
|
758
|
+
export type fongrppollicfem = string | null
|
|
759
|
+
export type fongrppollicfemplu = string | null
|
|
760
|
+
export type fongrppollicplu = string | null
|
|
761
|
+
export type fongrppollil = string | null
|
|
762
|
+
export type fongrppollilfem = string | null
|
|
763
|
+
export type fongrppollilfemplu = string | null
|
|
764
|
+
export type fongrppollilplu = string | null
|
|
765
|
+
export type fongrppolnumtri = number | null
|
|
766
|
+
export type syscredat = Date | null
|
|
767
|
+
export type sysmajdat = Date | null
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
export interface fongrppol {
|
|
771
|
+
fongrppolcod: fongrppolFields.fongrppolcod
|
|
772
|
+
fongrppollib: fongrppolFields.fongrppollib
|
|
773
|
+
fongrppollibfem: fongrppolFields.fongrppollibfem
|
|
774
|
+
fongrppollibfemplu: fongrppolFields.fongrppollibfemplu
|
|
775
|
+
fongrppollibplu: fongrppolFields.fongrppollibplu
|
|
776
|
+
fongrppollic: fongrppolFields.fongrppollic
|
|
777
|
+
fongrppollicfem: fongrppolFields.fongrppollicfem
|
|
778
|
+
fongrppollicfemplu: fongrppolFields.fongrppollicfemplu
|
|
779
|
+
fongrppollicplu: fongrppolFields.fongrppollicplu
|
|
780
|
+
fongrppollil: fongrppolFields.fongrppollil
|
|
781
|
+
fongrppollilfem: fongrppolFields.fongrppollilfem
|
|
782
|
+
fongrppollilfemplu: fongrppolFields.fongrppollilfemplu
|
|
783
|
+
fongrppollilplu: fongrppolFields.fongrppollilplu
|
|
784
|
+
fongrppolnumtri: fongrppolFields.fongrppolnumtri
|
|
785
|
+
syscredat: fongrppolFields.syscredat
|
|
786
|
+
sysmajdat: fongrppolFields.sysmajdat
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
export namespace fonmemcomFields {
|
|
790
|
+
export type evelib = string | null
|
|
791
|
+
export type evelic = string | null
|
|
792
|
+
export type evelil = string | null
|
|
793
|
+
export type eveobs = string | null
|
|
794
|
+
export type evetempub = string | null
|
|
795
|
+
export type foncomcod = string
|
|
796
|
+
export type fonmemcomdatdeb = Date | null
|
|
797
|
+
export type fonmemcomdatfin = Date | null
|
|
798
|
+
export type fonmemcomid = number
|
|
799
|
+
export type fonmemcomrngprt = number | null
|
|
800
|
+
export type memcomid = number
|
|
801
|
+
export type syscredat = Date | null
|
|
802
|
+
export type sysmajdat = Date | null
|
|
803
|
+
export type temvalcod = string | null
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
export interface fonmemcom {
|
|
807
|
+
evelib: fonmemcomFields.evelib
|
|
808
|
+
evelic: fonmemcomFields.evelic
|
|
809
|
+
evelil: fonmemcomFields.evelil
|
|
810
|
+
eveobs: fonmemcomFields.eveobs
|
|
811
|
+
evetempub: fonmemcomFields.evetempub
|
|
812
|
+
foncomcod: fonmemcomFields.foncomcod
|
|
813
|
+
fonmemcomdatdeb: fonmemcomFields.fonmemcomdatdeb
|
|
814
|
+
fonmemcomdatfin: fonmemcomFields.fonmemcomdatfin
|
|
815
|
+
fonmemcomid: fonmemcomFields.fonmemcomid
|
|
816
|
+
fonmemcomrngprt: fonmemcomFields.fonmemcomrngprt
|
|
817
|
+
memcomid: fonmemcomFields.memcomid
|
|
818
|
+
syscredat: fonmemcomFields.syscredat
|
|
819
|
+
sysmajdat: fonmemcomFields.sysmajdat
|
|
820
|
+
temvalcod: fonmemcomFields.temvalcod
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
export namespace fonmemdelegaFields {
|
|
824
|
+
export type evelib = string | null
|
|
825
|
+
export type evelic = string | null
|
|
826
|
+
export type evelil = string | null
|
|
827
|
+
export type eveobs = string | null
|
|
828
|
+
export type evetempub = string | null
|
|
829
|
+
export type fondelcod = string
|
|
830
|
+
export type fonmemdeldatdeb = Date | null
|
|
831
|
+
export type fonmemdeldatfin = Date | null
|
|
832
|
+
export type fonmemdelid = number
|
|
833
|
+
export type fonmemdelrngele = number | null
|
|
834
|
+
export type memdelegaid = number
|
|
835
|
+
export type syscredat = Date | null
|
|
836
|
+
export type sysmajdat = Date | null
|
|
837
|
+
export type temvalcod = string | null
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
export interface fonmemdelega {
|
|
841
|
+
evelib: fonmemdelegaFields.evelib
|
|
842
|
+
evelic: fonmemdelegaFields.evelic
|
|
843
|
+
evelil: fonmemdelegaFields.evelil
|
|
844
|
+
eveobs: fonmemdelegaFields.eveobs
|
|
845
|
+
evetempub: fonmemdelegaFields.evetempub
|
|
846
|
+
fondelcod: fonmemdelegaFields.fondelcod
|
|
847
|
+
fonmemdeldatdeb: fonmemdelegaFields.fonmemdeldatdeb
|
|
848
|
+
fonmemdeldatfin: fonmemdelegaFields.fonmemdeldatfin
|
|
849
|
+
fonmemdelid: fonmemdelegaFields.fonmemdelid
|
|
850
|
+
fonmemdelrngele: fonmemdelegaFields.fonmemdelrngele
|
|
851
|
+
memdelegaid: fonmemdelegaFields.memdelegaid
|
|
852
|
+
syscredat: fonmemdelegaFields.syscredat
|
|
853
|
+
sysmajdat: fonmemdelegaFields.sysmajdat
|
|
854
|
+
temvalcod: fonmemdelegaFields.temvalcod
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
export namespace fonmemgrppolFields {
|
|
858
|
+
export type evelib = string | null
|
|
859
|
+
export type evelic = string | null
|
|
860
|
+
export type evelil = string | null
|
|
861
|
+
export type eveobs = string | null
|
|
862
|
+
export type evetempub = string | null
|
|
863
|
+
export type fongrppolcod = string
|
|
864
|
+
export type fonmemgrppoldatdeb = Date | null
|
|
865
|
+
export type fonmemgrppoldatfin = Date | null
|
|
866
|
+
export type fonmemgrppolid = number
|
|
867
|
+
export type memgrppolid = number
|
|
868
|
+
export type syscredat = Date | null
|
|
869
|
+
export type sysmajdat = Date | null
|
|
870
|
+
export type temvalcod = string | null
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
export interface fonmemgrppol {
|
|
874
|
+
evelib: fonmemgrppolFields.evelib
|
|
875
|
+
evelic: fonmemgrppolFields.evelic
|
|
876
|
+
evelil: fonmemgrppolFields.evelil
|
|
877
|
+
eveobs: fonmemgrppolFields.eveobs
|
|
878
|
+
evetempub: fonmemgrppolFields.evetempub
|
|
879
|
+
fongrppolcod: fonmemgrppolFields.fongrppolcod
|
|
880
|
+
fonmemgrppoldatdeb: fonmemgrppolFields.fonmemgrppoldatdeb
|
|
881
|
+
fonmemgrppoldatfin: fonmemgrppolFields.fonmemgrppoldatfin
|
|
882
|
+
fonmemgrppolid: fonmemgrppolFields.fonmemgrppolid
|
|
883
|
+
memgrppolid: fonmemgrppolFields.memgrppolid
|
|
884
|
+
syscredat: fonmemgrppolFields.syscredat
|
|
885
|
+
sysmajdat: fonmemgrppolFields.sysmajdat
|
|
886
|
+
temvalcod: fonmemgrppolFields.temvalcod
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
export namespace forpubFields {
|
|
890
|
+
export type forpubcod = string
|
|
891
|
+
export type forpublib = string
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
export interface forpub {
|
|
895
|
+
forpubcod: forpubFields.forpubcod
|
|
896
|
+
forpublib: forpubFields.forpublib
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
export namespace genFields {
|
|
900
|
+
export type gencod = string
|
|
901
|
+
export type genlib = string
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
export interface gen {
|
|
905
|
+
gencod: genFields.gencod
|
|
906
|
+
genlib: genFields.genlib
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
export namespace grppolFields {
|
|
910
|
+
export type evelib = string | null
|
|
911
|
+
export type evelic = string | null
|
|
912
|
+
export type evelil = string | null
|
|
913
|
+
export type evetempub = string | null
|
|
914
|
+
export type grppolart = string | null
|
|
915
|
+
export type grppolcod = string
|
|
916
|
+
export type grppolcodamelicou = string | null
|
|
917
|
+
export type grppolcodrepro = string | null
|
|
918
|
+
export type grppolcodscr = string | null
|
|
919
|
+
export type grppoldatcre = Date | null
|
|
920
|
+
export type grppoldatfin = Date | null
|
|
921
|
+
export type grppollibcou = string | null
|
|
922
|
+
export type grppolliccou = string | null
|
|
923
|
+
export type grppollilcou = string | null
|
|
924
|
+
export type grppolnumtri = number | null
|
|
925
|
+
export type grppolpre = string | null
|
|
926
|
+
export type grppolurlcmp = string | null
|
|
927
|
+
export type grppolurlsim = string | null
|
|
928
|
+
export type syscredat = Date | null
|
|
929
|
+
export type sysmajdat = Date | null
|
|
930
|
+
export type temvalcod = string | null
|
|
931
|
+
export type typorgcod = string
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
export interface grppol {
|
|
935
|
+
evelib: grppolFields.evelib
|
|
936
|
+
evelic: grppolFields.evelic
|
|
937
|
+
evelil: grppolFields.evelil
|
|
938
|
+
evetempub: grppolFields.evetempub
|
|
939
|
+
grppolart: grppolFields.grppolart
|
|
940
|
+
grppolcod: grppolFields.grppolcod
|
|
941
|
+
grppolcodamelicou: grppolFields.grppolcodamelicou
|
|
942
|
+
grppolcodrepro: grppolFields.grppolcodrepro
|
|
943
|
+
grppolcodscr: grppolFields.grppolcodscr
|
|
944
|
+
grppoldatcre: grppolFields.grppoldatcre
|
|
945
|
+
grppoldatfin: grppolFields.grppoldatfin
|
|
946
|
+
grppollibcou: grppolFields.grppollibcou
|
|
947
|
+
grppolliccou: grppolFields.grppolliccou
|
|
948
|
+
grppollilcou: grppolFields.grppollilcou
|
|
949
|
+
grppolnumtri: grppolFields.grppolnumtri
|
|
950
|
+
grppolpre: grppolFields.grppolpre
|
|
951
|
+
grppolurlcmp: grppolFields.grppolurlcmp
|
|
952
|
+
grppolurlsim: grppolFields.grppolurlsim
|
|
953
|
+
syscredat: grppolFields.syscredat
|
|
954
|
+
sysmajdat: grppolFields.sysmajdat
|
|
955
|
+
temvalcod: grppolFields.temvalcod
|
|
956
|
+
typorgcod: grppolFields.typorgcod
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
export namespace lecassFields {
|
|
960
|
+
export type aliasppr = string | null
|
|
961
|
+
export type codass = string
|
|
962
|
+
export type debatsurl = string | null
|
|
963
|
+
export type depot_only = string
|
|
964
|
+
export type lecassame = string | null
|
|
965
|
+
export type lecassameado = string | null
|
|
966
|
+
export type lecassameadodat = Date | null
|
|
967
|
+
export type lecassameadoses = number | null
|
|
968
|
+
export type lecassamecom = string | null
|
|
969
|
+
export type lecassamecomado = string | null
|
|
970
|
+
export type lecassamecomadodat = Date | null
|
|
971
|
+
export type lecassamecomadoses = number | null
|
|
972
|
+
export type lecassamecomdat = Date | null
|
|
973
|
+
export type lecassamedat = Date | null
|
|
974
|
+
export type lecassameses = number | null
|
|
975
|
+
export type lecassamesescom = number | null
|
|
976
|
+
export type lecassidt = string
|
|
977
|
+
export type lecidt = string
|
|
978
|
+
export type libppr = string | null
|
|
979
|
+
export type loiintmod = string | null
|
|
980
|
+
export type ordreass = number
|
|
981
|
+
export type orgcod = string | null
|
|
982
|
+
export type orippr = string | null
|
|
983
|
+
export type ptlnot = string | null
|
|
984
|
+
export type ptlnot2 = string | null
|
|
985
|
+
export type ptlnot3 = string | null
|
|
986
|
+
export type ptlnum = number | null
|
|
987
|
+
export type ptlnumcom = number | null
|
|
988
|
+
export type ptlnumcpl = string | null
|
|
989
|
+
export type ptlnumcpl2 = string | null
|
|
990
|
+
export type ptlnumcpl3 = string | null
|
|
991
|
+
export type ptlurl = string | null
|
|
992
|
+
export type ptlurl2 = string | null
|
|
993
|
+
export type ptlurl3 = string | null
|
|
994
|
+
export type ptlurlcom = string | null
|
|
995
|
+
export type reucom = string | null
|
|
996
|
+
export type sesann = number | null
|
|
997
|
+
export type sesppr = number | null
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
export interface lecass {
|
|
1001
|
+
aliasppr: lecassFields.aliasppr
|
|
1002
|
+
codass: lecassFields.codass
|
|
1003
|
+
debatsurl: lecassFields.debatsurl
|
|
1004
|
+
depot_only: lecassFields.depot_only
|
|
1005
|
+
lecassame: lecassFields.lecassame
|
|
1006
|
+
lecassameado: lecassFields.lecassameado
|
|
1007
|
+
lecassameadodat: lecassFields.lecassameadodat
|
|
1008
|
+
lecassameadoses: lecassFields.lecassameadoses
|
|
1009
|
+
lecassamecom: lecassFields.lecassamecom
|
|
1010
|
+
lecassamecomado: lecassFields.lecassamecomado
|
|
1011
|
+
lecassamecomadodat: lecassFields.lecassamecomadodat
|
|
1012
|
+
lecassamecomadoses: lecassFields.lecassamecomadoses
|
|
1013
|
+
lecassamecomdat: lecassFields.lecassamecomdat
|
|
1014
|
+
lecassamedat: lecassFields.lecassamedat
|
|
1015
|
+
lecassameses: lecassFields.lecassameses
|
|
1016
|
+
lecassamesescom: lecassFields.lecassamesescom
|
|
1017
|
+
lecassidt: lecassFields.lecassidt
|
|
1018
|
+
lecidt: lecassFields.lecidt
|
|
1019
|
+
libppr: lecassFields.libppr
|
|
1020
|
+
loiintmod: lecassFields.loiintmod
|
|
1021
|
+
ordreass: lecassFields.ordreass
|
|
1022
|
+
orgcod: lecassFields.orgcod
|
|
1023
|
+
orippr: lecassFields.orippr
|
|
1024
|
+
ptlnot: lecassFields.ptlnot
|
|
1025
|
+
ptlnot2: lecassFields.ptlnot2
|
|
1026
|
+
ptlnot3: lecassFields.ptlnot3
|
|
1027
|
+
ptlnum: lecassFields.ptlnum
|
|
1028
|
+
ptlnumcom: lecassFields.ptlnumcom
|
|
1029
|
+
ptlnumcpl: lecassFields.ptlnumcpl
|
|
1030
|
+
ptlnumcpl2: lecassFields.ptlnumcpl2
|
|
1031
|
+
ptlnumcpl3: lecassFields.ptlnumcpl3
|
|
1032
|
+
ptlurl: lecassFields.ptlurl
|
|
1033
|
+
ptlurl2: lecassFields.ptlurl2
|
|
1034
|
+
ptlurl3: lecassFields.ptlurl3
|
|
1035
|
+
ptlurlcom: lecassFields.ptlurlcom
|
|
1036
|
+
reucom: lecassFields.reucom
|
|
1037
|
+
sesann: lecassFields.sesann
|
|
1038
|
+
sesppr: lecassFields.sesppr
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
export namespace lecassrapFields {
|
|
1042
|
+
export type lecassidt = string
|
|
1043
|
+
export type lecassrapord = number | null
|
|
1044
|
+
export type rapcod = number
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
export interface lecassrap {
|
|
1048
|
+
lecassidt: lecassrapFields.lecassidt
|
|
1049
|
+
lecassrapord: lecassrapFields.lecassrapord
|
|
1050
|
+
rapcod: lecassrapFields.rapcod
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
export namespace lectureFields {
|
|
1054
|
+
export type leccom = string | null
|
|
1055
|
+
export type lecidt = string
|
|
1056
|
+
export type loicod = string
|
|
1057
|
+
export type typleccod = string
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
export interface lecture {
|
|
1061
|
+
leccom: lectureFields.leccom
|
|
1062
|
+
lecidt: lectureFields.lecidt
|
|
1063
|
+
loicod: lectureFields.loicod
|
|
1064
|
+
typleccod: lectureFields.typleccod
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
export namespace libcomFields {
|
|
1068
|
+
export type evelib = string | null
|
|
1069
|
+
export type evelic = string | null
|
|
1070
|
+
export type evelil = string | null
|
|
1071
|
+
export type eveobs = string | null
|
|
1072
|
+
export type libcomart = string | null
|
|
1073
|
+
export type libcomdatdeb = Date
|
|
1074
|
+
export type libcomdatfin = Date | null
|
|
1075
|
+
export type libcomid = number
|
|
1076
|
+
export type libcomlibameli = string | null
|
|
1077
|
+
export type libcomlilmin = string | null
|
|
1078
|
+
export type orgcod = string
|
|
1079
|
+
export type syscredat = Date | null
|
|
1080
|
+
export type sysmajdat = Date | null
|
|
1081
|
+
export type temvalcod = string | null
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
export interface libcom {
|
|
1085
|
+
evelib: libcomFields.evelib
|
|
1086
|
+
evelic: libcomFields.evelic
|
|
1087
|
+
evelil: libcomFields.evelil
|
|
1088
|
+
eveobs: libcomFields.eveobs
|
|
1089
|
+
libcomart: libcomFields.libcomart
|
|
1090
|
+
libcomdatdeb: libcomFields.libcomdatdeb
|
|
1091
|
+
libcomdatfin: libcomFields.libcomdatfin
|
|
1092
|
+
libcomid: libcomFields.libcomid
|
|
1093
|
+
libcomlibameli: libcomFields.libcomlibameli
|
|
1094
|
+
libcomlilmin: libcomFields.libcomlilmin
|
|
1095
|
+
orgcod: libcomFields.orgcod
|
|
1096
|
+
syscredat: libcomFields.syscredat
|
|
1097
|
+
sysmajdat: libcomFields.sysmajdat
|
|
1098
|
+
temvalcod: libcomFields.temvalcod
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
export namespace libdelegaFields {
|
|
1102
|
+
export type evelib = string | null
|
|
1103
|
+
export type evelic = string | null
|
|
1104
|
+
export type evelil = string | null
|
|
1105
|
+
export type eveobs = string | null
|
|
1106
|
+
export type libdelegaart = string | null
|
|
1107
|
+
export type libdelegadatdeb = Date
|
|
1108
|
+
export type libdelegadatfin = Date | null
|
|
1109
|
+
export type libdelegaid = number
|
|
1110
|
+
export type orgcod = string
|
|
1111
|
+
export type syscredat = Date | null
|
|
1112
|
+
export type sysmajdat = Date | null
|
|
1113
|
+
export type temvalcod = string | null
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
export interface libdelega {
|
|
1117
|
+
evelib: libdelegaFields.evelib
|
|
1118
|
+
evelic: libdelegaFields.evelic
|
|
1119
|
+
evelil: libdelegaFields.evelil
|
|
1120
|
+
eveobs: libdelegaFields.eveobs
|
|
1121
|
+
libdelegaart: libdelegaFields.libdelegaart
|
|
1122
|
+
libdelegadatdeb: libdelegaFields.libdelegadatdeb
|
|
1123
|
+
libdelegadatfin: libdelegaFields.libdelegadatfin
|
|
1124
|
+
libdelegaid: libdelegaFields.libdelegaid
|
|
1125
|
+
orgcod: libdelegaFields.orgcod
|
|
1126
|
+
syscredat: libdelegaFields.syscredat
|
|
1127
|
+
sysmajdat: libdelegaFields.sysmajdat
|
|
1128
|
+
temvalcod: libdelegaFields.temvalcod
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
export namespace libgrppolFields {
|
|
1132
|
+
export type evelib = string | null
|
|
1133
|
+
export type evelic = string | null
|
|
1134
|
+
export type evelil = string | null
|
|
1135
|
+
export type eveobs = string | null
|
|
1136
|
+
export type grppolcod = string
|
|
1137
|
+
export type libgrppolart = string | null
|
|
1138
|
+
export type libgrppolcodameli = string | null
|
|
1139
|
+
export type libgrppoldatdeb = Date
|
|
1140
|
+
export type libgrppoldatfin = Date | null
|
|
1141
|
+
export type libgrppolid = number
|
|
1142
|
+
export type syscredat = Date | null
|
|
1143
|
+
export type sysmajdat = Date | null
|
|
1144
|
+
export type temvalcod = string | null
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
export interface libgrppol {
|
|
1148
|
+
evelib: libgrppolFields.evelib
|
|
1149
|
+
evelic: libgrppolFields.evelic
|
|
1150
|
+
evelil: libgrppolFields.evelil
|
|
1151
|
+
eveobs: libgrppolFields.eveobs
|
|
1152
|
+
grppolcod: libgrppolFields.grppolcod
|
|
1153
|
+
libgrppolart: libgrppolFields.libgrppolart
|
|
1154
|
+
libgrppolcodameli: libgrppolFields.libgrppolcodameli
|
|
1155
|
+
libgrppoldatdeb: libgrppolFields.libgrppoldatdeb
|
|
1156
|
+
libgrppoldatfin: libgrppolFields.libgrppoldatfin
|
|
1157
|
+
libgrppolid: libgrppolFields.libgrppolid
|
|
1158
|
+
syscredat: libgrppolFields.syscredat
|
|
1159
|
+
sysmajdat: libgrppolFields.sysmajdat
|
|
1160
|
+
temvalcod: libgrppolFields.temvalcod
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
export namespace lnkrapFields {
|
|
1164
|
+
export type rapcodenf = number
|
|
1165
|
+
export type rapcodper = number
|
|
1166
|
+
export type rapenfdsc = string | null
|
|
1167
|
+
export type rapperdsc = string | null
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
export interface lnkrap {
|
|
1171
|
+
rapcodenf: lnkrapFields.rapcodenf
|
|
1172
|
+
rapcodper: lnkrapFields.rapcodper
|
|
1173
|
+
rapenfdsc: lnkrapFields.rapenfdsc
|
|
1174
|
+
rapperdsc: lnkrapFields.rapperdsc
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
export namespace loiFields {
|
|
1178
|
+
export type date_decision = Date | null
|
|
1179
|
+
export type date_loi = Date | null
|
|
1180
|
+
export type deccoccod = string | null
|
|
1181
|
+
export type deccocurl = string | null
|
|
1182
|
+
export type doscocurl = string | null
|
|
1183
|
+
export type en_clair_chapo = string | null
|
|
1184
|
+
export type en_clair_image = string | null
|
|
1185
|
+
export type en_clair_url = string | null
|
|
1186
|
+
export type etaloicod = string | null
|
|
1187
|
+
export type loicod = string
|
|
1188
|
+
export type loicodmai = string | null
|
|
1189
|
+
export type loidatjo = Date | null
|
|
1190
|
+
export type loidatjo2 = Date | null
|
|
1191
|
+
export type loidatjo3 = Date | null
|
|
1192
|
+
export type loient = string | null
|
|
1193
|
+
export type loiint = string | null
|
|
1194
|
+
export type loiintori = string | null
|
|
1195
|
+
export type loinoudelibcod = string | null
|
|
1196
|
+
export type loinumjo = string | null
|
|
1197
|
+
export type loinumjo2 = string | null
|
|
1198
|
+
export type loinumjo3 = string | null
|
|
1199
|
+
export type loitit = string | null
|
|
1200
|
+
export type loititjo = string | null
|
|
1201
|
+
export type motclef = string | null
|
|
1202
|
+
export type motionloiorigcod = string | null
|
|
1203
|
+
export type num_decision = string | null
|
|
1204
|
+
export type numero = string | null
|
|
1205
|
+
export type objet = string | null
|
|
1206
|
+
export type orgcod = string | null
|
|
1207
|
+
export type proaccdat = Date | null
|
|
1208
|
+
export type proaccoppdat = Date | null
|
|
1209
|
+
export type retproaccdat = Date | null
|
|
1210
|
+
export type saisine_date = Date | null
|
|
1211
|
+
export type saisine_par = string | null
|
|
1212
|
+
export type signet = string | null
|
|
1213
|
+
export type signetalt = string | null
|
|
1214
|
+
export type typloicod = string
|
|
1215
|
+
export type urgence = string | null
|
|
1216
|
+
export type url_an = string | null
|
|
1217
|
+
export type url_jo = string | null
|
|
1218
|
+
export type url_jo2 = string | null
|
|
1219
|
+
export type url_jo3 = string | null
|
|
1220
|
+
export type url_ordonnance = string | null
|
|
1221
|
+
export type url_presart = string | null
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
export interface loi {
|
|
1225
|
+
date_decision: loiFields.date_decision
|
|
1226
|
+
date_loi: loiFields.date_loi
|
|
1227
|
+
deccoccod: loiFields.deccoccod
|
|
1228
|
+
deccocurl: loiFields.deccocurl
|
|
1229
|
+
doscocurl: loiFields.doscocurl
|
|
1230
|
+
en_clair_chapo: loiFields.en_clair_chapo
|
|
1231
|
+
en_clair_image: loiFields.en_clair_image
|
|
1232
|
+
en_clair_url: loiFields.en_clair_url
|
|
1233
|
+
etaloicod: loiFields.etaloicod
|
|
1234
|
+
loicod: loiFields.loicod
|
|
1235
|
+
loicodmai: loiFields.loicodmai
|
|
1236
|
+
loidatjo: loiFields.loidatjo
|
|
1237
|
+
loidatjo2: loiFields.loidatjo2
|
|
1238
|
+
loidatjo3: loiFields.loidatjo3
|
|
1239
|
+
loient: loiFields.loient
|
|
1240
|
+
loiint: loiFields.loiint
|
|
1241
|
+
loiintori: loiFields.loiintori
|
|
1242
|
+
loinoudelibcod: loiFields.loinoudelibcod
|
|
1243
|
+
loinumjo: loiFields.loinumjo
|
|
1244
|
+
loinumjo2: loiFields.loinumjo2
|
|
1245
|
+
loinumjo3: loiFields.loinumjo3
|
|
1246
|
+
loitit: loiFields.loitit
|
|
1247
|
+
loititjo: loiFields.loititjo
|
|
1248
|
+
motclef: loiFields.motclef
|
|
1249
|
+
motionloiorigcod: loiFields.motionloiorigcod
|
|
1250
|
+
num_decision: loiFields.num_decision
|
|
1251
|
+
numero: loiFields.numero
|
|
1252
|
+
objet: loiFields.objet
|
|
1253
|
+
orgcod: loiFields.orgcod
|
|
1254
|
+
proaccdat: loiFields.proaccdat
|
|
1255
|
+
proaccoppdat: loiFields.proaccoppdat
|
|
1256
|
+
retproaccdat: loiFields.retproaccdat
|
|
1257
|
+
saisine_date: loiFields.saisine_date
|
|
1258
|
+
saisine_par: loiFields.saisine_par
|
|
1259
|
+
signet: loiFields.signet
|
|
1260
|
+
signetalt: loiFields.signetalt
|
|
1261
|
+
typloicod: loiFields.typloicod
|
|
1262
|
+
urgence: loiFields.urgence
|
|
1263
|
+
url_an: loiFields.url_an
|
|
1264
|
+
url_jo: loiFields.url_jo
|
|
1265
|
+
url_jo2: loiFields.url_jo2
|
|
1266
|
+
url_jo3: loiFields.url_jo3
|
|
1267
|
+
url_ordonnance: loiFields.url_ordonnance
|
|
1268
|
+
url_presart: loiFields.url_presart
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
export namespace loitheFields {
|
|
1272
|
+
export type loicod = string
|
|
1273
|
+
export type thecle = number
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
export interface loithe {
|
|
1277
|
+
loicod: loitheFields.loicod
|
|
1278
|
+
thecle: loitheFields.thecle
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
export namespace memcomFields {
|
|
1282
|
+
export type evelib = string | null
|
|
1283
|
+
export type evelic = string | null
|
|
1284
|
+
export type evelil = string | null
|
|
1285
|
+
export type eveobs = string | null
|
|
1286
|
+
export type evetempub = string | null
|
|
1287
|
+
export type memcomdatdeb = Date | null
|
|
1288
|
+
export type memcomdatfin = Date | null
|
|
1289
|
+
export type memcomid = number
|
|
1290
|
+
export type memcomtitsup = string | null
|
|
1291
|
+
export type orgcod = string
|
|
1292
|
+
export type senmat = string
|
|
1293
|
+
export type syscredat = Date | null
|
|
1294
|
+
export type sysmajdat = Date | null
|
|
1295
|
+
export type temvalcod = string | null
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1298
|
+
export interface memcom {
|
|
1299
|
+
evelib: memcomFields.evelib
|
|
1300
|
+
evelic: memcomFields.evelic
|
|
1301
|
+
evelil: memcomFields.evelil
|
|
1302
|
+
eveobs: memcomFields.eveobs
|
|
1303
|
+
evetempub: memcomFields.evetempub
|
|
1304
|
+
memcomdatdeb: memcomFields.memcomdatdeb
|
|
1305
|
+
memcomdatfin: memcomFields.memcomdatfin
|
|
1306
|
+
memcomid: memcomFields.memcomid
|
|
1307
|
+
memcomtitsup: memcomFields.memcomtitsup
|
|
1308
|
+
orgcod: memcomFields.orgcod
|
|
1309
|
+
senmat: memcomFields.senmat
|
|
1310
|
+
syscredat: memcomFields.syscredat
|
|
1311
|
+
sysmajdat: memcomFields.sysmajdat
|
|
1312
|
+
temvalcod: memcomFields.temvalcod
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
export namespace memdelegaFields {
|
|
1316
|
+
export type designcod = string
|
|
1317
|
+
export type evelib = string | null
|
|
1318
|
+
export type evelic = string | null
|
|
1319
|
+
export type evelil = string | null
|
|
1320
|
+
export type eveobs = string | null
|
|
1321
|
+
export type evetempub = string | null
|
|
1322
|
+
export type memdelegadatdeb = Date | null
|
|
1323
|
+
export type memdelegadatfin = Date | null
|
|
1324
|
+
export type memdelegaid = number
|
|
1325
|
+
export type orgcod = string
|
|
1326
|
+
export type senmat = string
|
|
1327
|
+
export type syscredat = Date | null
|
|
1328
|
+
export type sysmajdat = Date | null
|
|
1329
|
+
export type temvalcod = string | null
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
export interface memdelega {
|
|
1333
|
+
designcod: memdelegaFields.designcod
|
|
1334
|
+
evelib: memdelegaFields.evelib
|
|
1335
|
+
evelic: memdelegaFields.evelic
|
|
1336
|
+
evelil: memdelegaFields.evelil
|
|
1337
|
+
eveobs: memdelegaFields.eveobs
|
|
1338
|
+
evetempub: memdelegaFields.evetempub
|
|
1339
|
+
memdelegadatdeb: memdelegaFields.memdelegadatdeb
|
|
1340
|
+
memdelegadatfin: memdelegaFields.memdelegadatfin
|
|
1341
|
+
memdelegaid: memdelegaFields.memdelegaid
|
|
1342
|
+
orgcod: memdelegaFields.orgcod
|
|
1343
|
+
senmat: memdelegaFields.senmat
|
|
1344
|
+
syscredat: memdelegaFields.syscredat
|
|
1345
|
+
sysmajdat: memdelegaFields.sysmajdat
|
|
1346
|
+
temvalcod: memdelegaFields.temvalcod
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
export namespace memgrppolFields {
|
|
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 evetempub = string | null
|
|
1355
|
+
export type grppolcod = string
|
|
1356
|
+
export type memgrppoldatdeb = Date | null
|
|
1357
|
+
export type memgrppoldatfin = Date | null
|
|
1358
|
+
export type memgrppolid = number
|
|
1359
|
+
export type senmat = string
|
|
1360
|
+
export type syscredat = Date | null
|
|
1361
|
+
export type sysmajdat = Date | null
|
|
1362
|
+
export type temvalcod = string | null
|
|
1363
|
+
export type typapppolcod = string
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
export interface memgrppol {
|
|
1367
|
+
evelib: memgrppolFields.evelib
|
|
1368
|
+
evelic: memgrppolFields.evelic
|
|
1369
|
+
evelil: memgrppolFields.evelil
|
|
1370
|
+
eveobs: memgrppolFields.eveobs
|
|
1371
|
+
evetempub: memgrppolFields.evetempub
|
|
1372
|
+
grppolcod: memgrppolFields.grppolcod
|
|
1373
|
+
memgrppoldatdeb: memgrppolFields.memgrppoldatdeb
|
|
1374
|
+
memgrppoldatfin: memgrppolFields.memgrppoldatfin
|
|
1375
|
+
memgrppolid: memgrppolFields.memgrppolid
|
|
1376
|
+
senmat: memgrppolFields.senmat
|
|
1377
|
+
syscredat: memgrppolFields.syscredat
|
|
1378
|
+
sysmajdat: memgrppolFields.sysmajdat
|
|
1379
|
+
temvalcod: memgrppolFields.temvalcod
|
|
1380
|
+
typapppolcod: memgrppolFields.typapppolcod
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
export namespace natloiFields {
|
|
1384
|
+
export type groupe = string
|
|
1385
|
+
export type natloilib = string
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1388
|
+
export interface natloi {
|
|
1389
|
+
groupe: natloiFields.groupe
|
|
1390
|
+
natloilib: natloiFields.natloilib
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1393
|
+
export namespace orgFields {
|
|
1394
|
+
export type codass = string | null
|
|
1395
|
+
export type html_color = string | null
|
|
1396
|
+
export type inttra = string | null
|
|
1397
|
+
export type org_de = string | null
|
|
1398
|
+
export type orgcod = string
|
|
1399
|
+
export type orgdatdeb = Date | null
|
|
1400
|
+
export type orgdatdebcop = Date | null
|
|
1401
|
+
export type orgdatfin = Date | null
|
|
1402
|
+
export type orgdatfincop = Date | null
|
|
1403
|
+
export type orggen = string | null
|
|
1404
|
+
export type orglibaff = string | null
|
|
1405
|
+
export type orglibcou = string | null
|
|
1406
|
+
export type orgliblon = string | null
|
|
1407
|
+
export type orgnom = string
|
|
1408
|
+
export type orgnomcouv = string | null
|
|
1409
|
+
export type orgord = number | null
|
|
1410
|
+
export type orgurl = string | null
|
|
1411
|
+
export type senorgcod = string | null
|
|
1412
|
+
export type typorgcod = string
|
|
1413
|
+
export type url_podcast = string | null
|
|
1414
|
+
export type urltra = string | null
|
|
1415
|
+
}
|
|
1416
|
+
|
|
1417
|
+
export interface org {
|
|
1418
|
+
codass: orgFields.codass
|
|
1419
|
+
html_color: orgFields.html_color
|
|
1420
|
+
inttra: orgFields.inttra
|
|
1421
|
+
org_de: orgFields.org_de
|
|
1422
|
+
orgcod: orgFields.orgcod
|
|
1423
|
+
orgdatdeb: orgFields.orgdatdeb
|
|
1424
|
+
orgdatdebcop: orgFields.orgdatdebcop
|
|
1425
|
+
orgdatfin: orgFields.orgdatfin
|
|
1426
|
+
orgdatfincop: orgFields.orgdatfincop
|
|
1427
|
+
orggen: orgFields.orggen
|
|
1428
|
+
orglibaff: orgFields.orglibaff
|
|
1429
|
+
orglibcou: orgFields.orglibcou
|
|
1430
|
+
orgliblon: orgFields.orgliblon
|
|
1431
|
+
orgnom: orgFields.orgnom
|
|
1432
|
+
orgnomcouv: orgFields.orgnomcouv
|
|
1433
|
+
orgord: orgFields.orgord
|
|
1434
|
+
orgurl: orgFields.orgurl
|
|
1435
|
+
senorgcod: orgFields.senorgcod
|
|
1436
|
+
typorgcod: orgFields.typorgcod
|
|
1437
|
+
url_podcast: orgFields.url_podcast
|
|
1438
|
+
urltra: orgFields.urltra
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
export namespace orgnomhisFields {
|
|
1442
|
+
export type intra = string | null
|
|
1443
|
+
export type onhfin = Date
|
|
1444
|
+
export type onhnum = number
|
|
1445
|
+
export type org_de = string
|
|
1446
|
+
export type orgcod = string
|
|
1447
|
+
export type orglibaff = string | null
|
|
1448
|
+
export type orglibcou = string
|
|
1449
|
+
export type orgliblon = string
|
|
1450
|
+
export type orgnom = string
|
|
1451
|
+
export type orgnomcouv = string | null
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1454
|
+
export interface orgnomhis {
|
|
1455
|
+
intra: orgnomhisFields.intra
|
|
1456
|
+
onhfin: orgnomhisFields.onhfin
|
|
1457
|
+
onhnum: orgnomhisFields.onhnum
|
|
1458
|
+
org_de: orgnomhisFields.org_de
|
|
1459
|
+
orgcod: orgnomhisFields.orgcod
|
|
1460
|
+
orglibaff: orgnomhisFields.orglibaff
|
|
1461
|
+
orglibcou: orgnomhisFields.orglibcou
|
|
1462
|
+
orgliblon: orgnomhisFields.orgliblon
|
|
1463
|
+
orgnom: orgnomhisFields.orgnom
|
|
1464
|
+
orgnomcouv: orgnomhisFields.orgnomcouv
|
|
1465
|
+
}
|
|
1466
|
+
|
|
1467
|
+
export namespace oripprFields {
|
|
1468
|
+
export type oripprcod = string
|
|
1469
|
+
export type oripprlib = string
|
|
1470
|
+
}
|
|
1471
|
+
|
|
1472
|
+
export interface orippr {
|
|
1473
|
+
oripprcod: oripprFields.oripprcod
|
|
1474
|
+
oripprlib: oripprFields.oripprlib
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
export namespace oritxtFields {
|
|
1478
|
+
export type codass = string | null
|
|
1479
|
+
export type oriordre = string | null
|
|
1480
|
+
export type oritxtado = string | null
|
|
1481
|
+
export type oritxtcod = string
|
|
1482
|
+
export type oritxtign = string | null
|
|
1483
|
+
export type oritxtlib = string
|
|
1484
|
+
export type oritxtlibfem = string
|
|
1485
|
+
export type oritxtmod = string | null
|
|
1486
|
+
export type oritxtorg = string | null
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
export interface oritxt {
|
|
1490
|
+
codass: oritxtFields.codass
|
|
1491
|
+
oriordre: oritxtFields.oriordre
|
|
1492
|
+
oritxtado: oritxtFields.oritxtado
|
|
1493
|
+
oritxtcod: oritxtFields.oritxtcod
|
|
1494
|
+
oritxtign: oritxtFields.oritxtign
|
|
1495
|
+
oritxtlib: oritxtFields.oritxtlib
|
|
1496
|
+
oritxtlibfem: oritxtFields.oritxtlibfem
|
|
1497
|
+
oritxtmod: oritxtFields.oritxtmod
|
|
1498
|
+
oritxtorg: oritxtFields.oritxtorg
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
export namespace posvotFields {
|
|
1502
|
+
export type posvotcod = string
|
|
1503
|
+
export type posvotlib = string
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
export interface posvot {
|
|
1507
|
+
posvotcod: posvotFields.posvotcod
|
|
1508
|
+
posvotlib: posvotFields.posvotlib
|
|
1509
|
+
}
|
|
1510
|
+
|
|
1511
|
+
export namespace quaFields {
|
|
1512
|
+
export type quaabr = string
|
|
1513
|
+
export type quaabrplu = string
|
|
1514
|
+
export type quacod = string
|
|
1515
|
+
export type qualic = string
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
export interface qua {
|
|
1519
|
+
quaabr: quaFields.quaabr
|
|
1520
|
+
quaabrplu: quaFields.quaabrplu
|
|
1521
|
+
quacod: quaFields.quacod
|
|
1522
|
+
qualic: quaFields.qualic
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
export namespace qua_senFields {
|
|
1526
|
+
export type quacod = string
|
|
1527
|
+
export type quacodsex = string | null
|
|
1528
|
+
export type quacodsirpas = string | null
|
|
1529
|
+
export type qualib = string | null
|
|
1530
|
+
export type qualibplu = string | null
|
|
1531
|
+
export type qualic = string
|
|
1532
|
+
export type qualicplu = string | null
|
|
1533
|
+
export type qualil = string | null
|
|
1534
|
+
export type qualilplu = string | null
|
|
1535
|
+
export type quanumtri = number | null
|
|
1536
|
+
export type syscredat = Date | null
|
|
1537
|
+
export type sysmajdat = Date | null
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1540
|
+
export interface qua_sen {
|
|
1541
|
+
quacod: qua_senFields.quacod
|
|
1542
|
+
quacodsex: qua_senFields.quacodsex
|
|
1543
|
+
quacodsirpas: qua_senFields.quacodsirpas
|
|
1544
|
+
qualib: qua_senFields.qualib
|
|
1545
|
+
qualibplu: qua_senFields.qualibplu
|
|
1546
|
+
qualic: qua_senFields.qualic
|
|
1547
|
+
qualicplu: qua_senFields.qualicplu
|
|
1548
|
+
qualil: qua_senFields.qualil
|
|
1549
|
+
qualilplu: qua_senFields.qualilplu
|
|
1550
|
+
quanumtri: qua_senFields.quanumtri
|
|
1551
|
+
syscredat: qua_senFields.syscredat
|
|
1552
|
+
sysmajdat: qua_senFields.sysmajdat
|
|
1553
|
+
}
|
|
1554
|
+
|
|
1555
|
+
export namespace rapFields {
|
|
1556
|
+
export type blecod = string | null
|
|
1557
|
+
export type coddenrap = string
|
|
1558
|
+
export type date_depot = Date
|
|
1559
|
+
export type depot_only = string | null
|
|
1560
|
+
export type forpubcod = string | null
|
|
1561
|
+
export type numerobis = string | null
|
|
1562
|
+
export type prix = string | null
|
|
1563
|
+
export type rapann = number | null
|
|
1564
|
+
export type rapcod = number
|
|
1565
|
+
export type rapdatsea = Date | null
|
|
1566
|
+
export type rapfac = number | null
|
|
1567
|
+
export type rapnum = number | null
|
|
1568
|
+
export type rapnuman = number | null
|
|
1569
|
+
export type rapres = string | null
|
|
1570
|
+
export type rapsoustit = string | null
|
|
1571
|
+
export type raptil = string | null
|
|
1572
|
+
export type raptitcou = string | null
|
|
1573
|
+
export type raptom = number | null
|
|
1574
|
+
export type rapurl = string | null
|
|
1575
|
+
export type rapvol = number | null
|
|
1576
|
+
export type sesann = number
|
|
1577
|
+
export type typurl = string
|
|
1578
|
+
export type url2 = string | null
|
|
1579
|
+
export type url2txt = string | null
|
|
1580
|
+
export type url3 = string | null
|
|
1581
|
+
export type url3txt = string | null
|
|
1582
|
+
export type url4 = string | null
|
|
1583
|
+
export type url4txt = string | null
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
export interface rap {
|
|
1587
|
+
blecod: rapFields.blecod
|
|
1588
|
+
coddenrap: rapFields.coddenrap
|
|
1589
|
+
date_depot: rapFields.date_depot
|
|
1590
|
+
depot_only: rapFields.depot_only
|
|
1591
|
+
forpubcod: rapFields.forpubcod
|
|
1592
|
+
numerobis: rapFields.numerobis
|
|
1593
|
+
prix: rapFields.prix
|
|
1594
|
+
rapann: rapFields.rapann
|
|
1595
|
+
rapcod: rapFields.rapcod
|
|
1596
|
+
rapdatsea: rapFields.rapdatsea
|
|
1597
|
+
rapfac: rapFields.rapfac
|
|
1598
|
+
rapnum: rapFields.rapnum
|
|
1599
|
+
rapnuman: rapFields.rapnuman
|
|
1600
|
+
rapres: rapFields.rapres
|
|
1601
|
+
rapsoustit: rapFields.rapsoustit
|
|
1602
|
+
raptil: rapFields.raptil
|
|
1603
|
+
raptitcou: rapFields.raptitcou
|
|
1604
|
+
raptom: rapFields.raptom
|
|
1605
|
+
rapurl: rapFields.rapurl
|
|
1606
|
+
rapvol: rapFields.rapvol
|
|
1607
|
+
sesann: rapFields.sesann
|
|
1608
|
+
typurl: rapFields.typurl
|
|
1609
|
+
url2: rapFields.url2
|
|
1610
|
+
url2txt: rapFields.url2txt
|
|
1611
|
+
url3: rapFields.url3
|
|
1612
|
+
url3txt: rapFields.url3txt
|
|
1613
|
+
url4: rapFields.url4
|
|
1614
|
+
url4txt: rapFields.url4txt
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
export namespace raporgFields {
|
|
1618
|
+
export type orgcod = string
|
|
1619
|
+
export type rapcod = number
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1622
|
+
export interface raporg {
|
|
1623
|
+
orgcod: raporgFields.orgcod
|
|
1624
|
+
rapcod: raporgFields.rapcod
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
export namespace raptheFields {
|
|
1628
|
+
export type rapcod = number
|
|
1629
|
+
export type thecle = number
|
|
1630
|
+
}
|
|
1631
|
+
|
|
1632
|
+
export interface rapthe {
|
|
1633
|
+
rapcod: raptheFields.rapcod
|
|
1634
|
+
thecle: raptheFields.thecle
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
export namespace rolsigFields {
|
|
1638
|
+
export type rolsiglib = string
|
|
1639
|
+
export type signataire = string
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
export interface rolsig {
|
|
1643
|
+
rolsiglib: rolsigFields.rolsiglib
|
|
1644
|
+
signataire: rolsigFields.signataire
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1647
|
+
export namespace scrFields {
|
|
1648
|
+
export type code = number | null
|
|
1649
|
+
export type scrbaspag = string | null
|
|
1650
|
+
export type scrcon = number | null
|
|
1651
|
+
export type scrconsea = number | null
|
|
1652
|
+
export type scrdat = Date | null
|
|
1653
|
+
export type scrdateff = Date | null
|
|
1654
|
+
export type scrint = string | null
|
|
1655
|
+
export type scrjso = string | null
|
|
1656
|
+
export type scrmaj = number | null
|
|
1657
|
+
export type scrmajsea = number | null
|
|
1658
|
+
export type scrnum = number
|
|
1659
|
+
export type scrpou = number | null
|
|
1660
|
+
export type scrpousea = number | null
|
|
1661
|
+
export type scrsuf = number | null
|
|
1662
|
+
export type scrsufsea = number | null
|
|
1663
|
+
export type scrvot = number | null
|
|
1664
|
+
export type scrvotsea = number | null
|
|
1665
|
+
export type sesann = number
|
|
1666
|
+
export type soslib = string | null
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
export interface scr {
|
|
1670
|
+
code: scrFields.code
|
|
1671
|
+
scrbaspag: scrFields.scrbaspag
|
|
1672
|
+
scrcon: scrFields.scrcon
|
|
1673
|
+
scrconsea: scrFields.scrconsea
|
|
1674
|
+
scrdat: scrFields.scrdat
|
|
1675
|
+
scrdateff: scrFields.scrdateff
|
|
1676
|
+
scrint: scrFields.scrint
|
|
1677
|
+
scrjso: scrFields.scrjso
|
|
1678
|
+
scrmaj: scrFields.scrmaj
|
|
1679
|
+
scrmajsea: scrFields.scrmajsea
|
|
1680
|
+
scrnum: scrFields.scrnum
|
|
1681
|
+
scrpou: scrFields.scrpou
|
|
1682
|
+
scrpousea: scrFields.scrpousea
|
|
1683
|
+
scrsuf: scrFields.scrsuf
|
|
1684
|
+
scrsufsea: scrFields.scrsufsea
|
|
1685
|
+
scrvot: scrFields.scrvot
|
|
1686
|
+
scrvotsea: scrFields.scrvotsea
|
|
1687
|
+
sesann: scrFields.sesann
|
|
1688
|
+
soslib: scrFields.soslib
|
|
1689
|
+
}
|
|
1690
|
+
|
|
1691
|
+
export namespace senFields {
|
|
1692
|
+
export type catprocod2e = string | null
|
|
1693
|
+
export type credit_portrait = string | null
|
|
1694
|
+
export type etasencod = string
|
|
1695
|
+
export type fonction_pair = string | null
|
|
1696
|
+
export type identifiant_assnat = string | null
|
|
1697
|
+
export type identifiant_rne = string | null
|
|
1698
|
+
export type lister_autre_titre_pair_france = string | null
|
|
1699
|
+
export type lister_titre_pair_france = string | null
|
|
1700
|
+
export type quacod = string
|
|
1701
|
+
export type senburcommu = string | null
|
|
1702
|
+
export type senburliccou = string | null
|
|
1703
|
+
export type sencircou = string | null
|
|
1704
|
+
export type sencircou3r = string | null
|
|
1705
|
+
export type sencircou4r = string | null
|
|
1706
|
+
export type sencirnumcou = number | null
|
|
1707
|
+
export type sencirnumcou3r = number | null
|
|
1708
|
+
export type sencirnumcou4r = number | null
|
|
1709
|
+
export type sencomcodcou = string | null
|
|
1710
|
+
export type sencomliccou = string | null
|
|
1711
|
+
export type sencrinom = string | null
|
|
1712
|
+
export type sendatderele = Date | null
|
|
1713
|
+
export type sendatpreele = Date | null
|
|
1714
|
+
export type sendespro2e = string | null
|
|
1715
|
+
export type senfem = string | null
|
|
1716
|
+
export type sengrppolcodcou = string | null
|
|
1717
|
+
export type sengrppolcodcou4r = string | null
|
|
1718
|
+
export type sengrppolcommu = string | null
|
|
1719
|
+
export type sengrppolliccou = string | null
|
|
1720
|
+
export type senmat = string
|
|
1721
|
+
export type sennomdis = string | null
|
|
1722
|
+
export type sennomdit = string | null
|
|
1723
|
+
export type sennomuse = string
|
|
1724
|
+
export type sennomusecap = string
|
|
1725
|
+
export type senobs3r1 = string | null
|
|
1726
|
+
export type senobs3r2 = string | null
|
|
1727
|
+
export type senobs4r1 = string | null
|
|
1728
|
+
export type senobs4r2 = string | null
|
|
1729
|
+
export type senobscommu = string | null
|
|
1730
|
+
export type senprenomuse = string
|
|
1731
|
+
export type sentypappcou = string | null
|
|
1732
|
+
export type sentypappcou4r = string | null
|
|
1733
|
+
export type syscredat = Date | null
|
|
1734
|
+
export type sysmajdat = Date | null
|
|
1735
|
+
export type titnobcod = string | null
|
|
1736
|
+
export type titre_pair_france = string | null
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
export interface sen {
|
|
1740
|
+
catprocod2e: senFields.catprocod2e
|
|
1741
|
+
credit_portrait: senFields.credit_portrait
|
|
1742
|
+
etasencod: senFields.etasencod
|
|
1743
|
+
fonction_pair: senFields.fonction_pair
|
|
1744
|
+
identifiant_assnat: senFields.identifiant_assnat
|
|
1745
|
+
identifiant_rne: senFields.identifiant_rne
|
|
1746
|
+
lister_autre_titre_pair_france: senFields.lister_autre_titre_pair_france
|
|
1747
|
+
lister_titre_pair_france: senFields.lister_titre_pair_france
|
|
1748
|
+
quacod: senFields.quacod
|
|
1749
|
+
senburcommu: senFields.senburcommu
|
|
1750
|
+
senburliccou: senFields.senburliccou
|
|
1751
|
+
sencircou: senFields.sencircou
|
|
1752
|
+
sencircou3r: senFields.sencircou3r
|
|
1753
|
+
sencircou4r: senFields.sencircou4r
|
|
1754
|
+
sencirnumcou: senFields.sencirnumcou
|
|
1755
|
+
sencirnumcou3r: senFields.sencirnumcou3r
|
|
1756
|
+
sencirnumcou4r: senFields.sencirnumcou4r
|
|
1757
|
+
sencomcodcou: senFields.sencomcodcou
|
|
1758
|
+
sencomliccou: senFields.sencomliccou
|
|
1759
|
+
sencrinom: senFields.sencrinom
|
|
1760
|
+
sendatderele: senFields.sendatderele
|
|
1761
|
+
sendatpreele: senFields.sendatpreele
|
|
1762
|
+
sendespro2e: senFields.sendespro2e
|
|
1763
|
+
senfem: senFields.senfem
|
|
1764
|
+
sengrppolcodcou: senFields.sengrppolcodcou
|
|
1765
|
+
sengrppolcodcou4r: senFields.sengrppolcodcou4r
|
|
1766
|
+
sengrppolcommu: senFields.sengrppolcommu
|
|
1767
|
+
sengrppolliccou: senFields.sengrppolliccou
|
|
1768
|
+
senmat: senFields.senmat
|
|
1769
|
+
sennomdis: senFields.sennomdis
|
|
1770
|
+
sennomdit: senFields.sennomdit
|
|
1771
|
+
sennomuse: senFields.sennomuse
|
|
1772
|
+
sennomusecap: senFields.sennomusecap
|
|
1773
|
+
senobs3r1: senFields.senobs3r1
|
|
1774
|
+
senobs3r2: senFields.senobs3r2
|
|
1775
|
+
senobs4r1: senFields.senobs4r1
|
|
1776
|
+
senobs4r2: senFields.senobs4r2
|
|
1777
|
+
senobscommu: senFields.senobscommu
|
|
1778
|
+
senprenomuse: senFields.senprenomuse
|
|
1779
|
+
sentypappcou: senFields.sentypappcou
|
|
1780
|
+
sentypappcou4r: senFields.sentypappcou4r
|
|
1781
|
+
syscredat: senFields.syscredat
|
|
1782
|
+
sysmajdat: senFields.sysmajdat
|
|
1783
|
+
titnobcod: senFields.titnobcod
|
|
1784
|
+
titre_pair_france: senFields.titre_pair_france
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1787
|
+
export namespace senburFields {
|
|
1788
|
+
export type burcod = string
|
|
1789
|
+
export type evelib = string | null
|
|
1790
|
+
export type evelic = string | null
|
|
1791
|
+
export type evelil = string | null
|
|
1792
|
+
export type eveobs = string | null
|
|
1793
|
+
export type evetempub = string | null
|
|
1794
|
+
export type senburdatdeb = Date | null
|
|
1795
|
+
export type senburdatfin = Date | null
|
|
1796
|
+
export type senburhon = string | null
|
|
1797
|
+
export type senburid = number
|
|
1798
|
+
export type senburrelint = string | null
|
|
1799
|
+
export type senburrngele = number | null
|
|
1800
|
+
export type senmat = string
|
|
1801
|
+
export type syscredat = Date | null
|
|
1802
|
+
export type sysmajdat = Date | null
|
|
1803
|
+
export type temvalcod = string | null
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
export interface senbur {
|
|
1807
|
+
burcod: senburFields.burcod
|
|
1808
|
+
evelib: senburFields.evelib
|
|
1809
|
+
evelic: senburFields.evelic
|
|
1810
|
+
evelil: senburFields.evelil
|
|
1811
|
+
eveobs: senburFields.eveobs
|
|
1812
|
+
evetempub: senburFields.evetempub
|
|
1813
|
+
senburdatdeb: senburFields.senburdatdeb
|
|
1814
|
+
senburdatfin: senburFields.senburdatfin
|
|
1815
|
+
senburhon: senburFields.senburhon
|
|
1816
|
+
senburid: senburFields.senburid
|
|
1817
|
+
senburrelint: senburFields.senburrelint
|
|
1818
|
+
senburrngele: senburFields.senburrngele
|
|
1819
|
+
senmat: senburFields.senmat
|
|
1820
|
+
syscredat: senburFields.syscredat
|
|
1821
|
+
sysmajdat: senburFields.sysmajdat
|
|
1822
|
+
temvalcod: senburFields.temvalcod
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
export namespace sennomFields {
|
|
1826
|
+
export type quacod = string
|
|
1827
|
+
export type senmat = string
|
|
1828
|
+
export type sennomdatdeb = Date
|
|
1829
|
+
export type sennomdatfin = Date | null
|
|
1830
|
+
export type sennomid = number
|
|
1831
|
+
export type sennomtec = string
|
|
1832
|
+
export type sennomuse = string
|
|
1833
|
+
export type sennomusecap = string
|
|
1834
|
+
export type senprenomuse = string
|
|
1835
|
+
export type syscredat = Date | null
|
|
1836
|
+
export type sysmajdat = Date | null
|
|
1837
|
+
}
|
|
1838
|
+
|
|
1839
|
+
export interface sennom {
|
|
1840
|
+
quacod: sennomFields.quacod
|
|
1841
|
+
senmat: sennomFields.senmat
|
|
1842
|
+
sennomdatdeb: sennomFields.sennomdatdeb
|
|
1843
|
+
sennomdatfin: sennomFields.sennomdatfin
|
|
1844
|
+
sennomid: sennomFields.sennomid
|
|
1845
|
+
sennomtec: sennomFields.sennomtec
|
|
1846
|
+
sennomuse: sennomFields.sennomuse
|
|
1847
|
+
sennomusecap: sennomFields.sennomusecap
|
|
1848
|
+
senprenomuse: sennomFields.senprenomuse
|
|
1849
|
+
syscredat: sennomFields.syscredat
|
|
1850
|
+
sysmajdat: sennomFields.sysmajdat
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
export namespace sesFields {
|
|
1854
|
+
export type sesann = number
|
|
1855
|
+
export type seslib = string
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
export interface ses {
|
|
1859
|
+
sesann: sesFields.sesann
|
|
1860
|
+
seslib: sesFields.seslib
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
export namespace stavotFields {
|
|
1864
|
+
export type stavotidt = string
|
|
1865
|
+
export type stavotlib = string
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
export interface stavot {
|
|
1869
|
+
stavotidt: stavotFields.stavotidt
|
|
1870
|
+
stavotlib: stavotFields.stavotlib
|
|
1871
|
+
}
|
|
1872
|
+
|
|
1873
|
+
export namespace texteFields {
|
|
1874
|
+
export type datrejet_disc_immediate = Date | null
|
|
1875
|
+
export type lecassidt = string
|
|
1876
|
+
export type numerobis = string | null
|
|
1877
|
+
export type orgcod = string | null
|
|
1878
|
+
export type oritxtcod = string | null
|
|
1879
|
+
export type prix = string | null
|
|
1880
|
+
export type reserve_comspe = string | null
|
|
1881
|
+
export type sesann = number | null
|
|
1882
|
+
export type texace = string | null
|
|
1883
|
+
export type texcod = number
|
|
1884
|
+
export type texdatsea = Date | null
|
|
1885
|
+
export type texnum = number | null
|
|
1886
|
+
export type texurl = string | null
|
|
1887
|
+
export type txtoritxtdat = Date
|
|
1888
|
+
export type typtxtcod = string
|
|
1889
|
+
export type typurl = string
|
|
1890
|
+
export type url2 = string | null
|
|
1891
|
+
export type url2txt = string | null
|
|
1892
|
+
export type url3 = string | null
|
|
1893
|
+
export type url3txt = string | null
|
|
1894
|
+
export type url4 = string | null
|
|
1895
|
+
export type url4txt = string | null
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
export interface texte {
|
|
1899
|
+
datrejet_disc_immediate: texteFields.datrejet_disc_immediate
|
|
1900
|
+
lecassidt: texteFields.lecassidt
|
|
1901
|
+
numerobis: texteFields.numerobis
|
|
1902
|
+
orgcod: texteFields.orgcod
|
|
1903
|
+
oritxtcod: texteFields.oritxtcod
|
|
1904
|
+
prix: texteFields.prix
|
|
1905
|
+
reserve_comspe: texteFields.reserve_comspe
|
|
1906
|
+
sesann: texteFields.sesann
|
|
1907
|
+
texace: texteFields.texace
|
|
1908
|
+
texcod: texteFields.texcod
|
|
1909
|
+
texdatsea: texteFields.texdatsea
|
|
1910
|
+
texnum: texteFields.texnum
|
|
1911
|
+
texurl: texteFields.texurl
|
|
1912
|
+
txtoritxtdat: texteFields.txtoritxtdat
|
|
1913
|
+
typtxtcod: texteFields.typtxtcod
|
|
1914
|
+
typurl: texteFields.typurl
|
|
1915
|
+
url2: texteFields.url2
|
|
1916
|
+
url2txt: texteFields.url2txt
|
|
1917
|
+
url3: texteFields.url3
|
|
1918
|
+
url3txt: texteFields.url3txt
|
|
1919
|
+
url4: texteFields.url4
|
|
1920
|
+
url4txt: texteFields.url4txt
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1923
|
+
export namespace texte_ancienFields {
|
|
1924
|
+
export type article_type = string | null
|
|
1925
|
+
export type date_effet = Date | null
|
|
1926
|
+
export type fichier = string | null
|
|
1927
|
+
export type id = number
|
|
1928
|
+
export type lecture = string | null
|
|
1929
|
+
export type libelle = string | null
|
|
1930
|
+
export type numero = number
|
|
1931
|
+
export type origine = string
|
|
1932
|
+
export type rectifie = number
|
|
1933
|
+
export type sesann = number
|
|
1934
|
+
export type statut = string | null
|
|
1935
|
+
export type type_texte = string | null
|
|
1936
|
+
export type urgence = number
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1939
|
+
export interface texte_ancien {
|
|
1940
|
+
article_type: texte_ancienFields.article_type
|
|
1941
|
+
date_effet: texte_ancienFields.date_effet
|
|
1942
|
+
fichier: texte_ancienFields.fichier
|
|
1943
|
+
id: texte_ancienFields.id
|
|
1944
|
+
lecture: texte_ancienFields.lecture
|
|
1945
|
+
libelle: texte_ancienFields.libelle
|
|
1946
|
+
numero: texte_ancienFields.numero
|
|
1947
|
+
origine: texte_ancienFields.origine
|
|
1948
|
+
rectifie: texte_ancienFields.rectifie
|
|
1949
|
+
sesann: texte_ancienFields.sesann
|
|
1950
|
+
statut: texte_ancienFields.statut
|
|
1951
|
+
type_texte: texte_ancienFields.type_texte
|
|
1952
|
+
urgence: texte_ancienFields.urgence
|
|
1953
|
+
}
|
|
1954
|
+
|
|
1955
|
+
export namespace theFields {
|
|
1956
|
+
export type theali = string | null
|
|
1957
|
+
export type thecle = number
|
|
1958
|
+
export type thelib = string
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1961
|
+
export interface the {
|
|
1962
|
+
theali: theFields.theali
|
|
1963
|
+
thecle: theFields.thecle
|
|
1964
|
+
thelib: theFields.thelib
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1967
|
+
export namespace titsenFields {
|
|
1968
|
+
export type titsencod = string
|
|
1969
|
+
export type titsenlib = string | null
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
export interface titsen {
|
|
1973
|
+
titsencod: titsenFields.titsencod
|
|
1974
|
+
titsenlib: titsenFields.titsenlib
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1977
|
+
export namespace typapppolFields {
|
|
1978
|
+
export type syscredat = Date | null
|
|
1979
|
+
export type sysmajdat = Date | null
|
|
1980
|
+
export type typapppolcod = string
|
|
1981
|
+
export type typapppollib = string | null
|
|
1982
|
+
export type typapppollibfem = string | null
|
|
1983
|
+
export type typapppollibplu = string | null
|
|
1984
|
+
export type typapppollic = string | null
|
|
1985
|
+
export type typapppollicfem = string | null
|
|
1986
|
+
export type typapppollicplu = string | null
|
|
1987
|
+
export type typapppollil = string | null
|
|
1988
|
+
export type typapppollilfem = string | null
|
|
1989
|
+
export type typapppollilplu = string | null
|
|
1990
|
+
export type typapppolnumtri = number | null
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
export interface typapppol {
|
|
1994
|
+
syscredat: typapppolFields.syscredat
|
|
1995
|
+
sysmajdat: typapppolFields.sysmajdat
|
|
1996
|
+
typapppolcod: typapppolFields.typapppolcod
|
|
1997
|
+
typapppollib: typapppolFields.typapppollib
|
|
1998
|
+
typapppollibfem: typapppolFields.typapppollibfem
|
|
1999
|
+
typapppollibplu: typapppolFields.typapppollibplu
|
|
2000
|
+
typapppollic: typapppolFields.typapppollic
|
|
2001
|
+
typapppollicfem: typapppolFields.typapppollicfem
|
|
2002
|
+
typapppollicplu: typapppolFields.typapppollicplu
|
|
2003
|
+
typapppollil: typapppolFields.typapppollil
|
|
2004
|
+
typapppollilfem: typapppolFields.typapppollilfem
|
|
2005
|
+
typapppollilplu: typapppolFields.typapppollilplu
|
|
2006
|
+
typapppolnumtri: typapppolFields.typapppolnumtri
|
|
2007
|
+
}
|
|
2008
|
+
|
|
2009
|
+
export namespace typattFields {
|
|
2010
|
+
export type typattcod = string
|
|
2011
|
+
export type typattlib = string
|
|
2012
|
+
}
|
|
2013
|
+
|
|
2014
|
+
export interface typatt {
|
|
2015
|
+
typattcod: typattFields.typattcod
|
|
2016
|
+
typattlib: typattFields.typattlib
|
|
2017
|
+
}
|
|
2018
|
+
|
|
2019
|
+
export namespace typautFields {
|
|
2020
|
+
export type typautcod = string
|
|
2021
|
+
export type typautlib = string
|
|
2022
|
+
}
|
|
2023
|
+
|
|
2024
|
+
export interface typaut {
|
|
2025
|
+
typautcod: typautFields.typautcod
|
|
2026
|
+
typautlib: typautFields.typautlib
|
|
2027
|
+
}
|
|
2028
|
+
|
|
2029
|
+
export namespace typdocFields {
|
|
2030
|
+
export type typdoccod = string
|
|
2031
|
+
export type typdoclib = string | null
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
export interface typdoc {
|
|
2035
|
+
typdoccod: typdocFields.typdoccod
|
|
2036
|
+
typdoclib: typdocFields.typdoclib
|
|
2037
|
+
}
|
|
2038
|
+
|
|
2039
|
+
export namespace typevtseaFields {
|
|
2040
|
+
export type typevtcod = string
|
|
2041
|
+
export type typevtlib = string
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
export interface typevtsea {
|
|
2045
|
+
typevtcod: typevtseaFields.typevtcod
|
|
2046
|
+
typevtlib: typevtseaFields.typevtlib
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
export namespace typlecFields {
|
|
2050
|
+
export type typleccod = string
|
|
2051
|
+
export type typleclib = string
|
|
2052
|
+
export type typlecord = number | null
|
|
2053
|
+
}
|
|
2054
|
+
|
|
2055
|
+
export interface typlec {
|
|
2056
|
+
typleccod: typlecFields.typleccod
|
|
2057
|
+
typleclib: typlecFields.typleclib
|
|
2058
|
+
typlecord: typlecFields.typlecord
|
|
2059
|
+
}
|
|
2060
|
+
|
|
2061
|
+
export namespace typloiFields {
|
|
2062
|
+
export type groupe = string | null
|
|
2063
|
+
export type typloiabr = string | null
|
|
2064
|
+
export type typloicod = string
|
|
2065
|
+
export type typloide = string | null
|
|
2066
|
+
export type typloiden = string | null
|
|
2067
|
+
export type typloidenplu = string | null
|
|
2068
|
+
export type typloigen = string | null
|
|
2069
|
+
export type typloilib = string
|
|
2070
|
+
export type typloitit = string | null
|
|
2071
|
+
}
|
|
2072
|
+
|
|
2073
|
+
export interface typloi {
|
|
2074
|
+
groupe: typloiFields.groupe
|
|
2075
|
+
typloiabr: typloiFields.typloiabr
|
|
2076
|
+
typloicod: typloiFields.typloicod
|
|
2077
|
+
typloide: typloiFields.typloide
|
|
2078
|
+
typloiden: typloiFields.typloiden
|
|
2079
|
+
typloidenplu: typloiFields.typloidenplu
|
|
2080
|
+
typloigen: typloiFields.typloigen
|
|
2081
|
+
typloilib: typloiFields.typloilib
|
|
2082
|
+
typloitit: typloiFields.typloitit
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
export namespace typorgFields {
|
|
2086
|
+
export type typorgcod = string
|
|
2087
|
+
export type typorglib = string
|
|
2088
|
+
export type typorgord = number | null
|
|
2089
|
+
export type typorgtitens = string | null
|
|
2090
|
+
export type typorgurl = string | null
|
|
2091
|
+
export type typorgvid = string | null
|
|
2092
|
+
}
|
|
2093
|
+
|
|
2094
|
+
export interface typorg {
|
|
2095
|
+
typorgcod: typorgFields.typorgcod
|
|
2096
|
+
typorglib: typorgFields.typorglib
|
|
2097
|
+
typorgord: typorgFields.typorgord
|
|
2098
|
+
typorgtitens: typorgFields.typorgtitens
|
|
2099
|
+
typorgurl: typorgFields.typorgurl
|
|
2100
|
+
typorgvid: typorgFields.typorgvid
|
|
2101
|
+
}
|
|
2102
|
+
|
|
2103
|
+
export namespace typorg_senFields {
|
|
2104
|
+
export type evetempub = string | null
|
|
2105
|
+
export type syscredat = Date | null
|
|
2106
|
+
export type sysmajdat = Date | null
|
|
2107
|
+
export type typorgcod = string
|
|
2108
|
+
export type typorglib = string
|
|
2109
|
+
export type typorglibplu = string | null
|
|
2110
|
+
export type typorglic = string
|
|
2111
|
+
export type typorgnumtri = number | null
|
|
2112
|
+
export type typorgurlcmp = string | null
|
|
2113
|
+
export type typorgurlsim = string | null
|
|
2114
|
+
}
|
|
2115
|
+
|
|
2116
|
+
export interface typorg_sen {
|
|
2117
|
+
evetempub: typorg_senFields.evetempub
|
|
2118
|
+
syscredat: typorg_senFields.syscredat
|
|
2119
|
+
sysmajdat: typorg_senFields.sysmajdat
|
|
2120
|
+
typorgcod: typorg_senFields.typorgcod
|
|
2121
|
+
typorglib: typorg_senFields.typorglib
|
|
2122
|
+
typorglibplu: typorg_senFields.typorglibplu
|
|
2123
|
+
typorglic: typorg_senFields.typorglic
|
|
2124
|
+
typorgnumtri: typorg_senFields.typorgnumtri
|
|
2125
|
+
typorgurlcmp: typorg_senFields.typorgurlcmp
|
|
2126
|
+
typorgurlsim: typorg_senFields.typorgurlsim
|
|
2127
|
+
}
|
|
2128
|
+
|
|
2129
|
+
export namespace typrapFields {
|
|
2130
|
+
export type catrapcod = string | null
|
|
2131
|
+
export type typrapind = string
|
|
2132
|
+
export type typraplib = string
|
|
2133
|
+
export type typraplibplu = string | null
|
|
2134
|
+
export type typrapnot = string | null
|
|
2135
|
+
export type typraprap = string
|
|
2136
|
+
export type typraprep = string | null
|
|
2137
|
+
export type typrapses = string | null
|
|
2138
|
+
export type typrapurl = string | null
|
|
2139
|
+
}
|
|
2140
|
+
|
|
2141
|
+
export interface typrap {
|
|
2142
|
+
catrapcod: typrapFields.catrapcod
|
|
2143
|
+
typrapind: typrapFields.typrapind
|
|
2144
|
+
typraplib: typrapFields.typraplib
|
|
2145
|
+
typraplibplu: typrapFields.typraplibplu
|
|
2146
|
+
typrapnot: typrapFields.typrapnot
|
|
2147
|
+
typraprap: typrapFields.typraprap
|
|
2148
|
+
typraprep: typrapFields.typraprep
|
|
2149
|
+
typrapses: typrapFields.typrapses
|
|
2150
|
+
typrapurl: typrapFields.typrapurl
|
|
2151
|
+
}
|
|
2152
|
+
|
|
2153
|
+
export namespace typtxtFields {
|
|
2154
|
+
export type typtxtcod = string
|
|
2155
|
+
export type typtxtlib = string
|
|
2156
|
+
}
|
|
2157
|
+
|
|
2158
|
+
export interface typtxt {
|
|
2159
|
+
typtxtcod: typtxtFields.typtxtcod
|
|
2160
|
+
typtxtlib: typtxtFields.typtxtlib
|
|
2161
|
+
}
|
|
2162
|
+
|
|
2163
|
+
export namespace typurlFields {
|
|
2164
|
+
export type libtypurl = string
|
|
2165
|
+
export type typurl = string
|
|
2166
|
+
}
|
|
2167
|
+
|
|
2168
|
+
export interface typurl {
|
|
2169
|
+
libtypurl: typurlFields.libtypurl
|
|
2170
|
+
typurl: typurlFields.typurl
|
|
2171
|
+
}
|
|
2172
|
+
|
|
2173
|
+
export namespace votsenFields {
|
|
2174
|
+
export type posvotcod = string | null
|
|
2175
|
+
export type scrnum = number
|
|
2176
|
+
export type senmat = string
|
|
2177
|
+
export type senmatdel = string | null
|
|
2178
|
+
export type sesann = number
|
|
2179
|
+
export type stavotidt = string
|
|
2180
|
+
export type titsencod = string
|
|
2181
|
+
export type votsenmar = string | null
|
|
2182
|
+
}
|
|
2183
|
+
|
|
2184
|
+
export interface votsen {
|
|
2185
|
+
posvotcod: votsenFields.posvotcod
|
|
2186
|
+
scrnum: votsenFields.scrnum
|
|
2187
|
+
senmat: votsenFields.senmat
|
|
2188
|
+
senmatdel: votsenFields.senmatdel
|
|
2189
|
+
sesann: votsenFields.sesann
|
|
2190
|
+
stavotidt: votsenFields.stavotidt
|
|
2191
|
+
titsencod: votsenFields.titsencod
|
|
2192
|
+
votsenmar: votsenFields.votsenmar
|
|
2193
|
+
}
|