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