pycarlo 0.10.190__py3-none-any.whl → 0.10.192__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
@@ -126095,6 +126095,12 @@
126095
126095
  "isDeprecated": false,
126096
126096
  "name": "S3_QL_EVENTS"
126097
126097
  },
126098
+ {
126099
+ "deprecationReason": null,
126100
+ "description": null,
126101
+ "isDeprecated": false,
126102
+ "name": "SLO"
126103
+ },
126098
126104
  {
126099
126105
  "deprecationReason": null,
126100
126106
  "description": null,
@@ -137930,6 +137936,18 @@
137930
137936
  "description": null,
137931
137937
  "enumValues": null,
137932
137938
  "fields": [
137939
+ {
137940
+ "args": [],
137941
+ "deprecationReason": null,
137942
+ "description": null,
137943
+ "isDeprecated": false,
137944
+ "name": "timeSeriesUuid",
137945
+ "type": {
137946
+ "kind": "SCALAR",
137947
+ "name": "UUID",
137948
+ "ofType": null
137949
+ }
137950
+ },
137933
137951
  {
137934
137952
  "args": [],
137935
137953
  "deprecationReason": null,
@@ -137965,6 +137983,30 @@
137965
137983
  "description": null,
137966
137984
  "enumValues": null,
137967
137985
  "fields": [
137986
+ {
137987
+ "args": [],
137988
+ "deprecationReason": null,
137989
+ "description": null,
137990
+ "isDeprecated": false,
137991
+ "name": "timeSeriesUuids",
137992
+ "type": {
137993
+ "kind": "NON_NULL",
137994
+ "name": null,
137995
+ "ofType": {
137996
+ "kind": "LIST",
137997
+ "name": null,
137998
+ "ofType": {
137999
+ "kind": "NON_NULL",
138000
+ "name": null,
138001
+ "ofType": {
138002
+ "kind": "SCALAR",
138003
+ "name": "UUID",
138004
+ "ofType": null
138005
+ }
138006
+ }
138007
+ }
138008
+ }
138009
+ },
137968
138010
  {
137969
138011
  "args": [],
137970
138012
  "deprecationReason": null,
@@ -138004,6 +138046,30 @@
138004
138046
  "description": null,
138005
138047
  "enumValues": null,
138006
138048
  "fields": [
138049
+ {
138050
+ "args": [],
138051
+ "deprecationReason": null,
138052
+ "description": null,
138053
+ "isDeprecated": false,
138054
+ "name": "timeSeriesUuids",
138055
+ "type": {
138056
+ "kind": "NON_NULL",
138057
+ "name": null,
138058
+ "ofType": {
138059
+ "kind": "LIST",
138060
+ "name": null,
138061
+ "ofType": {
138062
+ "kind": "NON_NULL",
138063
+ "name": null,
138064
+ "ofType": {
138065
+ "kind": "SCALAR",
138066
+ "name": "UUID",
138067
+ "ofType": null
138068
+ }
138069
+ }
138070
+ }
138071
+ }
138072
+ },
138007
138073
  {
138008
138074
  "args": [],
138009
138075
  "deprecationReason": null,
pycarlo/lib/schema.py CHANGED
@@ -3178,6 +3178,7 @@ class InternalJobType(sgqlc.types.Enum):
3178
3178
  * `REPORTS`None
3179
3179
  * `S3_METADATA_EVENTS`None
3180
3180
  * `S3_QL_EVENTS`None
3181
+ * `SLO`None
3181
3182
  * `SQL_QUERY`None
3182
3183
  * `STREAM_METADATA`None
3183
3184
  * `TABLEAU_GQL`None
@@ -3195,6 +3196,7 @@ class InternalJobType(sgqlc.types.Enum):
3195
3196
  "REPORTS",
3196
3197
  "S3_METADATA_EVENTS",
3197
3198
  "S3_QL_EVENTS",
3199
+ "SLO",
3198
3200
  "SQL_QUERY",
3199
3201
  "STREAM_METADATA",
3200
3202
  "TABLEAU_GQL",
@@ -15181,7 +15183,9 @@ class CategorizedSearchResult(sgqlc.types.Type):
15181
15183
 
15182
15184
  class CategoryLabelRank(sgqlc.types.Type):
15183
15185
  __schema__ = schema
15184
- __field_names__ = ("label", "rank")
15186
+ __field_names__ = ("time_series_uuid", "label", "rank")
15187
+ time_series_uuid = sgqlc.types.Field(UUID, graphql_name="timeSeriesUuid")
15188
+
15185
15189
  label = sgqlc.types.Field(String, graphql_name="label")
15186
15190
 
15187
15191
  rank = sgqlc.types.Field(Float, graphql_name="rank")
@@ -63331,7 +63335,12 @@ class SegmentCountQuery(sgqlc.types.Type):
63331
63335
 
63332
63336
  class SegmentLabels(sgqlc.types.Type):
63333
63337
  __schema__ = schema
63334
- __field_names__ = ("labels", "last_label")
63338
+ __field_names__ = ("time_series_uuids", "labels", "last_label")
63339
+ time_series_uuids = sgqlc.types.Field(
63340
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UUID))),
63341
+ graphql_name="timeSeriesUuids",
63342
+ )
63343
+
63335
63344
  labels = sgqlc.types.Field(
63336
63345
  sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
63337
63346
  graphql_name="labels",
@@ -69531,7 +69540,12 @@ class WebhookHeader(sgqlc.types.Type):
69531
69540
 
69532
69541
  class WhereConditionSegments(sgqlc.types.Type):
69533
69542
  __schema__ = schema
69534
- __field_names__ = ("where_conditions", "last_where_condition")
69543
+ __field_names__ = ("time_series_uuids", "where_conditions", "last_where_condition")
69544
+ time_series_uuids = sgqlc.types.Field(
69545
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UUID))),
69546
+ graphql_name="timeSeriesUuids",
69547
+ )
69548
+
69535
69549
  where_conditions = sgqlc.types.Field(
69536
69550
  sgqlc.types.list_of(String), graphql_name="whereConditions"
69537
69551
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.190
3
+ Version: 0.10.192
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=mdwZO-ZuAeLi4XRQ030NHWz_FfAgTsd1pIvGz8cCFHQ,6332654
39
- pycarlo/lib/schema.py,sha256=0phx3n9GWX3elEE6wLv0LYoKU2uBAgVoI4b4HoLtmuE,2757758
40
- pycarlo-0.10.190.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.190.dist-info/METADATA,sha256=iKGGSkKPJSCZiXGE90IRCkk1ZcczhrmtI_7QiJgjcVQ,8742
42
- pycarlo-0.10.190.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.190.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.190.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=HAH-9H1oU06qSXq4aUsCTXqR6Df6sSCEscN16AZYBfQ,6334609
39
+ pycarlo/lib/schema.py,sha256=pTr0LD0BNmQKrwrbLXvmTJMDShkTZCZkL5JZDmZR7Ec,2758268
40
+ pycarlo-0.10.192.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.192.dist-info/METADATA,sha256=AeguGq36qe2gUrTJkVmkvGaxF8qJ9UtFTpXWkWt0oZ0,8742
42
+ pycarlo-0.10.192.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.192.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.192.dist-info/RECORD,,