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