@tricoteuses/senat 3.1.2 → 3.1.4
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/rich_types/dosleg.js +13 -3
- package/lib/src/rich_types/sens.d.ts +2 -0
- package/lib/src/scripts/data-download.js +16 -9
- package/lib/src/scripts/retrieve_open_data.js +4 -2
- package/lib/src/scripts/shared/make_generate_zod_schemas.js +6 -2
- package/lib/src/server/databases_postgres.js +2 -1
- package/lib/src/server/documents.js +2 -2
- package/lib/src/server/dosleg.js +2 -2
- package/lib/src/server/sens.js +70 -0
- package/lib/src/utils/reunion_parsing.js +1 -1
- package/package.json +3 -1
- package/lib/src/config.d.ts +0 -43
- package/lib/src/config.js +0 -37
- package/lib/src/conversion_textes.d.ts +0 -11
- package/lib/src/conversion_textes.js +0 -320
- package/lib/src/databases_postgres.d.ts +0 -4
- package/lib/src/databases_postgres.js +0 -23
- package/lib/src/datasets.d.ts +0 -38
- package/lib/src/datasets.js +0 -247
- package/lib/src/git.d.ts +0 -27
- package/lib/src/git.js +0 -251
- package/lib/src/loaders.d.ts +0 -52
- package/lib/src/loaders.js +0 -260
- package/lib/src/model/agenda.d.ts +0 -6
- package/lib/src/model/agenda.js +0 -148
- package/lib/src/model/ameli.d.ts +0 -67
- package/lib/src/model/ameli.js +0 -150
- package/lib/src/model/commission.d.ts +0 -19
- package/lib/src/model/commission.js +0 -269
- package/lib/src/model/debats.d.ts +0 -39
- package/lib/src/model/debats.js +0 -112
- package/lib/src/model/documents.d.ts +0 -32
- package/lib/src/model/documents.js +0 -182
- package/lib/src/model/dosleg.d.ts +0 -144
- package/lib/src/model/dosleg.js +0 -468
- package/lib/src/model/index.d.ts +0 -7
- package/lib/src/model/index.js +0 -7
- package/lib/src/model/questions.d.ts +0 -54
- package/lib/src/model/questions.js +0 -91
- package/lib/src/model/scrutins.d.ts +0 -48
- package/lib/src/model/scrutins.js +0 -121
- package/lib/src/model/seance.d.ts +0 -3
- package/lib/src/model/seance.js +0 -267
- package/lib/src/model/sens.d.ts +0 -112
- package/lib/src/model/sens.js +0 -385
- package/lib/src/model/util.d.ts +0 -1
- package/lib/src/model/util.js +0 -15
- package/lib/src/raw_types/ameli.d.ts +0 -1762
- package/lib/src/raw_types/ameli.js +0 -1074
- package/lib/src/raw_types/debats.d.ts +0 -380
- package/lib/src/raw_types/debats.js +0 -266
- package/lib/src/raw_types/dosleg.d.ts +0 -2954
- package/lib/src/raw_types/dosleg.js +0 -2005
- package/lib/src/raw_types/questions.d.ts +0 -699
- package/lib/src/raw_types/questions.js +0 -493
- package/lib/src/raw_types/sens.d.ts +0 -7843
- package/lib/src/raw_types/sens.js +0 -4691
- package/lib/src/raw_types_schemats/ameli.d.ts +0 -541
- package/lib/src/raw_types_schemats/ameli.js +0 -2
- package/lib/src/raw_types_schemats/debats.d.ts +0 -127
- package/lib/src/raw_types_schemats/debats.js +0 -2
- package/lib/src/raw_types_schemats/dosleg.d.ts +0 -977
- package/lib/src/raw_types_schemats/dosleg.js +0 -2
- package/lib/src/raw_types_schemats/questions.d.ts +0 -237
- package/lib/src/raw_types_schemats/questions.js +0 -2
- package/lib/src/raw_types_schemats/sens.d.ts +0 -2709
- package/lib/src/raw_types_schemats/sens.js +0 -2
- package/lib/src/types/agenda.d.ts +0 -45
- package/lib/src/types/agenda.js +0 -1
- package/lib/src/types/ameli.d.ts +0 -5
- package/lib/src/types/ameli.js +0 -1
- package/lib/src/types/compte_rendu.d.ts +0 -83
- package/lib/src/types/compte_rendu.js +0 -1
- package/lib/src/types/debats.d.ts +0 -2
- package/lib/src/types/debats.js +0 -1
- package/lib/src/types/dosleg.d.ts +0 -70
- package/lib/src/types/dosleg.js +0 -1
- package/lib/src/types/questions.d.ts +0 -2
- package/lib/src/types/questions.js +0 -1
- package/lib/src/types/sens.d.ts +0 -8
- package/lib/src/types/sens.js +0 -1
- package/lib/src/types/sessions.d.ts +0 -6
- package/lib/src/types/sessions.js +0 -19
- package/lib/src/types/texte.d.ts +0 -72
- package/lib/src/types/texte.js +0 -15
- package/lib/src/validators/config.d.ts +0 -9
- package/lib/src/validators/config.js +0 -10
|
@@ -1,1762 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
export type TypsesId = number;
|
|
3
|
-
/** Types de session */
|
|
4
|
-
export interface Typses {
|
|
5
|
-
/** Identifiant */
|
|
6
|
-
id: TypsesId;
|
|
7
|
-
/** Libelle */
|
|
8
|
-
lib: string | null;
|
|
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;
|
|
41
|
-
/**
|
|
42
|
-
* Ordre
|
|
43
|
-
* Default value: 1
|
|
44
|
-
*/
|
|
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
|
-
num: string | null;
|
|
67
|
-
}
|
|
68
|
-
/** Inscription des textes en seance publique */
|
|
69
|
-
export interface SeaInitializer {
|
|
70
|
-
/** Identifiant */
|
|
71
|
-
id: SeaId;
|
|
72
|
-
/** Identifiant de la session */
|
|
73
|
-
sesid: SesId;
|
|
74
|
-
/** Date de la seance */
|
|
75
|
-
dat?: Date | null;
|
|
76
|
-
/** Numero de la seance */
|
|
77
|
-
num?: string | null;
|
|
78
|
-
}
|
|
79
|
-
/** Inscription des textes en seance publique */
|
|
80
|
-
export interface SeaMutator {
|
|
81
|
-
/** Identifiant */
|
|
82
|
-
id?: SeaId;
|
|
83
|
-
/** Identifiant de la session */
|
|
84
|
-
sesid?: SesId;
|
|
85
|
-
/** Date de la seance */
|
|
86
|
-
dat?: Date | null;
|
|
87
|
-
/** Numero de la seance */
|
|
88
|
-
num?: string | null;
|
|
89
|
-
}
|
|
90
|
-
export type AvicomId = string;
|
|
91
|
-
/** Avis de la commission */
|
|
92
|
-
export interface Avicom {
|
|
93
|
-
/** Identifiant */
|
|
94
|
-
id: AvicomId;
|
|
95
|
-
/** Libelle */
|
|
96
|
-
lib: string;
|
|
97
|
-
/** Code */
|
|
98
|
-
cod: string;
|
|
99
|
-
}
|
|
100
|
-
/** Avis de la commission */
|
|
101
|
-
export interface AvicomInitializer {
|
|
102
|
-
/** Identifiant */
|
|
103
|
-
id: AvicomId;
|
|
104
|
-
/** Libelle */
|
|
105
|
-
lib: string;
|
|
106
|
-
/** Code */
|
|
107
|
-
cod: string;
|
|
108
|
-
}
|
|
109
|
-
/** Avis de la commission */
|
|
110
|
-
export interface AvicomMutator {
|
|
111
|
-
/** Identifiant */
|
|
112
|
-
id?: AvicomId;
|
|
113
|
-
/** Libelle */
|
|
114
|
-
lib?: string;
|
|
115
|
-
/** Code */
|
|
116
|
-
cod?: string;
|
|
117
|
-
}
|
|
118
|
-
export type SesId = number;
|
|
119
|
-
/** Sessions parlementaires */
|
|
120
|
-
export interface Ses {
|
|
121
|
-
/** Identifiant */
|
|
122
|
-
id: SesId;
|
|
123
|
-
/** Type de session */
|
|
124
|
-
typid: TypsesId;
|
|
125
|
-
/** Annee de session */
|
|
126
|
-
ann: string;
|
|
127
|
-
/** Libelle long */
|
|
128
|
-
lil: string;
|
|
129
|
-
}
|
|
130
|
-
/** Sessions parlementaires */
|
|
131
|
-
export interface SesInitializer {
|
|
132
|
-
/** Identifiant */
|
|
133
|
-
id: SesId;
|
|
134
|
-
/** Type de session */
|
|
135
|
-
typid: TypsesId;
|
|
136
|
-
/** Annee de session */
|
|
137
|
-
ann: string;
|
|
138
|
-
/** Libelle long */
|
|
139
|
-
lil: string;
|
|
140
|
-
}
|
|
141
|
-
/** Sessions parlementaires */
|
|
142
|
-
export interface SesMutator {
|
|
143
|
-
/** Identifiant */
|
|
144
|
-
id?: SesId;
|
|
145
|
-
/** Type de session */
|
|
146
|
-
typid?: TypsesId;
|
|
147
|
-
/** Annee de session */
|
|
148
|
-
ann?: string;
|
|
149
|
-
/** Libelle long */
|
|
150
|
-
lil?: string;
|
|
151
|
-
}
|
|
152
|
-
export type FbuId = number;
|
|
153
|
-
/** Missions de la loi de finance */
|
|
154
|
-
export interface Fbu {
|
|
155
|
-
/** Identifiant */
|
|
156
|
-
id: FbuId;
|
|
157
|
-
/** Libelle */
|
|
158
|
-
lib: string;
|
|
159
|
-
/** Libelle court */
|
|
160
|
-
lic: string;
|
|
161
|
-
/** Session de depot */
|
|
162
|
-
sesid: SesId;
|
|
163
|
-
}
|
|
164
|
-
/** Missions de la loi de finance */
|
|
165
|
-
export interface FbuInitializer {
|
|
166
|
-
/** Identifiant */
|
|
167
|
-
id: FbuId;
|
|
168
|
-
/** Libelle */
|
|
169
|
-
lib: string;
|
|
170
|
-
/** Libelle court */
|
|
171
|
-
lic: string;
|
|
172
|
-
/** Session de depot */
|
|
173
|
-
sesid: SesId;
|
|
174
|
-
}
|
|
175
|
-
/** Missions de la loi de finance */
|
|
176
|
-
export interface FbuMutator {
|
|
177
|
-
/** Identifiant */
|
|
178
|
-
id?: FbuId;
|
|
179
|
-
/** Libelle */
|
|
180
|
-
lib?: string;
|
|
181
|
-
/** Libelle court */
|
|
182
|
-
lic?: string;
|
|
183
|
-
/** Session de depot */
|
|
184
|
-
sesid?: SesId;
|
|
185
|
-
}
|
|
186
|
-
export type LecAmeliId = number;
|
|
187
|
-
/** Niveau de lecture des textes */
|
|
188
|
-
export interface LecAmeli {
|
|
189
|
-
/** Identifiant */
|
|
190
|
-
id: LecAmeliId;
|
|
191
|
-
/** Libelle */
|
|
192
|
-
lib: string;
|
|
193
|
-
/** Lecture precedente */
|
|
194
|
-
lecpreid: LecAmeliId | null;
|
|
195
|
-
}
|
|
196
|
-
/** Niveau de lecture des textes */
|
|
197
|
-
export interface LecAmeliInitializer {
|
|
198
|
-
/** Identifiant */
|
|
199
|
-
id: LecAmeliId;
|
|
200
|
-
/** Libelle */
|
|
201
|
-
lib: string;
|
|
202
|
-
/** Lecture precedente */
|
|
203
|
-
lecpreid?: LecAmeliId | null;
|
|
204
|
-
}
|
|
205
|
-
/** Niveau de lecture des textes */
|
|
206
|
-
export interface LecAmeliMutator {
|
|
207
|
-
/** Identifiant */
|
|
208
|
-
id?: LecAmeliId;
|
|
209
|
-
/** Libelle */
|
|
210
|
-
lib?: string;
|
|
211
|
-
/** Lecture precedente */
|
|
212
|
-
lecpreid?: LecAmeliId | null;
|
|
213
|
-
}
|
|
214
|
-
export type AmdId = number;
|
|
215
|
-
/** Amendements */
|
|
216
|
-
export interface Amd {
|
|
217
|
-
/** Identifiant */
|
|
218
|
-
id: AmdId;
|
|
219
|
-
/** Identifiant de la subdivision amendee */
|
|
220
|
-
subid: SubId | null;
|
|
221
|
-
/** Identifiant de l'amendement pere pour les sous-amendements */
|
|
222
|
-
amdperid: AmdId | null;
|
|
223
|
-
/** Identifiant de la motion */
|
|
224
|
-
motid: MotId | null;
|
|
225
|
-
/** Identifiant de l'etat de l'amendement */
|
|
226
|
-
etaid: number;
|
|
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;
|
|
291
|
-
}
|
|
292
|
-
/** Amendements */
|
|
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;
|
|
326
|
-
/**
|
|
327
|
-
* Niveau de rectification
|
|
328
|
-
* Default value: 0
|
|
329
|
-
*/
|
|
330
|
-
rev?: string;
|
|
331
|
-
/**
|
|
332
|
-
* Type d'amendement
|
|
333
|
-
* Default value: 'A'::bpchar
|
|
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;
|
|
346
|
-
/**
|
|
347
|
-
* Indication de la mention -Et plusieurs de ses collegues-
|
|
348
|
-
* Default value: 'N'::bpchar
|
|
349
|
-
*/
|
|
350
|
-
autext?: string;
|
|
351
|
-
/**
|
|
352
|
-
* Identification des amendements portant sur article additionnel (si different de 0)
|
|
353
|
-
* Default value: 0
|
|
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;
|
|
366
|
-
/**
|
|
367
|
-
* Amendement depose avec l'accord du gouvernement
|
|
368
|
-
* Default value: 'N'::character varying
|
|
369
|
-
*/
|
|
370
|
-
accgou?: string | null;
|
|
371
|
-
/**
|
|
372
|
-
* Indication de la mendion -Et plusieurs de ses collegues- (uniquement pour les amendements de commission)
|
|
373
|
-
* Default value: 'N'::bpchar
|
|
374
|
-
*/
|
|
375
|
-
colleg?: string;
|
|
376
|
-
/**
|
|
377
|
-
* Identifiant du type de rectification
|
|
378
|
-
* Default value: 5
|
|
379
|
-
*/
|
|
380
|
-
typrectid?: TyprectId | null;
|
|
381
|
-
/**
|
|
382
|
-
* Endroit ou de la motion qui sera examinee. M pour le derouleur de la motion. G pour la discussion generale
|
|
383
|
-
* Default value: 'M'::bpchar
|
|
384
|
-
*/
|
|
385
|
-
motposexa?: string;
|
|
386
|
-
/**
|
|
387
|
-
* 'I' si Irrecevable LO-111-3 par la commission des affaires sociales, 'R' si recevable, null si non instruit
|
|
388
|
-
* Default value: NULL::bpchar
|
|
389
|
-
*/
|
|
390
|
-
irrlo1113valid?: string | null;
|
|
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;
|
|
545
|
-
/**
|
|
546
|
-
* Actif ou non
|
|
547
|
-
* Default value: 'O'::bpchar
|
|
548
|
-
*/
|
|
549
|
-
act?: string | null;
|
|
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;
|
|
592
|
-
/**
|
|
593
|
-
* Indique si la commission saisie pour avis est déléguée au fond
|
|
594
|
-
* Default value: 'N'::bpchar
|
|
595
|
-
*/
|
|
596
|
-
isdelegfond?: string;
|
|
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;
|
|
689
|
-
/**
|
|
690
|
-
* Indication de senateurs homonymes
|
|
691
|
-
* Default value: 'N'::bpchar
|
|
692
|
-
*/
|
|
693
|
-
hom?: string | null;
|
|
694
|
-
/**
|
|
695
|
-
* Indication de senateurs apparentes
|
|
696
|
-
* Default value: 'N'::bpchar
|
|
697
|
-
*/
|
|
698
|
-
app?: string | null;
|
|
699
|
-
/**
|
|
700
|
-
* Indication de senateurs rattache a un groupe
|
|
701
|
-
* Default value: 'N'::bpchar
|
|
702
|
-
*/
|
|
703
|
-
ratt?: string | null;
|
|
704
|
-
/** Nom usuel en minuscule */
|
|
705
|
-
nomusemin: string;
|
|
706
|
-
/**
|
|
707
|
-
* Indication de feminisation des titres
|
|
708
|
-
* Default value: 'N'::character varying
|
|
709
|
-
*/
|
|
710
|
-
senfem?: string | null;
|
|
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;
|
|
815
|
-
/**
|
|
816
|
-
* Rang dans l'ordre des signataires
|
|
817
|
-
* Default value: 0
|
|
818
|
-
*/
|
|
819
|
-
rng?: string | null;
|
|
820
|
-
/** Qualite */
|
|
821
|
-
qua?: string | null;
|
|
822
|
-
/** Nom usuel */
|
|
823
|
-
nomuse?: string | null;
|
|
824
|
-
/** Prenom usuel */
|
|
825
|
-
prenomuse?: string | null;
|
|
826
|
-
/**
|
|
827
|
-
* Indication de senateurs homonymes
|
|
828
|
-
* Default value: 'N'::bpchar
|
|
829
|
-
*/
|
|
830
|
-
hom?: string | null;
|
|
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;
|
|
974
|
-
/**
|
|
975
|
-
* Code du role de l'orateur
|
|
976
|
-
* Default value: 'SEN'::character varying
|
|
977
|
-
*/
|
|
978
|
-
rolcod?: OrarolCod;
|
|
979
|
-
/**
|
|
980
|
-
* Duree de l'intevrention
|
|
981
|
-
* Default value: 0
|
|
982
|
-
*/
|
|
983
|
-
temps?: number;
|
|
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;
|
|
1132
|
-
/**
|
|
1133
|
-
* Indicateur de subdivision dupliquee
|
|
1134
|
-
* Default value: 'N'::bpchar
|
|
1135
|
-
*/
|
|
1136
|
-
dupl?: string;
|
|
1137
|
-
/**
|
|
1138
|
-
* Indicateur de subdivision amendable
|
|
1139
|
-
* Default value: 'O'::bpchar
|
|
1140
|
-
*/
|
|
1141
|
-
subamd?: string;
|
|
1142
|
-
sorid?: string | null;
|
|
1143
|
-
/** ID du dérouleur texte */
|
|
1144
|
-
txtidder?: number | null;
|
|
1145
|
-
/**
|
|
1146
|
-
* Style daffichage dans le dérouleur
|
|
1147
|
-
* Default value: 'AUCUN'::character varying
|
|
1148
|
-
*/
|
|
1149
|
-
style?: string;
|
|
1150
|
-
/**
|
|
1151
|
-
* Indique si la subdivision est soumise au LEC
|
|
1152
|
-
* Default value: 'N'::bpchar
|
|
1153
|
-
*/
|
|
1154
|
-
islec?: string;
|
|
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;
|
|
1250
|
-
/**
|
|
1251
|
-
* Indication si commission speciale
|
|
1252
|
-
* Default value: 'N'::bpchar
|
|
1253
|
-
*/
|
|
1254
|
-
spc?: string;
|
|
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;
|
|
1297
|
-
/**
|
|
1298
|
-
* Type
|
|
1299
|
-
* Default value: 'S'::bpchar
|
|
1300
|
-
*/
|
|
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
|
-
num: string;
|
|
1399
|
-
/** Intitule du texte */
|
|
1400
|
-
int: string;
|
|
1401
|
-
/** Intitule long du texte */
|
|
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) */
|
|
1426
|
-
numabs: number | null;
|
|
1427
|
-
/** Libelle du delai limite */
|
|
1428
|
-
libdelim: string | null;
|
|
1429
|
-
/** Libelle complementaire de la nature du texte */
|
|
1430
|
-
libcplnat: string | null;
|
|
1431
|
-
/** Signet du dossier legislatif */
|
|
1432
|
-
doslegsignet: string | null;
|
|
1433
|
-
/** Procedure acceleree (depuis la reforme constitutionnelle de 2008) */
|
|
1434
|
-
proacc: string;
|
|
1435
|
-
/** Type du texte */
|
|
1436
|
-
txttyp: string;
|
|
1437
|
-
/** Ordre de la seconde deliberation */
|
|
1438
|
-
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
|
-
/**
|
|
1473
|
-
* Urgence (avant la revision constitutionnelle de 2008)
|
|
1474
|
-
* Default value: 'N'::bpchar
|
|
1475
|
-
*/
|
|
1476
|
-
urg?: string;
|
|
1477
|
-
/**
|
|
1478
|
-
* Indicateur de texte disponible
|
|
1479
|
-
* Default value: 'O'::bpchar
|
|
1480
|
-
*/
|
|
1481
|
-
dis?: string;
|
|
1482
|
-
/**
|
|
1483
|
-
* Indicateur de texte en seconde deliberation
|
|
1484
|
-
* Default value: 'N'::bpchar
|
|
1485
|
-
*/
|
|
1486
|
-
secdel?: string;
|
|
1487
|
-
/**
|
|
1488
|
-
* Texte du projet de loi de finance
|
|
1489
|
-
* Default value: 'N'::bpchar
|
|
1490
|
-
*/
|
|
1491
|
-
loifin?: string;
|
|
1492
|
-
/**
|
|
1493
|
-
* Indicateur de la partie du projet de loi de finance
|
|
1494
|
-
* Default value: 0
|
|
1495
|
-
*/
|
|
1496
|
-
loifinpar?: string | null;
|
|
1497
|
-
/**
|
|
1498
|
-
* Indicateur de texte amendable
|
|
1499
|
-
* Default value: 'N'::bpchar
|
|
1500
|
-
*/
|
|
1501
|
-
txtamd?: string;
|
|
1502
|
-
/** Date d'adoption du texte */
|
|
1503
|
-
datado?: Date | null;
|
|
1504
|
-
/** Numero d'adoption du texte */
|
|
1505
|
-
numado?: string | null;
|
|
1506
|
-
/**
|
|
1507
|
-
* Indicateur de texte examine
|
|
1508
|
-
* Default value: 'N'::bpchar
|
|
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;
|
|
1521
|
-
/**
|
|
1522
|
-
* Procedure acceleree (depuis la reforme constitutionnelle de 2008)
|
|
1523
|
-
* Default value: 'N'::bpchar
|
|
1524
|
-
*/
|
|
1525
|
-
proacc?: string;
|
|
1526
|
-
/**
|
|
1527
|
-
* Type du texte
|
|
1528
|
-
* Default value: 'S'::bpchar
|
|
1529
|
-
*/
|
|
1530
|
-
txttyp?: string;
|
|
1531
|
-
/** Ordre de la seconde deliberation */
|
|
1532
|
-
ordsnddelib?: string | null;
|
|
1533
|
-
/**
|
|
1534
|
-
* Identifiant de l'etat du texte
|
|
1535
|
-
* Default value: 0
|
|
1536
|
-
*/
|
|
1537
|
-
txtetaid?: EtatxtId;
|
|
1538
|
-
/** ID du dérouleur fusionné */
|
|
1539
|
-
fusderid?: TxtAmeliId | null;
|
|
1540
|
-
/**
|
|
1541
|
-
* O sil sagit dun dérouleur fusionné, N sinon
|
|
1542
|
-
* Default value: 'N'::bpchar
|
|
1543
|
-
*/
|
|
1544
|
-
fusder?: string;
|
|
1545
|
-
/**
|
|
1546
|
-
* Ordre de discussion des textes dans un dérouleur fusionné
|
|
1547
|
-
* Default value: 0
|
|
1548
|
-
*/
|
|
1549
|
-
fusderord?: number;
|
|
1550
|
-
/**
|
|
1551
|
-
* Type de fusion dérouleur DG ou DA
|
|
1552
|
-
* Default value: NULL::bpchar
|
|
1553
|
-
*/
|
|
1554
|
-
fusdertyp?: string | null;
|
|
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;
|
|
1622
|
-
}
|
|
1623
|
-
export type OrarolCod = string;
|
|
1624
|
-
/** Role des orateurs */
|
|
1625
|
-
export interface Orarol {
|
|
1626
|
-
/** Code */
|
|
1627
|
-
cod: OrarolCod;
|
|
1628
|
-
/** Libelle */
|
|
1629
|
-
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
|
-
}
|
|
1633
|
-
/** Role des orateurs */
|
|
1634
|
-
export interface OrarolInitializer {
|
|
1635
|
-
/** Code */
|
|
1636
|
-
cod: OrarolCod;
|
|
1637
|
-
/** Libelle */
|
|
1638
|
-
lib?: string | null;
|
|
1639
|
-
/**
|
|
1640
|
-
* Indique si le role doit etre complete par le libelle de l'entite d'appartenance de l'orateur
|
|
1641
|
-
* Default value: 'N'::bpchar
|
|
1642
|
-
*/
|
|
1643
|
-
entreq?: string;
|
|
1644
|
-
}
|
|
1645
|
-
/** Role des orateurs */
|
|
1646
|
-
export interface OrarolMutator {
|
|
1647
|
-
/** Code */
|
|
1648
|
-
cod?: OrarolCod;
|
|
1649
|
-
/** Libelle */
|
|
1650
|
-
lib?: string | null;
|
|
1651
|
-
/** Indique si le role doit etre complete par le libelle de l'entite d'appartenance de l'orateur */
|
|
1652
|
-
entreq?: string;
|
|
1653
|
-
}
|
|
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>;
|