pycarlo 0.10.148__py3-none-any.whl → 0.10.149__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.
Potentially problematic release.
This version of pycarlo might be problematic. Click here for more details.
- pycarlo/lib/schema.json +46 -0
- pycarlo/lib/schema.py +26 -0
- {pycarlo-0.10.148.dist-info → pycarlo-0.10.149.dist-info}/METADATA +1 -1
- {pycarlo-0.10.148.dist-info → pycarlo-0.10.149.dist-info}/RECORD +7 -7
- {pycarlo-0.10.148.dist-info → pycarlo-0.10.149.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.148.dist-info → pycarlo-0.10.149.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.148.dist-info → pycarlo-0.10.149.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -10822,6 +10822,52 @@
|
|
|
10822
10822
|
"name": "UUID",
|
|
10823
10823
|
"ofType": null
|
|
10824
10824
|
}
|
|
10825
|
+
},
|
|
10826
|
+
{
|
|
10827
|
+
"defaultValue": null,
|
|
10828
|
+
"description": "Transforms to apply to the data source",
|
|
10829
|
+
"name": "transforms",
|
|
10830
|
+
"type": {
|
|
10831
|
+
"kind": "LIST",
|
|
10832
|
+
"name": null,
|
|
10833
|
+
"ofType": {
|
|
10834
|
+
"kind": "NON_NULL",
|
|
10835
|
+
"name": null,
|
|
10836
|
+
"ofType": {
|
|
10837
|
+
"kind": "INPUT_OBJECT",
|
|
10838
|
+
"name": "TransformInput",
|
|
10839
|
+
"ofType": null
|
|
10840
|
+
}
|
|
10841
|
+
}
|
|
10842
|
+
}
|
|
10843
|
+
},
|
|
10844
|
+
{
|
|
10845
|
+
"defaultValue": null,
|
|
10846
|
+
"description": "Structured SQL filtering conditions to apply to query",
|
|
10847
|
+
"name": "filters",
|
|
10848
|
+
"type": {
|
|
10849
|
+
"kind": "INPUT_OBJECT",
|
|
10850
|
+
"name": "FilterGroupInput",
|
|
10851
|
+
"ofType": null
|
|
10852
|
+
}
|
|
10853
|
+
},
|
|
10854
|
+
{
|
|
10855
|
+
"defaultValue": null,
|
|
10856
|
+
"description": "Filter by agent span fields (agent, workflow, task, span_name)",
|
|
10857
|
+
"name": "agentSpanFilters",
|
|
10858
|
+
"type": {
|
|
10859
|
+
"kind": "LIST",
|
|
10860
|
+
"name": null,
|
|
10861
|
+
"ofType": {
|
|
10862
|
+
"kind": "NON_NULL",
|
|
10863
|
+
"name": null,
|
|
10864
|
+
"ofType": {
|
|
10865
|
+
"kind": "INPUT_OBJECT",
|
|
10866
|
+
"name": "AgentSpanFilterInput",
|
|
10867
|
+
"ofType": null
|
|
10868
|
+
}
|
|
10869
|
+
}
|
|
10870
|
+
}
|
|
10825
10871
|
}
|
|
10826
10872
|
],
|
|
10827
10873
|
"deprecationReason": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -49895,6 +49895,26 @@ class Query(sgqlc.types.Type):
|
|
|
49895
49895
|
),
|
|
49896
49896
|
),
|
|
49897
49897
|
("connection_id", sgqlc.types.Arg(UUID, graphql_name="connectionId", default=None)),
|
|
49898
|
+
(
|
|
49899
|
+
"transforms",
|
|
49900
|
+
sgqlc.types.Arg(
|
|
49901
|
+
sgqlc.types.list_of(sgqlc.types.non_null(TransformInput)),
|
|
49902
|
+
graphql_name="transforms",
|
|
49903
|
+
default=None,
|
|
49904
|
+
),
|
|
49905
|
+
),
|
|
49906
|
+
(
|
|
49907
|
+
"filters",
|
|
49908
|
+
sgqlc.types.Arg(FilterGroupInput, graphql_name="filters", default=None),
|
|
49909
|
+
),
|
|
49910
|
+
(
|
|
49911
|
+
"agent_span_filters",
|
|
49912
|
+
sgqlc.types.Arg(
|
|
49913
|
+
sgqlc.types.list_of(sgqlc.types.non_null(AgentSpanFilterInput)),
|
|
49914
|
+
graphql_name="agentSpanFilters",
|
|
49915
|
+
default=None,
|
|
49916
|
+
),
|
|
49917
|
+
),
|
|
49898
49918
|
)
|
|
49899
49919
|
),
|
|
49900
49920
|
)
|
|
@@ -49904,6 +49924,12 @@ class Query(sgqlc.types.Type):
|
|
|
49904
49924
|
|
|
49905
49925
|
* `mcon` (`String!`): MCON to evaluate
|
|
49906
49926
|
* `connection_id` (`UUID`): Connection UUID
|
|
49927
|
+
* `transforms` (`[TransformInput!]`): Transforms to apply to the
|
|
49928
|
+
data source
|
|
49929
|
+
* `filters` (`FilterGroupInput`): Structured SQL filtering
|
|
49930
|
+
conditions to apply to query
|
|
49931
|
+
* `agent_span_filters` (`[AgentSpanFilterInput!]`): Filter by
|
|
49932
|
+
agent span fields (agent, workflow, task, span_name)
|
|
49907
49933
|
"""
|
|
49908
49934
|
|
|
49909
49935
|
get_job_execution_history_logs = sgqlc.types.Field(
|
|
@@ -35,10 +35,10 @@ pycarlo/features/user/queries.py,sha256=m97RvM0oiBlrU5xmOwe_JJ5N0G0NG5hIOeyQqN2O
|
|
|
35
35
|
pycarlo/features/user/service.py,sha256=DHkhuonySaHro07NTd0YNe3cNkDk62CiRTY77dhVaMs,2890
|
|
36
36
|
pycarlo/lib/README.md,sha256=QGNeUefPzLKGyZqn5aITpcFgkC9WQTNS292BGisRFHk,139
|
|
37
37
|
pycarlo/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
pycarlo/lib/schema.json,sha256=
|
|
39
|
-
pycarlo/lib/schema.py,sha256=
|
|
40
|
-
pycarlo-0.10.
|
|
41
|
-
pycarlo-0.10.
|
|
42
|
-
pycarlo-0.10.
|
|
43
|
-
pycarlo-0.10.
|
|
44
|
-
pycarlo-0.10.
|
|
38
|
+
pycarlo/lib/schema.json,sha256=Q4MvcgUsJhoDABLmPLGI9WB-D8iI7Fm_wYzxrPh-Hc0,6211724
|
|
39
|
+
pycarlo/lib/schema.py,sha256=UmDURLZJQOYa-qk68ijTwx7f2ABoBQe8EE3PXndVTs8,2696213
|
|
40
|
+
pycarlo-0.10.149.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.149.dist-info/METADATA,sha256=g4J5I3Kv75aM-zGMFuBXW6MUFXPIOL2j1ZtM44MHnfU,8742
|
|
42
|
+
pycarlo-0.10.149.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.149.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.149.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|