pycarlo 0.10.80__py3-none-any.whl → 0.10.82__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 +16 -14
- pycarlo/lib/schema.py +8 -2
- {pycarlo-0.10.80.dist-info → pycarlo-0.10.82.dist-info}/METADATA +1 -1
- {pycarlo-0.10.80.dist-info → pycarlo-0.10.82.dist-info}/RECORD +7 -7
- {pycarlo-0.10.80.dist-info → pycarlo-0.10.82.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.80.dist-info → pycarlo-0.10.82.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.80.dist-info → pycarlo-0.10.82.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -26356,6 +26356,16 @@
|
|
|
26356
26356
|
"ofType": null
|
|
26357
26357
|
}
|
|
26358
26358
|
},
|
|
26359
|
+
{
|
|
26360
|
+
"defaultValue": null,
|
|
26361
|
+
"description": "Filter by monitored status if provided",
|
|
26362
|
+
"name": "isMonitored",
|
|
26363
|
+
"type": {
|
|
26364
|
+
"kind": "SCALAR",
|
|
26365
|
+
"name": "Boolean",
|
|
26366
|
+
"ofType": null
|
|
26367
|
+
}
|
|
26368
|
+
},
|
|
26359
26369
|
{
|
|
26360
26370
|
"defaultValue": "100",
|
|
26361
26371
|
"description": null,
|
|
@@ -31511,13 +31521,9 @@
|
|
|
31511
31521
|
"description": null,
|
|
31512
31522
|
"name": "alias",
|
|
31513
31523
|
"type": {
|
|
31514
|
-
"kind": "
|
|
31515
|
-
"name":
|
|
31516
|
-
"ofType":
|
|
31517
|
-
"kind": "SCALAR",
|
|
31518
|
-
"name": "String",
|
|
31519
|
-
"ofType": null
|
|
31520
|
-
}
|
|
31524
|
+
"kind": "SCALAR",
|
|
31525
|
+
"name": "String",
|
|
31526
|
+
"ofType": null
|
|
31521
31527
|
}
|
|
31522
31528
|
},
|
|
31523
31529
|
{
|
|
@@ -82254,13 +82260,9 @@
|
|
|
82254
82260
|
"isDeprecated": false,
|
|
82255
82261
|
"name": "alias",
|
|
82256
82262
|
"type": {
|
|
82257
|
-
"kind": "
|
|
82258
|
-
"name":
|
|
82259
|
-
"ofType":
|
|
82260
|
-
"kind": "SCALAR",
|
|
82261
|
-
"name": "String",
|
|
82262
|
-
"ofType": null
|
|
82263
|
-
}
|
|
82263
|
+
"kind": "SCALAR",
|
|
82264
|
+
"name": "String",
|
|
82265
|
+
"ofType": null
|
|
82264
82266
|
}
|
|
82265
82267
|
},
|
|
82266
82268
|
{
|
pycarlo/lib/schema.py
CHANGED
|
@@ -9753,7 +9753,7 @@ class TransformInput(sgqlc.types.Input):
|
|
|
9753
9753
|
"field",
|
|
9754
9754
|
"id",
|
|
9755
9755
|
)
|
|
9756
|
-
alias = sgqlc.types.Field(
|
|
9756
|
+
alias = sgqlc.types.Field(String, graphql_name="alias")
|
|
9757
9757
|
|
|
9758
9758
|
prompt = sgqlc.types.Field(String, graphql_name="prompt")
|
|
9759
9759
|
|
|
@@ -57010,6 +57010,10 @@ class Query(sgqlc.types.Type):
|
|
|
57010
57010
|
"search_full_table_id",
|
|
57011
57011
|
sgqlc.types.Arg(String, graphql_name="searchFullTableId", default=None),
|
|
57012
57012
|
),
|
|
57013
|
+
(
|
|
57014
|
+
"is_monitored",
|
|
57015
|
+
sgqlc.types.Arg(Boolean, graphql_name="isMonitored", default=None),
|
|
57016
|
+
),
|
|
57013
57017
|
("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=100)),
|
|
57014
57018
|
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=0)),
|
|
57015
57019
|
)
|
|
@@ -57029,6 +57033,8 @@ class Query(sgqlc.types.Type):
|
|
|
57029
57033
|
* `domain_restrictions` (`[UUID!]`)None
|
|
57030
57034
|
* `search` (`String`)None
|
|
57031
57035
|
* `search_full_table_id` (`String`)None
|
|
57036
|
+
* `is_monitored` (`Boolean`): Filter by monitored status if
|
|
57037
|
+
provided
|
|
57032
57038
|
* `limit` (`Int`)None (default: `100`)
|
|
57033
57039
|
* `offset` (`Int`)None (default: `0`)
|
|
57034
57040
|
"""
|
|
@@ -63253,7 +63259,7 @@ class Transform(sgqlc.types.Type):
|
|
|
63253
63259
|
"field",
|
|
63254
63260
|
"id",
|
|
63255
63261
|
)
|
|
63256
|
-
alias = sgqlc.types.Field(
|
|
63262
|
+
alias = sgqlc.types.Field(String, graphql_name="alias")
|
|
63257
63263
|
|
|
63258
63264
|
prompt = sgqlc.types.Field(String, graphql_name="prompt")
|
|
63259
63265
|
|
|
@@ -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=PAG7ecEvh0fKLu5WbgVFoo3uawDMUZvP5jA663sIjb4,6014319
|
|
39
|
+
pycarlo/lib/schema.py,sha256=BJdExOrl0n793oYCjxNL6XyNoE_JQJamYrEJDErz-vo,2597203
|
|
40
|
+
pycarlo-0.10.82.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.82.dist-info/METADATA,sha256=YeQYZVvUku5Y8PzESzKnL8302nHI6Uu9BCJwe5_w-0w,8741
|
|
42
|
+
pycarlo-0.10.82.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.82.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.82.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|