folio-migration-tools 1.9.0rc11__py3-none-any.whl → 1.9.0rc13__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 (31) hide show
  1. folio_migration_tools/__main__.py +1 -2
  2. folio_migration_tools/library_configuration.py +21 -1
  3. folio_migration_tools/mapper_base.py +78 -4
  4. folio_migration_tools/mapping_file_transformation/courses_mapper.py +2 -1
  5. folio_migration_tools/mapping_file_transformation/holdings_mapper.py +8 -4
  6. folio_migration_tools/mapping_file_transformation/item_mapper.py +4 -11
  7. folio_migration_tools/mapping_file_transformation/manual_fee_fines_mapper.py +1 -0
  8. folio_migration_tools/mapping_file_transformation/mapping_file_mapper_base.py +3 -19
  9. folio_migration_tools/mapping_file_transformation/notes_mapper.py +2 -0
  10. folio_migration_tools/mapping_file_transformation/order_mapper.py +4 -1
  11. folio_migration_tools/mapping_file_transformation/organization_mapper.py +7 -4
  12. folio_migration_tools/mapping_file_transformation/user_mapper.py +3 -1
  13. folio_migration_tools/marc_rules_transformation/holdings_statementsparser.py +7 -14
  14. folio_migration_tools/marc_rules_transformation/rules_mapper_authorities.py +1 -0
  15. folio_migration_tools/marc_rules_transformation/rules_mapper_base.py +83 -4
  16. folio_migration_tools/marc_rules_transformation/rules_mapper_bibs.py +10 -5
  17. folio_migration_tools/marc_rules_transformation/rules_mapper_holdings.py +39 -33
  18. folio_migration_tools/migration_tasks/bibs_transformer.py +13 -3
  19. folio_migration_tools/migration_tasks/holdings_csv_transformer.py +42 -21
  20. folio_migration_tools/migration_tasks/holdings_marc_transformer.py +39 -22
  21. folio_migration_tools/migration_tasks/items_transformer.py +4 -3
  22. folio_migration_tools/migration_tasks/migration_task_base.py +22 -1
  23. folio_migration_tools/migration_tasks/orders_transformer.py +2 -0
  24. folio_migration_tools/migration_tasks/user_transformer.py +1 -0
  25. folio_migration_tools/transaction_migration/legacy_loan.py +2 -1
  26. folio_migration_tools/translations/en.json +12 -1
  27. {folio_migration_tools-1.9.0rc11.dist-info → folio_migration_tools-1.9.0rc13.dist-info}/METADATA +2 -2
  28. {folio_migration_tools-1.9.0rc11.dist-info → folio_migration_tools-1.9.0rc13.dist-info}/RECORD +31 -31
  29. {folio_migration_tools-1.9.0rc11.dist-info → folio_migration_tools-1.9.0rc13.dist-info}/WHEEL +1 -1
  30. {folio_migration_tools-1.9.0rc11.dist-info → folio_migration_tools-1.9.0rc13.dist-info}/LICENSE +0 -0
  31. {folio_migration_tools-1.9.0rc11.dist-info → folio_migration_tools-1.9.0rc13.dist-info}/entry_points.txt +0 -0
@@ -3,7 +3,7 @@
3
3
  "%{action} error. http status: %{status}": "%{action} error. http status: %{status}",
4
4
  "%{action} error: %{message}": "%{action} error: %{message}",
5
5
  "%{fields_criteria} empty or not set": "%{fields_criteria} empty or not set",
6
- "%{field} a,x and z are all empty": "%{field} a,x and z are all empty",
6
+ "%{field} a, x and z are missing or empty": "%{field} a, x and z are missing or empty",
7
7
  "%{field} subfields a, x, and z missing from field": "%{field} subfields a, x, and z missing from field",
8
8
  "%{fro} mapped from %{record}": "%{fro} mapped from %{record}",
9
9
  "%{props} were concatenated": "%{props} were concatenated",
