exonware-xwnode 0.0.1.18__py3-none-any.whl → 0.0.1.19__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.
Files changed (202) hide show
  1. exonware/__init__.py +1 -1
  2. exonware/xwnode/__init__.py +1 -1
  3. exonware/xwnode/common/__init__.py +1 -1
  4. exonware/xwnode/common/management/__init__.py +1 -1
  5. exonware/xwnode/common/management/manager.py +2 -2
  6. exonware/xwnode/common/management/migration.py +1 -1
  7. exonware/xwnode/common/monitoring/__init__.py +1 -1
  8. exonware/xwnode/common/monitoring/metrics.py +2 -2
  9. exonware/xwnode/common/monitoring/pattern_detector.py +2 -2
  10. exonware/xwnode/common/monitoring/performance_monitor.py +2 -2
  11. exonware/xwnode/common/patterns/__init__.py +1 -1
  12. exonware/xwnode/common/patterns/advisor.py +1 -1
  13. exonware/xwnode/common/patterns/flyweight.py +2 -2
  14. exonware/xwnode/common/patterns/registry.py +1 -1
  15. exonware/xwnode/common/utils/__init__.py +1 -1
  16. exonware/xwnode/contracts.py +3 -3
  17. exonware/xwnode/edges/strategies/__init__.py +1 -1
  18. exonware/xwnode/edges/strategies/_base_edge.py +1 -1
  19. exonware/xwnode/edges/strategies/adj_list.py +1 -1
  20. exonware/xwnode/edges/strategies/adj_matrix.py +1 -1
  21. exonware/xwnode/edges/strategies/base.py +1 -1
  22. exonware/xwnode/edges/strategies/edge_adj_list.py +1 -1
  23. exonware/xwnode/edges/strategies/edge_adj_matrix.py +1 -1
  24. exonware/xwnode/edges/strategies/edge_bidir_wrapper.py +1 -1
  25. exonware/xwnode/edges/strategies/edge_block_adj_matrix.py +1 -1
  26. exonware/xwnode/edges/strategies/edge_coo.py +1 -1
  27. exonware/xwnode/edges/strategies/edge_csc.py +1 -1
  28. exonware/xwnode/edges/strategies/edge_csr.py +1 -1
  29. exonware/xwnode/edges/strategies/edge_dynamic_adj_list.py +1 -1
  30. exonware/xwnode/edges/strategies/edge_flow_network.py +1 -1
  31. exonware/xwnode/edges/strategies/edge_hyperedge_set.py +1 -1
  32. exonware/xwnode/edges/strategies/edge_neural_graph.py +1 -1
  33. exonware/xwnode/edges/strategies/edge_octree.py +1 -1
  34. exonware/xwnode/edges/strategies/edge_property_store.py +1 -1
  35. exonware/xwnode/edges/strategies/edge_quadtree.py +1 -1
  36. exonware/xwnode/edges/strategies/edge_rtree.py +1 -1
  37. exonware/xwnode/edges/strategies/edge_temporal_edgeset.py +1 -1
  38. exonware/xwnode/edges/strategies/edge_tree_graph_basic.py +1 -1
  39. exonware/xwnode/edges/strategies/edge_weighted_graph.py +1 -1
  40. exonware/xwnode/errors.py +1 -1
  41. exonware/xwnode/facade.py +3 -3
  42. exonware/xwnode/nodes/strategies/__init__.py +1 -1
  43. exonware/xwnode/nodes/strategies/_base_node.py +1 -1
  44. exonware/xwnode/nodes/strategies/adjacency_list.py +2 -2
  45. exonware/xwnode/nodes/strategies/aho_corasick.py +1 -1
  46. exonware/xwnode/nodes/strategies/array_list.py +1 -1
  47. exonware/xwnode/nodes/strategies/base.py +1 -1
  48. exonware/xwnode/nodes/strategies/contracts.py +1 -1
  49. exonware/xwnode/nodes/strategies/deque.py +2 -2
  50. exonware/xwnode/nodes/strategies/hash_map.py +1 -1
  51. exonware/xwnode/nodes/strategies/heap.py +1 -1
  52. exonware/xwnode/nodes/strategies/linked_list.py +1 -1
  53. exonware/xwnode/nodes/strategies/node_aho_corasick.py +1 -1
  54. exonware/xwnode/nodes/strategies/node_array_list.py +1 -1
  55. exonware/xwnode/nodes/strategies/node_avl_tree.py +1 -1
  56. exonware/xwnode/nodes/strategies/node_b_plus_tree.py +1 -1
  57. exonware/xwnode/nodes/strategies/node_bitmap.py +1 -1
  58. exonware/xwnode/nodes/strategies/node_bitset_dynamic.py +1 -1
  59. exonware/xwnode/nodes/strategies/node_bloom_filter.py +1 -1
  60. exonware/xwnode/nodes/strategies/node_btree.py +1 -1
  61. exonware/xwnode/nodes/strategies/node_count_min_sketch.py +1 -1
  62. exonware/xwnode/nodes/strategies/node_cow_tree.py +1 -1
  63. exonware/xwnode/nodes/strategies/node_cuckoo_hash.py +1 -1
  64. exonware/xwnode/nodes/strategies/node_fenwick_tree.py +1 -1
  65. exonware/xwnode/nodes/strategies/node_hash_map.py +1 -1
  66. exonware/xwnode/nodes/strategies/node_heap.py +1 -1
  67. exonware/xwnode/nodes/strategies/node_hyperloglog.py +1 -1
  68. exonware/xwnode/nodes/strategies/node_linked_list.py +1 -1
  69. exonware/xwnode/nodes/strategies/node_lsm_tree.py +1 -1
  70. exonware/xwnode/nodes/strategies/node_ordered_map.py +1 -1
  71. exonware/xwnode/nodes/strategies/node_ordered_map_balanced.py +1 -1
  72. exonware/xwnode/nodes/strategies/node_patricia.py +1 -1
  73. exonware/xwnode/nodes/strategies/node_persistent_tree.py +1 -1
  74. exonware/xwnode/nodes/strategies/node_radix_trie.py +1 -1
  75. exonware/xwnode/nodes/strategies/node_red_black_tree.py +1 -1
  76. exonware/xwnode/nodes/strategies/node_roaring_bitmap.py +1 -1
  77. exonware/xwnode/nodes/strategies/node_segment_tree.py +1 -1
  78. exonware/xwnode/nodes/strategies/node_set_hash.py +1 -1
  79. exonware/xwnode/nodes/strategies/node_set_tree.py +1 -1
  80. exonware/xwnode/nodes/strategies/node_skip_list.py +1 -1
  81. exonware/xwnode/nodes/strategies/node_splay_tree.py +1 -1
  82. exonware/xwnode/nodes/strategies/node_suffix_array.py +1 -1
  83. exonware/xwnode/nodes/strategies/node_treap.py +1 -1
  84. exonware/xwnode/nodes/strategies/node_tree_graph_hybrid.py +1 -1
  85. exonware/xwnode/nodes/strategies/node_trie.py +1 -1
  86. exonware/xwnode/nodes/strategies/node_union_find.py +1 -1
  87. exonware/xwnode/nodes/strategies/node_xdata_optimized.py +1 -1
  88. exonware/xwnode/nodes/strategies/priority_queue.py +2 -2
  89. exonware/xwnode/nodes/strategies/queue.py +2 -2
  90. exonware/xwnode/nodes/strategies/sparse_matrix.py +2 -2
  91. exonware/xwnode/nodes/strategies/stack.py +2 -2
  92. exonware/xwnode/nodes/strategies/trie.py +1 -1
  93. exonware/xwnode/nodes/strategies/union_find.py +1 -1
  94. exonware/xwnode/queries/executors/__init__.py +2 -2
  95. exonware/xwnode/queries/executors/advanced/aggregate_executor.py +2 -2
  96. exonware/xwnode/queries/executors/advanced/ask_executor.py +2 -2
  97. exonware/xwnode/queries/executors/advanced/construct_executor.py +2 -2
  98. exonware/xwnode/queries/executors/advanced/describe_executor.py +2 -2
  99. exonware/xwnode/queries/executors/advanced/for_loop_executor.py +2 -2
  100. exonware/xwnode/queries/executors/advanced/foreach_executor.py +2 -2
  101. exonware/xwnode/queries/executors/advanced/join_executor.py +2 -2
  102. exonware/xwnode/queries/executors/advanced/let_executor.py +2 -2
  103. exonware/xwnode/queries/executors/advanced/mutation_executor.py +2 -2
  104. exonware/xwnode/queries/executors/advanced/options_executor.py +2 -2
  105. exonware/xwnode/queries/executors/advanced/pipe_executor.py +2 -2
  106. exonware/xwnode/queries/executors/advanced/subscribe_executor.py +2 -2
  107. exonware/xwnode/queries/executors/advanced/subscription_executor.py +2 -2
  108. exonware/xwnode/queries/executors/advanced/union_executor.py +2 -2
  109. exonware/xwnode/queries/executors/advanced/window_executor.py +2 -2
  110. exonware/xwnode/queries/executors/advanced/with_cte_executor.py +2 -2
  111. exonware/xwnode/queries/executors/aggregation/avg_executor.py +2 -2
  112. exonware/xwnode/queries/executors/aggregation/count_executor.py +1 -1
  113. exonware/xwnode/queries/executors/aggregation/distinct_executor.py +2 -2
  114. exonware/xwnode/queries/executors/aggregation/group_executor.py +2 -2
  115. exonware/xwnode/queries/executors/aggregation/having_executor.py +2 -2
  116. exonware/xwnode/queries/executors/aggregation/max_executor.py +2 -2
  117. exonware/xwnode/queries/executors/aggregation/min_executor.py +2 -2
  118. exonware/xwnode/queries/executors/aggregation/sum_executor.py +2 -2
  119. exonware/xwnode/queries/executors/aggregation/summarize_executor.py +2 -2
  120. exonware/xwnode/queries/executors/array/indexing_executor.py +2 -2
  121. exonware/xwnode/queries/executors/array/slicing_executor.py +2 -2
  122. exonware/xwnode/queries/executors/base.py +2 -2
  123. exonware/xwnode/queries/executors/capability_checker.py +1 -1
  124. exonware/xwnode/queries/executors/contracts.py +2 -2
  125. exonware/xwnode/queries/executors/core/create_executor.py +2 -2
  126. exonware/xwnode/queries/executors/core/delete_executor.py +2 -2
  127. exonware/xwnode/queries/executors/core/drop_executor.py +2 -2
  128. exonware/xwnode/queries/executors/core/insert_executor.py +1 -1
  129. exonware/xwnode/queries/executors/core/select_executor.py +2 -2
  130. exonware/xwnode/queries/executors/core/update_executor.py +2 -2
  131. exonware/xwnode/queries/executors/data/alter_executor.py +2 -2
  132. exonware/xwnode/queries/executors/data/load_executor.py +2 -2
  133. exonware/xwnode/queries/executors/data/merge_executor.py +2 -2
  134. exonware/xwnode/queries/executors/data/store_executor.py +2 -2
  135. exonware/xwnode/queries/executors/{types.py → defs.py} +4 -4
  136. exonware/xwnode/queries/executors/engine.py +1 -1
  137. exonware/xwnode/queries/executors/errors.py +1 -1
  138. exonware/xwnode/queries/executors/filtering/between_executor.py +2 -2
  139. exonware/xwnode/queries/executors/filtering/filter_executor.py +2 -2
  140. exonware/xwnode/queries/executors/filtering/has_executor.py +2 -2
  141. exonware/xwnode/queries/executors/filtering/in_executor.py +2 -2
  142. exonware/xwnode/queries/executors/filtering/like_executor.py +2 -2
  143. exonware/xwnode/queries/executors/filtering/optional_executor.py +2 -2
  144. exonware/xwnode/queries/executors/filtering/range_executor.py +2 -2
  145. exonware/xwnode/queries/executors/filtering/term_executor.py +2 -2
  146. exonware/xwnode/queries/executors/filtering/values_executor.py +2 -2
  147. exonware/xwnode/queries/executors/filtering/where_executor.py +1 -1
  148. exonware/xwnode/queries/executors/graph/in_traverse_executor.py +2 -2
  149. exonware/xwnode/queries/executors/graph/match_executor.py +2 -2
  150. exonware/xwnode/queries/executors/graph/out_executor.py +2 -2
  151. exonware/xwnode/queries/executors/graph/path_executor.py +2 -2
  152. exonware/xwnode/queries/executors/graph/return_executor.py +2 -2
  153. exonware/xwnode/queries/executors/ordering/by_executor.py +2 -2
  154. exonware/xwnode/queries/executors/ordering/order_executor.py +2 -2
  155. exonware/xwnode/queries/executors/projection/extend_executor.py +2 -2
  156. exonware/xwnode/queries/executors/projection/project_executor.py +2 -2
  157. exonware/xwnode/queries/executors/registry.py +1 -1
  158. exonware/xwnode/queries/parsers/__init__.py +1 -1
  159. exonware/xwnode/queries/parsers/base.py +1 -1
  160. exonware/xwnode/queries/parsers/contracts.py +1 -1
  161. exonware/xwnode/queries/parsers/errors.py +1 -1
  162. exonware/xwnode/queries/parsers/sql_param_extractor.py +1 -1
  163. exonware/xwnode/queries/strategies/__init__.py +1 -1
  164. exonware/xwnode/queries/strategies/base.py +1 -1
  165. exonware/xwnode/queries/strategies/cql.py +1 -1
  166. exonware/xwnode/queries/strategies/cypher.py +1 -1
  167. exonware/xwnode/queries/strategies/datalog.py +1 -1
  168. exonware/xwnode/queries/strategies/elastic_dsl.py +1 -1
  169. exonware/xwnode/queries/strategies/eql.py +1 -1
  170. exonware/xwnode/queries/strategies/flux.py +1 -1
  171. exonware/xwnode/queries/strategies/gql.py +1 -1
  172. exonware/xwnode/queries/strategies/graphql.py +1 -1
  173. exonware/xwnode/queries/strategies/gremlin.py +1 -1
  174. exonware/xwnode/queries/strategies/hiveql.py +1 -1
  175. exonware/xwnode/queries/strategies/hql.py +1 -1
  176. exonware/xwnode/queries/strategies/jmespath.py +1 -1
  177. exonware/xwnode/queries/strategies/jq.py +1 -1
  178. exonware/xwnode/queries/strategies/json_query.py +1 -1
  179. exonware/xwnode/queries/strategies/jsoniq.py +1 -1
  180. exonware/xwnode/queries/strategies/kql.py +1 -1
  181. exonware/xwnode/queries/strategies/linq.py +1 -1
  182. exonware/xwnode/queries/strategies/logql.py +1 -1
  183. exonware/xwnode/queries/strategies/mql.py +1 -1
  184. exonware/xwnode/queries/strategies/n1ql.py +1 -1
  185. exonware/xwnode/queries/strategies/partiql.py +1 -1
  186. exonware/xwnode/queries/strategies/pig.py +1 -1
  187. exonware/xwnode/queries/strategies/promql.py +1 -1
  188. exonware/xwnode/queries/strategies/sparql.py +1 -1
  189. exonware/xwnode/queries/strategies/sql.py +1 -1
  190. exonware/xwnode/queries/strategies/xml_query.py +1 -1
  191. exonware/xwnode/queries/strategies/xpath.py +1 -1
  192. exonware/xwnode/queries/strategies/xquery.py +1 -1
  193. exonware/xwnode/queries/strategies/xwnode_executor.py +1 -1
  194. exonware/xwnode/queries/strategies/xwquery.py +1 -1
  195. exonware/xwnode/strategies/__init__.py +2 -2
  196. exonware/xwnode/version.py +3 -3
  197. {exonware_xwnode-0.0.1.18.dist-info → exonware_xwnode-0.0.1.19.dist-info}/METADATA +2 -2
  198. exonware_xwnode-0.0.1.19.dist-info/RECORD +214 -0
  199. exonware_xwnode-0.0.1.18.dist-info/RECORD +0 -214
  200. /exonware/xwnode/{types.py → defs.py} +0 -0
  201. {exonware_xwnode-0.0.1.18.dist-info → exonware_xwnode-0.0.1.19.dist-info}/WHEEL +0 -0
  202. {exonware_xwnode-0.0.1.18.dist-info → exonware_xwnode-0.0.1.19.dist-info}/licenses/LICENSE +0 -0
