pycarlo 0.10.157__py3-none-any.whl → 0.10.159__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 CHANGED
@@ -10758,7 +10758,7 @@
10758
10758
  },
10759
10759
  {
10760
10760
  "defaultValue": "false",
10761
- "description": "Return only columns for evaluation testing (prompts, completions)",
10761
+ "description": "Return evaluation test columns only (prompts, completions, span_id)",
10762
10762
  "name": "evaluationMode",
10763
10763
  "type": {
10764
10764
  "kind": "SCALAR",
@@ -10768,7 +10768,7 @@
10768
10768
  },
10769
10769
  {
10770
10770
  "defaultValue": "10",
10771
- "description": "Number of sample rows to return",
10771
+ "description": "Number of sample rows to return (max 100)",
10772
10772
  "name": "limit",
10773
10773
  "type": {
10774
10774
  "kind": "SCALAR",
@@ -10776,6 +10776,24 @@
10776
10776
  "ofType": null
10777
10777
  }
10778
10778
  },
10779
+ {
10780
+ "defaultValue": null,
10781
+ "description": "Filter by specific span IDs (<= limit)",
10782
+ "name": "spanIds",
10783
+ "type": {
10784
+ "kind": "LIST",
10785
+ "name": null,
10786
+ "ofType": {
10787
+ "kind": "NON_NULL",
10788
+ "name": null,
10789
+ "ofType": {
10790
+ "kind": "SCALAR",
10791
+ "name": "String",
10792
+ "ofType": null
10793
+ }
10794
+ }
10795
+ }
10796
+ },
10779
10797
  {
10780
10798
  "defaultValue": null,
10781
10799
  "description": "Connection UUID",
@@ -17833,6 +17851,71 @@
17833
17851
  }
17834
17852
  }
17835
17853
  },
