@tricoteuses/senat 0.3.2 → 1.0.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/README.md +52 -0
- package/lib/config.d.ts +2 -0
- package/lib/config.js +49 -0
- package/lib/config.mjs +16 -0
- package/lib/config.ts +26 -0
- package/lib/databases.d.ts +11 -0
- package/lib/databases.js +125 -0
- package/lib/databases.mjs +26 -0
- package/lib/databases.ts +32 -0
- package/lib/datasets.d.ts +27 -0
- package/lib/datasets.js +85 -0
- package/lib/datasets.mjs +68 -0
- package/lib/datasets.ts +107 -0
- package/lib/fields.d.ts +10 -0
- package/lib/fields.js +68 -0
- package/lib/fields.mjs +22 -0
- package/lib/fields.ts +29 -0
- package/lib/index.d.ts +6 -5
- package/lib/index.js +236 -7
- package/lib/index.mjs +6 -1
- package/lib/index.ts +59 -0
- package/lib/inserters.d.ts +1 -1
- package/lib/inserters.js +65 -189
- package/lib/inserters.ts +520 -0
- package/lib/raw_types/ameli.d.ts +416 -410
- package/lib/raw_types/ameli.js +26 -144
- package/lib/raw_types/ameli.ts +601 -0
- package/lib/raw_types/debats.d.ts +82 -80
- package/lib/raw_types/debats.js +8 -42
- package/lib/raw_types/debats.ts +145 -0
- package/lib/raw_types/dosleg.d.ts +936 -920
- package/lib/raw_types/dosleg.js +5 -345
- package/lib/raw_types/dosleg.ts +2193 -0
- package/lib/raw_types/questions.d.ts +2 -2
- package/lib/raw_types/questions.js +3 -3
- package/lib/raw_types/questions.mjs +2 -2
- package/lib/raw_types/questions.ts +9 -0
- package/lib/raw_types/sens.d.ts +1180 -1176
- package/lib/raw_types/sens.js +3 -397
- package/lib/raw_types/sens.ts +2907 -0
- package/lib/scripts/images/transparent_150x192.jpg +0 -0
- package/lib/scripts/images/transparent_155x225.jpg +0 -0
- package/lib/scripts/retrieve_open_data.d.ts +1 -0
- package/lib/scripts/retrieve_open_data.js +366 -0
- package/lib/scripts/retrieve_open_data.mjs +215 -0
- package/lib/scripts/retrieve_open_data.ts +254 -0
- package/lib/scripts/retrieve_senateurs_photos.d.ts +1 -0
- package/lib/scripts/retrieve_senateurs_photos.js +268 -0
- package/lib/scripts/retrieve_senateurs_photos.mjs +164 -0
- package/lib/scripts/retrieve_senateurs_photos.ts +200 -0
- package/lib/scripts/retrieve_textes.d.ts +1 -0
- package/lib/scripts/retrieve_textes.js +177 -0
- package/lib/scripts/retrieve_textes.mjs +75 -0
- package/lib/scripts/retrieve_textes.ts +93 -0
- package/lib/strings.d.ts +1 -0
- package/lib/strings.js +49 -0
- package/lib/strings.mjs +18 -0
- package/lib/strings.ts +26 -0
- package/lib/types/ameli.d.ts +5 -0
- package/lib/types/ameli.js +7 -4
- package/lib/types/ameli.mjs +13 -1
- package/lib/types/ameli.ts +21 -0
- package/lib/types/debats.d.ts +2 -0
- package/lib/types/debats.js +4 -3
- package/lib/types/debats.mjs +2 -1
- package/lib/types/debats.ts +6 -0
- package/lib/types/dosleg.d.ts +28 -0
- package/lib/types/dosleg.js +30 -3
- package/lib/types/dosleg.mjs +151 -1
- package/lib/types/dosleg.ts +284 -0
- package/lib/types/questions.js +1 -1
- package/lib/types/questions.ts +0 -0
- package/lib/types/sens.d.ts +2 -0
- package/lib/types/sens.js +4 -3
- package/lib/types/sens.mjs +23 -1
- package/lib/types/sens.ts +36 -0
- package/lib/typings/windows-1252.d.js +2 -0
- package/lib/typings/windows-1252.d.mjs +2 -0
- package/lib/typings/windows-1252.d.ts +11 -0
- package/lib/validators/config.d.ts +1 -0
- package/lib/validators/config.js +121 -0
- package/lib/validators/config.mjs +54 -0
- package/lib/validators/config.ts +79 -0
- package/lib/validators/senat.d.ts +0 -0
- package/lib/validators/senat.js +28 -0
- package/lib/validators/senat.mjs +24 -0
- package/lib/validators/senat.ts +26 -0
- package/package.json +35 -4
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* AUTO-GENERATED FILE - DO NOT EDIT!
|
|
3
3
|
*
|
|
4
|
-
* This file was automatically generated by schemats v.
|
|
5
|
-
* $ schemats generate -c
|
|
4
|
+
* This file was automatically generated by schemats v.0.3.2
|
|
5
|
+
* $ schemats generate -c postgres://username:password@localhost:5432/questions -s public
|
|
6
6
|
*
|
|
7
7
|
*/
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* AUTO-GENERATED FILE - DO NOT EDIT!
|
|
5
5
|
*
|
|
6
|
-
* This file was automatically generated by schemats v.
|
|
7
|
-
* $ schemats generate -c
|
|
6
|
+
* This file was automatically generated by schemats v.0.3.2
|
|
7
|
+
* $ schemats generate -c postgres://username:password@localhost:5432/questions -s public
|
|
8
8
|
*
|
|
9
9
|
*/
|
|
10
10
|
"use strict";
|
|
11
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
11
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vLi4vc3JjL3Jhd190eXBlcy9xdWVzdGlvbnMudHMiXSwic291cmNlc0NvbnRlbnQiOlsiLyogdHNsaW50OmRpc2FibGUgKi9cblxuLyoqXG4gKiBBVVRPLUdFTkVSQVRFRCBGSUxFIC0gRE8gTk9UIEVESVQhXG4gKlxuICogVGhpcyBmaWxlIHdhcyBhdXRvbWF0aWNhbGx5IGdlbmVyYXRlZCBieSBzY2hlbWF0cyB2LjAuMy4yXG4gKiAkIHNjaGVtYXRzIGdlbmVyYXRlIC1jIHBvc3RncmVzOi8vdXNlcm5hbWU6cGFzc3dvcmRAbG9jYWxob3N0OjU0MzIvcXVlc3Rpb25zIC1zIHB1YmxpY1xuICpcbiAqL1xuIl0sIm1hcHBpbmdzIjoiQUFBQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQU5BIiwiaWdub3JlTGlzdCI6W119
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* AUTO-GENERATED FILE - DO NOT EDIT!
|
|
5
5
|
*
|
|
6
|
-
* This file was automatically generated by schemats v.
|
|
7
|
-
* $ schemats generate -c
|
|
6
|
+
* This file was automatically generated by schemats v.0.3.2
|
|
7
|
+
* $ schemats generate -c postgres://username:password@localhost:5432/questions -s public
|
|
8
8
|
*
|
|
9
9
|
*/
|