@@ -7,14 +7,14 @@ SUBSCRIBE Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
  class SubscribeExecutor(AUniversalOperationExecutor):
20
20
  """
@@ -7,14 +7,14 @@ SUBSCRIPTION Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
  class SubscriptionExecutor(AUniversalOperationExecutor):
20
20
  """
@@ -7,14 +7,14 @@ UNION Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
  class UnionExecutor(AUniversalOperationExecutor):
20
20
  """
@@ -7,14 +7,14 @@ WINDOW Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
  from ...nodes.strategies.contracts import NodeType
19
19
 
20
20
  class WindowExecutor(AOperationExecutor):
@@ -7,14 +7,14 @@ WITH Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
  class WithCteExecutor(AUniversalOperationExecutor):
20
20
  """
@@ -7,14 +7,14 @@ AVG Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
  class AvgExecutor(AUniversalOperationExecutor):
20
20
  """
@@ -7,7 +7,7 @@ COUNT Operation Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 08-Oct-2025
12
12
  """
13
13
 
@@ -7,14 +7,14 @@ DISTINCT Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
  class DistinctExecutor(AUniversalOperationExecutor):
20
20
  """
@@ -7,14 +7,14 @@ GROUP Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
  class GroupExecutor(AUniversalOperationExecutor):
20
20
  """
@@ -7,14 +7,14 @@ HAVING Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
  class HavingExecutor(AUniversalOperationExecutor):