@@ -12,6 +12,7 @@
12
12
  "%{value} added to %{entry}": "%{value} added to %{entry}",
13
13
  "%{value} mapped to %{mapped_value}": "%{value} mapped to %{mapped_value}",
14
14
  "%{value} not found in map.": "%{value} not found in map.",
15
+ "0 is staff-only, all other values are public": "0 is staff-only, all other values are public",
15
16
  "008 is too short": "008 is too short",
16
17
  "008 length invalid. '%{rest}' was stripped out": "008 length invalid. '%{rest}' was stripped out",
17
18
  "035 generation from 001 turned off": "035 generation from 001 turned off",
@@ -57,6 +58,7 @@
57
58
  "Data issue. Consider fixing the record. ": "Data issue. Consider fixing the record. ",
58
59
  "Declare item as lost": "Declare item as lost",
59
60
  "Discarded reserves": "Discarded reserves",
61
+ "Due date is before out date, or date information is missing from both": "Due date is before out date, or date information is missing from both",
60
62
  "Duplicate 001. Creating HRID instead.\n Previous 001 will be stored in a new 035 field": "Duplicate 001. Creating HRID instead.\n Previous 001 will be stored in a new 035 field",
61
63
  "Duplicate MARC record identifiers ": "Duplicate MARC record identifiers ",
62
64
  "Duplicate barcodes": "Duplicate barcodes",
@@ -106,6 +108,7 @@
106
108
  "Mapped from Indicator 1": "Mapped from Indicator 1",
107
109
  "Mapping failed for %{tag} \"%{subfield}\" (%{normalized_subfield})": "Mapping failed for %{tag} \"%{subfield}\" (%{normalized_subfield})",
108
110
  "Mapping failed for %{tag} \"%{subfield}\" (Normalized: %{normalized_subfield})": "Mapping failed for %{tag} \"%{subfield}\" (Normalized: %{normalized_subfield})",
111
+ "Mapping not set up": "Mapping not set up",
109
112
  "Mapping not set up for target field": "Mapping not set up for target field",
110
113
  "Mapping not setup": "Mapping not setup",
111
114
  "Measure": "Measure",
@@ -128,7 +131,9 @@
128
131
  "Number of organizations created": "Number of organizations created",
129
132
  "Number of records written to disk": "Number of records written to disk",
130
133
  "Number of reoccuring identical %{type}": "Number of reoccuring identical %{type}",
134
+ "Number of reoccurring identical %{type}": "Number of reoccurring identical %{type}",
131
135
  "Ogranization transformation report": "Ogranization transformation report",
136
+ "Organization transformation report": "Organization transformation report",
132
137
  "Organizations linked using organizations_id_map": "Organizations linked using organizations_id_map",
133
138
  "Organizations not in ID map, linked using FOLIO lookup": "Organizations not in ID map, linked using FOLIO lookup",
134
139
  "Original value": "Original value",
@@ -143,8 +148,10 @@
143
148
  "Previously transformed holdings record loaded": "Previously transformed holdings record loaded",
144
149
  "Processed pre-validated loans": "Processed pre-validated loans",
145
150
  "Processed reserves": "Processed reserves",
151
+ "Provided boundwith relationship file not found": "Provided boundwith relationship file not found",
146
152
  "Pruchase Orders and Purchase Order Lines Transformation Report": "Pruchase Orders and Purchase Order Lines Transformation Report",
147
153
  "RECORD FAILED Organization identifier not in ID map/FOLIO": "RECORD FAILED Organization identifier not in ID map/FOLIO",
154
+ "RECORD FAILED: PO number has invalid character(s)": "RECORD FAILED: PO number has invalid character(s)",
148
155
  "Records failed": "Records failed",
149
156
  "Records failed because of failed holdings": "Records failed because of failed holdings",
150
157
  "Records failed due to an error. See data issues log for details": "Records failed due to an error. See data issues log for details",
@@ -178,9 +185,13 @@
178
185
  "Set leader 10 (Indicator count) from %{field} to 2": "Set leader 10 (Indicator count) from %{field} to 2",
