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