@tricoteuses/senat 1.3.2 → 1.3.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/index.d.ts +5 -0
- package/lib/model/sens.d.ts +1 -1
- package/package.json +3 -3
package/lib/index.d.ts
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
export type { AmendementResult, } from "./model/ameli";
|
|
2
|
+
export type { DossierLegislatifResult, } from "./model/dosleg";
|
|
3
|
+
export type { QuestionResult, } from "./model/questions";
|
|
4
|
+
export type { CirconscriptionResult, OrganismeResult, SenateurResult, } from "./model/sens";
|
|
1
5
|
export { sesFieldsToParseInt, sesFieldsToTrim, subFieldsToParseInt, subFieldsToTrim, txtAmeliFieldsToTrim, } from "./types/ameli";
|
|
2
6
|
export type { Ses, Sub, TxtAmeli } from "./types/ameli";
|
|
3
7
|
export { debatsFieldsToTrim, lecassdebFieldsToTrim } from "./types/debats";
|
|
@@ -6,3 +10,4 @@ export { assFieldsToTrim, audFieldsToTrim, auteurFieldsToTrim, dateSeanceFieldsT
|
|
|
6
10
|
export type { Ass, Aud, Auteur, DateSeance, DecCoc, DenRap, DocAtt, Ecr, EtaLoi, LecAss, LecAssRap, Lecture, Loi, Org, OriTxt, Qua, Rap, RapOrg, Scr, Texte, TypAtt, TypLec, TypLoi, TypTxt, TypUrl, } from "./types/dosleg";
|
|
7
11
|
export type { Photo, Sen } from "./types/sens";
|
|
8
12
|
export { Session } from "./types/sessions";
|
|
13
|
+
export type { Alinea, Article, Division, DivisionTag, FlatTexte } from "./types/texte";
|
package/lib/model/sens.d.ts
CHANGED
|
@@ -389,8 +389,8 @@ declare const findAllOrganismesQuery: import("kysely").SelectQueryBuilder<{
|
|
|
389
389
|
zongeo: import("../raw_types/sens").Zongeo;
|
|
390
390
|
all_organismes: {
|
|
391
391
|
orgcod: string;
|
|
392
|
-
typorgcod: string;
|
|
393
392
|
orgdatfin: Date | null;
|
|
393
|
+
typorgcod: string;
|
|
394
394
|
evelib: string | null;
|
|
395
395
|
evelic: string | null;
|
|
396
396
|
evelil: string | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tricoteuses/senat",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.4",
|
|
4
4
|
"description": "Handle French Sénat's open data",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"France",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
],
|
|
28
28
|
"exports": {
|
|
29
29
|
".": {
|
|
30
|
-
"
|
|
30
|
+
"import": "./lib/index.js",
|
|
31
31
|
"types": "./lib/index.d.ts"
|
|
32
32
|
},
|
|
33
33
|
"./lib/loaders": {
|
|
34
|
-
"
|
|
34
|
+
"import": "./lib/loaders.js",
|
|
35
35
|
"types": "./lib/loaders.d.ts"
|
|
36
36
|
},
|
|
37
37
|
"./package.json": "./package.json"
|