@tricoteuses/senat 0.2.3 → 0.3.2

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.
Files changed (43) hide show
  1. package/LICENSE.md +2 -2
  2. package/README.md +0 -169
  3. package/lib/index.d.ts +1 -0
  4. package/lib/index.js +111 -35
  5. package/lib/index.mjs +1 -0
  6. package/lib/inserters.js +97 -167
  7. package/lib/inserters.mjs +360 -0
  8. package/lib/raw_types/ameli.js +4 -2
  9. package/lib/raw_types/ameli.mjs +2 -0
  10. package/lib/raw_types/debats.js +4 -2
  11. package/lib/raw_types/debats.mjs +2 -0
  12. package/lib/raw_types/dosleg.js +3 -1
  13. package/lib/raw_types/dosleg.mjs +2 -0
  14. package/lib/raw_types/questions.js +1 -1
  15. package/{src/raw_types/questions.ts → lib/raw_types/questions.mjs} +1 -3
  16. package/lib/raw_types/sens.js +4 -2
  17. package/lib/raw_types/sens.mjs +2 -0
  18. package/lib/types/ameli.js +5 -1
  19. package/lib/types/ameli.mjs +1 -0
  20. package/lib/types/debats.js +3 -1
  21. package/lib/types/debats.mjs +1 -0
  22. package/lib/types/dosleg.js +3 -1
  23. package/lib/types/dosleg.mjs +1 -0
  24. package/lib/types/questions.js +1 -1
  25. package/lib/types/questions.mjs +1 -0
  26. package/lib/types/sens.js +3 -1
  27. package/lib/types/sens.mjs +1 -0
  28. package/package.json +26 -33
  29. package/.eslintrc.js +0 -24
  30. package/babel.config.js +0 -39
  31. package/prettier.config.js +0 -4
  32. package/src/index.ts +0 -30
  33. package/src/inserters.ts +0 -520
  34. package/src/raw_types/ameli.ts +0 -655
  35. package/src/raw_types/debats.ts +0 -161
  36. package/src/raw_types/dosleg.ts +0 -2351
  37. package/src/raw_types/sens.ts +0 -3101
  38. package/src/types/ameli.ts +0 -7
  39. package/src/types/debats.ts +0 -3
  40. package/src/types/dosleg.ts +0 -132
  41. package/src/types/questions.ts +0 -0
  42. package/src/types/sens.ts +0 -12
  43. package/tsconfig.json +0 -67
package/LICENSE.md CHANGED
@@ -4,9 +4,9 @@
4
4
 
5
5
  By: Emmanuel Raviart <mailto:emmanuel@raviart.com>
6
6
 
7
- Copyright (C) 2019 Emmanuel Raviart
7
+ Copyright (C) 2019, 2020, 2021 Emmanuel Raviart
8
8
 
9
- https://framagit.org/tricoteuses/tricoteuses-senat
9
+ https://git.en-root.org/tricoteuses/tricoteuses-senat
10
10
 
11
11
  > Tricoteuses-Senat is free software; you can redistribute it and/or modify
12
12
  > it under the terms of the GNU Affero General Public License as
package/README.md CHANGED
@@ -1,172 +1,3 @@
1
1
  # Tricoteuses-Senat
2
2
 
3
3
  ## _Handle French Sénat's open data_
