pycarlo 0.10.175__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
@@ -11209,15 +11209,29 @@
11209
11209
  "args": [
11210
11210
  {
11211
11211
  "defaultValue": null,
11212
- "description": "UUID of the table monitor",
11212
+ "description": "UUID of the table monitor (for single monitor mode). Cannot be used with monitor_uuids.",
11213
11213
  "name": "monitorUuid",
11214
11214
  "type": {
11215
- "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",
11216
11226
  "name": null,
11217
11227
  "ofType": {
11218
- "kind": "SCALAR",
11219
- "name": "UUID",
11220
- "ofType": null
11228
+ "kind": "NON_NULL",
11229
+ "name": null,
11230
+ "ofType": {
11231
+ "kind": "SCALAR",
11232
+ "name": "UUID",
11233
+ "ofType": null
11234
+ }
11221
11235
  }
11222
11236
  }
11223
11237
  },
pycarlo/lib/schema.py CHANGED
@@ -50609,10 +50609,13 @@ class Query(sgqlc.types.Type):
50609
50609
  graphql_name="getTableMonitorCoverage",
50610
50610
  args=sgqlc.types.ArgDict(
50611
50611
  (
50612
+ ("monitor_uuid", sgqlc.types.Arg(UUID, graphql_name="monitorUuid", default=None)),
50612
50613
  (
50613
- "monitor_uuid",
50614
+ "monitor_uuids",
50614
50615
  sgqlc.types.Arg(
50615
- 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,
50616
50619
  ),
50617
50620
  ),
50618
50621
  ("search", sgqlc.types.Arg(String, graphql_name="search", default=None)),
@@ -50627,7 +50630,10 @@ class Query(sgqlc.types.Type):
50627
50630
 
50628
50631
  Arguments:
50629
50632
 
50630
- * `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.
50631
50637
  * `search` (`String`): Search for tables by name, database, or
50632
50638
  schema (case-insensitive substring match)
50633
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.175
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=pFIhtPYapQdGz6Y5R3UoXEg9ksNCsWwJsfMf7df4flM,6272567
39
- pycarlo/lib/schema.py,sha256=DVUWlqR_VL7qBdU_8F8ZCsVQlPxh5gEQhiO1HnPEFBE,2726878
40
- pycarlo-0.10.175.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.175.dist-info/METADATA,sha256=h3pMrcUY-Hzs-pOx6g9Vt7-2yDMT3OZVWBoQYGaudtA,8742
42
- pycarlo-0.10.175.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.175.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.175.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,,