pycarlo 0.10.74__py3-none-any.whl → 0.10.75__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
@@ -37509,6 +37509,30 @@
37509
37509
  }
37510
37510
  }
37511
37511
  },
37512
+ {
37513
+ "args": [],
37514
+ "deprecationReason": null,
37515
+ "description": "User who created this warehouse",
37516
+ "isDeprecated": false,
37517
+ "name": "createdWarehouses",
37518
+ "type": {
37519
+ "kind": "NON_NULL",
37520
+ "name": null,
37521
+ "ofType": {
37522
+ "kind": "LIST",
37523
+ "name": null,
37524
+ "ofType": {
37525
+ "kind": "NON_NULL",
37526
+ "name": null,
37527
+ "ofType": {
37528
+ "kind": "OBJECT",
37529
+ "name": "Warehouse",
37530
+ "ofType": null
37531
+ }
37532
+ }
37533
+ }
37534
+ }
37535
+ },
37512
37536
  {
37513
37537
  "args": [
37514
37538
  {
@@ -45886,6 +45910,18 @@
45886
45910
  "ofType": null
45887
45911
  }
45888
45912
  },
45913
+ {
45914
+ "args": [],
45915
+ "deprecationReason": null,
45916
+ "description": "User who created this warehouse",
45917
+ "isDeprecated": false,
45918
+ "name": "createdBy",
45919
+ "type": {
45920
+ "kind": "OBJECT",
45921
+ "name": "User",
45922
+ "ofType": null
45923
+ }
45924
+ },
45889
45925
  {
45890
45926
  "args": [],
45891
45927
  "deprecationReason": null,
@@ -122693,6 +122729,30 @@
122693
122729
  }
122694
122730
  }
122695
122731
  },
122732
+ {
122733
+ "args": [],
122734
+ "deprecationReason": null,
122735
+ "description": "User who created this warehouse",
122736
+ "isDeprecated": false,
122737
+ "name": "createdWarehouses",
122738
+ "type": {
122739
+ "kind": "NON_NULL",
122740
+ "name": null,
122741
+ "ofType": {
122742
+ "kind": "LIST",
122743
+ "name": null,
122744
+ "ofType": {
122745
+ "kind": "NON_NULL",
122746
+ "name": null,
122747
+ "ofType": {
122748
+ "kind": "OBJECT",
122749
+ "name": "Warehouse",
122750
+ "ofType": null
122751
+ }
122752
+ }
122753
+ }
122754
+ }
122755
+ },
122696
122756
  {
122697
122757
  "args": [
122698
122758
  {
pycarlo/lib/schema.py CHANGED
@@ -64421,6 +64421,7 @@ class Warehouse(sgqlc.types.Type):
64421
64421
  "deleted_at",
64422
64422
  "deleted_by",
64423
64423
  "config",
64424
+ "created_by",
64424
64425
  "connections",
64425
64426
  "tables",
64426
64427
  "incidents",
@@ -64482,6 +64483,9 @@ class Warehouse(sgqlc.types.Type):
64482
64483
 
64483
64484
  config = sgqlc.types.Field(JSONString, graphql_name="config")
64484
64485
 
64486
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
64487
+ """User who created this warehouse"""
64488
+
64485
64489
  connections = sgqlc.types.Field(
64486
64490
  sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
64487
64491
  graphql_name="connections",
@@ -65930,6 +65934,7 @@ class AuthUser(sgqlc.types.Type, Node):
65930
65934
  "user_settings",
65931
65935
  "invitees",
65932
65936
  "warehouse_deleted_by",
65937
+ "created_warehouses",
65933
65938
  "eventmodel_set",
65934
65939
  "eventdetectorfeedbackmodel_created_by",
65935
65940
  "eventdetectorfeedbackmodel_updated_by",
@@ -66140,6 +66145,12 @@ class AuthUser(sgqlc.types.Type, Node):
66140
66145
  graphql_name="warehouseDeletedBy",
66141
66146
  )
66142
66147
 
66148
+ created_warehouses = sgqlc.types.Field(
66149
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Warehouse))),
66150
+ graphql_name="createdWarehouses",
66151
+ )
66152
+ """User who created this warehouse"""
66153
+
66143
66154
  eventmodel_set = sgqlc.types.Field(
66144
66155
  sgqlc.types.non_null(EventConnection),
66145
66156
  graphql_name="eventmodelSet",
@@ -71859,6 +71870,7 @@ class User(sgqlc.types.Type, Node):
71859
71870
  "user_settings",
71860
71871
  "invitees",
71861
71872
  "warehouse_deleted_by",
71873
+ "created_warehouses",
71862
71874
  "eventmodel_set",
71863
71875
  "eventdetectorfeedbackmodel_created_by",
71864
71876
  "eventdetectorfeedbackmodel_updated_by",
@@ -72072,6 +72084,12 @@ class User(sgqlc.types.Type, Node):
72072
72084
  graphql_name="warehouseDeletedBy",
72073
72085
  )
72074
72086
 
72087
+ created_warehouses = sgqlc.types.Field(
72088
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Warehouse))),
72089
+ graphql_name="createdWarehouses",
72090
+ )
72091
+ """User who created this warehouse"""
72092
+
72075
72093
  eventmodel_set = sgqlc.types.Field(
72076
72094
  sgqlc.types.non_null(EventConnection),
72077
72095
  graphql_name="eventmodelSet",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.74
3
+ Version: 0.10.75
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=3B_0jf4rgTsudSSHH8ooJD5C9G9UDAjnxjyB96EKUwk,5975740
39
- pycarlo/lib/schema.py,sha256=iCukLXAiFyJIYvYvRICMlKzY0nTUmRFdvCbZXjo5g4g,2582393
40
- pycarlo-0.10.74.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.74.dist-info/METADATA,sha256=9y4ch90UNiIfzuHL0IUQC_9N0EoysTyINgTxWNkzQfU,8741
42
- pycarlo-0.10.74.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.74.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.74.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=2YtOM3WQ1MBKtHYIJyeT7jGIFp2mpzAHKM6aUvLOskk,5977621
39
+ pycarlo/lib/schema.py,sha256=_bbRzLz1lWHJUM9p3SxOUZCwCWXeZ-EW-Ki35uijuIU,2583025
40
+ pycarlo-0.10.75.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.75.dist-info/METADATA,sha256=Moou1kqoPK0Z_YcEOaOGIjUpzXgmQPsONeRlpVr954E,8741
42
+ pycarlo-0.10.75.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.75.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.75.dist-info/RECORD,,