179
186
  "Set leader 11 (Subfield code count) from %{record} to 2": "Set leader 11 (Subfield code count) from %{record} to 2",
180
187
  "Set leader 20-23 from %{field} to 4500": "Set leader 20-23 from %{field} to 4500",
188
+ "Set up statistical code id mapping...": "Set up statistical code id mapping...",
181
189
  "Source digits": "Source digits",
182
190
  "Source of heading or term": "Source of heading or term",
183
191
  "Staff suppressed": "Staff suppressed",
192
+ "Statistical code": "Statistical code",
193
+ "Statistical code '%{code}' not found in FOLIO": "Statistical code '%{code}' not found in FOLIO",
194
+ "Statistical codes not supported for this object type": "Statistical codes not supported for this object type",
184
195
  "Stored courselistings": "Stored courselistings",
185
196
  "Stored courses": "Stored courses",
186
197
  "Stored instructors": "Stored instructors",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: folio_migration_tools
3
- Version: 1.9.0rc11
3
+ Version: 1.9.0rc13
4
4
  Summary: A tool allowing you to migrate data from legacy ILS:s (Library systems) into FOLIO LSP
5
5
  License: MIT
6
6
  Keywords: FOLIO,ILS,LSP,Library Systems,MARC21,Library data
@@ -20,7 +20,7 @@ Requires-Dist: art (>=6.5,<7.0)
20
20
  Requires-Dist: deepdiff (>=6.2.3,<7.0.0)
21
21
  Requires-Dist: defusedxml (>=0.7.1,<0.8.0)
22
22
  Requires-Dist: folio-uuid (>=0.2.8,<0.3.0)
23
- Requires-Dist: folioclient (==0.70.1)
23
+ Requires-Dist: folioclient (>=0.70.1,<0.71.0)
24
24
  Requires-Dist: pyaml (>=21.10.1,<22.0.0)
25
25
  Requires-Dist: pydantic (>=1.10.2,<2.0.0)
26
26
  Requires-Dist: pyhumps (>=3.7.3,<4.0.0)
@@ -1,5 +1,5 @@
1
1
  folio_migration_tools/__init__.py,sha256=DXvzUKFSpSZjflFWaNm0L8yhFk0u7RVIvQMskwMmKFc,238
2
- folio_migration_tools/__main__.py,sha256=f2xy05yq5tT1WMesXmQM0GqvPAXXXnO9C0kwacasnZU,8458
2
+ folio_migration_tools/__main__.py,sha256=kfo4iKf3GJD7deh4RvIizKnC4zvIgCpNo-Bs7HBM34s,8453
3
3
  folio_migration_tools/circulation_helper.py,sha256=V2VM30i2OigOKb64B4FFKTeHu9NTkhptalaOfziPhTo,14199
4
4
  folio_migration_tools/colors.py,sha256=GP0wdI_GZ2WD5SjrbPN-S3u8vvN_u6rGQIBBcWv_0ZM,227
5
5
  folio_migration_tools/config_file_load.py,sha256=zHHa6NDkN6EJiQE4DgjrFQPVKsd70POsfbGkB8308jg,2822
@@ -10,58 +10,58 @@ folio_migration_tools/folder_structure.py,sha256=bZlmKGtxdytWcqjnM2lE4Vpx4nHyYRk
10
10
  folio_migration_tools/helper.py,sha256=KkOkNAGO_fuYqxdLrsbLzCJLQHUrFZG1NzD4RmpQ-KM,2804
11
11
  folio_migration_tools/holdings_helper.py,sha256=yJpz6aJrKRBiJ1MtT5bs2vXAc88uJuGh2_KDuCySOKc,7559
12
12
  folio_migration_tools/i18n_config.py,sha256=3AH_2b9zTsxE4XTe4isM_zYtPJSlK0ix6eBmV7kAYUM,228
