perceptic-core-client 0.39.0__py3-none-any.whl → 0.50.3__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.
- perceptic_core_client/__init__.py +51 -0
- perceptic_core_client/api/__init__.py +1 -0
- perceptic_core_client/api/tag_resource_api.py +100 -836
- perceptic_core_client/api/uri_resource_api.py +818 -207
- perceptic_core_client/api/user_resource_api.py +308 -1
- perceptic_core_client/api/worker_resource_api.py +1100 -211
- perceptic_core_client/api/worker_resource_v3_api.py +1477 -0
- perceptic_core_client/api_client.py +8 -5
- perceptic_core_client/configuration.py +6 -2
- perceptic_core_client/models/__init__.py +25 -1
- perceptic_core_client/models/citation_metadata_api_dto.py +0 -15
- perceptic_core_client/models/connection_settings_api_dto.py +0 -10
- perceptic_core_client/models/create_folder_response_v2.py +89 -0
- perceptic_core_client/models/file_system_api_dto.py +0 -10
- perceptic_core_client/models/file_system_root_metadata_api_dto.py +0 -10
- perceptic_core_client/models/get_run_event_rating_response.py +91 -0
- perceptic_core_client/models/get_worker_events_v2_response.py +101 -0
- perceptic_core_client/models/get_worker_events_v3_response.py +89 -0
- perceptic_core_client/models/info_event1.py +94 -0
- perceptic_core_client/models/ingest_event_request.py +94 -0
- perceptic_core_client/models/ingest_event_response.py +89 -0
- perceptic_core_client/models/ingest_stream_event_request.py +89 -0
- perceptic_core_client/models/list_users_response.py +104 -0
- perceptic_core_client/models/persistence_mode.py +38 -0
- perceptic_core_client/models/post_rating_request.py +89 -0
- perceptic_core_client/models/post_run_event_rating_response.py +91 -0
- perceptic_core_client/models/post_worker_run_request1.py +87 -0
- perceptic_core_client/models/post_worker_run_response1.py +87 -0
- perceptic_core_client/models/progress_event1.py +94 -0
- perceptic_core_client/models/rating_dto_worker_run_event_rating_secondary_id.py +108 -0
- perceptic_core_client/models/run_status_dto.py +1 -0
- perceptic_core_client/models/schedule_trigger.py +0 -15
- perceptic_core_client/models/upload_resource_response_v2.py +91 -0
- perceptic_core_client/models/user_input_event.py +101 -0
- perceptic_core_client/models/user_request_for_input_event.py +108 -0
- perceptic_core_client/models/worker_event.py +0 -15
- perceptic_core_client/models/worker_event_v2.py +193 -0
- perceptic_core_client/models/worker_run_event_rating_secondary_id.py +89 -0
- perceptic_core_client/models/worker_stream_event_v2.py +90 -0
- perceptic_core_client/models/worker_v2_next_page_token.py +89 -0
- perceptic_core_client/models/workflow_status_response.py +89 -0
- perceptic_core_client/test/test_create_folder_response_v2.py +52 -0
- perceptic_core_client/test/test_get_run_event_rating_response.py +57 -0
- perceptic_core_client/test/test_get_worker_events_v2_response.py +56 -0
- perceptic_core_client/test/test_get_worker_events_v3_response.py +54 -0
- perceptic_core_client/test/test_info_event1.py +54 -0
- perceptic_core_client/test/test_ingest_event_request.py +56 -0
- perceptic_core_client/test/test_ingest_event_response.py +52 -0
- perceptic_core_client/test/test_ingest_stream_event_request.py +52 -0
- perceptic_core_client/test/test_list_users_response.py +60 -0
- perceptic_core_client/test/test_persistence_mode.py +33 -0
- perceptic_core_client/test/test_post_rating_request.py +52 -0
- perceptic_core_client/test/test_post_run_event_rating_response.py +57 -0
- perceptic_core_client/test/test_post_worker_run_request1.py +51 -0
- perceptic_core_client/test/test_post_worker_run_response1.py +51 -0
- perceptic_core_client/test/test_progress_event.py +1 -1
- perceptic_core_client/test/test_progress_event1.py +54 -0
- perceptic_core_client/test/test_rating_dto_worker_run_event_rating_secondary_id.py +56 -0
- perceptic_core_client/test/test_request_for_input_event.py +1 -1
- perceptic_core_client/test/test_tag_resource_api.py +0 -21
- perceptic_core_client/test/test_upload_resource_response_v2.py +53 -0
- perceptic_core_client/test/test_uri_resource_api.py +14 -0
- perceptic_core_client/test/test_user_input_event.py +55 -0
- perceptic_core_client/test/test_user_request_for_input_event.py +56 -0
- perceptic_core_client/test/test_user_resource_api.py +7 -0
- perceptic_core_client/test/test_worker_event.py +2 -2
- perceptic_core_client/test/test_worker_event_v2.py +59 -0
- perceptic_core_client/test/test_worker_resource_api.py +21 -0
- perceptic_core_client/test/test_worker_resource_v3_api.py +66 -0
- perceptic_core_client/test/test_worker_run_event_rating_secondary_id.py +53 -0
- perceptic_core_client/test/test_worker_stream_event_v2.py +52 -0
- perceptic_core_client/test/test_worker_v2_next_page_token.py +52 -0
- perceptic_core_client/test/test_workflow_status_response.py +52 -0
- {perceptic_core_client-0.39.0.dist-info → perceptic_core_client-0.50.3.dist-info}/METADATA +1 -1
- {perceptic_core_client-0.39.0.dist-info → perceptic_core_client-0.50.3.dist-info}/RECORD +77 -27
- {perceptic_core_client-0.39.0.dist-info → perceptic_core_client-0.50.3.dist-info}/WHEEL +0 -0
- {perceptic_core_client-0.39.0.dist-info → perceptic_core_client-0.50.3.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,53 @@
|
|
|
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.worker_run_event_rating_secondary_id import WorkerRunEventRatingSecondaryId
|
|
18
|
+
|
|
19
|
+
class TestWorkerRunEventRatingSecondaryId(unittest.TestCase):
|
|
20
|
+
"""WorkerRunEventRatingSecondaryId 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) -> WorkerRunEventRatingSecondaryId:
|
|
29
|
+
"""Test WorkerRunEventRatingSecondaryId
|
|
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 `WorkerRunEventRatingSecondaryId`
|
|
34
|
+
"""
|
|
35
|
+
model = WorkerRunEventRatingSecondaryId()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return WorkerRunEventRatingSecondaryId(
|
|
38
|
+
run_rid = '',
|
|
39
|
+
sequence = 56
|
|
40
|
+
)
|
|
41
|
+
else:
|
|
42
|
+
return WorkerRunEventRatingSecondaryId(
|
|
43
|
+
run_rid = '',
|
|
44
|
+
)
|
|
45
|
+
"""
|
|
46
|
+
|
|
47
|
+
def testWorkerRunEventRatingSecondaryId(self):
|
|
48
|
+
"""Test WorkerRunEventRatingSecondaryId"""
|
|
49
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
50
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
51
|
+
|
|
52
|
+
if __name__ == '__main__':
|
|
53
|
+
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.worker_stream_event_v2 import WorkerStreamEventV2
|
|
18
|
+
|
|
19
|
+
class TestWorkerStreamEventV2(unittest.TestCase):
|
|
20
|
+
"""WorkerStreamEventV2 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) -> WorkerStreamEventV2:
|
|
29
|
+
"""Test WorkerStreamEventV2
|
|
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 `WorkerStreamEventV2`
|
|
34
|
+
"""
|
|
35
|
+
model = WorkerStreamEventV2()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return WorkerStreamEventV2(
|
|
38
|
+
sequence = 56,
|
|
39
|
+
stored_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f')
|
|
40
|
+
)
|
|
41
|
+
else:
|
|
42
|
+
return WorkerStreamEventV2(
|
|
43
|
+
)
|
|
44
|
+
"""
|
|
45
|
+
|
|
46
|
+
def testWorkerStreamEventV2(self):
|
|
47
|
+
"""Test WorkerStreamEventV2"""
|
|
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()
|
|
@@ -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.worker_v2_next_page_token import WorkerV2NextPageToken
|
|
18
|
+
|
|
19
|
+
class TestWorkerV2NextPageToken(unittest.TestCase):
|
|
20
|
+
"""WorkerV2NextPageToken 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) -> WorkerV2NextPageToken:
|
|
29
|
+
"""Test WorkerV2NextPageToken
|
|
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 `WorkerV2NextPageToken`
|
|
34
|
+
"""
|
|
35
|
+
model = WorkerV2NextPageToken()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return WorkerV2NextPageToken(
|
|
38
|
+
offset_for_worker_run_events = 56,
|
|
39
|
+
offset_for_input_request_events = 56
|
|
40
|
+
)
|
|
41
|
+
else:
|
|
42
|
+
return WorkerV2NextPageToken(
|
|
43
|
+
)
|
|
44
|
+
"""
|
|
45
|
+
|
|
46
|
+
def testWorkerV2NextPageToken(self):
|
|
47
|
+
"""Test WorkerV2NextPageToken"""
|
|
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()
|
|
@@ -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.workflow_status_response import WorkflowStatusResponse
|
|
18
|
+
|
|
19
|
+
class TestWorkflowStatusResponse(unittest.TestCase):
|
|
20
|
+
"""WorkflowStatusResponse 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) -> WorkflowStatusResponse:
|
|
29
|
+
"""Test WorkflowStatusResponse
|
|
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 `WorkflowStatusResponse`
|
|
34
|
+
"""
|
|
35
|
+
model = WorkflowStatusResponse()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return WorkflowStatusResponse(
|
|
38
|
+
run_rid = '',
|
|
39
|
+
status = ''
|
|
40
|
+
)
|
|
41
|
+
else:
|
|
42
|
+
return WorkflowStatusResponse(
|
|
43
|
+
)
|
|
44
|
+
"""
|
|
45
|
+
|
|
46
|
+
def testWorkflowStatusResponse(self):
|
|
47
|
+
"""Test WorkflowStatusResponse"""
|
|
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()
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
perceptic_core_client/__init__.py,sha256=
|
|
2
|
-
perceptic_core_client/api_client.py,sha256=
|
|
1
|
+
perceptic_core_client/__init__.py,sha256=FJIz_IVc4qWjAwv3YtUY0kdxnmWRa-VYDFsfZyaRVOw,19719
|
|
2
|
+
perceptic_core_client/api_client.py,sha256=S6yOS2QP2CsJkeB4GkHqq2zDv_7zaXJzVC9y1zXKryE,27859
|
|
3
3
|
perceptic_core_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
perceptic_core_client/configuration.py,sha256=
|
|
4
|
+
perceptic_core_client/configuration.py,sha256=zqA_f9beyctYP2PUH3mZGisoUp4NQ15odRucbvFn_yU,18195
|
|
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=
|
|
7
|
+
perceptic_core_client/api/__init__.py,sha256=PgxmUQcFJVKfKcYDHCKcM1pMQMio2ABOSJ3F_APaDcQ,1034
|
|
8
8
|
perceptic_core_client/api/citations_resource_api.py,sha256=SvZ-BexYSMlJBxPzYjCmH5G4Av5Txuw7Zlf4BjI1VY4,21867
|
|
9
9
|
perceptic_core_client/api/connection_resource_api.py,sha256=aQ5eMPTL9_3xEcb9-9B4Pcuzeg707YalDuWmGsopQP0,21745
|
|
10
10
|
perceptic_core_client/api/file_system_contents_resource_api.py,sha256=v-tY95knuCJzdQCUKssX7WIy5htXZ8UCe23vo12fb-Q,88560
|
|
@@ -12,11 +12,12 @@ perceptic_core_client/api/file_system_resource_api.py,sha256=9HzzNQPGS0uy5P8kFEv
|
|
|
12
12
|
perceptic_core_client/api/indexer_resource_api.py,sha256=nNeyrB0wMOetwDO92jfkv2PtQLaW5XUrsHUhDwVBhUM,20059
|
|
13
13
|
perceptic_core_client/api/indexing_schedule_resource_api.py,sha256=FJOZsv_mQ2yeIv-vMtQrnvIZceUftjJaLWGtg8r65Gw,86033
|
|
14
14
|
perceptic_core_client/api/indexing_task_resource_api.py,sha256=nHDH5bEdTUzw8qsS8FvmCEErF6JTH4vGI4JC6mmylD8,44317
|
|
15
|
-
perceptic_core_client/api/tag_resource_api.py,sha256=
|
|
16
|
-
perceptic_core_client/api/uri_resource_api.py,sha256=
|
|
17
|
-
perceptic_core_client/api/user_resource_api.py,sha256=
|
|
18
|
-
perceptic_core_client/api/worker_resource_api.py,sha256=
|
|
19
|
-
perceptic_core_client/
|
|
15
|
+
perceptic_core_client/api/tag_resource_api.py,sha256=EG-KWmYn1JldWHrNMI4U5gME-DzsuTB5vHURUr2IKzk,50523
|
|
16
|
+
perceptic_core_client/api/uri_resource_api.py,sha256=lmETfAlDpZq6ia_PNI0ngv2iqN3ugv-wb_UzYA2cc-8,137265
|
|
17
|
+
perceptic_core_client/api/user_resource_api.py,sha256=Ayjyzqy9_yGRtDHsxHDSuOJvTCCPr-Ivby0qNfA8yjw,32831
|
|
18
|
+
perceptic_core_client/api/worker_resource_api.py,sha256=LTaNj6LwND__IT3E3Gg7WR99OSDu6cIOH6reV1ceboE,111404
|
|
19
|
+
perceptic_core_client/api/worker_resource_v3_api.py,sha256=g0gflyhaNZD5cwTfTyjgsrSfPp9kkMKnHeAVv5e8YAs,56629
|
|
20
|
+
perceptic_core_client/models/__init__.py,sha256=EvfInA59yFNxIqx7JWA_lm19GEWTCfFtfsbqUMwVbkc,10753
|
|
20
21
|
perceptic_core_client/models/action_type.py,sha256=N_ESOrMP83pxJKGJvrBH_T0xDjSmHoISZ01SB81Oomc,786
|
|
21
22
|
perceptic_core_client/models/add_tag_to_file_request.py,sha256=-4lKwOdDAuxjjWc7Sqgy9cvdif05AGIrrgUi-dl4NBk,2593
|
|
22
23
|
perceptic_core_client/models/azure_blob_connection_settings_api_dto.py,sha256=3tIHzJKXkvypEgQZRnM_FoVYNI3cwbbLhggl09f3o54,4297
|
|
@@ -26,14 +27,15 @@ perceptic_core_client/models/biotech_analysis_image_annotated_citation_api_dto.p
|
|
|
26
27
|
perceptic_core_client/models/bulk_get_citations_request.py,sha256=G7uvNDph40BP6a-2rebEIVUPM2MAmZ8fs19I-W9URX4,2564
|
|
27
28
|
perceptic_core_client/models/bulk_get_citations_response.py,sha256=5-Xo_e6k547d8XYKjfVwGzxAjQAj0LXY3pVjCcp6Ohg,3091
|
|
28
29
|
perceptic_core_client/models/citation_api_dto.py,sha256=ujpSSnWtayR_MyaSID6bv6MVJA4GPIJjvA-0XDllUT4,3537
|
|
29
|
-
perceptic_core_client/models/citation_metadata_api_dto.py,sha256=
|
|
30
|
+
perceptic_core_client/models/citation_metadata_api_dto.py,sha256=8xc1OpYWgPvQI--TrVgny04DeW7It7oxaDzaVuANW8c,8338
|
|
30
31
|
perceptic_core_client/models/connection_api_dto.py,sha256=dupy0A6cgpVCNP4-Q572SlvEi7u9lYhVCAc8LmAYB-g,3304
|
|
31
|
-
perceptic_core_client/models/connection_settings_api_dto.py,sha256
|
|
32
|
+
perceptic_core_client/models/connection_settings_api_dto.py,sha256=zTrH019Lns63gYziglLsUdwfMmzcPmFwZdgXV-0cEN8,6702
|
|
32
33
|
perceptic_core_client/models/create_connection_request.py,sha256=SWFENVJVMOar9P_SMCsfw1efdSFogKJ_wSvlHJ3eSmE,3125
|
|
33
34
|
perceptic_core_client/models/create_connection_response.py,sha256=a89PYs-gW68WJiJXqDXQUdv3Va8O5MzCKXFnOpMCD5Y,2648
|
|
34
35
|
perceptic_core_client/models/create_file_system_response.py,sha256=264-WVVkMeKq1sTwgsVd27z48TuG-2DPW26-tqdWaK0,2649
|
|
35
36
|
perceptic_core_client/models/create_folder_request.py,sha256=M9AoxG24IHCX8IyUJfdIRXQMkBMTSXO2QrKT4x1ncmU,2613
|
|
36
37
|
perceptic_core_client/models/create_folder_response.py,sha256=MZ3DpsR50slSTNHGQ0JhL0EHkDowjAM1mydfFgdlpmA,2617
|
|
38
|
+
perceptic_core_client/models/create_folder_response_v2.py,sha256=d0jYC_vIM_9CGmBJkeRUOoukmw16ag3_gcT4UqNzvCM,2703
|
|
37
39
|
perceptic_core_client/models/create_indexing_schedule_request.py,sha256=izKqNL-qJC5Cs-IthDslqXj3g1hLwBVCt-ViYGqk5Ac,5006
|
|
38
40
|
perceptic_core_client/models/create_indexing_schedule_response.py,sha256=UzkZ04TpQKXgYXVPXGW4jtp_F80BCK9M5P32umVYDBA,3094
|
|
39
41
|
perceptic_core_client/models/create_indexing_task_request.py,sha256=7LHNYjKGYNZA07af_4hcp5HUnRASpcu_IItt5589Dl4,3159
|
|
@@ -44,8 +46,8 @@ perceptic_core_client/models/create_tag_request.py,sha256=hEqBYkuu6wBE86fOgEK-cD
|
|
|
44
46
|
perceptic_core_client/models/create_tag_response.py,sha256=ksuuXOjnN4K0bwurqaKkF2-GGj_BVP0Ir2FRGwF32YQ,2585
|
|
45
47
|
perceptic_core_client/models/cron_trigger.py,sha256=fwK_w7YZwEBQ5DoEO7ewnsOxD5AEuKtLltnuUPPlGuw,3483
|
|
46
48
|
perceptic_core_client/models/execution_trigger_reason.py,sha256=iWU5xJSsmHXH2blLOEdybRQBBvP6PdcKsHQyzLlArMU,822
|
|
47
|
-
perceptic_core_client/models/file_system_api_dto.py,sha256=
|
|
48
|
-
perceptic_core_client/models/file_system_root_metadata_api_dto.py,sha256=
|
|
49
|
+
perceptic_core_client/models/file_system_api_dto.py,sha256=URluqy1k0UNoJtS9h8Qsly60j_UB6NXBwR7lHYyjDEQ,6394
|
|
50
|
+
perceptic_core_client/models/file_system_root_metadata_api_dto.py,sha256=BJ2umnKs6ULhkeWxo67ED6ThlkEgv2Vtqu9K6Q5p0j8,6890
|
|
49
51
|
perceptic_core_client/models/get_citation_output_uri_response.py,sha256=s9SLm0nJfr543rvhkfVPtjYM3JtZaSVCDxoAECU8o9s,2644
|
|
50
52
|
perceptic_core_client/models/get_connection_response.py,sha256=8BoDWakNraL2I01YqIMvuF6y8hE586g76LnhBWSdyiU,2899
|
|
51
53
|
perceptic_core_client/models/get_indexer_response.py,sha256=_tnkUDC4ZGBvly6n4zDyQfivf31pSW4x3LSZeA0SI_s,2835
|
|
@@ -54,8 +56,11 @@ perceptic_core_client/models/get_indexing_task_response.py,sha256=nm0vOzonXB9CGt
|
|
|
54
56
|
perceptic_core_client/models/get_metadata_response.py,sha256=9rH4_dKneEYIuvgXYxri4mOYHCLxx1AyHUgXEilng0c,2885
|
|
55
57
|
perceptic_core_client/models/get_parent_response.py,sha256=piDcT-pwFEgcoZB-pYGzC6-7xHscXh6xsOheV3IjRJ4,2546
|
|
56
58
|
perceptic_core_client/models/get_parent_uri_response.py,sha256=CHdAJRDZBjaJRXc3GJWoQJe-W-UddsyEnQN0IyHhOM8,2765
|
|
59
|
+
perceptic_core_client/models/get_run_event_rating_response.py,sha256=kV4QLxDNoWajzI77ij8kgkQ-5nrMI8Ey4x_0gos_UaY,2980
|
|
57
60
|
perceptic_core_client/models/get_signed_url_response.py,sha256=N2Ou4qIy4GMbU0fjBhhp2EINPDh5Xl3cuIzFbdNoimU,2825
|
|
58
61
|
perceptic_core_client/models/get_worker_events_response.py,sha256=NNgACf4aKOrXAJVBquBHe9Aha9IU17czsptehF9JnE0,3038
|
|
62
|
+
perceptic_core_client/models/get_worker_events_v2_response.py,sha256=CpTSRwsvb3uBXhASEaA1DQkNxP7Yg36c6pqriu30tzI,3595
|
|
63
|
+
perceptic_core_client/models/get_worker_events_v3_response.py,sha256=h6oGFCyah4IbH8HXu4v2GXRBZ1ua06EbwXADtPgSdoI,2754
|
|
59
64
|
perceptic_core_client/models/get_worker_metadata_response.py,sha256=J-mYsSbMQOD4WiMs03LbKkiwbQKo8CVRFyliatJ6GSE,3005
|
|
60
65
|
perceptic_core_client/models/get_worker_run_response.py,sha256=dra1kE1dgq3Sb0Lazp9ma_QWUIvVdmC4ATV-F9Sj2r8,3189
|
|
61
66
|
perceptic_core_client/models/get_worker_status_response.py,sha256=Nqnk8jojhtiCk9fYTHTCx43M5Ep0toSvL_8YLoJkxsQ,2685
|
|
@@ -69,6 +74,10 @@ perceptic_core_client/models/indexing_schedule_dto.py,sha256=Dw3vWVGtbDqtH7Obr7n
|
|
|
69
74
|
perceptic_core_client/models/indexing_task_dto.py,sha256=yppEm19qsmfcdU9c1gQcSywhfllZ-FyMBeyPUHymkcU,3846
|
|
70
75
|
perceptic_core_client/models/indexing_task_status.py,sha256=QgFt3FMt__c0G784fTCBOj1rMGb_Q90KHu0hKShwsVA,2542
|
|
71
76
|
perceptic_core_client/models/info_event.py,sha256=tVyCsjh0JCd5i6EI04VsFHSjsfmHSo8cQiGQv4HMPWw,2910
|
|
77
|
+
perceptic_core_client/models/info_event1.py,sha256=2g-ha36Ue5dMktQu6XdRlJT6fFAAeOgG0u_94CmA7g0,2914
|
|
78
|
+
perceptic_core_client/models/ingest_event_request.py,sha256=vYDMIvuUYeSE4rE_TxVny9IQYdFKHOXuxdE1EK0JyXQ,3345
|
|
79
|
+
perceptic_core_client/models/ingest_event_response.py,sha256=2SwJkk0eA2V0TmGu5R7AqDD56Hv9ulsurT7TKxwQvJs,2861
|
|
80
|
+
perceptic_core_client/models/ingest_stream_event_request.py,sha256=LNDzWZWhp9K4o4XbYdbC1TTdXhbI-Y8cewFzSbgBCvs,2727
|
|
72
81
|
perceptic_core_client/models/interval_trigger.py,sha256=ln-iUgKe9EQddt49-CRdSsZFNvtc0pxNe0FNWVpE1GE,2784
|
|
73
82
|
perceptic_core_client/models/json_node.py,sha256=RSRg1_3scVGIJuYs74PQg48ZeEebrUBzNfHV5qM5exw,4978
|
|
74
83
|
perceptic_core_client/models/json_node_type.py,sha256=2K1l2OqsS9vuYpYN3HsrL0l5-LbJv0AZ_k5mRf4eczs,924
|
|
@@ -79,14 +88,22 @@ perceptic_core_client/models/list_indexing_actions_response.py,sha256=xLe_lKWoh2
|
|
|
79
88
|
perceptic_core_client/models/list_indexing_schedules_response.py,sha256=qQtIy3xPNFKJr4I41UHf4o7SoNNgAPs7bo7n5Hp4VRM,3659
|
|
80
89
|
perceptic_core_client/models/list_schedule_executions_response.py,sha256=yC4TgZkB6ksAw0vHex7Rdo1u570QVwcDwV3u_4pjBog,3679
|
|
81
90
|
perceptic_core_client/models/list_tags_response.py,sha256=j1qnzcGl9h1U81fOmk4o5M_MZ_9qgnL73QgwXrcJgeA,2970
|
|
91
|
+
perceptic_core_client/models/list_users_response.py,sha256=Zd1_2dUzdRJpayfwm76jD4PMcECF-Bow8eFYx9uLiYo,3733
|
|
82
92
|
perceptic_core_client/models/managed_file_system_api_dto.py,sha256=_aVCyjICRFcQaMFBmOohRM3kxZuHv6Buk6f07o-4yjw,2832
|
|
83
93
|
perceptic_core_client/models/me_response.py,sha256=k_rzVuYqTbNNZqxUcKkfQ6lt2LobkqZ0EARQM0YvCsM,3010
|
|
84
94
|
perceptic_core_client/models/model_schema.py,sha256=Cl1Q8pTVD_fEc9eGNOXEf5H_xsYorcnxel0bJa8eQPo,4246
|
|
85
95
|
perceptic_core_client/models/on_upload_trigger.py,sha256=BUc5nKPZ-ZoAbKKtO4HwdttQ1pjT0KycTT4-on8WBXQ,2530
|
|
86
96
|
perceptic_core_client/models/paged_list_file_system_response.py,sha256=RqY3rfmucbx4Ya89DDVTU2hC4DAJHZTdi7ronC7fmnI,3440
|
|
97
|
+
perceptic_core_client/models/persistence_mode.py,sha256=KvqvbG2TinmnN-3bhhwfjE8-O-Rw9IaaOFj1OnBTxM8,825
|
|
98
|
+
perceptic_core_client/models/post_rating_request.py,sha256=KNQdYWGMZOQPOiCiflZMPCHaFVy7MJSwQf-NIIzVAjQ,2767
|
|
99
|
+
perceptic_core_client/models/post_run_event_rating_response.py,sha256=fBjdkM5t9lBeywbXuK5XpoIbZbxeNDgahhv55m26qxw,2984
|
|
87
100
|
perceptic_core_client/models/post_worker_run_request.py,sha256=6bfgf2Yrwpc46X6c_NL2Mlf9YyKUBzk_kl9o26COtW8,2525
|
|
101
|
+
perceptic_core_client/models/post_worker_run_request1.py,sha256=9x7NBvBT_v9wuUYmQ72AbtAKMxzoXPAXg2sP4esU7qM,2556
|
|
88
102
|
perceptic_core_client/models/post_worker_run_response.py,sha256=zOpSem6C2F8of_AM4LZCY2C4fpa8aB3g5iy2bCrfRjU,2601
|
|
103
|
+
perceptic_core_client/models/post_worker_run_response1.py,sha256=vtxIuBkIn2KfyC7ccIXw5ylh7osVKW_nHjRHzToQWSY,2605
|
|
89
104
|
perceptic_core_client/models/progress_event.py,sha256=5iAGv-0wpu39PDBG1062TEXMQkjf7PIxo6El9hUnPOo,2903
|
|
105
|
+
perceptic_core_client/models/progress_event1.py,sha256=pfHzVl8sIdG-bx3O2QlNXHAifOC228dK-qiVboA-6qM,2907
|
|
106
|
+
perceptic_core_client/models/rating_dto_worker_run_event_rating_secondary_id.py,sha256=HMX4J1yJER97_zSBq84FXDRKNKT5xpjB3mJJ8EslyE8,3960
|
|
90
107
|
perceptic_core_client/models/remote_file_system_api_dto.py,sha256=P770rxN2fZZqPDEPEeMFpcKcDiWQHmxVr_9TzBgroz4,3463
|
|
91
108
|
perceptic_core_client/models/remove_tag_from_file_request.py,sha256=u_liteh8V2JVMOeBYuTW6rpxaasZhFUESn7L_ZBcCMQ,2613
|
|
92
109
|
perceptic_core_client/models/request_for_input_event.py,sha256=-jJjXA_17GqUWupDb_kaOag7ZXyQBsl-BsCH9XhJifY,3722
|
|
@@ -94,11 +111,11 @@ perceptic_core_client/models/resource_entry_dto.py,sha256=dbRIgLIzUVNls7D62ANS5e
|
|
|
94
111
|
perceptic_core_client/models/resource_identifier.py,sha256=ODJVfR3FSO8nnICHCUwpVGynjv57jRy9cRaWjepndxo,3474
|
|
95
112
|
perceptic_core_client/models/resource_metadata_dto.py,sha256=u81AjXtYtpOQ0ku4Bb8vl_zVK6J-1i9F82LPaqqS1W4,4444
|
|
96
113
|
perceptic_core_client/models/resource_type_dto.py,sha256=EZDcHHHbMS4p5uR6HXlFbpSXe35IwqBAq9XwMvYM29M,781
|
|
97
|
-
perceptic_core_client/models/run_status_dto.py,sha256=
|
|
114
|
+
perceptic_core_client/models/run_status_dto.py,sha256=os_1PoUqwR2-omdPf3hTEKNPVKAk5j20sONQn2uIQGk,1096
|
|
98
115
|
perceptic_core_client/models/s3_connection_settings_api_dto.py,sha256=-a13ZHx4WR0lEHC-k-vkBEG2xddKYYlvLMUmdlWt4LA,4188
|
|
99
116
|
perceptic_core_client/models/s3_file_system_root_metadata_api_dto.py,sha256=UXf73tDPxpAKeudvR1sOmd0PBvhtQGemElPT-KpK72c,2739
|
|
100
117
|
perceptic_core_client/models/schedule_execution_dto.py,sha256=jqdmalwpmEJEjQykku0fj9XIfNZl7Hzyhzlxd5H8XxU,3673
|
|
101
|
-
perceptic_core_client/models/schedule_trigger.py,sha256=
|
|
118
|
+
perceptic_core_client/models/schedule_trigger.py,sha256=OX0ADKR8iDCD2RFtGZdENoO-vN_ZoUZ9n6lWrz0JAok,6973
|
|
102
119
|
perceptic_core_client/models/schema_location.py,sha256=ONpXyUVxP7dqw_vlbpZEKLCYEBWLA0rSf9WfydDDPsA,2803
|
|
103
120
|
perceptic_core_client/models/start_execution_response.py,sha256=6_LKEKrF_8wZcrwC5CdZ0_-BFlj1HgTgLqTo1NgcbvI,2845
|
|
104
121
|
perceptic_core_client/models/tag_info.py,sha256=brVBqGqV5vafpgDBFhzzjObjqnd8FYGK6CmnI7_8lW4,2815
|
|
@@ -107,10 +124,18 @@ perceptic_core_client/models/update_indexing_schedule_response.py,sha256=3TVX_PI
|
|
|
107
124
|
perceptic_core_client/models/update_tag_request.py,sha256=1vGfkaNqq7Qq9xpOJtujAG_q3xbx8Ct-9MJtjPrb02g,3204
|
|
108
125
|
perceptic_core_client/models/update_tag_response.py,sha256=AC8amL5bmPNVDuW8NyqcjslTnzCjsgWTFn9C_de09AA,2892
|
|
109
126
|
perceptic_core_client/models/upload_file_to_managed_file_system_response.py,sha256=JvwpcS4IZTpkgcYmSNQX67Ex8O0OfPLygsaGIUTFy9g,2691
|
|
127
|
+
perceptic_core_client/models/upload_resource_response_v2.py,sha256=T1sh9RgUJ1bVyJ1l2FJdszICjifSdwvkvgQdtSQ03qo,2870
|
|
110
128
|
perceptic_core_client/models/user_info_response.py,sha256=S9NNuv4RWsInlg8edk4nsl6srv6Sur3eZvpni5Tvo2g,4051
|
|
129
|
+
perceptic_core_client/models/user_input_event.py,sha256=LTTgJhJ1OGSdDk-3TICiNaDJWQN4icbQFL8v8LOLgwg,3236
|
|
130
|
+
perceptic_core_client/models/user_request_for_input_event.py,sha256=vt_DKyioZRw53XPTb_8_NGh1vXOvI374dDBu3Rzvras,3738
|
|
111
131
|
perceptic_core_client/models/web_page_citation_metadata_api_dto.py,sha256=9gWNtO9E8V7by35I4VLfFAEW7ACFRaP5HyD4nxTzIkU,2692
|
|
112
|
-
perceptic_core_client/models/worker_event.py,sha256=
|
|
132
|
+
perceptic_core_client/models/worker_event.py,sha256=nT2AMHtq3evx7TS_8KWQ4kp5kuJ57Ki_uuePEpxEicQ,6958
|
|
133
|
+
perceptic_core_client/models/worker_event_v2.py,sha256=o2uHdvM2plYfjPM0mHneFiJXae0VI4IZ6nfDAN1T7_I,8062
|
|
113
134
|
perceptic_core_client/models/worker_metadata_dto.py,sha256=S9jsLoj3df5H_40EV7KGh7KoEamWUAZbIaDgCm27QAA,2986
|
|
135
|
+
perceptic_core_client/models/worker_run_event_rating_secondary_id.py,sha256=Uk2ZlYK58dReYP-KR1T1BGyS4E4gt-H4cgkWKkktjp4,2726
|
|
136
|
+
perceptic_core_client/models/worker_stream_event_v2.py,sha256=eYf8esA0UlS5K8bSng_2jAz3s5hqCW0qGhxJvXEFlH4,2730
|
|
137
|
+
perceptic_core_client/models/worker_v2_next_page_token.py,sha256=1vmDYjzuflD-SQXNpCOApGSKF-KUAjDnLdksxtlY3y8,2924
|
|
138
|
+
perceptic_core_client/models/workflow_status_response.py,sha256=tgGQ4dYf0f642AFSsgKcMmOtnAs2NaMUoO8W0wTrQ4Y,2695
|
|
114
139
|
perceptic_core_client/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
140
|
perceptic_core_client/test/test_action_type.py,sha256=n21J9CQEH1tHjztKC7K081mvKNbffxmcztRNfxPF4po,717
|
|
116
141
|
perceptic_core_client/test/test_add_tag_to_file_request.py,sha256=RLAiCPjmdk176Lj6SFZorGhtJdCt8jf1wiPCMH9OPWA,1481
|
|
@@ -131,6 +156,7 @@ perceptic_core_client/test/test_create_connection_response.py,sha256=FLeeBFLE1YS
|
|
|
131
156
|
perceptic_core_client/test/test_create_file_system_response.py,sha256=jWEZe9pxSOqERTzPNJHeBJO9ld0e2k-TiY3LDnqGH4Y,1548
|
|
132
157
|
perceptic_core_client/test/test_create_folder_request.py,sha256=0wVZY_lEvkM0Zy2O_VSnUMl1rd5E9DtvSNJ0DLmthCc,1483
|
|
133
158
|
perceptic_core_client/test/test_create_folder_response.py,sha256=kuN57ZCvE7GmFHgyQzsVmpgP_90FMefrQ5UnN6pEW4Q,1495
|
|
159
|
+
perceptic_core_client/test/test_create_folder_response_v2.py,sha256=1NHn25XfjcylOsxPW7m9LTr-4q6xSMVQVxraU_P88NY,1546
|
|
134
160
|
perceptic_core_client/test/test_create_indexing_schedule_request.py,sha256=I18chyFRb4xVSQ1g2LWkAS06bR-XQy_Me69DbZrMTyw,2452
|
|
135
161
|
perceptic_core_client/test/test_create_indexing_schedule_response.py,sha256=DhtbckQ6ahFfC7SCB3ydV3v7PvjzEmIjyo9PnM-60eI,2694
|
|
136
162
|
perceptic_core_client/test/test_create_indexing_task_request.py,sha256=w_xadH52NGh4gsrRyTcTOFqQGqEXBRWuOAu7qJnOQdc,1785
|
|
@@ -153,8 +179,11 @@ perceptic_core_client/test/test_get_indexing_task_response.py,sha256=2RhsjRfcu5x
|
|
|
153
179
|
perceptic_core_client/test/test_get_metadata_response.py,sha256=oPDM4yv_LNZFZCx-1hxDKk5HRpTiFnog_1t6FURUFgc,2073
|
|
154
180
|
perceptic_core_client/test/test_get_parent_response.py,sha256=uPwSbtoQ18IlNEpnWTE7gMS07qoYEwHL1T9tMdsOIL4,1454
|
|
155
181
|
perceptic_core_client/test/test_get_parent_uri_response.py,sha256=3yjM69ht8leTvLRPZXmdpLVM1-annUPhGPtJJitcAko,1491
|
|
182
|
+
perceptic_core_client/test/test_get_run_event_rating_response.py,sha256=AIIuVlpBv1gTseT-L-e_sbVe2jHCE7lEW9TVotL9Nq0,2031
|
|
156
183
|
perceptic_core_client/test/test_get_signed_url_response.py,sha256=BpwbWZA8xdrJbfXg_E-7pQWjBu-7VgYTYIQoeTRLmes,1494
|
|
157
184
|
perceptic_core_client/test/test_get_worker_events_response.py,sha256=P2xL5C6cP4xy5S6s7t4o-JytNYo9J-dbghOJQg2DHlM,1624
|
|
185
|
+
perceptic_core_client/test/test_get_worker_events_v2_response.py,sha256=PgY8DSfSebWv1KHiLgtyFIksEDHdXg2_zhApOAxMZrs,1883
|
|
186
|
+
perceptic_core_client/test/test_get_worker_events_v3_response.py,sha256=sCbd2-7Z3Ptlz4U52BpSwui-MeiJVtvaMdqbiuhDuFo,1692
|
|
158
187
|
perceptic_core_client/test/test_get_worker_metadata_response.py,sha256=Yl4A7wiJc9JhXqyoGIjU7lBb5pNKddPFCkdEktJ8MZc,1895
|
|
159
188
|
perceptic_core_client/test/test_get_worker_run_response.py,sha256=eQAWowqYL4Bdh87FV1l5Y6dPZ5qz2ZQf0kSrMK24Q8A,1706
|
|
160
189
|
perceptic_core_client/test/test_get_worker_status_response.py,sha256=vn-sTDmcC07YzlqkqBhgFRceNybgMvMCunjCrL9uXtM,1537
|
|
@@ -171,6 +200,10 @@ perceptic_core_client/test/test_indexing_task_dto.py,sha256=4LSPu_AoLgeAKoJnRW3d
|
|
|
171
200
|
perceptic_core_client/test/test_indexing_task_resource_api.py,sha256=3pjEoxSJl7SCxFsUORUHdhDDZTdVvNXEaqiQK_7T3Lg,1310
|
|
172
201
|
perceptic_core_client/test/test_indexing_task_status.py,sha256=mM7GA47e4_PrWMjYPuph2Cne00AwM7K7a_gEH5rPIwQ,1464
|
|
173
202
|
perceptic_core_client/test/test_info_event.py,sha256=_RQLTqr5Dwdgzrx9-dpz69_vqeRbmtzLKb3VM5EXJAI,1523
|
|
203
|
+
perceptic_core_client/test/test_info_event1.py,sha256=IQP8fWX8bt05NNir84oeHk2pmH9AiGmyYRBvKw5koz4,1535
|
|
204
|
+
perceptic_core_client/test/test_ingest_event_request.py,sha256=yzBKOBRsymXJf8uMoq4pf7T6Wc3bdF77qD3Ae5beqec,1690
|
|
205
|
+
perceptic_core_client/test/test_ingest_event_response.py,sha256=zeFTV9c0HFEJu8BYHgjLaz9f1ElrY9T1Ps9bnyTb8L8,1510
|
|
206
|
+
perceptic_core_client/test/test_ingest_stream_event_request.py,sha256=AqC4aHftzt-VsmulsM9OOCcDC2S8x7WFlpPfNc_iwb4,1575
|
|
174
207
|
perceptic_core_client/test/test_interval_trigger.py,sha256=4LtBbdG_GzjV0gT8mUvPbV1DdnzKzhuHItLvyd7E1dA,1596
|
|
175
208
|
perceptic_core_client/test/test_json_node.py,sha256=PSqWJ-4Ho-C5lVLLSiSpN8DROm0r-I0s0-R8cwGV9mU,2049
|
|
176
209
|
perceptic_core_client/test/test_json_node_type.py,sha256=8rP20yxdJKWDcYGdyGGBvaHqDOX6ymT6Ug4mVoCLcA0,732
|
|
@@ -181,17 +214,25 @@ perceptic_core_client/test/test_list_indexing_actions_response.py,sha256=O1Stbmw
|
|
|
181
214
|
perceptic_core_client/test/test_list_indexing_schedules_response.py,sha256=egVcT3K1IoYFNwzh9jKm0V_GyMFsvr5G2qBnr6S-d9g,2824
|
|
182
215
|
perceptic_core_client/test/test_list_schedule_executions_response.py,sha256=k-rbXYjVdlejcJMafhjoJjioBPCmwQUPr4mURE5tW5s,2140
|
|
183
216
|
perceptic_core_client/test/test_list_tags_response.py,sha256=wzuX1xS3Zov25qtsRWgld7yS_HhA80eGbeDS5JyORfE,1682
|
|
217
|
+
perceptic_core_client/test/test_list_users_response.py,sha256=0X13myvJ0aS5ssG7IKA_9PUShIB8KA6_KInSV2XVHNY,1828
|
|
184
218
|
perceptic_core_client/test/test_managed_file_system_api_dto.py,sha256=_GVm3ymbXzKh3fP3a2FNhSIUHWobPrRkHX1f7zcLZLs,1613
|
|
185
219
|
perceptic_core_client/test/test_me_response.py,sha256=NhLaiooL6lhhcyxgxezMBl9EJZQDOkEtHlka0MCBSzE,1494
|
|
186
220
|
perceptic_core_client/test/test_model_schema.py,sha256=TAZLQ79pitZP5U6jOmYBT_2-bmUfnCv4zSaNyhsuz2k,1950
|
|
187
221
|
perceptic_core_client/test/test_on_upload_trigger.py,sha256=ZcWuPWj_qhFgW7zHry74zSBo8W-cbyfIggJbVeeyYOA,1428
|
|
188
222
|
perceptic_core_client/test/test_paged_list_file_system_response.py,sha256=iL09EP0VO_9B5RmCtObqmj4xvLQMLKaTGs7gGFJj15c,2449
|
|
223
|
+
perceptic_core_client/test/test_persistence_mode.py,sha256=UGqlEZdukleqonjaifabUG8RqW7gFEDQBOJAcAnTmTQ,752
|
|
224
|
+
perceptic_core_client/test/test_post_rating_request.py,sha256=NjcfN9RMXUzmlLe3NF6uuCKh1b1d-5121D1ArSdSXR8,1495
|
|
225
|
+
perceptic_core_client/test/test_post_run_event_rating_response.py,sha256=SXXfZjYiY76RZnlRvV5ZxDRpqCNpi2foe13DeNDeDao,2043
|
|
189
226
|
perceptic_core_client/test/test_post_worker_run_request.py,sha256=FxIpvUHxCJXPKbjUL361J8k0J4fB3kIF3Q9vpFiNWD4,1524
|
|
227
|
+
perceptic_core_client/test/test_post_worker_run_request1.py,sha256=ED-UA85jW7Nh9ZTM2gim4V6fAzO8EX-qCNjlpq4MDBs,1505
|
|
190
228
|
perceptic_core_client/test/test_post_worker_run_response.py,sha256=rG0x1tul3NFPpjhKQi-p379nHo_H6jF69cVKM5WHpH0,1504
|
|
191
|
-
perceptic_core_client/test/
|
|
229
|
+
perceptic_core_client/test/test_post_worker_run_response1.py,sha256=EXYJBVzhnBYnvYKBomET01SJB-_KkVuylhCcsUyGFJY,1516
|
|
230
|
+
perceptic_core_client/test/test_progress_event.py,sha256=G9cPZA3r8vpr5wQJAm6zdmxAdLS8ImfiU_lf6e-lNas,1629
|
|
231
|
+
perceptic_core_client/test/test_progress_event1.py,sha256=tUwxe-zwBrrfZ3QFcicqnQrp2TE-thySEtmIOltkCqw,1641
|
|
232
|
+
perceptic_core_client/test/test_rating_dto_worker_run_event_rating_secondary_id.py,sha256=wbL__Wav_wj283VMh9V3O7GZtMaV8u-WgyVUt2LnaOk,2040
|
|
192
233
|
perceptic_core_client/test/test_remote_file_system_api_dto.py,sha256=z99dSsSJu-rZg1CaO49PxoJIsvA9HD8fOajXD45prRM,1760
|
|
193
234
|
perceptic_core_client/test/test_remove_tag_from_file_request.py,sha256=axXB7hXXAgVbJJaaWSdZnjlIo6abQ6U2Y3vfDdNWBhI,1541
|
|
194
|
-
perceptic_core_client/test/test_request_for_input_event.py,sha256=
|
|
235
|
+
perceptic_core_client/test/test_request_for_input_event.py,sha256=DYqvs0kv2e6ZRvIv-Wg-Z2G0l4jzTWI71XP9qqFpovQ,1794
|
|
195
236
|
perceptic_core_client/test/test_resource_entry_dto.py,sha256=YhUIrTim9PD-cezsLsJrU4MZfU6A0R4F8PyucrS5Zuc,2071
|
|
196
237
|
perceptic_core_client/test/test_resource_identifier.py,sha256=Sxk9OBxw0C2fhRKsHJKI1fPFDEO0KLX6OEYGFWi79NE,1702
|
|
197
238
|
perceptic_core_client/test/test_resource_metadata_dto.py,sha256=92GnTbx8hWsec8RHzfnuasY38ZFvM8HmSQIQXN6tSoo,1909
|
|
@@ -204,20 +245,29 @@ perceptic_core_client/test/test_schedule_trigger.py,sha256=EZLrcko-4mOkIyo6UZrQs
|
|
|
204
245
|
perceptic_core_client/test/test_schema_location.py,sha256=lEe3E-VJLQ8UtvpImmQIq1DnsaeCQq3RTNCM1QdqbfI,1514
|
|
205
246
|
perceptic_core_client/test/test_start_execution_response.py,sha256=1dpZ3bQIXpMyG8HgCMqePY_hkHZqc_IIc4m2-z4Bg-E,2122
|
|
206
247
|
perceptic_core_client/test/test_tag_info.py,sha256=6-lKnytKyfR75QjFRPb7641_ZtNED77P9CCy90m5wf4,1421
|
|
207
|
-
perceptic_core_client/test/test_tag_resource_api.py,sha256=
|
|
248
|
+
perceptic_core_client/test/test_tag_resource_api.py,sha256=lb0MU41kXf4byQBySkELiIcwK8HUdWWcawRJrj_yyEc,1304
|
|
208
249
|
perceptic_core_client/test/test_update_indexing_schedule_request.py,sha256=9SLP1UdxJbNtB55N8rAH3Bk5BP2nh49oIhYOv78UM8Y,1893
|
|
209
250
|
perceptic_core_client/test/test_update_indexing_schedule_response.py,sha256=U_9OLaVswJC4tJ6Yehhl8Veib8Io-P81NcQ-2-uv7wA,2659
|
|
210
251
|
perceptic_core_client/test/test_update_tag_request.py,sha256=quiRdlic1vOuoYEuXzKXxiilzsSGwTE2FV5RJfpC0mY,1482
|
|
211
252
|
perceptic_core_client/test/test_update_tag_response.py,sha256=JUyWJN6lPeDhYU_UQqBNYI2iJj0kdIkTKi7CPGgnK3w,1641
|
|
212
253
|
perceptic_core_client/test/test_upload_file_to_managed_file_system_response.py,sha256=Mpmwqqz0m3p6b9Ofa3nC9ar9tG8FwHYBf9QkhLA54Ho,1705
|
|
213
|
-
perceptic_core_client/test/
|
|
254
|
+
perceptic_core_client/test/test_upload_resource_response_v2.py,sha256=ANBGj7O4kmKBtzHL8XPPe18CwUKYteqKtGXmCsjMyQ0,1606
|
|
255
|
+
perceptic_core_client/test/test_uri_resource_api.py,sha256=5HRbSZHmymlWOrjUxHLMDq8pZJbeHK7jtzWsfg8Gwis,2512
|
|
214
256
|
perceptic_core_client/test/test_user_info_response.py,sha256=UpY4zDbL1STHqrssuuELMkMnRCC5lx4d-OoJXblcM7M,1597
|
|
215
|
-
perceptic_core_client/test/
|
|
257
|
+
perceptic_core_client/test/test_user_input_event.py,sha256=iJcqCyvCD0_FUUhm0rsj_O1cFFLwQyVIaO0G2US_niQ,1618
|
|
258
|
+
perceptic_core_client/test/test_user_request_for_input_event.py,sha256=oaDNSbZjUvtpyl57zdf5HnNmNDJ_PDPXfvS5jZIn-3o,1843
|
|
259
|
+
perceptic_core_client/test/test_user_resource_api.py,sha256=3VGYbyf8sDBHc5YHjvVBa38y-MXw2oT9KIy9uONfzGc,1117
|
|
216
260
|
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=
|
|
261
|
+
perceptic_core_client/test/test_worker_event.py,sha256=uEJ06JoO1RLDIJ0dDmnmNoLt8m-YCo6AS438mjL7gDM,1855
|
|
262
|
+
perceptic_core_client/test/test_worker_event_v2.py,sha256=6_Duy87J87msdXTHcwpSZCUIco06LgTd9nY1d4M-o_M,1948
|
|
218
263
|
perceptic_core_client/test/test_worker_metadata_dto.py,sha256=lbvKWvnwcKEfHHh9diRevdceGEJwgv3INVphqaxiAlw,1674
|
|
219
|
-
perceptic_core_client/test/test_worker_resource_api.py,sha256=
|
|
220
|
-
perceptic_core_client
|
|
221
|
-
perceptic_core_client
|
|
222
|
-
perceptic_core_client
|
|
223
|
-
perceptic_core_client
|
|
264
|
+
perceptic_core_client/test/test_worker_resource_api.py,sha256=HDck3hoBaur3gVsBrZcOMtVv8XgFScY2VwFhSzhwUgc,2567
|
|
265
|
+
perceptic_core_client/test/test_worker_resource_v3_api.py,sha256=ZGRFJ-O-pcgB1ARIl8we73LqwOCumGSW3zBp83ekexk,1673
|
|
266
|
+
perceptic_core_client/test/test_worker_run_event_rating_secondary_id.py,sha256=yBAKncG29Z-cwfS9lCgS1Uu0N7-cVo5zpMDQUUlt-iU,1687
|
|
267
|
+
perceptic_core_client/test/test_worker_stream_event_v2.py,sha256=4ebSB4UHyzzxIs9wdQ00mX1WzrvgdOnYWgBsvBx0gn4,1587
|
|
268
|
+
perceptic_core_client/test/test_worker_v2_next_page_token.py,sha256=y28ezG-eut_SR0Tck2OaNdovK-VXsZs6qgzg9eC9CUQ,1580
|
|
269
|
+
perceptic_core_client/test/test_workflow_status_response.py,sha256=a2KT3PrAVOC4ApoFIVRfOg0mdpJ4t-CAgadrz4SVUUo,1544
|
|
270
|
+
perceptic_core_client-0.50.3.dist-info/METADATA,sha256=-GCvY9n31Mx5yeCUtV2wii54hMI_siT_kcWZpt1vM7c,3605
|
|
271
|
+
perceptic_core_client-0.50.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
272
|
+
perceptic_core_client-0.50.3.dist-info/top_level.txt,sha256=wWF5_isd4ZU0SRPPhKKAxW4kJ9hYIBgLbcWn_y-c1tg,22
|
|
273
|
+
perceptic_core_client-0.50.3.dist-info/RECORD,,
|
|
File without changes
|
{perceptic_core_client-0.39.0.dist-info → perceptic_core_client-0.50.3.dist-info}/top_level.txt
RENAMED
|
File without changes
|