20
20
  """
@@ -7,14 +7,14 @@ MAX Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
  class MaxExecutor(AUniversalOperationExecutor):
20
20
  """
@@ -7,14 +7,14 @@ MIN Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
  class MinExecutor(AUniversalOperationExecutor):
20
20
  """
@@ -7,14 +7,14 @@ SUM Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
  class SumExecutor(AUniversalOperationExecutor):
20
20
  """
@@ -7,14 +7,14 @@ SUMMARIZE Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
  class SummarizeExecutor(AUniversalOperationExecutor):
20
20
  """
@@ -7,14 +7,14 @@ INDEXING Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
  from ...nodes.strategies.contracts import NodeType
19
19
 
20
20
  class IndexingExecutor(AOperationExecutor):
@@ -7,14 +7,14 @@ SLICING Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
  from ...nodes.strategies.contracts import NodeType
19
19
 
20
20
  class SlicingExecutor(AOperationExecutor):
@@ -9,7 +9,7 @@ This module provides base classes for operation executors with capability checki
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.18
12
+ Version: 0.0.1.19
13
13
  Generation Date: 08-Oct-2025
14
14
  """
15
15
 
@@ -24,7 +24,7 @@ from .contracts import (
24
24
  ExecutionResult,
25
25
  NodeType
26
26
  )