13
- folio_migration_tools/library_configuration.py,sha256=I2Pj2hrjbhbc3HNwzQ-LTPM4IyJyeqAXsb2aA9TvX3s,6469
14
- folio_migration_tools/mapper_base.py,sha256=H2QiNZZzDKxuCxSdXaa-1BRatAUArpr3Te1QsAscMog,20122
13
+ folio_migration_tools/library_configuration.py,sha256=LzICsZQdOkXwIqdDfh59x0-Cx77Lb18qVnWroNqekS8,7046
14
+ folio_migration_tools/mapper_base.py,sha256=IYER8Dq-4qLq3qiAvUpnzc33usUbfZtNKzyZJD6DNds,23567
15
15
  folio_migration_tools/mapping_file_transformation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- folio_migration_tools/mapping_file_transformation/courses_mapper.py,sha256=RuNkdG9XumpgPO3Zvcx_JYzZ598Xle_AMNf18zLR2UM,8095
17
- folio_migration_tools/mapping_file_transformation/holdings_mapper.py,sha256=nJS-xx1LszvbYfw0qdTUHX9xXHlxS7wP5mYmixFMh8A,7221
18
- folio_migration_tools/mapping_file_transformation/item_mapper.py,sha256=YYZFgNoDVuSO_mRuaDNZ6-6bYbEtYFtfbIZ1MFPBAgc,10687
19
- folio_migration_tools/mapping_file_transformation/manual_fee_fines_mapper.py,sha256=nCkqbxaDHKxMuqQHh_afxQp48YrVD-SeCZ0L1iGvnkk,13402
20
- folio_migration_tools/mapping_file_transformation/mapping_file_mapper_base.py,sha256=bLL6tTqqv2MOjZlowjL8lngYP09F_iwfFikEpjB4nmI,37816
21
- folio_migration_tools/mapping_file_transformation/notes_mapper.py,sha256=auLQZqa4rSJo_MIV4Lc5-LG8RcBpp2bnKH243qNYq_0,3470
22
- folio_migration_tools/mapping_file_transformation/order_mapper.py,sha256=k-kIuf2ceXrPWe3oVnfhuQlE7eglcx6PDLVJtddkeiM,17680
23
- folio_migration_tools/mapping_file_transformation/organization_mapper.py,sha256=0zjw0-C-qTYH9GC6FDBElucWCZWdoOiTHOY7q9_4NQg,14571
16
+ folio_migration_tools/mapping_file_transformation/courses_mapper.py,sha256=yX8yCCw6B54r7JUn5IPhMYKBgImiagUzfwBxNVRf5MQ,8091
17
+ folio_migration_tools/mapping_file_transformation/holdings_mapper.py,sha256=DY4cpSWaJWJo-8ESpO4PSf_raTIRAVSt9N0-aV1ShGc,7504
18
+ folio_migration_tools/mapping_file_transformation/item_mapper.py,sha256=wYEnSsV7U7YE2Df2sld_qJsbPtV9YoEV42iAbatjN8U,10402
19
+ folio_migration_tools/mapping_file_transformation/manual_fee_fines_mapper.py,sha256=2-W2Z8hwAhWT77zfDWuwWqm20j4w1mfzeAXWiyssQ8I,13434
20
+ folio_migration_tools/mapping_file_transformation/mapping_file_mapper_base.py,sha256=EHeeC-Yr4Cy9OhoTcteJAtMiG_yJu8pq1NqikkVCmMc,37274
21
+ folio_migration_tools/mapping_file_transformation/notes_mapper.py,sha256=vCmZmjrjyYtXeFCyVqvWfnP8y1jGGu15RXzXIHh12xY,3530
22
+ folio_migration_tools/mapping_file_transformation/order_mapper.py,sha256=-JEBEeOntNPE9-NYhWAJ1hpQI03ZzMv-_mkyLzSa9x4,17750
23
+ folio_migration_tools/mapping_file_transformation/organization_mapper.py,sha256=u1Lb6tApn-nVLqbbJV38BuipKL3OK8Y2uQ4ogoyGQaI,14639
24
24
  folio_migration_tools/mapping_file_transformation/ref_data_mapping.py,sha256=qFsn_LwKZeKFdOudfEQnNA3DEHOdNQVKzTPdZAlDPX0,8864
