pycarlo 0.10.62__py3-none-any.whl → 0.10.63__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
@@ -85228,6 +85228,18 @@
85228
85228
  }
85229
85229
  }
85230
85230
  },
85231
+ {
85232
+ "args": [],
85233
+ "deprecationReason": null,
85234
+ "description": "",
85235
+ "isDeprecated": false,
85236
+ "name": "deletedAt",
85237
+ "type": {
85238
+ "kind": "SCALAR",
85239
+ "name": "DateTime",
85240
+ "ofType": null
85241
+ }
85242
+ },
85231
85243
  {
85232
85244
  "args": [],
85233
85245
  "deprecationReason": null,
@@ -85332,18 +85344,6 @@
85332
85344
  "ofType": null
85333
85345
  }
85334
85346
  },
85335
- {
85336
- "args": [],
85337
- "deprecationReason": null,
85338
- "description": "When the monitor was deleted",
85339
- "isDeprecated": false,
85340
- "name": "deletedTime",
85341
- "type": {
85342
- "kind": "SCALAR",
85343
- "name": "DateTime",
85344
- "ofType": null
85345
- }
85346
- },
85347
85347
  {
85348
85348
  "args": [],
85349
85349
  "deprecationReason": null,
@@ -94186,6 +94186,22 @@
94186
94186
  }
94187
94187
  }
94188
94188
  },
94189
+ {
94190
+ "args": [],
94191
+ "deprecationReason": null,
94192
+ "description": null,
94193
+ "isDeprecated": false,
94194
+ "name": "hasJobConnection",
94195
+ "type": {
94196
+ "kind": "NON_NULL",
94197
+ "name": null,
94198
+ "ofType": {
94199
+ "kind": "SCALAR",
94200
+ "name": "Boolean",
94201
+ "ofType": null
94202
+ }
94203
+ }
94204
+ },
94189
94205
  {
94190
94206
  "args": [],
94191
94207
  "deprecationReason": null,
@@ -95433,6 +95449,30 @@
95433
95449
  }
95434
95450
  }
95435
95451
  },
95452
+ {
95453
+ "args": [],
95454
+ "deprecationReason": null,
95455
+ "description": null,
95456
+ "isDeprecated": false,
95457
+ "name": "jobSubTypes",
95458
+ "type": {
95459
+ "kind": "NON_NULL",
95460
+ "name": null,
95461
+ "ofType": {
95462
+ "kind": "LIST",
95463
+ "name": null,
95464
+ "ofType": {
95465
+ "kind": "NON_NULL",
95466
+ "name": null,
95467
+ "ofType": {
95468
+ "kind": "SCALAR",
95469
+ "name": "String",
95470
+ "ofType": null
95471
+ }
95472
+ }
95473
+ }
95474
+ }
95475
+ },
95436
95476
  {
95437
95477
  "args": [],
95438
95478
  "deprecationReason": null,
pycarlo/lib/schema.py CHANGED
@@ -14975,6 +14975,7 @@ class ConversionResult(sgqlc.types.Type):
14975
14975
  __field_names__ = (
14976
14976
  "account_name",
14977
14977
  "account_uuid",
14978
+ "has_job_connection",
14978
14979
  "use_cbp_v2",
14979
14980
  "table_monitor_specs",
14980
14981
  "removed_table_monitor_specs",
@@ -15008,6 +15009,10 @@ class ConversionResult(sgqlc.types.Type):
15008
15009
 
15009
15010
  account_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="accountUuid")
15010
15011
 
15012
+ has_job_connection = sgqlc.types.Field(
15013
+ sgqlc.types.non_null(Boolean), graphql_name="hasJobConnection"
15014
+ )
15015
+
15011
15016
  use_cbp_v2 = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="useCbpV2")
15012
15017
 
15013
15018
  table_monitor_specs = sgqlc.types.Field(
@@ -21942,6 +21947,7 @@ class JobRoutingRuleSpec(sgqlc.types.Type):
21942
21947
  "original_rule_uuid",
21943
21948
  "audience",
21944
21949
  "job_anomaly_types",
21950
+ "job_sub_types",
21945
21951
  "job_asset_rules",
21946
21952
  "description",
21947
21953
  )
@@ -21956,6 +21962,11 @@ class JobRoutingRuleSpec(sgqlc.types.Type):
21956
21962
  graphql_name="jobAnomalyTypes",
21957
21963
  )
21958
21964
 
21965
+ job_sub_types = sgqlc.types.Field(
21966
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
21967
+ graphql_name="jobSubTypes",
21968
+ )
21969
+
21959
21970
  job_asset_rules = sgqlc.types.Field(GenericScalar, graphql_name="jobAssetRules")
21960
21971
 
21961
21972
  description = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="description")
@@ -71375,6 +71386,7 @@ class TableMonitor(sgqlc.types.Type, Node):
71375
71386
  "uuid",
71376
71387
  "account_uuid",
71377
71388
  "is_deleted",
71389
+ "deleted_at",
71378
71390
  "description",
71379
71391
  "notes",
71380
71392
  "is_template_managed",
@@ -71383,7 +71395,6 @@ class TableMonitor(sgqlc.types.Type, Node):
71383
71395
  "warehouse_uuid",
71384
71396
  "monitor_name",
71385
71397
  "is_paused",
71386
- "deleted_time",
71387
71398
  "deleted_by",
71388
71399
  "domain_restrictions",
71389
71400
  "asset_selection",
@@ -71407,6 +71418,8 @@ class TableMonitor(sgqlc.types.Type, Node):
71407
71418
 
71408
71419
  is_deleted = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isDeleted")
71409
71420
 
71421
+ deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
71422
+
71410
71423
  description = sgqlc.types.Field(String, graphql_name="description")
71411
71424
 
71412
71425
  notes = sgqlc.types.Field(String, graphql_name="notes")
@@ -71434,9 +71447,6 @@ class TableMonitor(sgqlc.types.Type, Node):
71434
71447
  is_paused = sgqlc.types.Field(Boolean, graphql_name="isPaused")
71435
71448
  """Is this monitor paused?"""
71436
71449
 
71437
- deleted_time = sgqlc.types.Field(DateTime, graphql_name="deletedTime")
71438
- """When the monitor was deleted"""
71439
-
71440
71450
  deleted_by = sgqlc.types.Field("User", graphql_name="deletedBy")
71441
71451
  """Deleted by"""
71442
71452
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.62
3
+ Version: 0.10.63
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=yeHkM0IVGlw2faIkRuODK4libWxVUDnsFJt7gf0VTA0,5982827
39
- pycarlo/lib/schema.py,sha256=ns2tLf2u73MkiWs_3LK-PqfNrKYpTVVvdwQW-wmM9ms,2585511
40
- pycarlo-0.10.62.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.62.dist-info/METADATA,sha256=Oeiq6SUcHGWstRgngkhK2QcQ6gyWkSSZdXvISKaZDSI,8741
42
- pycarlo-0.10.62.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.62.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.62.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=vc3ri-wb1K2zQOu-UrnsMTlZ59ZI1WROXY4zg525xQ0,5983983
39
+ pycarlo/lib/schema.py,sha256=wfzYl7RhXbQEXnLy4E4DGcAH6I6rMg_vd2GAWU4Dbj8,2585806
40
+ pycarlo-0.10.63.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.63.dist-info/METADATA,sha256=rj5wHxFtNN85R6CuTYZCe5h2qZjm6pvNepAP67_5r5s,8741
42
+ pycarlo-0.10.63.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.63.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.63.dist-info/RECORD,,