invenio-app-ils 6.1.1__py2.py3-none-any.whl → 7.1.0__py2.py3-none-any.whl

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 (38) hide show
  1. invenio_app_ils/__init__.py +2 -2
  2. invenio_app_ils/acquisition/indexer.py +72 -0
  3. invenio_app_ils/acquisition/mappings/os-v2/acq_orders/order-v1.0.0.json +5 -0
  4. invenio_app_ils/acquisition/stats/__init__.py +8 -0
  5. invenio_app_ils/acquisition/stats/views.py +82 -0
  6. invenio_app_ils/circulation/errors.py +12 -0
  7. invenio_app_ils/circulation/indexer.py +72 -0
  8. invenio_app_ils/circulation/stats/api.py +1 -1
  9. invenio_app_ils/circulation/stats/views.py +57 -1
  10. invenio_app_ils/config.py +55 -1
  11. invenio_app_ils/document_requests/indexer.py +76 -2
  12. invenio_app_ils/document_requests/mappings/os-v2/document_requests/document_request-v1.0.0.json +5 -0
  13. invenio_app_ils/document_requests/stats/__init__.py +8 -0
  14. invenio_app_ils/document_requests/stats/views.py +85 -0
  15. invenio_app_ils/ext.py +56 -2
  16. invenio_app_ils/permissions.py +3 -0
  17. invenio_app_ils/stats/event_builders.py +44 -0
  18. invenio_app_ils/stats/histogram/__init__.py +18 -0
  19. invenio_app_ils/stats/histogram/api.py +109 -0
  20. invenio_app_ils/stats/histogram/schemas.py +92 -0
  21. invenio_app_ils/stats/histogram/serializers/__init__.py +18 -0
  22. invenio_app_ils/stats/histogram/serializers/response.py +36 -0
  23. invenio_app_ils/stats/histogram/serializers/schema.py +33 -0
  24. invenio_app_ils/stats/histogram/views.py +34 -0
  25. invenio_app_ils/stats/processors.py +56 -0
  26. invenio_app_ils/stats/templates/aggregations/loan_transitions/__init__.py +8 -0
  27. invenio_app_ils/stats/templates/aggregations/loan_transitions/os-v2/__init__.py +8 -0
  28. invenio_app_ils/stats/templates/aggregations/loan_transitions/os-v2/aggr-loan-transitions-v1.json +32 -0
  29. invenio_app_ils/stats/templates/events/loan_transitions/__init__.py +8 -0
  30. invenio_app_ils/stats/templates/events/loan_transitions/os-v2/__init__.py +8 -0
  31. invenio_app_ils/stats/templates/events/loan_transitions/os-v2/loan-transitions-v1.json +40 -0
  32. {invenio_app_ils-6.1.1.dist-info → invenio_app_ils-7.1.0.dist-info}/METADATA +20 -3
  33. {invenio_app_ils-6.1.1.dist-info → invenio_app_ils-7.1.0.dist-info}/RECORD +38 -19
  34. {invenio_app_ils-6.1.1.dist-info → invenio_app_ils-7.1.0.dist-info}/WHEEL +1 -1
  35. {invenio_app_ils-6.1.1.dist-info → invenio_app_ils-7.1.0.dist-info}/entry_points.txt +2 -0
  36. {invenio_app_ils-6.1.1.dist-info → invenio_app_ils-7.1.0.dist-info}/licenses/AUTHORS.rst +0 -0
  37. {invenio_app_ils-6.1.1.dist-info → invenio_app_ils-7.1.0.dist-info}/licenses/LICENSE +0 -0
  38. {invenio_app_ils-6.1.1.dist-info → invenio_app_ils-7.1.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,32 @@
1
+ {
2
+ "index_patterns": [
3
+ "__SEARCH_INDEX_PREFIX__stats-loan-transitions-*"
4
+ ],
5
+ "settings": {
6
+ "index": {
7
+ "refresh_interval": "5s"
8
+ }
9
+ },
10
+ "mappings": {
11
+ "date_detection": false,
12
+ "dynamic": false,
13
+ "numeric_detection": false,
14
+ "properties": {
15
+ "timestamp": {
16
+ "type": "date"
17
+ },
18
+ "updated_timestamp": {
19
+ "type": "date"
20
+ },
21
+ "trigger": {
22
+ "type": "keyword"
23
+ },
24
+ "count": {
25
+ "type": "integer"
26
+ }
27
+ }
28
+ },
29
+ "aliases": {
30
+ "__SEARCH_INDEX_PREFIX__stats-loan-transitions": {}
31
+ }
32
+ }
@@ -0,0 +1,8 @@
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Copyright (C) 2025 CERN.
4
+ #
5
+ # invenio-app-ils is free software; you can redistribute it and/or modify it
6
+ # under the terms of the MIT License; see LICENSE file for more details.
7
+
8
+ """Loan transitions events templates."""
@@ -0,0 +1,8 @@
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Copyright (C) 2025 CERN.
4
+ #
5
+ # invenio-app-ils is free software; you can redistribute it and/or modify it
6
+ # under the terms of the MIT License; see LICENSE file for more details.
7
+
8
+ """Loan transitions events templates."""
@@ -0,0 +1,40 @@
1
+ {
2
+ "index_patterns": [
3
+ "__SEARCH_INDEX_PREFIX__events-stats-loan-transitions-*"
4
+ ],
5
+ "settings": {
6
+ "index": {
7
+ "refresh_interval": "5s"
8
+ }
9
+ },
10
+ "mappings": {
11
+ "date_detection": false,
12
+ "dynamic": false,
13
+ "numeric_detection": false,
14
+ "properties": {
15
+ "timestamp": {
16
+ "type": "date"
17
+ },
18
+ "updated_timestamp": {
19
+ "type": "date"
20
+ },
21
+ "unique_id": {
22
+ "type": "keyword"
23
+ },
24
+ "trigger": {
25
+ "type": "keyword"
26
+ },
27
+ "pid_value": {
28
+ "type": "keyword"
29
+ },
30
+ "extra_data": {
31
+ "type": "object",
32
+ "dynamic": true,
33
+ "enabled": true
34
+ }
35
+ }
36
+ },
37
+ "aliases": {
38
+ "__SEARCH_INDEX_PREFIX__events-stats-loan-transitions": {}
39
+ }
40
+ }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: invenio-app-ils
3
- Version: 6.1.1
3
+ Version: 7.1.0
4
4
  Summary: Invenio Integrated Library System.
5
5
  Home-page: https://github.com/inveniosoftware/invenio-app-ils
6
6
  Author: CERN
@@ -39,7 +39,7 @@ Requires-Dist: invenio-records<4.0.0,>=3.0.2
39
39
  Requires-Dist: invenio-files-rest<4.0.0,>=3.2.0
40
40
  Requires-Dist: invenio-banners<6.0.0,>=5.0.0
41
41
  Requires-Dist: invenio-pages<8.0.0,>=7.1.0
42
- Requires-Dist: invenio-circulation<4.0.0,>=3.0.0a1
42
+ Requires-Dist: invenio-circulation<5.0.0,>=4.0.0
43
43
  Requires-Dist: invenio-opendefinition<3.0.0,>=2.0.0a2
44
44
  Requires-Dist: invenio-pidrelations<2.0.0,>=1.0.0
45
45
  Requires-Dist: invenio-stats<6.0.0,>=5.1.1
@@ -95,7 +95,7 @@ https://invenioils.docs.cern.ch
95
95
 
96
96
 
97
97
  ..
98
- Copyright (C) 2018-2025 CERN.
98
+ Copyright (C) 2018-2026 CERN.
99
99
 
100
100
  invenio-app-ils is free software; you can redistribute it and/or modify it
101
101
  under the terms of the MIT License; see LICENSE file for more details.
@@ -103,6 +103,23 @@ https://invenioils.docs.cern.ch
103
103
  Changes
104
104
  =======
105
105
 
106
+ Version 7.1.0 (released 2026-01-22)
107
+
108
+ - stats: add document request stats endpoint and extend document request index
109
+ - stats: fix Schema using deserialize to validate
110
+ - stats: add order stats endpoint and extend orders index
111
+ - stats: turn loan histogram endpoint into reusable component
112
+
113
+ Version 7.0.0 (released 2026-01-06)
114
+
115
+ - stats: generalize stat tracking loan extensions to track all transitions
116
+ - stats: raise error when loan is indexed while loan transition events index does not exits
117
+ - stats: add feature flag for extending record indices with stats
118
+ - stats: warn when loan gets indexed while loan-transitions index does not exist
119
+ - breaking change: global: update invenio-circulation
120
+ - breaking change: stats: add loan stats endpoint and extend loans index
121
+ - breaking change: stats: add stat to track loan extensions
122
+
106
123
  Version 6.1.1 (released 2025-12-10)
107
124
 
108
125
  - tests: move covers builder test into correct folder
@@ -1,13 +1,13 @@
1
- invenio_app_ils/__init__.py,sha256=aUR3Bj9BAjXvgK6UWWHG518slgtK6nFjMi9QDrxgSlI,285
1
+ invenio_app_ils/__init__.py,sha256=HsFoetzDRkXOmOwWa_1sSlb7gE8ZQ-eRwu3tLvLHt9w,285
2
2
  invenio_app_ils/cli.py,sha256=GGXMuXUlO9i8S9fpBXwj5wfPcK8aYe0leSDB3V--7Bs,58609
3
- invenio_app_ils/config.py,sha256=aMdID-W4Jm8zI5K4Nvwvk86SG5OCuRZFS7wTWnXrAKM,45294
3
+ invenio_app_ils/config.py,sha256=R70-ZkUXwWWKcQkt2KiIgZtP2cVt0zMPsIfULEhxZ94,47229
4
4
  invenio_app_ils/errors.py,sha256=HB_iWj-aYxzTzzO6hWb66mUPZdqpWYHgmr2H2t3j3wU,13293
5
- invenio_app_ils/ext.py,sha256=SULPfx1FxBLaOaKcyNKAAIyvZAuvTH3AcH_a8aXTSYo,11522
5
+ invenio_app_ils/ext.py,sha256=nBKUkbkZ9VDOhwhXKjNq4gKSpixsaaCJqQmTJiHspiY,13613
6
6
  invenio_app_ils/facets.py,sha256=x-ID7vL34zqbxJi7VC3EJSee13l_Jk0CfPZN3RHZrM8,4207
7
7
  invenio_app_ils/fetchers.py,sha256=GY5A6BXaqMB9HKvJuTcio3JYoF15t6eqMo3yzQKTqac,520
8
8
  invenio_app_ils/indexer.py,sha256=ngXRx2liufDzgsSIoCeusk6q0Y1uskQ3QiVLeAi3KRg,2212
9
9
  invenio_app_ils/minters.py,sha256=8JW-45fL9Oy_13eZjlk8kL_12jJGZK59qbKlCeseQgA,537
10
- invenio_app_ils/permissions.py,sha256=lYdUQosqdSfPaGKLUZuqrwD0KWOP8_915qJiK4qXYho,7744
10
+ invenio_app_ils/permissions.py,sha256=tzxW2oU4Xb8rqL4rZLKLqUaYHHT78YD9NoxIRJE5UL0,7814
11
11
  invenio_app_ils/proxies.py,sha256=IGBwXQSOxpXHjD8PWFG1nqUm70xGAgzWT8Y0AKdCGiI,453
12
12
  invenio_app_ils/search_permissions.py,sha256=cJWDgShgzXwxAtCtb7qXCIUfNSrQy_oe0zMuT0TzXgA,5073
13
13
  invenio_app_ils/signals.py,sha256=KaN8yQUVq-2O2IKQQvPLtMjqp1S3AU1LYPlRyw9U8Pg,395
@@ -18,6 +18,7 @@ invenio_app_ils/acquisition/api.py,sha256=4WYKSw5aKg9KgMYIBuxlT9C7THybl6CfUnlTFz
18
18
  invenio_app_ils/acquisition/config.py,sha256=GxroZ9_A9c0j5yfGqdQar2mMhlqQiM679E_R4-rpoBA,3602
19
19
  invenio_app_ils/acquisition/errors.py,sha256=cUmGj3jYPhnBZFgeORTeKa554R93qDnrNUY9VEfBgFg,507
20
20
  invenio_app_ils/acquisition/ext.py,sha256=AcMXLvowZkNSRdx-qw6JVqoO--XUI4Vcq609-heoGsI,3095
21
+ invenio_app_ils/acquisition/indexer.py,sha256=nVbiAH2z5DHxGSncS5Tb8du8yZXW0vlhf4oouEieBVY,2376
21
22
  invenio_app_ils/acquisition/proxies.py,sha256=VUTcGAcyVPWQGuaGrdXA7Uz0GLyyWlzsgAtry14iuCA,461
22
23
  invenio_app_ils/acquisition/search.py,sha256=upPzjLLUD9PwhmVS41K6vPhQNw_QizOY0g78x4uJPUg,2031
23
24
  invenio_app_ils/acquisition/jsonresolvers/__init__.py,sha256=8Qvg1pp5IahIJu_gnvbhgCGBGpWNFTZbXbiJq4JObEw,246
@@ -30,17 +31,20 @@ invenio_app_ils/acquisition/mappings/__init__.py,sha256=4v-oXYmqpAAPcrIkHhpC1myK
30
31
  invenio_app_ils/acquisition/mappings/os-v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
32
  invenio_app_ils/acquisition/mappings/os-v1/acq_orders/order-v1.0.0.json,sha256=KMaSi0O-YsiTnA_dj4fkWiDvlNSAkm3dR5HfFnAJvUU,8155
32
33
  invenio_app_ils/acquisition/mappings/os-v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
- invenio_app_ils/acquisition/mappings/os-v2/acq_orders/order-v1.0.0.json,sha256=KMaSi0O-YsiTnA_dj4fkWiDvlNSAkm3dR5HfFnAJvUU,8155
34
+ invenio_app_ils/acquisition/mappings/os-v2/acq_orders/order-v1.0.0.json,sha256=aOsgHS3diHWBaf87-6W9oO93eefqK9YUyawDfFMbfqE,8256
34
35
  invenio_app_ils/acquisition/mappings/v7/__init__.py,sha256=JvBjTv45pDy60DvPsjWoSR-4fxVlj_gGRVBOT7441RY,248
35
36
  invenio_app_ils/acquisition/mappings/v7/acq_orders/order-v1.0.0.json,sha256=KMaSi0O-YsiTnA_dj4fkWiDvlNSAkm3dR5HfFnAJvUU,8155
36
37
  invenio_app_ils/acquisition/schemas/__init__.py,sha256=HulLvvDz0W5owDGxVLIaastuZ4o6T5-MYGw0RPuY90g,233
37
38
  invenio_app_ils/acquisition/schemas/acq_orders/order-v1.0.0.json,sha256=_Kd3oX_7gJJQSqSc2TxQulXletYu0wEeTdQKkXr7kLs,5688
39
+ invenio_app_ils/acquisition/stats/__init__.py,sha256=4046ZDfFZ5jhKJb7pxkogKB5HvkJnmlWe5Z-vqbSYHA,254
40
+ invenio_app_ils/acquisition/stats/views.py,sha256=ky8FbAYWi1GZ1jbHu_scvmFJkaPp01E3I6bm4cLPakk,2545
38
41
  invenio_app_ils/assets/semantic-ui/less/theme.config,sha256=j2GQ2ulbymT0K-AEzHNOV1r_Fb9QAptMvK4vN04a1Ug,3017
39
42
  invenio_app_ils/assets/semantic-ui/templates/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
43
  invenio_app_ils/circulation/__init__.py,sha256=Gd0KAsGdhPdz0ACEQ9k8xSeOIxZr3xRK_FiE8U3RQWs,248
41
44
  invenio_app_ils/circulation/api.py,sha256=jKty3IqTOK0XJdeXLlDqnZH2uhdVzd4xWuVphQe4YKw,14643
42
45
  invenio_app_ils/circulation/config.py,sha256=pcB5JEjxXrieRRO-8RBUbxgf5dkhRGXXI2BvWfQUUCs,11433
43
- invenio_app_ils/circulation/indexer.py,sha256=T24J5QqcB38LRJgirkAXL2tmFOucYToDRegxgFW96ag,3887
46
+ invenio_app_ils/circulation/errors.py,sha256=R0VwfKbYyq02PPKxpKg5LCW86x5l6s9n8MV1m5c85gk,367
47
+ invenio_app_ils/circulation/indexer.py,sha256=CEAumqSq7ZYaOE0AIgIFijgfOinVd6yz6B5jFaMbF9M,6340
44
48
  invenio_app_ils/circulation/receivers.py,sha256=Ux6KTNbII3DHBvCUS0gxqbi6tNbm76_kbcaHtK0BsB4,2488
45
49
  invenio_app_ils/circulation/search.py,sha256=l9DAr9uoaF_JbfiiXVpAFKW3NLv9bgs7D-uDwtU-fv0,6105
46
50
  invenio_app_ils/circulation/tasks.py,sha256=w4lpbQo78aDg_vgdzQoRVe1y1NjCKrz1xNlLl5RDgs0,1515
@@ -67,8 +71,8 @@ invenio_app_ils/circulation/serializers/custom_fields.py,sha256=EQnWMCLNgModn4Br
67
71
  invenio_app_ils/circulation/serializers/json.py,sha256=x625dleVLyfZU1bAWuTfk1UvEGUlWuAYUAvec4qAFHo,1553
68
72
  invenio_app_ils/circulation/serializers/response.py,sha256=xPmwnO-bHoaaL6KgCz6ayo2FBGBlJKmb4cH9JeOb9ls,1289
69
73
  invenio_app_ils/circulation/stats/__init__.py,sha256=X_oDxvlDZRHxfjM1J-sBisDmn_45F0MptRbvyTTI3WA,247
70
- invenio_app_ils/circulation/stats/api.py,sha256=YLdW_TobeoJWrCX1OHgpaW46JBb-FpyiFkeabZLiAgI,1807
71
- invenio_app_ils/circulation/stats/views.py,sha256=_I9qgSnvmKs5sjJ4zpH1pLoGYCLA8C3mVMfFLTlzVEM,4933
74
+ invenio_app_ils/circulation/stats/api.py,sha256=90mZL28b7LxlPRpfW7oyiLvvPrPiTiTO8EES3eIWCz0,1812
75
+ invenio_app_ils/circulation/stats/views.py,sha256=1RwpoGrlGp93aeWij7NA4Py3fgsNiRr6OfwOx1NvfHA,6704
72
76
  invenio_app_ils/circulation/templates/invenio_app_ils_circulation/notifications/bulk_extend.html,sha256=rSYqCysrRnlKJTE1VjnigmPCCj5vHT0jsKzqgajHNRM,1616
73
77
  invenio_app_ils/circulation/templates/invenio_app_ils_circulation/notifications/cancel.html,sha256=Rm51UHpxuQo5syVf2_KBEdpHvxVEdyIvFMo0e8vsZxw,725
74
78
  invenio_app_ils/circulation/templates/invenio_app_ils_circulation/notifications/checkin.html,sha256=Bwud7JhRsBBb9gArBOtbw4CGJWIRHJVw4KMxOuyxlM0,545
@@ -93,7 +97,7 @@ invenio_app_ils/demo_data/documents.json,sha256=n0urrP68azieRMjgwGvKWoJSNXyTwpVx
93
97
  invenio_app_ils/demo_data/items.json,sha256=J0IGbnIsFefgvGbgMWVCcvDIW5RJa48WoDPNBImUWKQ,1799
94
98
  invenio_app_ils/document_requests/__init__.py,sha256=yPDfvJcGPy0dJ0f_hsJ5OQ5EcQ-WJODFPLjuWmSXSdU,237
95
99
  invenio_app_ils/document_requests/api.py,sha256=OzBzMlhxt69wl7JTb0Pvj98UZSbv75dNpULst7IryDA,6707
96
- invenio_app_ils/document_requests/indexer.py,sha256=kwr2pRPkx3Rwaf213GFAcvQJEyIqyWGqd0Cm2AV5sbM,1550
100
+ invenio_app_ils/document_requests/indexer.py,sha256=wpw3lTqTuwm2mu7-aCMRA_SqkdAYcZHVOxRNHbblfxA,4535
97
101
  invenio_app_ils/document_requests/search.py,sha256=bi1ssTfhBcXmIN5U5TjHkzkMQR6YElXl3YfWNmP8u9g,1495
98
102
  invenio_app_ils/document_requests/views.py,sha256=hT1A01mlnUaWIafGoyUReoikUf3pYm6H2GC5RG4wj9c,9544
99
103
  invenio_app_ils/document_requests/jsonresolvers/__init__.py,sha256=isc0o6XFuTxHDndda1c-kCR-hep3xAYTI8KyZsjY9ts,255
@@ -109,7 +113,7 @@ invenio_app_ils/document_requests/mappings/__init__.py,sha256=zhVrec2bOyFtzNem8z
109
113
  invenio_app_ils/document_requests/mappings/os-v1/__init__.py,sha256=h4RXf0yVWsRrOz_6no2OJRx4dy3_ppW7OxrNpVtufwo,262
110
114
  invenio_app_ils/document_requests/mappings/os-v1/document_requests/document_request-v1.0.0.json,sha256=RyZX6X2vj30ncF5wYwKQAZihK7xD-TaK8wdsejX3rLw,4297
111
115
  invenio_app_ils/document_requests/mappings/os-v2/__init__.py,sha256=h4RXf0yVWsRrOz_6no2OJRx4dy3_ppW7OxrNpVtufwo,262
112
- invenio_app_ils/document_requests/mappings/os-v2/document_requests/document_request-v1.0.0.json,sha256=RyZX6X2vj30ncF5wYwKQAZihK7xD-TaK8wdsejX3rLw,4297
116
+ invenio_app_ils/document_requests/mappings/os-v2/document_requests/document_request-v1.0.0.json,sha256=ebM_I4SBaflfnZ8tfJPk2HQaZDI0zDrVl2oGIscehAk,4398
113
117
  invenio_app_ils/document_requests/mappings/v7/__init__.py,sha256=h4RXf0yVWsRrOz_6no2OJRx4dy3_ppW7OxrNpVtufwo,262
114
118
  invenio_app_ils/document_requests/mappings/v7/document_requests/document_request-v1.0.0.json,sha256=RyZX6X2vj30ncF5wYwKQAZihK7xD-TaK8wdsejX3rLw,4297
115
119
  invenio_app_ils/document_requests/notifications/__init__.py,sha256=K97db_cvtGJxWBuPXIaj3i19bsZkAcAdLoZ-e5Z7M80,256
@@ -117,6 +121,8 @@ invenio_app_ils/document_requests/notifications/api.py,sha256=ghwB0Vs_fMtsa203ZL
117
121
  invenio_app_ils/document_requests/notifications/messages.py,sha256=DLMWlH9NAfo3JOvxfvXCbN59Pb0zkJUldYCp6l8AjIg,2574
118
122
  invenio_app_ils/document_requests/schemas/__init__.py,sha256=wrBwDSD85k60icw_ML_oC7liOwLPK5x6beASsicMQZc,242
119
123
  invenio_app_ils/document_requests/schemas/document_requests/document_request-v1.0.0.json,sha256=weq2-AeHOLwpWWl3G9GrJJWUSag0idxi3bTLonGic6g,3208
124
+ invenio_app_ils/document_requests/stats/__init__.py,sha256=wifhVGB7Cqdxnz30Tw0zX-DMv2TExfkvz7FSbUqoumU,260
125
+ invenio_app_ils/document_requests/stats/views.py,sha256=f6DzxTTJ9BUaRT11D9WL0mGmnklMwCuQgQNw-28VHG4,2645
120
126
  invenio_app_ils/document_requests/templates/invenio_app_ils_document_requests/notifications/document_request_accept.html,sha256=vv3mSqvE755X7dhe69_hF5VprN83I0kWQt6BlDtn8uc,392
121
127
  invenio_app_ils/document_requests/templates/invenio_app_ils_document_requests/notifications/document_request_decline_in_catalog.html,sha256=NBJPJxAzf7tUzCm-s5O0QzHTmxJGeZYGHkklRTGLMvs,523
122
128
  invenio_app_ils/document_requests/templates/invenio_app_ils_document_requests/notifications/document_request_decline_not_found.html,sha256=cqHXkkyjOnFZRwcEv3jn9-nQAS12k4s8lTdmJpaj2wg,509
@@ -377,8 +383,8 @@ invenio_app_ils/series/schemas/series/series-v2.0.0.json,sha256=QrNqmAeuqZysIHVB
377
383
  invenio_app_ils/static/images/placeholder.png,sha256=dSqkEWkAsDHcV8GBVS52gsMhXQxLKSWjg74etFdToTE,4585
378
384
  invenio_app_ils/static_pages/search_guide.html,sha256=8wkk5o6sJCsbPwccYRwhxO5TMiVsLdAXOEduWQStyMk,22084
379
385
  invenio_app_ils/stats/__init__.py,sha256=tYEj7b8b25K-qS6FTv7w2bc_iLjaiTFn8INNv4-JVmM,254
380
- invenio_app_ils/stats/event_builders.py,sha256=p628CvL9x1tothBah-giK5nxuA8MBVKHseTFRSTFUiI,2085
381
- invenio_app_ils/stats/processors.py,sha256=vQnAt6ijJqUC8buHtCg-hj1rhQamTLD5f9jTN1oxRBk,1184
386
+ invenio_app_ils/stats/event_builders.py,sha256=i9TFKr6hBzpoZTUrGYhpKQiYdEb4-WetZooEQsPcEjs,3341
387
+ invenio_app_ils/stats/processors.py,sha256=E8c1X94SwgK01_iMLKBfKd_7Ov_zdWQ_HexFMe8posA,3438
382
388
  invenio_app_ils/stats/aggregations/__init__.py,sha256=Ix-wNZuG_-H6P-bJ2FS43AlDQwnXegMvdy6pb-FHejY,284
383
389
  invenio_app_ils/stats/aggregations/aggr_file_download/__init__.py,sha256=NR2hvgsR555O6Szy4eGC_XpNT4VZo888lMp6faeXffA,294
384
390
  invenio_app_ils/stats/aggregations/aggr_file_download/os-v1/__init__.py,sha256=NR2hvgsR555O6Szy4eGC_XpNT4VZo888lMp6faeXffA,294
@@ -394,14 +400,27 @@ invenio_app_ils/stats/file_download/os-v2/__init__.py,sha256=T0kcRAoEecatActm6Mv
394
400
  invenio_app_ils/stats/file_download/os-v2/file-download-v1.json,sha256=TAz_srZZ7BhBHiQTuac-3NhbD1OraAnUYW9ZsneYWj4,1444
395
401
  invenio_app_ils/stats/file_download/v7/__init__.py,sha256=T0kcRAoEecatActm6MvVlAWbHIQ7xq8D2vCE59ShWTI,287
396
402
  invenio_app_ils/stats/file_download/v7/file-download-v1.json,sha256=JOfqa0HYysRL1-OcnrG4Ohhv39eML5qKVXswN7OYfE4,1383
403
+ invenio_app_ils/stats/histogram/__init__.py,sha256=ZLKckMrKkV9rM_NPi_2xXiCR957rV1GxxEgyz9GkdtI,569
404
+ invenio_app_ils/stats/histogram/api.py,sha256=RG3WR0fZwLFgjuKOZGtSYuefoGWZoWKmFTbmoephApM,4006
405
+ invenio_app_ils/stats/histogram/schemas.py,sha256=LyA0u-EjO6xUnf_eCRqYkZal5l_tIBRk9UwJYZATXWg,3050
406
+ invenio_app_ils/stats/histogram/views.py,sha256=zr6DGO0allRF3tB1HwEcQRUvNqX5WdpOoiBFbbA_vLQ,1182
407
+ invenio_app_ils/stats/histogram/serializers/__init__.py,sha256=WPyi9aRve9QgCy-dZbhBbhJPGEZRZL5BmA9AHXEYluk,567
408
+ invenio_app_ils/stats/histogram/serializers/response.py,sha256=TmSMQnYrf9ETEfaYNppJbwE158G8oye5heEt5txgiqk,945
409
+ invenio_app_ils/stats/histogram/serializers/schema.py,sha256=EvDyeEvuik1da2ZMVxD_B1zTvPyu1iWFm1jLZ_zjL_M,837
397
410
  invenio_app_ils/stats/templates/aggregations/__init__.py,sha256=u5NGrHHOqWBgFs2-igJenjaj33UGluHgkKYV2etwJ1E,242
398
411
  invenio_app_ils/stats/templates/aggregations/ils_record_changes/__init__.py,sha256=Fae3O56C56coEeyOZqcW4Pr9p3anlR6C1MZidpF4ots,254
399
412
  invenio_app_ils/stats/templates/aggregations/ils_record_changes/os-v2/__init__.py,sha256=Fae3O56C56coEeyOZqcW4Pr9p3anlR6C1MZidpF4ots,254
400
413
  invenio_app_ils/stats/templates/aggregations/ils_record_changes/os-v2/aggr-ils-record-changes-v1.json,sha256=YDDLh51xr-fEm3PMDka1DYyiZjvHQ8L76Qc8NQQl1AM,755
414
+ invenio_app_ils/stats/templates/aggregations/loan_transitions/__init__.py,sha256=S3fGruV4UCxkudxkNgRjC3v-wA_3fbcZaSxkmdBtWSU,252
415
+ invenio_app_ils/stats/templates/aggregations/loan_transitions/os-v2/__init__.py,sha256=S3fGruV4UCxkudxkNgRjC3v-wA_3fbcZaSxkmdBtWSU,252
416
+ invenio_app_ils/stats/templates/aggregations/loan_transitions/os-v2/aggr-loan-transitions-v1.json,sha256=4oCysVcOEZT5llEIen2U5XD1zVH6IXOTOhsGM0LafiI,582
401
417
  invenio_app_ils/stats/templates/events/__init__.py,sha256=vn0uewDZ-svfcjtL2Tmjh2qWdI8sLWyAgOmuEc30hwE,236
402
418
  invenio_app_ils/stats/templates/events/ils_record_changes/__init__.py,sha256=PoP04xZy8M3jLQjKdHg8CH_1uZCPeaE6vbgL5ciBmCU,249
403
419
  invenio_app_ils/stats/templates/events/ils_record_changes/os-v2/__init__.py,sha256=PoP04xZy8M3jLQjKdHg8CH_1uZCPeaE6vbgL5ciBmCU,249
404
420
  invenio_app_ils/stats/templates/events/ils_record_changes/os-v2/ils-record-changes-v1.json,sha256=AyraC4_iFST-y1W8_zufUqDiLNj1Jl_BIxZRnhkPHqU,773
421
+ invenio_app_ils/stats/templates/events/loan_transitions/__init__.py,sha256=oQs-4ekFtKhGAOSxcF2Jj5cuHE4GxLwAvrf_ImTzCtA,247
422
+ invenio_app_ils/stats/templates/events/loan_transitions/os-v2/__init__.py,sha256=oQs-4ekFtKhGAOSxcF2Jj5cuHE4GxLwAvrf_ImTzCtA,247
423
+ invenio_app_ils/stats/templates/events/loan_transitions/os-v2/loan-transitions-v1.json,sha256=JgOqSQNGjNQpHwWPBSisMzdo2uI1dwHwsuFHY2Rycw4,762
405
424
  invenio_app_ils/templates/logged_out.html,sha256=T-zEwtIHQENkDwO9d5QmB7oNmCofq8DuClpg-ojPfoU,356
406
425
  invenio_app_ils/templates/invenio_app_ils/mail/footer.html,sha256=tLIgLCHNfWZibDG-vf9C-APhxn5AGJhJzBRqpwMwh04,413
407
426
  invenio_app_ils/templates/invenio_app_ils/notifications/footer.html,sha256=tLIgLCHNfWZibDG-vf9C-APhxn5AGJhJzBRqpwMwh04,413
@@ -455,10 +474,10 @@ invenio_app_ils/vocabularies/sources/__init__.py,sha256=EMLoLQGiq9_qoZ4lKqO_J0u2
455
474
  invenio_app_ils/vocabularies/sources/base.py,sha256=kmNg85cjrxqc8VErFP2SUtlyo1PnmzOBQgfoSpfTPh4,1418
456
475
  invenio_app_ils/vocabularies/sources/json.py,sha256=KGLTJ4AX8zEDdkpi3v92oHGs-h2dUzHbNPSg99-j8o0,1021
457
476
  invenio_app_ils/vocabularies/sources/opendefinition.py,sha256=9zbRXuTr0i5lVLt596oUhsLQPiJVf9jiM9-C7T6zbXA,2151
458
- invenio_app_ils-6.1.1.dist-info/licenses/AUTHORS.rst,sha256=BaXCGzdHCmiMOl4qtVlh1qrfy2ROMVOQp6ylzy1m0ww,212
459
- invenio_app_ils-6.1.1.dist-info/licenses/LICENSE,sha256=9OdaPOAO1ZOJcRQ8BrGj7QAdaJc8SRSUgBtdom49MrI,1062
460
- invenio_app_ils-6.1.1.dist-info/METADATA,sha256=WQMIQ4Em9Y-ocitjv3a7QiopaJFJfwlWZnr4MH6087o,18263
461
- invenio_app_ils-6.1.1.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
462
- invenio_app_ils-6.1.1.dist-info/entry_points.txt,sha256=L36OnFZlrAnCaQpXnWoLmYYJ1U6Y1K_TDUZB0nnWeO0,7748
463
- invenio_app_ils-6.1.1.dist-info/top_level.txt,sha256=p-lnzfSHaDER0BHbQvDV6dvUW7_Q0prMDFaqPhBSK50,16
464
- invenio_app_ils-6.1.1.dist-info/RECORD,,
477
+ invenio_app_ils-7.1.0.dist-info/licenses/AUTHORS.rst,sha256=BaXCGzdHCmiMOl4qtVlh1qrfy2ROMVOQp6ylzy1m0ww,212
478
+ invenio_app_ils-7.1.0.dist-info/licenses/LICENSE,sha256=9OdaPOAO1ZOJcRQ8BrGj7QAdaJc8SRSUgBtdom49MrI,1062
479
+ invenio_app_ils-7.1.0.dist-info/METADATA,sha256=sK9iE9rvghCwwdBZxRFIeGj8Caye8VIuiwyOk3ObJyQ,19087
480
+ invenio_app_ils-7.1.0.dist-info/WHEEL,sha256=Q6xS052dXadQWXcEVKSI037R6NoyqhUlJ5BcYz2iMP4,110
481
+ invenio_app_ils-7.1.0.dist-info/entry_points.txt,sha256=XJzPenKn4NOWqckmUFaXh9idhxTMQQbtssxeVW7qH3E,7962
482
+ invenio_app_ils-7.1.0.dist-info/top_level.txt,sha256=p-lnzfSHaDER0BHbQvDV6dvUW7_Q0prMDFaqPhBSK50,16
483
+ invenio_app_ils-7.1.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any
@@ -23,10 +23,12 @@ ils_providers = invenio_app_ils.providers.ext:InvenioIlsProviders
23
23
  ils_rest = invenio_app_ils.ext:InvenioAppIlsREST
24
24
 
25
25
  [invenio_base.api_blueprints]
26
+ ils_acquisition_stats = invenio_app_ils.acquisition.stats.views:create_acquisition_stats_blueprint
26
27
  ils_circulation = invenio_app_ils.circulation.views:create_circulation_blueprint
27
28
  ils_circulation_stats = invenio_app_ils.circulation.stats.views:create_circulation_stats_blueprint
28
29
  ils_closures = invenio_app_ils.closures.views:create_closures_blueprint
29
30
  ils_document_request = invenio_app_ils.document_requests.views:create_document_request_action_blueprint
31
+ ils_document_request_stats = invenio_app_ils.document_requests.stats.views:create_document_request_stats_blueprint
30
32
  ils_document_stats = invenio_app_ils.records.views:create_document_stats_blueprint
31
33
  ils_files = invenio_app_ils.files.views:create_files_blueprint
32
34
  ils_ill = invenio_app_ils.ill.views:create_ill_blueprint