27
- from .types import OperationCapability
27
+ from .defs import OperationCapability
28
28
  from .errors import UnsupportedOperationError # Reuse from root via errors.py
29
29
  from ...errors import XWNodeValueError
30
30
 
@@ -9,7 +9,7 @@ This module provides capability checking for operations on different node types.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.18
12
+ Version: 0.0.1.19
13
13
  Generation Date: 08-Oct-2025
14
14
  """
15
15
 
@@ -9,7 +9,7 @@ This module defines the interfaces and data structures for query operation execu
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.18
12
+ Version: 0.0.1.19
13
13
  Generation Date: 08-Oct-2025
14
14
  """
15
15
 
@@ -19,7 +19,7 @@ from dataclasses import dataclass, field
19
19
 
20
20
  # Import shared types per DEV_GUIDELINES.md
21
21
  from ...nodes.strategies.contracts import NodeType
22
- from .types import OperationCapability
22
+ from .defs import OperationCapability
23
23
 
24
24
 
25
25
  @dataclass
@@ -7,14 +7,14 @@ CREATE Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 08-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
  from ...nodes.strategies.contracts import NodeType
19
19
 
20
20
 
@@ -7,14 +7,14 @@ DELETE Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 08-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
  from ...nodes.strategies.contracts import NodeType
19
19
 