25
- folio_migration_tools/mapping_file_transformation/user_mapper.py,sha256=Q8418BdXdCuEDxfoXqLCjWy1lUxhQNLRwSE5Gi1lqoA,7805
25
+ folio_migration_tools/mapping_file_transformation/user_mapper.py,sha256=GnePkCK2k8VSd_wAUNlLwTLLB-WwpxZLBC-kDXtONBU,7867
26
26
  folio_migration_tools/marc_rules_transformation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
27
  folio_migration_tools/marc_rules_transformation/conditions.py,sha256=ttTZISieqveu3YpvpnawHh3In1_DNQMTziI5yasfmWU,39142
28
- folio_migration_tools/marc_rules_transformation/holdings_statementsparser.py,sha256=lTb5QWEAgwyFHy5vdSK6oDl1Q5v2GnzuV04xWV3p4rc,12401
28
+ folio_migration_tools/marc_rules_transformation/holdings_statementsparser.py,sha256=Rvdub7RdtR1BWnZij_Ejgp7cG9Kz58i_tXwXJbhaMtU,12101
29
29
  folio_migration_tools/marc_rules_transformation/hrid_handler.py,sha256=SgnSYeNR0z_qarkizBMWZZWr8tOPZJ4fvlZjlM3nJOU,9999
30
30
  folio_migration_tools/marc_rules_transformation/loc_language_codes.xml,sha256=ztn2_yKws6qySL4oSsZh7sOjxq5bCC1PhAnXJdtgmJ0,382912
31
31
  folio_migration_tools/marc_rules_transformation/marc_file_processor.py,sha256=M-PHduzMYmZnrMwOSlwnWQ5bT-566gVRFSMo-JgS2d4,12346
32
32
  folio_migration_tools/marc_rules_transformation/marc_reader_wrapper.py,sha256=9ATjYMRAjy0QcXtmNZaHVhHLJ5hE1WUgOcF6KMJjbgo,5309
33
- folio_migration_tools/marc_rules_transformation/rules_mapper_authorities.py,sha256=e-wwJs8s8qEgIp8NvQgjx9lEyv7uvt08Fp6fPsy1GK8,9603
34
- folio_migration_tools/marc_rules_transformation/rules_mapper_base.py,sha256=6EcOQSDG3wgW7S7re2uWiLkbup9Flg4ZqhtX6cCLnbk,41402
35
- folio_migration_tools/marc_rules_transformation/rules_mapper_bibs.py,sha256=aypqjownO5jipFslRLeDR-gvqxxPlZeYB58GfoR8EQA,29996
36
- folio_migration_tools/marc_rules_transformation/rules_mapper_holdings.py,sha256=Qw8E5793IfvwLFwCbDMJuqZjnKVLIK3twrOR4twFv_E,26410
33
+ folio_migration_tools/marc_rules_transformation/rules_mapper_authorities.py,sha256=PGt2w8h2pj8_8sGjQe3L-odFDlquURtKnoNFRWQB3GI,9621
34
+ folio_migration_tools/marc_rules_transformation/rules_mapper_base.py,sha256=6vVvrNoViZZ1g2piKtOPMlqYspej-2eei8HIwM-K_Lg,45309
35
+ folio_migration_tools/marc_rules_transformation/rules_mapper_bibs.py,sha256=H7RrU1KfFlTj6M0l7HXD3vOtxKHY4FD5xrXmGjCjcRc,30324
36
+ folio_migration_tools/marc_rules_transformation/rules_mapper_holdings.py,sha256=dOqje_UVxTQDgi2CMNjjzZRKOHU99bR0ik6sYuAzibo,26939
37
37
  folio_migration_tools/migration_report.py,sha256=BkRspM1hwTBnWeqsHamf7yVEofzLj560Q-9G--O00hw,4258
