@tricoteuses/senat 2.9.8 → 2.9.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/databases.d.ts +26 -10
- package/lib/loaders.d.ts +4 -4
- package/lib/loaders.js +4 -4
- package/lib/model/ameli.d.ts +44 -22
- package/lib/model/ameli.js +11 -0
- package/lib/model/debats.d.ts +18 -9
- package/lib/model/dosleg.d.ts +48 -178
- package/lib/model/dosleg.js +4 -4
- package/lib/model/questions.d.ts +6 -6
- package/lib/model/sens.d.ts +44 -44
- package/lib/raw_types/ameli.d.ts +1521 -778
- package/lib/raw_types/ameli.js +345 -5
- package/lib/raw_types/debats.d.ts +306 -163
- package/lib/raw_types/debats.js +84 -5
- package/lib/raw_types/dosleg.d.ts +2297 -1353
- package/lib/raw_types/dosleg.js +550 -5
- package/lib/raw_types/kysely-table-types.d.ts +5 -0
- package/lib/raw_types/kysely-table-types.js +1 -0
- package/lib/raw_types/questions.d.ts +519 -374
- package/lib/raw_types/questions.js +84 -5
- package/lib/raw_types/sens.d.ts +12562 -6720
- package/lib/raw_types/sens.js +2944 -5
- package/lib/raw_types_schemats/ameli.d.ts +1 -1
- package/lib/raw_types_schemats/debats.d.ts +1 -1
- package/lib/raw_types_schemats/dosleg.d.ts +1 -1
- package/lib/raw_types_schemats/questions.d.ts +1 -1
- package/lib/raw_types_schemats/sens.d.ts +1 -1
- package/lib/scripts/convert_data.js +3 -3
- package/lib/scripts/retrieve_open_data.js +1 -2
- package/package.json +2 -2
|
@@ -1,1619 +1,2563 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
2
|
+
* AUTO-GENERATED FILE - DO NOT EDIT!
|
|
3
|
+
*
|
|
4
|
+
* This file was automatically generated by pg-to-ts v.4.1.1
|
|
5
|
+
* $ pg-to-ts generate -c postgres://username:password@localhost:5433/dosleg -t amescr -t ass -t aud -t auteur -t ble -t catrap -t corscr -t date_seance -t deccoc -t denrap -t doc -t docatt -t docsea -t ecr -t etaloi -t evtsea -t forpub -t gen -t lecass -t lecassrap -t lecture -t lnkrap -t loi -t loithe -t natloi -t org -t orgnomhis -t orippr -t oritxt -t posvot -t qua -t rap -t raporg -t rapthe -t rolsig -t scr -t ses -t stavot -t texte -t texte_ancien -t the -t titsen -t typatt -t typaut -t typdoc -t typevtsea -t typlec -t typloi -t typorg -t typrap -t typtxt -t typurl -t votsen -s public
|
|
6
|
+
*
|
|
4
7
|
*/
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
export type Int8 = ColumnType<string, bigint | number | string, bigint | number | string>;
|
|
8
|
-
export type Timestamp = ColumnType<Date, Date | string, Date | string>;
|
|
8
|
+
export type Json = unknown;
|
|
9
|
+
/** liaison entre scrutins publics et amendements */
|
|
9
10
|
export interface Amescr {
|
|
10
|
-
/**
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
/** Avec scrnum, clé étrangère vers la table scr (scrutin) - élément de la clé de la table */
|
|
12
|
+
sesann: number;
|
|
13
|
+
/** Avec sesann, clé étrangère vers la table scr (numéro de scrutin) - élément de la clé de la table */
|
|
14
|
+
scrnum: number;
|
|
15
|
+
/** Numéro d'amendement */
|
|
16
|
+
amescrnum: string;
|
|
17
|
+
}
|
|
18
|
+
/** liaison entre scrutins publics et amendements */
|
|
19
|
+
export interface AmescrInput {
|
|
20
|
+
/** Avec scrnum, clé étrangère vers la table scr (scrutin) - élément de la clé de la table */
|
|
21
|
+
sesann: number;
|
|
22
|
+
/** Avec sesann, clé étrangère vers la table scr (numéro de scrutin) - élément de la clé de la table */
|
|
23
|
+
scrnum: number;
|
|
24
|
+
/** Numéro d'amendement */
|
|
13
25
|
amescrnum: string;
|
|
14
|
-
/**
|
|
15
|
-
* Avec sesann, clé étrangère vers la table scr (numéro de scrutin) - élément de la clé de la table
|
|
16
|
-
*/
|
|
17
|
-
scrnum: Int8;
|
|
18
|
-
/**
|
|
19
|
-
* Avec scrnum, clé étrangère vers la table scr (scrutin) - élément de la clé de la table
|
|
20
|
-
*/
|
|
21
|
-
sesann: Int8;
|
|
22
26
|
}
|
|
27
|
+
/** Assemblées parlementaires françaises */
|
|
23
28
|
export interface Ass {
|
|
24
|
-
/**
|
|
25
|
-
* Clé de la table
|
|
26
|
-
*/
|
|
29
|
+
/** Clé de la table */
|
|
27
30
|
codass: string;
|
|
28
|
-
/**
|
|
29
|
-
|
|
30
|
-
|
|
31
|
+
/** Libellé */
|
|
32
|
+
libass: string;
|
|
33
|
+
}
|
|
34
|
+
/** Assemblées parlementaires françaises */
|
|
35
|
+
export interface AssInput {
|
|
36
|
+
/** Clé de la table */
|
|
37
|
+
codass: string;
|
|
38
|
+
/** Libellé */
|
|
31
39
|
libass: string;
|
|
32
40
|
}
|
|
41
|
+
/** Réunions de commission (relatives à un dossier législatif) */
|
|
33
42
|
export interface Aud {
|
|
34
|
-
/**
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
/**
|
|
39
|
-
|
|
40
|
-
*/
|
|
41
|
-
auddat: Timestamp;
|
|
43
|
+
/** Clé de la table */
|
|
44
|
+
audcle: number;
|
|
45
|
+
/** Clé étrangère var lecass (lecture) */
|
|
46
|
+
lecassidt: string;
|
|
47
|
+
/** Date de la réunion */
|
|
48
|
+
auddat: Date;
|
|
42
49
|
audtit: string;
|
|
43
|
-
/**
|
|
44
|
-
* URL du compte rendu de commission
|
|
45
|
-
*/
|
|
50
|
+
/** URL du compte rendu de commission */
|
|
46
51
|
audurl: string;
|
|
47
|
-
/**
|
|
48
|
-
|
|
49
|
-
|
|
52
|
+
/** Clé étrangère vers org (commission) */
|
|
53
|
+
orgcod: string;
|
|
54
|
+
}
|
|
55
|
+
/** Réunions de commission (relatives à un dossier législatif) */
|
|
56
|
+
export interface AudInput {
|
|
57
|
+
/** Clé de la table */
|
|
58
|
+
audcle: number;
|
|
59
|
+
/** Clé étrangère var lecass (lecture) */
|
|
50
60
|
lecassidt: string;
|
|
51
|
-
/**
|
|
52
|
-
|
|
53
|
-
|
|
61
|
+
/** Date de la réunion */
|
|
62
|
+
auddat: Date;
|
|
63
|
+
audtit: string;
|
|
64
|
+
/** URL du compte rendu de commission */
|
|
65
|
+
audurl: string;
|
|
66
|
+
/** Clé étrangère vers org (commission) */
|
|
54
67
|
orgcod: string;
|
|
55
68
|
}
|
|
69
|
+
/** Auteurs ou intervenants */
|
|
56
70
|
export interface Auteur {
|
|
57
|
-
/**
|
|
58
|
-
* Clé de la table
|
|
59
|
-
*/
|
|
71
|
+
/** Clé de la table */
|
|
60
72
|
autcod: string;
|
|
61
|
-
/**
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
/**
|
|
66
|
-
|
|
67
|
-
|
|
73
|
+
/** Clé étrangère vers qua (civilité) */
|
|
74
|
+
quacod: string;
|
|
75
|
+
/** Clé étrangère vers typaut (type de l'auteur) */
|
|
76
|
+
typautcod: string;
|
|
77
|
+
/** Nom usuel */
|
|
78
|
+
nomuse: string;
|
|
79
|
+
/** Prenoms */
|
|
80
|
+
prenom: string | null;
|
|
81
|
+
/** Nom technique utilisé pour les classements par noms */
|
|
82
|
+
nomtec: string;
|
|
83
|
+
/** Lien vers la base Sénateurs */
|
|
68
84
|
autmat: string | null;
|
|
69
|
-
/**
|
|
70
|
-
* Début de validité
|
|
71
|
-
*/
|
|
72
|
-
datdeb: Timestamp | null;
|
|
73
|
-
/**
|
|
74
|
-
* Fin de validité
|
|
75
|
-
*/
|
|
76
|
-
datfin: Timestamp | null;
|
|
77
|
-
/**
|
|
78
|
-
* Pour les groupes : contient les apparentés
|
|
79
|
-
*/
|
|
85
|
+
/** Pour les groupes : contient les apparentés */
|
|
80
86
|
grpapp: string | null;
|
|
81
|
-
/**
|
|
82
|
-
* Pour les groupes : contient les rattachés
|
|
83
|
-
*/
|
|
87
|
+
/** Pour les groupes : contient les rattachés */
|
|
84
88
|
grprat: string | null;
|
|
85
|
-
/**
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
/**
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
nomuse: string;
|
|
93
|
-
/**
|
|
94
|
-
* Prenoms
|
|
95
|
-
*/
|
|
96
|
-
prenom: string | null;
|
|
97
|
-
/**
|
|
98
|
-
* Clé étrangère vers qua (civilité)
|
|
99
|
-
*/
|
|
100
|
-
quacod: string;
|
|
101
|
-
/**
|
|
102
|
-
* OUI pour les sénatrices ayant demandé la féminisation de leurs fonctions
|
|
103
|
-
*/
|
|
89
|
+
/** Fonction de l'auteur */
|
|
90
|
+
autfct: string | null;
|
|
91
|
+
/** Début de validité */
|
|
92
|
+
datdeb: Date | null;
|
|
93
|
+
/** Fin de validité */
|
|
94
|
+
datfin: Date | null;
|
|
95
|
+
/** OUI pour les sénatrices ayant demandé la féminisation de leurs fonctions */
|
|
104
96
|
senfem: string | null;
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
97
|
+
}
|
|
98
|
+
/** Auteurs ou intervenants */
|
|
99
|
+
export interface AuteurInput {
|
|
100
|
+
/** Clé de la table */
|
|
101
|
+
autcod: string;
|
|
102
|
+
/** Clé étrangère vers qua (civilité) */
|
|
103
|
+
quacod: string;
|
|
104
|
+
/** Clé étrangère vers typaut (type de l'auteur) */
|
|
108
105
|
typautcod: string;
|
|
106
|
+
/** Nom usuel */
|
|
107
|
+
nomuse: string;
|
|
108
|
+
/** Prenoms */
|
|
109
|
+
prenom?: string | null;
|
|
110
|
+
/** Nom technique utilisé pour les classements par noms */
|
|
111
|
+
nomtec: string;
|
|
112
|
+
/** Lien vers la base Sénateurs */
|
|
113
|
+
autmat?: string | null;
|
|
114
|
+
/** Pour les groupes : contient les apparentés */
|
|
115
|
+
grpapp?: string | null;
|
|
116
|
+
/** Pour les groupes : contient les rattachés */
|
|
117
|
+
grprat?: string | null;
|
|
118
|
+
/** Fonction de l'auteur */
|
|
119
|
+
autfct?: string | null;
|
|
120
|
+
/** Début de validité */
|
|
121
|
+
datdeb?: Date | null;
|
|
122
|
+
/** Fin de validité */
|
|
123
|
+
datfin?: Date | null;
|
|
124
|
+
/** OUI pour les sénatrices ayant demandé la féminisation de leurs fonctions */
|
|
125
|
+
senfem?: string | null;
|
|
109
126
|
}
|
|
127
|
+
/** Bleus bugétaires (thématiques pour les PJLF) */
|
|
110
128
|
export interface Ble {
|
|
111
|
-
/**
|
|
112
|
-
* Clé de la table
|
|
113
|
-
*/
|
|
129
|
+
/** Clé de la table */
|
|
114
130
|
blecod: string;
|
|
115
|
-
/**
|
|
116
|
-
|
|
117
|
-
|
|
131
|
+
/** Libellé */
|
|
132
|
+
blelib: string;
|
|
133
|
+
}
|
|
134
|
+
/** Bleus bugétaires (thématiques pour les PJLF) */
|
|
135
|
+
export interface BleInput {
|
|
136
|
+
/** Clé de la table */
|
|
137
|
+
blecod: string;
|
|
138
|
+
/** Libellé */
|
|
118
139
|
blelib: string;
|
|
119
140
|
}
|
|
141
|
+
/** Catégories de rapports */
|
|
120
142
|
export interface Catrap {
|
|
121
|
-
/**
|
|
122
|
-
* Clé de la table
|
|
123
|
-
*/
|
|
143
|
+
/** Clé de la table */
|
|
124
144
|
catrapcod: string;
|
|
125
|
-
/**
|
|
126
|
-
* Libellé
|
|
127
|
-
*/
|
|
145
|
+
/** Libellé */
|
|
128
146
|
catraplib: string;
|
|
129
147
|
}
|
|
148
|
+
/** Catégories de rapports */
|
|
149
|
+
export interface CatrapInput {
|
|
150
|
+
/** Clé de la table */
|
|
151
|
+
catrapcod: string;
|
|
152
|
+
/** Libellé */
|
|
153
|
+
catraplib: string;
|
|
154
|
+
}
|
|
155
|
+
/** Mises au point concernant les scrutins publics */
|
|
130
156
|
export interface Corscr {
|
|
131
|
-
/**
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
/**
|
|
136
|
-
|
|
137
|
-
|
|
157
|
+
/** Avec scrnum, clé étrangère vers la table scr (scrutin) - élément de la clé de la table */
|
|
158
|
+
sesann: number;
|
|
159
|
+
/** Avec sesann, clé étrangère vers la table scr (numéro de scrutin) - élément de la clé de la table */
|
|
160
|
+
scrnum: number;
|
|
161
|
+
/** Tri des mises au points pour un scrutin donné */
|
|
162
|
+
corscrord: number | null;
|
|
163
|
+
/** Texte de la mise au point */
|
|
138
164
|
corscrtxt: string;
|
|
139
|
-
/**
|
|
140
|
-
* URL du CR de la séance publique correspondante
|
|
141
|
-
*/
|
|
165
|
+
/** URL du CR de la séance publique correspondante */
|
|
142
166
|
corscrurl: string | null;
|
|
143
|
-
/**
|
|
144
|
-
* Avec sesann, clé étrangère vers la table scr (numéro de scrutin) - élément de la clé de la table
|
|
145
|
-
*/
|
|
146
|
-
scrnum: Int8;
|
|
147
|
-
/**
|
|
148
|
-
* Avec scrnum, clé étrangère vers la table scr (scrutin) - élément de la clé de la table
|
|
149
|
-
*/
|
|
150
|
-
sesann: Int8;
|
|
151
167
|
}
|
|
168
|
+
/** Mises au point concernant les scrutins publics */
|
|
169
|
+
export interface CorscrInput {
|
|
170
|
+
/** Avec scrnum, clé étrangère vers la table scr (scrutin) - élément de la clé de la table */
|
|
171
|
+
sesann: number;
|
|
172
|
+
/** Avec sesann, clé étrangère vers la table scr (numéro de scrutin) - élément de la clé de la table */
|
|
173
|
+
scrnum: number;
|
|
174
|
+
/** Tri des mises au points pour un scrutin donné */
|
|
175
|
+
corscrord?: number | null;
|
|
176
|
+
/** Texte de la mise au point */
|
|
177
|
+
corscrtxt: string;
|
|
178
|
+
/** URL du CR de la séance publique correspondante */
|
|
179
|
+
corscrurl?: string | null;
|
|
180
|
+
}
|
|
181
|
+
/** Inscriptions à l'ordre du jour */
|
|
152
182
|
export interface DateSeance {
|
|
153
|
-
/**
|
|
154
|
-
* Clé de la table
|
|
155
|
-
*/
|
|
156
|
-
code: Int8;
|
|
157
|
-
/**
|
|
158
|
-
* Date de séance publique
|
|
159
|
-
*/
|
|
160
|
-
date_s: Timestamp | null;
|
|
161
|
-
/**
|
|
162
|
-
* Devrait etre lecassidt
|
|
163
|
-
*/
|
|
183
|
+
/** Devrait etre lecassidt */
|
|
164
184
|
lecidt: string | null;
|
|
165
|
-
/**
|
|
166
|
-
|
|
167
|
-
|
|
185
|
+
/** Date de séance publique */
|
|
186
|
+
date_s: Date | null;
|
|
187
|
+
/** Clé de la table */
|
|
188
|
+
code: number;
|
|
189
|
+
/** statut spécial : EVENT */
|
|
168
190
|
statut: string | null;
|
|
169
191
|
}
|
|
192
|
+
/** Inscriptions à l'ordre du jour */
|
|
193
|
+
export interface DateSeanceInput {
|
|
194
|
+
/** Devrait etre lecassidt */
|
|
195
|
+
lecidt?: string | null;
|
|
196
|
+
/** Date de séance publique */
|
|
197
|
+
date_s?: Date | null;
|
|
198
|
+
/** Clé de la table */
|
|
199
|
+
code: number;
|
|
200
|
+
/** statut spécial : EVENT */
|
|
201
|
+
statut?: string | null;
|
|
202
|
+
}
|
|
203
|
+
/** Décisions du Conseil constitutionnel */
|
|
170
204
|
export interface Deccoc {
|
|
171
|
-
/**
|
|
172
|
-
* Clé de la table
|
|
173
|
-
*/
|
|
205
|
+
/** Clé de la table */
|
|
174
206
|
deccoccod: string;
|
|
175
|
-
/**
|
|
176
|
-
|
|
177
|
-
|
|
207
|
+
/** Libellé */
|
|
208
|
+
deccoclib: string;
|
|
209
|
+
}
|
|
210
|
+
/** Décisions du Conseil constitutionnel */
|
|
211
|
+
export interface DeccocInput {
|
|
212
|
+
/** Clé de la table */
|
|
213
|
+
deccoccod: string;
|
|
214
|
+
/** Libellé */
|
|
178
215
|
deccoclib: string;
|
|
179
216
|
}
|
|
217
|
+
/** Dénominations de rapports */
|
|
180
218
|
export interface Denrap {
|
|
181
|
-
/**
|
|
182
|
-
* Clef
|
|
183
|
-
*/
|
|
219
|
+
/** Clef */
|
|
184
220
|
coddenrap: string;
|
|
185
|
-
/**
|
|
186
|
-
|
|
187
|
-
|
|
221
|
+
/** Type de rapport */
|
|
222
|
+
typraprap: string;
|
|
223
|
+
/** Libellé */
|
|
224
|
+
libdenrap: string;
|
|
225
|
+
/** Ordre dans une liste de type */
|
|
226
|
+
ordre: number | null;
|
|
227
|
+
/** Miniature */
|
|
188
228
|
denrapmin: string | null;
|
|
189
|
-
/**
|
|
190
|
-
* Style de miniature
|
|
191
|
-
*/
|
|
192
|
-
denrapstymin: string | null;
|
|
193
|
-
/**
|
|
194
|
-
* Titre de rubrique pour ce type de rapport
|
|
195
|
-
*/
|
|
229
|
+
/** Titre de rubrique pour ce type de rapport */
|
|
196
230
|
denraptit: string | null;
|
|
197
|
-
/**
|
|
198
|
-
|
|
199
|
-
|
|
231
|
+
/** Style de miniature */
|
|
232
|
+
denrapstymin: string | null;
|
|
233
|
+
/** clé étrangère vers gen (genre) */
|
|
200
234
|
gencod: string;
|
|
201
|
-
/**
|
|
202
|
-
* Libellé
|
|
203
|
-
*/
|
|
204
|
-
libdenrap: string;
|
|
205
|
-
/**
|
|
206
|
-
* Ordre dans une liste de type
|
|
207
|
-
*/
|
|
208
|
-
ordre: Int8 | null;
|
|
209
|
-
/**
|
|
210
|
-
* Cle de SOLNATRAP
|
|
211
|
-
*/
|
|
235
|
+
/** Cle de SOLNATRAP */
|
|
212
236
|
solnatrapcod: string | null;
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
237
|
+
}
|
|
238
|
+
/** Dénominations de rapports */
|
|
239
|
+
export interface DenrapInput {
|
|
240
|
+
/** Clef */
|
|
241
|
+
coddenrap: string;
|
|
242
|
+
/** Type de rapport */
|
|
216
243
|
typraprap: string;
|
|
244
|
+
/** Libellé */
|
|
245
|
+
libdenrap: string;
|
|
246
|
+
/** Ordre dans une liste de type */
|
|
247
|
+
ordre?: number | null;
|
|
248
|
+
/** Miniature */
|
|
249
|
+
denrapmin?: string | null;
|
|
250
|
+
/** Titre de rubrique pour ce type de rapport */
|
|
251
|
+
denraptit?: string | null;
|
|
252
|
+
/** Style de miniature */
|
|
253
|
+
denrapstymin?: string | null;
|
|
254
|
+
/** clé étrangère vers gen (genre) */
|
|
255
|
+
gencod: string;
|
|
256
|
+
/** Cle de SOLNATRAP */
|
|
257
|
+
solnatrapcod?: string | null;
|
|
217
258
|
}
|
|
259
|
+
/** Cette table rassemble des documents "divers". Par exemple :
|
|
260
|
+
- des décrets associés à une lecture
|
|
261
|
+
- des documents déposés qui ne relèvent pas de la catégorie des rapports (déclaration du gouvernement...) */
|
|
218
262
|
export interface Doc {
|
|
219
|
-
/**
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
/**
|
|
224
|
-
* date du document
|
|
225
|
-
*/
|
|
226
|
-
docdat: Timestamp | null;
|
|
227
|
-
/**
|
|
228
|
-
* Date de séance de rattachement
|
|
229
|
-
*/
|
|
230
|
-
docdatsea: Timestamp | null;
|
|
231
|
-
/**
|
|
232
|
-
* Clé de la table
|
|
233
|
-
*/
|
|
234
|
-
docidt: Int8;
|
|
235
|
-
/**
|
|
236
|
-
* Titre long du document
|
|
237
|
-
*/
|
|
263
|
+
/** Clé de la table */
|
|
264
|
+
docidt: number;
|
|
265
|
+
/** Type du document */
|
|
266
|
+
typdoccod: string | null;
|
|
267
|
+
/** Titre long du document */
|
|
238
268
|
docint: string | null;
|
|
239
|
-
/**
|
|
240
|
-
* Numéro de dépôt (documents déposés)
|
|
241
|
-
*/
|
|
242
|
-
docnum: Int8 | null;
|
|
243
|
-
/**
|
|
244
|
-
* Titre court du document
|
|
245
|
-
*/
|
|
246
|
-
doctitcou: string | null;
|
|
247
|
-
/**
|
|
248
|
-
* URL du document
|
|
249
|
-
*/
|
|
269
|
+
/** URL du document */
|
|
250
270
|
docurl: string | null;
|
|
251
|
-
/**
|
|
252
|
-
* Numéro de lecture (décrets...)
|
|
253
|
-
*/
|
|
271
|
+
/** Numéro de lecture (décrets...) */
|
|
254
272
|
lecidt: string | null;
|
|
255
|
-
/**
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
/**
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
273
|
+
/** date du document */
|
|
274
|
+
docdat: Date | null;
|
|
275
|
+
/** Numéro de dépôt (documents déposés) */
|
|
276
|
+
docnum: number | null;
|
|
277
|
+
/** Session de dépôt (documents déposés) */
|
|
278
|
+
sesann: number | null;
|
|
279
|
+
/** Date de dépôt (documents déposés) */
|
|
280
|
+
date_depot: Date | null;
|
|
281
|
+
/** Titre court du document */
|
|
282
|
+
doctitcou: string | null;
|
|
283
|
+
/** Date de séance de rattachement */
|
|
284
|
+
docdatsea: Date | null;
|
|
285
|
+
}
|
|
286
|
+
/** Cette table rassemble des documents "divers". Par exemple :
|
|
287
|
+
- des décrets associés à une lecture
|
|
288
|
+
- des documents déposés qui ne relèvent pas de la catégorie des rapports (déclaration du gouvernement...) */
|
|
289
|
+
export interface DocInput {
|
|
290
|
+
/** Clé de la table */
|
|
291
|
+
docidt: number;
|
|
292
|
+
/** Type du document */
|
|
293
|
+
typdoccod?: string | null;
|
|
294
|
+
/** Titre long du document */
|
|
295
|
+
docint?: string | null;
|
|
296
|
+
/** URL du document */
|
|
297
|
+
docurl?: string | null;
|
|
298
|
+
/** Numéro de lecture (décrets...) */
|
|
299
|
+
lecidt?: string | null;
|
|
300
|
+
/** date du document */
|
|
301
|
+
docdat?: Date | null;
|
|
302
|
+
/** Numéro de dépôt (documents déposés) */
|
|
303
|
+
docnum?: number | null;
|
|
304
|
+
/** Session de dépôt (documents déposés) */
|
|
305
|
+
sesann?: number | null;
|
|
306
|
+
/** Date de dépôt (documents déposés) */
|
|
307
|
+
date_depot?: Date | null;
|
|
308
|
+
/** Titre court du document */
|
|
309
|
+
doctitcou?: string | null;
|
|
310
|
+
/** Date de séance de rattachement */
|
|
311
|
+
docdatsea?: Date | null;
|
|
263
312
|
}
|
|
313
|
+
/** Documents attachés aux rapports */
|
|
264
314
|
export interface Docatt {
|
|
265
|
-
/**
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
/**
|
|
270
|
-
|
|
271
|
-
|
|
315
|
+
/** Clé de la table */
|
|
316
|
+
docattcle: number;
|
|
317
|
+
/** Clé étrangère vers rap (rapport) */
|
|
318
|
+
rapcod: number;
|
|
319
|
+
/** Clé étrangère vers typattcod (type du document attaché) */
|
|
320
|
+
typattcod: string;
|
|
321
|
+
/** URL du document attaché */
|
|
272
322
|
docatturl: string | null;
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
323
|
+
}
|
|
324
|
+
/** Documents attachés aux rapports */
|
|
325
|
+
export interface DocattInput {
|
|
326
|
+
/** Clé de la table */
|
|
327
|
+
docattcle: number;
|
|
328
|
+
/** Clé étrangère vers rap (rapport) */
|
|
329
|
+
rapcod: number;
|
|
330
|
+
/** Clé étrangère vers typattcod (type du document attaché) */
|
|
280
331
|
typattcod: string;
|
|
332
|
+
/** URL du document attaché */
|
|
333
|
+
docatturl?: string | null;
|
|
281
334
|
}
|
|
335
|
+
/** Documents relatifs aux événements de séance */
|
|
282
336
|
export interface Docsea {
|
|
283
|
-
/**
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
docseaord: Int8 | null;
|
|
287
|
-
/**
|
|
288
|
-
* URL du document
|
|
289
|
-
*/
|
|
337
|
+
/** Clé étrangère vers evtsea (événement de séance) */
|
|
338
|
+
evtseacle: number;
|
|
339
|
+
/** URL du document */
|
|
290
340
|
docseaurl: string | null;
|
|
291
|
-
/**
|
|
292
|
-
* Texte apparaissant après URL
|
|
293
|
-
*/
|
|
294
|
-
docseaurlapr: string | null;
|
|
295
|
-
/**
|
|
296
|
-
* Texte apparaissant avant URL
|
|
297
|
-
*/
|
|
298
|
-
docseaurlava: string | null;
|
|
299
|
-
/**
|
|
300
|
-
* Texte associé à l'URL
|
|
301
|
-
*/
|
|
341
|
+
/** Texte associé à l'URL */
|
|
302
342
|
docseaurltxt: string | null;
|
|
303
|
-
/**
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
343
|
+
/** Texte apparaissant avant URL */
|
|
344
|
+
docseaurlava: string | null;
|
|
345
|
+
/** Texte apparaissant après URL */
|
|
346
|
+
docseaurlapr: string | null;
|
|
347
|
+
/** Ordre du document pour l'événement de séance */
|
|
348
|
+
docseaord: number | null;
|
|
307
349
|
}
|
|
350
|
+
/** Documents relatifs aux événements de séance */
|
|
351
|
+
export interface DocseaInput {
|
|
352
|
+
/** Clé étrangère vers evtsea (événement de séance) */
|
|
353
|
+
evtseacle: number;
|
|
354
|
+
/** URL du document */
|
|
355
|
+
docseaurl?: string | null;
|
|
356
|
+
/** Texte associé à l'URL */
|
|
357
|
+
docseaurltxt?: string | null;
|
|
358
|
+
/** Texte apparaissant avant URL */
|
|
359
|
+
docseaurlava?: string | null;
|
|
360
|
+
/** Texte apparaissant après URL */
|
|
361
|
+
docseaurlapr?: string | null;
|
|
362
|
+
/** Ordre du document pour l'événement de séance */
|
|
363
|
+
docseaord?: number | null;
|
|
364
|
+
}
|
|
365
|
+
/** Correspondances entre les documents et leurs auteurs */
|
|
308
366
|
export interface Ecr {
|
|
309
|
-
/**
|
|
310
|
-
|
|
311
|
-
|
|
367
|
+
/** Clé étrangère vers rap (rapport) */
|
|
368
|
+
rapcod: number | null;
|
|
369
|
+
/** Position de l'auteur dans la liste des auteurs du document */
|
|
370
|
+
ecrnumtri: number;
|
|
371
|
+
/** Clé étrangère vers auteur */
|
|
312
372
|
autcod: string | null;
|
|
313
|
-
/**
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
/**
|
|
318
|
-
* Clé de la table
|
|
319
|
-
*/
|
|
320
|
-
ecrnum: Int8;
|
|
321
|
-
/**
|
|
322
|
-
* Position de l'auteur dans la liste des auteurs du document
|
|
323
|
-
*/
|
|
324
|
-
ecrnumtri: Int8;
|
|
325
|
-
/**
|
|
326
|
-
* Qualité de l'auteur pour un document donné
|
|
327
|
-
*/
|
|
328
|
-
ecrqua: string | null;
|
|
329
|
-
/**
|
|
330
|
-
* Clé étrangère vers rap (rapport)
|
|
331
|
-
*/
|
|
332
|
-
rapcod: Int8 | null;
|
|
333
|
-
/**
|
|
334
|
-
* Clé étrangère vers rolsig (rôle du signataire)
|
|
335
|
-
*/
|
|
336
|
-
signataire: string | null;
|
|
337
|
-
/**
|
|
338
|
-
* Clé étrangère vers le texte
|
|
339
|
-
*/
|
|
340
|
-
texcod: Int8 | null;
|
|
341
|
-
/**
|
|
342
|
-
* T=texte; R=rapport, D=document
|
|
343
|
-
*/
|
|
373
|
+
/** Clé étrangère vers le texte */
|
|
374
|
+
texcod: number | null;
|
|
375
|
+
/** Clé de la table */
|
|
376
|
+
ecrnum: number;
|
|
377
|
+
/** T=texte; R=rapport, D=document */
|
|
344
378
|
typedoc: string | null;
|
|
379
|
+
/** Clé étrangère vers rolsig (rôle du signataire) */
|
|
380
|
+
signataire: string | null;
|
|
381
|
+
/** Clé étrangère vers doc (document) */
|
|
382
|
+
docidt: number | null;
|
|
383
|
+
/** Qualité de l'auteur pour un document donné */
|
|
384
|
+
ecrqua: string | null;
|
|
345
385
|
}
|
|
386
|
+
/** Correspondances entre les documents et leurs auteurs */
|
|
387
|
+
export interface EcrInput {
|
|
388
|
+
/** Clé étrangère vers rap (rapport) */
|
|
389
|
+
rapcod?: number | null;
|
|
390
|
+
/** Position de l'auteur dans la liste des auteurs du document */
|
|
391
|
+
ecrnumtri: number;
|
|
392
|
+
/** Clé étrangère vers auteur */
|
|
393
|
+
autcod?: string | null;
|
|
394
|
+
/** Clé étrangère vers le texte */
|
|
395
|
+
texcod?: number | null;
|
|
396
|
+
/** Clé de la table */
|
|
397
|
+
ecrnum: number;
|
|
398
|
+
/** T=texte; R=rapport, D=document */
|
|
399
|
+
typedoc?: string | null;
|
|
400
|
+
/** Clé étrangère vers rolsig (rôle du signataire) */
|
|
401
|
+
signataire?: string | null;
|
|
402
|
+
/** Clé étrangère vers doc (document) */
|
|
403
|
+
docidt?: number | null;
|
|
404
|
+
/** Qualité de l'auteur pour un document donné */
|
|
405
|
+
ecrqua?: string | null;
|
|
406
|
+
}
|
|
407
|
+
/** États du dossier législtatif */
|
|
346
408
|
export interface Etaloi {
|
|
347
|
-
/**
|
|
348
|
-
* Clé de la table
|
|
349
|
-
*/
|
|
409
|
+
/** Clé de la table */
|
|
350
410
|
etaloicod: string;
|
|
351
|
-
/**
|
|
352
|
-
|
|
353
|
-
|
|
411
|
+
/** Libellé */
|
|
412
|
+
etaloilib: string;
|
|
413
|
+
}
|
|
414
|
+
/** États du dossier législtatif */
|
|
415
|
+
export interface EtaloiInput {
|
|
416
|
+
/** Clé de la table */
|
|
417
|
+
etaloicod: string;
|
|
418
|
+
/** Libellé */
|
|
354
419
|
etaloilib: string;
|
|
355
420
|
}
|
|
421
|
+
/** Evénements de séance */
|
|
356
422
|
export interface Evtsea {
|
|
357
|
-
/**
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
evtseacle: Int8;
|
|
361
|
-
/**
|
|
362
|
-
* Date de l'événement
|
|
363
|
-
*/
|
|
364
|
-
evtseadat: Timestamp | null;
|
|
365
|
-
/**
|
|
366
|
-
* Clé étrangère vers lecass (lecture)
|
|
367
|
-
*/
|
|
368
|
-
lecassidt: string;
|
|
369
|
-
/**
|
|
370
|
-
* Clé étrangère vers loi (dossier de la motion)
|
|
371
|
-
*/
|
|
423
|
+
/** Clé de la table */
|
|
424
|
+
evtseacle: number;
|
|
425
|
+
/** Clé étrangère vers loi (dossier de la motion) */
|
|
372
426
|
loicod: string | null;
|
|
373
|
-
/**
|
|
374
|
-
* Clé étrangère vers typevtsea (type d'événements)
|
|
375
|
-
*/
|
|
427
|
+
/** Clé étrangère vers typevtsea (type d'événements) */
|
|
376
428
|
typevtcod: string;
|
|
429
|
+
/** Clé étrangère vers lecass (lecture) */
|
|
430
|
+
lecassidt: string;
|
|
431
|
+
/** Date de l'événement */
|
|
432
|
+
evtseadat: Date | null;
|
|
433
|
+
}
|
|
434
|
+
/** Evénements de séance */
|
|
435
|
+
export interface EvtseaInput {
|
|
436
|
+
/** Clé de la table */
|
|
437
|
+
evtseacle: number;
|
|
438
|
+
/** Clé étrangère vers loi (dossier de la motion) */
|
|
439
|
+
loicod?: string | null;
|
|
440
|
+
/** Clé étrangère vers typevtsea (type d'événements) */
|
|
441
|
+
typevtcod: string;
|
|
442
|
+
/** Clé étrangère vers lecass (lecture) */
|
|
443
|
+
lecassidt: string;
|
|
444
|
+
/** Date de l'événement */
|
|
445
|
+
evtseadat?: Date | null;
|
|
377
446
|
}
|
|
447
|
+
/** Formats de publication pour les rapports */
|
|
378
448
|
export interface Forpub {
|
|
379
|
-
/**
|
|
380
|
-
* Clé de la table
|
|
381
|
-
*/
|
|
449
|
+
/** Clé de la table */
|
|
382
450
|
forpubcod: string;
|
|
383
|
-
/**
|
|
384
|
-
|
|
385
|
-
|
|
451
|
+
/** Libellé */
|
|
452
|
+
forpublib: string;
|
|
453
|
+
}
|
|
454
|
+
/** Formats de publication pour les rapports */
|
|
455
|
+
export interface ForpubInput {
|
|
456
|
+
/** Clé de la table */
|
|
457
|
+
forpubcod: string;
|
|
458
|
+
/** Libellé */
|
|
386
459
|
forpublib: string;
|
|
387
460
|
}
|
|
461
|
+
/** Genres et nombres */
|
|
388
462
|
export interface Gen {
|
|
389
|
-
/**
|
|
390
|
-
* Clé de la table
|
|
391
|
-
*/
|
|
463
|
+
/** Clé de la table */
|
|
392
464
|
gencod: string;
|
|
393
|
-
/**
|
|
394
|
-
|
|
395
|
-
|
|
465
|
+
/** Libellé */
|
|
466
|
+
genlib: string;
|
|
467
|
+
}
|
|
468
|
+
/** Genres et nombres */
|
|
469
|
+
export interface GenInput {
|
|
470
|
+
/** Clé de la table */
|
|
471
|
+
gencod: string;
|
|
472
|
+
/** Libellé */
|
|
396
473
|
genlib: string;
|
|
397
474
|
}
|
|
475
|
+
/** Lectures dans une assemblée parlementaire */
|
|
398
476
|
export interface Lecass {
|
|
399
|
-
/**
|
|
400
|
-
* Alias pour PPRE
|
|
401
|
-
*/
|
|
402
|
-
aliasppr: string | null;
|
|
403
|
-
/**
|
|
404
|
-
* Clé étrangère vers ass (assemblée parlementaire)
|
|
405
|
-
*/
|
|
406
|
-
codass: string;
|
|
407
|
-
/**
|
|
408
|
-
* URL si CR des débats manuel
|
|
409
|
-
*/
|
|
410
|
-
debatsurl: string | null;
|
|
411
|
-
/**
|
|
412
|
-
* Si "oui", un texte est déposé mais le statut exact de la lecture (2e, CMP...) n'est pas encore déterminé
|
|
413
|
-
*/
|
|
414
|
-
depot_only: Generated<string>;
|
|
415
|
-
/**
|
|
416
|
-
* Nr de texte amendé pour la séance publique
|
|
417
|
-
*/
|
|
418
|
-
lecassame: string | null;
|
|
419
|
-
/**
|
|
420
|
-
* Numero de la liasse des amendements adopt?s en s?ance publique
|
|
421
|
-
*/
|
|
422
|
-
lecassameado: string | null;
|
|
423
|
-
/**
|
|
424
|
-
* Date de publication de la liasse des amendements adopt?s en s?ance publique
|
|
425
|
-
*/
|
|
426
|
-
lecassameadodat: Timestamp | null;
|
|
427
|
-
/**
|
|
428
|
-
* Session de la liasse des amendements adopt?s en s?ance publique
|
|
429
|
-
*/
|
|
430
|
-
lecassameadoses: number | null;
|
|
431
|
-
/**
|
|
432
|
-
* Nr de texte amendé pour l'élaboration du texte de commission
|
|
433
|
-
*/
|
|
434
|
-
lecassamecom: string | null;
|
|
435
|
-
/**
|
|
436
|
-
* Numero de la liasse des amendements adopt?s par la commission au fond
|
|
437
|
-
*/
|
|
438
|
-
lecassamecomado: string | null;
|
|
439
|
-
/**
|
|
440
|
-
* Date de publication de la liasse des amendements adopt?s par la commission au fond
|
|
441
|
-
*/
|
|
442
|
-
lecassamecomadodat: Timestamp | null;
|
|
443
|
-
/**
|
|
444
|
-
* Session de la liasse des amendements adopt?s par la commission au fond
|
|
445
|
-
*/
|
|
446
|
-
lecassamecomadoses: number | null;
|
|
447
|
-
/**
|
|
448
|
-
* Date de publication des amendements pour le texte de commission
|
|
449
|
-
*/
|
|
450
|
-
lecassamecomdat: Timestamp | null;
|
|
451
|
-
/**
|
|
452
|
-
* Date de publication des amendements pour la séance publique
|
|
453
|
-
*/
|
|
454
|
-
lecassamedat: Timestamp | null;
|
|
455
|
-
/**
|
|
456
|
-
* Session de texte amendé pour la séance publique
|
|
457
|
-
*/
|
|
458
|
-
lecassameses: number | null;
|
|
459
|
-
/**
|
|
460
|
-
* Session de texte amendé pour l'élaboration du texte de commission
|
|
461
|
-
*/
|
|
462
|
-
lecassamesescom: number | null;
|
|
463
|
-
/**
|
|
464
|
-
* Clé de la table
|
|
465
|
-
*/
|
|
477
|
+
/** Clé de la table */
|
|
466
478
|
lecassidt: string;
|
|
467
|
-
/**
|
|
468
|
-
* Clé étrangère vers lecture
|
|
469
|
-
*/
|
|
479
|
+
/** Clé étrangère vers lecture */
|
|
470
480
|
lecidt: string;
|
|
471
|
-
/**
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
/**
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
/**
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
/**
|
|
484
|
-
* Clé étrangère vers ORG (commission saisie au fond)
|
|
485
|
-
*/
|
|
486
|
-
orgcod: string | null;
|
|
487
|
-
/**
|
|
488
|
-
* Clé étrangère vers orippr.oripprcod (Origine de la PPRE)
|
|
489
|
-
*/
|
|
490
|
-
orippr: string | null;
|
|
491
|
-
/**
|
|
492
|
-
* Note concernant la petite loi
|
|
493
|
-
*/
|
|
481
|
+
/** Clé étrangère vers ass (assemblée parlementaire) */
|
|
482
|
+
codass: string;
|
|
483
|
+
/** Ordre dans la lecture */
|
|
484
|
+
ordreass: number;
|
|
485
|
+
/** Clé étrangère vers ses (session parlementaire de la petite loi) */
|
|
486
|
+
sesann: number | null;
|
|
487
|
+
/** Numéro de la petite loi */
|
|
488
|
+
ptlnum: number | null;
|
|
489
|
+
/** URL de la petite loi */
|
|
490
|
+
ptlurl: string | null;
|
|
491
|
+
/** Complément au numéro de la petite loi */
|
|
492
|
+
ptlnumcpl: string | null;
|
|
493
|
+
/** Note concernant la petite loi */
|
|
494
494
|
ptlnot: string | null;
|
|
495
|
-
/**
|
|
496
|
-
|
|
497
|
-
|
|
495
|
+
/** URL de la 2ème partie de la petite loi */
|
|
496
|
+
ptlurl2: string | null;
|
|
497
|
+
/** Note concernant la 2ème partie de la petite loi */
|
|
498
498
|
ptlnot2: string | null;
|
|
499
|
-
/**
|
|
500
|
-
|
|
501
|
-
|
|
499
|
+
/** URL de la 3ème partie de la petite loi */
|
|
500
|
+
ptlurl3: string | null;
|
|
501
|
+
/** Note concernant la 3ème partie de la petite loi */
|
|
502
502
|
ptlnot3: string | null;
|
|
503
|
-
/**
|
|
504
|
-
* Numéro de la petite loi
|
|
505
|
-
*/
|
|
506
|
-
ptlnum: number | null;
|
|
507
|
-
/**
|
|
508
|
-
* Numéro de la petite loi de commission
|
|
509
|
-
*/
|
|
510
|
-
ptlnumcom: number | null;
|
|
511
|
-
/**
|
|
512
|
-
* Complément au numéro de la petite loi
|
|
513
|
-
*/
|
|
514
|
-
ptlnumcpl: string | null;
|
|
515
|
-
/**
|
|
516
|
-
* Complément au numéro de la 2ème partie de la petite loi
|
|
517
|
-
*/
|
|
503
|
+
/** Complément au numéro de la 2ème partie de la petite loi */
|
|
518
504
|
ptlnumcpl2: string | null;
|
|
519
|
-
/**
|
|
520
|
-
* Complément au numéro de la 3ème partie de la petite loi
|
|
521
|
-
*/
|
|
505
|
+
/** Complément au numéro de la 3ème partie de la petite loi */
|
|
522
506
|
ptlnumcpl3: string | null;
|
|
523
|
-
/**
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
/**
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
/**
|
|
532
|
-
* URL de la 3ème partie de la petite loi
|
|
533
|
-
*/
|
|
534
|
-
ptlurl3: string | null;
|
|
535
|
-
/**
|
|
536
|
-
* URL de la petite loi de commission
|
|
537
|
-
*/
|
|
538
|
-
ptlurlcom: string | null;
|
|
539
|
-
/**
|
|
540
|
-
* Réunion de commission pour les PPRE
|
|
541
|
-
*/
|
|
507
|
+
/** Nr de texte amendé pour la séance publique */
|
|
508
|
+
lecassame: string | null;
|
|
509
|
+
/** Session de texte amendé pour la séance publique */
|
|
510
|
+
lecassameses: number | null;
|
|
511
|
+
/** Clé étrangère vers ORG (commission saisie au fond) */
|
|
512
|
+
orgcod: string | null;
|
|
513
|
+
/** Nouvel intitulé du texte */
|
|
514
|
+
loiintmod: string | null;
|
|
515
|
+
/** Réunion de commission pour les PPRE */
|
|
542
516
|
reucom: string | null;
|
|
543
|
-
/**
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
/**
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
517
|
+
/** URL si CR des débats manuel */
|
|
518
|
+
debatsurl: string | null;
|
|
519
|
+
/** Si "oui", un texte est déposé mais le statut exact de la lecture (2e, CMP...) n'est pas encore déterminé */
|
|
520
|
+
depot_only: string;
|
|
521
|
+
/** Date de publication des amendements pour la séance publique */
|
|
522
|
+
lecassamedat: Date | null;
|
|
523
|
+
/** Date de publication des amendements pour le texte de commission */
|
|
524
|
+
lecassamecomdat: Date | null;
|
|
525
|
+
/** Clé étrangère vers orippr.oripprcod (Origine de la PPRE) */
|
|
526
|
+
orippr: string | null;
|
|
527
|
+
/** Libellé de la PPRE */
|
|
528
|
+
libppr: string | null;
|
|
529
|
+
/** Session parlementaire pour PPRE */
|
|
530
|
+
sesppr: number | null;
|
|
531
|
+
/** URL de la petite loi de commission */
|
|
532
|
+
ptlurlcom: string | null;
|
|
533
|
+
/** Alias pour PPRE */
|
|
534
|
+
aliasppr: string | null;
|
|
535
|
+
/** Nr de texte amendé pour l'élaboration du texte de commission */
|
|
536
|
+
lecassamecom: string | null;
|
|
537
|
+
/** Session de texte amendé pour l'élaboration du texte de commission */
|
|
538
|
+
lecassamesescom: number | null;
|
|
539
|
+
/** Numéro de la petite loi de commission */
|
|
540
|
+
ptlnumcom: number | null;
|
|
541
|
+
/** Numero de la liasse des amendements adopt?s en s?ance publique */
|
|
542
|
+
lecassameado: string | null;
|
|
543
|
+
/** Date de publication de la liasse des amendements adopt?s en s?ance publique */
|
|
544
|
+
lecassameadodat: Date | null;
|
|
545
|
+
/** Session de la liasse des amendements adopt?s en s?ance publique */
|
|
546
|
+
lecassameadoses: number | null;
|
|
547
|
+
/** Numero de la liasse des amendements adopt?s par la commission au fond */
|
|
548
|
+
lecassamecomado: string | null;
|
|
549
|
+
/** Date de publication de la liasse des amendements adopt?s par la commission au fond */
|
|
550
|
+
lecassamecomadodat: Date | null;
|
|
551
|
+
/** Session de la liasse des amendements adopt?s par la commission au fond */
|
|
552
|
+
lecassamecomadoses: number | null;
|
|
551
553
|
}
|
|
554
|
+
/** Lectures dans une assemblée parlementaire */
|
|
555
|
+
export interface LecassInput {
|
|
556
|
+
/** Clé de la table */
|
|
557
|
+
lecassidt: string;
|
|
558
|
+
/** Clé étrangère vers lecture */
|
|
559
|
+
lecidt: string;
|
|
560
|
+
/** Clé étrangère vers ass (assemblée parlementaire) */
|
|
561
|
+
codass: string;
|
|
562
|
+
/** Ordre dans la lecture */
|
|
563
|
+
ordreass: number;
|
|
564
|
+
/** Clé étrangère vers ses (session parlementaire de la petite loi) */
|
|
565
|
+
sesann?: number | null;
|
|
566
|
+
/** Numéro de la petite loi */
|
|
567
|
+
ptlnum?: number | null;
|
|
568
|
+
/** URL de la petite loi */
|
|
569
|
+
ptlurl?: string | null;
|
|
570
|
+
/** Complément au numéro de la petite loi */
|
|
571
|
+
ptlnumcpl?: string | null;
|
|
572
|
+
/** Note concernant la petite loi */
|
|
573
|
+
ptlnot?: string | null;
|
|
574
|
+
/** URL de la 2ème partie de la petite loi */
|
|
575
|
+
ptlurl2?: string | null;
|
|
576
|
+
/** Note concernant la 2ème partie de la petite loi */
|
|
577
|
+
ptlnot2?: string | null;
|
|
578
|
+
/** URL de la 3ème partie de la petite loi */
|
|
579
|
+
ptlurl3?: string | null;
|
|
580
|
+
/** Note concernant la 3ème partie de la petite loi */
|
|
581
|
+
ptlnot3?: string | null;
|
|
582
|
+
/** Complément au numéro de la 2ème partie de la petite loi */
|
|
583
|
+
ptlnumcpl2?: string | null;
|
|
584
|
+
/** Complément au numéro de la 3ème partie de la petite loi */
|
|
585
|
+
ptlnumcpl3?: string | null;
|
|
586
|
+
/** Nr de texte amendé pour la séance publique */
|
|
587
|
+
lecassame?: string | null;
|
|
588
|
+
/** Session de texte amendé pour la séance publique */
|
|
589
|
+
lecassameses?: number | null;
|
|
590
|
+
/** Clé étrangère vers ORG (commission saisie au fond) */
|
|
591
|
+
orgcod?: string | null;
|
|
592
|
+
/** Nouvel intitulé du texte */
|
|
593
|
+
loiintmod?: string | null;
|
|
594
|
+
/** Réunion de commission pour les PPRE */
|
|
595
|
+
reucom?: string | null;
|
|
596
|
+
/** URL si CR des débats manuel */
|
|
597
|
+
debatsurl?: string | null;
|
|
598
|
+
/** Si "oui", un texte est déposé mais le statut exact de la lecture (2e, CMP...) n'est pas encore déterminé */
|
|
599
|
+
depot_only?: string;
|
|
600
|
+
/** Date de publication des amendements pour la séance publique */
|
|
601
|
+
lecassamedat?: Date | null;
|
|
602
|
+
/** Date de publication des amendements pour le texte de commission */
|
|
603
|
+
lecassamecomdat?: Date | null;
|
|
604
|
+
/** Clé étrangère vers orippr.oripprcod (Origine de la PPRE) */
|
|
605
|
+
orippr?: string | null;
|
|
606
|
+
/** Libellé de la PPRE */
|
|
607
|
+
libppr?: string | null;
|
|
608
|
+
/** Session parlementaire pour PPRE */
|
|
609
|
+
sesppr?: number | null;
|
|
610
|
+
/** URL de la petite loi de commission */
|
|
611
|
+
ptlurlcom?: string | null;
|
|
612
|
+
/** Alias pour PPRE */
|
|
613
|
+
aliasppr?: string | null;
|
|
614
|
+
/** Nr de texte amendé pour l'élaboration du texte de commission */
|
|
615
|
+
lecassamecom?: string | null;
|
|
616
|
+
/** Session de texte amendé pour l'élaboration du texte de commission */
|
|
617
|
+
lecassamesescom?: number | null;
|
|
618
|
+
/** Numéro de la petite loi de commission */
|
|
619
|
+
ptlnumcom?: number | null;
|
|
620
|
+
/** Numero de la liasse des amendements adopt?s en s?ance publique */
|
|
621
|
+
lecassameado?: string | null;
|
|
622
|
+
/** Date de publication de la liasse des amendements adopt?s en s?ance publique */
|
|
623
|
+
lecassameadodat?: Date | null;
|
|
624
|
+
/** Session de la liasse des amendements adopt?s en s?ance publique */
|
|
625
|
+
lecassameadoses?: number | null;
|
|
626
|
+
/** Numero de la liasse des amendements adopt?s par la commission au fond */
|
|
627
|
+
lecassamecomado?: string | null;
|
|
628
|
+
/** Date de publication de la liasse des amendements adopt?s par la commission au fond */
|
|
629
|
+
lecassamecomadodat?: Date | null;
|
|
630
|
+
/** Session de la liasse des amendements adopt?s par la commission au fond */
|
|
631
|
+
lecassamecomadoses?: number | null;
|
|
632
|
+
}
|
|
633
|
+
/** Liaisons rapports-lectures */
|
|
552
634
|
export interface Lecassrap {
|
|
553
|
-
/**
|
|
554
|
-
* Clé étrangère vers lecass (lecture dans une assemblée parlementaire)
|
|
555
|
-
*/
|
|
635
|
+
/** Clé étrangère vers lecass (lecture dans une assemblée parlementaire) */
|
|
556
636
|
lecassidt: string;
|
|
557
|
-
/**
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
lecassrapord:
|
|
561
|
-
/**
|
|
562
|
-
* Clé étrangère vers rap (rapport)
|
|
563
|
-
*/
|
|
564
|
-
rapcod: Int8;
|
|
637
|
+
/** Clé étrangère vers rap (rapport) */
|
|
638
|
+
rapcod: number;
|
|
639
|
+
/** hiérarchisation des dossiers attachés */
|
|
640
|
+
lecassrapord: number | null;
|
|
565
641
|
}
|
|
642
|
+
/** Liaisons rapports-lectures */
|
|
643
|
+
export interface LecassrapInput {
|
|
644
|
+
/** Clé étrangère vers lecass (lecture dans une assemblée parlementaire) */
|
|
645
|
+
lecassidt: string;
|
|
646
|
+
/** Clé étrangère vers rap (rapport) */
|
|
647
|
+
rapcod: number;
|
|
648
|
+
/** hiérarchisation des dossiers attachés */
|
|
649
|
+
lecassrapord?: number | null;
|
|
650
|
+
}
|
|
651
|
+
/** Lectures */
|
|
566
652
|
export interface Lecture {
|
|
567
|
-
/**
|
|
568
|
-
|
|
569
|
-
|
|
653
|
+
/** Clé de la table */
|
|
654
|
+
lecidt: string;
|
|
655
|
+
/** Clé étrangère vers loi (dossier législatif) */
|
|
656
|
+
loicod: string;
|
|
657
|
+
/** Clé étrangère vers typlec (type de lecture) */
|
|
658
|
+
typleccod: string;
|
|
659
|
+
/** Libellé de la lecture */
|
|
570
660
|
leccom: string | null;
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
661
|
+
}
|
|
662
|
+
/** Lectures */
|
|
663
|
+
export interface LectureInput {
|
|
664
|
+
/** Clé de la table */
|
|
574
665
|
lecidt: string;
|
|
575
|
-
/**
|
|
576
|
-
* Clé étrangère vers loi (dossier législatif)
|
|
577
|
-
*/
|
|
666
|
+
/** Clé étrangère vers loi (dossier législatif) */
|
|
578
667
|
loicod: string;
|
|
579
|
-
/**
|
|
580
|
-
* Clé étrangère vers typlec (type de lecture)
|
|
581
|
-
*/
|
|
668
|
+
/** Clé étrangère vers typlec (type de lecture) */
|
|
582
669
|
typleccod: string;
|
|
670
|
+
/** Libellé de la lecture */
|
|
671
|
+
leccom?: string | null;
|
|
583
672
|
}
|
|
673
|
+
/** Liens entre rapports */
|
|
584
674
|
export interface Lnkrap {
|
|
585
|
-
/**
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
rapcodenf:
|
|
589
|
-
/**
|
|
590
|
-
* Clé étrangère vers rap (rapport père)
|
|
591
|
-
*/
|
|
592
|
-
rapcodper: Int8;
|
|
593
|
-
/**
|
|
594
|
-
* Mention apparaissant dans l'enfant
|
|
595
|
-
*/
|
|
596
|
-
rapenfdsc: string | null;
|
|
597
|
-
/**
|
|
598
|
-
* Mention apparaissant dans le père
|
|
599
|
-
*/
|
|
675
|
+
/** Clé étrangère vers rap (rapport père) */
|
|
676
|
+
rapcodper: number;
|
|
677
|
+
/** Clé étrangère vers rap (rapport enfant) */
|
|
678
|
+
rapcodenf: number;
|
|
679
|
+
/** Mention apparaissant dans le père */
|
|
600
680
|
rapperdsc: string | null;
|
|
681
|
+
/** Mention apparaissant dans l'enfant */
|
|
682
|
+
rapenfdsc: string | null;
|
|
601
683
|
}
|
|
684
|
+
/** Liens entre rapports */
|
|
685
|
+
export interface LnkrapInput {
|
|
686
|
+
/** Clé étrangère vers rap (rapport père) */
|
|
687
|
+
rapcodper: number;
|
|
688
|
+
/** Clé étrangère vers rap (rapport enfant) */
|
|
689
|
+
rapcodenf: number;
|
|
690
|
+
/** Mention apparaissant dans le père */
|
|
691
|
+
rapperdsc?: string | null;
|
|
692
|
+
/** Mention apparaissant dans l'enfant */
|
|
693
|
+
rapenfdsc?: string | null;
|
|
694
|
+
}
|
|
695
|
+
/** Dossiers législatifs */
|
|
602
696
|
export interface Loi {
|
|
603
|
-
/**
|
|
604
|
-
* Date de la décision du Conseil constitutionnel
|
|
605
|
-
*/
|
|
606
|
-
date_decision: Timestamp | null;
|
|
607
|
-
/**
|
|
608
|
-
* Date de promulgation
|
|
609
|
-
*/
|
|
610
|
-
date_loi: Timestamp | null;
|
|
611
|
-
/**
|
|
612
|
-
* Clé étrangère vers deccod (décision du Conseil constitutionnel)
|
|
613
|
-
*/
|
|
614
|
-
deccoccod: string | null;
|
|
615
|
-
/**
|
|
616
|
-
* URL vers la décision du Conseil constitutionnel
|
|
617
|
-
*/
|
|
618
|
-
deccocurl: string | null;
|
|
619
|
-
/**
|
|
620
|
-
* URL du dossier du Conseil constitutionnel
|
|
621
|
-
*/
|
|
622
|
-
doscocurl: string | null;
|
|
623
|
-
en_clair_chapo: string | null;
|
|
624
|
-
en_clair_image: string | null;
|
|
625
|
-
en_clair_url: string | null;
|
|
626
|
-
/**
|
|
627
|
-
* Clé étrangère vers etaloi (état du dossier)
|
|
628
|
-
*/
|
|
629
|
-
etaloicod: string | null;
|
|
630
|
-
/**
|
|
631
|
-
* Clé
|
|
632
|
-
*/
|
|
697
|
+
/** Clé */
|
|
633
698
|
loicod: string;
|
|
634
|
-
/**
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
/**
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
/**
|
|
643
|
-
* Date de publication du 1er correctif au JO
|
|
644
|
-
*/
|
|
645
|
-
loidatjo2: Timestamp | null;
|
|
646
|
-
/**
|
|
647
|
-
* Date de publication du 2ème correctif au JO
|
|
648
|
-
*/
|
|
649
|
-
loidatjo3: Timestamp | null;
|
|
650
|
-
/**
|
|
651
|
-
* Entree dans l'index
|
|
699
|
+
/** Clé étrangère vers typloi (type de loi) */
|
|
700
|
+
typloicod: string;
|
|
701
|
+
/** Clé étrangère vers etaloi (état du dossier) */
|
|
702
|
+
etaloicod: string | null;
|
|
703
|
+
/** Clé étrangère vers deccod (décision du Conseil constitutionnel) */
|
|
704
|
+
deccoccod: string | null;
|
|
705
|
+
/** Numéro de la loi */
|
|
706
|
+
numero: string | null;
|
|
707
|
+
/** Racine de l'URL du dossier
|
|
652
708
|
*/
|
|
709
|
+
signet: string | null;
|
|
710
|
+
/** Entree dans l'index */
|
|
653
711
|
loient: string | null;
|
|
654
|
-
/**
|
|
655
|
-
|
|
656
|
-
|
|
712
|
+
/** Complement de l'index */
|
|
713
|
+
motclef: string | null;
|
|
714
|
+
/** Titre usuel court */
|
|
715
|
+
loitit: string | null;
|
|
716
|
+
/** Titre long exhaustif de la loi */
|
|
657
717
|
loiint: string | null;
|
|
658
|
-
/**
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
/**
|
|
663
|
-
* Clé étrangère vers le dossier législatif d'une nouvelle délibération
|
|
664
|
-
*/
|
|
665
|
-
loinoudelibcod: string | null;
|
|
666
|
-
/**
|
|
667
|
-
* Numéro du JO
|
|
668
|
-
*/
|
|
718
|
+
/** oui,non ou dro */
|
|
719
|
+
urgence: string | null;
|
|
720
|
+
/** URL de la promulgation JO */
|
|
721
|
+
url_jo: string | null;
|
|
722
|
+
/** Numéro du JO */
|
|
669
723
|
loinumjo: string | null;
|
|
670
|
-
/**
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
/**
|
|
675
|
-
* Numéro du JO (2ème correctif)
|
|
676
|
-
*/
|
|
677
|
-
loinumjo3: string | null;
|
|
678
|
-
/**
|
|
679
|
-
* Titre usuel court
|
|
680
|
-
*/
|
|
681
|
-
loitit: string | null;
|
|
682
|
-
/**
|
|
683
|
-
* Titre de la loi promulguée
|
|
684
|
-
*/
|
|
724
|
+
/** Date de publication au JO */
|
|
725
|
+
loidatjo: Date | null;
|
|
726
|
+
/** Date de promulgation */
|
|
727
|
+
date_loi: Date | null;
|
|
728
|
+
/** Titre de la loi promulguée */
|
|
685
729
|
loititjo: string | null;
|
|
686
|
-
/**
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
/**
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
/**
|
|
695
|
-
* Numéro de la décision du Conseil constitutionnel
|
|
696
|
-
*/
|
|
730
|
+
/** URL du 1er correctif JO */
|
|
731
|
+
url_jo2: string | null;
|
|
732
|
+
/** Numéro du JO (1er correctif) */
|
|
733
|
+
loinumjo2: string | null;
|
|
734
|
+
/** Date de publication du 1er correctif au JO */
|
|
735
|
+
loidatjo2: Date | null;
|
|
736
|
+
/** URL vers la décision du Conseil constitutionnel */
|
|
737
|
+
deccocurl: string | null;
|
|
738
|
+
/** Numéro de la décision du Conseil constitutionnel */
|
|
697
739
|
num_decision: string | null;
|
|
698
|
-
/**
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
/**
|
|
703
|
-
|
|
704
|
-
|
|
740
|
+
/** Date de la décision du Conseil constitutionnel */
|
|
741
|
+
date_decision: Date | null;
|
|
742
|
+
/** Clé étrangère vers le dossier législatif maître */
|
|
743
|
+
loicodmai: string | null;
|
|
744
|
+
/** Clé étrangère vers le dossier législatif d'une nouvelle délibération */
|
|
745
|
+
loinoudelibcod: string | null;
|
|
746
|
+
/** Clé étrangère vers le dossier législatif sur lequel porte la motion */
|
|
747
|
+
motionloiorigcod: string | null;
|
|
748
|
+
/** Objet du texte
|
|
705
749
|
*/
|
|
706
750
|
objet: string | null;
|
|
707
|
-
/**
|
|
708
|
-
* Organisme créé par la résolution
|
|
709
|
-
*/
|
|
710
|
-
orgcod: string | null;
|
|
711
|
-
/**
|
|
712
|
-
* Date d'engagement de la procédure accélérée
|
|
713
|
-
*/
|
|
714
|
-
proaccdat: Timestamp | null;
|
|
715
|
-
/**
|
|
716
|
-
* Date d'oposition à la procédure accélérée
|
|
717
|
-
*/
|
|
718
|
-
proaccoppdat: Timestamp | null;
|
|
719
|
-
/**
|
|
720
|
-
* Date de retrait de la procédure accélérée
|
|
721
|
-
*/
|
|
722
|
-
retproaccdat: Timestamp | null;
|
|
723
|
-
/**
|
|
724
|
-
* Date de saisine du Conseil constitutionnel
|
|
725
|
-
*/
|
|
726
|
-
saisine_date: Timestamp | null;
|
|
727
|
-
/**
|
|
728
|
-
* Conditions de saisine du Conseil constitutionnel
|
|
751
|
+
/** Url de l'ordonance
|
|
729
752
|
*/
|
|
753
|
+
url_ordonnance: string | null;
|
|
754
|
+
/** Date de saisine du Conseil constitutionnel */
|
|
755
|
+
saisine_date: Date | null;
|
|
756
|
+
/** Conditions de saisine du Conseil constitutionnel */
|
|
730
757
|
saisine_par: string | null;
|
|
731
|
-
/**
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
/**
|
|
737
|
-
* Signet alternatif, à utiliser pour un renommage de signet
|
|
738
|
-
*/
|
|
739
|
-
signetalt: string | null;
|
|
740
|
-
/**
|
|
741
|
-
* Clé étrangère vers typloi (type de loi)
|
|
742
|
-
*/
|
|
743
|
-
typloicod: string;
|
|
744
|
-
/**
|
|
745
|
-
* oui,non ou dro
|
|
746
|
-
*/
|
|
747
|
-
urgence: string | null;
|
|
748
|
-
/**
|
|
749
|
-
* URL du dossier législatif sur le site de l'Assemblée Nationale
|
|
750
|
-
*/
|
|
751
|
-
url_an: string | null;
|
|
752
|
-
/**
|
|
753
|
-
* URL de la promulgation JO
|
|
754
|
-
*/
|
|
755
|
-
url_jo: string | null;
|
|
756
|
-
/**
|
|
757
|
-
* URL du 1er correctif JO
|
|
758
|
-
*/
|
|
759
|
-
url_jo2: string | null;
|
|
760
|
-
/**
|
|
761
|
-
* URL du 2ème correctif JO
|
|
762
|
-
*/
|
|
758
|
+
/** Date de publication du 2ème correctif au JO */
|
|
759
|
+
loidatjo3: Date | null;
|
|
760
|
+
/** Numéro du JO (2ème correctif) */
|
|
761
|
+
loinumjo3: string | null;
|
|
762
|
+
/** URL du 2ème correctif JO */
|
|
763
763
|
url_jo3: string | null;
|
|
764
|
-
/**
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
*/
|
|
768
|
-
url_ordonnance: string | null;
|
|
769
|
-
/**
|
|
770
|
-
* URL de la page qui contient la présentation article par article des travaux parlementaires sur ce texte
|
|
771
|
-
*/
|
|
764
|
+
/** URL du dossier législatif sur le site de l'Assemblée Nationale */
|
|
765
|
+
url_an: string | null;
|
|
766
|
+
/** URL de la page qui contient la présentation article par article des travaux parlementaires sur ce texte */
|
|
772
767
|
url_presart: string | null;
|
|
768
|
+
/** Signet alternatif, à utiliser pour un renommage de signet */
|
|
769
|
+
signetalt: string | null;
|
|
770
|
+
/** Organisme créé par la résolution */
|
|
771
|
+
orgcod: string | null;
|
|
772
|
+
/** URL du dossier du Conseil constitutionnel */
|
|
773
|
+
doscocurl: string | null;
|
|
774
|
+
/** Intitulé d'origine */
|
|
775
|
+
loiintori: string | null;
|
|
776
|
+
/** Date d'engagement de la procédure accélérée */
|
|
777
|
+
proaccdat: Date | null;
|
|
778
|
+
/** Date d'oposition à la procédure accélérée */
|
|
779
|
+
proaccoppdat: Date | null;
|
|
780
|
+
/** Date de retrait de la procédure accélérée */
|
|
781
|
+
retproaccdat: Date | null;
|
|
782
|
+
en_clair_url: string | null;
|
|
783
|
+
en_clair_image: string | null;
|
|
784
|
+
en_clair_chapo: string | null;
|
|
785
|
+
}
|
|
786
|
+
/** Dossiers législatifs */
|
|
787
|
+
export interface LoiInput {
|
|
788
|
+
/** Clé */
|
|
789
|
+
loicod: string;
|
|
790
|
+
/** Clé étrangère vers typloi (type de loi) */
|
|
791
|
+
typloicod: string;
|
|
792
|
+
/** Clé étrangère vers etaloi (état du dossier) */
|
|
793
|
+
etaloicod?: string | null;
|
|
794
|
+
/** Clé étrangère vers deccod (décision du Conseil constitutionnel) */
|
|
795
|
+
deccoccod?: string | null;
|
|
796
|
+
/** Numéro de la loi */
|
|
797
|
+
numero?: string | null;
|
|
798
|
+
/** Racine de l'URL du dossier
|
|
799
|
+
*/
|
|
800
|
+
signet?: string | null;
|
|
801
|
+
/** Entree dans l'index */
|
|
802
|
+
loient?: string | null;
|
|
803
|
+
/** Complement de l'index */
|
|
804
|
+
motclef?: string | null;
|
|
805
|
+
/** Titre usuel court */
|
|
806
|
+
loitit?: string | null;
|
|
807
|
+
/** Titre long exhaustif de la loi */
|
|
808
|
+
loiint?: string | null;
|
|
809
|
+
/** oui,non ou dro */
|
|
810
|
+
urgence?: string | null;
|
|
811
|
+
/** URL de la promulgation JO */
|
|
812
|
+
url_jo?: string | null;
|
|
813
|
+
/** Numéro du JO */
|
|
814
|
+
loinumjo?: string | null;
|
|
815
|
+
/** Date de publication au JO */
|
|
816
|
+
loidatjo?: Date | null;
|
|
817
|
+
/** Date de promulgation */
|
|
818
|
+
date_loi?: Date | null;
|
|
819
|
+
/** Titre de la loi promulguée */
|
|
820
|
+
loititjo?: string | null;
|
|
821
|
+
/** URL du 1er correctif JO */
|
|
822
|
+
url_jo2?: string | null;
|
|
823
|
+
/** Numéro du JO (1er correctif) */
|
|
824
|
+
loinumjo2?: string | null;
|
|
825
|
+
/** Date de publication du 1er correctif au JO */
|
|
826
|
+
loidatjo2?: Date | null;
|
|
827
|
+
/** URL vers la décision du Conseil constitutionnel */
|
|
828
|
+
deccocurl?: string | null;
|
|
829
|
+
/** Numéro de la décision du Conseil constitutionnel */
|
|
830
|
+
num_decision?: string | null;
|
|
831
|
+
/** Date de la décision du Conseil constitutionnel */
|
|
832
|
+
date_decision?: Date | null;
|
|
833
|
+
/** Clé étrangère vers le dossier législatif maître */
|
|
834
|
+
loicodmai?: string | null;
|
|
835
|
+
/** Clé étrangère vers le dossier législatif d'une nouvelle délibération */
|
|
836
|
+
loinoudelibcod?: string | null;
|
|
837
|
+
/** Clé étrangère vers le dossier législatif sur lequel porte la motion */
|
|
838
|
+
motionloiorigcod?: string | null;
|
|
839
|
+
/** Objet du texte
|
|
840
|
+
*/
|
|
841
|
+
objet?: string | null;
|
|
842
|
+
/** Url de l'ordonance
|
|
843
|
+
*/
|
|
844
|
+
url_ordonnance?: string | null;
|
|
845
|
+
/** Date de saisine du Conseil constitutionnel */
|
|
846
|
+
saisine_date?: Date | null;
|
|
847
|
+
/** Conditions de saisine du Conseil constitutionnel */
|
|
848
|
+
saisine_par?: string | null;
|
|
849
|
+
/** Date de publication du 2ème correctif au JO */
|
|
850
|
+
loidatjo3?: Date | null;
|
|
851
|
+
/** Numéro du JO (2ème correctif) */
|
|
852
|
+
loinumjo3?: string | null;
|
|
853
|
+
/** URL du 2ème correctif JO */
|
|
854
|
+
url_jo3?: string | null;
|
|
855
|
+
/** URL du dossier législatif sur le site de l'Assemblée Nationale */
|
|
856
|
+
url_an?: string | null;
|
|
857
|
+
/** URL de la page qui contient la présentation article par article des travaux parlementaires sur ce texte */
|
|
858
|
+
url_presart?: string | null;
|
|
859
|
+
/** Signet alternatif, à utiliser pour un renommage de signet */
|
|
860
|
+
signetalt?: string | null;
|
|
861
|
+
/** Organisme créé par la résolution */
|
|
862
|
+
orgcod?: string | null;
|
|
863
|
+
/** URL du dossier du Conseil constitutionnel */
|
|
864
|
+
doscocurl?: string | null;
|
|
865
|
+
/** Intitulé d'origine */
|
|
866
|
+
loiintori?: string | null;
|
|
867
|
+
/** Date d'engagement de la procédure accélérée */
|
|
868
|
+
proaccdat?: Date | null;
|
|
869
|
+
/** Date d'oposition à la procédure accélérée */
|
|
870
|
+
proaccoppdat?: Date | null;
|
|
871
|
+
/** Date de retrait de la procédure accélérée */
|
|
872
|
+
retproaccdat?: Date | null;
|
|
873
|
+
en_clair_url?: string | null;
|
|
874
|
+
en_clair_image?: string | null;
|
|
875
|
+
en_clair_chapo?: string | null;
|
|
773
876
|
}
|
|
877
|
+
/** Thèmatisation des dossiers législatifs */
|
|
774
878
|
export interface Loithe {
|
|
775
|
-
/**
|
|
776
|
-
* Clé étrangère vers loi (dossier législatif)
|
|
777
|
-
*/
|
|
879
|
+
/** Clé étrangère vers loi (dossier législatif) */
|
|
778
880
|
loicod: string;
|
|
779
|
-
/**
|
|
780
|
-
* Clé étrangère vers the (thème)
|
|
781
|
-
*/
|
|
881
|
+
/** Clé étrangère vers the (thème) */
|
|
782
882
|
thecle: number;
|
|
783
883
|
}
|
|
884
|
+
/** Thèmatisation des dossiers législatifs */
|
|
885
|
+
export interface LoitheInput {
|
|
886
|
+
/** Clé étrangère vers loi (dossier législatif) */
|
|
887
|
+
loicod: string;
|
|
888
|
+
/** Clé étrangère vers the (thème) */
|
|
889
|
+
thecle: number;
|
|
890
|
+
}
|
|
891
|
+
/** Natures des dossiers législatifs */
|
|
784
892
|
export interface Natloi {
|
|
785
|
-
/**
|
|
786
|
-
* Clé de la table
|
|
787
|
-
*/
|
|
893
|
+
/** Clé de la table */
|
|
788
894
|
groupe: string;
|
|
789
|
-
/**
|
|
790
|
-
|
|
791
|
-
|
|
895
|
+
/** Libellé */
|
|
896
|
+
natloilib: string;
|
|
897
|
+
}
|
|
898
|
+
/** Natures des dossiers législatifs */
|
|
899
|
+
export interface NatloiInput {
|
|
900
|
+
/** Clé de la table */
|
|
901
|
+
groupe: string;
|
|
902
|
+
/** Libellé */
|
|
792
903
|
natloilib: string;
|
|
793
904
|
}
|
|
905
|
+
/** Organismes */
|
|
794
906
|
export interface Org {
|
|
795
|
-
/**
|
|
796
|
-
* Clé étrangère vers ass (assemblée parlementaire)
|
|
797
|
-
*/
|
|
798
|
-
codass: string | null;
|
|
799
|
-
/**
|
|
800
|
-
* Code couleur pour les travaux de contrôle de l'organisme
|
|
801
|
-
*/
|
|
802
|
-
html_color: string | null;
|
|
803
|
-
/**
|
|
804
|
-
* Intitulé associé des travaux de l'organisme
|
|
805
|
-
*/
|
|
806
|
-
inttra: string | null;
|
|
807
|
-
/**
|
|
808
|
-
* du, de la
|
|
809
|
-
*/
|
|
810
|
-
org_de: string | null;
|
|
811
|
-
/**
|
|
812
|
-
* Clé de la table
|
|
813
|
-
*/
|
|
907
|
+
/** Clé de la table */
|
|
814
908
|
orgcod: string;
|
|
815
|
-
/**
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
orgdatdeb: Timestamp | null;
|
|
819
|
-
/**
|
|
820
|
-
* Début de validité pour les communiqués de presse
|
|
821
|
-
*/
|
|
822
|
-
orgdatdebcop: Timestamp | null;
|
|
823
|
-
/**
|
|
824
|
-
* Date de clôture (dernier jour d'activité)
|
|
825
|
-
*/
|
|
826
|
-
orgdatfin: Timestamp | null;
|
|
827
|
-
/**
|
|
828
|
-
* Fin de validité pour les communiqués de presse
|
|
829
|
-
*/
|
|
830
|
-
orgdatfincop: Timestamp | null;
|
|
831
|
-
orggen: string | null;
|
|
832
|
-
/**
|
|
833
|
-
* Identification de l'organisme pour les applications
|
|
834
|
-
*/
|
|
835
|
-
orglibaff: string | null;
|
|
836
|
-
/**
|
|
837
|
-
* Nom court de l'organisme (pour les listes)
|
|
838
|
-
*/
|
|
839
|
-
orglibcou: string | null;
|
|
840
|
-
/**
|
|
841
|
-
* Nom officiel de l'oganisme
|
|
842
|
-
*/
|
|
843
|
-
orgliblon: string | null;
|
|
844
|
-
/**
|
|
845
|
-
* Nom usuel de l'organisme
|
|
846
|
-
*/
|
|
909
|
+
/** Clé étrangère vers typorg (type de l'organisme) */
|
|
910
|
+
typorgcod: string;
|
|
911
|
+
/** Nom usuel de l'organisme */
|
|
847
912
|
orgnom: string;
|
|
848
|
-
/**
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
/**
|
|
853
|
-
|
|
854
|
-
|
|
913
|
+
/** Nom officiel de l'oganisme */
|
|
914
|
+
orgliblon: string | null;
|
|
915
|
+
/** Clé étrangère vers ass (assemblée parlementaire) */
|
|
916
|
+
codass: string | null;
|
|
917
|
+
/** Identification de l'organisme pour les applications */
|
|
918
|
+
orglibaff: string | null;
|
|
919
|
+
/** Ordre protocolaire de l'organisme */
|
|
855
920
|
orgord: number | null;
|
|
856
|
-
/**
|
|
857
|
-
* URL de la page de présentation de l'organisme
|
|
858
|
-
*/
|
|
921
|
+
/** URL de la page de présentation de l'organisme */
|
|
859
922
|
orgurl: string | null;
|
|
860
|
-
/**
|
|
861
|
-
|
|
862
|
-
|
|
923
|
+
/** Nom court de l'organisme (pour les listes) */
|
|
924
|
+
orglibcou: string | null;
|
|
925
|
+
/** du, de la */
|
|
926
|
+
org_de: string | null;
|
|
927
|
+
/** URL des travaux de l'organisme */
|
|
928
|
+
urltra: string | null;
|
|
929
|
+
/** Intitulé associé des travaux de l'organisme */
|
|
930
|
+
inttra: string | null;
|
|
931
|
+
/** Début de validité pour les communiqués de presse */
|
|
932
|
+
orgdatdebcop: Date | null;
|
|
933
|
+
/** Fin de validité pour les communiqués de presse */
|
|
934
|
+
orgdatfincop: Date | null;
|
|
935
|
+
/** Nom apparaîssant sur les couvertures des documents de l'organisme */
|
|
936
|
+
orgnomcouv: string | null;
|
|
937
|
+
/** Clé de l'organisme correspondant dans la base Sénateurs */
|
|
863
938
|
senorgcod: string | null;
|
|
864
|
-
/**
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
939
|
+
/** Code couleur pour les travaux de contrôle de l'organisme */
|
|
940
|
+
html_color: string | null;
|
|
941
|
+
/** Date de création (premier jour d'activité) */
|
|
942
|
+
orgdatdeb: Date | null;
|
|
943
|
+
/** Date de clôture (dernier jour d'activité) */
|
|
944
|
+
orgdatfin: Date | null;
|
|
945
|
+
orggen: string | null;
|
|
868
946
|
url_podcast: string | null;
|
|
869
|
-
/**
|
|
870
|
-
* URL des travaux de l'organisme
|
|
871
|
-
*/
|
|
872
|
-
urltra: string | null;
|
|
873
947
|
}
|
|
948
|
+
/** Organismes */
|
|
949
|
+
export interface OrgInput {
|
|
950
|
+
/** Clé de la table */
|
|
951
|
+
orgcod: string;
|
|
952
|
+
/** Clé étrangère vers typorg (type de l'organisme) */
|
|
953
|
+
typorgcod: string;
|
|
954
|
+
/** Nom usuel de l'organisme */
|
|
955
|
+
orgnom: string;
|
|
956
|
+
/** Nom officiel de l'oganisme */
|
|
957
|
+
orgliblon?: string | null;
|
|
958
|
+
/** Clé étrangère vers ass (assemblée parlementaire) */
|
|
959
|
+
codass?: string | null;
|
|
960
|
+
/** Identification de l'organisme pour les applications */
|
|
961
|
+
orglibaff?: string | null;
|
|
962
|
+
/** Ordre protocolaire de l'organisme */
|
|
963
|
+
orgord?: number | null;
|
|
964
|
+
/** URL de la page de présentation de l'organisme */
|
|
965
|
+
orgurl?: string | null;
|
|
966
|
+
/** Nom court de l'organisme (pour les listes) */
|
|
967
|
+
orglibcou?: string | null;
|
|
968
|
+
/** du, de la */
|
|
969
|
+
org_de?: string | null;
|
|
970
|
+
/** URL des travaux de l'organisme */
|
|
971
|
+
urltra?: string | null;
|
|
972
|
+
/** Intitulé associé des travaux de l'organisme */
|
|
973
|
+
inttra?: string | null;
|
|
974
|
+
/** Début de validité pour les communiqués de presse */
|
|
975
|
+
orgdatdebcop?: Date | null;
|
|
976
|
+
/** Fin de validité pour les communiqués de presse */
|
|
977
|
+
orgdatfincop?: Date | null;
|
|
978
|
+
/** Nom apparaîssant sur les couvertures des documents de l'organisme */
|
|
979
|
+
orgnomcouv?: string | null;
|
|
980
|
+
/** Clé de l'organisme correspondant dans la base Sénateurs */
|
|
981
|
+
senorgcod?: string | null;
|
|
982
|
+
/** Code couleur pour les travaux de contrôle de l'organisme */
|
|
983
|
+
html_color?: string | null;
|
|
984
|
+
/** Date de création (premier jour d'activité) */
|
|
985
|
+
orgdatdeb?: Date | null;
|
|
986
|
+
/** Date de clôture (dernier jour d'activité) */
|
|
987
|
+
orgdatfin?: Date | null;
|
|
988
|
+
orggen?: string | null;
|
|
989
|
+
url_podcast?: string | null;
|
|
990
|
+
}
|
|
991
|
+
/** Historisation du nom des organismes */
|
|
874
992
|
export interface Orgnomhis {
|
|
875
|
-
/**
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
intra: string | null;
|
|
879
|
-
/**
|
|
880
|
-
* Date de fin de validité de cete enregistrement
|
|
881
|
-
*/
|
|
882
|
-
onhfin: Timestamp;
|
|
883
|
-
/**
|
|
884
|
-
* Clé de la table
|
|
885
|
-
*/
|
|
886
|
-
onhnum: Int8;
|
|
887
|
-
/**
|
|
888
|
-
* du, de la
|
|
889
|
-
*/
|
|
890
|
-
org_de: string;
|
|
891
|
-
/**
|
|
892
|
-
* Clé étrangère vers org
|
|
893
|
-
*/
|
|
993
|
+
/** Clé de la table */
|
|
994
|
+
onhnum: number;
|
|
995
|
+
/** Clé étrangère vers org */
|
|
894
996
|
orgcod: string;
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
*/
|
|
997
|
+
/** Nom usuel de l'organisme */
|
|
998
|
+
orgnom: string;
|
|
999
|
+
/** Nom court de l'organisme (pour les listes) */
|
|
899
1000
|
orglibcou: string;
|
|
900
|
-
/**
|
|
901
|
-
* Nom officiel de l'oganisme
|
|
902
|
-
*/
|
|
1001
|
+
/** Nom officiel de l'oganisme */
|
|
903
1002
|
orgliblon: string;
|
|
904
|
-
/**
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
/**
|
|
909
|
-
* Nom apparaîssant sur les couvertures des documents de l'organisme
|
|
910
|
-
*/
|
|
1003
|
+
/** du, de la */
|
|
1004
|
+
org_de: string;
|
|
1005
|
+
/** Intitulé associé des travaux de l'organisme */
|
|
1006
|
+
intra: string | null;
|
|
1007
|
+
/** Nom apparaîssant sur les couvertures des documents de l'organisme */
|
|
911
1008
|
orgnomcouv: string | null;
|
|
1009
|
+
/** Date de fin de validité de cete enregistrement */
|
|
1010
|
+
onhfin: Date;
|
|
1011
|
+
orglibaff: string | null;
|
|
1012
|
+
}
|
|
1013
|
+
/** Historisation du nom des organismes */
|
|
1014
|
+
export interface OrgnomhisInput {
|
|
1015
|
+
/** Clé de la table */
|
|
1016
|
+
onhnum: number;
|
|
1017
|
+
/** Clé étrangère vers org */
|
|
1018
|
+
orgcod: string;
|
|
1019
|
+
/** Nom usuel de l'organisme */
|
|
1020
|
+
orgnom: string;
|
|
1021
|
+
/** Nom court de l'organisme (pour les listes) */
|
|
1022
|
+
orglibcou: string;
|
|
1023
|
+
/** Nom officiel de l'oganisme */
|
|
1024
|
+
orgliblon: string;
|
|
1025
|
+
/** du, de la */
|
|
1026
|
+
org_de: string;
|
|
1027
|
+
/** Intitulé associé des travaux de l'organisme */
|
|
1028
|
+
intra?: string | null;
|
|
1029
|
+
/** Nom apparaîssant sur les couvertures des documents de l'organisme */
|
|
1030
|
+
orgnomcouv?: string | null;
|
|
1031
|
+
/** Date de fin de validité de cete enregistrement */
|
|
1032
|
+
onhfin: Date;
|
|
1033
|
+
orglibaff?: string | null;
|
|
912
1034
|
}
|
|
1035
|
+
/** Origines des PPRE */
|
|
913
1036
|
export interface Orippr {
|
|
914
|
-
/**
|
|
915
|
-
* Clé de la table
|
|
916
|
-
*/
|
|
1037
|
+
/** Clé de la table */
|
|
917
1038
|
oripprcod: string;
|
|
918
|
-
/**
|
|
919
|
-
|
|
920
|
-
|
|
1039
|
+
/** Libellé */
|
|
1040
|
+
oripprlib: string;
|
|
1041
|
+
}
|
|
1042
|
+
/** Origines des PPRE */
|
|
1043
|
+
export interface OripprInput {
|
|
1044
|
+
/** Clé de la table */
|
|
1045
|
+
oripprcod: string;
|
|
1046
|
+
/** Libellé */
|
|
921
1047
|
oripprlib: string;
|
|
922
1048
|
}
|
|
1049
|
+
/** Origines de textes (positions dans le workflow) */
|
|
923
1050
|
export interface Oritxt {
|
|
924
|
-
/**
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
/**
|
|
929
|
-
* 0=initial (déposé), 1=final, 2=intermédiaire (commission)
|
|
930
|
-
*/
|
|
1051
|
+
/** Clé de la table */
|
|
1052
|
+
oritxtcod: string;
|
|
1053
|
+
/** Libellé */
|
|
1054
|
+
oritxtlib: string;
|
|
1055
|
+
/** 0=initial (déposé), 1=final, 2=intermédiaire (commission) */
|
|
931
1056
|
oriordre: string | null;
|
|
932
|
-
/**
|
|
933
|
-
|
|
934
|
-
|
|
1057
|
+
/** Clé étrangère vers ass (assemblée parlementaire) */
|
|
1058
|
+
codass: string | null;
|
|
1059
|
+
/** Libellé féminisé */
|
|
1060
|
+
oritxtlibfem: string;
|
|
1061
|
+
/** Adoption : O=adopté, N=rejeté, I=indéterminé */
|
|
935
1062
|
oritxtado: string | null;
|
|
936
|
-
/**
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
1063
|
+
/** Nécessite un organisme : O=oui, N=no */
|
|
1064
|
+
oritxtorg: string | null;
|
|
1065
|
+
/** Texte modifié : O=oui, N=no */
|
|
1066
|
+
oritxtmod: string | null;
|
|
940
1067
|
oritxtign: string | null;
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
1068
|
+
}
|
|
1069
|
+
/** Origines de textes (positions dans le workflow) */
|
|
1070
|
+
export interface OritxtInput {
|
|
1071
|
+
/** Clé de la table */
|
|
1072
|
+
oritxtcod: string;
|
|
1073
|
+
/** Libellé */
|
|
944
1074
|
oritxtlib: string;
|
|
945
|
-
/**
|
|
946
|
-
|
|
947
|
-
|
|
1075
|
+
/** 0=initial (déposé), 1=final, 2=intermédiaire (commission) */
|
|
1076
|
+
oriordre?: string | null;
|
|
1077
|
+
/** Clé étrangère vers ass (assemblée parlementaire) */
|
|
1078
|
+
codass?: string | null;
|
|
1079
|
+
/** Libellé féminisé */
|
|
948
1080
|
oritxtlibfem: string;
|
|
949
|
-
/**
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
/**
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
oritxtorg: string | null;
|
|
1081
|
+
/** Adoption : O=adopté, N=rejeté, I=indéterminé */
|
|
1082
|
+
oritxtado?: string | null;
|
|
1083
|
+
/** Nécessite un organisme : O=oui, N=no */
|
|
1084
|
+
oritxtorg?: string | null;
|
|
1085
|
+
/** Texte modifié : O=oui, N=no */
|
|
1086
|
+
oritxtmod?: string | null;
|
|
1087
|
+
oritxtign?: string | null;
|
|
957
1088
|
}
|
|
1089
|
+
/** Positions de vote */
|
|
958
1090
|
export interface Posvot {
|
|
959
|
-
/**
|
|
960
|
-
* Clé de la table
|
|
961
|
-
*/
|
|
1091
|
+
/** Clé de la table */
|
|
962
1092
|
posvotcod: string;
|
|
963
|
-
/**
|
|
964
|
-
|
|
965
|
-
|
|
1093
|
+
/** Libellé */
|
|
1094
|
+
posvotlib: string;
|
|
1095
|
+
}
|
|
1096
|
+
/** Positions de vote */
|
|
1097
|
+
export interface PosvotInput {
|
|
1098
|
+
/** Clé de la table */
|
|
1099
|
+
posvotcod: string;
|
|
1100
|
+
/** Libellé */
|
|
966
1101
|
posvotlib: string;
|
|
967
1102
|
}
|
|
1103
|
+
/** Civilités */
|
|
968
1104
|
export interface Qua {
|
|
969
|
-
/**
|
|
970
|
-
|
|
971
|
-
|
|
1105
|
+
/** Clé de la table */
|
|
1106
|
+
quacod: string;
|
|
1107
|
+
/** Libellé */
|
|
1108
|
+
qualic: string;
|
|
1109
|
+
/** Abrévation */
|
|
972
1110
|
quaabr: string;
|
|
973
|
-
/**
|
|
974
|
-
* Abrévation au pluriel
|
|
975
|
-
*/
|
|
1111
|
+
/** Abrévation au pluriel */
|
|
976
1112
|
quaabrplu: string;
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
1113
|
+
}
|
|
1114
|
+
/** Civilités */
|
|
1115
|
+
export interface QuaInput {
|
|
1116
|
+
/** Clé de la table */
|
|
980
1117
|
quacod: string;
|
|
981
|
-
/**
|
|
982
|
-
* Libellé
|
|
983
|
-
*/
|
|
1118
|
+
/** Libellé */
|
|
984
1119
|
qualic: string;
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
/**
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
*/
|
|
1006
|
-
forpubcod: string | null;
|
|
1007
|
-
/**
|
|
1008
|
-
* numéro complémentaire (rectifié bis...)
|
|
1009
|
-
*/
|
|
1010
|
-
numerobis: string | null;
|
|
1011
|
-
/**
|
|
1012
|
-
* Prix de vente
|
|
1013
|
-
*/
|
|
1014
|
-
prix: string | null;
|
|
1015
|
-
/**
|
|
1016
|
-
* Annexe
|
|
1017
|
-
*/
|
|
1018
|
-
rapann: number | null;
|
|
1019
|
-
/**
|
|
1020
|
-
* Code du rapport - clé interne
|
|
1021
|
-
*/
|
|
1022
|
-
rapcod: Int8;
|
|
1023
|
-
/**
|
|
1024
|
-
* Date de s¿ance ¿ laquelle le rapport est attach¿
|
|
1025
|
-
*/
|
|
1026
|
-
rapdatsea: Timestamp | null;
|
|
1027
|
-
/**
|
|
1028
|
-
* Fascicule
|
|
1029
|
-
*/
|
|
1030
|
-
rapfac: number | null;
|
|
1031
|
-
/**
|
|
1032
|
-
* Numéro
|
|
1033
|
-
*/
|
|
1034
|
-
rapnum: Int8 | null;
|
|
1035
|
-
/**
|
|
1036
|
-
* Numéro à l'Assemblée Nationale
|
|
1037
|
-
*/
|
|
1038
|
-
rapnuman: Int8 | null;
|
|
1039
|
-
/**
|
|
1040
|
-
* Résumé
|
|
1041
|
-
*/
|
|
1042
|
-
rapres: string | null;
|
|
1043
|
-
/**
|
|
1044
|
-
* Sous-titre ¿ventuel
|
|
1045
|
-
*/
|
|
1046
|
-
rapsoustit: string | null;
|
|
1047
|
-
/**
|
|
1048
|
-
* Titre court = titre complet du rapport
|
|
1049
|
-
*/
|
|
1050
|
-
raptil: string | null;
|
|
1051
|
-
/**
|
|
1052
|
-
* Titre court tel qu'il appara¿t dans des listes
|
|
1053
|
-
*/
|
|
1054
|
-
raptitcou: string | null;
|
|
1055
|
-
/**
|
|
1056
|
-
* Tome
|
|
1057
|
-
*/
|
|
1120
|
+
/** Abrévation */
|
|
1121
|
+
quaabr: string;
|
|
1122
|
+
/** Abrévation au pluriel */
|
|
1123
|
+
quaabrplu: string;
|
|
1124
|
+
}
|
|
1125
|
+
/** Rapports */
|
|
1126
|
+
export interface Rap {
|
|
1127
|
+
/** Code du rapport - clé interne */
|
|
1128
|
+
rapcod: number;
|
|
1129
|
+
/** Clé étrangère vers ses (session parlementaire) */
|
|
1130
|
+
sesann: number;
|
|
1131
|
+
/** Clé étrangère vers denrap (dénomination du rapport) */
|
|
1132
|
+
coddenrap: string;
|
|
1133
|
+
/** Clé étrangère vers typurl (type de l'URL) */
|
|
1134
|
+
typurl: string;
|
|
1135
|
+
/** Clé étrangère vers ble (Bleu budgétaire) */
|
|
1136
|
+
blecod: string | null;
|
|
1137
|
+
/** Numéro */
|
|
1138
|
+
rapnum: number | null;
|
|
1139
|
+
/** Tome */
|
|
1058
1140
|
raptom: number | null;
|
|
1059
|
-
/**
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
/**
|
|
1064
|
-
* Volume
|
|
1065
|
-
*/
|
|
1141
|
+
/** Fascicule */
|
|
1142
|
+
rapfac: number | null;
|
|
1143
|
+
/** Annexe */
|
|
1144
|
+
rapann: number | null;
|
|
1145
|
+
/** Volume */
|
|
1066
1146
|
rapvol: number | null;
|
|
1067
|
-
/**
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
/**
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
typurl: string;
|
|
1075
|
-
/**
|
|
1076
|
-
* URL de la deuxième partie
|
|
1077
|
-
*/
|
|
1147
|
+
/** Titre court tel qu'il appara¿t dans des listes */
|
|
1148
|
+
raptitcou: string | null;
|
|
1149
|
+
/** Titre court = titre complet du rapport */
|
|
1150
|
+
raptil: string | null;
|
|
1151
|
+
/** URL du rapport - pour les doc interne URL partiel */
|
|
1152
|
+
rapurl: string | null;
|
|
1153
|
+
/** URL de la deuxième partie */
|
|
1078
1154
|
url2: string | null;
|
|
1079
|
-
/**
|
|
1080
|
-
* Libellé associé à URL2
|
|
1081
|
-
*/
|
|
1082
|
-
url2txt: string | null;
|
|
1083
|
-
/**
|
|
1084
|
-
* URL de la troisième partie
|
|
1085
|
-
*/
|
|
1155
|
+
/** URL de la troisième partie */
|
|
1086
1156
|
url3: string | null;
|
|
1087
|
-
/**
|
|
1088
|
-
* Libellé associé à URL3
|
|
1089
|
-
*/
|
|
1090
|
-
url3txt: string | null;
|
|
1091
|
-
/**
|
|
1092
|
-
* URL de la quatrième partie
|
|
1093
|
-
*/
|
|
1157
|
+
/** URL de la quatrième partie */
|
|
1094
1158
|
url4: string | null;
|
|
1095
|
-
/**
|
|
1096
|
-
|
|
1097
|
-
|
|
1159
|
+
/** Libellé associé à URL2 */
|
|
1160
|
+
url2txt: string | null;
|
|
1161
|
+
/** Libellé associé à URL3 */
|
|
1162
|
+
url3txt: string | null;
|
|
1163
|
+
/** Libellé associé à URL4 */
|
|
1098
1164
|
url4txt: string | null;
|
|
1165
|
+
/** Date de dépôt */
|
|
1166
|
+
date_depot: Date;
|
|
1167
|
+
/** Prix de vente */
|
|
1168
|
+
prix: string | null;
|
|
1169
|
+
/** Numéro à l'Assemblée Nationale */
|
|
1170
|
+
rapnuman: number | null;
|
|
1171
|
+
/** numéro complémentaire (rectifié bis...) */
|
|
1172
|
+
numerobis: string | null;
|
|
1173
|
+
/** Sous-titre ¿ventuel */
|
|
1174
|
+
rapsoustit: string | null;
|
|
1175
|
+
/** Date de s¿ance ¿ laquelle le rapport est attach¿ */
|
|
1176
|
+
rapdatsea: Date | null;
|
|
1177
|
+
/** Si oui, le document n'est pas disponible et n'est mentionné que dans la feuille de dépôt */
|
|
1178
|
+
depot_only: string | null;
|
|
1179
|
+
/** Résumé */
|
|
1180
|
+
rapres: string | null;
|
|
1181
|
+
/** Clé étrangère vers forpub (format de publication) */
|
|
1182
|
+
forpubcod: string | null;
|
|
1183
|
+
}
|
|
1184
|
+
/** Rapports */
|
|
1185
|
+
export interface RapInput {
|
|
1186
|
+
/** Code du rapport - clé interne */
|
|
1187
|
+
rapcod: number;
|
|
1188
|
+
/** Clé étrangère vers ses (session parlementaire) */
|
|
1189
|
+
sesann: number;
|
|
1190
|
+
/** Clé étrangère vers denrap (dénomination du rapport) */
|
|
1191
|
+
coddenrap: string;
|
|
1192
|
+
/** Clé étrangère vers typurl (type de l'URL) */
|
|
1193
|
+
typurl: string;
|
|
1194
|
+
/** Clé étrangère vers ble (Bleu budgétaire) */
|
|
1195
|
+
blecod?: string | null;
|
|
1196
|
+
/** Numéro */
|
|
1197
|
+
rapnum?: number | null;
|
|
1198
|
+
/** Tome */
|
|
1199
|
+
raptom?: number | null;
|
|
1200
|
+
/** Fascicule */
|
|
1201
|
+
rapfac?: number | null;
|
|
1202
|
+
/** Annexe */
|
|
1203
|
+
rapann?: number | null;
|
|
1204
|
+
/** Volume */
|
|
1205
|
+
rapvol?: number | null;
|
|
1206
|
+
/** Titre court tel qu'il appara¿t dans des listes */
|
|
1207
|
+
raptitcou?: string | null;
|
|
1208
|
+
/** Titre court = titre complet du rapport */
|
|
1209
|
+
raptil?: string | null;
|
|
1210
|
+
/** URL du rapport - pour les doc interne URL partiel */
|
|
1211
|
+
rapurl?: string | null;
|
|
1212
|
+
/** URL de la deuxième partie */
|
|
1213
|
+
url2?: string | null;
|
|
1214
|
+
/** URL de la troisième partie */
|
|
1215
|
+
url3?: string | null;
|
|
1216
|
+
/** URL de la quatrième partie */
|
|
1217
|
+
url4?: string | null;
|
|
1218
|
+
/** Libellé associé à URL2 */
|
|
1219
|
+
url2txt?: string | null;
|
|
1220
|
+
/** Libellé associé à URL3 */
|
|
1221
|
+
url3txt?: string | null;
|
|
1222
|
+
/** Libellé associé à URL4 */
|
|
1223
|
+
url4txt?: string | null;
|
|
1224
|
+
/** Date de dépôt */
|
|
1225
|
+
date_depot: Date;
|
|
1226
|
+
/** Prix de vente */
|
|
1227
|
+
prix?: string | null;
|
|
1228
|
+
/** Numéro à l'Assemblée Nationale */
|
|
1229
|
+
rapnuman?: number | null;
|
|
1230
|
+
/** numéro complémentaire (rectifié bis...) */
|
|
1231
|
+
numerobis?: string | null;
|
|
1232
|
+
/** Sous-titre ¿ventuel */
|
|
1233
|
+
rapsoustit?: string | null;
|
|
1234
|
+
/** Date de s¿ance ¿ laquelle le rapport est attach¿ */
|
|
1235
|
+
rapdatsea?: Date | null;
|
|
1236
|
+
/** Si oui, le document n'est pas disponible et n'est mentionné que dans la feuille de dépôt */
|
|
1237
|
+
depot_only?: string | null;
|
|
1238
|
+
/** Résumé */
|
|
1239
|
+
rapres?: string | null;
|
|
1240
|
+
/** Clé étrangère vers forpub (format de publication) */
|
|
1241
|
+
forpubcod?: string | null;
|
|
1099
1242
|
}
|
|
1243
|
+
/** Associations rapports-organisme producteur */
|
|
1100
1244
|
export interface Raporg {
|
|
1101
|
-
/**
|
|
1102
|
-
|
|
1103
|
-
|
|
1245
|
+
/** Clé étrangère vers rap (rapport) */
|
|
1246
|
+
rapcod: number;
|
|
1247
|
+
/** Clé étrangère vers org (organisme) */
|
|
1248
|
+
orgcod: string;
|
|
1249
|
+
}
|
|
1250
|
+
/** Associations rapports-organisme producteur */
|
|
1251
|
+
export interface RaporgInput {
|
|
1252
|
+
/** Clé étrangère vers rap (rapport) */
|
|
1253
|
+
rapcod: number;
|
|
1254
|
+
/** Clé étrangère vers org (organisme) */
|
|
1104
1255
|
orgcod: string;
|
|
1105
|
-
/**
|
|
1106
|
-
* Clé étrangère vers rap (rapport)
|
|
1107
|
-
*/
|
|
1108
|
-
rapcod: Int8;
|
|
1109
1256
|
}
|
|
1257
|
+
/** Thèmatisation des rapports */
|
|
1110
1258
|
export interface Rapthe {
|
|
1111
|
-
/**
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1259
|
+
/** Clé étrangère vers rap (rapport) */
|
|
1260
|
+
rapcod: number;
|
|
1261
|
+
/** Clé étrangère vers the (thème) */
|
|
1262
|
+
thecle: number;
|
|
1263
|
+
}
|
|
1264
|
+
/** Thèmatisation des rapports */
|
|
1265
|
+
export interface RaptheInput {
|
|
1266
|
+
/** Clé étrangère vers rap (rapport) */
|
|
1267
|
+
rapcod: number;
|
|
1268
|
+
/** Clé étrangère vers the (thème) */
|
|
1118
1269
|
thecle: number;
|
|
1119
1270
|
}
|
|
1271
|
+
/** Rôles des signataires */
|
|
1120
1272
|
export interface Rolsig {
|
|
1121
|
-
/**
|
|
1122
|
-
|
|
1123
|
-
|
|
1273
|
+
/** Clé de la table */
|
|
1274
|
+
signataire: string;
|
|
1275
|
+
/** Libellé */
|
|
1124
1276
|
rolsiglib: string;
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1277
|
+
}
|
|
1278
|
+
/** Rôles des signataires */
|
|
1279
|
+
export interface RolsigInput {
|
|
1280
|
+
/** Clé de la table */
|
|
1128
1281
|
signataire: string;
|
|
1282
|
+
/** Libellé */
|
|
1283
|
+
rolsiglib: string;
|
|
1129
1284
|
}
|
|
1285
|
+
/** Scrutins publics */
|
|
1130
1286
|
export interface Scr {
|
|
1131
|
-
/**
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
/**
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
scrbaspag: string | null;
|
|
1139
|
-
/**
|
|
1140
|
-
* Nombre de contre
|
|
1141
|
-
*/
|
|
1142
|
-
scrcon: Int8 | null;
|
|
1143
|
-
/**
|
|
1144
|
-
* Nombre de contre annoncé en séance
|
|
1145
|
-
*/
|
|
1146
|
-
scrconsea: Int8 | null;
|
|
1147
|
-
/**
|
|
1148
|
-
* date du scrutin
|
|
1149
|
-
*/
|
|
1150
|
-
scrdat: Timestamp | null;
|
|
1151
|
-
/**
|
|
1152
|
-
* Date effective du scrutin
|
|
1153
|
-
*/
|
|
1154
|
-
scrdateff: Timestamp | null;
|
|
1155
|
-
/**
|
|
1156
|
-
* Intitulé du scrutin
|
|
1157
|
-
*/
|
|
1287
|
+
/** Clé étrangère vers la table sesann (session) - élément de la clé de la table */
|
|
1288
|
+
sesann: number;
|
|
1289
|
+
/** Numéro de scrutin - élément de la clé de la table */
|
|
1290
|
+
scrnum: number;
|
|
1291
|
+
/** Clé étrangère vers date_seance (séance du scrutin) */
|
|
1292
|
+
code: number | null;
|
|
1293
|
+
/** Intitulé du scrutin */
|
|
1158
1294
|
scrint: string | null;
|
|
1159
|
-
/**
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
/**
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
/**
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
/**
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
/**
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
/**
|
|
1180
|
-
|
|
1181
|
-
*/
|
|
1182
|
-
scrpousea: Int8 | null;
|
|
1183
|
-
/**
|
|
1184
|
-
* Nombre de suffrages exprimés
|
|
1185
|
-
*/
|
|
1186
|
-
scrsuf: Int8 | null;
|
|
1187
|
-
/**
|
|
1188
|
-
* Nombre de suffrages exprimés annoncé en séance
|
|
1189
|
-
*/
|
|
1190
|
-
scrsufsea: Int8 | null;
|
|
1191
|
-
/**
|
|
1192
|
-
* Nombre de votants
|
|
1193
|
-
*/
|
|
1194
|
-
scrvot: Int8 | null;
|
|
1195
|
-
/**
|
|
1196
|
-
* Nombre de votants annoncé en séance
|
|
1197
|
-
*/
|
|
1198
|
-
scrvotsea: Int8 | null;
|
|
1199
|
-
/**
|
|
1200
|
-
* Clé étrangère vers la table sesann (session) - élément de la clé de la table
|
|
1201
|
-
*/
|
|
1202
|
-
sesann: Int8;
|
|
1295
|
+
/** date du scrutin */
|
|
1296
|
+
scrdat: Date | null;
|
|
1297
|
+
/** Nombre de pour */
|
|
1298
|
+
scrpou: number | null;
|
|
1299
|
+
/** Nombre de contre */
|
|
1300
|
+
scrcon: number | null;
|
|
1301
|
+
/** Nombre de votants */
|
|
1302
|
+
scrvot: number | null;
|
|
1303
|
+
/** Nombre de suffrages exprimés */
|
|
1304
|
+
scrsuf: number | null;
|
|
1305
|
+
/** Nombre de votants annoncé en séance */
|
|
1306
|
+
scrvotsea: number | null;
|
|
1307
|
+
/** Nombre de suffrages exprimés annoncé en séance */
|
|
1308
|
+
scrsufsea: number | null;
|
|
1309
|
+
/** Nombre de pour annoncé en séance */
|
|
1310
|
+
scrpousea: number | null;
|
|
1311
|
+
/** Nombre de contre annoncé en séance */
|
|
1312
|
+
scrconsea: number | null;
|
|
1313
|
+
/** majorité des suffrages exprimés */
|
|
1314
|
+
scrmaj: number | null;
|
|
1315
|
+
/** majorité des suffrages exprimés annoncée en séance */
|
|
1316
|
+
scrmajsea: number | null;
|
|
1203
1317
|
soslib: string | null;
|
|
1318
|
+
/** Note en bas de page */
|
|
1319
|
+
scrbaspag: string | null;
|
|
1320
|
+
/** Date effective du scrutin */
|
|
1321
|
+
scrdateff: Date | null;
|
|
1322
|
+
/** Créer le json (O ou N) */
|
|
1323
|
+
scrjso: string | null;
|
|
1324
|
+
}
|
|
1325
|
+
/** Scrutins publics */
|
|
1326
|
+
export interface ScrInput {
|
|
1327
|
+
/** Clé étrangère vers la table sesann (session) - élément de la clé de la table */
|
|
1328
|
+
sesann: number;
|
|
1329
|
+
/** Numéro de scrutin - élément de la clé de la table */
|
|
1330
|
+
scrnum: number;
|
|
1331
|
+
/** Clé étrangère vers date_seance (séance du scrutin) */
|
|
1332
|
+
code?: number | null;
|
|
1333
|
+
/** Intitulé du scrutin */
|
|
1334
|
+
scrint?: string | null;
|
|
1335
|
+
/** date du scrutin */
|
|
1336
|
+
scrdat?: Date | null;
|
|
1337
|
+
/** Nombre de pour */
|
|
1338
|
+
scrpou?: number | null;
|
|
1339
|
+
/** Nombre de contre */
|
|
1340
|
+
scrcon?: number | null;
|
|
1341
|
+
/** Nombre de votants */
|
|
1342
|
+
scrvot?: number | null;
|
|
1343
|
+
/** Nombre de suffrages exprimés */
|
|
1344
|
+
scrsuf?: number | null;
|
|
1345
|
+
/** Nombre de votants annoncé en séance */
|
|
1346
|
+
scrvotsea?: number | null;
|
|
1347
|
+
/** Nombre de suffrages exprimés annoncé en séance */
|
|
1348
|
+
scrsufsea?: number | null;
|
|
1349
|
+
/** Nombre de pour annoncé en séance */
|
|
1350
|
+
scrpousea?: number | null;
|
|
1351
|
+
/** Nombre de contre annoncé en séance */
|
|
1352
|
+
scrconsea?: number | null;
|
|
1353
|
+
/** majorité des suffrages exprimés */
|
|
1354
|
+
scrmaj?: number | null;
|
|
1355
|
+
/** majorité des suffrages exprimés annoncée en séance */
|
|
1356
|
+
scrmajsea?: number | null;
|
|
1357
|
+
soslib?: string | null;
|
|
1358
|
+
/** Note en bas de page */
|
|
1359
|
+
scrbaspag?: string | null;
|
|
1360
|
+
/** Date effective du scrutin */
|
|
1361
|
+
scrdateff?: Date | null;
|
|
1362
|
+
/** Créer le json (O ou N) */
|
|
1363
|
+
scrjso?: string | null;
|
|
1204
1364
|
}
|
|
1365
|
+
/** Sessions parlementaires */
|
|
1205
1366
|
export interface Ses {
|
|
1206
|
-
/**
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1367
|
+
/** Clé de la table (année de l'ouverture de la session) */
|
|
1368
|
+
sesann: number;
|
|
1369
|
+
/** Libellé */
|
|
1370
|
+
seslib: string;
|
|
1371
|
+
}
|
|
1372
|
+
/** Sessions parlementaires */
|
|
1373
|
+
export interface SesInput {
|
|
1374
|
+
/** Clé de la table (année de l'ouverture de la session) */
|
|
1375
|
+
sesann: number;
|
|
1376
|
+
/** Libellé */
|
|
1213
1377
|
seslib: string;
|
|
1214
1378
|
}
|
|
1379
|
+
/** Statuts particuliers des votants */
|
|
1215
1380
|
export interface Stavot {
|
|
1216
|
-
/**
|
|
1217
|
-
* Clé de la table
|
|
1218
|
-
*/
|
|
1381
|
+
/** Clé de la table */
|
|
1219
1382
|
stavotidt: string;
|
|
1220
|
-
/**
|
|
1221
|
-
|
|
1222
|
-
|
|
1383
|
+
/** Libellé */
|
|
1384
|
+
stavotlib: string;
|
|
1385
|
+
}
|
|
1386
|
+
/** Statuts particuliers des votants */
|
|
1387
|
+
export interface StavotInput {
|
|
1388
|
+
/** Clé de la table */
|
|
1389
|
+
stavotidt: string;
|
|
1390
|
+
/** Libellé */
|
|
1223
1391
|
stavotlib: string;
|
|
1224
1392
|
}
|
|
1393
|
+
/** Textes */
|
|
1225
1394
|
export interface Texte {
|
|
1226
|
-
/**
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
datrejet_disc_immediate: Timestamp | null;
|
|
1230
|
-
/**
|
|
1231
|
-
* lecture par assemblée - clé externe
|
|
1232
|
-
*/
|
|
1233
|
-
lecassidt: string;
|
|
1234
|
-
/**
|
|
1235
|
-
* numéro complémentaire (rectifié bis...)
|
|
1236
|
-
*/
|
|
1237
|
-
numerobis: string | null;
|
|
1238
|
-
/**
|
|
1239
|
-
* Organisme associé - clé externe
|
|
1240
|
-
*/
|
|
1241
|
-
orgcod: string | null;
|
|
1242
|
-
/**
|
|
1243
|
-
* origine du texte - clé externe
|
|
1244
|
-
*/
|
|
1395
|
+
/** Clé de la table */
|
|
1396
|
+
texcod: number;
|
|
1397
|
+
/** origine du texte - clé externe */
|
|
1245
1398
|
oritxtcod: string | null;
|
|
1246
|
-
/**
|
|
1247
|
-
* Prix de vente
|
|
1248
|
-
*/
|
|
1249
|
-
prix: string | null;
|
|
1250
|
-
/**
|
|
1251
|
-
* Sous réserve decom. spéciale (oui/non)
|
|
1252
|
-
*/
|
|
1253
|
-
reserve_comspe: string | null;
|
|
1254
|
-
/**
|
|
1255
|
-
* Session de numérotation - clé externe
|
|
1256
|
-
*/
|
|
1257
|
-
sesann: Int8 | null;
|
|
1258
|
-
/**
|
|
1259
|
-
* O si associé à un avis du Conseil d'état
|
|
1260
|
-
*/
|
|
1261
|
-
texace: string | null;
|
|
1262
|
-
/**
|
|
1263
|
-
* Clé de la table
|
|
1264
|
-
*/
|
|
1265
|
-
texcod: Int8;
|
|
1266
|
-
/**
|
|
1267
|
-
* Date de séance à laquelle est rattaché le dépôt du texte
|
|
1268
|
-
*/
|
|
1269
|
-
texdatsea: Timestamp | null;
|
|
1270
|
-
/**
|
|
1271
|
-
* numéro du texte
|
|
1272
|
-
*/
|
|
1273
|
-
texnum: Int8 | null;
|
|
1274
|
-
/**
|
|
1275
|
-
* URL principal
|
|
1276
|
-
*/
|
|
1277
|
-
texurl: string | null;
|
|
1278
|
-
/**
|
|
1279
|
-
* Date associée au texte (dépôt ou adoption)
|
|
1280
|
-
*/
|
|
1281
|
-
txtoritxtdat: Timestamp;
|
|
1282
|
-
/**
|
|
1283
|
-
* type du texte - clé externe
|
|
1284
|
-
*/
|
|
1399
|
+
/** type du texte - clé externe */
|
|
1285
1400
|
typtxtcod: string;
|
|
1286
|
-
/**
|
|
1287
|
-
* type d'URL
|
|
1288
|
-
*/
|
|
1401
|
+
/** type d'URL */
|
|
1289
1402
|
typurl: string;
|
|
1290
|
-
/**
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
/**
|
|
1295
|
-
|
|
1296
|
-
|
|
1403
|
+
/** lecture par assemblée - clé externe */
|
|
1404
|
+
lecassidt: string;
|
|
1405
|
+
/** Session de numérotation - clé externe */
|
|
1406
|
+
sesann: number | null;
|
|
1407
|
+
/** Organisme associé - clé externe */
|
|
1408
|
+
orgcod: string | null;
|
|
1409
|
+
/** numéro du texte */
|
|
1410
|
+
texnum: number | null;
|
|
1411
|
+
/** URL principal */
|
|
1412
|
+
texurl: string | null;
|
|
1413
|
+
/** URL complémentaire 2 */
|
|
1297
1414
|
url2: string | null;
|
|
1298
|
-
/**
|
|
1299
|
-
* Libellé pour l'URL 2
|
|
1300
|
-
*/
|
|
1301
|
-
url2txt: string | null;
|
|
1302
|
-
/**
|
|
1303
|
-
* URL complémentaire 3
|
|
1304
|
-
*/
|
|
1415
|
+
/** URL complémentaire 3 */
|
|
1305
1416
|
url3: string | null;
|
|
1306
|
-
/**
|
|
1307
|
-
* libellé pour l'URL 3
|
|
1308
|
-
*/
|
|
1309
|
-
url3txt: string | null;
|
|
1310
|
-
/**
|
|
1311
|
-
* URL complémentaire 4
|
|
1312
|
-
*/
|
|
1417
|
+
/** URL complémentaire 4 */
|
|
1313
1418
|
url4: string | null;
|
|
1314
|
-
/**
|
|
1315
|
-
|
|
1316
|
-
|
|
1419
|
+
/** Libellé pour l'URL 2 */
|
|
1420
|
+
url2txt: string | null;
|
|
1421
|
+
/** libellé pour l'URL 3 */
|
|
1422
|
+
url3txt: string | null;
|
|
1423
|
+
/** Libellé pour l'URL 4 */
|
|
1317
1424
|
url4txt: string | null;
|
|
1425
|
+
/** Date associée au texte (dépôt ou adoption) */
|
|
1426
|
+
txtoritxtdat: Date;
|
|
1427
|
+
/** Prix de vente */
|
|
1428
|
+
prix: string | null;
|
|
1429
|
+
/** numéro complémentaire (rectifié bis...) */
|
|
1430
|
+
numerobis: string | null;
|
|
1431
|
+
/** Date de séance à laquelle est rattaché le dépôt du texte */
|
|
1432
|
+
texdatsea: Date | null;
|
|
1433
|
+
/** Sous réserve decom. spéciale (oui/non) */
|
|
1434
|
+
reserve_comspe: string | null;
|
|
1435
|
+
/** Date (éventuelle) de rejet de la demande de discussion immédiate */
|
|
1436
|
+
datrejet_disc_immediate: Date | null;
|
|
1437
|
+
/** O si associé à un avis du Conseil d'état */
|
|
1438
|
+
texace: string | null;
|
|
1439
|
+
/** URL de l'avis du CNEN */
|
|
1440
|
+
url_cnen: string | null;
|
|
1441
|
+
}
|
|
1442
|
+
/** Textes */
|
|
1443
|
+
export interface TexteInput {
|
|
1444
|
+
/** Clé de la table */
|
|
1445
|
+
texcod: number;
|
|
1446
|
+
/** origine du texte - clé externe */
|
|
1447
|
+
oritxtcod?: string | null;
|
|
1448
|
+
/** type du texte - clé externe */
|
|
1449
|
+
typtxtcod: string;
|
|
1450
|
+
/** type d'URL */
|
|
1451
|
+
typurl: string;
|
|
1452
|
+
/** lecture par assemblée - clé externe */
|
|
1453
|
+
lecassidt: string;
|
|
1454
|
+
/** Session de numérotation - clé externe */
|
|
1455
|
+
sesann?: number | null;
|
|
1456
|
+
/** Organisme associé - clé externe */
|
|
1457
|
+
orgcod?: string | null;
|
|
1458
|
+
/** numéro du texte */
|
|
1459
|
+
texnum?: number | null;
|
|
1460
|
+
/** URL principal */
|
|
1461
|
+
texurl?: string | null;
|
|
1462
|
+
/** URL complémentaire 2 */
|
|
1463
|
+
url2?: string | null;
|
|
1464
|
+
/** URL complémentaire 3 */
|
|
1465
|
+
url3?: string | null;
|
|
1466
|
+
/** URL complémentaire 4 */
|
|
1467
|
+
url4?: string | null;
|
|
1468
|
+
/** Libellé pour l'URL 2 */
|
|
1469
|
+
url2txt?: string | null;
|
|
1470
|
+
/** libellé pour l'URL 3 */
|
|
1471
|
+
url3txt?: string | null;
|
|
1472
|
+
/** Libellé pour l'URL 4 */
|
|
1473
|
+
url4txt?: string | null;
|
|
1474
|
+
/** Date associée au texte (dépôt ou adoption) */
|
|
1475
|
+
txtoritxtdat: Date;
|
|
1476
|
+
/** Prix de vente */
|
|
1477
|
+
prix?: string | null;
|
|
1478
|
+
/** numéro complémentaire (rectifié bis...) */
|
|
1479
|
+
numerobis?: string | null;
|
|
1480
|
+
/** Date de séance à laquelle est rattaché le dépôt du texte */
|
|
1481
|
+
texdatsea?: Date | null;
|
|
1482
|
+
/** Sous réserve decom. spéciale (oui/non) */
|
|
1483
|
+
reserve_comspe?: string | null;
|
|
1484
|
+
/** Date (éventuelle) de rejet de la demande de discussion immédiate */
|
|
1485
|
+
datrejet_disc_immediate?: Date | null;
|
|
1486
|
+
/** O si associé à un avis du Conseil d'état */
|
|
1487
|
+
texace?: string | null;
|
|
1488
|
+
/** URL de l'avis du CNEN */
|
|
1489
|
+
url_cnen?: string | null;
|
|
1318
1490
|
}
|
|
1319
1491
|
export interface TexteAncien {
|
|
1320
|
-
|
|
1321
|
-
date_effet: Timestamp | null;
|
|
1322
|
-
fichier: string | null;
|
|
1323
|
-
id: Int8;
|
|
1324
|
-
lecture: string | null;
|
|
1325
|
-
libelle: string | null;
|
|
1326
|
-
numero: Int8;
|
|
1492
|
+
id: number;
|
|
1327
1493
|
origine: string;
|
|
1328
|
-
|
|
1329
|
-
|
|
1494
|
+
sesann: number;
|
|
1495
|
+
numero: number;
|
|
1496
|
+
rectifie: number;
|
|
1497
|
+
date_effet: Date | null;
|
|
1498
|
+
lecture: string | null;
|
|
1330
1499
|
statut: string | null;
|
|
1500
|
+
urgence: number;
|
|
1501
|
+
article_type: string | null;
|
|
1331
1502
|
type_texte: string | null;
|
|
1332
|
-
|
|
1503
|
+
libelle: string | null;
|
|
1504
|
+
fichier: string | null;
|
|
1333
1505
|
}
|
|
1506
|
+
export interface TexteAncienInput {
|
|
1507
|
+
id: number;
|
|
1508
|
+
origine: string;
|
|
1509
|
+
sesann: number;
|
|
1510
|
+
numero: number;
|
|
1511
|
+
rectifie: number;
|
|
1512
|
+
date_effet?: Date | null;
|
|
1513
|
+
lecture?: string | null;
|
|
1514
|
+
statut?: string | null;
|
|
1515
|
+
urgence: number;
|
|
1516
|
+
article_type?: string | null;
|
|
1517
|
+
type_texte?: string | null;
|
|
1518
|
+
libelle?: string | null;
|
|
1519
|
+
fichier?: string | null;
|
|
1520
|
+
}
|
|
1521
|
+
/** Thèmes */
|
|
1334
1522
|
export interface The {
|
|
1335
|
-
/**
|
|
1336
|
-
|
|
1337
|
-
|
|
1523
|
+
/** Clé de la table */
|
|
1524
|
+
thecle: number;
|
|
1525
|
+
/** Libellé */
|
|
1526
|
+
thelib: string;
|
|
1527
|
+
/** relatif [à/au/à la,...] */
|
|
1338
1528
|
theali: string | null;
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1529
|
+
}
|
|
1530
|
+
/** Thèmes */
|
|
1531
|
+
export interface TheInput {
|
|
1532
|
+
/** Clé de la table */
|
|
1342
1533
|
thecle: number;
|
|
1343
|
-
/**
|
|
1344
|
-
* Libellé
|
|
1345
|
-
*/
|
|
1534
|
+
/** Libellé */
|
|
1346
1535
|
thelib: string;
|
|
1536
|
+
/** relatif [à/au/à la,...] */
|
|
1537
|
+
theali?: string | null;
|
|
1347
1538
|
}
|
|
1539
|
+
/** Titres des sénateurs (pour les scrutins publics) */
|
|
1348
1540
|
export interface Titsen {
|
|
1349
|
-
/**
|
|
1350
|
-
* Clé de la table
|
|
1351
|
-
*/
|
|
1541
|
+
/** Clé de la table */
|
|
1352
1542
|
titsencod: string;
|
|
1353
|
-
/**
|
|
1354
|
-
* Libellé
|
|
1355
|
-
*/
|
|
1543
|
+
/** Libellé */
|
|
1356
1544
|
titsenlib: string | null;
|
|
1357
1545
|
}
|
|
1546
|
+
/** Titres des sénateurs (pour les scrutins publics) */
|
|
1547
|
+
export interface TitsenInput {
|
|
1548
|
+
/** Clé de la table */
|
|
1549
|
+
titsencod: string;
|
|
1550
|
+
/** Libellé */
|
|
1551
|
+
titsenlib?: string | null;
|
|
1552
|
+
}
|
|
1553
|
+
/** Types de documents attachés à un rapport */
|
|
1358
1554
|
export interface Typatt {
|
|
1359
|
-
/**
|
|
1360
|
-
* Clé de la table
|
|
1361
|
-
*/
|
|
1555
|
+
/** Clé de la table */
|
|
1362
1556
|
typattcod: string;
|
|
1363
|
-
/**
|
|
1364
|
-
|
|
1365
|
-
|
|
1557
|
+
/** Libellé */
|
|
1558
|
+
typattlib: string;
|
|
1559
|
+
}
|
|
1560
|
+
/** Types de documents attachés à un rapport */
|
|
1561
|
+
export interface TypattInput {
|
|
1562
|
+
/** Clé de la table */
|
|
1563
|
+
typattcod: string;
|
|
1564
|
+
/** Libellé */
|
|
1366
1565
|
typattlib: string;
|
|
1367
1566
|
}
|
|
1567
|
+
/** Types d'auteurs */
|
|
1368
1568
|
export interface Typaut {
|
|
1369
|
-
/**
|
|
1370
|
-
* Clé de la table
|
|
1371
|
-
*/
|
|
1569
|
+
/** Clé de la table */
|
|
1372
1570
|
typautcod: string;
|
|
1373
|
-
/**
|
|
1374
|
-
|
|
1375
|
-
|
|
1571
|
+
/** Libellé */
|
|
1572
|
+
typautlib: string;
|
|
1573
|
+
}
|
|
1574
|
+
/** Types d'auteurs */
|
|
1575
|
+
export interface TypautInput {
|
|
1576
|
+
/** Clé de la table */
|
|
1577
|
+
typautcod: string;
|
|
1578
|
+
/** Libellé */
|
|
1376
1579
|
typautlib: string;
|
|
1377
1580
|
}
|
|
1581
|
+
/** Types de documents */
|
|
1378
1582
|
export interface Typdoc {
|
|
1379
|
-
/**
|
|
1380
|
-
* Clé de la table
|
|
1381
|
-
*/
|
|
1583
|
+
/** Clé de la table */
|
|
1382
1584
|
typdoccod: string;
|
|
1383
|
-
/**
|
|
1384
|
-
* Libellé
|
|
1385
|
-
*/
|
|
1585
|
+
/** Libellé */
|
|
1386
1586
|
typdoclib: string | null;
|
|
1387
1587
|
}
|
|
1588
|
+
/** Types de documents */
|
|
1589
|
+
export interface TypdocInput {
|
|
1590
|
+
/** Clé de la table */
|
|
1591
|
+
typdoccod: string;
|
|
1592
|
+
/** Libellé */
|
|
1593
|
+
typdoclib?: string | null;
|
|
1594
|
+
}
|
|
1595
|
+
/** Types d'événements de séance */
|
|
1388
1596
|
export interface Typevtsea {
|
|
1389
|
-
/**
|
|
1390
|
-
* Clé de la table
|
|
1391
|
-
*/
|
|
1597
|
+
/** Clé de la table */
|
|
1392
1598
|
typevtcod: string;
|
|
1393
|
-
/**
|
|
1394
|
-
* Libellé
|
|
1395
|
-
*/
|
|
1599
|
+
/** Libellé */
|
|
1396
1600
|
typevtlib: string;
|
|
1397
1601
|
}
|
|
1602
|
+
/** Types d'événements de séance */
|
|
1603
|
+
export interface TypevtseaInput {
|
|
1604
|
+
/** Clé de la table */
|
|
1605
|
+
typevtcod: string;
|
|
1606
|
+
/** Libellé */
|
|
1607
|
+
typevtlib: string;
|
|
1608
|
+
}
|
|
1609
|
+
/** Types de lectures */
|
|
1398
1610
|
export interface Typlec {
|
|
1399
|
-
/**
|
|
1400
|
-
* Clé de la table
|
|
1401
|
-
*/
|
|
1611
|
+
/** Clé de la table */
|
|
1402
1612
|
typleccod: string;
|
|
1403
|
-
/**
|
|
1404
|
-
* Libellé
|
|
1405
|
-
*/
|
|
1613
|
+
/** Libellé */
|
|
1406
1614
|
typleclib: string;
|
|
1407
|
-
/**
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1615
|
+
/** classement de la lecture */
|
|
1616
|
+
typlecord: number | null;
|
|
1617
|
+
}
|
|
1618
|
+
/** Types de lectures */
|
|
1619
|
+
export interface TyplecInput {
|
|
1620
|
+
/** Clé de la table */
|
|
1621
|
+
typleccod: string;
|
|
1622
|
+
/** Libellé */
|
|
1623
|
+
typleclib: string;
|
|
1624
|
+
/** classement de la lecture */
|
|
1625
|
+
typlecord?: number | null;
|
|
1411
1626
|
}
|
|
1627
|
+
/** Types de dossiers législtatifs */
|
|
1412
1628
|
export interface Typloi {
|
|
1413
|
-
/**
|
|
1414
|
-
* Clé étrangère vers natloi (regroupement de dossiers par nature)
|
|
1415
|
-
*/
|
|
1416
|
-
groupe: string | null;
|
|
1417
|
-
/**
|
|
1418
|
-
* Abréviation, utilisée notamment dans le TAP
|
|
1419
|
-
*/
|
|
1420
|
-
typloiabr: string | null;
|
|
1421
|
-
/**
|
|
1422
|
-
* Clé de la table
|
|
1423
|
-
*/
|
|
1629
|
+
/** Clé de la table */
|
|
1424
1630
|
typloicod: string;
|
|
1425
|
-
/**
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
/**
|
|
1430
|
-
* Dénomination officielle du type de dossier
|
|
1431
|
-
*/
|
|
1631
|
+
/** Libellé */
|
|
1632
|
+
typloilib: string;
|
|
1633
|
+
/** Clé étrangère vers natloi (regroupement de dossiers par nature) */
|
|
1634
|
+
groupe: string | null;
|
|
1635
|
+
/** Dénomination officielle du type de dossier */
|
|
1432
1636
|
typloiden: string | null;
|
|
1433
|
-
/**
|
|
1434
|
-
* Dénomination au pluriel
|
|
1435
|
-
*/
|
|
1436
|
-
typloidenplu: string | null;
|
|
1437
|
-
/**
|
|
1438
|
-
* Genre : F=féminin, M=masculin
|
|
1439
|
-
*/
|
|
1637
|
+
/** Genre : F=féminin, M=masculin */
|
|
1440
1638
|
typloigen: string | null;
|
|
1441
|
-
/**
|
|
1442
|
-
* Libellé
|
|
1443
|
-
*/
|
|
1444
|
-
typloilib: string;
|
|
1445
|
-
/**
|
|
1446
|
-
* Titre utilisé pour les regroupements par types
|
|
1447
|
-
*/
|
|
1639
|
+
/** Titre utilisé pour les regroupements par types */
|
|
1448
1640
|
typloitit: string | null;
|
|
1641
|
+
/** Dénomination au pluriel */
|
|
1642
|
+
typloidenplu: string | null;
|
|
1643
|
+
/** de, de la... */
|
|
1644
|
+
typloide: string | null;
|
|
1645
|
+
/** Abréviation, utilisée notamment dans le TAP */
|
|
1646
|
+
typloiabr: string | null;
|
|
1449
1647
|
}
|
|
1648
|
+
/** Types de dossiers législtatifs */
|
|
1649
|
+
export interface TyploiInput {
|
|
1650
|
+
/** Clé de la table */
|
|
1651
|
+
typloicod: string;
|
|
1652
|
+
/** Libellé */
|
|
1653
|
+
typloilib: string;
|
|
1654
|
+
/** Clé étrangère vers natloi (regroupement de dossiers par nature) */
|
|
1655
|
+
groupe?: string | null;
|
|
1656
|
+
/** Dénomination officielle du type de dossier */
|
|
1657
|
+
typloiden?: string | null;
|
|
1658
|
+
/** Genre : F=féminin, M=masculin */
|
|
1659
|
+
typloigen?: string | null;
|
|
1660
|
+
/** Titre utilisé pour les regroupements par types */
|
|
1661
|
+
typloitit?: string | null;
|
|
1662
|
+
/** Dénomination au pluriel */
|
|
1663
|
+
typloidenplu?: string | null;
|
|
1664
|
+
/** de, de la... */
|
|
1665
|
+
typloide?: string | null;
|
|
1666
|
+
/** Abréviation, utilisée notamment dans le TAP */
|
|
1667
|
+
typloiabr?: string | null;
|
|
1668
|
+
}
|
|
1669
|
+
/** Types d'organismes */
|
|
1450
1670
|
export interface Typorg {
|
|
1451
|
-
/**
|
|
1452
|
-
* Clé de la table
|
|
1453
|
-
*/
|
|
1671
|
+
/** Clé de la table */
|
|
1454
1672
|
typorgcod: string;
|
|
1455
|
-
/**
|
|
1456
|
-
* Libellé
|
|
1457
|
-
*/
|
|
1673
|
+
/** Libellé */
|
|
1458
1674
|
typorglib: string;
|
|
1459
|
-
/**
|
|
1460
|
-
* Classement
|
|
1461
|
-
*/
|
|
1462
|
-
typorgord: Int8 | null;
|
|
1463
|
-
/**
|
|
1464
|
-
* Titre associé à la listes des organismes du type considéré
|
|
1465
|
-
*/
|
|
1466
|
-
typorgtitens: string | null;
|
|
1467
|
-
/**
|
|
1468
|
-
* URL de la page associée
|
|
1469
|
-
*/
|
|
1675
|
+
/** URL de la page associée */
|
|
1470
1676
|
typorgurl: string | null;
|
|
1471
|
-
/**
|
|
1472
|
-
|
|
1473
|
-
|
|
1677
|
+
/** Titre associé à la listes des organismes du type considéré */
|
|
1678
|
+
typorgtitens: string | null;
|
|
1679
|
+
/** Code pour la vidéothèque */
|
|
1474
1680
|
typorgvid: string | null;
|
|
1681
|
+
/** Classement */
|
|
1682
|
+
typorgord: number | null;
|
|
1683
|
+
}
|
|
1684
|
+
/** Types d'organismes */
|
|
1685
|
+
export interface TyporgInput {
|
|
1686
|
+
/** Clé de la table */
|
|
1687
|
+
typorgcod: string;
|
|
1688
|
+
/** Libellé */
|
|
1689
|
+
typorglib: string;
|
|
1690
|
+
/** URL de la page associée */
|
|
1691
|
+
typorgurl?: string | null;
|
|
1692
|
+
/** Titre associé à la listes des organismes du type considéré */
|
|
1693
|
+
typorgtitens?: string | null;
|
|
1694
|
+
/** Code pour la vidéothèque */
|
|
1695
|
+
typorgvid?: string | null;
|
|
1696
|
+
/** Classement */
|
|
1697
|
+
typorgord?: number | null;
|
|
1475
1698
|
}
|
|
1699
|
+
/** Types de rapports */
|
|
1476
1700
|
export interface Typrap {
|
|
1477
|
-
/**
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
catrapcod: string | null;
|
|
1481
|
-
/**
|
|
1482
|
-
* O = indépendent dess dossiers législatifs
|
|
1483
|
-
*/
|
|
1484
|
-
typrapind: string;
|
|
1485
|
-
/**
|
|
1486
|
-
* Libellé
|
|
1487
|
-
*/
|
|
1701
|
+
/** Clé de la table */
|
|
1702
|
+
typraprap: string;
|
|
1703
|
+
/** Libellé */
|
|
1488
1704
|
typraplib: string;
|
|
1489
|
-
/**
|
|
1490
|
-
|
|
1491
|
-
|
|
1705
|
+
/** O = indépendent dess dossiers législatifs */
|
|
1706
|
+
typrapind: string;
|
|
1707
|
+
/** Libellé pluriel */
|
|
1492
1708
|
typraplibplu: string | null;
|
|
1493
|
-
/**
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
/**
|
|
1498
|
-
* Clé de la table
|
|
1499
|
-
*/
|
|
1500
|
-
typraprap: string;
|
|
1501
|
-
/**
|
|
1502
|
-
* Répertoire par défaut pour ce type de rapports
|
|
1503
|
-
*/
|
|
1709
|
+
/** URL de la page présentants les rapports de ce type */
|
|
1710
|
+
typrapurl: string | null;
|
|
1711
|
+
/** Clé étrangère vers catrap (catégorie du rapport) */
|
|
1712
|
+
catrapcod: string | null;
|
|
1713
|
+
/** Répertoire par défaut pour ce type de rapports */
|
|
1504
1714
|
typraprep: string | null;
|
|
1505
|
-
/**
|
|
1506
|
-
|
|
1507
|
-
|
|
1715
|
+
/** O=une notice est générée pour ce type de rapports */
|
|
1716
|
+
typrapnot: string | null;
|
|
1717
|
+
/** O=la numérotation est remise à zéro à chaque session */
|
|
1508
1718
|
typrapses: string | null;
|
|
1509
|
-
/**
|
|
1510
|
-
* URL de la page présentants les rapports de ce type
|
|
1511
|
-
*/
|
|
1512
|
-
typrapurl: string | null;
|
|
1513
1719
|
}
|
|
1720
|
+
/** Types de rapports */
|
|
1721
|
+
export interface TyprapInput {
|
|
1722
|
+
/** Clé de la table */
|
|
1723
|
+
typraprap: string;
|
|
1724
|
+
/** Libellé */
|
|
1725
|
+
typraplib: string;
|
|
1726
|
+
/** O = indépendent dess dossiers législatifs */
|
|
1727
|
+
typrapind: string;
|
|
1728
|
+
/** Libellé pluriel */
|
|
1729
|
+
typraplibplu?: string | null;
|
|
1730
|
+
/** URL de la page présentants les rapports de ce type */
|
|
1731
|
+
typrapurl?: string | null;
|
|
1732
|
+
/** Clé étrangère vers catrap (catégorie du rapport) */
|
|
1733
|
+
catrapcod?: string | null;
|
|
1734
|
+
/** Répertoire par défaut pour ce type de rapports */
|
|
1735
|
+
typraprep?: string | null;
|
|
1736
|
+
/** O=une notice est générée pour ce type de rapports */
|
|
1737
|
+
typrapnot?: string | null;
|
|
1738
|
+
/** O=la numérotation est remise à zéro à chaque session */
|
|
1739
|
+
typrapses?: string | null;
|
|
1740
|
+
}
|
|
1741
|
+
/** Types de textes */
|
|
1514
1742
|
export interface Typtxt {
|
|
1515
|
-
/**
|
|
1516
|
-
* Clé de la table
|
|
1517
|
-
*/
|
|
1743
|
+
/** Clé de la table */
|
|
1518
1744
|
typtxtcod: string;
|
|
1519
|
-
/**
|
|
1520
|
-
|
|
1521
|
-
|
|
1745
|
+
/** Libellé */
|
|
1746
|
+
typtxtlib: string;
|
|
1747
|
+
}
|
|
1748
|
+
/** Types de textes */
|
|
1749
|
+
export interface TyptxtInput {
|
|
1750
|
+
/** Clé de la table */
|
|
1751
|
+
typtxtcod: string;
|
|
1752
|
+
/** Libellé */
|
|
1522
1753
|
typtxtlib: string;
|
|
1523
1754
|
}
|
|
1755
|
+
/** Types d'URL */
|
|
1524
1756
|
export interface Typurl {
|
|
1525
|
-
/**
|
|
1526
|
-
|
|
1527
|
-
|
|
1757
|
+
/** Clé de la table */
|
|
1758
|
+
typurl: string;
|
|
1759
|
+
/** Libellé */
|
|
1528
1760
|
libtypurl: string;
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1761
|
+
}
|
|
1762
|
+
/** Types d'URL */
|
|
1763
|
+
export interface TypurlInput {
|
|
1764
|
+
/** Clé de la table */
|
|
1532
1765
|
typurl: string;
|
|
1766
|
+
/** Libellé */
|
|
1767
|
+
libtypurl: string;
|
|
1533
1768
|
}
|
|
1769
|
+
/** Votes des sénateurs lors des scrutins publics */
|
|
1534
1770
|
export interface Votsen {
|
|
1535
|
-
/**
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
/**
|
|
1540
|
-
* Avec sesann, clé étrangère vers la table scr (numéro de scrutin) - élément de la clé de la table
|
|
1541
|
-
*/
|
|
1542
|
-
scrnum: Int8;
|
|
1543
|
-
/**
|
|
1544
|
-
* Matricule du sénateur (table SEN de la base senateurs) - élément de la clé de la table
|
|
1545
|
-
*/
|
|
1771
|
+
/** Avec scrnum, clé étrangère vers la table scr (scrutin) - élément de la clé de la table */
|
|
1772
|
+
sesann: number;
|
|
1773
|
+
/** Avec sesann, clé étrangère vers la table scr (numéro de scrutin) - élément de la clé de la table */
|
|
1774
|
+
scrnum: number;
|
|
1775
|
+
/** Matricule du sénateur (table SEN de la base senateurs) - élément de la clé de la table */
|
|
1546
1776
|
senmat: string;
|
|
1547
|
-
/**
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
senmatdel: string | null;
|
|
1551
|
-
/**
|
|
1552
|
-
* Avec scrnum, clé étrangère vers la table scr (scrutin) - élément de la clé de la table
|
|
1553
|
-
*/
|
|
1554
|
-
sesann: Int8;
|
|
1555
|
-
/**
|
|
1556
|
-
* Clé étrangère vers statvot (statut spécial du votant)
|
|
1557
|
-
*/
|
|
1558
|
-
stavotidt: string;
|
|
1559
|
-
/**
|
|
1560
|
-
* Clé étrangère vers titsen (titre du sénateur)
|
|
1561
|
-
*/
|
|
1777
|
+
/** Clé étrangère vers posvot (position de vote) */
|
|
1778
|
+
posvotcod: string | null;
|
|
1779
|
+
/** Clé étrangère vers titsen (titre du sénateur) */
|
|
1562
1780
|
titsencod: string;
|
|
1781
|
+
/** Clé étrangère vers statvot (statut spécial du votant) */
|
|
1782
|
+
stavotidt: string;
|
|
1783
|
+
/** Matricule du délégant (clé étrangère vers SEN) */
|
|
1784
|
+
senmatdel: string | null;
|
|
1563
1785
|
votsenmar: string | null;
|
|
1564
1786
|
}
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1787
|
+
/** Votes des sénateurs lors des scrutins publics */
|
|
1788
|
+
export interface VotsenInput {
|
|
1789
|
+
/** Avec scrnum, clé étrangère vers la table scr (scrutin) - élément de la clé de la table */
|
|
1790
|
+
sesann: number;
|
|
1791
|
+
/** Avec sesann, clé étrangère vers la table scr (numéro de scrutin) - élément de la clé de la table */
|
|
1792
|
+
scrnum: number;
|
|
1793
|
+
/** Matricule du sénateur (table SEN de la base senateurs) - élément de la clé de la table */
|
|
1794
|
+
senmat: string;
|
|
1795
|
+
/** Clé étrangère vers posvot (position de vote) */
|
|
1796
|
+
posvotcod?: string | null;
|
|
1797
|
+
/** Clé étrangère vers titsen (titre du sénateur) */
|
|
1798
|
+
titsencod: string;
|
|
1799
|
+
/** Clé étrangère vers statvot (statut spécial du votant) */
|
|
1800
|
+
stavotidt: string;
|
|
1801
|
+
/** Matricule du délégant (clé étrangère vers SEN) */
|
|
1802
|
+
senmatdel?: string | null;
|
|
1803
|
+
votsenmar?: string | null;
|
|
1804
|
+
}
|
|
1805
|
+
export interface TableTypes {
|
|
1806
|
+
amescr: {
|
|
1807
|
+
select: Amescr;
|
|
1808
|
+
input: AmescrInput;
|
|
1809
|
+
};
|
|
1810
|
+
ass: {
|
|
1811
|
+
select: Ass;
|
|
1812
|
+
input: AssInput;
|
|
1813
|
+
};
|
|
1814
|
+
aud: {
|
|
1815
|
+
select: Aud;
|
|
1816
|
+
input: AudInput;
|
|
1817
|
+
};
|
|
1818
|
+
auteur: {
|
|
1819
|
+
select: Auteur;
|
|
1820
|
+
input: AuteurInput;
|
|
1821
|
+
};
|
|
1822
|
+
ble: {
|
|
1823
|
+
select: Ble;
|
|
1824
|
+
input: BleInput;
|
|
1825
|
+
};
|
|
1826
|
+
catrap: {
|
|
1827
|
+
select: Catrap;
|
|
1828
|
+
input: CatrapInput;
|
|
1829
|
+
};
|
|
1830
|
+
corscr: {
|
|
1831
|
+
select: Corscr;
|
|
1832
|
+
input: CorscrInput;
|
|
1833
|
+
};
|
|
1834
|
+
date_seance: {
|
|
1835
|
+
select: DateSeance;
|
|
1836
|
+
input: DateSeanceInput;
|
|
1837
|
+
};
|
|
1838
|
+
deccoc: {
|
|
1839
|
+
select: Deccoc;
|
|
1840
|
+
input: DeccocInput;
|
|
1841
|
+
};
|
|
1842
|
+
denrap: {
|
|
1843
|
+
select: Denrap;
|
|
1844
|
+
input: DenrapInput;
|
|
1845
|
+
};
|
|
1846
|
+
doc: {
|
|
1847
|
+
select: Doc;
|
|
1848
|
+
input: DocInput;
|
|
1849
|
+
};
|
|
1850
|
+
docatt: {
|
|
1851
|
+
select: Docatt;
|
|
1852
|
+
input: DocattInput;
|
|
1853
|
+
};
|
|
1854
|
+
docsea: {
|
|
1855
|
+
select: Docsea;
|
|
1856
|
+
input: DocseaInput;
|
|
1857
|
+
};
|
|
1858
|
+
ecr: {
|
|
1859
|
+
select: Ecr;
|
|
1860
|
+
input: EcrInput;
|
|
1861
|
+
};
|
|
1862
|
+
etaloi: {
|
|
1863
|
+
select: Etaloi;
|
|
1864
|
+
input: EtaloiInput;
|
|
1865
|
+
};
|
|
1866
|
+
evtsea: {
|
|
1867
|
+
select: Evtsea;
|
|
1868
|
+
input: EvtseaInput;
|
|
1869
|
+
};
|
|
1870
|
+
forpub: {
|
|
1871
|
+
select: Forpub;
|
|
1872
|
+
input: ForpubInput;
|
|
1873
|
+
};
|
|
1874
|
+
gen: {
|
|
1875
|
+
select: Gen;
|
|
1876
|
+
input: GenInput;
|
|
1877
|
+
};
|
|
1878
|
+
lecass: {
|
|
1879
|
+
select: Lecass;
|
|
1880
|
+
input: LecassInput;
|
|
1881
|
+
};
|
|
1882
|
+
lecassrap: {
|
|
1883
|
+
select: Lecassrap;
|
|
1884
|
+
input: LecassrapInput;
|
|
1885
|
+
};
|
|
1886
|
+
lecture: {
|
|
1887
|
+
select: Lecture;
|
|
1888
|
+
input: LectureInput;
|
|
1889
|
+
};
|
|
1890
|
+
lnkrap: {
|
|
1891
|
+
select: Lnkrap;
|
|
1892
|
+
input: LnkrapInput;
|
|
1893
|
+
};
|
|
1894
|
+
loi: {
|
|
1895
|
+
select: Loi;
|
|
1896
|
+
input: LoiInput;
|
|
1897
|
+
};
|
|
1898
|
+
loithe: {
|
|
1899
|
+
select: Loithe;
|
|
1900
|
+
input: LoitheInput;
|
|
1901
|
+
};
|
|
1902
|
+
natloi: {
|
|
1903
|
+
select: Natloi;
|
|
1904
|
+
input: NatloiInput;
|
|
1905
|
+
};
|
|
1906
|
+
org: {
|
|
1907
|
+
select: Org;
|
|
1908
|
+
input: OrgInput;
|
|
1909
|
+
};
|
|
1910
|
+
orgnomhis: {
|
|
1911
|
+
select: Orgnomhis;
|
|
1912
|
+
input: OrgnomhisInput;
|
|
1913
|
+
};
|
|
1914
|
+
orippr: {
|
|
1915
|
+
select: Orippr;
|
|
1916
|
+
input: OripprInput;
|
|
1917
|
+
};
|
|
1918
|
+
oritxt: {
|
|
1919
|
+
select: Oritxt;
|
|
1920
|
+
input: OritxtInput;
|
|
1921
|
+
};
|
|
1922
|
+
posvot: {
|
|
1923
|
+
select: Posvot;
|
|
1924
|
+
input: PosvotInput;
|
|
1925
|
+
};
|
|
1926
|
+
qua: {
|
|
1927
|
+
select: Qua;
|
|
1928
|
+
input: QuaInput;
|
|
1929
|
+
};
|
|
1930
|
+
rap: {
|
|
1931
|
+
select: Rap;
|
|
1932
|
+
input: RapInput;
|
|
1933
|
+
};
|
|
1934
|
+
raporg: {
|
|
1935
|
+
select: Raporg;
|
|
1936
|
+
input: RaporgInput;
|
|
1937
|
+
};
|
|
1938
|
+
rapthe: {
|
|
1939
|
+
select: Rapthe;
|
|
1940
|
+
input: RaptheInput;
|
|
1941
|
+
};
|
|
1942
|
+
rolsig: {
|
|
1943
|
+
select: Rolsig;
|
|
1944
|
+
input: RolsigInput;
|
|
1945
|
+
};
|
|
1946
|
+
scr: {
|
|
1947
|
+
select: Scr;
|
|
1948
|
+
input: ScrInput;
|
|
1949
|
+
};
|
|
1950
|
+
ses: {
|
|
1951
|
+
select: Ses;
|
|
1952
|
+
input: SesInput;
|
|
1953
|
+
};
|
|
1954
|
+
stavot: {
|
|
1955
|
+
select: Stavot;
|
|
1956
|
+
input: StavotInput;
|
|
1957
|
+
};
|
|
1958
|
+
texte: {
|
|
1959
|
+
select: Texte;
|
|
1960
|
+
input: TexteInput;
|
|
1961
|
+
};
|
|
1962
|
+
texte_ancien: {
|
|
1963
|
+
select: TexteAncien;
|
|
1964
|
+
input: TexteAncienInput;
|
|
1965
|
+
};
|
|
1966
|
+
the: {
|
|
1967
|
+
select: The;
|
|
1968
|
+
input: TheInput;
|
|
1969
|
+
};
|
|
1970
|
+
titsen: {
|
|
1971
|
+
select: Titsen;
|
|
1972
|
+
input: TitsenInput;
|
|
1973
|
+
};
|
|
1974
|
+
typatt: {
|
|
1975
|
+
select: Typatt;
|
|
1976
|
+
input: TypattInput;
|
|
1977
|
+
};
|
|
1978
|
+
typaut: {
|
|
1979
|
+
select: Typaut;
|
|
1980
|
+
input: TypautInput;
|
|
1981
|
+
};
|
|
1982
|
+
typdoc: {
|
|
1983
|
+
select: Typdoc;
|
|
1984
|
+
input: TypdocInput;
|
|
1985
|
+
};
|
|
1986
|
+
typevtsea: {
|
|
1987
|
+
select: Typevtsea;
|
|
1988
|
+
input: TypevtseaInput;
|
|
1989
|
+
};
|
|
1990
|
+
typlec: {
|
|
1991
|
+
select: Typlec;
|
|
1992
|
+
input: TyplecInput;
|
|
1993
|
+
};
|
|
1994
|
+
typloi: {
|
|
1995
|
+
select: Typloi;
|
|
1996
|
+
input: TyploiInput;
|
|
1997
|
+
};
|
|
1998
|
+
typorg: {
|
|
1999
|
+
select: Typorg;
|
|
2000
|
+
input: TyporgInput;
|
|
2001
|
+
};
|
|
2002
|
+
typrap: {
|
|
2003
|
+
select: Typrap;
|
|
2004
|
+
input: TyprapInput;
|
|
2005
|
+
};
|
|
2006
|
+
typtxt: {
|
|
2007
|
+
select: Typtxt;
|
|
2008
|
+
input: TyptxtInput;
|
|
2009
|
+
};
|
|
2010
|
+
typurl: {
|
|
2011
|
+
select: Typurl;
|
|
2012
|
+
input: TypurlInput;
|
|
2013
|
+
};
|
|
2014
|
+
votsen: {
|
|
2015
|
+
select: Votsen;
|
|
2016
|
+
input: VotsenInput;
|
|
2017
|
+
};
|
|
1619
2018
|
}
|
|
2019
|
+
export declare const tables: {
|
|
2020
|
+
amescr: {
|
|
2021
|
+
readonly tableName: "amescr";
|
|
2022
|
+
readonly columns: readonly ["sesann", "scrnum", "amescrnum"];
|
|
2023
|
+
readonly requiredForInsert: readonly ["sesann", "scrnum", "amescrnum"];
|
|
2024
|
+
readonly primaryKey: null;
|
|
2025
|
+
readonly foreignKeys: {};
|
|
2026
|
+
readonly $type: Amescr;
|
|
2027
|
+
readonly $input: AmescrInput;
|
|
2028
|
+
};
|
|
2029
|
+
ass: {
|
|
2030
|
+
readonly tableName: "ass";
|
|
2031
|
+
readonly columns: readonly ["codass", "libass"];
|
|
2032
|
+
readonly requiredForInsert: readonly ["codass", "libass"];
|
|
2033
|
+
readonly primaryKey: "codass";
|
|
2034
|
+
readonly foreignKeys: {};
|
|
2035
|
+
readonly $type: Ass;
|
|
2036
|
+
readonly $input: AssInput;
|
|
2037
|
+
};
|
|
2038
|
+
aud: {
|
|
2039
|
+
readonly tableName: "aud";
|
|
2040
|
+
readonly columns: readonly ["audcle", "lecassidt", "auddat", "audtit", "audurl", "orgcod"];
|
|
2041
|
+
readonly requiredForInsert: readonly ["audcle", "lecassidt", "auddat", "audtit", "audurl", "orgcod"];
|
|
2042
|
+
readonly primaryKey: "audcle";
|
|
2043
|
+
readonly foreignKeys: {};
|
|
2044
|
+
readonly $type: Aud;
|
|
2045
|
+
readonly $input: AudInput;
|
|
2046
|
+
};
|
|
2047
|
+
auteur: {
|
|
2048
|
+
readonly tableName: "auteur";
|
|
2049
|
+
readonly columns: readonly ["autcod", "quacod", "typautcod", "nomuse", "prenom", "nomtec", "autmat", "grpapp", "grprat", "autfct", "datdeb", "datfin", "senfem"];
|
|
2050
|
+
readonly requiredForInsert: readonly ["autcod", "quacod", "typautcod", "nomuse", "nomtec"];
|
|
2051
|
+
readonly primaryKey: "autcod";
|
|
2052
|
+
readonly foreignKeys: {};
|
|
2053
|
+
readonly $type: Auteur;
|
|
2054
|
+
readonly $input: AuteurInput;
|
|
2055
|
+
};
|
|
2056
|
+
ble: {
|
|
2057
|
+
readonly tableName: "ble";
|
|
2058
|
+
readonly columns: readonly ["blecod", "blelib"];
|
|
2059
|
+
readonly requiredForInsert: readonly ["blecod", "blelib"];
|
|
2060
|
+
readonly primaryKey: "blecod";
|
|
2061
|
+
readonly foreignKeys: {};
|
|
2062
|
+
readonly $type: Ble;
|
|
2063
|
+
readonly $input: BleInput;
|
|
2064
|
+
};
|
|
2065
|
+
catrap: {
|
|
2066
|
+
readonly tableName: "catrap";
|
|
2067
|
+
readonly columns: readonly ["catrapcod", "catraplib"];
|
|
2068
|
+
readonly requiredForInsert: readonly ["catrapcod", "catraplib"];
|
|
2069
|
+
readonly primaryKey: "catrapcod";
|
|
2070
|
+
readonly foreignKeys: {};
|
|
2071
|
+
readonly $type: Catrap;
|
|
2072
|
+
readonly $input: CatrapInput;
|
|
2073
|
+
};
|
|
2074
|
+
corscr: {
|
|
2075
|
+
readonly tableName: "corscr";
|
|
2076
|
+
readonly columns: readonly ["sesann", "scrnum", "corscrord", "corscrtxt", "corscrurl"];
|
|
2077
|
+
readonly requiredForInsert: readonly ["sesann", "scrnum", "corscrtxt"];
|
|
2078
|
+
readonly primaryKey: null;
|
|
2079
|
+
readonly foreignKeys: {};
|
|
2080
|
+
readonly $type: Corscr;
|
|
2081
|
+
readonly $input: CorscrInput;
|
|
2082
|
+
};
|
|
2083
|
+
date_seance: {
|
|
2084
|
+
readonly tableName: "date_seance";
|
|
2085
|
+
readonly columns: readonly ["lecidt", "date_s", "code", "statut"];
|
|
2086
|
+
readonly requiredForInsert: readonly ["code"];
|
|
2087
|
+
readonly primaryKey: "code";
|
|
2088
|
+
readonly foreignKeys: {};
|
|
2089
|
+
readonly $type: DateSeance;
|
|
2090
|
+
readonly $input: DateSeanceInput;
|
|
2091
|
+
};
|
|
2092
|
+
deccoc: {
|
|
2093
|
+
readonly tableName: "deccoc";
|
|
2094
|
+
readonly columns: readonly ["deccoccod", "deccoclib"];
|
|
2095
|
+
readonly requiredForInsert: readonly ["deccoccod", "deccoclib"];
|
|
2096
|
+
readonly primaryKey: "deccoccod";
|
|
2097
|
+
readonly foreignKeys: {};
|
|
2098
|
+
readonly $type: Deccoc;
|
|
2099
|
+
readonly $input: DeccocInput;
|
|
2100
|
+
};
|
|
2101
|
+
denrap: {
|
|
2102
|
+
readonly tableName: "denrap";
|
|
2103
|
+
readonly columns: readonly ["coddenrap", "typraprap", "libdenrap", "ordre", "denrapmin", "denraptit", "denrapstymin", "gencod", "solnatrapcod"];
|
|
2104
|
+
readonly requiredForInsert: readonly ["coddenrap", "typraprap", "libdenrap", "gencod"];
|
|
2105
|
+
readonly primaryKey: "coddenrap";
|
|
2106
|
+
readonly foreignKeys: {};
|
|
2107
|
+
readonly $type: Denrap;
|
|
2108
|
+
readonly $input: DenrapInput;
|
|
2109
|
+
};
|
|
2110
|
+
doc: {
|
|
2111
|
+
readonly tableName: "doc";
|
|
2112
|
+
readonly columns: readonly ["docidt", "typdoccod", "docint", "docurl", "lecidt", "docdat", "docnum", "sesann", "date_depot", "doctitcou", "docdatsea"];
|
|
2113
|
+
readonly requiredForInsert: readonly ["docidt"];
|
|
2114
|
+
readonly primaryKey: "docidt";
|
|
2115
|
+
readonly foreignKeys: {
|
|
2116
|
+
readonly typdoccod: {
|
|
2117
|
+
readonly table: "typdoc";
|
|
2118
|
+
readonly column: "typdoccod";
|
|
2119
|
+
readonly $type: Typdoc;
|
|
2120
|
+
};
|
|
2121
|
+
readonly lecidt: {
|
|
2122
|
+
readonly table: "lecture";
|
|
2123
|
+
readonly column: "lecidt";
|
|
2124
|
+
readonly $type: Lecture;
|
|
2125
|
+
};
|
|
2126
|
+
readonly sesann: {
|
|
2127
|
+
readonly table: "ses";
|
|
2128
|
+
readonly column: "sesann";
|
|
2129
|
+
readonly $type: Ses;
|
|
2130
|
+
};
|
|
2131
|
+
};
|
|
2132
|
+
readonly $type: Doc;
|
|
2133
|
+
readonly $input: DocInput;
|
|
2134
|
+
};
|
|
2135
|
+
docatt: {
|
|
2136
|
+
readonly tableName: "docatt";
|
|
2137
|
+
readonly columns: readonly ["docattcle", "rapcod", "typattcod", "docatturl"];
|
|
2138
|
+
readonly requiredForInsert: readonly ["docattcle", "rapcod", "typattcod"];
|
|
2139
|
+
readonly primaryKey: "docattcle";
|
|
2140
|
+
readonly foreignKeys: {};
|
|
2141
|
+
readonly $type: Docatt;
|
|
2142
|
+
readonly $input: DocattInput;
|
|
2143
|
+
};
|
|
2144
|
+
docsea: {
|
|
2145
|
+
readonly tableName: "docsea";
|
|
2146
|
+
readonly columns: readonly ["evtseacle", "docseaurl", "docseaurltxt", "docseaurlava", "docseaurlapr", "docseaord"];
|
|
2147
|
+
readonly requiredForInsert: readonly ["evtseacle"];
|
|
2148
|
+
readonly primaryKey: null;
|
|
2149
|
+
readonly foreignKeys: {};
|
|
2150
|
+
readonly $type: Docsea;
|
|
2151
|
+
readonly $input: DocseaInput;
|
|
2152
|
+
};
|
|
2153
|
+
ecr: {
|
|
2154
|
+
readonly tableName: "ecr";
|
|
2155
|
+
readonly columns: readonly ["rapcod", "ecrnumtri", "autcod", "texcod", "ecrnum", "typedoc", "signataire", "docidt", "ecrqua"];
|
|
2156
|
+
readonly requiredForInsert: readonly ["ecrnumtri", "ecrnum"];
|
|
2157
|
+
readonly primaryKey: "ecrnum";
|
|
2158
|
+
readonly foreignKeys: {};
|
|
2159
|
+
readonly $type: Ecr;
|
|
2160
|
+
readonly $input: EcrInput;
|
|
2161
|
+
};
|
|
2162
|
+
etaloi: {
|
|
2163
|
+
readonly tableName: "etaloi";
|
|
2164
|
+
readonly columns: readonly ["etaloicod", "etaloilib"];
|
|
2165
|
+
readonly requiredForInsert: readonly ["etaloicod", "etaloilib"];
|
|
2166
|
+
readonly primaryKey: "etaloicod";
|
|
2167
|
+
readonly foreignKeys: {};
|
|
2168
|
+
readonly $type: Etaloi;
|
|
2169
|
+
readonly $input: EtaloiInput;
|
|
2170
|
+
};
|
|
2171
|
+
evtsea: {
|
|
2172
|
+
readonly tableName: "evtsea";
|
|
2173
|
+
readonly columns: readonly ["evtseacle", "loicod", "typevtcod", "lecassidt", "evtseadat"];
|
|
2174
|
+
readonly requiredForInsert: readonly ["evtseacle", "typevtcod", "lecassidt"];
|
|
2175
|
+
readonly primaryKey: "evtseacle";
|
|
2176
|
+
readonly foreignKeys: {};
|
|
2177
|
+
readonly $type: Evtsea;
|
|
2178
|
+
readonly $input: EvtseaInput;
|
|
2179
|
+
};
|
|
2180
|
+
forpub: {
|
|
2181
|
+
readonly tableName: "forpub";
|
|
2182
|
+
readonly columns: readonly ["forpubcod", "forpublib"];
|
|
2183
|
+
readonly requiredForInsert: readonly ["forpubcod", "forpublib"];
|
|
2184
|
+
readonly primaryKey: "forpubcod";
|
|
2185
|
+
readonly foreignKeys: {};
|
|
2186
|
+
readonly $type: Forpub;
|
|
2187
|
+
readonly $input: ForpubInput;
|
|
2188
|
+
};
|
|
2189
|
+
gen: {
|
|
2190
|
+
readonly tableName: "gen";
|
|
2191
|
+
readonly columns: readonly ["gencod", "genlib"];
|
|
2192
|
+
readonly requiredForInsert: readonly ["gencod", "genlib"];
|
|
2193
|
+
readonly primaryKey: null;
|
|
2194
|
+
readonly foreignKeys: {};
|
|
2195
|
+
readonly $type: Gen;
|
|
2196
|
+
readonly $input: GenInput;
|
|
2197
|
+
};
|
|
2198
|
+
lecass: {
|
|
2199
|
+
readonly tableName: "lecass";
|
|
2200
|
+
readonly columns: readonly ["lecassidt", "lecidt", "codass", "ordreass", "sesann", "ptlnum", "ptlurl", "ptlnumcpl", "ptlnot", "ptlurl2", "ptlnot2", "ptlurl3", "ptlnot3", "ptlnumcpl2", "ptlnumcpl3", "lecassame", "lecassameses", "orgcod", "loiintmod", "reucom", "debatsurl", "depot_only", "lecassamedat", "lecassamecomdat", "orippr", "libppr", "sesppr", "ptlurlcom", "aliasppr", "lecassamecom", "lecassamesescom", "ptlnumcom", "lecassameado", "lecassameadodat", "lecassameadoses", "lecassamecomado", "lecassamecomadodat", "lecassamecomadoses"];
|
|
2201
|
+
readonly requiredForInsert: readonly ["lecassidt", "lecidt", "codass", "ordreass"];
|
|
2202
|
+
readonly primaryKey: "lecassidt";
|
|
2203
|
+
readonly foreignKeys: {};
|
|
2204
|
+
readonly $type: Lecass;
|
|
2205
|
+
readonly $input: LecassInput;
|
|
2206
|
+
};
|
|
2207
|
+
lecassrap: {
|
|
2208
|
+
readonly tableName: "lecassrap";
|
|
2209
|
+
readonly columns: readonly ["lecassidt", "rapcod", "lecassrapord"];
|
|
2210
|
+
readonly requiredForInsert: readonly ["lecassidt", "rapcod"];
|
|
2211
|
+
readonly primaryKey: "lecassidt";
|
|
2212
|
+
readonly foreignKeys: {};
|
|
2213
|
+
readonly $type: Lecassrap;
|
|
2214
|
+
readonly $input: LecassrapInput;
|
|
2215
|
+
};
|
|
2216
|
+
lecture: {
|
|
2217
|
+
readonly tableName: "lecture";
|
|
2218
|
+
readonly columns: readonly ["lecidt", "loicod", "typleccod", "leccom"];
|
|
2219
|
+
readonly requiredForInsert: readonly ["lecidt", "loicod", "typleccod"];
|
|
2220
|
+
readonly primaryKey: "lecidt";
|
|
2221
|
+
readonly foreignKeys: {};
|
|
2222
|
+
readonly $type: Lecture;
|
|
2223
|
+
readonly $input: LectureInput;
|
|
2224
|
+
};
|
|
2225
|
+
lnkrap: {
|
|
2226
|
+
readonly tableName: "lnkrap";
|
|
2227
|
+
readonly columns: readonly ["rapcodper", "rapcodenf", "rapperdsc", "rapenfdsc"];
|
|
2228
|
+
readonly requiredForInsert: readonly ["rapcodper", "rapcodenf"];
|
|
2229
|
+
readonly primaryKey: "rapcodper";
|
|
2230
|
+
readonly foreignKeys: {
|
|
2231
|
+
readonly rapcodper: {
|
|
2232
|
+
readonly table: "rap";
|
|
2233
|
+
readonly column: "rapcod";
|
|
2234
|
+
readonly $type: Rap;
|
|
2235
|
+
};
|
|
2236
|
+
readonly rapcodenf: {
|
|
2237
|
+
readonly table: "rap";
|
|
2238
|
+
readonly column: "rapcod";
|
|
2239
|
+
readonly $type: Rap;
|
|
2240
|
+
};
|
|
2241
|
+
};
|
|
2242
|
+
readonly $type: Lnkrap;
|
|
2243
|
+
readonly $input: LnkrapInput;
|
|
2244
|
+
};
|
|
2245
|
+
loi: {
|
|
2246
|
+
readonly tableName: "loi";
|
|
2247
|
+
readonly columns: readonly ["loicod", "typloicod", "etaloicod", "deccoccod", "numero", "signet", "loient", "motclef", "loitit", "loiint", "urgence", "url_jo", "loinumjo", "loidatjo", "date_loi", "loititjo", "url_jo2", "loinumjo2", "loidatjo2", "deccocurl", "num_decision", "date_decision", "loicodmai", "loinoudelibcod", "motionloiorigcod", "objet", "url_ordonnance", "saisine_date", "saisine_par", "loidatjo3", "loinumjo3", "url_jo3", "url_an", "url_presart", "signetalt", "orgcod", "doscocurl", "loiintori", "proaccdat", "proaccoppdat", "retproaccdat", "en_clair_url", "en_clair_image", "en_clair_chapo"];
|
|
2248
|
+
readonly requiredForInsert: readonly ["loicod", "typloicod"];
|
|
2249
|
+
readonly primaryKey: "loicod";
|
|
2250
|
+
readonly foreignKeys: {};
|
|
2251
|
+
readonly $type: Loi;
|
|
2252
|
+
readonly $input: LoiInput;
|
|
2253
|
+
};
|
|
2254
|
+
loithe: {
|
|
2255
|
+
readonly tableName: "loithe";
|
|
2256
|
+
readonly columns: readonly ["loicod", "thecle"];
|
|
2257
|
+
readonly requiredForInsert: readonly ["loicod", "thecle"];
|
|
2258
|
+
readonly primaryKey: "loicod";
|
|
2259
|
+
readonly foreignKeys: {
|
|
2260
|
+
readonly loicod: {
|
|
2261
|
+
readonly table: "loi";
|
|
2262
|
+
readonly column: "loicod";
|
|
2263
|
+
readonly $type: Loi;
|
|
2264
|
+
};
|
|
2265
|
+
readonly thecle: {
|
|
2266
|
+
readonly table: "the";
|
|
2267
|
+
readonly column: "thecle";
|
|
2268
|
+
readonly $type: The;
|
|
2269
|
+
};
|
|
2270
|
+
};
|
|
2271
|
+
readonly $type: Loithe;
|
|
2272
|
+
readonly $input: LoitheInput;
|
|
2273
|
+
};
|
|
2274
|
+
natloi: {
|
|
2275
|
+
readonly tableName: "natloi";
|
|
2276
|
+
readonly columns: readonly ["groupe", "natloilib"];
|
|
2277
|
+
readonly requiredForInsert: readonly ["groupe", "natloilib"];
|
|
2278
|
+
readonly primaryKey: "groupe";
|
|
2279
|
+
readonly foreignKeys: {};
|
|
2280
|
+
readonly $type: Natloi;
|
|
2281
|
+
readonly $input: NatloiInput;
|
|
2282
|
+
};
|
|
2283
|
+
org: {
|
|
2284
|
+
readonly tableName: "org";
|
|
2285
|
+
readonly columns: readonly ["orgcod", "typorgcod", "orgnom", "orgliblon", "codass", "orglibaff", "orgord", "orgurl", "orglibcou", "org_de", "urltra", "inttra", "orgdatdebcop", "orgdatfincop", "orgnomcouv", "senorgcod", "html_color", "orgdatdeb", "orgdatfin", "orggen", "url_podcast"];
|
|
2286
|
+
readonly requiredForInsert: readonly ["orgcod", "typorgcod", "orgnom"];
|
|
2287
|
+
readonly primaryKey: "orgcod";
|
|
2288
|
+
readonly foreignKeys: {};
|
|
2289
|
+
readonly $type: Org;
|
|
2290
|
+
readonly $input: OrgInput;
|
|
2291
|
+
};
|
|
2292
|
+
orgnomhis: {
|
|
2293
|
+
readonly tableName: "orgnomhis";
|
|
2294
|
+
readonly columns: readonly ["onhnum", "orgcod", "orgnom", "orglibcou", "orgliblon", "org_de", "intra", "orgnomcouv", "onhfin", "orglibaff"];
|
|
2295
|
+
readonly requiredForInsert: readonly ["onhnum", "orgcod", "orgnom", "orglibcou", "orgliblon", "org_de", "onhfin"];
|
|
2296
|
+
readonly primaryKey: "onhnum";
|
|
2297
|
+
readonly foreignKeys: {
|
|
2298
|
+
readonly orgcod: {
|
|
2299
|
+
readonly table: "org";
|
|
2300
|
+
readonly column: "orgcod";
|
|
2301
|
+
readonly $type: Org;
|
|
2302
|
+
};
|
|
2303
|
+
};
|
|
2304
|
+
readonly $type: Orgnomhis;
|
|
2305
|
+
readonly $input: OrgnomhisInput;
|
|
2306
|
+
};
|
|
2307
|
+
orippr: {
|
|
2308
|
+
readonly tableName: "orippr";
|
|
2309
|
+
readonly columns: readonly ["oripprcod", "oripprlib"];
|
|
2310
|
+
readonly requiredForInsert: readonly ["oripprcod", "oripprlib"];
|
|
2311
|
+
readonly primaryKey: "oripprcod";
|
|
2312
|
+
readonly foreignKeys: {};
|
|
2313
|
+
readonly $type: Orippr;
|
|
2314
|
+
readonly $input: OripprInput;
|
|
2315
|
+
};
|
|
2316
|
+
oritxt: {
|
|
2317
|
+
readonly tableName: "oritxt";
|
|
2318
|
+
readonly columns: readonly ["oritxtcod", "oritxtlib", "oriordre", "codass", "oritxtlibfem", "oritxtado", "oritxtorg", "oritxtmod", "oritxtign"];
|
|
2319
|
+
readonly requiredForInsert: readonly ["oritxtcod", "oritxtlib", "oritxtlibfem"];
|
|
2320
|
+
readonly primaryKey: "oritxtcod";
|
|
2321
|
+
readonly foreignKeys: {};
|
|
2322
|
+
readonly $type: Oritxt;
|
|
2323
|
+
readonly $input: OritxtInput;
|
|
2324
|
+
};
|
|
2325
|
+
posvot: {
|
|
2326
|
+
readonly tableName: "posvot";
|
|
2327
|
+
readonly columns: readonly ["posvotcod", "posvotlib"];
|
|
2328
|
+
readonly requiredForInsert: readonly ["posvotcod", "posvotlib"];
|
|
2329
|
+
readonly primaryKey: "posvotcod";
|
|
2330
|
+
readonly foreignKeys: {};
|
|
2331
|
+
readonly $type: Posvot;
|
|
2332
|
+
readonly $input: PosvotInput;
|
|
2333
|
+
};
|
|
2334
|
+
qua: {
|
|
2335
|
+
readonly tableName: "qua";
|
|
2336
|
+
readonly columns: readonly ["quacod", "qualic", "quaabr", "quaabrplu"];
|
|
2337
|
+
readonly requiredForInsert: readonly ["quacod", "qualic", "quaabr", "quaabrplu"];
|
|
2338
|
+
readonly primaryKey: "quacod";
|
|
2339
|
+
readonly foreignKeys: {};
|
|
2340
|
+
readonly $type: Qua;
|
|
2341
|
+
readonly $input: QuaInput;
|
|
2342
|
+
};
|
|
2343
|
+
rap: {
|
|
2344
|
+
readonly tableName: "rap";
|
|
2345
|
+
readonly columns: readonly ["rapcod", "sesann", "coddenrap", "typurl", "blecod", "rapnum", "raptom", "rapfac", "rapann", "rapvol", "raptitcou", "raptil", "rapurl", "url2", "url3", "url4", "url2txt", "url3txt", "url4txt", "date_depot", "prix", "rapnuman", "numerobis", "rapsoustit", "rapdatsea", "depot_only", "rapres", "forpubcod"];
|
|
2346
|
+
readonly requiredForInsert: readonly ["rapcod", "sesann", "coddenrap", "typurl", "date_depot"];
|
|
2347
|
+
readonly primaryKey: "rapcod";
|
|
2348
|
+
readonly foreignKeys: {};
|
|
2349
|
+
readonly $type: Rap;
|
|
2350
|
+
readonly $input: RapInput;
|
|
2351
|
+
};
|
|
2352
|
+
raporg: {
|
|
2353
|
+
readonly tableName: "raporg";
|
|
2354
|
+
readonly columns: readonly ["rapcod", "orgcod"];
|
|
2355
|
+
readonly requiredForInsert: readonly ["rapcod", "orgcod"];
|
|
2356
|
+
readonly primaryKey: "rapcod";
|
|
2357
|
+
readonly foreignKeys: {
|
|
2358
|
+
readonly rapcod: {
|
|
2359
|
+
readonly table: "rap";
|
|
2360
|
+
readonly column: "rapcod";
|
|
2361
|
+
readonly $type: Rap;
|
|
2362
|
+
};
|
|
2363
|
+
readonly orgcod: {
|
|
2364
|
+
readonly table: "org";
|
|
2365
|
+
readonly column: "orgcod";
|
|
2366
|
+
readonly $type: Org;
|
|
2367
|
+
};
|
|
2368
|
+
};
|
|
2369
|
+
readonly $type: Raporg;
|
|
2370
|
+
readonly $input: RaporgInput;
|
|
2371
|
+
};
|
|
2372
|
+
rapthe: {
|
|
2373
|
+
readonly tableName: "rapthe";
|
|
2374
|
+
readonly columns: readonly ["rapcod", "thecle"];
|
|
2375
|
+
readonly requiredForInsert: readonly ["rapcod", "thecle"];
|
|
2376
|
+
readonly primaryKey: "rapcod";
|
|
2377
|
+
readonly foreignKeys: {
|
|
2378
|
+
readonly rapcod: {
|
|
2379
|
+
readonly table: "rap";
|
|
2380
|
+
readonly column: "rapcod";
|
|
2381
|
+
readonly $type: Rap;
|
|
2382
|
+
};
|
|
2383
|
+
readonly thecle: {
|
|
2384
|
+
readonly table: "the";
|
|
2385
|
+
readonly column: "thecle";
|
|
2386
|
+
readonly $type: The;
|
|
2387
|
+
};
|
|
2388
|
+
};
|
|
2389
|
+
readonly $type: Rapthe;
|
|
2390
|
+
readonly $input: RaptheInput;
|
|
2391
|
+
};
|
|
2392
|
+
rolsig: {
|
|
2393
|
+
readonly tableName: "rolsig";
|
|
2394
|
+
readonly columns: readonly ["signataire", "rolsiglib"];
|
|
2395
|
+
readonly requiredForInsert: readonly ["signataire", "rolsiglib"];
|
|
2396
|
+
readonly primaryKey: "signataire";
|
|
2397
|
+
readonly foreignKeys: {};
|
|
2398
|
+
readonly $type: Rolsig;
|
|
2399
|
+
readonly $input: RolsigInput;
|
|
2400
|
+
};
|
|
2401
|
+
scr: {
|
|
2402
|
+
readonly tableName: "scr";
|
|
2403
|
+
readonly columns: readonly ["sesann", "scrnum", "code", "scrint", "scrdat", "scrpou", "scrcon", "scrvot", "scrsuf", "scrvotsea", "scrsufsea", "scrpousea", "scrconsea", "scrmaj", "scrmajsea", "soslib", "scrbaspag", "scrdateff", "scrjso"];
|
|
2404
|
+
readonly requiredForInsert: readonly ["sesann", "scrnum"];
|
|
2405
|
+
readonly primaryKey: "sesann";
|
|
2406
|
+
readonly foreignKeys: {};
|
|
2407
|
+
readonly $type: Scr;
|
|
2408
|
+
readonly $input: ScrInput;
|
|
2409
|
+
};
|
|
2410
|
+
ses: {
|
|
2411
|
+
readonly tableName: "ses";
|
|
2412
|
+
readonly columns: readonly ["sesann", "seslib"];
|
|
2413
|
+
readonly requiredForInsert: readonly ["sesann", "seslib"];
|
|
2414
|
+
readonly primaryKey: "sesann";
|
|
2415
|
+
readonly foreignKeys: {};
|
|
2416
|
+
readonly $type: Ses;
|
|
2417
|
+
readonly $input: SesInput;
|
|
2418
|
+
};
|
|
2419
|
+
stavot: {
|
|
2420
|
+
readonly tableName: "stavot";
|
|
2421
|
+
readonly columns: readonly ["stavotidt", "stavotlib"];
|
|
2422
|
+
readonly requiredForInsert: readonly ["stavotidt", "stavotlib"];
|
|
2423
|
+
readonly primaryKey: "stavotidt";
|
|
2424
|
+
readonly foreignKeys: {};
|
|
2425
|
+
readonly $type: Stavot;
|
|
2426
|
+
readonly $input: StavotInput;
|
|
2427
|
+
};
|
|
2428
|
+
texte: {
|
|
2429
|
+
readonly tableName: "texte";
|
|
2430
|
+
readonly columns: readonly ["texcod", "oritxtcod", "typtxtcod", "typurl", "lecassidt", "sesann", "orgcod", "texnum", "texurl", "url2", "url3", "url4", "url2txt", "url3txt", "url4txt", "txtoritxtdat", "prix", "numerobis", "texdatsea", "reserve_comspe", "datrejet_disc_immediate", "texace", "url_cnen"];
|
|
2431
|
+
readonly requiredForInsert: readonly ["texcod", "typtxtcod", "typurl", "lecassidt", "txtoritxtdat"];
|
|
2432
|
+
readonly primaryKey: "texcod";
|
|
2433
|
+
readonly foreignKeys: {};
|
|
2434
|
+
readonly $type: Texte;
|
|
2435
|
+
readonly $input: TexteInput;
|
|
2436
|
+
};
|
|
2437
|
+
texte_ancien: {
|
|
2438
|
+
readonly tableName: "texte_ancien";
|
|
2439
|
+
readonly columns: readonly ["id", "origine", "sesann", "numero", "rectifie", "date_effet", "lecture", "statut", "urgence", "article_type", "type_texte", "libelle", "fichier"];
|
|
2440
|
+
readonly requiredForInsert: readonly ["id", "origine", "sesann", "numero", "rectifie", "urgence"];
|
|
2441
|
+
readonly primaryKey: "id";
|
|
2442
|
+
readonly foreignKeys: {};
|
|
2443
|
+
readonly $type: TexteAncien;
|
|
2444
|
+
readonly $input: TexteAncienInput;
|
|
2445
|
+
};
|
|
2446
|
+
the: {
|
|
2447
|
+
readonly tableName: "the";
|
|
2448
|
+
readonly columns: readonly ["thecle", "thelib", "theali"];
|
|
2449
|
+
readonly requiredForInsert: readonly ["thecle", "thelib"];
|
|
2450
|
+
readonly primaryKey: "thecle";
|
|
2451
|
+
readonly foreignKeys: {};
|
|
2452
|
+
readonly $type: The;
|
|
2453
|
+
readonly $input: TheInput;
|
|
2454
|
+
};
|
|
2455
|
+
titsen: {
|
|
2456
|
+
readonly tableName: "titsen";
|
|
2457
|
+
readonly columns: readonly ["titsencod", "titsenlib"];
|
|
2458
|
+
readonly requiredForInsert: readonly ["titsencod"];
|
|
2459
|
+
readonly primaryKey: "titsencod";
|
|
2460
|
+
readonly foreignKeys: {};
|
|
2461
|
+
readonly $type: Titsen;
|
|
2462
|
+
readonly $input: TitsenInput;
|
|
2463
|
+
};
|
|
2464
|
+
typatt: {
|
|
2465
|
+
readonly tableName: "typatt";
|
|
2466
|
+
readonly columns: readonly ["typattcod", "typattlib"];
|
|
2467
|
+
readonly requiredForInsert: readonly ["typattcod", "typattlib"];
|
|
2468
|
+
readonly primaryKey: "typattcod";
|
|
2469
|
+
readonly foreignKeys: {};
|
|
2470
|
+
readonly $type: Typatt;
|
|
2471
|
+
readonly $input: TypattInput;
|
|
2472
|
+
};
|
|
2473
|
+
typaut: {
|
|
2474
|
+
readonly tableName: "typaut";
|
|
2475
|
+
readonly columns: readonly ["typautcod", "typautlib"];
|
|
2476
|
+
readonly requiredForInsert: readonly ["typautcod", "typautlib"];
|
|
2477
|
+
readonly primaryKey: "typautcod";
|
|
2478
|
+
readonly foreignKeys: {};
|
|
2479
|
+
readonly $type: Typaut;
|
|
2480
|
+
readonly $input: TypautInput;
|
|
2481
|
+
};
|
|
2482
|
+
typdoc: {
|
|
2483
|
+
readonly tableName: "typdoc";
|
|
2484
|
+
readonly columns: readonly ["typdoccod", "typdoclib"];
|
|
2485
|
+
readonly requiredForInsert: readonly ["typdoccod"];
|
|
2486
|
+
readonly primaryKey: "typdoccod";
|
|
2487
|
+
readonly foreignKeys: {};
|
|
2488
|
+
readonly $type: Typdoc;
|
|
2489
|
+
readonly $input: TypdocInput;
|
|
2490
|
+
};
|
|
2491
|
+
typevtsea: {
|
|
2492
|
+
readonly tableName: "typevtsea";
|
|
2493
|
+
readonly columns: readonly ["typevtcod", "typevtlib"];
|
|
2494
|
+
readonly requiredForInsert: readonly ["typevtcod", "typevtlib"];
|
|
2495
|
+
readonly primaryKey: "typevtcod";
|
|
2496
|
+
readonly foreignKeys: {};
|
|
2497
|
+
readonly $type: Typevtsea;
|
|
2498
|
+
readonly $input: TypevtseaInput;
|
|
2499
|
+
};
|
|
2500
|
+
typlec: {
|
|
2501
|
+
readonly tableName: "typlec";
|
|
2502
|
+
readonly columns: readonly ["typleccod", "typleclib", "typlecord"];
|
|
2503
|
+
readonly requiredForInsert: readonly ["typleccod", "typleclib"];
|
|
2504
|
+
readonly primaryKey: "typleccod";
|
|
2505
|
+
readonly foreignKeys: {};
|
|
2506
|
+
readonly $type: Typlec;
|
|
2507
|
+
readonly $input: TyplecInput;
|
|
2508
|
+
};
|
|
2509
|
+
typloi: {
|
|
2510
|
+
readonly tableName: "typloi";
|
|
2511
|
+
readonly columns: readonly ["typloicod", "typloilib", "groupe", "typloiden", "typloigen", "typloitit", "typloidenplu", "typloide", "typloiabr"];
|
|
2512
|
+
readonly requiredForInsert: readonly ["typloicod", "typloilib"];
|
|
2513
|
+
readonly primaryKey: "typloicod";
|
|
2514
|
+
readonly foreignKeys: {};
|
|
2515
|
+
readonly $type: Typloi;
|
|
2516
|
+
readonly $input: TyploiInput;
|
|
2517
|
+
};
|
|
2518
|
+
typorg: {
|
|
2519
|
+
readonly tableName: "typorg";
|
|
2520
|
+
readonly columns: readonly ["typorgcod", "typorglib", "typorgurl", "typorgtitens", "typorgvid", "typorgord"];
|
|
2521
|
+
readonly requiredForInsert: readonly ["typorgcod", "typorglib"];
|
|
2522
|
+
readonly primaryKey: "typorgcod";
|
|
2523
|
+
readonly foreignKeys: {};
|
|
2524
|
+
readonly $type: Typorg;
|
|
2525
|
+
readonly $input: TyporgInput;
|
|
2526
|
+
};
|
|
2527
|
+
typrap: {
|
|
2528
|
+
readonly tableName: "typrap";
|
|
2529
|
+
readonly columns: readonly ["typraprap", "typraplib", "typrapind", "typraplibplu", "typrapurl", "catrapcod", "typraprep", "typrapnot", "typrapses"];
|
|
2530
|
+
readonly requiredForInsert: readonly ["typraprap", "typraplib", "typrapind"];
|
|
2531
|
+
readonly primaryKey: "typraprap";
|
|
2532
|
+
readonly foreignKeys: {};
|
|
2533
|
+
readonly $type: Typrap;
|
|
2534
|
+
readonly $input: TyprapInput;
|
|
2535
|
+
};
|
|
2536
|
+
typtxt: {
|
|
2537
|
+
readonly tableName: "typtxt";
|
|
2538
|
+
readonly columns: readonly ["typtxtcod", "typtxtlib"];
|
|
2539
|
+
readonly requiredForInsert: readonly ["typtxtcod", "typtxtlib"];
|
|
2540
|
+
readonly primaryKey: "typtxtcod";
|
|
2541
|
+
readonly foreignKeys: {};
|
|
2542
|
+
readonly $type: Typtxt;
|
|
2543
|
+
readonly $input: TyptxtInput;
|
|
2544
|
+
};
|
|
2545
|
+
typurl: {
|
|
2546
|
+
readonly tableName: "typurl";
|
|
2547
|
+
readonly columns: readonly ["typurl", "libtypurl"];
|
|
2548
|
+
readonly requiredForInsert: readonly ["typurl", "libtypurl"];
|
|
2549
|
+
readonly primaryKey: "typurl";
|
|
2550
|
+
readonly foreignKeys: {};
|
|
2551
|
+
readonly $type: Typurl;
|
|
2552
|
+
readonly $input: TypurlInput;
|
|
2553
|
+
};
|
|
2554
|
+
votsen: {
|
|
2555
|
+
readonly tableName: "votsen";
|
|
2556
|
+
readonly columns: readonly ["sesann", "scrnum", "senmat", "posvotcod", "titsencod", "stavotidt", "senmatdel", "votsenmar"];
|
|
2557
|
+
readonly requiredForInsert: readonly ["sesann", "scrnum", "senmat", "titsencod", "stavotidt"];
|
|
2558
|
+
readonly primaryKey: "sesann";
|
|
2559
|
+
readonly foreignKeys: {};
|
|
2560
|
+
readonly $type: Votsen;
|
|
2561
|
+
readonly $input: VotsenInput;
|
|
2562
|
+
};
|
|
2563
|
+
};
|