cocoda-sdk 3.3.3 → 3.4.0
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 +3 -1
- package/dist/cjs/index.cjs +1086 -35
- package/dist/cocoda-sdk.js +16 -11
- package/dist/cocoda-sdk.js.LICENSES.txt +178 -4
- package/dist/cocoda-sdk.js.map +4 -4
- package/dist/esm/errors/index.js +22 -0
- package/dist/esm/lib/CocodaSDK.js +120 -17
- package/dist/esm/providers/base-provider.js +88 -0
- package/dist/esm/providers/concept-api-provider.js +108 -0
- package/dist/esm/providers/index.js +2 -0
- package/dist/esm/providers/label-search-suggestion-provider.js +39 -0
- package/dist/esm/providers/lobid-api-provider.js +239 -0
- package/dist/esm/providers/loc-api-provider.js +58 -0
- package/dist/esm/providers/local-mappings-provider.js +60 -3
- package/dist/esm/providers/mappings-api-provider.js +116 -0
- package/dist/esm/providers/mycore-provider.js +42 -0
- package/dist/esm/providers/occurrences-api-provider.js +32 -0
- package/dist/esm/providers/reconciliation-api-provider.js +21 -0
- package/dist/esm/providers/skohub-provider.js +26 -0
- package/dist/esm/providers/skosmos-api-provider.js +89 -0
- package/dist/esm/utils/index.js +8 -0
- package/package.json +8 -8
|
@@ -1,8 +1,73 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
2
|
+
asynckit@0.4.0 by Alex Indigo (https://github.com/alexindigo/asynckit)
|
|
3
3
|
License: MIT
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
The MIT License (MIT)
|
|
6
|
+
|
|
7
|
+
Copyright (c) 2016 Alex Indigo
|
|
8
|
+
|
|
9
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
10
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
11
|
+
in the Software without restriction, including without limitation the rights
|
|
12
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
13
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
14
|
+
furnished to do so, subject to the following conditions:
|
|
15
|
+
|
|
16
|
+
The above copyright notice and this permission notice shall be included in all
|
|
17
|
+
copies or substantial portions of the Software.
|
|
18
|
+
|
|
19
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
20
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
21
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
22
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
23
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
25
|
+
SOFTWARE.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
axios@1.3.2 by Matt Zabriskie (https://github.com/axios/axios)
|
|
30
|
+
License: MIT
|
|
31
|
+
|
|
32
|
+
# Copyright (c) 2014-present Matt Zabriskie & Collaborators
|
|
33
|
+
|
|
34
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
35
|
+
|
|
36
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
37
|
+
|
|
38
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
combined-stream@1.0.8 by Felix Geisendörfer (https://github.com/felixge/node-combined-stream)
|
|
43
|
+
License: MIT
|
|
44
|
+
|
|
45
|
+
Copyright (c) 2011 Debuggable Limited <felix@debuggable.com>
|
|
46
|
+
|
|
47
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
48
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
49
|
+
in the Software without restriction, including without limitation the rights
|
|
50
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
51
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
52
|
+
furnished to do so, subject to the following conditions:
|
|
53
|
+
|
|
54
|
+
The above copyright notice and this permission notice shall be included in
|
|
55
|
+
all copies or substantial portions of the Software.
|
|
56
|
+
|
|
57
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
58
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
59
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
60
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
61
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
62
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
63
|
+
THE SOFTWARE.
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
delayed-stream@1.0.0 by Felix Geisendörfer (https://github.com/felixge/node-delayed-stream)
|
|
68
|
+
License: MIT
|
|
69
|
+
|
|
70
|
+
Copyright (c) 2011 Debuggable Limited <felix@debuggable.com>
|
|
6
71
|
|
|
7
72
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
73
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -231,7 +296,7 @@ License: Apache-2.0
|
|
|
231
296
|
|
|
232
297
|
---
|
|
233
298
|
|
|
234
|
-
follow-redirects@1.
|
|
299
|
+
follow-redirects@1.15.2 by Ruben Verborgh (https://github.com/follow-redirects/follow-redirects)
|
|
235
300
|
License: MIT
|
|
236
301
|
|
|
237
302
|
Copyright 2014–present Olivier Lalonde <olalonde@gmail.com>, James Talmage <james@talmage.io>, Ruben Verborgh
|
|
@@ -255,6 +320,31 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
255
320
|
|
|
256
321
|
---
|
|
257
322
|
|
|
323
|
+
form-data@4.0.0 by Felix Geisendörfer (https://github.com/form-data/form-data)
|
|
324
|
+
License: MIT
|
|
325
|
+
|
|
326
|
+
Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors
|
|
327
|
+
|
|
328
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
329
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
330
|
+
in the Software without restriction, including without limitation the rights
|
|
331
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
332
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
333
|
+
furnished to do so, subject to the following conditions:
|
|
334
|
+
|
|
335
|
+
The above copyright notice and this permission notice shall be included in
|
|
336
|
+
all copies or substantial portions of the Software.
|
|
337
|
+
|
|
338
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
339
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
340
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
341
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
342
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
343
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
344
|
+
THE SOFTWARE.
|
|
345
|
+
|
|
346
|
+
---
|
|
347
|
+
|
|
258
348
|
immediate@3.0.6 by undefined (https://github.com/calvinmetcalf/immediate)
|
|
259
349
|
License: MIT
|
|
260
350
|
|
|
@@ -281,7 +371,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
281
371
|
|
|
282
372
|
---
|
|
283
373
|
|
|
284
|
-
jskos-tools@1.0.
|
|
374
|
+
jskos-tools@1.0.30 by Stefan Peters (https://github.com/gbv/jskos-tools)
|
|
285
375
|
License: MIT
|
|
286
376
|
|
|
287
377
|
MIT License
|
|
@@ -580,6 +670,90 @@ terms above.
|
|
|
580
670
|
|
|
581
671
|
---
|
|
582
672
|
|
|
673
|
+
mime-db@1.52.0 by undefined (https://github.com/jshttp/mime-db)
|
|
674
|
+
License: MIT
|
|
675
|
+
|
|
676
|
+
(The MIT License)
|
|
677
|
+
|
|
678
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
679
|
+
Copyright (c) 2015-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
680
|
+
|
|
681
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
682
|
+
a copy of this software and associated documentation files (the
|
|
683
|
+
'Software'), to deal in the Software without restriction, including
|
|
684
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
685
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
686
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
687
|
+
the following conditions:
|
|
688
|
+
|
|
689
|
+
The above copyright notice and this permission notice shall be
|
|
690
|
+
included in all copies or substantial portions of the Software.
|
|
691
|
+
|
|
692
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
693
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
694
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
695
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
696
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
697
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
698
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
699
|
+
|
|
700
|
+
---
|
|
701
|
+
|
|
702
|
+
mime-types@2.1.35 by undefined (https://github.com/jshttp/mime-types)
|
|
703
|
+
License: MIT
|
|
704
|
+
|
|
705
|
+
(The MIT License)
|
|
706
|
+
|
|
707
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
708
|
+
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
709
|
+
|
|
710
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
711
|
+
a copy of this software and associated documentation files (the
|
|
712
|
+
'Software'), to deal in the Software without restriction, including
|
|
713
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
714
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
715
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
716
|
+
the following conditions:
|
|
717
|
+
|
|
718
|
+
The above copyright notice and this permission notice shall be
|
|
719
|
+
included in all copies or substantial portions of the Software.
|
|
720
|
+
|
|
721
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
722
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
723
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
724
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
725
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
726
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
727
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
728
|
+
|
|
729
|
+
---
|
|
730
|
+
|
|
731
|
+
proxy-from-env@1.1.0 by Rob Wu (https://github.com/Rob--W/proxy-from-env)
|
|
732
|
+
License: MIT
|
|
733
|
+
|
|
734
|
+
The MIT License
|
|
735
|
+
|
|
736
|
+
Copyright (C) 2016-2018 Rob Wu <rob@robwu.nl>
|
|
737
|
+
|
|
738
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
739
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
740
|
+
the Software without restriction, including without limitation the rights to
|
|
741
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
742
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
743
|
+
so, subject to the following conditions:
|
|
744
|
+
|
|
745
|
+
The above copyright notice and this permission notice shall be included in all
|
|
746
|
+
copies or substantial portions of the Software.
|
|
747
|
+
|
|
748
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
749
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
750
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
751
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
752
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
753
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
754
|
+
|
|
755
|
+
---
|
|
756
|
+
|
|
583
757
|
uuid@9.0.0 by undefined (https://github.com/uuidjs/uuid)
|
|
584
758
|
License: MIT
|
|
585
759
|
|