plantstar-shared 2.0.3.0.2.23__tar.gz → 2.0.3.0.2.24__tar.gz
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.
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/PKG-INFO +1 -1
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/api_types.py +7 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared.egg-info/PKG-INFO +1 -1
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/setup.py +1 -1
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/README.md +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/DataCollectionModuleProcessNames.py +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/HmiConstants.py +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/HuskyInterfacePacketTypes.py +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/MockRawDataProcessor.py +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/RawDataProcessorInterfaceActions.py +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/SysconType.py +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/__init__.py +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/add_size_onto_string_and_return.py +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/convert_bytes_to_object.py +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/convert_object_to_bytes.py +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/errors.py +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/global_definitions.py +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/is_valid_signed_string.py +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/obtain_raw_data_processor_function_for_action_name.py +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/syscon_image_field.py +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/syscon_json.py +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/tcp_socket_utils.py +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared.egg-info/SOURCES.txt +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared.egg-info/dependency_links.txt +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared.egg-info/requires.txt +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared.egg-info/top_level.txt +0 -0
- {plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/setup.cfg +0 -0
{plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/api_types.py
RENAMED
@@ -99,6 +99,11 @@ class ApuApiTypes(SysconType):
|
|
99
99
|
SET_IS_COLDBOOTING_STATUS = ("data_collection_module_manager/set_is_coldbooting_status", "data_collection_module_manager/set_is_coldbooting_status", True)
|
100
100
|
REGISTER_HMI = ("data_collection_module_manager/register_hmi", "data_collection_module_manager/register_hmi", True)
|
101
101
|
REGISTER_DCM = ("data_collection_module_manager/register_dcm", "data_collection_module_manager/register_dcm", True)
|
102
|
+
GET_USER_FINGERPRINTS = ("user_manager/get_user_fingerprints", "user_manager/get_user_fingerprints", True)
|
103
|
+
ADD_USER_FINGERPRINT = ("user_manager/add_user_fingerprint", "user_manager/add_user_fingerprint", True)
|
104
|
+
DELETE_USER_FINGERPRINT = ("user_manager/delete_user_fingerprint", "user_manager/delete_user_fingerprint", True)
|
105
|
+
RELABEL_USER_FINGERPRINT = ("user_manager/relabel_user_fingerprint", "user_manager/relabel_user_fingerprint", True)
|
106
|
+
IDENTIFY_USER_FINGERPRINT = ("user_manager/identify_user_fingerprint", "user_manager/identify_user_fingerprint", True)
|
102
107
|
|
103
108
|
|
104
109
|
class CosmosApiTypes(SysconType):
|
@@ -106,6 +111,8 @@ class CosmosApiTypes(SysconType):
|
|
106
111
|
|
107
112
|
|
108
113
|
class HmiApiTypes(SysconType):
|
114
|
+
IDENTIFY_FINGERPRINT = ("identify_fingerprint", "identify_fingerprint", True)
|
115
|
+
ADD_FINGERPRINT = ("add_fingerprint", "add_fingerprint", True)
|
109
116
|
GET_HMI_SYSTEM_INFORMATION = ("get_hmi_system_information", "get_hmi_system_information", True)
|
110
117
|
SET_HMI_SYSTEM_INFORMATION = ("set_hmi_system_information", "set_hmi_system_information", True)
|
111
118
|
REBOOT_HMI = ("reboot_hmi", "reboot_hmi", True)
|
@@ -7,7 +7,7 @@ setuptools.setup(
|
|
7
7
|
name="plantstar-shared",
|
8
8
|
# MAJOR_MILESTONE_VERSION.MINOR_MILESTONE_VERSION.MAJOR_VERSION.MINOR_VERSION.HOTFIX_VERSION.SUBVERSION
|
9
9
|
# The main version should stay as v2.0.3.0.x until we have passed that in the plantstar_apu/plantstar_dcm projects
|
10
|
-
version="2.0.3.0.2.
|
10
|
+
version="2.0.3.0.2.24",
|
11
11
|
author="SYSCON International",
|
12
12
|
author_email="dev@syscon-intl.com",
|
13
13
|
description="Shared code used in plantstar_apu and plantstar_dcm",
|
File without changes
|
File without changes
|
{plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/HmiConstants.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/SysconType.py
RENAMED
File without changes
|
{plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/syscon_json.py
RENAMED
File without changes
|
{plantstar_shared-2.0.3.0.2.23 → plantstar_shared-2.0.3.0.2.24}/plantstar_shared/tcp_socket_utils.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|