exonware-xwnode 0.0.1.17__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.
- exonware/__init__.py +1 -1
- exonware/xwnode/__init__.py +1 -1
- exonware/xwnode/common/__init__.py +1 -1
- exonware/xwnode/common/management/__init__.py +1 -1
- exonware/xwnode/common/management/manager.py +2 -2
- exonware/xwnode/common/management/migration.py +1 -1
- exonware/xwnode/common/monitoring/__init__.py +1 -1
- exonware/xwnode/common/monitoring/metrics.py +2 -2
- exonware/xwnode/common/monitoring/pattern_detector.py +2 -2
- exonware/xwnode/common/monitoring/performance_monitor.py +2 -2
- exonware/xwnode/common/patterns/__init__.py +1 -1
- exonware/xwnode/common/patterns/advisor.py +1 -1
- exonware/xwnode/common/patterns/flyweight.py +2 -2
- exonware/xwnode/common/patterns/registry.py +1 -1
- exonware/xwnode/common/utils/__init__.py +1 -1
- exonware/xwnode/contracts.py +3 -3
- exonware/xwnode/edges/strategies/__init__.py +1 -1
- exonware/xwnode/edges/strategies/_base_edge.py +1 -1
- exonware/xwnode/edges/strategies/adj_list.py +1 -1
- exonware/xwnode/edges/strategies/adj_matrix.py +1 -1
- exonware/xwnode/edges/strategies/base.py +1 -1
- exonware/xwnode/edges/strategies/edge_adj_list.py +1 -1
- exonware/xwnode/edges/strategies/edge_adj_matrix.py +1 -1
- exonware/xwnode/edges/strategies/edge_bidir_wrapper.py +1 -1
- exonware/xwnode/edges/strategies/edge_block_adj_matrix.py +1 -1
- exonware/xwnode/edges/strategies/edge_coo.py +1 -1
- exonware/xwnode/edges/strategies/edge_csc.py +1 -1
- exonware/xwnode/edges/strategies/edge_csr.py +1 -1
- exonware/xwnode/edges/strategies/edge_dynamic_adj_list.py +1 -1
- exonware/xwnode/edges/strategies/edge_flow_network.py +1 -1
- exonware/xwnode/edges/strategies/edge_hyperedge_set.py +1 -1
- exonware/xwnode/edges/strategies/edge_neural_graph.py +1 -1
- exonware/xwnode/edges/strategies/edge_octree.py +1 -1
- exonware/xwnode/edges/strategies/edge_property_store.py +1 -1
- exonware/xwnode/edges/strategies/edge_quadtree.py +1 -1
- exonware/xwnode/edges/strategies/edge_rtree.py +1 -1
- exonware/xwnode/edges/strategies/edge_temporal_edgeset.py +1 -1
- exonware/xwnode/edges/strategies/edge_tree_graph_basic.py +1 -1
- exonware/xwnode/edges/strategies/edge_weighted_graph.py +1 -1
- exonware/xwnode/errors.py +1 -1
- exonware/xwnode/facade.py +3 -3
- exonware/xwnode/nodes/strategies/__init__.py +1 -1
- exonware/xwnode/nodes/strategies/_base_node.py +1 -1
- exonware/xwnode/nodes/strategies/adjacency_list.py +2 -2
- exonware/xwnode/nodes/strategies/aho_corasick.py +1 -1
- exonware/xwnode/nodes/strategies/array_list.py +1 -1
- exonware/xwnode/nodes/strategies/base.py +1 -1
- exonware/xwnode/nodes/strategies/contracts.py +1 -1
- exonware/xwnode/nodes/strategies/deque.py +2 -2
- exonware/xwnode/nodes/strategies/hash_map.py +1 -1
- exonware/xwnode/nodes/strategies/heap.py +1 -1
- exonware/xwnode/nodes/strategies/linked_list.py +1 -1
- exonware/xwnode/nodes/strategies/node_aho_corasick.py +1 -1
- exonware/xwnode/nodes/strategies/node_array_list.py +1 -1
- exonware/xwnode/nodes/strategies/node_avl_tree.py +1 -1
- exonware/xwnode/nodes/strategies/node_b_plus_tree.py +1 -1
- exonware/xwnode/nodes/strategies/node_bitmap.py +1 -1
- exonware/xwnode/nodes/strategies/node_bitset_dynamic.py +1 -1
- exonware/xwnode/nodes/strategies/node_bloom_filter.py +1 -1
- exonware/xwnode/nodes/strategies/node_btree.py +1 -1
- exonware/xwnode/nodes/strategies/node_count_min_sketch.py +1 -1
- exonware/xwnode/nodes/strategies/node_cow_tree.py +1 -1
- exonware/xwnode/nodes/strategies/node_cuckoo_hash.py +1 -1
- exonware/xwnode/nodes/strategies/node_fenwick_tree.py +1 -1
- exonware/xwnode/nodes/strategies/node_hash_map.py +1 -1
- exonware/xwnode/nodes/strategies/node_heap.py +1 -1
- exonware/xwnode/nodes/strategies/node_hyperloglog.py +1 -1
- exonware/xwnode/nodes/strategies/node_linked_list.py +1 -1
- exonware/xwnode/nodes/strategies/node_lsm_tree.py +1 -1
- exonware/xwnode/nodes/strategies/node_ordered_map.py +1 -1
- exonware/xwnode/nodes/strategies/node_ordered_map_balanced.py +1 -1
- exonware/xwnode/nodes/strategies/node_patricia.py +1 -1
- exonware/xwnode/nodes/strategies/node_persistent_tree.py +1 -1
- exonware/xwnode/nodes/strategies/node_radix_trie.py +1 -1
- exonware/xwnode/nodes/strategies/node_red_black_tree.py +1 -1
- exonware/xwnode/nodes/strategies/node_roaring_bitmap.py +1 -1
- exonware/xwnode/nodes/strategies/node_segment_tree.py +1 -1
- exonware/xwnode/nodes/strategies/node_set_hash.py +1 -1
- exonware/xwnode/nodes/strategies/node_set_tree.py +1 -1
- exonware/xwnode/nodes/strategies/node_skip_list.py +1 -1
- exonware/xwnode/nodes/strategies/node_splay_tree.py +1 -1
- exonware/xwnode/nodes/strategies/node_suffix_array.py +1 -1
- exonware/xwnode/nodes/strategies/node_treap.py +1 -1
- exonware/xwnode/nodes/strategies/node_tree_graph_hybrid.py +1 -1
- exonware/xwnode/nodes/strategies/node_trie.py +1 -1
- exonware/xwnode/nodes/strategies/node_union_find.py +1 -1
- exonware/xwnode/nodes/strategies/node_xdata_optimized.py +1 -1
- exonware/xwnode/nodes/strategies/priority_queue.py +2 -2
- exonware/xwnode/nodes/strategies/queue.py +2 -2
- exonware/xwnode/nodes/strategies/sparse_matrix.py +2 -2
- exonware/xwnode/nodes/strategies/stack.py +2 -2
- exonware/xwnode/nodes/strategies/trie.py +1 -1
- exonware/xwnode/nodes/strategies/union_find.py +1 -1
- exonware/xwnode/queries/executors/__init__.py +2 -2
- exonware/xwnode/queries/executors/advanced/aggregate_executor.py +2 -2
- exonware/xwnode/queries/executors/advanced/ask_executor.py +2 -2
- exonware/xwnode/queries/executors/advanced/construct_executor.py +2 -2
- exonware/xwnode/queries/executors/advanced/describe_executor.py +2 -2
- exonware/xwnode/queries/executors/advanced/for_loop_executor.py +2 -2
- exonware/xwnode/queries/executors/advanced/foreach_executor.py +2 -2
- exonware/xwnode/queries/executors/advanced/join_executor.py +2 -2
- exonware/xwnode/queries/executors/advanced/let_executor.py +2 -2
- exonware/xwnode/queries/executors/advanced/mutation_executor.py +2 -2
- exonware/xwnode/queries/executors/advanced/options_executor.py +2 -2
- exonware/xwnode/queries/executors/advanced/pipe_executor.py +2 -2
- exonware/xwnode/queries/executors/advanced/subscribe_executor.py +2 -2
- exonware/xwnode/queries/executors/advanced/subscription_executor.py +2 -2
- exonware/xwnode/queries/executors/advanced/union_executor.py +2 -2
- exonware/xwnode/queries/executors/advanced/window_executor.py +2 -2
- exonware/xwnode/queries/executors/advanced/with_cte_executor.py +2 -2
- exonware/xwnode/queries/executors/aggregation/avg_executor.py +2 -2
- exonware/xwnode/queries/executors/aggregation/count_executor.py +1 -1
- exonware/xwnode/queries/executors/aggregation/distinct_executor.py +2 -2
- exonware/xwnode/queries/executors/aggregation/group_executor.py +2 -2
- exonware/xwnode/queries/executors/aggregation/having_executor.py +2 -2
- exonware/xwnode/queries/executors/aggregation/max_executor.py +2 -2
- exonware/xwnode/queries/executors/aggregation/min_executor.py +2 -2
- exonware/xwnode/queries/executors/aggregation/sum_executor.py +2 -2
- exonware/xwnode/queries/executors/aggregation/summarize_executor.py +2 -2
- exonware/xwnode/queries/executors/array/indexing_executor.py +2 -2
- exonware/xwnode/queries/executors/array/slicing_executor.py +2 -2
- exonware/xwnode/queries/executors/base.py +2 -2
- exonware/xwnode/queries/executors/capability_checker.py +1 -1
- exonware/xwnode/queries/executors/contracts.py +2 -2
- exonware/xwnode/queries/executors/core/create_executor.py +2 -2
- exonware/xwnode/queries/executors/core/delete_executor.py +2 -2
- exonware/xwnode/queries/executors/core/drop_executor.py +2 -2
- exonware/xwnode/queries/executors/core/insert_executor.py +1 -1
- exonware/xwnode/queries/executors/core/select_executor.py +2 -2
- exonware/xwnode/queries/executors/core/update_executor.py +2 -2
- exonware/xwnode/queries/executors/data/alter_executor.py +2 -2
- exonware/xwnode/queries/executors/data/load_executor.py +2 -2
- exonware/xwnode/queries/executors/data/merge_executor.py +2 -2
- exonware/xwnode/queries/executors/data/store_executor.py +2 -2
- exonware/xwnode/queries/executors/{types.py → defs.py} +4 -4
- exonware/xwnode/queries/executors/engine.py +1 -1
- exonware/xwnode/queries/executors/errors.py +1 -1
- exonware/xwnode/queries/executors/filtering/between_executor.py +2 -2
- exonware/xwnode/queries/executors/filtering/filter_executor.py +2 -2
- exonware/xwnode/queries/executors/filtering/has_executor.py +2 -2
- exonware/xwnode/queries/executors/filtering/in_executor.py +2 -2
- exonware/xwnode/queries/executors/filtering/like_executor.py +2 -2
- exonware/xwnode/queries/executors/filtering/optional_executor.py +2 -2
- exonware/xwnode/queries/executors/filtering/range_executor.py +2 -2
- exonware/xwnode/queries/executors/filtering/term_executor.py +2 -2
- exonware/xwnode/queries/executors/filtering/values_executor.py +2 -2
- exonware/xwnode/queries/executors/filtering/where_executor.py +1 -1
- exonware/xwnode/queries/executors/graph/in_traverse_executor.py +2 -2
- exonware/xwnode/queries/executors/graph/match_executor.py +2 -2
- exonware/xwnode/queries/executors/graph/out_executor.py +2 -2
- exonware/xwnode/queries/executors/graph/path_executor.py +2 -2
- exonware/xwnode/queries/executors/graph/return_executor.py +2 -2
- exonware/xwnode/queries/executors/ordering/by_executor.py +2 -2
- exonware/xwnode/queries/executors/ordering/order_executor.py +2 -2
- exonware/xwnode/queries/executors/projection/extend_executor.py +2 -2
- exonware/xwnode/queries/executors/projection/project_executor.py +2 -2
- exonware/xwnode/queries/executors/registry.py +1 -1
- exonware/xwnode/queries/parsers/__init__.py +1 -1
- exonware/xwnode/queries/parsers/base.py +1 -1
- exonware/xwnode/queries/parsers/contracts.py +1 -1
- exonware/xwnode/queries/parsers/errors.py +1 -1
- exonware/xwnode/queries/parsers/sql_param_extractor.py +1 -1
- exonware/xwnode/queries/strategies/__init__.py +1 -1
- exonware/xwnode/queries/strategies/base.py +1 -1
- exonware/xwnode/queries/strategies/cql.py +1 -1
- exonware/xwnode/queries/strategies/cypher.py +1 -1
- exonware/xwnode/queries/strategies/datalog.py +1 -1
- exonware/xwnode/queries/strategies/elastic_dsl.py +1 -1
- exonware/xwnode/queries/strategies/eql.py +1 -1
- exonware/xwnode/queries/strategies/flux.py +1 -1
- exonware/xwnode/queries/strategies/gql.py +1 -1
- exonware/xwnode/queries/strategies/graphql.py +1 -1
- exonware/xwnode/queries/strategies/gremlin.py +1 -1
- exonware/xwnode/queries/strategies/hiveql.py +1 -1
- exonware/xwnode/queries/strategies/hql.py +1 -1
- exonware/xwnode/queries/strategies/jmespath.py +1 -1
- exonware/xwnode/queries/strategies/jq.py +1 -1
- exonware/xwnode/queries/strategies/json_query.py +1 -1
- exonware/xwnode/queries/strategies/jsoniq.py +1 -1
- exonware/xwnode/queries/strategies/kql.py +1 -1
- exonware/xwnode/queries/strategies/linq.py +1 -1
- exonware/xwnode/queries/strategies/logql.py +1 -1
- exonware/xwnode/queries/strategies/mql.py +1 -1
- exonware/xwnode/queries/strategies/n1ql.py +1 -1
- exonware/xwnode/queries/strategies/partiql.py +1 -1
- exonware/xwnode/queries/strategies/pig.py +1 -1
- exonware/xwnode/queries/strategies/promql.py +1 -1
- exonware/xwnode/queries/strategies/sparql.py +1 -1
- exonware/xwnode/queries/strategies/sql.py +1 -1
- exonware/xwnode/queries/strategies/xml_query.py +1 -1
- exonware/xwnode/queries/strategies/xpath.py +1 -1
- exonware/xwnode/queries/strategies/xquery.py +1 -1
- exonware/xwnode/queries/strategies/xwnode_executor.py +1 -1
- exonware/xwnode/queries/strategies/xwquery.py +1 -1
- exonware/xwnode/strategies/__init__.py +2 -2
- exonware/xwnode/version.py +3 -3
- {exonware_xwnode-0.0.1.17.dist-info → exonware_xwnode-0.0.1.19.dist-info}/METADATA +2 -2
- exonware_xwnode-0.0.1.19.dist-info/RECORD +214 -0
- exonware_xwnode-0.0.1.17.dist-info/RECORD +0 -214
- /exonware/xwnode/{types.py → defs.py} +0 -0
- {exonware_xwnode-0.0.1.17.dist-info → exonware_xwnode-0.0.1.19.dist-info}/WHEEL +0 -0
- {exonware_xwnode-0.0.1.17.dist-info → exonware_xwnode-0.0.1.19.dist-info}/licenses/LICENSE +0 -0
@@ -7,14 +7,14 @@ RANGE Executor
|
|
7
7
|
Company: eXonware.com
|
8
8
|
Author: Eng. Muhammad AlShehri
|
9
9
|
Email: connect@exonware.com
|
10
|
-
Version: 0.0.1.
|
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 ..
|
17
|
+
from ..defs import OperationType
|
18
18
|
from ...nodes.strategies.contracts import NodeType
|
19
19
|
|
20
20
|
|
@@ -7,14 +7,14 @@ TERM Executor
|
|
7
7
|
Company: eXonware.com
|
8
8
|
Author: Eng. Muhammad AlShehri
|
9
9
|
Email: connect@exonware.com
|
10
|
-
Version: 0.0.1.
|
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 ..
|
17
|
+
from ..defs import OperationType
|
18
18
|
|
19
19
|
|
20
20
|
class TermExecutor(AUniversalOperationExecutor):
|
@@ -7,14 +7,14 @@ VALUES Executor
|
|
7
7
|
Company: eXonware.com
|
8
8
|
Author: Eng. Muhammad AlShehri
|
9
9
|
Email: connect@exonware.com
|
10
|
-
Version: 0.0.1.
|
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 ..
|
17
|
+
from ..defs import OperationType
|
18
18
|
|
19
19
|
|
20
20
|
class ValuesExecutor(AUniversalOperationExecutor):
|
@@ -7,14 +7,14 @@ IN_TRAVERSE Executor
|
|
7
7
|
Company: eXonware.com
|
8
8
|
Author: Eng. Muhammad AlShehri
|
9
9
|
Email: connect@exonware.com
|
10
|
-
Version: 0.0.1.
|
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 ..
|
17
|
+
from ..defs import OperationType
|
18
18
|
from ...nodes.strategies.contracts import NodeType
|
19
19
|
|
20
20
|
class InTraverseExecutor(AOperationExecutor):
|
@@ -7,14 +7,14 @@ MATCH Executor
|
|
7
7
|
Company: eXonware.com
|
8
8
|
Author: Eng. Muhammad AlShehri
|
9
9
|
Email: connect@exonware.com
|
10
|
-
Version: 0.0.1.
|
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 ..
|
17
|
+
from ..defs import OperationType
|
18
18
|
from ...nodes.strategies.contracts import NodeType
|
19
19
|
|
20
20
|
class MatchExecutor(AOperationExecutor):
|
@@ -7,14 +7,14 @@ OUT Executor
|
|
7
7
|
Company: eXonware.com
|
8
8
|
Author: Eng. Muhammad AlShehri
|
9
9
|
Email: connect@exonware.com
|
10
|
-
Version: 0.0.1.
|
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 ..
|
17
|
+
from ..defs import OperationType
|
18
18
|
from ...nodes.strategies.contracts import NodeType
|
19
19
|
|
20
20
|
class OutExecutor(AOperationExecutor):
|
@@ -7,14 +7,14 @@ PATH Executor
|
|
7
7
|
Company: eXonware.com
|
8
8
|
Author: Eng. Muhammad AlShehri
|
9
9
|
Email: connect@exonware.com
|
10
|
-
Version: 0.0.1.
|
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 ..
|
17
|
+
from ..defs import OperationType
|
18
18
|
from ...nodes.strategies.contracts import NodeType
|
19
19
|
|
20
20
|
class PathExecutor(AOperationExecutor):
|
@@ -7,14 +7,14 @@ RETURN Executor
|
|
7
7
|
Company: eXonware.com
|
8
8
|
Author: Eng. Muhammad AlShehri
|
9
9
|
Email: connect@exonware.com
|
10
|
-
Version: 0.0.1.
|
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 ..
|
17
|
+
from ..defs import OperationType
|
18
18
|
from ...nodes.strategies.contracts import NodeType
|
19
19
|
|
20
20
|
class ReturnExecutor(AOperationExecutor):
|
@@ -7,14 +7,14 @@ BY Executor
|
|
7
7
|
Company: eXonware.com
|
8
8
|
Author: Eng. Muhammad AlShehri
|
9
9
|
Email: connect@exonware.com
|
10
|
-
Version: 0.0.1.
|
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 ..
|
17
|
+
from ..defs import OperationType
|
18
18
|
|
19
19
|
class ByExecutor(AUniversalOperationExecutor):
|
20
20
|
"""
|
@@ -7,14 +7,14 @@ ORDER Executor
|
|
7
7
|
Company: eXonware.com
|
8
8
|
Author: Eng. Muhammad AlShehri
|
9
9
|
Email: connect@exonware.com
|
10
|
-
Version: 0.0.1.
|
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 ..
|
17
|
+
from ..defs import OperationType
|
18
18
|
from ...nodes.strategies.contracts import NodeType
|
19
19
|
|
20
20
|
class OrderExecutor(AOperationExecutor):
|
@@ -7,14 +7,14 @@ EXTEND Executor
|
|
7
7
|
Company: eXonware.com
|
8
8
|
Author: Eng. Muhammad AlShehri
|
9
9
|
Email: connect@exonware.com
|
10
|
-
Version: 0.0.1.
|
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 ..
|
17
|
+
from ..defs import OperationType
|
18
18
|
|
19
19
|
class ExtendExecutor(AUniversalOperationExecutor):
|
20
20
|
"""
|
@@ -7,14 +7,14 @@ PROJECT Executor
|
|
7
7
|
Company: eXonware.com
|
8
8
|
Author: Eng. Muhammad AlShehri
|
9
9
|
Email: connect@exonware.com
|
10
|
-
Version: 0.0.1.
|
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 ..
|
17
|
+
from ..defs import OperationType
|
18
18
|
|
19
19
|
class ProjectExecutor(AUniversalOperationExecutor):
|
20
20
|
"""
|
@@ -15,11 +15,11 @@ This package implements the enhanced strategy system with xwsystem-inspired opti
|
|
15
15
|
Company: eXonware.com
|
16
16
|
Author: Eng. Muhammad AlShehri
|
17
17
|
Email: connect@exonware.com
|
18
|
-
Version: 0.0.1.
|
18
|
+
Version: 0.0.1.19
|
19
19
|
Generation Date: 07-Sep-2025
|
20
20
|
"""
|
21
21
|
|
22
|
-
from ..
|
22
|
+
from ..defs import (
|
23
23
|
NodeMode, EdgeMode, QueryMode, NodeTrait, EdgeTrait, QueryTrait,
|
24
24
|
AUTO, LEGACY, HASH_MAP, ORDERED_MAP, ORDERED_MAP_BALANCED,
|
25
25
|
ARRAY_LIST, LINKED_LIST, TRIE, RADIX_TRIE, PATRICIA,
|