4
-
5
- ## Retrieval of open data (in JSON format) from Sénat's website
6
-
7
- ```bash
8
- npx babel-node --extensions ".ts" -- src/scripts/retrieve_open_data.ts --fetch ../senat-data/
9
- ```
10
-
11
- ## Reorganizating open data files and directories into cleaner (and split) directories
12
-
13
- ```bash
14
- npx babel-node --extensions ".ts" -- src/scripts/reorganize_data.ts ../senat-data/
15
- ```
16
-
17
- _Note_: These split files are also available in [Tricoteuses / Open data Sénat repositories](https://framagit.org/tricoteuses/open-data-senat-nationale). They are updated every day.
18
-
19
- ## Validation & cleaning of JSON data
20
-
21
- ### Validation & cleaning of reorganized files
22
-
23
- ```bash
24
- npx babel-node --extensions ".ts" -- src/scripts/clean_reorganized_data.ts ../senat-data/
25
- ```
26
-
27
- _Note_: These split & cleaned files are also available in [Tricoteuses / Open data Sénat repositories](https://framagit.org/tricoteuses/open-data-senat-nationale) with the `_nettoye` suffix. They are updated every day.
28
-
29
- ### Validation & cleaning of big non-split files
30
-
31
- ```bash
32
- npx babel-node --extensions ".ts" --max-old-space-size=8192 -- src/scripts/clean_data.ts ../senat-data/
33
- ```
34
-
35
- _Note_: The big non-split open data files should not be used. Use small split files instead.
36
-
37
- ## Retrieval of députés' pictures from Sénat's website
38
-
39
- ```bash
40
- npx babel-node --extensions ".ts" -- src/scripts/retrieve_deputes_photos.ts --fetch ../senat-data/
41
- ```
42
-
43
- ## Retrieval of députés' non open data informations from Sénat's website
44
-
45
- ```bash
46
- npx babel-node --extensions ".ts" -- src/scripts/retrieve_deputes_infos.ts --fetch --parse ../senat-data/
47
- ```
48
-
49
- ## Retrieval of documents from Sénat's website
50
-
51
- ```bash
52
- npx babel-node --extensions ".ts" -- src/scripts/retrieve_documents.ts --fetch --parse ../senat-data/
53
- ```
54
-
55
- ## Test loading everything in memory
56
-
57
- ### Test loading small split files
58
-
59
- ```bash
60
- npx babel-node --extensions ".ts" --max-old-space-size=2048 -- src/scripts/test_load_all.ts ../senat-data/
61
- ```
62
-
63
- ### Test loading big non-split files
64
-
65
- ```bash
66
- npx babel-node --extensions ".ts" --max-old-space-size=2048 -- src/scripts/test_load_all_big_files.ts ../senat-data/
67
- ```
68
-
69
- _Note_: The big non-split open data files should not be used. Use small split files instead.
70
-
71
- ## Initial generation of TypeScript files from JSON data.
72
-
73
- ```bash
74
- npx quicktype --acronym-style=camel -o src/raw_types/acteurs_et_organes.ts ../senat-data/AMO{10,20,30,40,50}_*.json
75
- ```
76
-
77
- ```bash
78
- npx quicktype --acronym-style=camel -o src/raw_types/agendas.ts ../senat-data/Agenda_{XIV,XV}.json
79
- ```
80
-
81
- ```bash
82
- npx babel-node --extensions ".ts" --max-old-space-size=4096 -- src/scripts/merge_amendements.ts -v ../senat-data/
83
- NODE_OPTIONS=--max-old-space-size=4096 npx quicktype --acronym-style=camel -o src/raw_types/amendements.ts ../senat-data/Amendements_XV_fusionne.json
84
- ```
85
-
86
- Edit `src/raw_types/amendements.ts` to:
87
-
88
- * Replace `r("ActeurRefElement")` with `""`.
89
- * Remove 2 definitions of `ActeurRefElement` and replace it with `string` elsewhere.
90
- * Replace `r("GroupePolitiqueRefEnum")` with `""`.
91
- * Remove 2 definitions of `GroupePolitiqueRefEnum` and replace it with `string` elsewhere.
92
- * Replace `r("Organe")` with `""`.
93
- * Remove 2 definitions of `Organe` and replace it with `string` elsewhere.
94
- * Replace `r("Libelle")` with `""`.
95
- * Remove 2 definitions of `Libelle` and replace it with `string` elsewhere.
96
- * Add:
97
- ```typescript
98
- export interface AmendementWrapper {
99
- amendement: Amendement
100
- }
101
- ```
102
- * Add:
103
- ```typescript
104
- "AmendementWrapper": o([
105
- { json: "amendement", js: "amendement", typ: r("Amendement") },
106
- ], false),
107
- ```
108
- * Add the following static methods to class `Convert`:
109
- ```typescript
110
- public static toAmendementWrapper(json: string): AmendementWrapper {
111
- return cast(JSON.parse(json), r("AmendementWrapper"));
112
- }
113
-
114
- public static amendementWrapperToJson(value: AmendementWrapper): string {
115
- return JSON.stringify(uncast(value, r("AmendementWrapper")), null, 2);
116
- }
117
- ```
118
-
119
- ```bash
120
- npx quicktype --acronym-style=camel -o src/raw_types/dossiers_legislatifs.ts ../senat-data/Dossiers_Legislatifs_{XIV,XV}.json
121
- ```
122
-
123
- Edit `src/raw_types/dossiers_legislatifs.ts` to:
124
-
125
- * Replace regular expression `r\(".*OrganeRef"\)` with `""`.
126
- * Remove definitions of regular expression `[^ ]*OrganeRef` and replace it with `string`.
127
- * Replace regular expression `r\(".*DossierRef"\)` with `""`.
128
- * Remove definitions of regular expression `[^ ]*DossierRef` and replace it with `string`.
129
- * Replace regular expression `r\(".*AuteurMotion"\)` with `""`.
130
- * Remove definitions of regular expression `[^ ]*AuteurMotion` and replace it with `string`.
131
- * Replace `r("DivisionDenominationStructurelle")` with `""`.
132
- * Remove 2 definitions of `DivisionDenominationStructurelle` and replace it with `string` elsewhere.
133
-
134
- ```bash
135
- npx babel-node --extensions ".ts" -- src/scripts/merge_scrutins.ts -v ../senat-data/
136
- npx quicktype --acronym-style=camel -o src/raw_types/scrutins.ts ../senat-data/Scrutins_{XIV,XV_fusionne}.json
137
- ```
138
-
139
- Edit `src/raw_types/scrutins.ts` to:
140
-
141
- * Replace `r("ActeurRef")` with `""`.
142
- * Remove 2 definitions of `ActeurRef` and replace it with `string` elsewhere.
143
- * Replace `r("GroupeOrganeRef")` with `""`.
144
- * Remove 2 definitions of `GroupeOrganeRef` and replace it with `string` elsewhere.
145
- * Replace `r("MandatRef")` with `""`.
146
- * Remove 2 definitions of `MandatRef` and replace it with `string` elsewhere.
147
- * Replace `r("ScrutinOrganeRef")` with `""`.
148
- * Remove 2 definitions of `ScrutinOrganeRef` and replace it with `string` elsewhere.
149
- * Replace `r("SessionRef")` with `""`.
150
- * Remove 2 definitions of `SessionRef` and replace it with `string` elsewhere.
151
- * Add:
152
- ```typescript
153
- export interface ScrutinWrapper {
154
- scrutin: Scrutin
155
- }
156
- ```
157
- * Add:
158
- ```typescript
159
- "ScrutinWrapper": o([
160
- { json: "scrutin", js: "scrutin", typ: r("Scrutin") },
161
- ], false),
162
- ```
163
- * Add the following static methods to class `Convert`:
164
- ```typescript
165
- public static toScrutinWrapper(json: string): ScrutinWrapper {
166
- return cast(JSON.parse(json), r("ScrutinWrapper"));
167
- }
168
-
169
- public static scrutinWrapperToJson(value: ScrutinWrapper): string {
170
- return JSON.stringify(uncast(value, r("ScrutinWrapper")), null, 2);
171
- }
172
- ```
package/lib/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export { insertAudReferences, insertDateSeanceReferences, insertAuteurReferences, insertDocAttReferences, insertEcrReferences, insertLecassReferences, insertLecassrapReferences, insertLectureReferences, insertLoiReferences, insertRapReferences, insertTexteReferences, OutputData, } from "./inserters";
1
2
  export { Ses, Sub, TxtAmeli } from "./types/ameli";
2
3
  export { Debat, LecAssDeb } from "./types/debats";
3
4
  export { 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";
package/lib/index.js CHANGED
@@ -1,38 +1,10 @@
1
1
  "use strict";
2
2
 
3
+ require("core-js/modules/es.object.define-property.js");
4
+
3
5
  Object.defineProperty(exports, "__esModule", {
4
6
  value: true
5
7
  });
6
- Object.defineProperty(exports, "Ses", {
7
- enumerable: true,
8
- get: function get() {
9
- return _ameli.Ses;
10
- }
11
- });
12
- Object.defineProperty(exports, "Sub", {
13
- enumerable: true,
14
- get: function get() {
15
- return _ameli.Sub;
16
- }
17
- });
18
- Object.defineProperty(exports, "TxtAmeli", {
19
- enumerable: true,
20
- get: function get() {
21
- return _ameli.TxtAmeli;
22
- }
23
- });
24
- Object.defineProperty(exports, "Debat", {
25
- enumerable: true,
26
- get: function get() {
27
- return _debats.Debat;
28
- }
29
- });
30
- Object.defineProperty(exports, "LecAssDeb", {
31
- enumerable: true,
32
- get: function get() {
33
- return _debats.LecAssDeb;
34
- }
35
- });
36
8
  Object.defineProperty(exports, "Ass", {
37
9
  enumerable: true,
38
10
  get: function get() {
@@ -57,6 +29,12 @@ Object.defineProperty(exports, "DateSeance", {
57
29
  return _dosleg.DateSeance;
58
30
  }
59
31
  });
32
+ Object.defineProperty(exports, "Debat", {
33
+ enumerable: true,
34
+ get: function get() {
35
+ return _debats.Debat;
36
+ }
37
+ });
60
38
  Object.defineProperty(exports, "DecCoc", {
61
39
  enumerable: true,
62
40
  get: function get() {
@@ -93,6 +71,12 @@ Object.defineProperty(exports, "LecAss", {
93
71
  return _dosleg.LecAss;
94
72
  }
95
73
  });
74
+ Object.defineProperty(exports, "LecAssDeb", {
75
+ enumerable: true,
76
+ get: function get() {
77
+ return _debats.LecAssDeb;
78
+ }
79
+ });
96
80
  Object.defineProperty(exports, "LecAssRap", {
97
81
  enumerable: true,
98
82
  get: function get() {
@@ -123,6 +107,18 @@ Object.defineProperty(exports, "OriTxt", {
123
107
  return _dosleg.OriTxt;
124
108
  }
125
109
  });
110
+ Object.defineProperty(exports, "OutputData", {
111
+ enumerable: true,
112
+ get: function get() {
113
+ return _inserters.OutputData;
114
+ }
115
+ });
116
+ Object.defineProperty(exports, "Photo", {
117
+ enumerable: true,
118
+ get: function get() {
119
+ return _sens.Photo;
120
+ }
121
+ });
126
122
  Object.defineProperty(exports, "Qua", {
127
123
  enumerable: true,
128
124
  get: function get() {
@@ -147,12 +143,36 @@ Object.defineProperty(exports, "Scr", {
147
143
  return _dosleg.Scr;
148
144
  }
149
145
  });
146
+ Object.defineProperty(exports, "Sen", {
147
+ enumerable: true,
148
+ get: function get() {
149
+ return _sens.Sen;
150
+ }
151
+ });
152
+ Object.defineProperty(exports, "Ses", {
153
+ enumerable: true,
154
+ get: function get() {
155
+ return _ameli.Ses;
156
+ }
157
+ });
158
+ Object.defineProperty(exports, "Sub", {
159
+ enumerable: true,
160
+ get: function get() {
161
+ return _ameli.Sub;
162
+ }
163
+ });
150
164
  Object.defineProperty(exports, "Texte", {
151
165
  enumerable: true,
152
166
  get: function get() {
153
167
  return _dosleg.Texte;
154
168
  }
155
169
  });
170
+ Object.defineProperty(exports, "TxtAmeli", {
171
+ enumerable: true,
172
+ get: function get() {
173
+ return _ameli.TxtAmeli;
174
+ }
175
+ });
156
176
  Object.defineProperty(exports, "TypAtt", {
157
177
  enumerable: true,
158
178
  get: function get() {
@@ -183,18 +203,74 @@ Object.defineProperty(exports, "TypUrl", {
183
203
  return _dosleg.TypUrl;
184
204
  }
185
205
  });
186
- Object.defineProperty(exports, "Photo", {
206
+ Object.defineProperty(exports, "insertAudReferences", {
187
207
  enumerable: true,
188
208
  get: function get() {
189
- return _sens.Photo;
209
+ return _inserters.insertAudReferences;
190
210
  }
191
211
  });
192
- Object.defineProperty(exports, "Sen", {
212
+ Object.defineProperty(exports, "insertAuteurReferences", {
193
213
  enumerable: true,
194
214
  get: function get() {
195
- return _sens.Sen;
215
+ return _inserters.insertAuteurReferences;
216
+ }
217
+ });
218
+ Object.defineProperty(exports, "insertDateSeanceReferences", {
219
+ enumerable: true,
220
+ get: function get() {
221
+ return _inserters.insertDateSeanceReferences;
222
+ }
223
+ });
224
+ Object.defineProperty(exports, "insertDocAttReferences", {
225
+ enumerable: true,
226
+ get: function get() {
227
+ return _inserters.insertDocAttReferences;
196
228
  }
197
229
  });
230
+ Object.defineProperty(exports, "insertEcrReferences", {
231
+ enumerable: true,
232
+ get: function get() {
233
+ return _inserters.insertEcrReferences;
234
+ }
235
+ });
236
+ Object.defineProperty(exports, "insertLecassReferences", {
237
+ enumerable: true,
238
+ get: function get() {
239
+ return _inserters.insertLecassReferences;
240
+ }
241
+ });
242
+ Object.defineProperty(exports, "insertLecassrapReferences", {
243
+ enumerable: true,
244
+ get: function get() {
245
+ return _inserters.insertLecassrapReferences;
246
+ }
247
+ });
248
+ Object.defineProperty(exports, "insertLectureReferences", {
249
+ enumerable: true,
250
+ get: function get() {
251
+ return _inserters.insertLectureReferences;
252
+ }
253
+ });
254
+ Object.defineProperty(exports, "insertLoiReferences", {
255
+ enumerable: true,
256
+ get: function get() {
257
+ return _inserters.insertLoiReferences;
258
+ }
259
+ });
260
+ Object.defineProperty(exports, "insertRapReferences", {
261
+ enumerable: true,
262
+ get: function get() {
263
+ return _inserters.insertRapReferences;
264
+ }
265
+ });
266
+ Object.defineProperty(exports, "insertTexteReferences", {
267
+ enumerable: true,
268
+ get: function get() {
269
+ return _inserters.insertTexteReferences;
270
+ }
271
+ });
272
+
273
+ var _inserters = require("./inserters");
198
274
 
199
275
  var _ameli = require("./types/ameli");
200
276
 
@@ -203,4 +279,4 @@ var _debats = require("./types/debats");
203
279
  var _dosleg = require("./types/dosleg");
204
280
 
205
281
  var _sens = require("./types/sens");
206
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL3NyYy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQTs7QUFDQTs7QUFDQTs7QUEyQkEiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgeyBTZXMsIFN1YiwgVHh0QW1lbGkgfSBmcm9tIFwiLi90eXBlcy9hbWVsaVwiXG5leHBvcnQgeyBEZWJhdCwgTGVjQXNzRGViIH0gZnJvbSBcIi4vdHlwZXMvZGViYXRzXCJcbmV4cG9ydCB7XG4gIEFzcyxcbiAgQXVkLFxuICBBdXRldXIsXG4gIERhdGVTZWFuY2UsXG4gIERlY0NvYyxcbiAgRGVuUmFwLFxuICBEb2NBdHQsXG4gIEVjcixcbiAgRXRhTG9pLFxuICBMZWNBc3MsXG4gIExlY0Fzc1JhcCxcbiAgTGVjdHVyZSxcbiAgTG9pLFxuICBPcmcsXG4gIE9yaVR4dCxcbiAgUXVhLFxuICBSYXAsXG4gIFJhcE9yZyxcbiAgU2NyLFxuICBUZXh0ZSxcbiAgVHlwQXR0LFxuICBUeXBMZWMsXG4gIFR5cExvaSxcbiAgVHlwVHh0LFxuICBUeXBVcmwsXG59IGZyb20gXCIuL3R5cGVzL2Rvc2xlZ1wiXG5leHBvcnQgeyBQaG90bywgU2VuIH0gZnJvbSBcIi4vdHlwZXMvc2Vuc1wiXG4iXX0=
282
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vc3JjL2luZGV4LnRzIl0sInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB7XG4gIGluc2VydEF1ZFJlZmVyZW5jZXMsXG4gIGluc2VydERhdGVTZWFuY2VSZWZlcmVuY2VzLFxuICBpbnNlcnRBdXRldXJSZWZlcmVuY2VzLFxuICBpbnNlcnREb2NBdHRSZWZlcmVuY2VzLFxuICBpbnNlcnRFY3JSZWZlcmVuY2VzLFxuICBpbnNlcnRMZWNhc3NSZWZlcmVuY2VzLFxuICBpbnNlcnRMZWNhc3NyYXBSZWZlcmVuY2VzLFxuICBpbnNlcnRMZWN0dXJlUmVmZXJlbmNlcyxcbiAgaW5zZXJ0TG9pUmVmZXJlbmNlcyxcbiAgaW5zZXJ0UmFwUmVmZXJlbmNlcyxcbiAgaW5zZXJ0VGV4dGVSZWZlcmVuY2VzLFxuICBPdXRwdXREYXRhLFxufSBmcm9tIFwiLi9pbnNlcnRlcnNcIlxuZXhwb3J0IHsgU2VzLCBTdWIsIFR4dEFtZWxpIH0gZnJvbSBcIi4vdHlwZXMvYW1lbGlcIlxuZXhwb3J0IHsgRGViYXQsIExlY0Fzc0RlYiB9IGZyb20gXCIuL3R5cGVzL2RlYmF0c1wiXG5leHBvcnQge1xuICBBc3MsXG4gIEF1ZCxcbiAgQXV0ZXVyLFxuICBEYXRlU2VhbmNlLFxuICBEZWNDb2MsXG4gIERlblJhcCxcbiAgRG9jQXR0LFxuICBFY3IsXG4gIEV0YUxvaSxcbiAgTGVjQXNzLFxuICBMZWNBc3NSYXAsXG4gIExlY3R1cmUsXG4gIExvaSxcbiAgT3JnLFxuICBPcmlUeHQsXG4gIFF1YSxcbiAgUmFwLFxuICBSYXBPcmcsXG4gIFNjcixcbiAgVGV4dGUsXG4gIFR5cEF0dCxcbiAgVHlwTGVjLFxuICBUeXBMb2ksXG4gIFR5cFR4dCxcbiAgVHlwVXJsLFxufSBmcm9tIFwiLi90eXBlcy9kb3NsZWdcIlxuZXhwb3J0IHsgUGhvdG8sIFNlbiB9IGZyb20gXCIuL3R5cGVzL3NlbnNcIlxuIl0sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBOztBQWNBOztBQUNBOztBQUNBOztBQTJCQSJ9
package/lib/index.mjs ADDED
@@ -0,0 +1 @@
1
+ export { insertAudReferences, insertDateSeanceReferences, insertAuteurReferences, insertDocAttReferences, insertEcrReferences, insertLecassReferences, insertLecassrapReferences, insertLectureReferences, insertLoiReferences, insertRapReferences, insertTexteReferences, } from "./inserters";