38
38
  folio_migration_tools/migration_tasks/__init__.py,sha256=ZkbY_yGyB84Ke8OMlYUzyyBj4cxxNrhMTwQlu_GbdDs,211
39
39
  folio_migration_tools/migration_tasks/authority_transformer.py,sha256=AoXg9s-GLO3yEEDCrQV7hc4YVXxwxsdxDdpj1zhHydE,4251
40
40
  folio_migration_tools/migration_tasks/batch_poster.py,sha256=BcbNz2z5bGcbXmNvjnLd3IVHb0RSuagiVPvm77GUzwU,36402
41
- folio_migration_tools/migration_tasks/bibs_transformer.py,sha256=uOIfKVfkUdSr0RMbLpC4KbwbU16VKkXRJY8ULbdKzQk,5831
41
+ folio_migration_tools/migration_tasks/bibs_transformer.py,sha256=46d44pcDAodFXDYbrTCMRASISbDciXmA0CXYfhP2IaE,6298
42
42
  folio_migration_tools/migration_tasks/courses_migrator.py,sha256=CzXnsu-KGP7B4zcINJzLYUqz47D16NuFfzu_DPqRlTQ,7061
43
- folio_migration_tools/migration_tasks/holdings_csv_transformer.py,sha256=NtysoayEIqQ8c_GNcRi6LXDYR-7OLmqFCfciMwzsyT4,21668
44
- folio_migration_tools/migration_tasks/holdings_marc_transformer.py,sha256=GWBf-njOgDNAGONcr1CtgcPk7ATqo0r6zeyXuHjE47Y,13305
45
- folio_migration_tools/migration_tasks/items_transformer.py,sha256=qk0sLPBxE5MtPnpLzO_gEhVVe1BqHHnpn2Zaz_vo1RY,19083
43
+ folio_migration_tools/migration_tasks/holdings_csv_transformer.py,sha256=g3r4J1Y18vU18BjUmye7oSANR_TLTrP95la41flqj5M,22736
44
+ folio_migration_tools/migration_tasks/holdings_marc_transformer.py,sha256=DVYdSNUPmdTv6GfLJdyT806dZV6UQHH_T8gkqtPgXaU,14143
45
+ folio_migration_tools/migration_tasks/items_transformer.py,sha256=uBcVv-t_4N9j1pNyJPt-wFkKbNQLTe4_NFvOXMUcBjA,19212
46
46
  folio_migration_tools/migration_tasks/loans_migrator.py,sha256=CPsin9XLzHwNrpKHPMHAvgRvpoH8QvAfYZYr1FSxAN4,34520
47
47
  folio_migration_tools/migration_tasks/manual_fee_fines_transformer.py,sha256=CnmlTge7nChUJ10EiUkriQtJlVxWqglgfhjgneh2_yM,7247
48
- folio_migration_tools/migration_tasks/migration_task_base.py,sha256=cZVPqWMuaNJYsnqiiFlyjiRSQ4trQyaSDwykDHfbkyg,21640
49
- folio_migration_tools/migration_tasks/orders_transformer.py,sha256=ry3oUUVQTFKCDUbGF5Zjo5ppa6AseKQwpF-wb1sb5UY,14214
48
+ folio_migration_tools/migration_tasks/migration_task_base.py,sha256=Q-57h6rmt74bC9LidA9ZoagEcwVd_ytq8IUWelVOm2E,22521
49
+ folio_migration_tools/migration_tasks/orders_transformer.py,sha256=6SnzU_rUTu2B5hQykI2nRA7vI1rg-uxuF9Ncupe0AEY,14302
50
50
  folio_migration_tools/migration_tasks/organization_transformer.py,sha256=vcCjhN1sS55c_a0LXi1Yw1eq3zpDn5E4BGbm2zDQ_Z4,16885
51
51
  folio_migration_tools/migration_tasks/requests_migrator.py,sha256=QP9OBezC3FfcKpI78oMmydxcPaUIYAgHyKevyLwC-WQ,14841
