@tricoteuses/senat 3.1.17 → 3.1.19
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/src/config.d.ts +0 -22
- package/lib/src/config.js +7 -17
- package/lib/src/conversion_textes.js +1 -5
- package/lib/src/databases.d.ts +2 -0
- package/lib/src/databases.js +26 -0
- package/lib/src/datasets.d.ts +0 -4
- package/lib/src/datasets.js +2 -16
- package/lib/src/git.d.ts +0 -1
- package/lib/src/git.js +11 -45
- package/lib/src/loaders.d.ts +12 -12
- package/lib/src/loaders.js +8 -14
- package/lib/src/model/agenda.d.ts +1 -1
- package/lib/src/model/agenda.js +3 -3
- package/lib/src/model/ameli.d.ts +52 -64
- package/lib/src/model/ameli.js +145 -147
- package/lib/src/model/commission.d.ts +4 -5
- package/lib/src/model/commission.js +6 -6
- package/lib/src/model/debats.d.ts +66 -38
- package/lib/src/model/debats.js +93 -110
- package/lib/src/model/documents.d.ts +12 -32
- package/lib/src/model/documents.js +130 -171
- package/lib/src/model/dosleg.d.ts +5 -142
- package/lib/src/model/dosleg.js +156 -298
- package/lib/src/model/index.d.ts +7 -7
- package/lib/src/model/index.js +7 -7
- package/lib/src/model/questions.d.ts +45 -54
- package/lib/src/model/questions.js +87 -89
- package/lib/src/model/scrutins.d.ts +13 -48
- package/lib/src/model/scrutins.js +111 -118
- package/lib/src/model/seance.d.ts +1 -1
- package/lib/src/model/seance.js +7 -7
- package/lib/src/model/sens.d.ts +179 -109
- package/lib/src/model/sens.js +484 -384
- package/lib/src/model/util.d.ts +8 -0
- package/lib/src/model/util.js +23 -0
- package/lib/src/raw_types/ameli.d.ts +800 -1648
- package/lib/src/raw_types/ameli.js +5 -1074
- package/lib/src/raw_types/debats.d.ts +180 -353
- package/lib/src/raw_types/debats.js +5 -266
- package/lib/src/raw_types/dosleg.d.ts +1523 -2858
- package/lib/src/raw_types/dosleg.js +5 -2005
- package/lib/src/raw_types/questions.d.ts +395 -671
- package/lib/src/raw_types/questions.js +5 -493
- package/lib/src/raw_types/senat.d.ts +11372 -0
- package/lib/src/raw_types/senat.js +5 -0
- package/lib/src/raw_types/sens.d.ts +8148 -7743
- package/lib/src/raw_types/sens.js +5 -4691
- package/lib/src/raw_types_schemats/ameli.d.ts +2 -4
- package/lib/src/raw_types_schemats/debats.d.ts +2 -2
- package/lib/src/raw_types_schemats/dosleg.d.ts +2 -2
- package/lib/src/raw_types_schemats/questions.d.ts +2 -2
- package/lib/src/raw_types_schemats/sens.d.ts +4235 -29
- package/lib/src/rich_types/dosleg.js +1 -1
- package/lib/src/scripts/test_iter_load.d.ts +1 -0
- package/lib/src/scripts/test_iter_load.js +12 -0
- package/lib/src/server/dosleg.js +20 -0
- package/lib/src/types/ameli.d.ts +4 -4
- package/lib/src/types/dosleg.d.ts +39 -39
- package/lib/src/types/questions.d.ts +2 -2
- package/lib/src/types/sens.d.ts +2 -0
- package/lib/src/types/texte.d.ts +2 -2
- package/lib/src/utils/reunion_odj_building.js +27 -11
- package/package.json +1 -1
- package/lib/src/databases_postgres.d.ts +0 -4
- package/lib/src/databases_postgres.js +0 -23
- package/lib/src/scripts/debug_dosleg_query.d.ts +0 -6
- package/lib/src/scripts/debug_dosleg_query.js +0 -50
|
@@ -1,1762 +1,914 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
/** Types de session */
|
|
11
|
-
export interface TypsesInitializer {
|
|
12
|
-
/** Identifiant */
|
|
13
|
-
id: TypsesId;
|
|
14
|
-
/** Libelle */
|
|
15
|
-
lib?: string | null;
|
|
16
|
-
}
|
|
17
|
-
/** Types de session */
|
|
18
|
-
export interface TypsesMutator {
|
|
19
|
-
/** Identifiant */
|
|
20
|
-
id?: TypsesId;
|
|
21
|
-
/** Libelle */
|
|
22
|
-
lib?: string | null;
|
|
23
|
-
}
|
|
24
|
-
export type SaisenId = SaiId;
|
|
25
|
-
export type SaisenSenid = EntId;
|
|
26
|
-
/** Rapporteur(s) */
|
|
27
|
-
export interface Saisen {
|
|
28
|
-
/** Identifiant */
|
|
29
|
-
id: SaiId;
|
|
30
|
-
/** Identifiant du senateur */
|
|
31
|
-
senid: EntId;
|
|
32
|
-
/** Ordre */
|
|
33
|
-
ord: string;
|
|
34
|
-
}
|
|
35
|
-
/** Rapporteur(s) */
|
|
36
|
-
export interface SaisenInitializer {
|
|
37
|
-
/** Identifiant */
|
|
38
|
-
id: SaiId;
|
|
39
|
-
/** Identifiant du senateur */
|
|
40
|
-
senid: EntId;
|
|
1
|
+
/**
|
|
2
|
+
* This file was generated by kysely-codegen.
|
|
3
|
+
* Please do not edit it manually.
|
|
4
|
+
*/
|
|
5
|
+
import type { ColumnType } from "kysely";
|
|
6
|
+
export type Generated<T> = T extends ColumnType<infer S, infer I, infer U> ? ColumnType<S, I | undefined, U> : ColumnType<T, T | undefined, T>;
|
|
7
|
+
export type Int8 = ColumnType<string, bigint | number | string, bigint | number | string>;
|
|
8
|
+
export type Timestamp = ColumnType<Date, Date | string, Date | string>;
|
|
9
|
+
export interface Amd {
|
|
41
10
|
/**
|
|
42
|
-
*
|
|
43
|
-
|
|
11
|
+
* Amendement depose avec l'accord du gouvernement
|
|
12
|
+
*/
|
|
13
|
+
accgou: Generated<string | null>;
|
|
14
|
+
/**
|
|
15
|
+
* Numero du premier alinea modifie par l'amendement
|
|
16
|
+
*/
|
|
17
|
+
alinea: number | null;
|
|
18
|
+
/**
|
|
19
|
+
* Identifiant de l'amendement pere pour les sous-amendements
|
|
20
|
+
*/
|
|
21
|
+
amdperid: number | null;
|
|
22
|
+
/**
|
|
23
|
+
* Indication de la mention -Et plusieurs de ses collegues-
|
|
24
|
+
*/
|
|
25
|
+
autext: Generated<string>;
|
|
26
|
+
/**
|
|
27
|
+
* Identifiant de l'avis de la commission
|
|
28
|
+
*/
|
|
29
|
+
avcid: string | null;
|
|
30
|
+
/**
|
|
31
|
+
* Identifiant de l'avis du gouvernement
|
|
32
|
+
*/
|
|
33
|
+
avgid: string | null;
|
|
34
|
+
/**
|
|
35
|
+
* Indication de la mendion -Et plusieurs de ses collegues- (uniquement pour les amendements de commission)
|
|
36
|
+
*/
|
|
37
|
+
colleg: Generated<string>;
|
|
38
|
+
/**
|
|
39
|
+
* Date de depot de l'amendement
|
|
40
|
+
*/
|
|
41
|
+
datdep: Timestamp | null;
|
|
42
|
+
/**
|
|
43
|
+
* Dispositif de l'amendement
|
|
44
|
+
*/
|
|
45
|
+
dis: string | null;
|
|
46
|
+
/**
|
|
47
|
+
* Identifiant d'amendements en discussion commune
|
|
48
|
+
*/
|
|
49
|
+
discomid: number | null;
|
|
50
|
+
/**
|
|
51
|
+
* Identifiant de l'etat de l'amendement
|
|
52
|
+
*/
|
|
53
|
+
etaid: number;
|
|
54
|
+
/**
|
|
55
|
+
* Identifiant
|
|
56
|
+
*/
|
|
57
|
+
id: number;
|
|
58
|
+
/**
|
|
59
|
+
* Identifiant d'amendements identiques
|
|
60
|
+
*/
|
|
61
|
+
ideid: number | null;
|
|
62
|
+
/**
|
|
63
|
+
* Identifiant du type d'irrecevabilite
|
|
64
|
+
*/
|
|
65
|
+
irrid: number | null;
|
|
66
|
+
/**
|
|
67
|
+
* 'I' si Irrecevable LO-111-3 par la commission des affaires sociales, 'R' si recevable, null si non instruit
|
|
68
|
+
*/
|
|
69
|
+
irrlo1113valid: Generated<string | null>;
|
|
70
|
+
/**
|
|
71
|
+
* Identité de l'entité qui a saisi l'irrecevabilité
|
|
72
|
+
*/
|
|
73
|
+
irrsaisiepar: number | null;
|
|
74
|
+
/**
|
|
75
|
+
* Libelle complementaire (type d'appartenance au groupe)
|
|
76
|
+
*/
|
|
77
|
+
libgrp: string | null;
|
|
78
|
+
/**
|
|
79
|
+
* Observations ou commentaires sur l'amendement (2/2)
|
|
80
|
+
*/
|
|
81
|
+
mot: string | null;
|
|
82
|
+
/**
|
|
83
|
+
* Identifiant de la motion
|
|
84
|
+
*/
|
|
85
|
+
motid: number | null;
|
|
86
|
+
/**
|
|
87
|
+
* Endroit ou de la motion qui sera examinee. M pour le derouleur de la motion. G pour la discussion generale
|
|
88
|
+
*/
|
|
89
|
+
motposexa: Generated<string>;
|
|
90
|
+
/**
|
|
91
|
+
* Identifiant de l'entite au nom de laquelle est depose l'amendement
|
|
92
|
+
*/
|
|
93
|
+
nomentid: number;
|
|
94
|
+
/**
|
|
95
|
+
* Numero de l'amendement (avec prefixe)
|
|
44
96
|
*/
|
|
45
|
-
ord?: string;
|
|
46
|
-
}
|
|
47
|
-
/** Rapporteur(s) */
|
|
48
|
-
export interface SaisenMutator {
|
|
49
|
-
/** Identifiant */
|
|
50
|
-
id?: SaiId;
|
|
51
|
-
/** Identifiant du senateur */
|
|
52
|
-
senid?: EntId;
|
|
53
|
-
/** Ordre */
|
|
54
|
-
ord?: string;
|
|
55
|
-
}
|
|
56
|
-
export type SeaId = number;
|
|
57
|
-
/** Inscription des textes en seance publique */
|
|
58
|
-
export interface Sea {
|
|
59
|
-
/** Identifiant */
|
|
60
|
-
id: SeaId;
|
|
61
|
-
/** Identifiant de la session */
|
|
62
|
-
sesid: SesId;
|
|
63
|
-
/** Date de la seance */
|
|
64
|
-
dat: Date | null;
|
|
65
|
-
/** Numero de la seance */
|
|
66
97
|
num: string | null;
|
|
98
|
+
/**
|
|
99
|
+
* Numero absolu de l'amendement diffuse (en chiffre)
|
|
100
|
+
*/
|
|
101
|
+
numabs: Int8 | null;
|
|
102
|
+
/**
|
|
103
|
+
* Objet de l'amendement
|
|
104
|
+
*/
|
|
105
|
+
obj: string | null;
|
|
106
|
+
/**
|
|
107
|
+
* Observations ou commentaires sur l'amendement (1/2)
|
|
108
|
+
*/
|
|
109
|
+
obs: string | null;
|
|
110
|
+
/**
|
|
111
|
+
* Identifiant de l'orateur contre (motion)
|
|
112
|
+
*/
|
|
113
|
+
ocmid: number | null;
|
|
114
|
+
/**
|
|
115
|
+
* Identifiant de l'orateur pour (motion)
|
|
116
|
+
*/
|
|
117
|
+
opmid: number | null;
|
|
118
|
+
/**
|
|
119
|
+
* Position au sein de l'article
|
|
120
|
+
*/
|
|
121
|
+
ord: Int8 | null;
|
|
122
|
+
/**
|
|
123
|
+
* Niveau de rectification
|
|
124
|
+
*/
|
|
125
|
+
rev: Generated<Int8>;
|
|
126
|
+
/**
|
|
127
|
+
* Identifiant du sort de l'amendement
|
|
128
|
+
*/
|
|
129
|
+
sorid: string | null;
|
|
130
|
+
/**
|
|
131
|
+
* Identifiant de la subdivision amendee
|
|
132
|
+
*/
|
|
133
|
+
subid: number | null;
|
|
134
|
+
/**
|
|
135
|
+
* Identification de la subdivision de discussion
|
|
136
|
+
*/
|
|
137
|
+
subidder: number | null;
|
|
138
|
+
/**
|
|
139
|
+
* Identification des amendements portant sur article additionnel (si different de 0)
|
|
140
|
+
*/
|
|
141
|
+
subpos: Generated<Int8 | null>;
|
|
142
|
+
/**
|
|
143
|
+
* Identifiant du texte amende
|
|
144
|
+
*/
|
|
145
|
+
txtid: number;
|
|
146
|
+
/**
|
|
147
|
+
* Type d'amendement
|
|
148
|
+
*/
|
|
149
|
+
typ: Generated<string>;
|
|
150
|
+
/**
|
|
151
|
+
* Identifiant du type de rectification
|
|
152
|
+
*/
|
|
153
|
+
typrectid: Generated<number | null>;
|
|
67
154
|
}
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
/**
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
155
|
+
export interface Amdsen {
|
|
156
|
+
/**
|
|
157
|
+
* Identifiant
|
|
158
|
+
*/
|
|
159
|
+
amdid: number;
|
|
160
|
+
grpid: number | null;
|
|
161
|
+
/**
|
|
162
|
+
* Indication de senateurs homonymes
|
|
163
|
+
*/
|
|
164
|
+
hom: Generated<string | null>;
|
|
165
|
+
/**
|
|
166
|
+
* Nom usuel
|
|
167
|
+
*/
|
|
168
|
+
nomuse: string | null;
|
|
169
|
+
/**
|
|
170
|
+
* Prenom usuel
|
|
171
|
+
*/
|
|
172
|
+
prenomuse: string | null;
|
|
173
|
+
/**
|
|
174
|
+
* Qualite
|
|
175
|
+
*/
|
|
176
|
+
qua: string | null;
|
|
177
|
+
/**
|
|
178
|
+
* Rang dans l'ordre des signataires
|
|
179
|
+
*/
|
|
180
|
+
rng: Generated<Int8 | null>;
|
|
181
|
+
/**
|
|
182
|
+
* Identifiant du signataire
|
|
183
|
+
*/
|
|
184
|
+
senid: number;
|
|
89
185
|
}
|
|
90
|
-
export type AvicomId = string;
|
|
91
|
-
/** Avis de la commission */
|
|
92
186
|
export interface Avicom {
|
|
93
|
-
/**
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
lib: string;
|
|
97
|
-
/** Code */
|
|
187
|
+
/**
|
|
188
|
+
* Code
|
|
189
|
+
*/
|
|
98
190
|
cod: string;
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
191
|
+
/**
|
|
192
|
+
* Identifiant
|
|
193
|
+
*/
|
|
194
|
+
id: string;
|
|
195
|
+
/**
|
|
196
|
+
* Libelle
|
|
197
|
+
*/
|
|
105
198
|
lib: string;
|
|
106
|
-
/** Code */
|
|
107
|
-
cod: string;
|
|
108
199
|
}
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
200
|
+
export interface Avigvt {
|
|
201
|
+
/**
|
|
202
|
+
* Code
|
|
203
|
+
*/
|
|
204
|
+
cod: string;
|
|
205
|
+
/**
|
|
206
|
+
* Identifiant
|
|
207
|
+
*/
|
|
208
|
+
id: string;
|
|
209
|
+
/**
|
|
210
|
+
* Libelle
|
|
211
|
+
*/
|
|
212
|
+
lib: string;
|
|
117
213
|
}
|
|
118
|
-
export
|
|
119
|
-
/**
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
/**
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
/**
|
|
128
|
-
|
|
214
|
+
export interface Cab {
|
|
215
|
+
/**
|
|
216
|
+
* Code
|
|
217
|
+
*/
|
|
218
|
+
codint: string;
|
|
219
|
+
/**
|
|
220
|
+
* Identifiant
|
|
221
|
+
*/
|
|
222
|
+
entid: number;
|
|
223
|
+
/**
|
|
224
|
+
* Libelle
|
|
225
|
+
*/
|
|
226
|
+
lil: string | null;
|
|
129
227
|
}
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
228
|
+
export interface ComAmeli {
|
|
229
|
+
/**
|
|
230
|
+
* Code
|
|
231
|
+
*/
|
|
232
|
+
cod: string;
|
|
233
|
+
/**
|
|
234
|
+
* Code interne
|
|
235
|
+
*/
|
|
236
|
+
codint: string;
|
|
237
|
+
/**
|
|
238
|
+
* Identifiant
|
|
239
|
+
*/
|
|
240
|
+
entid: number;
|
|
241
|
+
/**
|
|
242
|
+
* Libelle
|
|
243
|
+
*/
|
|
244
|
+
lib: string;
|
|
245
|
+
/**
|
|
246
|
+
* Libelle long
|
|
247
|
+
*/
|
|
139
248
|
lil: string;
|
|
249
|
+
/**
|
|
250
|
+
* Indication si commission speciale
|
|
251
|
+
*/
|
|
252
|
+
spc: Generated<string>;
|
|
253
|
+
/**
|
|
254
|
+
* Ordre de presentation dans les listes
|
|
255
|
+
*/
|
|
256
|
+
tri: Int8 | null;
|
|
140
257
|
}
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
258
|
+
export interface Ent {
|
|
259
|
+
/**
|
|
260
|
+
* Actif ou non
|
|
261
|
+
*/
|
|
262
|
+
act: Generated<string | null>;
|
|
263
|
+
/**
|
|
264
|
+
* Identifiant
|
|
265
|
+
*/
|
|
266
|
+
id: number;
|
|
267
|
+
/**
|
|
268
|
+
* Type
|
|
269
|
+
*/
|
|
270
|
+
typ: string;
|
|
151
271
|
}
|
|
152
|
-
export
|
|
153
|
-
/**
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
id:
|
|
157
|
-
/**
|
|
272
|
+
export interface Etatxt {
|
|
273
|
+
/**
|
|
274
|
+
* Identifiant
|
|
275
|
+
*/
|
|
276
|
+
id: Int8;
|
|
277
|
+
/**
|
|
278
|
+
* Libelle
|
|
279
|
+
*/
|
|
158
280
|
lib: string;
|
|
159
|
-
/**
|
|
281
|
+
/**
|
|
282
|
+
* Libelle court
|
|
283
|
+
*/
|
|
160
284
|
lic: string;
|
|
161
|
-
|
|
162
|
-
sesid: SesId;
|
|
285
|
+
txttyp: Generated<string>;
|
|
163
286
|
}
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
287
|
+
export interface Fbu {
|
|
288
|
+
/**
|
|
289
|
+
* Identifiant
|
|
290
|
+
*/
|
|
291
|
+
id: number;
|
|
292
|
+
/**
|
|
293
|
+
* Libelle
|
|
294
|
+
*/
|
|
169
295
|
lib: string;
|
|
170
|
-
/**
|
|
296
|
+
/**
|
|
297
|
+
* Libelle court
|
|
298
|
+
*/
|
|
171
299
|
lic: string;
|
|
172
|
-
/**
|
|
173
|
-
|
|
300
|
+
/**
|
|
301
|
+
* Session de depot
|
|
302
|
+
*/
|
|
303
|
+
sesid: number;
|
|
304
|
+
}
|
|
305
|
+
export interface GrppolAmeli {
|
|
306
|
+
/**
|
|
307
|
+
* Code
|
|
308
|
+
*/
|
|
309
|
+
cod: string;
|
|
310
|
+
/**
|
|
311
|
+
* Code interne
|
|
312
|
+
*/
|
|
313
|
+
codint: string;
|
|
314
|
+
/**
|
|
315
|
+
* Identifiant
|
|
316
|
+
*/
|
|
317
|
+
entid: number;
|
|
318
|
+
/**
|
|
319
|
+
* Libelle courant
|
|
320
|
+
*/
|
|
321
|
+
libcou: string;
|
|
322
|
+
/**
|
|
323
|
+
* Libelle long courant
|
|
324
|
+
*/
|
|
325
|
+
lilcou: string;
|
|
326
|
+
/**
|
|
327
|
+
* Ordre de presentation dans les listes
|
|
328
|
+
*/
|
|
329
|
+
tri: Int8 | null;
|
|
330
|
+
}
|
|
331
|
+
export interface Gvt {
|
|
332
|
+
/**
|
|
333
|
+
* Identifiant
|
|
334
|
+
*/
|
|
335
|
+
entid: number;
|
|
336
|
+
/**
|
|
337
|
+
* Nom
|
|
338
|
+
*/
|
|
339
|
+
nom: string;
|
|
340
|
+
/**
|
|
341
|
+
* Prenom
|
|
342
|
+
*/
|
|
343
|
+
pre: string;
|
|
344
|
+
/**
|
|
345
|
+
* Qualite
|
|
346
|
+
*/
|
|
347
|
+
qua: string;
|
|
348
|
+
/**
|
|
349
|
+
* Titre
|
|
350
|
+
*/
|
|
351
|
+
tit: string;
|
|
174
352
|
}
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
353
|
+
export interface Intora {
|
|
354
|
+
/**
|
|
355
|
+
* Identifiant de l'orateur
|
|
356
|
+
*/
|
|
357
|
+
entid: number;
|
|
358
|
+
/**
|
|
359
|
+
* Identifiant de l'orateur (au nom de)
|
|
360
|
+
*/
|
|
361
|
+
entid2: number | null;
|
|
362
|
+
/**
|
|
363
|
+
* Identifiant
|
|
364
|
+
*/
|
|
365
|
+
id: number;
|
|
366
|
+
/**
|
|
367
|
+
* Moment de l'intervention
|
|
368
|
+
*/
|
|
369
|
+
mom: string;
|
|
370
|
+
/**
|
|
371
|
+
* Numero d'ordre
|
|
372
|
+
*/
|
|
373
|
+
ord: Int8;
|
|
374
|
+
/**
|
|
375
|
+
* Code du role de l'orateur
|
|
376
|
+
*/
|
|
377
|
+
rolcod: Generated<string>;
|
|
378
|
+
/**
|
|
379
|
+
* Identifiant de la seance
|
|
380
|
+
*/
|
|
381
|
+
seaid: number | null;
|
|
382
|
+
/**
|
|
383
|
+
* Identifiant de la subdivision sur laquelle porte la prise de parole
|
|
384
|
+
*/
|
|
385
|
+
subid: number | null;
|
|
386
|
+
/**
|
|
387
|
+
* Duree de l'intevrention
|
|
388
|
+
*/
|
|
389
|
+
temps: Generated<number>;
|
|
390
|
+
/**
|
|
391
|
+
* Identifiant du texte
|
|
392
|
+
*/
|
|
393
|
+
txtid: number;
|
|
394
|
+
}
|
|
395
|
+
export interface Irr {
|
|
396
|
+
/**
|
|
397
|
+
* Article
|
|
398
|
+
*/
|
|
399
|
+
art: string | null;
|
|
400
|
+
/**
|
|
401
|
+
* Code
|
|
402
|
+
*/
|
|
403
|
+
cod: string;
|
|
404
|
+
/**
|
|
405
|
+
* Identifiant
|
|
406
|
+
*/
|
|
407
|
+
id: number;
|
|
408
|
+
/**
|
|
409
|
+
* Libelle
|
|
410
|
+
*/
|
|
411
|
+
lib: string;
|
|
412
|
+
/**
|
|
413
|
+
* Libelle
|
|
414
|
+
*/
|
|
415
|
+
libirr: string | null;
|
|
416
|
+
/**
|
|
417
|
+
* Libelle long
|
|
418
|
+
*/
|
|
419
|
+
lilmin: string | null;
|
|
420
|
+
par: string | null;
|
|
185
421
|
}
|
|
186
|
-
export type LecAmeliId = number;
|
|
187
|
-
/** Niveau de lecture des textes */
|
|
188
422
|
export interface LecAmeli {
|
|
189
|
-
/**
|
|
190
|
-
|
|
191
|
-
|
|
423
|
+
/**
|
|
424
|
+
* Identifiant
|
|
425
|
+
*/
|
|
426
|
+
id: number;
|
|
427
|
+
/**
|
|
428
|
+
* Lecture precedente
|
|
429
|
+
*/
|
|
430
|
+
lecpreid: number | null;
|
|
431
|
+
/**
|
|
432
|
+
* Libelle
|
|
433
|
+
*/
|
|
192
434
|
lib: string;
|
|
193
|
-
/** Lecture precedente */
|
|
194
|
-
lecpreid: LecAmeliId | null;
|
|
195
435
|
}
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
436
|
+
export interface Mot {
|
|
437
|
+
/**
|
|
438
|
+
* Code
|
|
439
|
+
*/
|
|
440
|
+
cod: string | null;
|
|
441
|
+
/**
|
|
442
|
+
* Identifiant
|
|
443
|
+
*/
|
|
444
|
+
id: number;
|
|
445
|
+
/**
|
|
446
|
+
* Intitule
|
|
447
|
+
*/
|
|
448
|
+
int: string | null;
|
|
449
|
+
/**
|
|
450
|
+
* Libelle
|
|
451
|
+
*/
|
|
201
452
|
lib: string;
|
|
202
|
-
/**
|
|
203
|
-
|
|
453
|
+
/**
|
|
454
|
+
* Libelle pour le nota bene
|
|
455
|
+
*/
|
|
456
|
+
libnbe: string | null;
|
|
457
|
+
/**
|
|
458
|
+
* Ordre de presentation
|
|
459
|
+
*/
|
|
460
|
+
ord: Int8;
|
|
204
461
|
}
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
462
|
+
export interface Nat {
|
|
463
|
+
/**
|
|
464
|
+
* Identifiant
|
|
465
|
+
*/
|
|
466
|
+
id: number;
|
|
467
|
+
/**
|
|
468
|
+
* Libelle
|
|
469
|
+
*/
|
|
470
|
+
lib: string;
|
|
471
|
+
libcourt: string | null;
|
|
213
472
|
}
|
|
214
|
-
export
|
|
215
|
-
/**
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
/**
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
/**
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
/** Identifiant de l'entite au nom de laquelle est depose l'amendement */
|
|
228
|
-
nomentid: EntId;
|
|
229
|
-
/** Identifiant du sort de l'amendement */
|
|
230
|
-
sorid: SorId | null;
|
|
231
|
-
/** Identifiant de l'avis de la commission */
|
|
232
|
-
avcid: AvicomId | null;
|
|
233
|
-
/** Identifiant de l'avis du gouvernement */
|
|
234
|
-
avgid: AvigvtId | null;
|
|
235
|
-
/** Identifiant du type d'irrecevabilite */
|
|
236
|
-
irrid: IrrId | null;
|
|
237
|
-
/** Identifiant du texte amende */
|
|
238
|
-
txtid: TxtAmeliId;
|
|
239
|
-
/** Identifiant de l'orateur pour (motion) */
|
|
240
|
-
opmid: EntId | null;
|
|
241
|
-
/** Identifiant de l'orateur contre (motion) */
|
|
242
|
-
ocmid: EntId | null;
|
|
243
|
-
/** Identifiant d'amendements identiques */
|
|
244
|
-
ideid: number | null;
|
|
245
|
-
/** Identifiant d'amendements en discussion commune */
|
|
246
|
-
discomid: number | null;
|
|
247
|
-
/** Numero de l'amendement (avec prefixe) */
|
|
248
|
-
num: string | null;
|
|
249
|
-
/** Niveau de rectification */
|
|
250
|
-
rev: string;
|
|
251
|
-
/** Type d'amendement */
|
|
252
|
-
typ: string;
|
|
253
|
-
/** Dispositif de l'amendement */
|
|
254
|
-
dis: string | null;
|
|
255
|
-
/** Objet de l'amendement */
|
|
256
|
-
obj: string | null;
|
|
257
|
-
/** Date de depot de l'amendement */
|
|
258
|
-
datdep: Date | null;
|
|
259
|
-
/** Observations ou commentaires sur l'amendement (1/2) */
|
|
260
|
-
obs: string | null;
|
|
261
|
-
/** Position au sein de l'article */
|
|
262
|
-
ord: string | null;
|
|
263
|
-
/** Indication de la mention -Et plusieurs de ses collegues- */
|
|
264
|
-
autext: string;
|
|
265
|
-
/** Identification des amendements portant sur article additionnel (si different de 0) */
|
|
266
|
-
subpos: string | null;
|
|
267
|
-
/** Observations ou commentaires sur l'amendement (2/2) */
|
|
268
|
-
mot: string | null;
|
|
269
|
-
/** Numero absolu de l'amendement diffuse (en chiffre) */
|
|
270
|
-
numabs: string | null;
|
|
271
|
-
/** Identification de la subdivision de discussion */
|
|
272
|
-
subidder: SubId | null;
|
|
273
|
-
/** Libelle complementaire (type d'appartenance au groupe) */
|
|
274
|
-
libgrp: string | null;
|
|
275
|
-
/** Numero du premier alinea modifie par l'amendement */
|
|
276
|
-
alinea: number | null;
|
|
277
|
-
/** Amendement depose avec l'accord du gouvernement */
|
|
278
|
-
accgou: string | null;
|
|
279
|
-
/** Indication de la mendion -Et plusieurs de ses collegues- (uniquement pour les amendements de commission) */
|
|
280
|
-
colleg: string;
|
|
281
|
-
/** Identifiant du type de rectification */
|
|
282
|
-
typrectid: TyprectId | null;
|
|
283
|
-
/** Endroit ou de la motion qui sera examinee. M pour le derouleur de la motion. G pour la discussion generale */
|
|
284
|
-
motposexa: string;
|
|
285
|
-
/** 'I' si Irrecevable LO-111-3 par la commission des affaires sociales, 'R' si recevable, null si non instruit */
|
|
286
|
-
irrlo1113valid: string | null;
|
|
287
|
-
/** Identité de l'entité qui a saisi l'irrecevabilité */
|
|
288
|
-
irrsaisiepar: EntId | null;
|
|
289
|
-
/** Motivation de la commission asoc */
|
|
290
|
-
motivasoc: string | null;
|
|
473
|
+
export interface Orarol {
|
|
474
|
+
/**
|
|
475
|
+
* Code
|
|
476
|
+
*/
|
|
477
|
+
cod: string;
|
|
478
|
+
/**
|
|
479
|
+
* Indique si le role doit etre complete par le libelle de l'entite d'appartenance de l'orateur
|
|
480
|
+
*/
|
|
481
|
+
entreq: Generated<string>;
|
|
482
|
+
/**
|
|
483
|
+
* Libelle
|
|
484
|
+
*/
|
|
485
|
+
lib: string | null;
|
|
291
486
|
}
|
|
292
|
-
|
|
293
|
-
export interface AmdInitializer {
|
|
294
|
-
/** Identifiant */
|
|
295
|
-
id: AmdId;
|
|
296
|
-
/** Identifiant de la subdivision amendee */
|
|
297
|
-
subid?: SubId | null;
|
|
298
|
-
/** Identifiant de l'amendement pere pour les sous-amendements */
|
|
299
|
-
amdperid?: AmdId | null;
|
|
300
|
-
/** Identifiant de la motion */
|
|
301
|
-
motid?: MotId | null;
|
|
302
|
-
/** Identifiant de l'etat de l'amendement */
|
|
303
|
-
etaid: number;
|
|
304
|
-
/** Identifiant de l'entite au nom de laquelle est depose l'amendement */
|
|
305
|
-
nomentid: EntId;
|
|
306
|
-
/** Identifiant du sort de l'amendement */
|
|
307
|
-
sorid?: SorId | null;
|
|
308
|
-
/** Identifiant de l'avis de la commission */
|
|
309
|
-
avcid?: AvicomId | null;
|
|
310
|
-
/** Identifiant de l'avis du gouvernement */
|
|
311
|
-
avgid?: AvigvtId | null;
|
|
312
|
-
/** Identifiant du type d'irrecevabilite */
|
|
313
|
-
irrid?: IrrId | null;
|
|
314
|
-
/** Identifiant du texte amende */
|
|
315
|
-
txtid: TxtAmeliId;
|
|
316
|
-
/** Identifiant de l'orateur pour (motion) */
|
|
317
|
-
opmid?: EntId | null;
|
|
318
|
-
/** Identifiant de l'orateur contre (motion) */
|
|
319
|
-
ocmid?: EntId | null;
|
|
320
|
-
/** Identifiant d'amendements identiques */
|
|
321
|
-
ideid?: number | null;
|
|
322
|
-
/** Identifiant d'amendements en discussion commune */
|
|
323
|
-
discomid?: number | null;
|
|
324
|
-
/** Numero de l'amendement (avec prefixe) */
|
|
325
|
-
num?: string | null;
|
|
487
|
+
export interface Sai {
|
|
326
488
|
/**
|
|
327
|
-
*
|
|
328
|
-
|
|
489
|
+
* Identifiant de la commission
|
|
490
|
+
*/
|
|
491
|
+
comid: number;
|
|
492
|
+
/**
|
|
493
|
+
* Identifiant
|
|
494
|
+
*/
|
|
495
|
+
id: number;
|
|
496
|
+
/**
|
|
497
|
+
* Indique si la commission saisie pour avis est déléguée au fond
|
|
498
|
+
*/
|
|
499
|
+
isdelegfond: Generated<string>;
|
|
500
|
+
/**
|
|
501
|
+
* Numero de rapport (ou d'avis)
|
|
502
|
+
*/
|
|
503
|
+
numrap: Int8 | null;
|
|
504
|
+
/**
|
|
505
|
+
* Type de saisine
|
|
506
|
+
*/
|
|
507
|
+
saityp: string;
|
|
508
|
+
/**
|
|
509
|
+
* Identifiant de la session
|
|
510
|
+
*/
|
|
511
|
+
sesid: number;
|
|
512
|
+
/**
|
|
513
|
+
* Identifiant du texte
|
|
514
|
+
*/
|
|
515
|
+
txtid: number;
|
|
516
|
+
}
|
|
517
|
+
export interface Saisen {
|
|
518
|
+
/**
|
|
519
|
+
* Identifiant
|
|
520
|
+
*/
|
|
521
|
+
id: number;
|
|
522
|
+
/**
|
|
523
|
+
* Ordre
|
|
524
|
+
*/
|
|
525
|
+
ord: Generated<Int8>;
|
|
526
|
+
/**
|
|
527
|
+
* Identifiant du senateur
|
|
528
|
+
*/
|
|
529
|
+
senid: number;
|
|
530
|
+
}
|
|
531
|
+
export interface Sea {
|
|
532
|
+
/**
|
|
533
|
+
* Date de la seance
|
|
534
|
+
*/
|
|
535
|
+
dat: Timestamp | null;
|
|
536
|
+
/**
|
|
537
|
+
* Identifiant
|
|
538
|
+
*/
|
|
539
|
+
id: number;
|
|
540
|
+
/**
|
|
541
|
+
* Numero de la seance
|
|
542
|
+
*/
|
|
543
|
+
num: Int8 | null;
|
|
544
|
+
/**
|
|
545
|
+
* Identifiant de la session
|
|
546
|
+
*/
|
|
547
|
+
sesid: number;
|
|
548
|
+
}
|
|
549
|
+
export interface SenAmeli {
|
|
550
|
+
/**
|
|
551
|
+
* Indication de senateurs apparentes
|
|
552
|
+
*/
|
|
553
|
+
app: Generated<string | null>;
|
|
554
|
+
/**
|
|
555
|
+
* Identifiant de la commission
|
|
556
|
+
*/
|
|
557
|
+
comid: number | null;
|
|
558
|
+
/**
|
|
559
|
+
* Identifiant de la commission speciale
|
|
560
|
+
*/
|
|
561
|
+
comspcid: number | null;
|
|
562
|
+
/**
|
|
563
|
+
* Identifiant
|
|
564
|
+
*/
|
|
565
|
+
entid: number;
|
|
566
|
+
/**
|
|
567
|
+
* Identifiant du groupe
|
|
568
|
+
*/
|
|
569
|
+
grpid: number;
|
|
570
|
+
/**
|
|
571
|
+
* Indication de senateurs homonymes
|
|
572
|
+
*/
|
|
573
|
+
hom: Generated<string | null>;
|
|
574
|
+
/**
|
|
575
|
+
* Matricule
|
|
576
|
+
*/
|
|
577
|
+
mat: string;
|
|
578
|
+
/**
|
|
579
|
+
* Nom technique
|
|
580
|
+
*/
|
|
581
|
+
nomtec: string | null;
|
|
582
|
+
/**
|
|
583
|
+
* Nom usuel
|
|
584
|
+
*/
|
|
585
|
+
nomuse: string;
|
|
586
|
+
/**
|
|
587
|
+
* Nom usuel en minuscule
|
|
588
|
+
*/
|
|
589
|
+
nomusemin: string;
|
|
590
|
+
/**
|
|
591
|
+
* Prenom usuel
|
|
592
|
+
*/
|
|
593
|
+
prenomuse: string;
|
|
594
|
+
/**
|
|
595
|
+
* Qualite
|
|
596
|
+
*/
|
|
597
|
+
qua: string;
|
|
598
|
+
/**
|
|
599
|
+
* Indication de senateurs rattache a un groupe
|
|
329
600
|
*/
|
|
330
|
-
|
|
601
|
+
ratt: Generated<string | null>;
|
|
602
|
+
/**
|
|
603
|
+
* Indication de feminisation des titres
|
|
604
|
+
*/
|
|
605
|
+
senfem: Generated<string | null>;
|
|
606
|
+
}
|
|
607
|
+
export interface Ses {
|
|
608
|
+
/**
|
|
609
|
+
* Annee de session
|
|
610
|
+
*/
|
|
611
|
+
ann: Int8;
|
|
612
|
+
/**
|
|
613
|
+
* Identifiant
|
|
614
|
+
*/
|
|
615
|
+
id: number;
|
|
616
|
+
/**
|
|
617
|
+
* Libelle long
|
|
618
|
+
*/
|
|
619
|
+
lil: string;
|
|
620
|
+
/**
|
|
621
|
+
* Type de session
|
|
622
|
+
*/
|
|
623
|
+
typid: number;
|
|
624
|
+
}
|
|
625
|
+
export interface Sor {
|
|
626
|
+
/**
|
|
627
|
+
* Code
|
|
628
|
+
*/
|
|
629
|
+
cod: string;
|
|
630
|
+
/**
|
|
631
|
+
* Identifiant
|
|
632
|
+
*/
|
|
633
|
+
id: string;
|
|
634
|
+
/**
|
|
635
|
+
* Libelle
|
|
636
|
+
*/
|
|
637
|
+
lib: string;
|
|
638
|
+
/**
|
|
639
|
+
* Type
|
|
640
|
+
*/
|
|
641
|
+
typ: Generated<string>;
|
|
642
|
+
}
|
|
643
|
+
export interface Sub {
|
|
644
|
+
/**
|
|
645
|
+
* Id de la commission pour avis avec délégation au fond
|
|
646
|
+
*/
|
|
647
|
+
comdelid: number | null;
|
|
648
|
+
/**
|
|
649
|
+
* Indicateur de subdivision dupliquee
|
|
650
|
+
*/
|
|
651
|
+
dupl: Generated<string>;
|
|
652
|
+
/**
|
|
653
|
+
* Identifiant
|
|
654
|
+
*/
|
|
655
|
+
id: number;
|
|
656
|
+
/**
|
|
657
|
+
* Indique si la subdivision est soumise au LEC
|
|
658
|
+
*/
|
|
659
|
+
islec: Generated<string>;
|
|
660
|
+
/**
|
|
661
|
+
* Libelle long
|
|
662
|
+
*/
|
|
663
|
+
lib: string | null;
|
|
664
|
+
/**
|
|
665
|
+
* Libelle court
|
|
666
|
+
*/
|
|
667
|
+
lic: string | null;
|
|
668
|
+
/**
|
|
669
|
+
* Identifiant de la subdivision mere
|
|
670
|
+
*/
|
|
671
|
+
merid: number | null;
|
|
672
|
+
/**
|
|
673
|
+
* Position dans le texte
|
|
674
|
+
*/
|
|
675
|
+
pos: Int8 | null;
|
|
676
|
+
/**
|
|
677
|
+
* Position dans la discussion
|
|
678
|
+
*/
|
|
679
|
+
posder: Int8 | null;
|
|
680
|
+
/**
|
|
681
|
+
* Indicateur de subdivision mise en reserve ou discutee en priorite
|
|
682
|
+
*/
|
|
683
|
+
prires: Int8 | null;
|
|
684
|
+
/**
|
|
685
|
+
* Nom du signet
|
|
686
|
+
*/
|
|
687
|
+
sig: string | null;
|
|
688
|
+
sorid: string | null;
|
|
331
689
|
/**
|
|
332
|
-
*
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
typ?: string;
|
|
336
|
-
/** Dispositif de l'amendement */
|
|
337
|
-
dis?: string | null;
|
|
338
|
-
/** Objet de l'amendement */
|
|
339
|
-
obj?: string | null;
|
|
340
|
-
/** Date de depot de l'amendement */
|
|
341
|
-
datdep?: Date | null;
|
|
342
|
-
/** Observations ou commentaires sur l'amendement (1/2) */
|
|
343
|
-
obs?: string | null;
|
|
344
|
-
/** Position au sein de l'article */
|
|
345
|
-
ord?: string | null;
|
|
690
|
+
* Style daffichage dans le dérouleur
|
|
691
|
+
*/
|
|
692
|
+
style: Generated<string>;
|
|
346
693
|
/**
|
|
347
|
-
*
|
|
348
|
-
* Default value: 'N'::bpchar
|
|
694
|
+
* Indicateur de subdivision amendable
|
|
349
695
|
*/
|
|
350
|
-
|
|
696
|
+
subamd: Generated<string>;
|
|
351
697
|
/**
|
|
352
|
-
*
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
subpos?: string | null;
|
|
356
|
-
/** Observations ou commentaires sur l'amendement (2/2) */
|
|
357
|
-
mot?: string | null;
|
|
358
|
-
/** Numero absolu de l'amendement diffuse (en chiffre) */
|
|
359
|
-
numabs?: string | null;
|
|
360
|
-
/** Identification de la subdivision de discussion */
|
|
361
|
-
subidder?: SubId | null;
|
|
362
|
-
/** Libelle complementaire (type d'appartenance au groupe) */
|
|
363
|
-
libgrp?: string | null;
|
|
364
|
-
/** Numero du premier alinea modifie par l'amendement */
|
|
365
|
-
alinea?: number | null;
|
|
698
|
+
* Identifiant du texte
|
|
699
|
+
*/
|
|
700
|
+
txtid: number;
|
|
366
701
|
/**
|
|
367
|
-
*
|
|
368
|
-
* Default value: 'N'::character varying
|
|
702
|
+
* ID du dérouleur texte
|
|
369
703
|
*/
|
|
370
|
-
|
|
704
|
+
txtidder: number | null;
|
|
371
705
|
/**
|
|
372
|
-
*
|
|
373
|
-
* Default value: 'N'::bpchar
|
|
706
|
+
* Type
|
|
374
707
|
*/
|
|
375
|
-
|
|
708
|
+
typid: number | null;
|
|
709
|
+
}
|
|
710
|
+
export interface TxtAmeli {
|
|
376
711
|
/**
|
|
377
|
-
*
|
|
378
|
-
* Default value: 5
|
|
712
|
+
* Date d'adoption du texte
|
|
379
713
|
*/
|
|
380
|
-
|
|
714
|
+
datado: Timestamp | null;
|
|
381
715
|
/**
|
|
382
|
-
*
|
|
383
|
-
* Default value: 'M'::bpchar
|
|
716
|
+
* Date de depot
|
|
384
717
|
*/
|
|
385
|
-
|
|
718
|
+
datdep: Timestamp;
|
|
386
719
|
/**
|
|
387
|
-
*
|
|
388
|
-
* Default value: NULL::bpchar
|
|
720
|
+
* Indicateur de texte disponible
|
|
389
721
|
*/
|
|
390
|
-
|
|
391
|
-
/** Identité de l'entité qui a saisi l'irrecevabilité */
|
|
392
|
-
irrsaisiepar?: EntId | null;
|
|
393
|
-
/** Motivation de la commission asoc */
|
|
394
|
-
motivasoc?: string | null;
|
|
395
|
-
}
|
|
396
|
-
/** Amendements */
|
|
397
|
-
export interface AmdMutator {
|
|
398
|
-
/** Identifiant */
|
|
399
|
-
id?: AmdId;
|
|
400
|
-
/** Identifiant de la subdivision amendee */
|
|
401
|
-
subid?: SubId | null;
|
|
402
|
-
/** Identifiant de l'amendement pere pour les sous-amendements */
|
|
403
|
-
amdperid?: AmdId | null;
|
|
404
|
-
/** Identifiant de la motion */
|
|
405
|
-
motid?: MotId | null;
|
|
406
|
-
/** Identifiant de l'etat de l'amendement */
|
|
407
|
-
etaid?: number;
|
|
408
|
-
/** Identifiant de l'entite au nom de laquelle est depose l'amendement */
|
|
409
|
-
nomentid?: EntId;
|
|
410
|
-
/** Identifiant du sort de l'amendement */
|
|
411
|
-
sorid?: SorId | null;
|
|
412
|
-
/** Identifiant de l'avis de la commission */
|
|
413
|
-
avcid?: AvicomId | null;
|
|
414
|
-
/** Identifiant de l'avis du gouvernement */
|
|
415
|
-
avgid?: AvigvtId | null;
|
|
416
|
-
/** Identifiant du type d'irrecevabilite */
|
|
417
|
-
irrid?: IrrId | null;
|
|
418
|
-
/** Identifiant du texte amende */
|
|
419
|
-
txtid?: TxtAmeliId;
|
|
420
|
-
/** Identifiant de l'orateur pour (motion) */
|
|
421
|
-
opmid?: EntId | null;
|
|
422
|
-
/** Identifiant de l'orateur contre (motion) */
|
|
423
|
-
ocmid?: EntId | null;
|
|
424
|
-
/** Identifiant d'amendements identiques */
|
|
425
|
-
ideid?: number | null;
|
|
426
|
-
/** Identifiant d'amendements en discussion commune */
|
|
427
|
-
discomid?: number | null;
|
|
428
|
-
/** Numero de l'amendement (avec prefixe) */
|
|
429
|
-
num?: string | null;
|
|
430
|
-
/** Niveau de rectification */
|
|
431
|
-
rev?: string;
|
|
432
|
-
/** Type d'amendement */
|
|
433
|
-
typ?: string;
|
|
434
|
-
/** Dispositif de l'amendement */
|
|
435
|
-
dis?: string | null;
|
|
436
|
-
/** Objet de l'amendement */
|
|
437
|
-
obj?: string | null;
|
|
438
|
-
/** Date de depot de l'amendement */
|
|
439
|
-
datdep?: Date | null;
|
|
440
|
-
/** Observations ou commentaires sur l'amendement (1/2) */
|
|
441
|
-
obs?: string | null;
|
|
442
|
-
/** Position au sein de l'article */
|
|
443
|
-
ord?: string | null;
|
|
444
|
-
/** Indication de la mention -Et plusieurs de ses collegues- */
|
|
445
|
-
autext?: string;
|
|
446
|
-
/** Identification des amendements portant sur article additionnel (si different de 0) */
|
|
447
|
-
subpos?: string | null;
|
|
448
|
-
/** Observations ou commentaires sur l'amendement (2/2) */
|
|
449
|
-
mot?: string | null;
|
|
450
|
-
/** Numero absolu de l'amendement diffuse (en chiffre) */
|
|
451
|
-
numabs?: string | null;
|
|
452
|
-
/** Identification de la subdivision de discussion */
|
|
453
|
-
subidder?: SubId | null;
|
|
454
|
-
/** Libelle complementaire (type d'appartenance au groupe) */
|
|
455
|
-
libgrp?: string | null;
|
|
456
|
-
/** Numero du premier alinea modifie par l'amendement */
|
|
457
|
-
alinea?: number | null;
|
|
458
|
-
/** Amendement depose avec l'accord du gouvernement */
|
|
459
|
-
accgou?: string | null;
|
|
460
|
-
/** Indication de la mendion -Et plusieurs de ses collegues- (uniquement pour les amendements de commission) */
|
|
461
|
-
colleg?: string;
|
|
462
|
-
/** Identifiant du type de rectification */
|
|
463
|
-
typrectid?: TyprectId | null;
|
|
464
|
-
/** Endroit ou de la motion qui sera examinee. M pour le derouleur de la motion. G pour la discussion generale */
|
|
465
|
-
motposexa?: string;
|
|
466
|
-
/** 'I' si Irrecevable LO-111-3 par la commission des affaires sociales, 'R' si recevable, null si non instruit */
|
|
467
|
-
irrlo1113valid?: string | null;
|
|
468
|
-
/** Identité de l'entité qui a saisi l'irrecevabilité */
|
|
469
|
-
irrsaisiepar?: EntId | null;
|
|
470
|
-
/** Motivation de la commission asoc */
|
|
471
|
-
motivasoc?: string | null;
|
|
472
|
-
}
|
|
473
|
-
export type CabEntid = EntId;
|
|
474
|
-
/** Gouvernement (B) */
|
|
475
|
-
export interface Cab {
|
|
476
|
-
/** Identifiant */
|
|
477
|
-
entid: EntId;
|
|
478
|
-
/** Code */
|
|
479
|
-
codint: string;
|
|
480
|
-
/** Libelle */
|
|
481
|
-
lil: string | null;
|
|
482
|
-
}
|
|
483
|
-
/** Gouvernement (B) */
|
|
484
|
-
export interface CabInitializer {
|
|
485
|
-
/** Identifiant */
|
|
486
|
-
entid: EntId;
|
|
487
|
-
/** Code */
|
|
488
|
-
codint: string;
|
|
489
|
-
/** Libelle */
|
|
490
|
-
lil?: string | null;
|
|
491
|
-
}
|
|
492
|
-
/** Gouvernement (B) */
|
|
493
|
-
export interface CabMutator {
|
|
494
|
-
/** Identifiant */
|
|
495
|
-
entid?: EntId;
|
|
496
|
-
/** Code */
|
|
497
|
-
codint?: string;
|
|
498
|
-
/** Libelle */
|
|
499
|
-
lil?: string | null;
|
|
500
|
-
}
|
|
501
|
-
export type AvigvtId = string;
|
|
502
|
-
/** Avis du gouvernement */
|
|
503
|
-
export interface Avigvt {
|
|
504
|
-
/** Identifiant */
|
|
505
|
-
id: AvigvtId;
|
|
506
|
-
/** Libelle */
|
|
507
|
-
lib: string;
|
|
508
|
-
/** Code */
|
|
509
|
-
cod: string;
|
|
510
|
-
}
|
|
511
|
-
/** Avis du gouvernement */
|
|
512
|
-
export interface AvigvtInitializer {
|
|
513
|
-
/** Identifiant */
|
|
514
|
-
id: AvigvtId;
|
|
515
|
-
/** Libelle */
|
|
516
|
-
lib: string;
|
|
517
|
-
/** Code */
|
|
518
|
-
cod: string;
|
|
519
|
-
}
|
|
520
|
-
/** Avis du gouvernement */
|
|
521
|
-
export interface AvigvtMutator {
|
|
522
|
-
/** Identifiant */
|
|
523
|
-
id?: AvigvtId;
|
|
524
|
-
/** Libelle */
|
|
525
|
-
lib?: string;
|
|
526
|
-
/** Code */
|
|
527
|
-
cod?: string;
|
|
528
|
-
}
|
|
529
|
-
export type EntId = number;
|
|
530
|
-
/** Entite */
|
|
531
|
-
export interface Ent {
|
|
532
|
-
/** Identifiant */
|
|
533
|
-
id: EntId;
|
|
534
|
-
/** Type */
|
|
535
|
-
typ: string;
|
|
536
|
-
/** Actif ou non */
|
|
537
|
-
act: string | null;
|
|
538
|
-
}
|
|
539
|
-
/** Entite */
|
|
540
|
-
export interface EntInitializer {
|
|
541
|
-
/** Identifiant */
|
|
542
|
-
id: EntId;
|
|
543
|
-
/** Type */
|
|
544
|
-
typ: string;
|
|
722
|
+
dis: Generated<string>;
|
|
545
723
|
/**
|
|
546
|
-
*
|
|
547
|
-
* Default value: 'O'::bpchar
|
|
724
|
+
* Signet du dossier legislatif
|
|
548
725
|
*/
|
|
549
|
-
|
|
550
|
-
}
|
|
551
|
-
/** Entite */
|
|
552
|
-
export interface EntMutator {
|
|
553
|
-
/** Identifiant */
|
|
554
|
-
id?: EntId;
|
|
555
|
-
/** Type */
|
|
556
|
-
typ?: string;
|
|
557
|
-
/** Actif ou non */
|
|
558
|
-
act?: string | null;
|
|
559
|
-
}
|
|
560
|
-
export type SaiId = number;
|
|
561
|
-
/** Saisine des commissions */
|
|
562
|
-
export interface Sai {
|
|
563
|
-
/** Identifiant */
|
|
564
|
-
id: SaiId;
|
|
565
|
-
/** Identifiant du texte */
|
|
566
|
-
txtid: TxtAmeliId;
|
|
567
|
-
/** Identifiant de la commission */
|
|
568
|
-
comid: EntId;
|
|
569
|
-
/** Identifiant de la session */
|
|
570
|
-
sesid: SesId;
|
|
571
|
-
/** Numero de rapport (ou d'avis) */
|
|
572
|
-
numrap: string | null;
|
|
573
|
-
/** Type de saisine */
|
|
574
|
-
saityp: string;
|
|
575
|
-
/** Indique si la commission saisie pour avis est déléguée au fond */
|
|
576
|
-
isdelegfond: string;
|
|
577
|
-
}
|
|
578
|
-
/** Saisine des commissions */
|
|
579
|
-
export interface SaiInitializer {
|
|
580
|
-
/** Identifiant */
|
|
581
|
-
id: SaiId;
|
|
582
|
-
/** Identifiant du texte */
|
|
583
|
-
txtid: TxtAmeliId;
|
|
584
|
-
/** Identifiant de la commission */
|
|
585
|
-
comid: EntId;
|
|
586
|
-
/** Identifiant de la session */
|
|
587
|
-
sesid: SesId;
|
|
588
|
-
/** Numero de rapport (ou d'avis) */
|
|
589
|
-
numrap?: string | null;
|
|
590
|
-
/** Type de saisine */
|
|
591
|
-
saityp: string;
|
|
726
|
+
doslegsignet: string | null;
|
|
592
727
|
/**
|
|
593
|
-
*
|
|
594
|
-
* Default value: 'N'::bpchar
|
|
728
|
+
* Identifiant de la mission (si texte de la loi de finance)
|
|
595
729
|
*/
|
|
596
|
-
|
|
597
|
-
}
|
|
598
|
-
/** Saisine des commissions */
|
|
599
|
-
export interface SaiMutator {
|
|
600
|
-
/** Identifiant */
|
|
601
|
-
id?: SaiId;
|
|
602
|
-
/** Identifiant du texte */
|
|
603
|
-
txtid?: TxtAmeliId;
|
|
604
|
-
/** Identifiant de la commission */
|
|
605
|
-
comid?: EntId;
|
|
606
|
-
/** Identifiant de la session */
|
|
607
|
-
sesid?: SesId;
|
|
608
|
-
/** Numero de rapport (ou d'avis) */
|
|
609
|
-
numrap?: string | null;
|
|
610
|
-
/** Type de saisine */
|
|
611
|
-
saityp?: string;
|
|
612
|
-
/** Indique si la commission saisie pour avis est déléguée au fond */
|
|
613
|
-
isdelegfond?: string;
|
|
614
|
-
}
|
|
615
|
-
export type TypsubId = number;
|
|
616
|
-
/** Types de subdivision */
|
|
617
|
-
export interface Typsub {
|
|
618
|
-
/** Identifiant */
|
|
619
|
-
id: TypsubId;
|
|
620
|
-
/** Libelle */
|
|
621
|
-
lib: string;
|
|
622
|
-
}
|
|
623
|
-
/** Types de subdivision */
|
|
624
|
-
export interface TypsubInitializer {
|
|
625
|
-
/** Identifiant */
|
|
626
|
-
id: TypsubId;
|
|
627
|
-
/** Libelle */
|
|
628
|
-
lib: string;
|
|
629
|
-
}
|
|
630
|
-
/** Types de subdivision */
|
|
631
|
-
export interface TypsubMutator {
|
|
632
|
-
/** Identifiant */
|
|
633
|
-
id?: TypsubId;
|
|
634
|
-
/** Libelle */
|
|
635
|
-
lib?: string;
|
|
636
|
-
}
|
|
637
|
-
export type SenAmeliEntid = EntId;
|
|
638
|
-
/** Liste des senateurs */
|
|
639
|
-
export interface SenAmeli {
|
|
640
|
-
/** Identifiant */
|
|
641
|
-
entid: EntId;
|
|
642
|
-
/** Identifiant du groupe */
|
|
643
|
-
grpid: EntId;
|
|
644
|
-
/** Identifiant de la commission */
|
|
645
|
-
comid: EntId | null;
|
|
646
|
-
/** Identifiant de la commission speciale */
|
|
647
|
-
comspcid: EntId | null;
|
|
648
|
-
/** Matricule */
|
|
649
|
-
mat: string;
|
|
650
|
-
/** Qualite */
|
|
651
|
-
qua: string;
|
|
652
|
-
/** Nom usuel */
|
|
653
|
-
nomuse: string;
|
|
654
|
-
/** Prenom usuel */
|
|
655
|
-
prenomuse: string;
|
|
656
|
-
/** Nom technique */
|
|
657
|
-
nomtec: string | null;
|
|
658
|
-
/** Indication de senateurs homonymes */
|
|
659
|
-
hom: string | null;
|
|
660
|
-
/** Indication de senateurs apparentes */
|
|
661
|
-
app: string | null;
|
|
662
|
-
/** Indication de senateurs rattache a un groupe */
|
|
663
|
-
ratt: string | null;
|
|
664
|
-
/** Nom usuel en minuscule */
|
|
665
|
-
nomusemin: string;
|
|
666
|
-
/** Indication de feminisation des titres */
|
|
667
|
-
senfem: string | null;
|
|
668
|
-
}
|
|
669
|
-
/** Liste des senateurs */
|
|
670
|
-
export interface SenAmeliInitializer {
|
|
671
|
-
/** Identifiant */
|
|
672
|
-
entid: EntId;
|
|
673
|
-
/** Identifiant du groupe */
|
|
674
|
-
grpid: EntId;
|
|
675
|
-
/** Identifiant de la commission */
|
|
676
|
-
comid?: EntId | null;
|
|
677
|
-
/** Identifiant de la commission speciale */
|
|
678
|
-
comspcid?: EntId | null;
|
|
679
|
-
/** Matricule */
|
|
680
|
-
mat: string;
|
|
681
|
-
/** Qualite */
|
|
682
|
-
qua: string;
|
|
683
|
-
/** Nom usuel */
|
|
684
|
-
nomuse: string;
|
|
685
|
-
/** Prenom usuel */
|
|
686
|
-
prenomuse: string;
|
|
687
|
-
/** Nom technique */
|
|
688
|
-
nomtec?: string | null;
|
|
730
|
+
fbuid: number | null;
|
|
689
731
|
/**
|
|
690
|
-
*
|
|
691
|
-
* Default value: 'N'::bpchar
|
|
732
|
+
* O sil sagit dun dérouleur fusionné, N sinon
|
|
692
733
|
*/
|
|
693
|
-
|
|
734
|
+
fusder: Generated<string>;
|
|
694
735
|
/**
|
|
695
|
-
*
|
|
696
|
-
* Default value: 'N'::bpchar
|
|
736
|
+
* ID du dérouleur fusionné
|
|
697
737
|
*/
|
|
698
|
-
|
|
738
|
+
fusderid: number | null;
|
|
699
739
|
/**
|
|
700
|
-
*
|
|
701
|
-
* Default value: 'N'::bpchar
|
|
740
|
+
* Ordre de discussion des textes dans un dérouleur fusionné
|
|
702
741
|
*/
|
|
703
|
-
|
|
704
|
-
/** Nom usuel en minuscule */
|
|
705
|
-
nomusemin: string;
|
|
742
|
+
fusderord: Generated<number>;
|
|
706
743
|
/**
|
|
707
|
-
*
|
|
708
|
-
* Default value: 'N'::character varying
|
|
744
|
+
* Type de fusion dérouleur DG ou DA
|
|
709
745
|
*/
|
|
710
|
-
|
|
711
|
-
}
|
|
712
|
-
/** Liste des senateurs */
|
|
713
|
-
export interface SenAmeliMutator {
|
|
714
|
-
/** Identifiant */
|
|
715
|
-
entid?: EntId;
|
|
716
|
-
/** Identifiant du groupe */
|
|
717
|
-
grpid?: EntId;
|
|
718
|
-
/** Identifiant de la commission */
|
|
719
|
-
comid?: EntId | null;
|
|
720
|
-
/** Identifiant de la commission speciale */
|
|
721
|
-
comspcid?: EntId | null;
|
|
722
|
-
/** Matricule */
|
|
723
|
-
mat?: string;
|
|
724
|
-
/** Qualite */
|
|
725
|
-
qua?: string;
|
|
726
|
-
/** Nom usuel */
|
|
727
|
-
nomuse?: string;
|
|
728
|
-
/** Prenom usuel */
|
|
729
|
-
prenomuse?: string;
|
|
730
|
-
/** Nom technique */
|
|
731
|
-
nomtec?: string | null;
|
|
732
|
-
/** Indication de senateurs homonymes */
|
|
733
|
-
hom?: string | null;
|
|
734
|
-
/** Indication de senateurs apparentes */
|
|
735
|
-
app?: string | null;
|
|
736
|
-
/** Indication de senateurs rattache a un groupe */
|
|
737
|
-
ratt?: string | null;
|
|
738
|
-
/** Nom usuel en minuscule */
|
|
739
|
-
nomusemin?: string;
|
|
740
|
-
/** Indication de feminisation des titres */
|
|
741
|
-
senfem?: string | null;
|
|
742
|
-
}
|
|
743
|
-
export type MotId = number;
|
|
744
|
-
/** Motions */
|
|
745
|
-
export interface Mot {
|
|
746
|
-
/** Identifiant */
|
|
747
|
-
id: MotId;
|
|
748
|
-
/** Libelle */
|
|
749
|
-
lib: string;
|
|
750
|
-
/** Intitule */
|
|
751
|
-
int: string | null;
|
|
752
|
-
/** Code */
|
|
753
|
-
cod: string | null;
|
|
754
|
-
/** Ordre de presentation */
|
|
755
|
-
ord: string;
|
|
756
|
-
/** Libelle pour le nota bene */
|
|
757
|
-
libnbe: string | null;
|
|
758
|
-
}
|
|
759
|
-
/** Motions */
|
|
760
|
-
export interface MotInitializer {
|
|
761
|
-
/** Identifiant */
|
|
762
|
-
id: MotId;
|
|
763
|
-
/** Libelle */
|
|
764
|
-
lib: string;
|
|
765
|
-
/** Intitule */
|
|
766
|
-
int?: string | null;
|
|
767
|
-
/** Code */
|
|
768
|
-
cod?: string | null;
|
|
769
|
-
/** Ordre de presentation */
|
|
770
|
-
ord: string;
|
|
771
|
-
/** Libelle pour le nota bene */
|
|
772
|
-
libnbe?: string | null;
|
|
773
|
-
}
|
|
774
|
-
/** Motions */
|
|
775
|
-
export interface MotMutator {
|
|
776
|
-
/** Identifiant */
|
|
777
|
-
id?: MotId;
|
|
778
|
-
/** Libelle */
|
|
779
|
-
lib?: string;
|
|
780
|
-
/** Intitule */
|
|
781
|
-
int?: string | null;
|
|
782
|
-
/** Code */
|
|
783
|
-
cod?: string | null;
|
|
784
|
-
/** Ordre de presentation */
|
|
785
|
-
ord?: string;
|
|
786
|
-
/** Libelle pour le nota bene */
|
|
787
|
-
libnbe?: string | null;
|
|
788
|
-
}
|
|
789
|
-
export type AmdsenAmdid = AmdId;
|
|
790
|
-
export type AmdsenSenid = EntId;
|
|
791
|
-
/** (co)Signataires */
|
|
792
|
-
export interface Amdsen {
|
|
793
|
-
/** Identifiant */
|
|
794
|
-
amdid: AmdId;
|
|
795
|
-
/** Identifiant du signataire */
|
|
796
|
-
senid: EntId;
|
|
797
|
-
/** Rang dans l'ordre des signataires */
|
|
798
|
-
rng: string | null;
|
|
799
|
-
/** Qualite */
|
|
800
|
-
qua: string | null;
|
|
801
|
-
/** Nom usuel */
|
|
802
|
-
nomuse: string | null;
|
|
803
|
-
/** Prenom usuel */
|
|
804
|
-
prenomuse: string | null;
|
|
805
|
-
/** Indication de senateurs homonymes */
|
|
806
|
-
hom: string | null;
|
|
807
|
-
grpid: EntId | null;
|
|
808
|
-
}
|
|
809
|
-
/** (co)Signataires */
|
|
810
|
-
export interface AmdsenInitializer {
|
|
811
|
-
/** Identifiant */
|
|
812
|
-
amdid: AmdId;
|
|
813
|
-
/** Identifiant du signataire */
|
|
814
|
-
senid: EntId;
|
|
746
|
+
fusdertyp: Generated<string | null>;
|
|
815
747
|
/**
|
|
816
|
-
*
|
|
817
|
-
* Default value: 0
|
|
748
|
+
* Identifiant
|
|
818
749
|
*/
|
|
819
|
-
|
|
820
|
-
/** Qualite */
|
|
821
|
-
qua?: string | null;
|
|
822
|
-
/** Nom usuel */
|
|
823
|
-
nomuse?: string | null;
|
|
824
|
-
/** Prenom usuel */
|
|
825
|
-
prenomuse?: string | null;
|
|
750
|
+
id: number;
|
|
826
751
|
/**
|
|
827
|
-
*
|
|
828
|
-
* Default value: 'N'::bpchar
|
|
752
|
+
* Intitule long du texte
|
|
829
753
|
*/
|
|
830
|
-
|
|
831
|
-
grpid?: EntId | null;
|
|
832
|
-
}
|
|
833
|
-
/** (co)Signataires */
|
|
834
|
-
export interface AmdsenMutator {
|
|
835
|
-
/** Identifiant */
|
|
836
|
-
amdid?: AmdId;
|
|
837
|
-
/** Identifiant du signataire */
|
|
838
|
-
senid?: EntId;
|
|
839
|
-
/** Rang dans l'ordre des signataires */
|
|
840
|
-
rng?: string | null;
|
|
841
|
-
/** Qualite */
|
|
842
|
-
qua?: string | null;
|
|
843
|
-
/** Nom usuel */
|
|
844
|
-
nomuse?: string | null;
|
|
845
|
-
/** Prenom usuel */
|
|
846
|
-
prenomuse?: string | null;
|
|
847
|
-
/** Indication de senateurs homonymes */
|
|
848
|
-
hom?: string | null;
|
|
849
|
-
grpid?: EntId | null;
|
|
850
|
-
}
|
|
851
|
-
export type EtatxtId = string;
|
|
852
|
-
/** Etats du texte amende */
|
|
853
|
-
export interface Etatxt {
|
|
854
|
-
/** Identifiant */
|
|
855
|
-
id: EtatxtId;
|
|
856
|
-
/** Libelle court */
|
|
857
|
-
lic: string;
|
|
858
|
-
/** Libelle */
|
|
859
|
-
lib: string;
|
|
860
|
-
txttyp: string;
|
|
861
|
-
}
|
|
862
|
-
/** Etats du texte amende */
|
|
863
|
-
export interface EtatxtInitializer {
|
|
864
|
-
/** Identifiant */
|
|
865
|
-
id: EtatxtId;
|
|
866
|
-
/** Libelle court */
|
|
867
|
-
lic: string;
|
|
868
|
-
/** Libelle */
|
|
869
|
-
lib: string;
|
|
870
|
-
/** Default value: 'S'::bpchar */
|
|
871
|
-
txttyp?: string;
|
|
872
|
-
}
|
|
873
|
-
/** Etats du texte amende */
|
|
874
|
-
export interface EtatxtMutator {
|
|
875
|
-
/** Identifiant */
|
|
876
|
-
id?: EtatxtId;
|
|
877
|
-
/** Libelle court */
|
|
878
|
-
lic?: string;
|
|
879
|
-
/** Libelle */
|
|
880
|
-
lib?: string;
|
|
881
|
-
txttyp?: string;
|
|
882
|
-
}
|
|
883
|
-
export type IrrId = number;
|
|
884
|
-
/** Types d'irrecevabilite */
|
|
885
|
-
export interface Irr {
|
|
886
|
-
/** Identifiant */
|
|
887
|
-
id: IrrId;
|
|
888
|
-
/** Libelle */
|
|
889
|
-
lib: string;
|
|
890
|
-
/** Code */
|
|
891
|
-
cod: string;
|
|
892
|
-
/** Libelle */
|
|
893
|
-
libirr: string | null;
|
|
894
|
-
/** Article */
|
|
895
|
-
art: string | null;
|
|
896
|
-
/** Libelle long */
|
|
897
|
-
lilmin: string | null;
|
|
898
|
-
par: string | null;
|
|
899
|
-
}
|
|
900
|
-
/** Types d'irrecevabilite */
|
|
901
|
-
export interface IrrInitializer {
|
|
902
|
-
/** Identifiant */
|
|
903
|
-
id: IrrId;
|
|
904
|
-
/** Libelle */
|
|
905
|
-
lib: string;
|
|
906
|
-
/** Code */
|
|
907
|
-
cod: string;
|
|
908
|
-
/** Libelle */
|
|
909
|
-
libirr?: string | null;
|
|
910
|
-
/** Article */
|
|
911
|
-
art?: string | null;
|
|
912
|
-
/** Libelle long */
|
|
913
|
-
lilmin?: string | null;
|
|
914
|
-
par?: string | null;
|
|
915
|
-
}
|
|
916
|
-
/** Types d'irrecevabilite */
|
|
917
|
-
export interface IrrMutator {
|
|
918
|
-
/** Identifiant */
|
|
919
|
-
id?: IrrId;
|
|
920
|
-
/** Libelle */
|
|
921
|
-
lib?: string;
|
|
922
|
-
/** Code */
|
|
923
|
-
cod?: string;
|
|
924
|
-
/** Libelle */
|
|
925
|
-
libirr?: string | null;
|
|
926
|
-
/** Article */
|
|
927
|
-
art?: string | null;
|
|
928
|
-
/** Libelle long */
|
|
929
|
-
lilmin?: string | null;
|
|
930
|
-
par?: string | null;
|
|
931
|
-
}
|
|
932
|
-
export type IntoraId = number;
|
|
933
|
-
/** Interventions en discussion generale ou paroles sur article */
|
|
934
|
-
export interface Intora {
|
|
935
|
-
/** Identifiant */
|
|
936
|
-
id: IntoraId;
|
|
937
|
-
/** Identifiant de la subdivision sur laquelle porte la prise de parole */
|
|
938
|
-
subid: SubId | null;
|
|
939
|
-
/** Identifiant de l'orateur */
|
|
940
|
-
entid: EntId;
|
|
941
|
-
/** Identifiant de l'orateur (au nom de) */
|
|
942
|
-
entid2: EntId | null;
|
|
943
|
-
/** Identifiant du texte */
|
|
944
|
-
txtid: TxtAmeliId;
|
|
945
|
-
/** Identifiant de la seance */
|
|
946
|
-
seaid: SeaId | null;
|
|
947
|
-
/** Moment de l'intervention */
|
|
948
|
-
mom: string;
|
|
949
|
-
/** Numero d'ordre */
|
|
950
|
-
ord: string;
|
|
951
|
-
/** Code du role de l'orateur */
|
|
952
|
-
rolcod: OrarolCod;
|
|
953
|
-
/** Duree de l'intevrention */
|
|
954
|
-
temps: number;
|
|
955
|
-
}
|
|
956
|
-
/** Interventions en discussion generale ou paroles sur article */
|
|
957
|
-
export interface IntoraInitializer {
|
|
958
|
-
/** Identifiant */
|
|
959
|
-
id: IntoraId;
|
|
960
|
-
/** Identifiant de la subdivision sur laquelle porte la prise de parole */
|
|
961
|
-
subid?: SubId | null;
|
|
962
|
-
/** Identifiant de l'orateur */
|
|
963
|
-
entid: EntId;
|
|
964
|
-
/** Identifiant de l'orateur (au nom de) */
|
|
965
|
-
entid2?: EntId | null;
|
|
966
|
-
/** Identifiant du texte */
|
|
967
|
-
txtid: TxtAmeliId;
|
|
968
|
-
/** Identifiant de la seance */
|
|
969
|
-
seaid?: SeaId | null;
|
|
970
|
-
/** Moment de l'intervention */
|
|
971
|
-
mom: string;
|
|
972
|
-
/** Numero d'ordre */
|
|
973
|
-
ord: string;
|
|
754
|
+
inl: string | null;
|
|
974
755
|
/**
|
|
975
|
-
*
|
|
976
|
-
* Default value: 'SEN'::character varying
|
|
756
|
+
* Intitule du texte
|
|
977
757
|
*/
|
|
978
|
-
|
|
758
|
+
int: string;
|
|
979
759
|
/**
|
|
980
|
-
*
|
|
981
|
-
* Default value: 0
|
|
760
|
+
* Identifiant de lecture
|
|
982
761
|
*/
|
|
983
|
-
|
|
984
|
-
}
|
|
985
|
-
/** Interventions en discussion generale ou paroles sur article */
|
|
986
|
-
export interface IntoraMutator {
|
|
987
|
-
/** Identifiant */
|
|
988
|
-
id?: IntoraId;
|
|
989
|
-
/** Identifiant de la subdivision sur laquelle porte la prise de parole */
|
|
990
|
-
subid?: SubId | null;
|
|
991
|
-
/** Identifiant de l'orateur */
|
|
992
|
-
entid?: EntId;
|
|
993
|
-
/** Identifiant de l'orateur (au nom de) */
|
|
994
|
-
entid2?: EntId | null;
|
|
995
|
-
/** Identifiant du texte */
|
|
996
|
-
txtid?: TxtAmeliId;
|
|
997
|
-
/** Identifiant de la seance */
|
|
998
|
-
seaid?: SeaId | null;
|
|
999
|
-
/** Moment de l'intervention */
|
|
1000
|
-
mom?: string;
|
|
1001
|
-
/** Numero d'ordre */
|
|
1002
|
-
ord?: string;
|
|
1003
|
-
/** Code du role de l'orateur */
|
|
1004
|
-
rolcod?: OrarolCod;
|
|
1005
|
-
/** Duree de l'intevrention */
|
|
1006
|
-
temps?: number;
|
|
1007
|
-
}
|
|
1008
|
-
export type NatId = number;
|
|
1009
|
-
/** Nature des textes */
|
|
1010
|
-
export interface Nat {
|
|
1011
|
-
/** Identifiant */
|
|
1012
|
-
id: NatId;
|
|
1013
|
-
/** Libelle */
|
|
1014
|
-
lib: string;
|
|
1015
|
-
libcourt: string | null;
|
|
1016
|
-
}
|
|
1017
|
-
/** Nature des textes */
|
|
1018
|
-
export interface NatInitializer {
|
|
1019
|
-
/** Identifiant */
|
|
1020
|
-
id: NatId;
|
|
1021
|
-
/** Libelle */
|
|
1022
|
-
lib: string;
|
|
1023
|
-
libcourt?: string | null;
|
|
1024
|
-
}
|
|
1025
|
-
/** Nature des textes */
|
|
1026
|
-
export interface NatMutator {
|
|
1027
|
-
/** Identifiant */
|
|
1028
|
-
id?: NatId;
|
|
1029
|
-
/** Libelle */
|
|
1030
|
-
lib?: string;
|
|
1031
|
-
libcourt?: string | null;
|
|
1032
|
-
}
|
|
1033
|
-
export type GvtEntid = EntId;
|
|
1034
|
-
/** Membres gouvernement */
|
|
1035
|
-
export interface Gvt {
|
|
1036
|
-
/** Identifiant */
|
|
1037
|
-
entid: EntId;
|
|
1038
|
-
/** Nom */
|
|
1039
|
-
nom: string;
|
|
1040
|
-
/** Prenom */
|
|
1041
|
-
pre: string;
|
|
1042
|
-
/** Qualite */
|
|
1043
|
-
qua: string;
|
|
1044
|
-
/** Titre */
|
|
1045
|
-
tit: string;
|
|
1046
|
-
}
|
|
1047
|
-
/** Membres gouvernement */
|
|
1048
|
-
export interface GvtInitializer {
|
|
1049
|
-
/** Identifiant */
|
|
1050
|
-
entid: EntId;
|
|
1051
|
-
/** Nom */
|
|
1052
|
-
nom: string;
|
|
1053
|
-
/** Prenom */
|
|
1054
|
-
pre: string;
|
|
1055
|
-
/** Qualite */
|
|
1056
|
-
qua: string;
|
|
1057
|
-
/** Titre */
|
|
1058
|
-
tit: string;
|
|
1059
|
-
}
|
|
1060
|
-
/** Membres gouvernement */
|
|
1061
|
-
export interface GvtMutator {
|
|
1062
|
-
/** Identifiant */
|
|
1063
|
-
entid?: EntId;
|
|
1064
|
-
/** Nom */
|
|
1065
|
-
nom?: string;
|
|
1066
|
-
/** Prenom */
|
|
1067
|
-
pre?: string;
|
|
1068
|
-
/** Qualite */
|
|
1069
|
-
qua?: string;
|
|
1070
|
-
/** Titre */
|
|
1071
|
-
tit?: string;
|
|
1072
|
-
}
|
|
1073
|
-
export type SubId = number;
|
|
1074
|
-
/** Subdivisions */
|
|
1075
|
-
export interface Sub {
|
|
1076
|
-
/** Identifiant */
|
|
1077
|
-
id: SubId;
|
|
1078
|
-
/** Identifiant du texte */
|
|
1079
|
-
txtid: TxtAmeliId;
|
|
1080
|
-
/** Identifiant de la subdivision mere */
|
|
1081
|
-
merid: SubId | null;
|
|
1082
|
-
/** Type */
|
|
1083
|
-
typid: TypsubId | null;
|
|
1084
|
-
/** Libelle court */
|
|
1085
|
-
lic: string | null;
|
|
1086
|
-
/** Libelle long */
|
|
1087
|
-
lib: string | null;
|
|
1088
|
-
/** Position dans le texte */
|
|
1089
|
-
pos: string | null;
|
|
1090
|
-
/** Nom du signet */
|
|
1091
|
-
sig: string | null;
|
|
1092
|
-
/** Position dans la discussion */
|
|
1093
|
-
posder: string | null;
|
|
1094
|
-
/** Indicateur de subdivision mise en reserve ou discutee en priorite */
|
|
1095
|
-
prires: string | null;
|
|
1096
|
-
/** Indicateur de subdivision dupliquee */
|
|
1097
|
-
dupl: string;
|
|
1098
|
-
/** Indicateur de subdivision amendable */
|
|
1099
|
-
subamd: string;
|
|
1100
|
-
sorid: string | null;
|
|
1101
|
-
/** ID du dérouleur texte */
|
|
1102
|
-
txtidder: number | null;
|
|
1103
|
-
/** Style daffichage dans le dérouleur */
|
|
1104
|
-
style: string;
|
|
1105
|
-
/** Indique si la subdivision est soumise au LEC */
|
|
1106
|
-
islec: string;
|
|
1107
|
-
/** Id de la commission pour avis avec délégation au fond */
|
|
1108
|
-
comdelid: EntId | null;
|
|
1109
|
-
}
|
|
1110
|
-
/** Subdivisions */
|
|
1111
|
-
export interface SubInitializer {
|
|
1112
|
-
/** Identifiant */
|
|
1113
|
-
id: SubId;
|
|
1114
|
-
/** Identifiant du texte */
|
|
1115
|
-
txtid: TxtAmeliId;
|
|
1116
|
-
/** Identifiant de la subdivision mere */
|
|
1117
|
-
merid?: SubId | null;
|
|
1118
|
-
/** Type */
|
|
1119
|
-
typid?: TypsubId | null;
|
|
1120
|
-
/** Libelle court */
|
|
1121
|
-
lic?: string | null;
|
|
1122
|
-
/** Libelle long */
|
|
1123
|
-
lib?: string | null;
|
|
1124
|
-
/** Position dans le texte */
|
|
1125
|
-
pos?: string | null;
|
|
1126
|
-
/** Nom du signet */
|
|
1127
|
-
sig?: string | null;
|
|
1128
|
-
/** Position dans la discussion */
|
|
1129
|
-
posder?: string | null;
|
|
1130
|
-
/** Indicateur de subdivision mise en reserve ou discutee en priorite */
|
|
1131
|
-
prires?: string | null;
|
|
762
|
+
lecid: number;
|
|
1132
763
|
/**
|
|
1133
|
-
*
|
|
1134
|
-
* Default value: 'N'::bpchar
|
|
764
|
+
* Libelle complementaire de la nature du texte
|
|
1135
765
|
*/
|
|
1136
|
-
|
|
766
|
+
libcplnat: string | null;
|
|
1137
767
|
/**
|
|
1138
|
-
*
|
|
1139
|
-
* Default value: 'O'::bpchar
|
|
768
|
+
* Libelle du delai limite
|
|
1140
769
|
*/
|
|
1141
|
-
|
|
1142
|
-
sorid?: string | null;
|
|
1143
|
-
/** ID du dérouleur texte */
|
|
1144
|
-
txtidder?: number | null;
|
|
770
|
+
libdelim: string | null;
|
|
1145
771
|
/**
|
|
1146
|
-
*
|
|
1147
|
-
* Default value: 'AUCUN'::character varying
|
|
772
|
+
* Texte du projet de loi de finance
|
|
1148
773
|
*/
|
|
1149
|
-
|
|
774
|
+
loifin: Generated<string>;
|
|
1150
775
|
/**
|
|
1151
|
-
*
|
|
1152
|
-
* Default value: 'N'::bpchar
|
|
776
|
+
* Indicateur de la partie du projet de loi de finance
|
|
1153
777
|
*/
|
|
1154
|
-
|
|
1155
|
-
/** Id de la commission pour avis avec délégation au fond */
|
|
1156
|
-
comdelid?: EntId | null;
|
|
1157
|
-
}
|
|
1158
|
-
/** Subdivisions */
|
|
1159
|
-
export interface SubMutator {
|
|
1160
|
-
/** Identifiant */
|
|
1161
|
-
id?: SubId;
|
|
1162
|
-
/** Identifiant du texte */
|
|
1163
|
-
txtid?: TxtAmeliId;
|
|
1164
|
-
/** Identifiant de la subdivision mere */
|
|
1165
|
-
merid?: SubId | null;
|
|
1166
|
-
/** Type */
|
|
1167
|
-
typid?: TypsubId | null;
|
|
1168
|
-
/** Libelle court */
|
|
1169
|
-
lic?: string | null;
|
|
1170
|
-
/** Libelle long */
|
|
1171
|
-
lib?: string | null;
|
|
1172
|
-
/** Position dans le texte */
|
|
1173
|
-
pos?: string | null;
|
|
1174
|
-
/** Nom du signet */
|
|
1175
|
-
sig?: string | null;
|
|
1176
|
-
/** Position dans la discussion */
|
|
1177
|
-
posder?: string | null;
|
|
1178
|
-
/** Indicateur de subdivision mise en reserve ou discutee en priorite */
|
|
1179
|
-
prires?: string | null;
|
|
1180
|
-
/** Indicateur de subdivision dupliquee */
|
|
1181
|
-
dupl?: string;
|
|
1182
|
-
/** Indicateur de subdivision amendable */
|
|
1183
|
-
subamd?: string;
|
|
1184
|
-
sorid?: string | null;
|
|
1185
|
-
/** ID du dérouleur texte */
|
|
1186
|
-
txtidder?: number | null;
|
|
1187
|
-
/** Style daffichage dans le dérouleur */
|
|
1188
|
-
style?: string;
|
|
1189
|
-
/** Indique si la subdivision est soumise au LEC */
|
|
1190
|
-
islec?: string;
|
|
1191
|
-
/** Id de la commission pour avis avec délégation au fond */
|
|
1192
|
-
comdelid?: EntId | null;
|
|
1193
|
-
}
|
|
1194
|
-
export type TyprectId = number;
|
|
1195
|
-
/** Types de rectification */
|
|
1196
|
-
export interface Typrect {
|
|
1197
|
-
/** Identifiant */
|
|
1198
|
-
id: TyprectId;
|
|
1199
|
-
/** Libelle */
|
|
1200
|
-
lib: string;
|
|
1201
|
-
/** Ordre */
|
|
1202
|
-
ord: string;
|
|
1203
|
-
}
|
|
1204
|
-
/** Types de rectification */
|
|
1205
|
-
export interface TyprectInitializer {
|
|
1206
|
-
/** Identifiant */
|
|
1207
|
-
id: TyprectId;
|
|
1208
|
-
/** Libelle */
|
|
1209
|
-
lib: string;
|
|
1210
|
-
/** Ordre */
|
|
1211
|
-
ord: string;
|
|
1212
|
-
}
|
|
1213
|
-
/** Types de rectification */
|
|
1214
|
-
export interface TyprectMutator {
|
|
1215
|
-
/** Identifiant */
|
|
1216
|
-
id?: TyprectId;
|
|
1217
|
-
/** Libelle */
|
|
1218
|
-
lib?: string;
|
|
1219
|
-
/** Ordre */
|
|
1220
|
-
ord?: string;
|
|
1221
|
-
}
|
|
1222
|
-
export type ComAmeliEntid = EntId;
|
|
1223
|
-
/** Commission (C) */
|
|
1224
|
-
export interface ComAmeli {
|
|
1225
|
-
/** Identifiant */
|
|
1226
|
-
entid: EntId;
|
|
1227
|
-
/** Code */
|
|
1228
|
-
cod: string;
|
|
1229
|
-
/** Libelle */
|
|
1230
|
-
lib: string;
|
|
1231
|
-
/** Libelle long */
|
|
1232
|
-
lil: string;
|
|
1233
|
-
/** Indication si commission speciale */
|
|
1234
|
-
spc: string;
|
|
1235
|
-
/** Code interne */
|
|
1236
|
-
codint: string;
|
|
1237
|
-
/** Ordre de presentation dans les listes */
|
|
1238
|
-
tri: string | null;
|
|
1239
|
-
}
|
|
1240
|
-
/** Commission (C) */
|
|
1241
|
-
export interface ComAmeliInitializer {
|
|
1242
|
-
/** Identifiant */
|
|
1243
|
-
entid: EntId;
|
|
1244
|
-
/** Code */
|
|
1245
|
-
cod: string;
|
|
1246
|
-
/** Libelle */
|
|
1247
|
-
lib: string;
|
|
1248
|
-
/** Libelle long */
|
|
1249
|
-
lil: string;
|
|
778
|
+
loifinpar: Generated<Int8 | null>;
|
|
1250
779
|
/**
|
|
1251
|
-
*
|
|
1252
|
-
* Default value: 'N'::bpchar
|
|
780
|
+
* Identifiant de la nature du texte
|
|
1253
781
|
*/
|
|
1254
|
-
|
|
1255
|
-
/** Code interne */
|
|
1256
|
-
codint: string;
|
|
1257
|
-
/** Ordre de presentation dans les listes */
|
|
1258
|
-
tri?: string | null;
|
|
1259
|
-
}
|
|
1260
|
-
/** Commission (C) */
|
|
1261
|
-
export interface ComAmeliMutator {
|
|
1262
|
-
/** Identifiant */
|
|
1263
|
-
entid?: EntId;
|
|
1264
|
-
/** Code */
|
|
1265
|
-
cod?: string;
|
|
1266
|
-
/** Libelle */
|
|
1267
|
-
lib?: string;
|
|
1268
|
-
/** Libelle long */
|
|
1269
|
-
lil?: string;
|
|
1270
|
-
/** Indication si commission speciale */
|
|
1271
|
-
spc?: string;
|
|
1272
|
-
/** Code interne */
|
|
1273
|
-
codint?: string;
|
|
1274
|
-
/** Ordre de presentation dans les listes */
|
|
1275
|
-
tri?: string | null;
|
|
1276
|
-
}
|
|
1277
|
-
export type SorId = string;
|
|
1278
|
-
/** Sorts */
|
|
1279
|
-
export interface Sor {
|
|
1280
|
-
/** Identifiant */
|
|
1281
|
-
id: SorId;
|
|
1282
|
-
/** Libelle */
|
|
1283
|
-
lib: string;
|
|
1284
|
-
/** Code */
|
|
1285
|
-
cod: string;
|
|
1286
|
-
/** Type */
|
|
1287
|
-
typ: string;
|
|
1288
|
-
}
|
|
1289
|
-
/** Sorts */
|
|
1290
|
-
export interface SorInitializer {
|
|
1291
|
-
/** Identifiant */
|
|
1292
|
-
id: SorId;
|
|
1293
|
-
/** Libelle */
|
|
1294
|
-
lib: string;
|
|
1295
|
-
/** Code */
|
|
1296
|
-
cod: string;
|
|
782
|
+
natid: number;
|
|
1297
783
|
/**
|
|
1298
|
-
*
|
|
1299
|
-
* Default value: 'S'::bpchar
|
|
784
|
+
* Numero du texte
|
|
1300
785
|
*/
|
|
1301
|
-
typ?: string;
|
|
1302
|
-
}
|
|
1303
|
-
/** Sorts */
|
|
1304
|
-
export interface SorMutator {
|
|
1305
|
-
/** Identifiant */
|
|
1306
|
-
id?: SorId;
|
|
1307
|
-
/** Libelle */
|
|
1308
|
-
lib?: string;
|
|
1309
|
-
/** Code */
|
|
1310
|
-
cod?: string;
|
|
1311
|
-
/** Type */
|
|
1312
|
-
typ?: string;
|
|
1313
|
-
}
|
|
1314
|
-
export type WNivrecNum = string;
|
|
1315
|
-
/** Niveau de rectification */
|
|
1316
|
-
export interface WNivrec {
|
|
1317
|
-
/** Numero */
|
|
1318
|
-
num: WNivrecNum;
|
|
1319
|
-
/** Libelle */
|
|
1320
|
-
lib: string | null;
|
|
1321
|
-
}
|
|
1322
|
-
/** Niveau de rectification */
|
|
1323
|
-
export interface WNivrecInitializer {
|
|
1324
|
-
/** Numero */
|
|
1325
|
-
num: WNivrecNum;
|
|
1326
|
-
/** Libelle */
|
|
1327
|
-
lib?: string | null;
|
|
1328
|
-
}
|
|
1329
|
-
/** Niveau de rectification */
|
|
1330
|
-
export interface WNivrecMutator {
|
|
1331
|
-
/** Numero */
|
|
1332
|
-
num?: WNivrecNum;
|
|
1333
|
-
/** Libelle */
|
|
1334
|
-
lib?: string | null;
|
|
1335
|
-
}
|
|
1336
|
-
export type GrppolAmeliEntid = EntId;
|
|
1337
|
-
/** Groupe politique */
|
|
1338
|
-
export interface GrppolAmeli {
|
|
1339
|
-
/** Identifiant */
|
|
1340
|
-
entid: EntId;
|
|
1341
|
-
/** Code */
|
|
1342
|
-
cod: string;
|
|
1343
|
-
/** Libelle courant */
|
|
1344
|
-
libcou: string;
|
|
1345
|
-
/** Libelle long courant */
|
|
1346
|
-
lilcou: string;
|
|
1347
|
-
/** Code interne */
|
|
1348
|
-
codint: string;
|
|
1349
|
-
/** Ordre de presentation dans les listes */
|
|
1350
|
-
tri: string | null;
|
|
1351
|
-
}
|
|
1352
|
-
/** Groupe politique */
|
|
1353
|
-
export interface GrppolAmeliInitializer {
|
|
1354
|
-
/** Identifiant */
|
|
1355
|
-
entid: EntId;
|
|
1356
|
-
/** Code */
|
|
1357
|
-
cod: string;
|
|
1358
|
-
/** Libelle courant */
|
|
1359
|
-
libcou: string;
|
|
1360
|
-
/** Libelle long courant */
|
|
1361
|
-
lilcou: string;
|
|
1362
|
-
/** Code interne */
|
|
1363
|
-
codint: string;
|
|
1364
|
-
/** Ordre de presentation dans les listes */
|
|
1365
|
-
tri?: string | null;
|
|
1366
|
-
}
|
|
1367
|
-
/** Groupe politique */
|
|
1368
|
-
export interface GrppolAmeliMutator {
|
|
1369
|
-
/** Identifiant */
|
|
1370
|
-
entid?: EntId;
|
|
1371
|
-
/** Code */
|
|
1372
|
-
cod?: string;
|
|
1373
|
-
/** Libelle courant */
|
|
1374
|
-
libcou?: string;
|
|
1375
|
-
/** Libelle long courant */
|
|
1376
|
-
lilcou?: string;
|
|
1377
|
-
/** Code interne */
|
|
1378
|
-
codint?: string;
|
|
1379
|
-
/** Ordre de presentation dans les listes */
|
|
1380
|
-
tri?: string | null;
|
|
1381
|
-
}
|
|
1382
|
-
export type TxtAmeliId = number;
|
|
1383
|
-
/** Liste des textes amendes */
|
|
1384
|
-
export interface TxtAmeli {
|
|
1385
|
-
/** Identifiant */
|
|
1386
|
-
id: TxtAmeliId;
|
|
1387
|
-
/** Identifiant de la nature du texte */
|
|
1388
|
-
natid: NatId;
|
|
1389
|
-
/** Identifiant de lecture */
|
|
1390
|
-
lecid: LecAmeliId;
|
|
1391
|
-
/** Identifiant de la session d'inscription */
|
|
1392
|
-
sesinsid: SesId | null;
|
|
1393
|
-
/** Identifiant de la session de depot */
|
|
1394
|
-
sesdepid: SesId;
|
|
1395
|
-
/** Identifiant de la mission (si texte de la loi de finance) */
|
|
1396
|
-
fbuid: FbuId | null;
|
|
1397
|
-
/** Numero du texte */
|
|
1398
786
|
num: string;
|
|
1399
|
-
/**
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
inl: string | null;
|
|
1403
|
-
/** Date de depot */
|
|
1404
|
-
datdep: Date;
|
|
1405
|
-
/** Urgence (avant la revision constitutionnelle de 2008) */
|
|
1406
|
-
urg: string;
|
|
1407
|
-
/** Indicateur de texte disponible */
|
|
1408
|
-
dis: string;
|
|
1409
|
-
/** Indicateur de texte en seconde deliberation */
|
|
1410
|
-
secdel: string;
|
|
1411
|
-
/** Texte du projet de loi de finance */
|
|
1412
|
-
loifin: string;
|
|
1413
|
-
/** Indicateur de la partie du projet de loi de finance */
|
|
1414
|
-
loifinpar: string | null;
|
|
1415
|
-
/** Indicateur de texte amendable */
|
|
1416
|
-
txtamd: string;
|
|
1417
|
-
/** Date d'adoption du texte */
|
|
1418
|
-
datado: Date | null;
|
|
1419
|
-
/** Numero d'adoption du texte */
|
|
1420
|
-
numado: string | null;
|
|
1421
|
-
/** Indicateur de texte examine */
|
|
1422
|
-
txtexa: string | null;
|
|
1423
|
-
/** Publication du delai limite */
|
|
1424
|
-
pubdellim: Date | null;
|
|
1425
|
-
/** Numero du texte (en chiffre) */
|
|
787
|
+
/**
|
|
788
|
+
* Numero du texte (en chiffre)
|
|
789
|
+
*/
|
|
1426
790
|
numabs: number | null;
|
|
1427
|
-
/**
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
/**
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
proacc: string;
|
|
1435
|
-
/** Type du texte */
|
|
1436
|
-
txttyp: string;
|
|
1437
|
-
/** Ordre de la seconde deliberation */
|
|
791
|
+
/**
|
|
792
|
+
* Numero d'adoption du texte
|
|
793
|
+
*/
|
|
794
|
+
numado: Int8 | null;
|
|
795
|
+
/**
|
|
796
|
+
* Ordre de la seconde deliberation
|
|
797
|
+
*/
|
|
1438
798
|
ordsnddelib: string | null;
|
|
1439
|
-
/** Identifiant de l'etat du texte */
|
|
1440
|
-
txtetaid: EtatxtId;
|
|
1441
|
-
/** ID du dérouleur fusionné */
|
|
1442
|
-
fusderid: TxtAmeliId | null;
|
|
1443
|
-
/** O sil sagit dun dérouleur fusionné, N sinon */
|
|
1444
|
-
fusder: string;
|
|
1445
|
-
/** Ordre de discussion des textes dans un dérouleur fusionné */
|
|
1446
|
-
fusderord: number;
|
|
1447
|
-
/** Type de fusion dérouleur DG ou DA */
|
|
1448
|
-
fusdertyp: string | null;
|
|
1449
|
-
}
|
|
1450
|
-
/** Liste des textes amendes */
|
|
1451
|
-
export interface TxtAmeliInitializer {
|
|
1452
|
-
/** Identifiant */
|
|
1453
|
-
id: TxtAmeliId;
|
|
1454
|
-
/** Identifiant de la nature du texte */
|
|
1455
|
-
natid: NatId;
|
|
1456
|
-
/** Identifiant de lecture */
|
|
1457
|
-
lecid: LecAmeliId;
|
|
1458
|
-
/** Identifiant de la session d'inscription */
|
|
1459
|
-
sesinsid?: SesId | null;
|
|
1460
|
-
/** Identifiant de la session de depot */
|
|
1461
|
-
sesdepid: SesId;
|
|
1462
|
-
/** Identifiant de la mission (si texte de la loi de finance) */
|
|
1463
|
-
fbuid?: FbuId | null;
|
|
1464
|
-
/** Numero du texte */
|
|
1465
|
-
num: string;
|
|
1466
|
-
/** Intitule du texte */
|
|
1467
|
-
int: string;
|
|
1468
|
-
/** Intitule long du texte */
|
|
1469
|
-
inl?: string | null;
|
|
1470
|
-
/** Date de depot */
|
|
1471
|
-
datdep: Date;
|
|
1472
799
|
/**
|
|
1473
|
-
*
|
|
1474
|
-
* Default value: 'N'::bpchar
|
|
800
|
+
* Procedure acceleree (depuis la reforme constitutionnelle de 2008)
|
|
1475
801
|
*/
|
|
1476
|
-
|
|
802
|
+
proacc: Generated<string>;
|
|
1477
803
|
/**
|
|
1478
|
-
*
|
|
1479
|
-
* Default value: 'O'::bpchar
|
|
804
|
+
* Publication du delai limite
|
|
1480
805
|
*/
|
|
1481
|
-
|
|
806
|
+
pubdellim: Timestamp | null;
|
|
1482
807
|
/**
|
|
1483
808
|
* Indicateur de texte en seconde deliberation
|
|
1484
|
-
* Default value: 'N'::bpchar
|
|
1485
809
|
*/
|
|
1486
|
-
secdel
|
|
810
|
+
secdel: Generated<string>;
|
|
1487
811
|
/**
|
|
1488
|
-
*
|
|
1489
|
-
* Default value: 'N'::bpchar
|
|
812
|
+
* Identifiant de la session de depot
|
|
1490
813
|
*/
|
|
1491
|
-
|
|
814
|
+
sesdepid: number;
|
|
1492
815
|
/**
|
|
1493
|
-
*
|
|
1494
|
-
* Default value: 0
|
|
816
|
+
* Identifiant de la session d'inscription
|
|
1495
817
|
*/
|
|
1496
|
-
|
|
818
|
+
sesinsid: number | null;
|
|
1497
819
|
/**
|
|
1498
820
|
* Indicateur de texte amendable
|
|
1499
|
-
* Default value: 'N'::bpchar
|
|
1500
821
|
*/
|
|
1501
|
-
txtamd
|
|
1502
|
-
/** Date d'adoption du texte */
|
|
1503
|
-
datado?: Date | null;
|
|
1504
|
-
/** Numero d'adoption du texte */
|
|
1505
|
-
numado?: string | null;
|
|
822
|
+
txtamd: Generated<string>;
|
|
1506
823
|
/**
|
|
1507
|
-
*
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
txtexa?: string | null;
|
|
1511
|
-
/** Publication du delai limite */
|
|
1512
|
-
pubdellim?: Date | null;
|
|
1513
|
-
/** Numero du texte (en chiffre) */
|
|
1514
|
-
numabs?: number | null;
|
|
1515
|
-
/** Libelle du delai limite */
|
|
1516
|
-
libdelim?: string | null;
|
|
1517
|
-
/** Libelle complementaire de la nature du texte */
|
|
1518
|
-
libcplnat?: string | null;
|
|
1519
|
-
/** Signet du dossier legislatif */
|
|
1520
|
-
doslegsignet?: string | null;
|
|
824
|
+
* Identifiant de l'etat du texte
|
|
825
|
+
*/
|
|
826
|
+
txtetaid: Generated<Int8>;
|
|
1521
827
|
/**
|
|
1522
|
-
*
|
|
1523
|
-
* Default value: 'N'::bpchar
|
|
828
|
+
* Indicateur de texte examine
|
|
1524
829
|
*/
|
|
1525
|
-
|
|
830
|
+
txtexa: Generated<string | null>;
|
|
1526
831
|
/**
|
|
1527
832
|
* Type du texte
|
|
1528
|
-
* Default value: 'S'::bpchar
|
|
1529
833
|
*/
|
|
1530
|
-
txttyp
|
|
1531
|
-
/** Ordre de la seconde deliberation */
|
|
1532
|
-
ordsnddelib?: string | null;
|
|
834
|
+
txttyp: Generated<string>;
|
|
1533
835
|
/**
|
|
1534
|
-
*
|
|
1535
|
-
* Default value: 0
|
|
836
|
+
* Urgence (avant la revision constitutionnelle de 2008)
|
|
1536
837
|
*/
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
838
|
+
urg: Generated<string>;
|
|
839
|
+
}
|
|
840
|
+
export interface Typrect {
|
|
1540
841
|
/**
|
|
1541
|
-
*
|
|
1542
|
-
* Default value: 'N'::bpchar
|
|
842
|
+
* Identifiant
|
|
1543
843
|
*/
|
|
1544
|
-
|
|
844
|
+
id: number;
|
|
1545
845
|
/**
|
|
1546
|
-
*
|
|
1547
|
-
* Default value: 0
|
|
846
|
+
* Libelle
|
|
1548
847
|
*/
|
|
1549
|
-
|
|
848
|
+
lib: string;
|
|
1550
849
|
/**
|
|
1551
|
-
*
|
|
1552
|
-
* Default value: NULL::bpchar
|
|
850
|
+
* Ordre
|
|
1553
851
|
*/
|
|
1554
|
-
|
|
1555
|
-
}
|
|
1556
|
-
/** Liste des textes amendes */
|
|
1557
|
-
export interface TxtAmeliMutator {
|
|
1558
|
-
/** Identifiant */
|
|
1559
|
-
id?: TxtAmeliId;
|
|
1560
|
-
/** Identifiant de la nature du texte */
|
|
1561
|
-
natid?: NatId;
|
|
1562
|
-
/** Identifiant de lecture */
|
|
1563
|
-
lecid?: LecAmeliId;
|
|
1564
|
-
/** Identifiant de la session d'inscription */
|
|
1565
|
-
sesinsid?: SesId | null;
|
|
1566
|
-
/** Identifiant de la session de depot */
|
|
1567
|
-
sesdepid?: SesId;
|
|
1568
|
-
/** Identifiant de la mission (si texte de la loi de finance) */
|
|
1569
|
-
fbuid?: FbuId | null;
|
|
1570
|
-
/** Numero du texte */
|
|
1571
|
-
num?: string;
|
|
1572
|
-
/** Intitule du texte */
|
|
1573
|
-
int?: string;
|
|
1574
|
-
/** Intitule long du texte */
|
|
1575
|
-
inl?: string | null;
|
|
1576
|
-
/** Date de depot */
|
|
1577
|
-
datdep?: Date;
|
|
1578
|
-
/** Urgence (avant la revision constitutionnelle de 2008) */
|
|
1579
|
-
urg?: string;
|
|
1580
|
-
/** Indicateur de texte disponible */
|
|
1581
|
-
dis?: string;
|
|
1582
|
-
/** Indicateur de texte en seconde deliberation */
|
|
1583
|
-
secdel?: string;
|
|
1584
|
-
/** Texte du projet de loi de finance */
|
|
1585
|
-
loifin?: string;
|
|
1586
|
-
/** Indicateur de la partie du projet de loi de finance */
|
|
1587
|
-
loifinpar?: string | null;
|
|
1588
|
-
/** Indicateur de texte amendable */
|
|
1589
|
-
txtamd?: string;
|
|
1590
|
-
/** Date d'adoption du texte */
|
|
1591
|
-
datado?: Date | null;
|
|
1592
|
-
/** Numero d'adoption du texte */
|
|
1593
|
-
numado?: string | null;
|
|
1594
|
-
/** Indicateur de texte examine */
|
|
1595
|
-
txtexa?: string | null;
|
|
1596
|
-
/** Publication du delai limite */
|
|
1597
|
-
pubdellim?: Date | null;
|
|
1598
|
-
/** Numero du texte (en chiffre) */
|
|
1599
|
-
numabs?: number | null;
|
|
1600
|
-
/** Libelle du delai limite */
|
|
1601
|
-
libdelim?: string | null;
|
|
1602
|
-
/** Libelle complementaire de la nature du texte */
|
|
1603
|
-
libcplnat?: string | null;
|
|
1604
|
-
/** Signet du dossier legislatif */
|
|
1605
|
-
doslegsignet?: string | null;
|
|
1606
|
-
/** Procedure acceleree (depuis la reforme constitutionnelle de 2008) */
|
|
1607
|
-
proacc?: string;
|
|
1608
|
-
/** Type du texte */
|
|
1609
|
-
txttyp?: string;
|
|
1610
|
-
/** Ordre de la seconde deliberation */
|
|
1611
|
-
ordsnddelib?: string | null;
|
|
1612
|
-
/** Identifiant de l'etat du texte */
|
|
1613
|
-
txtetaid?: EtatxtId;
|
|
1614
|
-
/** ID du dérouleur fusionné */
|
|
1615
|
-
fusderid?: TxtAmeliId | null;
|
|
1616
|
-
/** O sil sagit dun dérouleur fusionné, N sinon */
|
|
1617
|
-
fusder?: string;
|
|
1618
|
-
/** Ordre de discussion des textes dans un dérouleur fusionné */
|
|
1619
|
-
fusderord?: number;
|
|
1620
|
-
/** Type de fusion dérouleur DG ou DA */
|
|
1621
|
-
fusdertyp?: string | null;
|
|
852
|
+
ord: Int8;
|
|
1622
853
|
}
|
|
1623
|
-
export
|
|
1624
|
-
/**
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
/**
|
|
854
|
+
export interface Typses {
|
|
855
|
+
/**
|
|
856
|
+
* Identifiant
|
|
857
|
+
*/
|
|
858
|
+
id: number;
|
|
859
|
+
/**
|
|
860
|
+
* Libelle
|
|
861
|
+
*/
|
|
1629
862
|
lib: string | null;
|
|
1630
|
-
/** Indique si le role doit etre complete par le libelle de l'entite d'appartenance de l'orateur */
|
|
1631
|
-
entreq: string;
|
|
1632
863
|
}
|
|
1633
|
-
|
|
1634
|
-
export interface OrarolInitializer {
|
|
1635
|
-
/** Code */
|
|
1636
|
-
cod: OrarolCod;
|
|
1637
|
-
/** Libelle */
|
|
1638
|
-
lib?: string | null;
|
|
864
|
+
export interface Typsub {
|
|
1639
865
|
/**
|
|
1640
|
-
*
|
|
1641
|
-
* Default value: 'N'::bpchar
|
|
866
|
+
* Identifiant
|
|
1642
867
|
*/
|
|
1643
|
-
|
|
868
|
+
id: number;
|
|
869
|
+
/**
|
|
870
|
+
* Libelle
|
|
871
|
+
*/
|
|
872
|
+
lib: string;
|
|
1644
873
|
}
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
874
|
+
export interface WNivrec {
|
|
875
|
+
/**
|
|
876
|
+
* Libelle
|
|
877
|
+
*/
|
|
878
|
+
lib: string | null;
|
|
879
|
+
/**
|
|
880
|
+
* Numero
|
|
881
|
+
*/
|
|
882
|
+
num: Int8;
|
|
883
|
+
}
|
|
884
|
+
export interface DB {
|
|
885
|
+
amd: Amd;
|
|
886
|
+
amdsen: Amdsen;
|
|
887
|
+
avicom: Avicom;
|
|
888
|
+
avigvt: Avigvt;
|
|
889
|
+
cab: Cab;
|
|
890
|
+
com_ameli: ComAmeli;
|
|
891
|
+
ent: Ent;
|
|
892
|
+
etatxt: Etatxt;
|
|
893
|
+
fbu: Fbu;
|
|
894
|
+
grppol_ameli: GrppolAmeli;
|
|
895
|
+
gvt: Gvt;
|
|
896
|
+
intora: Intora;
|
|
897
|
+
irr: Irr;
|
|
898
|
+
lec_ameli: LecAmeli;
|
|
899
|
+
mot: Mot;
|
|
900
|
+
nat: Nat;
|
|
901
|
+
orarol: Orarol;
|
|
902
|
+
sai: Sai;
|
|
903
|
+
saisen: Saisen;
|
|
904
|
+
sea: Sea;
|
|
905
|
+
sen_ameli: SenAmeli;
|
|
906
|
+
ses: Ses;
|
|
907
|
+
sor: Sor;
|
|
908
|
+
sub: Sub;
|
|
909
|
+
txt_ameli: TxtAmeli;
|
|
910
|
+
typrect: Typrect;
|
|
911
|
+
typses: Typses;
|
|
912
|
+
typsub: Typsub;
|
|
913
|
+
w_nivrec: WNivrec;
|
|
1653
914
|
}
|
|
1654
|
-
export declare const TypsesIdSchema: z.Schema<TypsesId>;
|
|
1655
|
-
export declare const SeaIdSchema: z.Schema<SeaId>;
|
|
1656
|
-
export declare const AvicomIdSchema: z.Schema<AvicomId>;
|
|
1657
|
-
export declare const SesIdSchema: z.Schema<SesId>;
|
|
1658
|
-
export declare const FbuIdSchema: z.Schema<FbuId>;
|
|
1659
|
-
export declare const LecAmeliIdSchema: z.Schema<LecAmeliId>;
|
|
1660
|
-
export declare const AmdIdSchema: z.Schema<AmdId>;
|
|
1661
|
-
export declare const AvigvtIdSchema: z.Schema<AvigvtId>;
|
|
1662
|
-
export declare const EntIdSchema: z.Schema<EntId>;
|
|
1663
|
-
export declare const SaiIdSchema: z.Schema<SaiId>;
|
|
1664
|
-
export declare const TypsubIdSchema: z.Schema<TypsubId>;
|
|
1665
|
-
export declare const MotIdSchema: z.Schema<MotId>;
|
|
1666
|
-
export declare const EtatxtIdSchema: z.Schema<EtatxtId>;
|
|
1667
|
-
export declare const IrrIdSchema: z.Schema<IrrId>;
|
|
1668
|
-
export declare const IntoraIdSchema: z.Schema<IntoraId>;
|
|
1669
|
-
export declare const NatIdSchema: z.Schema<NatId>;
|
|
1670
|
-
export declare const SubIdSchema: z.Schema<SubId>;
|
|
1671
|
-
export declare const TyprectIdSchema: z.Schema<TyprectId>;
|
|
1672
|
-
export declare const SorIdSchema: z.Schema<SorId>;
|
|
1673
|
-
export declare const WNivrecNumSchema: z.Schema<WNivrecNum>;
|
|
1674
|
-
export declare const TxtAmeliIdSchema: z.Schema<TxtAmeliId>;
|
|
1675
|
-
export declare const OrarolCodSchema: z.Schema<OrarolCod>;
|
|
1676
|
-
export declare const TypsesSchema: z.Schema<Typses>;
|
|
1677
|
-
export declare const TypsesInitializerSchema: z.Schema<TypsesInitializer>;
|
|
1678
|
-
export declare const TypsesMutatorSchema: z.Schema<TypsesMutator>;
|
|
1679
|
-
export declare const SaisenSchema: z.Schema<Saisen>;
|
|
1680
|
-
export declare const SaisenInitializerSchema: z.Schema<SaisenInitializer>;
|
|
1681
|
-
export declare const SaisenMutatorSchema: z.Schema<SaisenMutator>;
|
|
1682
|
-
export declare const SeaSchema: z.Schema<Sea>;
|
|
1683
|
-
export declare const SeaInitializerSchema: z.Schema<SeaInitializer>;
|
|
1684
|
-
export declare const SeaMutatorSchema: z.Schema<SeaMutator>;
|
|
1685
|
-
export declare const AvicomSchema: z.Schema<Avicom>;
|
|
1686
|
-
export declare const AvicomInitializerSchema: z.Schema<AvicomInitializer>;
|
|
1687
|
-
export declare const AvicomMutatorSchema: z.Schema<AvicomMutator>;
|
|
1688
|
-
export declare const SesSchema: z.Schema<Ses>;
|
|
1689
|
-
export declare const SesInitializerSchema: z.Schema<SesInitializer>;
|
|
1690
|
-
export declare const SesMutatorSchema: z.Schema<SesMutator>;
|
|
1691
|
-
export declare const FbuSchema: z.Schema<Fbu>;
|
|
1692
|
-
export declare const FbuInitializerSchema: z.Schema<FbuInitializer>;
|
|
1693
|
-
export declare const FbuMutatorSchema: z.Schema<FbuMutator>;
|
|
1694
|
-
export declare const LecAmeliSchema: z.Schema<LecAmeli>;
|
|
1695
|
-
export declare const LecAmeliInitializerSchema: z.Schema<LecAmeliInitializer>;
|
|
1696
|
-
export declare const LecAmeliMutatorSchema: z.Schema<LecAmeliMutator>;
|
|
1697
|
-
export declare const AmdSchema: z.Schema<Amd>;
|
|
1698
|
-
export declare const AmdInitializerSchema: z.Schema<AmdInitializer>;
|
|
1699
|
-
export declare const AmdMutatorSchema: z.Schema<AmdMutator>;
|
|
1700
|
-
export declare const CabSchema: z.Schema<Cab>;
|
|
1701
|
-
export declare const CabInitializerSchema: z.Schema<CabInitializer>;
|
|
1702
|
-
export declare const CabMutatorSchema: z.Schema<CabMutator>;
|
|
1703
|
-
export declare const AvigvtSchema: z.Schema<Avigvt>;
|
|
1704
|
-
export declare const AvigvtInitializerSchema: z.Schema<AvigvtInitializer>;
|
|
1705
|
-
export declare const AvigvtMutatorSchema: z.Schema<AvigvtMutator>;
|
|
1706
|
-
export declare const EntSchema: z.Schema<Ent>;
|
|
1707
|
-
export declare const EntInitializerSchema: z.Schema<EntInitializer>;
|
|
1708
|
-
export declare const EntMutatorSchema: z.Schema<EntMutator>;
|
|
1709
|
-
export declare const SaiSchema: z.Schema<Sai>;
|
|
1710
|
-
export declare const SaiInitializerSchema: z.Schema<SaiInitializer>;
|
|
1711
|
-
export declare const SaiMutatorSchema: z.Schema<SaiMutator>;
|
|
1712
|
-
export declare const TypsubSchema: z.Schema<Typsub>;
|
|
1713
|
-
export declare const TypsubInitializerSchema: z.Schema<TypsubInitializer>;
|
|
1714
|
-
export declare const TypsubMutatorSchema: z.Schema<TypsubMutator>;
|
|
1715
|
-
export declare const SenAmeliSchema: z.Schema<SenAmeli>;
|
|
1716
|
-
export declare const SenAmeliInitializerSchema: z.Schema<SenAmeliInitializer>;
|
|
1717
|
-
export declare const SenAmeliMutatorSchema: z.Schema<SenAmeliMutator>;
|
|
1718
|
-
export declare const MotSchema: z.Schema<Mot>;
|
|
1719
|
-
export declare const MotInitializerSchema: z.Schema<MotInitializer>;
|
|
1720
|
-
export declare const MotMutatorSchema: z.Schema<MotMutator>;
|
|
1721
|
-
export declare const AmdsenSchema: z.Schema<Amdsen>;
|
|
1722
|
-
export declare const AmdsenInitializerSchema: z.Schema<AmdsenInitializer>;
|
|
1723
|
-
export declare const AmdsenMutatorSchema: z.Schema<AmdsenMutator>;
|
|
1724
|
-
export declare const EtatxtSchema: z.Schema<Etatxt>;
|
|
1725
|
-
export declare const EtatxtInitializerSchema: z.Schema<EtatxtInitializer>;
|
|
1726
|
-
export declare const EtatxtMutatorSchema: z.Schema<EtatxtMutator>;
|
|
1727
|
-
export declare const IrrSchema: z.Schema<Irr>;
|
|
1728
|
-
export declare const IrrInitializerSchema: z.Schema<IrrInitializer>;
|
|
1729
|
-
export declare const IrrMutatorSchema: z.Schema<IrrMutator>;
|
|
1730
|
-
export declare const IntoraSchema: z.Schema<Intora>;
|
|
1731
|
-
export declare const IntoraInitializerSchema: z.Schema<IntoraInitializer>;
|
|
1732
|
-
export declare const IntoraMutatorSchema: z.Schema<IntoraMutator>;
|
|
1733
|
-
export declare const NatSchema: z.Schema<Nat>;
|
|
1734
|
-
export declare const NatInitializerSchema: z.Schema<NatInitializer>;
|
|
1735
|
-
export declare const NatMutatorSchema: z.Schema<NatMutator>;
|
|
1736
|
-
export declare const GvtSchema: z.Schema<Gvt>;
|
|
1737
|
-
export declare const GvtInitializerSchema: z.Schema<GvtInitializer>;
|
|
1738
|
-
export declare const GvtMutatorSchema: z.Schema<GvtMutator>;
|
|
1739
|
-
export declare const SubSchema: z.Schema<Sub>;
|
|
1740
|
-
export declare const SubInitializerSchema: z.Schema<SubInitializer>;
|
|
1741
|
-
export declare const SubMutatorSchema: z.Schema<SubMutator>;
|
|
1742
|
-
export declare const TyprectSchema: z.Schema<Typrect>;
|
|
1743
|
-
export declare const TyprectInitializerSchema: z.Schema<TyprectInitializer>;
|
|
1744
|
-
export declare const TyprectMutatorSchema: z.Schema<TyprectMutator>;
|
|
1745
|
-
export declare const ComAmeliSchema: z.Schema<ComAmeli>;
|
|
1746
|
-
export declare const ComAmeliInitializerSchema: z.Schema<ComAmeliInitializer>;
|
|
1747
|
-
export declare const ComAmeliMutatorSchema: z.Schema<ComAmeliMutator>;
|
|
1748
|
-
export declare const SorSchema: z.Schema<Sor>;
|
|
1749
|
-
export declare const SorInitializerSchema: z.Schema<SorInitializer>;
|
|
1750
|
-
export declare const SorMutatorSchema: z.Schema<SorMutator>;
|
|
1751
|
-
export declare const WNivrecSchema: z.Schema<WNivrec>;
|
|
1752
|
-
export declare const WNivrecInitializerSchema: z.Schema<WNivrecInitializer>;
|
|
1753
|
-
export declare const WNivrecMutatorSchema: z.Schema<WNivrecMutator>;
|
|
1754
|
-
export declare const GrppolAmeliSchema: z.Schema<GrppolAmeli>;
|
|
1755
|
-
export declare const GrppolAmeliInitializerSchema: z.Schema<GrppolAmeliInitializer>;
|
|
1756
|
-
export declare const GrppolAmeliMutatorSchema: z.Schema<GrppolAmeliMutator>;
|
|
1757
|
-
export declare const TxtAmeliSchema: z.Schema<TxtAmeli>;
|
|
1758
|
-
export declare const TxtAmeliInitializerSchema: z.Schema<TxtAmeliInitializer>;
|
|
1759
|
-
export declare const TxtAmeliMutatorSchema: z.Schema<TxtAmeliMutator>;
|
|
1760
|
-
export declare const OrarolSchema: z.Schema<Orarol>;
|
|
1761
|
-
export declare const OrarolInitializerSchema: z.Schema<OrarolInitializer>;
|
|
1762
|
-
export declare const OrarolMutatorSchema: z.Schema<OrarolMutator>;
|