20
20
 
@@ -7,14 +7,14 @@ DROP Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 08-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
  from ...nodes.strategies.contracts import NodeType
19
19
 
20
20
 
@@ -7,7 +7,7 @@ INSERT Operation Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 08-Oct-2025
12
12
  """
13
13
 
@@ -9,14 +9,14 @@ Implements SELECT operation execution on all node types.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.18
12
+ Version: 0.0.1.19
13
13
  Generation Date: 08-Oct-2025
14
14
  """
15
15
 
16
16
  from typing import Any, List, Dict, Optional
17
17
  from ..base import AUniversalOperationExecutor
18
18
  from ..contracts import Action, ExecutionContext, ExecutionResult
19
- from ..types import OperationCapability
19
+ from ..defs import OperationCapability
20
20
  from ...nodes.strategies.contracts import NodeType
21
21
 
22
22
 
@@ -7,14 +7,14 @@ UPDATE Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 08-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
  from ...nodes.strategies.contracts import NodeType
19
19
 
20
20
 
@@ -7,14 +7,14 @@ ALTER Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
  class AlterExecutor(AUniversalOperationExecutor):
20
20
  """
@@ -7,14 +7,14 @@ LOAD Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
  class LoadExecutor(AUniversalOperationExecutor):
20
20
  """
@@ -7,14 +7,14 @@ MERGE Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
  class MergeExecutor(AUniversalOperationExecutor):