17854
+ {
17855
+ "args": [
17856
+ {
17857
+ "defaultValue": null,
17858
+ "description": "The UUID identifying the data collector.",
17859
+ "name": "dcId",
17860
+ "type": {
17861
+ "kind": "NON_NULL",
17862
+ "name": null,
17863
+ "ofType": {
17864
+ "kind": "SCALAR",
17865
+ "name": "UUID",
17866
+ "ofType": null
17867
+ }
17868
+ }
17869
+ },
17870
+ {
17871
+ "defaultValue": null,
17872
+ "description": "The type of job (e.g., METADATA, QUERY_LOGS, BI_REPORTS).",
17873
+ "name": "jobType",
17874
+ "type": {
17875
+ "kind": "NON_NULL",
17876
+ "name": null,
17877
+ "ofType": {
17878
+ "kind": "ENUM",
17879
+ "name": "InternalJobType",
17880
+ "ofType": null
17881
+ }
17882
+ }
17883
+ },
17884
+ {
17885
+ "defaultValue": null,
17886
+ "description": "Connection type (e.g., snowflake, tableau).",
17887
+ "name": "connectionType",
17888
+ "type": {
17889
+ "kind": "NON_NULL",
17890
+ "name": null,
17891
+ "ofType": {
17892
+ "kind": "ENUM",
17893
+ "name": "ConnectionTypeEnum",
17894
+ "ofType": null
17895
+ }
17896
+ }
17897
+ },
17898
+ {
17899
+ "defaultValue": null,
17900
+ "description": "Optional, for transactional DB subtype (e.g., sap-hana). When provided, it will be used instead of connection_type.",
17901
+ "name": "connectionSubtype",
17902
+ "type": {
17903
+ "kind": "ENUM",
17904
+ "name": "ConnectionSubtypeEnum",
17905
+ "ofType": null
17906
+ }
17907
+ }
17908
+ ],
17909
+ "deprecationReason": null,
17910
+ "description": "(experimental) Get default job limits for a specific job type and connection type.",
17911
+ "isDeprecated": false,
17912
+ "name": "getCollectorJobLimits",
17913
+ "type": {
17914
+ "kind": "SCALAR",
17915
+ "name": "JSONString",
17916
+ "ofType": null
17917
+ }
17918
+ },
17836
17919
  {
17837
17920
  "args": [
17838
17921
  {
pycarlo/lib/schema.py CHANGED
@@ -43756,6 +43756,7 @@ class Query(sgqlc.types.Type):
43756
43756
  "evaluate_comparisons",
43757
43757
  "get_delta_logs",
43758
43758
  "get_job_schedules",
43759
+ "get_collector_job_limits",
43759
43760
  "get_data_assets_dashboard",
43760
43761
  "get_incident_dashboard_data",
43761
43762
  "get_incident_data_weekly",
@@ -49906,6 +49907,14 @@ class Query(sgqlc.types.Type):
49906
49907
  sgqlc.types.Arg(Boolean, graphql_name="evaluationMode", default=False),
49907
49908
  ),
49908
49909
  ("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=10)),
49910
+ (
49911
+ "span_ids",
49912
+ sgqlc.types.Arg(
49913
+ sgqlc.types.list_of(sgqlc.types.non_null(String)),
49914
+ graphql_name="spanIds",
49915
+ default=None,
49916
+ ),
49917
+ ),
49909
49918
  ("connection_id", sgqlc.types.Arg(UUID, graphql_name="connectionId", default=None)),
49910
49919
  )
49911
49920
  ),
@@ -49923,9 +49932,11 @@ class Query(sgqlc.types.Type):
49923
49932
  conditions to apply to query
49924
49933
  * `transforms` (`[TransformInput!]`): Transforms to apply to the
49925
49934
  data source
49926
- * `evaluation_mode` (`Boolean`): Return only columns for
49927
- evaluation testing (prompts, completions) (default: `false`)
49928
- * `limit` (`Int`): Number of sample rows to return (default: `10`)
49935
+ * `evaluation_mode` (`Boolean`): Return evaluation test columns
49936
+ only (prompts, completions, span_id) (default: `false`)
49937
+ * `limit` (`Int`): Number of sample rows to return (max 100)
49938
+ (default: `10`)
49939
+ * `span_ids` (`[String!]`): Filter by specific span IDs (<= limit)
49929
49940
  * `connection_id` (`UUID`): Connection UUID
49930
49941
  """
49931
49942
 
@@ -53893,6 +53904,53 @@ class Query(sgqlc.types.Type):
53893
53904
  (default: `false`)
53894
53905
  """
53895
53906
 
53907
+ get_collector_job_limits = sgqlc.types.Field(
53908
+ JSONString,
53909
+ graphql_name="getCollectorJobLimits",
53910
+ args=sgqlc.types.ArgDict(
53911
+ (
53912
+ (
53913
+ "dc_id",
53914
+ sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name="dcId", default=None),
53915
+ ),
53916
+ (
53917
+ "job_type",
53918
+ sgqlc.types.Arg(
53919
+ sgqlc.types.non_null(InternalJobType), graphql_name="jobType", default=None
53920
+ ),
53921
+ ),
53922
+ (
53923
+ "connection_type",
53924
+ sgqlc.types.Arg(
53925
+ sgqlc.types.non_null(ConnectionTypeEnum),
53926
+ graphql_name="connectionType",
53927
+ default=None,
53928
+ ),
53929
+ ),
53930
+ (
53931
+ "connection_subtype",
53932
+ sgqlc.types.Arg(
53933
+ ConnectionSubtypeEnum, graphql_name="connectionSubtype", default=None
53934
+ ),
53935
+ ),
53936
+ )
53937
+ ),
53938
+ )
53939
+ """(experimental) Get default job limits for a specific job type and
53940
+ connection type.
53941
+
53942
+ Arguments:
53943
+
53944
+ * `dc_id` (`UUID!`): The UUID identifying the data collector.
53945
+ * `job_type` (`InternalJobType!`): The type of job (e.g.,
53946
+ METADATA, QUERY_LOGS, BI_REPORTS).
53947
+ * `connection_type` (`ConnectionTypeEnum!`): Connection type
53948
+ (e.g., snowflake, tableau).
53949
+ * `connection_subtype` (`ConnectionSubtypeEnum`): Optional, for
53950
+ transactional DB subtype (e.g., sap-hana). When provided, it
53951
+ will be used instead of connection_type.
53952
+ """
53953
+
53896
53954
  get_data_assets_dashboard = sgqlc.types.Field(
53897
53955
  DataAssetDashboard,
53898
53956
  graphql_name="getDataAssetsDashboard",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.157
3
+ Version: 0.10.159
4
4
  Summary: Monte Carlo's Python SDK
5
5
  Home-page: https://www.montecarlodata.com/
6
6
  Author: Monte Carlo Data, Inc
@@ -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=WZQuZNHCIpgmzRfjCOgVtAuCHsRed1hbIkoOETxVI-0,6218420
39
- pycarlo/lib/schema.py,sha256=U7WXufGPXM4OkdlbAqQ7DYsrFlesDqojAu9LCEqGmbs,2698799
40
- pycarlo-0.10.157.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.157.dist-info/METADATA,sha256=V7uDdq2008Z-DSOSS2v2mirxlUuQZLqrY8xJeZZJRuE,8742
42
- pycarlo-0.10.157.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.157.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.157.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=ScJ1AwUURrBC-cypHD9v5mcy0UBKix6i448uKT_Is-Q,6221443
39
+ pycarlo/lib/schema.py,sha256=D3ZTPkGZti15pTvLP9R49z2GEhTLSdBLNqZ_lBKzrVU,2700902
40
+ pycarlo-0.10.159.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.159.dist-info/METADATA,sha256=ilgY5xF6dz3Su2yEuXa-3w8-golqk58KrEP0ZYjoa7U,8742
42
+ pycarlo-0.10.159.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.159.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.159.dist-info/RECORD,,