pycarlo 0.10.174__py3-none-any.whl → 0.10.176__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
@@ -1048,16 +1048,20 @@
1048
1048
  {
1049
1049
  "args": [],
1050
1050
  "deprecationReason": null,
1051
- "description": "(experimental) gets all available transform functions",
1051
+ "description": "(experimental) Gets all available transform functions",
1052
1052
  "isDeprecated": false,
1053
1053
  "name": "getTransformFunctions",
1054
1054
  "type": {
1055
1055
  "kind": "LIST",
1056
1056
  "name": null,
1057
1057
  "ofType": {
1058
- "kind": "OBJECT",
1059
- "name": "TransformFunction",
1060
- "ofType": null
1058
+ "kind": "NON_NULL",
1059
+ "name": null,
1060
+ "ofType": {
1061
+ "kind": "OBJECT",
1062
+ "name": "TransformFunction",
1063
+ "ofType": null
1064
+ }
1061
1065
  }
1062
1066
  }
1063
1067
  },
@@ -11205,15 +11209,29 @@
11205
11209
  "args": [
11206
11210
  {
11207
11211
  "defaultValue": null,
11208
- "description": "UUID of the table monitor",
11212
+ "description": "UUID of the table monitor (for single monitor mode). Cannot be used with monitor_uuids.",
11209
11213
  "name": "monitorUuid",
11210
11214
  "type": {
11211
- "kind": "NON_NULL",
11215
+ "kind": "SCALAR",
11216
+ "name": "UUID",
11217
+ "ofType": null
11218
+ }
11219
+ },
11220
+ {
11221
+ "defaultValue": null,
11222
+ "description": "List of table monitor UUIDs (for bulk deletion mode). Cannot be used with monitor_uuid.",
11223
+ "name": "monitorUuids",
11224
+ "type": {
11225
+ "kind": "LIST",
11212
11226
  "name": null,
11213
11227
  "ofType": {
11214
- "kind": "SCALAR",
11215
- "name": "UUID",
11216
- "ofType": null
11228
+ "kind": "NON_NULL",
11229
+ "name": null,
11230
+ "ofType": {
11231
+ "kind": "SCALAR",
11232
+ "name": "UUID",
11233
+ "ofType": null
11234
+ }
11217
11235
  }
11218
11236
  }
11219
11237
  },
pycarlo/lib/schema.py CHANGED
@@ -44968,9 +44968,10 @@ class Query(sgqlc.types.Type):
44968
44968
  )
44969
44969
 
44970
44970
  get_transform_functions = sgqlc.types.Field(
44971
- sgqlc.types.list_of("TransformFunction"), graphql_name="getTransformFunctions"
44971
+ sgqlc.types.list_of(sgqlc.types.non_null("TransformFunction")),
44972
+ graphql_name="getTransformFunctions",
44972
44973
  )
44973
- """(experimental) gets all available transform functions"""
44974
+ """(experimental) Gets all available transform functions"""
44974
44975
 
44975
44976
  run_custom_query = sgqlc.types.Field(
44976
44977
  "SQLResponse",
@@ -50608,10 +50609,13 @@ class Query(sgqlc.types.Type):
50608
50609
  graphql_name="getTableMonitorCoverage",
50609
50610
  args=sgqlc.types.ArgDict(
50610
50611
  (
50612
+ ("monitor_uuid", sgqlc.types.Arg(UUID, graphql_name="monitorUuid", default=None)),
50611
50613
  (
50612
- "monitor_uuid",
50614
+ "monitor_uuids",
50613
50615
  sgqlc.types.Arg(
50614
- sgqlc.types.non_null(UUID), graphql_name="monitorUuid", default=None
50616
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
50617
+ graphql_name="monitorUuids",
50618
+ default=None,
50615
50619
  ),
50616
50620
  ),
50617
50621
  ("search", sgqlc.types.Arg(String, graphql_name="search", default=None)),
@@ -50626,7 +50630,10 @@ class Query(sgqlc.types.Type):
50626
50630
 
50627
50631
  Arguments:
50628
50632
 
50629
- * `monitor_uuid` (`UUID!`): UUID of the table monitor
50633
+ * `monitor_uuid` (`UUID`): UUID of the table monitor (for single
50634
+ monitor mode). Cannot be used with monitor_uuids.
50635
+ * `monitor_uuids` (`[UUID!]`): List of table monitor UUIDs (for
50636
+ bulk deletion mode). Cannot be used with monitor_uuid.
50630
50637
  * `search` (`String`): Search for tables by name, database, or
50631
50638
  schema (case-insensitive substring match)
50632
50639
  * `monitors_search` (`String`): Search for monitors by description
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.174
3
+ Version: 0.10.176
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=XGVCz7krUzxeVekbRDMKsevazg0BXBmBN97DRDfN8l0,6272441
39
- pycarlo/lib/schema.py,sha256=SaltGtj53QUNVnxPezeko_DbXm-V_ZZVzF7rOpcxOW8,2726847
40
- pycarlo-0.10.174.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.174.dist-info/METADATA,sha256=moi7Oj8G6k_2uoRuHhOTwsfnp2DdT-qSAg2yJe4_mTA,8742
42
- pycarlo-0.10.174.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.174.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.174.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=46XBbDKJMulA3xHO4czX9yJAg7yGLhD4kSBwSWXDoFY,6273167
39
+ pycarlo/lib/schema.py,sha256=cMiNHpUN-IDGH77hmkMh8TnOGwFQNqrhpqcjIXw9YAs,2727245
40
+ pycarlo-0.10.176.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.176.dist-info/METADATA,sha256=US3Uqkv3RLp2Qmwk_Yyepa2BRs_SAphd-QKjwLunkVw,8742
42
+ pycarlo-0.10.176.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.176.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.176.dist-info/RECORD,,