pycarlo 0.10.115__py3-none-any.whl → 0.10.116__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 +0 -40
- pycarlo/lib/schema.py +0 -12
- {pycarlo-0.10.115.dist-info → pycarlo-0.10.116.dist-info}/METADATA +1 -1
- {pycarlo-0.10.115.dist-info → pycarlo-0.10.116.dist-info}/RECORD +7 -7
- {pycarlo-0.10.115.dist-info → pycarlo-0.10.116.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.115.dist-info → pycarlo-0.10.116.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.115.dist-info → pycarlo-0.10.116.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -22107,26 +22107,6 @@
|
|
|
22107
22107
|
}
|
|
22108
22108
|
}
|
|
22109
22109
|
},
|
|
22110
|
-
{
|
|
22111
|
-
"defaultValue": null,
|
|
22112
|
-
"description": "Filter from this time. Defaults to monitor creation time.",
|
|
22113
|
-
"name": "startTime",
|
|
22114
|
-
"type": {
|
|
22115
|
-
"kind": "SCALAR",
|
|
22116
|
-
"name": "DateTime",
|
|
22117
|
-
"ofType": null
|
|
22118
|
-
}
|
|
22119
|
-
},
|
|
22120
|
-
{
|
|
22121
|
-
"defaultValue": null,
|
|
22122
|
-
"description": "Filter through this time. Defaults to now.",
|
|
22123
|
-
"name": "endTime",
|
|
22124
|
-
"type": {
|
|
22125
|
-
"kind": "SCALAR",
|
|
22126
|
-
"name": "DateTime",
|
|
22127
|
-
"ofType": null
|
|
22128
|
-
}
|
|
22129
|
-
},
|
|
22130
22110
|
{
|
|
22131
22111
|
"defaultValue": null,
|
|
22132
22112
|
"description": "Number of results to return. Default: 1,000. Max: 10,000.",
|
|
@@ -22192,26 +22172,6 @@
|
|
|
22192
22172
|
}
|
|
22193
22173
|
}
|
|
22194
22174
|
},
|
|
22195
|
-
{
|
|
22196
|
-
"defaultValue": null,
|
|
22197
|
-
"description": "Filter from this time. Defaults to monitor creation time.",
|
|
22198
|
-
"name": "startTime",
|
|
22199
|
-
"type": {
|
|
22200
|
-
"kind": "SCALAR",
|
|
22201
|
-
"name": "DateTime",
|
|
22202
|
-
"ofType": null
|
|
22203
|
-
}
|
|
22204
|
-
},
|
|
22205
|
-
{
|
|
22206
|
-
"defaultValue": null,
|
|
22207
|
-
"description": "Filter through this time. Defaults to now.",
|
|
22208
|
-
"name": "endTime",
|
|
22209
|
-
"type": {
|
|
22210
|
-
"kind": "SCALAR",
|
|
22211
|
-
"name": "DateTime",
|
|
22212
|
-
"ofType": null
|
|
22213
|
-
}
|
|
22214
|
-
},
|
|
22215
22175
|
{
|
|
22216
22176
|
"defaultValue": null,
|
|
22217
22177
|
"description": "Filter to segments where all terms are present in segment label",
|
pycarlo/lib/schema.py
CHANGED
|
@@ -55499,8 +55499,6 @@ class Query(sgqlc.types.Type):
|
|
|
55499
55499
|
sgqlc.types.non_null(UUID), graphql_name="monitorUuid", default=None
|
|
55500
55500
|
),
|
|
55501
55501
|
),
|
|
55502
|
-
("start_time", sgqlc.types.Arg(DateTime, graphql_name="startTime", default=None)),
|
|
55503
|
-
("end_time", sgqlc.types.Arg(DateTime, graphql_name="endTime", default=None)),
|
|
55504
55502
|
("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
|
|
55505
55503
|
("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
|
|
55506
55504
|
(
|
|
@@ -55519,10 +55517,6 @@ class Query(sgqlc.types.Type):
|
|
|
55519
55517
|
Arguments:
|
|
55520
55518
|
|
|
55521
55519
|
* `monitor_uuid` (`UUID!`): Filter to this monitor.
|
|
55522
|
-
* `start_time` (`DateTime`): Filter from this time. Defaults to
|
|
55523
|
-
monitor creation time.
|
|
55524
|
-
* `end_time` (`DateTime`): Filter through this time. Defaults to
|
|
55525
|
-
now.
|
|
55526
55520
|
* `first` (`Int`): Number of results to return. Default: 1,000.
|
|
55527
55521
|
Max: 10,000.
|
|
55528
55522
|
* `after` (`String`): Fetch batch of 'first' results after this
|
|
@@ -55542,8 +55536,6 @@ class Query(sgqlc.types.Type):
|
|
|
55542
55536
|
sgqlc.types.non_null(UUID), graphql_name="monitorUuid", default=None
|
|
55543
55537
|
),
|
|
55544
55538
|
),
|
|
55545
|
-
("start_time", sgqlc.types.Arg(DateTime, graphql_name="startTime", default=None)),
|
|
55546
|
-
("end_time", sgqlc.types.Arg(DateTime, graphql_name="endTime", default=None)),
|
|
55547
55539
|
(
|
|
55548
55540
|
"include_terms",
|
|
55549
55541
|
sgqlc.types.Arg(
|
|
@@ -55560,10 +55552,6 @@ class Query(sgqlc.types.Type):
|
|
|
55560
55552
|
Arguments:
|
|
55561
55553
|
|
|
55562
55554
|
* `monitor_uuid` (`UUID!`): Filter to this monitor.
|
|
55563
|
-
* `start_time` (`DateTime`): Filter from this time. Defaults to
|
|
55564
|
-
monitor creation time.
|
|
55565
|
-
* `end_time` (`DateTime`): Filter through this time. Defaults to
|
|
55566
|
-
now.
|
|
55567
55555
|
* `include_terms` (`[String!]`): Filter to segments where all
|
|
55568
55556
|
terms are present in segment label
|
|
55569
55557
|
"""
|
|
@@ -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=
|
|
39
|
-
pycarlo/lib/schema.py,sha256=
|
|
40
|
-
pycarlo-0.10.
|
|
41
|
-
pycarlo-0.10.
|
|
42
|
-
pycarlo-0.10.
|
|
43
|
-
pycarlo-0.10.
|
|
44
|
-
pycarlo-0.10.
|
|
38
|
+
pycarlo/lib/schema.json,sha256=Wd2e3BCCD8KBjYarz-tUL0JUtiBna0_BLcnZ8Muv5rM,6134206
|
|
39
|
+
pycarlo/lib/schema.py,sha256=sVMqXg1PykxJHP5jV-IV7mTfXfwTX2Rj-Gbsopwp76k,2665626
|
|
40
|
+
pycarlo-0.10.116.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.116.dist-info/METADATA,sha256=Kk1PJQWWn_RfNzrAqlG3EIBlXFnF6fJFFcTxxuSUpxM,8742
|
|
42
|
+
pycarlo-0.10.116.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.116.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.116.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|