52
52
  folio_migration_tools/migration_tasks/reserves_migrator.py,sha256=4sSPer6_6yMwiiY1VYJmYZske_Ah1XG4KAM3NDadPhg,9952
53
- folio_migration_tools/migration_tasks/user_transformer.py,sha256=cNBT-wn_xx1OQXiB-vMLZmvyzkg1X562AJXUcYfThaE,12279
53
+ folio_migration_tools/migration_tasks/user_transformer.py,sha256=aylrMC9n47fdStgsNfW4ZbJh2E4FDSPypsaNv52ynKc,12330
54
54
  folio_migration_tools/task_configuration.py,sha256=2GXVog0-_cFybqsU2WFcxnTNGDhvDzqb7gYyIimdPAk,1131
55
55
  folio_migration_tools/test_infrastructure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
56
  folio_migration_tools/test_infrastructure/mocked_classes.py,sha256=lpohRMqKnGmsoyspUQFXuyrGXRoIQZu2Dq7Q5WLQJw8,14877
57
57
  folio_migration_tools/transaction_migration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
- folio_migration_tools/transaction_migration/legacy_loan.py,sha256=iPHdFTXk0E_pumyPESxd5pnNG1_ux0pf3ALQU-0-05w,6209
58
+ folio_migration_tools/transaction_migration/legacy_loan.py,sha256=zablUc_xKI2ah12RVNS-63cN6IkFCwTiIaJWE-7T9cU,6229
59
59
  folio_migration_tools/transaction_migration/legacy_request.py,sha256=1ulyFzPQw_InOjyPzkWpGnNptgXdQ18nmri0J8Nlpkc,6124
60
60
  folio_migration_tools/transaction_migration/legacy_reserve.py,sha256=qzw0okg4axAE_ezXopP9gFsQ_e60o0zh7zqRzFBSWHY,1806
61
61
  folio_migration_tools/transaction_migration/transaction_result.py,sha256=cTdCN0BnlI9_ZJB2Z3Fdkl9gpymIi-9mGZsRFlQcmDk,656
62
- folio_migration_tools/translations/en.json,sha256=HOVpkb_T-SN_x0NpDp8gyvV1hMLCui3SsG7ByyIv0OU,38669
63
- folio_migration_tools-1.9.0rc11.dist-info/LICENSE,sha256=PhIEkitVi3ejgq56tt6sWoJIG_zmv82cjjd_aYPPGdI,1072
64
- folio_migration_tools-1.9.0rc11.dist-info/METADATA,sha256=_BE6KK753NHtTZqoPKw8clfifWCX4OxNQ8uMOpMjwms,7440
65
- folio_migration_tools-1.9.0rc11.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
66
- folio_migration_tools-1.9.0rc11.dist-info/entry_points.txt,sha256=Hbe-HjqMcU8FwVshVIkeWyZd9XwgT1CCMNf06EpHQu8,77
67
- folio_migration_tools-1.9.0rc11.dist-info/RECORD,,
62
+ folio_migration_tools/translations/en.json,sha256=FeoaN3INfim4_-l3DSamHo2hn1SUJr5DsgDgsV4XUek,39693
63
+ folio_migration_tools-1.9.0rc13.dist-info/LICENSE,sha256=PhIEkitVi3ejgq56tt6sWoJIG_zmv82cjjd_aYPPGdI,1072
64
+ folio_migration_tools-1.9.0rc13.dist-info/METADATA,sha256=Oo3lLbvSLtsgtpkihR2fKc_IJmXR4LXcDUSDLNGjOzU,7448
65
+ folio_migration_tools-1.9.0rc13.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
66
+ folio_migration_tools-1.9.0rc13.dist-info/entry_points.txt,sha256=Hbe-HjqMcU8FwVshVIkeWyZd9XwgT1CCMNf06EpHQu8,77
67
+ folio_migration_tools-1.9.0rc13.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.2
2
+ Generator: poetry-core 2.1.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any