20
20
  """
@@ -7,14 +7,14 @@ STORE Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
  class StoreExecutor(AUniversalOperationExecutor):
20
20
  """
@@ -1,23 +1,23 @@
1
1
  #!/usr/bin/env python3
2
2
  """
3
- #exonware/xwnode/src/exonware/xwnode/queries/executors/types.py
3
+ #exonware/xwnode/src/exonware/xwnode/queries/executors/defs.py
4
4
 
5
5
  Executor Types and Enums
6
6
 
7
7
  Module-specific types for query operation executors.
8
- Imports shared types from root types.py per DEV_GUIDELINES.md.
8
+ Imports shared types from root defs.py per DEV_GUIDELINES.md.
9
9
 
10
10
  Company: eXonware.com
11
11
  Author: Eng. Muhammad AlShehri
12
12
  Email: connect@exonware.com
13
- Version: 0.0.1.18
13
+ Version: 0.0.1.19
14
14
  Generation Date: 08-Oct-2025
15
15
  """
16
16
 
17
17
  from enum import Enum, Flag, auto
18
18
 
19
19
  # Import shared types from root
20
- from ...types import QueryMode, QueryTrait
20
+ from ...defs import QueryMode, QueryTrait
21
21
 
22
22
  # Import node type from nodes module
23
23
  from ...nodes.strategies.contracts import NodeType
@@ -10,7 +10,7 @@ with capability checking and routing.
10
10
  Company: eXonware.com
11
11
  Author: Eng. Muhammad AlShehri
12
12
  Email: connect@exonware.com
13
- Version: 0.0.1.18
13
+ Version: 0.0.1.19
14
14
  Generation Date: 08-Oct-2025
15
15
  """
16
16
 
@@ -10,7 +10,7 @@ Extends root error classes per DEV_GUIDELINES.md - no redundancy.
10
10
  Company: eXonware.com
11
11
  Author: Eng. Muhammad AlShehri
12
12
  Email: connect@exonware.com
13
- Version: 0.0.1.18
13
+ Version: 0.0.1.19
14
14
  Generation Date: 08-Oct-2025
15
15
  """
16
16
 
@@ -7,14 +7,14 @@ BETWEEN Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 08-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
  from ...nodes.strategies.contracts import NodeType
19
19
 
20
20
 
@@ -7,14 +7,14 @@ FILTER Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 08-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List, Callable
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
 
20
20
  class FilterExecutor(AUniversalOperationExecutor):
@@ -7,14 +7,14 @@ HAS Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 08-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
 
20
20
  class HasExecutor(AUniversalOperationExecutor):
@@ -7,14 +7,14 @@ IN Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 08-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
 
20
20
  class InExecutor(AUniversalOperationExecutor):
@@ -7,7 +7,7 @@ LIKE Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 08-Oct-2025
12
12
  """
13
13
 
@@ -15,7 +15,7 @@ import re
15
15
  from typing import Any, Dict, List
16
16
  from ..base import AUniversalOperationExecutor
17
17
  from ..contracts import Action, ExecutionContext, ExecutionResult
18
- from ..types import OperationType
18
+ from ..defs import OperationType
19
19
 
20
20
 
21
21
  class LikeExecutor(AUniversalOperationExecutor):
@@ -7,14 +7,14 @@ OPTIONAL Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.18
10
+ Version: 0.0.1.19
11
11
  Generation Date: 08-Oct-2025
12
12
  """
13
13
 
14
14
  from typing import Any, Dict, List
15
15
  from ..base import AUniversalOperationExecutor
16
16
  from ..contracts import Action, ExecutionContext, ExecutionResult
17
- from ..types import OperationType
17
+ from ..defs import OperationType
18
18
 
19
19
 
20
20
  class OptionalExecutor(AUniversalOperationExecutor):