flux-config-shared 0.2.0__tar.gz → 0.3.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: flux-config-shared
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Summary: Shared protocol and configuration definitions for Flux Config packages
5
5
  Author: David White
6
6
  Author-email: David White <david@runonflux.io>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "flux-config-shared"
3
- version = "0.2.0"
3
+ version = "0.3.0"
4
4
  description = "Shared protocol and configuration definitions for Flux Config packages"
5
5
  authors = [{ name = "David White", email = "david@runonflux.io" }]
6
6
  requires-python = ">=3.13, <4"
@@ -195,6 +195,10 @@ class MethodName(str, Enum):
195
195
  NETWORK_SHAPING_GET_POLICY = "network.shaping.get_policy"
196
196
  NETWORK_SHAPING_SET_POLICY = "network.shaping.set_policy"
197
197
 
198
+ # ArcaneOS Node Authentication
199
+ ARCANE_GENERATE_CHALLENGE = "arcane.generate_challenge"
200
+ ARCANE_CONFIG_UPDATE = "arcane.config_update"
201
+
198
202
 
199
203
  class EventType(str, Enum):
200
204
  """Event types (Daemon → Client)."""