acex-devkit 1.0.1__tar.gz → 1.0.2__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.
Files changed (19) hide show
  1. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/PKG-INFO +1 -1
  2. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/pyproject.toml +1 -1
  3. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/src/acex_devkit/models/composed_configuration.py +1 -0
  4. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/README.md +0 -0
  5. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/src/acex_devkit/__init__.py +0 -0
  6. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/src/acex_devkit/configdiffer/__init__.py +0 -0
  7. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/src/acex_devkit/configdiffer/configdiffer.py +0 -0
  8. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/src/acex_devkit/drivers/__init__.py +0 -0
  9. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/src/acex_devkit/drivers/base.py +0 -0
  10. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/src/acex_devkit/drivers/base_driver.py +0 -0
  11. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/src/acex_devkit/exceptions/__init__.py +0 -0
  12. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/src/acex_devkit/models/__init__.py +0 -0
  13. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/src/acex_devkit/models/attribute_value.py +0 -0
  14. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/src/acex_devkit/models/external_value.py +0 -0
  15. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/src/acex_devkit/models/logging.py +0 -0
  16. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/src/acex_devkit/models/ned.py +0 -0
  17. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/src/acex_devkit/models/node_response.py +0 -0
  18. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/src/acex_devkit/models/spanning_tree.py +0 -0
  19. {acex_devkit-1.0.1 → acex_devkit-1.0.2}/src/acex_devkit/types/__init__.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: acex-devkit
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: ACE-X DevKit - Development kit for building ACE-X drivers and plugins
5
5
  License: AGPL-3.0
6
6
  Keywords: automation,devkit,sdk,drivers,plugins
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "acex-devkit"
3
- version = "1.0.1"
3
+ version = "1.0.2"
4
4
  description = "ACE-X DevKit - Development kit for building ACE-X drivers and plugins"
5
5
  authors = ["Johan Lahti <johan.lahti@acebit.se>"]
6
6
  readme = "README.md"
@@ -151,6 +151,7 @@ class EthernetCsmacdInterface(Interface):
151
151
  vlan_id: Optional[AttributeValue[int]] = None
152
152
  voice_vlan: Optional[AttributeValue[int]] = None
153
153
  mtu: Optional[AttributeValue[int]] = None # No default set as it differs between devices and vendors
154
+ negotiation: Optional[AttributeValue[bool]] = None
154
155
 
155
156
  # LACP relaterade attribut
156
157
  aggregate_id: Optional[AttributeValue[int]] = None
File without changes