perceptic-core-client 0.29.0__py3-none-any.whl → 0.31.0__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.

Potentially problematic release.


This version of perceptic-core-client might be problematic. Click here for more details.

Files changed (44) hide show
  1. perceptic_core_client/__init__.py +26 -0
  2. perceptic_core_client/api/__init__.py +1 -0
  3. perceptic_core_client/api/citations_resource_api.py +569 -0
  4. perceptic_core_client/api/user_resource_api.py +269 -0
  5. perceptic_core_client/api/worker_resource_api.py +273 -0
  6. perceptic_core_client/models/__init__.py +12 -0
  7. perceptic_core_client/models/biotech_analysis_api_dto.py +119 -0
  8. perceptic_core_client/models/biotech_analysis_image_annotated_citation_api_dto.py +91 -0
  9. perceptic_core_client/models/bulk_get_citations_request.py +87 -0
  10. perceptic_core_client/models/bulk_get_citations_response.py +95 -0
  11. perceptic_core_client/models/citation_api_dto.py +102 -0
  12. perceptic_core_client/models/citation_metadata_api_dto.py +189 -0
  13. perceptic_core_client/models/get_citation_output_uri_response.py +87 -0
  14. perceptic_core_client/models/get_worker_run_response.py +97 -0
  15. perceptic_core_client/models/highlighted_text_citation_metadata_api_dto.py +91 -0
  16. perceptic_core_client/models/image_detection_box_api_dto.py +97 -0
  17. perceptic_core_client/models/info_event.py +4 -1
  18. perceptic_core_client/models/progress_event.py +5 -2
  19. perceptic_core_client/models/request_for_input_event.py +4 -1
  20. perceptic_core_client/models/user_info_response.py +115 -0
  21. perceptic_core_client/models/web_page_citation_metadata_api_dto.py +89 -0
  22. perceptic_core_client/test/test_biotech_analysis_api_dto.py +77 -0
  23. perceptic_core_client/test/test_biotech_analysis_image_annotated_citation_api_dto.py +78 -0
  24. perceptic_core_client/test/test_bulk_get_citations_request.py +53 -0
  25. perceptic_core_client/test/test_bulk_get_citations_response.py +57 -0
  26. perceptic_core_client/test/test_citation_api_dto.py +54 -0
  27. perceptic_core_client/test/test_citation_metadata_api_dto.py +83 -0
  28. perceptic_core_client/test/test_citations_resource_api.py +45 -0
  29. perceptic_core_client/test/test_get_citation_output_uri_response.py +51 -0
  30. perceptic_core_client/test/test_get_worker_run_response.py +55 -0
  31. perceptic_core_client/test/test_highlighted_text_citation_metadata_api_dto.py +53 -0
  32. perceptic_core_client/test/test_image_detection_box_api_dto.py +56 -0
  33. perceptic_core_client/test/test_info_event.py +1 -0
  34. perceptic_core_client/test/test_progress_event.py +1 -0
  35. perceptic_core_client/test/test_request_for_input_event.py +1 -0
  36. perceptic_core_client/test/test_user_info_response.py +56 -0
  37. perceptic_core_client/test/test_user_resource_api.py +7 -0
  38. perceptic_core_client/test/test_web_page_citation_metadata_api_dto.py +52 -0
  39. perceptic_core_client/test/test_worker_event.py +1 -0
  40. perceptic_core_client/test/test_worker_resource_api.py +7 -0
  41. {perceptic_core_client-0.29.0.dist-info → perceptic_core_client-0.31.0.dist-info}/METADATA +1 -1
  42. {perceptic_core_client-0.29.0.dist-info → perceptic_core_client-0.31.0.dist-info}/RECORD +44 -18
  43. {perceptic_core_client-0.29.0.dist-info → perceptic_core_client-0.31.0.dist-info}/WHEEL +0 -0
  44. {perceptic_core_client-0.29.0.dist-info → perceptic_core_client-0.31.0.dist-info}/top_level.txt +0 -0
@@ -38,6 +38,7 @@ class TestRequestForInputEvent(unittest.TestCase):
38
38
  sequence = 56,
39
39
  requested_data = None,
40
40
  provided_data = None,
41
+ created_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
41
42
  type = ''
42
43
  )
43
44
  else:
@@ -0,0 +1,56 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ perceptic-core-server API
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 0.0.1-SNAPSHOT
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ import unittest
16
+
17
+ from perceptic_core_client.models.user_info_response import UserInfoResponse
18
+
19
+ class TestUserInfoResponse(unittest.TestCase):
20
+ """UserInfoResponse unit test stubs"""
21
+
22
+ def setUp(self):
23
+ pass
24
+
25
+ def tearDown(self):
26
+ pass
27
+
28
+ def make_instance(self, include_optional) -> UserInfoResponse:
29
+ """Test UserInfoResponse
30
+ include_optional is a boolean, when False only required
31
+ params are included, when True both required and
32
+ optional params are included """
33
+ # uncomment below to create an instance of `UserInfoResponse`
34
+ """
35
+ model = UserInfoResponse()
36
+ if include_optional:
37
+ return UserInfoResponse(
38
+ user_id = '',
39
+ username = '',
40
+ email = '',
41
+ first_name = '',
42
+ last_name = ''
43
+ )
44
+ else:
45
+ return UserInfoResponse(
46
+ user_id = '',
47
+ )
48
+ """
49
+
50
+ def testUserInfoResponse(self):
51
+ """Test UserInfoResponse"""
52
+ # inst_req_only = self.make_instance(include_optional=False)
53
+ # inst_req_and_optional = self.make_instance(include_optional=True)
54
+
55
+ if __name__ == '__main__':
56
+ unittest.main()
@@ -33,6 +33,13 @@ class TestUserResourceApi(unittest.TestCase):
33
33
  """
34
34
  pass
35
35
 
36
+ def test_api_v1_users_user_subject_get(self) -> None:
37
+ """Test case for api_v1_users_user_subject_get
38
+
39
+ Get user by subject
40
+ """
41
+ pass
42
+
36
43
 
37
44
  if __name__ == '__main__':
38
45
  unittest.main()
@@ -0,0 +1,52 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ perceptic-core-server API
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 0.0.1-SNAPSHOT
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ import unittest
16
+
17
+ from perceptic_core_client.models.web_page_citation_metadata_api_dto import WebPageCitationMetadataApiDto
18
+
19
+ class TestWebPageCitationMetadataApiDto(unittest.TestCase):
20
+ """WebPageCitationMetadataApiDto unit test stubs"""
21
+
22
+ def setUp(self):
23
+ pass
24
+
25
+ def tearDown(self):
26
+ pass
27
+
28
+ def make_instance(self, include_optional) -> WebPageCitationMetadataApiDto:
29
+ """Test WebPageCitationMetadataApiDto
30
+ include_optional is a boolean, when False only required
31
+ params are included, when True both required and
32
+ optional params are included """
33
+ # uncomment below to create an instance of `WebPageCitationMetadataApiDto`
34
+ """
35
+ model = WebPageCitationMetadataApiDto()
36
+ if include_optional:
37
+ return WebPageCitationMetadataApiDto(
38
+ url = '',
39
+ description = ''
40
+ )
41
+ else:
42
+ return WebPageCitationMetadataApiDto(
43
+ )
44
+ """
45
+
46
+ def testWebPageCitationMetadataApiDto(self):
47
+ """Test WebPageCitationMetadataApiDto"""
48
+ # inst_req_only = self.make_instance(include_optional=False)
49
+ # inst_req_and_optional = self.make_instance(include_optional=True)
50
+
51
+ if __name__ == '__main__':
52
+ unittest.main()
@@ -38,6 +38,7 @@ class TestWorkerEvent(unittest.TestCase):
38
38
  type = '',
39
39
  sequence = 56,
40
40
  type_of = '',
41
+ created_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
41
42
  payload = perceptic_core_client.models.payload.payload(),
42
43
  requested_data = perceptic_core_client.models.requested_data.requestedData(),
43
44
  provided_data = perceptic_core_client.models.provided_data.providedData()
@@ -54,6 +54,13 @@ class TestWorkerResourceApi(unittest.TestCase):
54
54
  """
55
55
  pass
56
56
 
57
+ def test_api_v1_workers_worker_id_runs_run_rid_get(self) -> None:
58
+ """Test case for api_v1_workers_worker_id_runs_run_rid_get
59
+
60
+ Get Worker Run
61
+ """
62
+ pass
63
+
57
64
  def test_api_v1_workers_worker_id_runs_run_rid_resume_post(self) -> None:
58
65
  """Test case for api_v1_workers_worker_id_runs_run_rid_resume_post
59
66
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: perceptic-core-client
3
- Version: 0.29.0
3
+ Version: 0.31.0
4
4
  Summary: Python client for Perceptic Core
5
5
  Author-email: Your Name <you@example.com>
6
6
  License: Proprietary
@@ -1,10 +1,11 @@
1
- perceptic_core_client/__init__.py,sha256=O7lU75t6bYENHVPZt3HzMKBJDwkHp1mV_OsxQwTLx-Y,14127
1
+ perceptic_core_client/__init__.py,sha256=6CB5Wbgcbi0IVo3fBYCXV2AuummMxKe0OypxSjHCTys,16164
2
2
  perceptic_core_client/api_client.py,sha256=nOfdGgBUjN8FflVMszUWlmGsfOJL2pnz_zTjT9WQsB8,27777
3
3
  perceptic_core_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
4
  perceptic_core_client/configuration.py,sha256=SQSH2SmsosPzZWLBDCL__iXOYakIfsIi23fdu-TUu74,17975
5
5
  perceptic_core_client/exceptions.py,sha256=mAFFNIdOi4nl0A5oxKKACRbtA1uyMozS7dEBLGHUggs,6498
6
6
  perceptic_core_client/rest.py,sha256=VMj2msOtIW-VbmGTbC3oBll9kNsQmI_Q-y_EadfJMio,9502
7
- perceptic_core_client/api/__init__.py,sha256=ERx8GFWs-VbC74Is8TqRr9ejYRtSW4RYN1dAhjgMt7Y,871
7
+ perceptic_core_client/api/__init__.py,sha256=tApmI8eCzPiGNkeaHyUwePHjdNb0za_1CT_8Ji_rBwg,953
8
+ perceptic_core_client/api/citations_resource_api.py,sha256=SvZ-BexYSMlJBxPzYjCmH5G4Av5Txuw7Zlf4BjI1VY4,21867
8
9
  perceptic_core_client/api/connection_resource_api.py,sha256=aQ5eMPTL9_3xEcb9-9B4Pcuzeg707YalDuWmGsopQP0,21745
9
10
  perceptic_core_client/api/file_system_contents_resource_api.py,sha256=v-tY95knuCJzdQCUKssX7WIy5htXZ8UCe23vo12fb-Q,88560
10
11
  perceptic_core_client/api/file_system_resource_api.py,sha256=9HzzNQPGS0uy5P8kFEvDTOZFgSieD4DWrfgOQnXsimA,51871
@@ -13,13 +14,19 @@ perceptic_core_client/api/indexing_schedule_resource_api.py,sha256=FJOZsv_mQ2yeI
13
14
  perceptic_core_client/api/indexing_task_resource_api.py,sha256=nHDH5bEdTUzw8qsS8FvmCEErF6JTH4vGI4JC6mmylD8,44317
14
15
  perceptic_core_client/api/tag_resource_api.py,sha256=q9BmZSkNzE6qW56bytte_aQ0VP2hG3d5_sApnTestr4,78302
15
16
  perceptic_core_client/api/uri_resource_api.py,sha256=37kkpiZQyxd-184Zql6s5J714FJSIrT0o4Wr9rDMxe8,114212
16
- perceptic_core_client/api/user_resource_api.py,sha256=LrqvNebOhBI_EoLTZpCC7OHYPomDoctWKJkv173W2p8,10222
17
- perceptic_core_client/api/worker_resource_api.py,sha256=qyzp9_qMZICVpKtEyy70Gs5ps36Cmgl9lZLllOXkNOI,66424
18
- perceptic_core_client/models/__init__.py,sha256=PrK0JAOcYuE9hhRefuapEO615vizh1Ob_WZzjeiCyLw,7475
17
+ perceptic_core_client/api/user_resource_api.py,sha256=HDkfUz8gHi1sSwhSKD2yrsbXiE3Q9ZuEB_dlVhEc07o,20686
18
+ perceptic_core_client/api/worker_resource_api.py,sha256=6K4Uaucbv8FpDe9hyOzZF-qLA25hmEtbU5AqxQdc6QA,76805
19
+ perceptic_core_client/models/__init__.py,sha256=qTQvndht5Lfaj8pXWTEtPAuyIvy_09URWZgsDet0qgE,8634
19
20
  perceptic_core_client/models/action_type.py,sha256=N_ESOrMP83pxJKGJvrBH_T0xDjSmHoISZ01SB81Oomc,786
20
21
  perceptic_core_client/models/add_tag_to_file_request.py,sha256=-4lKwOdDAuxjjWc7Sqgy9cvdif05AGIrrgUi-dl4NBk,2593
21
22
  perceptic_core_client/models/azure_blob_connection_settings_api_dto.py,sha256=3tIHzJKXkvypEgQZRnM_FoVYNI3cwbbLhggl09f3o54,4297
22
23
  perceptic_core_client/models/azure_blob_file_system_root_metadata_api_dto.py,sha256=LCrHnns_v-klQ08Pa4EO6mx0Lg0WwJv7KMCtxJwjARE,2782
24
+ perceptic_core_client/models/biotech_analysis_api_dto.py,sha256=NMQqcFe7S7egfsBB5UO_Eg7af4sO8MuLrjPu5vPI-ck,4993
25
+ perceptic_core_client/models/biotech_analysis_image_annotated_citation_api_dto.py,sha256=P4Zi7DFW8S1PrZb0NAPkROrq6ycR5v-qHYWdwtHfB3o,2990
26
+ perceptic_core_client/models/bulk_get_citations_request.py,sha256=G7uvNDph40BP6a-2rebEIVUPM2MAmZ8fs19I-W9URX4,2564
27
+ perceptic_core_client/models/bulk_get_citations_response.py,sha256=5-Xo_e6k547d8XYKjfVwGzxAjQAj0LXY3pVjCcp6Ohg,3091
28
+ perceptic_core_client/models/citation_api_dto.py,sha256=ujpSSnWtayR_MyaSID6bv6MVJA4GPIJjvA-0XDllUT4,3537
29
+ perceptic_core_client/models/citation_metadata_api_dto.py,sha256=rc1iuvJ8jTFreflXQNtuzxNx4YoVqvsbPONlLaYFQc0,9103
23
30
  perceptic_core_client/models/connection_api_dto.py,sha256=dupy0A6cgpVCNP4-Q572SlvEi7u9lYhVCAc8LmAYB-g,3304
24
31
  perceptic_core_client/models/connection_settings_api_dto.py,sha256=-WR7nm_nBRcD8q33hCTaNiltLVD15qzqZhA1gOCZ22Q,7185
25
32
  perceptic_core_client/models/create_connection_request.py,sha256=SWFENVJVMOar9P_SMCsfw1efdSFogKJ_wSvlHJ3eSmE,3125
@@ -39,6 +46,7 @@ perceptic_core_client/models/cron_trigger.py,sha256=fwK_w7YZwEBQ5DoEO7ewnsOxD5AE
39
46
  perceptic_core_client/models/execution_trigger_reason.py,sha256=iWU5xJSsmHXH2blLOEdybRQBBvP6PdcKsHQyzLlArMU,822
40
47
  perceptic_core_client/models/file_system_api_dto.py,sha256=j21xSms1nVxnER_RZ_2EjrZKVQRWiASmrUAirLOqxYk,6835
41
48
  perceptic_core_client/models/file_system_root_metadata_api_dto.py,sha256=OwMBChDo62Wi3yN_9WfWT4jIgLdwhkh44jDNJG86nCo,7397
49
+ perceptic_core_client/models/get_citation_output_uri_response.py,sha256=s9SLm0nJfr543rvhkfVPtjYM3JtZaSVCDxoAECU8o9s,2644
42
50
  perceptic_core_client/models/get_connection_response.py,sha256=8BoDWakNraL2I01YqIMvuF6y8hE586g76LnhBWSdyiU,2899
43
51
  perceptic_core_client/models/get_indexer_response.py,sha256=_tnkUDC4ZGBvly6n4zDyQfivf31pSW4x3LSZeA0SI_s,2835
44
52
  perceptic_core_client/models/get_indexing_schedule_response.py,sha256=r3wVmQR9Js_GIPr76hXBEvFzJsqi1N3aXHbBuH6y2jo,2917
@@ -49,15 +57,18 @@ perceptic_core_client/models/get_parent_uri_response.py,sha256=CHdAJRDZBjaJRXc3G
49
57
  perceptic_core_client/models/get_signed_url_response.py,sha256=N2Ou4qIy4GMbU0fjBhhp2EINPDh5Xl3cuIzFbdNoimU,2825
50
58
  perceptic_core_client/models/get_worker_events_response.py,sha256=NNgACf4aKOrXAJVBquBHe9Aha9IU17czsptehF9JnE0,3038
51
59
  perceptic_core_client/models/get_worker_metadata_response.py,sha256=J-mYsSbMQOD4WiMs03LbKkiwbQKo8CVRFyliatJ6GSE,3005
60
+ perceptic_core_client/models/get_worker_run_response.py,sha256=dra1kE1dgq3Sb0Lazp9ma_QWUIvVdmC4ATV-F9Sj2r8,3189
52
61
  perceptic_core_client/models/get_worker_status_response.py,sha256=Nqnk8jojhtiCk9fYTHTCx43M5Ep0toSvL_8YLoJkxsQ,2685
53
62
  perceptic_core_client/models/get_workers_response.py,sha256=DZ80TAIg6gk67hFzF7JQuN4LgjrsM6yRA87M4DyHNRw,2661
63
+ perceptic_core_client/models/highlighted_text_citation_metadata_api_dto.py,sha256=769ugyPkyZHWi0pudmBwp8L5YOq44RNWzsQK_Y-9rHQ,2935
64
+ perceptic_core_client/models/image_detection_box_api_dto.py,sha256=-77G0zm9fXqjlPSo5xi4n5M50uiy-zCzwhK7EbVNpNA,3178
54
65
  perceptic_core_client/models/indexer_dto.py,sha256=gATmR19wmiiofWTmZHdvKxorRbTKKQRQQeq4qUwCGIk,3077
55
66
  perceptic_core_client/models/indexing_action_dto.py,sha256=5nkJX_MQ_Gj1Hf53rUgSP6_0ve6FFvIW6cMAXdixJf4,3844
56
67
  perceptic_core_client/models/indexing_action_status.py,sha256=bFbXdXE4haR-d0c6_1wg8x0VR34oGqHCx1spXqUA8T8,858
57
68
  perceptic_core_client/models/indexing_schedule_dto.py,sha256=Dw3vWVGtbDqtH7Obr7ndXiDwNVr4_Th6-WuOBkKgE_4,4716
58
69
  perceptic_core_client/models/indexing_task_dto.py,sha256=yppEm19qsmfcdU9c1gQcSywhfllZ-FyMBeyPUHymkcU,3846
59
70
  perceptic_core_client/models/indexing_task_status.py,sha256=QgFt3FMt__c0G784fTCBOj1rMGb_Q90KHu0hKShwsVA,2542
60
- perceptic_core_client/models/info_event.py,sha256=db9651B1JpokCTsG_GFht77lbcL3gsr_6t2OYtMIlqY,2744
71
+ perceptic_core_client/models/info_event.py,sha256=tVyCsjh0JCd5i6EI04VsFHSjsfmHSo8cQiGQv4HMPWw,2910
61
72
  perceptic_core_client/models/interval_trigger.py,sha256=ln-iUgKe9EQddt49-CRdSsZFNvtc0pxNe0FNWVpE1GE,2784
62
73
  perceptic_core_client/models/json_node.py,sha256=RSRg1_3scVGIJuYs74PQg48ZeEebrUBzNfHV5qM5exw,4978
63
74
  perceptic_core_client/models/json_node_type.py,sha256=2K1l2OqsS9vuYpYN3HsrL0l5-LbJv0AZ_k5mRf4eczs,924
@@ -75,10 +86,10 @@ perceptic_core_client/models/on_upload_trigger.py,sha256=BUc5nKPZ-ZoAbKKtO4Hwdtt
75
86
  perceptic_core_client/models/paged_list_file_system_response.py,sha256=RqY3rfmucbx4Ya89DDVTU2hC4DAJHZTdi7ronC7fmnI,3440
76
87
  perceptic_core_client/models/post_worker_run_request.py,sha256=6bfgf2Yrwpc46X6c_NL2Mlf9YyKUBzk_kl9o26COtW8,2525
77
88
  perceptic_core_client/models/post_worker_run_response.py,sha256=zOpSem6C2F8of_AM4LZCY2C4fpa8aB3g5iy2bCrfRjU,2601
78
- perceptic_core_client/models/progress_event.py,sha256=cGiJgu4FUBkG6WtUbMU-IQ6UaS648KhBTD_L0mr1_2Q,2730
89
+ perceptic_core_client/models/progress_event.py,sha256=5iAGv-0wpu39PDBG1062TEXMQkjf7PIxo6El9hUnPOo,2903
79
90
  perceptic_core_client/models/remote_file_system_api_dto.py,sha256=P770rxN2fZZqPDEPEeMFpcKcDiWQHmxVr_9TzBgroz4,3463
80
91
  perceptic_core_client/models/remove_tag_from_file_request.py,sha256=u_liteh8V2JVMOeBYuTW6rpxaasZhFUESn7L_ZBcCMQ,2613
81
- perceptic_core_client/models/request_for_input_event.py,sha256=S2lCszkJLYxZKMXczhPLW8nMVQaUFvROt51YJKnSn3s,3219
92
+ perceptic_core_client/models/request_for_input_event.py,sha256=vyOlVROPfcBRBXnKLRY5M-c7ZVqLhOyn-qdheBpY9_Y,3385
82
93
  perceptic_core_client/models/resource_entry_dto.py,sha256=dbRIgLIzUVNls7D62ANS5e79w_hctiOagLXnWVpTIRs,3033
83
94
  perceptic_core_client/models/resource_identifier.py,sha256=ODJVfR3FSO8nnICHCUwpVGynjv57jRy9cRaWjepndxo,3474
84
95
  perceptic_core_client/models/resource_metadata_dto.py,sha256=u81AjXtYtpOQ0ku4Bb8vl_zVK6J-1i9F82LPaqqS1W4,4444
@@ -96,6 +107,8 @@ perceptic_core_client/models/update_indexing_schedule_response.py,sha256=3TVX_PI
96
107
  perceptic_core_client/models/update_tag_request.py,sha256=1vGfkaNqq7Qq9xpOJtujAG_q3xbx8Ct-9MJtjPrb02g,3204
97
108
  perceptic_core_client/models/update_tag_response.py,sha256=AC8amL5bmPNVDuW8NyqcjslTnzCjsgWTFn9C_de09AA,2892
98
109
  perceptic_core_client/models/upload_file_to_managed_file_system_response.py,sha256=JvwpcS4IZTpkgcYmSNQX67Ex8O0OfPLygsaGIUTFy9g,2691
110
+ perceptic_core_client/models/user_info_response.py,sha256=S9NNuv4RWsInlg8edk4nsl6srv6Sur3eZvpni5Tvo2g,4051
111
+ perceptic_core_client/models/web_page_citation_metadata_api_dto.py,sha256=9gWNtO9E8V7by35I4VLfFAEW7ACFRaP5HyD4nxTzIkU,2692
99
112
  perceptic_core_client/models/worker_event.py,sha256=QztjNPMatUO4PLpSbOguRA9Ce4YzybIplB2m4p4kEZw,7543
100
113
  perceptic_core_client/models/worker_metadata_dto.py,sha256=S9jsLoj3df5H_40EV7KGh7KoEamWUAZbIaDgCm27QAA,2986
101
114
  perceptic_core_client/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -103,6 +116,13 @@ perceptic_core_client/test/test_action_type.py,sha256=n21J9CQEH1tHjztKC7K081mvKN
103
116
  perceptic_core_client/test/test_add_tag_to_file_request.py,sha256=RLAiCPjmdk176Lj6SFZorGhtJdCt8jf1wiPCMH9OPWA,1481
104
117
  perceptic_core_client/test/test_azure_blob_connection_settings_api_dto.py,sha256=BmE-2cgApvW3VjO_HFB7fTrEdInBJRbSCeACkx2eakQ,1921
105
118
  perceptic_core_client/test/test_azure_blob_file_system_root_metadata_api_dto.py,sha256=8cm4pO5ygeA9WaxomWsZyxpZgqSkxvrm6_AFbzXRW2Y,1734
119
+ perceptic_core_client/test/test_biotech_analysis_api_dto.py,sha256=kwfJWL2TNGQVhfArxZN3tqbvE0RkZghcM_Kmwgd-l48,2430
120
+ perceptic_core_client/test/test_biotech_analysis_image_annotated_citation_api_dto.py,sha256=0IVexuIBREyTrfCzDY_ta2z26vhgTzmdhon4lQhOr3g,2924
121
+ perceptic_core_client/test/test_bulk_get_citations_request.py,sha256=aU9wu1le-wK5Y1Y07vHi_BHntpEOfcJsRZwRNW_7ZFY,1568
122
+ perceptic_core_client/test/test_bulk_get_citations_response.py,sha256=Te5sXAtnkwnOLBFFF6g6xcQrUPAYv5SDH4rmVKAccUE,1889
123
+ perceptic_core_client/test/test_citation_api_dto.py,sha256=CSLPHorf7gS-5a5-aMmuYU-EJuBKWNBR2F4FrIjOvGs,1596
124
+ perceptic_core_client/test/test_citation_metadata_api_dto.py,sha256=3vidy7kvvNHL6drXljuva7UHaZ7LXjUrxdqCtjURL3s,2827
125
+ perceptic_core_client/test/test_citations_resource_api.py,sha256=qwj3fQ6dHKAixa4ck8DCD7uEN5V4lHmMQ0nhNQn8lw8,1016
106
126
  perceptic_core_client/test/test_connection_api_dto.py,sha256=f2eT1U5zfFszptJrmzJxtXsCrdV4KY8KhXFLyZDT9PI,1642
107
127
  perceptic_core_client/test/test_connection_resource_api.py,sha256=EXW1eO_eO95iovdVj7ZcjCHmpvChEJPuwp2QC9C3AgE,991
108
128
  perceptic_core_client/test/test_connection_settings_api_dto.py,sha256=5WgXQh_ns5CgQZ-M_wKdo_UeQnJ2zCgKFeN4j7bc7bQ,2007
@@ -125,6 +145,7 @@ perceptic_core_client/test/test_file_system_api_dto.py,sha256=_c9QeVvfXgguaylNvS
125
145
  perceptic_core_client/test/test_file_system_contents_resource_api.py,sha256=d6QvcBOqyH7TxQNWdiV5FgRQNIeOXdzEmM72fLwDPEY,1818
126
146
  perceptic_core_client/test/test_file_system_resource_api.py,sha256=G22Vf15TEarq040DbkZJBZsYcleDVaPtxSSfwTa0Rc8,1487
127
147
  perceptic_core_client/test/test_file_system_root_metadata_api_dto.py,sha256=A5LCyJL0QC7-F7baiJAayX2ZdaI1kjqYZ_Jnj8czq5o,1658
148
+ perceptic_core_client/test/test_get_citation_output_uri_response.py,sha256=ifnag-fWrNCeKq7GmKX-FqK2XlZCrK8k6Fe14MIrLfU,1592
128
149
  perceptic_core_client/test/test_get_connection_response.py,sha256=tuaHMt5AkwSykj_nI6HE-jPLxbinBi-arJZzP_CeeVU,1824
129
150
  perceptic_core_client/test/test_get_indexer_response.py,sha256=AhkzglY8FwgMU9gZgC46eC43jFOXYV_vf0c3WS06YIE,1664
130
151
  perceptic_core_client/test/test_get_indexing_schedule_response.py,sha256=1F8uOEBwdx-fZuQ6Z5zvUwYY929_j07XRiYpb5_K_iw,2623
@@ -135,8 +156,11 @@ perceptic_core_client/test/test_get_parent_uri_response.py,sha256=3yjM69ht8leTvL
135
156
  perceptic_core_client/test/test_get_signed_url_response.py,sha256=BpwbWZA8xdrJbfXg_E-7pQWjBu-7VgYTYIQoeTRLmes,1494
136
157
  perceptic_core_client/test/test_get_worker_events_response.py,sha256=P2xL5C6cP4xy5S6s7t4o-JytNYo9J-dbghOJQg2DHlM,1624
137
158
  perceptic_core_client/test/test_get_worker_metadata_response.py,sha256=Yl4A7wiJc9JhXqyoGIjU7lBb5pNKddPFCkdEktJ8MZc,1895
159
+ perceptic_core_client/test/test_get_worker_run_response.py,sha256=eQAWowqYL4Bdh87FV1l5Y6dPZ5qz2ZQf0kSrMK24Q8A,1706
138
160
  perceptic_core_client/test/test_get_worker_status_response.py,sha256=vn-sTDmcC07YzlqkqBhgFRceNybgMvMCunjCrL9uXtM,1537
139
161
  perceptic_core_client/test/test_get_workers_response.py,sha256=_5F2qJyemvwSH-0bapn3eNQxXzJpFeLun5v_7BvRn84,1582
162
+ perceptic_core_client/test/test_highlighted_text_citation_metadata_api_dto.py,sha256=HPNEvV9wk58HtDSX61KOn_Qp20f0gpmWzaSrN-KYIDo,1766
163
+ perceptic_core_client/test/test_image_detection_box_api_dto.py,sha256=SthKnFcW9aMvYOnlqtvPe1uni41G8UQIiQra7VGJk4E,1675
140
164
  perceptic_core_client/test/test_indexer_dto.py,sha256=mjhqidl61JrXVM6UbfXE1tzsLsEGmPk5MytkEiFdk3A,1471
141
165
  perceptic_core_client/test/test_indexer_resource_api.py,sha256=coFEZkP2tcnVg6MO_18o1USjUwBg-fS2zRjQcjbVz-A,955
142
166
  perceptic_core_client/test/test_indexing_action_dto.py,sha256=A9jt72PZogCkDk-nG4GOp4FjOzu-hxMsmBFkodFbSv0,1751
@@ -146,7 +170,7 @@ perceptic_core_client/test/test_indexing_schedule_resource_api.py,sha256=6nK0TA8
146
170
  perceptic_core_client/test/test_indexing_task_dto.py,sha256=4LSPu_AoLgeAKoJnRW3dDB7z9xijuqCKhatGHOb4uGc,1897
147
171
  perceptic_core_client/test/test_indexing_task_resource_api.py,sha256=3pjEoxSJl7SCxFsUORUHdhDDZTdVvNXEaqiQK_7T3Lg,1310
148
172
  perceptic_core_client/test/test_indexing_task_status.py,sha256=mM7GA47e4_PrWMjYPuph2Cne00AwM7K7a_gEH5rPIwQ,1464
149
- perceptic_core_client/test/test_info_event.py,sha256=g7tdVz5LgKv_73J5ARvTbXjy7KpRHz4Yo2_wpJLMLWM,1416
173
+ perceptic_core_client/test/test_info_event.py,sha256=_RQLTqr5Dwdgzrx9-dpz69_vqeRbmtzLKb3VM5EXJAI,1523
150
174
  perceptic_core_client/test/test_interval_trigger.py,sha256=4LtBbdG_GzjV0gT8mUvPbV1DdnzKzhuHItLvyd7E1dA,1596
151
175
  perceptic_core_client/test/test_json_node.py,sha256=PSqWJ-4Ho-C5lVLLSiSpN8DROm0r-I0s0-R8cwGV9mU,2049
152
176
  perceptic_core_client/test/test_json_node_type.py,sha256=8rP20yxdJKWDcYGdyGGBvaHqDOX6ymT6Ug4mVoCLcA0,732
@@ -164,10 +188,10 @@ perceptic_core_client/test/test_on_upload_trigger.py,sha256=ZcWuPWj_qhFgW7zHry74
164
188
  perceptic_core_client/test/test_paged_list_file_system_response.py,sha256=iL09EP0VO_9B5RmCtObqmj4xvLQMLKaTGs7gGFJj15c,2449
165
189
  perceptic_core_client/test/test_post_worker_run_request.py,sha256=FxIpvUHxCJXPKbjUL361J8k0J4fB3kIF3Q9vpFiNWD4,1524
166
190
  perceptic_core_client/test/test_post_worker_run_response.py,sha256=rG0x1tul3NFPpjhKQi-p379nHo_H6jF69cVKM5WHpH0,1504
167
- perceptic_core_client/test/test_progress_event.py,sha256=wS4vJ8bjat5LlJqZ5bgH4yF6-vGKBYbZlA7N16Ru0Vc,1466
191
+ perceptic_core_client/test/test_progress_event.py,sha256=f3iVzbhJCR7qhgNpmAYfUl-jNz3fWoAsq9trduuDY44,1573
168
192
  perceptic_core_client/test/test_remote_file_system_api_dto.py,sha256=z99dSsSJu-rZg1CaO49PxoJIsvA9HD8fOajXD45prRM,1760
169
193
  perceptic_core_client/test/test_remove_tag_from_file_request.py,sha256=axXB7hXXAgVbJJaaWSdZnjlIo6abQ6U2Y3vfDdNWBhI,1541
170
- perceptic_core_client/test/test_request_for_input_event.py,sha256=Sr75_y9HuXYA24DZVbe7af6jASe1s2LBAIeEMPlCxwQ,1597
194
+ perceptic_core_client/test/test_request_for_input_event.py,sha256=b9utJZaYEoGDaDEAzJ6i81_EwzAE_zRuxy2htWdQNNg,1704
171
195
  perceptic_core_client/test/test_resource_entry_dto.py,sha256=YhUIrTim9PD-cezsLsJrU4MZfU6A0R4F8PyucrS5Zuc,2071
172
196
  perceptic_core_client/test/test_resource_identifier.py,sha256=Sxk9OBxw0C2fhRKsHJKI1fPFDEO0KLX6OEYGFWi79NE,1702
173
197
  perceptic_core_client/test/test_resource_metadata_dto.py,sha256=92GnTbx8hWsec8RHzfnuasY38ZFvM8HmSQIQXN6tSoo,1909
@@ -187,11 +211,13 @@ perceptic_core_client/test/test_update_tag_request.py,sha256=quiRdlic1vOuoYEuXzK
187
211
  perceptic_core_client/test/test_update_tag_response.py,sha256=JUyWJN6lPeDhYU_UQqBNYI2iJj0kdIkTKi7CPGgnK3w,1641
188
212
  perceptic_core_client/test/test_upload_file_to_managed_file_system_response.py,sha256=Mpmwqqz0m3p6b9Ofa3nC9ar9tG8FwHYBf9QkhLA54Ho,1705
189
213
  perceptic_core_client/test/test_uri_resource_api.py,sha256=DkUIfx6Fp59t_rDZRDm3LP3qAl_RHnnJWlq1l-ILHh8,2182
190
- perceptic_core_client/test/test_user_resource_api.py,sha256=yCzM6n1J0xjbLBWW1hcE6m6epT8u8Atck7fnGoOdwBw,817
191
- perceptic_core_client/test/test_worker_event.py,sha256=f8zBXEkGhya6Tu0quq9p3Mpm1exxMr9z21q72JvYNLg,1699
214
+ perceptic_core_client/test/test_user_info_response.py,sha256=UpY4zDbL1STHqrssuuELMkMnRCC5lx4d-OoJXblcM7M,1597
215
+ perceptic_core_client/test/test_user_resource_api.py,sha256=Avy-2ageU3Ovr2grQc3qvWH7hMJLARDq-ctyfycYVX4,985
216
+ perceptic_core_client/test/test_web_page_citation_metadata_api_dto.py,sha256=JLJZagxObwPPVsGajoUu_ADHI0o6Kq6hNywEB83hyy0,1632
217
+ perceptic_core_client/test/test_worker_event.py,sha256=DE2k0eDS-MUQqAEeOSk-5Dd-wNAa2Jbqo-ClekLsEGQ,1806
192
218
  perceptic_core_client/test/test_worker_metadata_dto.py,sha256=lbvKWvnwcKEfHHh9diRevdceGEJwgv3INVphqaxiAlw,1674
193
- perceptic_core_client/test/test_worker_resource_api.py,sha256=1kCAFp5_mHmrQrUKgp6hKcriNlwvtq5J8dCvAFTMKQM,1794
194
- perceptic_core_client-0.29.0.dist-info/METADATA,sha256=YrLunIvomb1e4TLXP6TX85pT8ngmpz8rgzqzfigI9Co,3605
195
- perceptic_core_client-0.29.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
196
- perceptic_core_client-0.29.0.dist-info/top_level.txt,sha256=wWF5_isd4ZU0SRPPhKKAxW4kJ9hYIBgLbcWn_y-c1tg,22
197
- perceptic_core_client-0.29.0.dist-info/RECORD,,
219
+ perceptic_core_client/test/test_worker_resource_api.py,sha256=qRsv72RCDrc--gqIDNs0sRDBc8p1BKGNmGuPdkCGwXs,1981
220
+ perceptic_core_client-0.31.0.dist-info/METADATA,sha256=RTXA_At2NxWDt8oWpHOAP7pmYtXxXlyx-SKpmfmcUus,3605
221
+ perceptic_core_client-0.31.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
222
+ perceptic_core_client-0.31.0.dist-info/top_level.txt,sha256=wWF5_isd4ZU0SRPPhKKAxW4kJ9hYIBgLbcWn_y-c1tg,22
223
+ perceptic_core_client-0.31.0.dist-info/RECORD,,