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