pycarlo 0.10.220__py3-none-any.whl → 0.10.221__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 +22 -0
- pycarlo/lib/schema.py +6 -2
- {pycarlo-0.10.220.dist-info → pycarlo-0.10.221.dist-info}/METADATA +1 -1
- {pycarlo-0.10.220.dist-info → pycarlo-0.10.221.dist-info}/RECORD +7 -7
- {pycarlo-0.10.220.dist-info → pycarlo-0.10.221.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.220.dist-info → pycarlo-0.10.221.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.220.dist-info → pycarlo-0.10.221.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -91330,6 +91330,16 @@
|
|
|
91330
91330
|
"ofType": null
|
|
91331
91331
|
}
|
|
91332
91332
|
},
|
|
91333
|
+
{
|
|
91334
|
+
"defaultValue": null,
|
|
91335
|
+
"description": null,
|
|
91336
|
+
"name": "table",
|
|
91337
|
+
"type": {
|
|
91338
|
+
"kind": "SCALAR",
|
|
91339
|
+
"name": "String",
|
|
91340
|
+
"ofType": null
|
|
91341
|
+
}
|
|
91342
|
+
},
|
|
91333
91343
|
{
|
|
91334
91344
|
"defaultValue": null,
|
|
91335
91345
|
"description": null,
|
|
@@ -200988,6 +200998,18 @@
|
|
|
200988
200998
|
}
|
|
200989
200999
|
}
|
|
200990
201000
|
},
|
|
201001
|
+
{
|
|
201002
|
+
"args": [],
|
|
201003
|
+
"deprecationReason": null,
|
|
201004
|
+
"description": null,
|
|
201005
|
+
"isDeprecated": false,
|
|
201006
|
+
"name": "table",
|
|
201007
|
+
"type": {
|
|
201008
|
+
"kind": "SCALAR",
|
|
201009
|
+
"name": "String",
|
|
201010
|
+
"ofType": null
|
|
201011
|
+
}
|
|
201012
|
+
},
|
|
200991
201013
|
{
|
|
200992
201014
|
"args": [],
|
|
200993
201015
|
"deprecationReason": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -7320,13 +7320,15 @@ class FilterUnionInput(sgqlc.types.Input):
|
|
|
7320
7320
|
|
|
7321
7321
|
class FilterValueUnionInput(sgqlc.types.Input):
|
|
7322
7322
|
__schema__ = schema
|
|
7323
|
-
__field_names__ = ("literal", "sql", "field", "mcon", "type", "id")
|
|
7323
|
+
__field_names__ = ("literal", "sql", "field", "table", "mcon", "type", "id")
|
|
7324
7324
|
literal = sgqlc.types.Field(String, graphql_name="literal")
|
|
7325
7325
|
|
|
7326
7326
|
sql = sgqlc.types.Field(String, graphql_name="sql")
|
|
7327
7327
|
|
|
7328
7328
|
field = sgqlc.types.Field(String, graphql_name="field")
|
|
7329
7329
|
|
|
7330
|
+
table = sgqlc.types.Field(String, graphql_name="table")
|
|
7331
|
+
|
|
7330
7332
|
mcon = sgqlc.types.Field(String, graphql_name="mcon")
|
|
7331
7333
|
|
|
7332
7334
|
type = sgqlc.types.Field(sgqlc.types.non_null(FilterValueType), graphql_name="type")
|
|
@@ -75582,9 +75584,11 @@ class FilterUnary(sgqlc.types.Type, FilterInterface):
|
|
|
75582
75584
|
|
|
75583
75585
|
class FilterValueField(sgqlc.types.Type, FilterValueInterface):
|
|
75584
75586
|
__schema__ = schema
|
|
75585
|
-
__field_names__ = ("field", "mcon")
|
|
75587
|
+
__field_names__ = ("field", "table", "mcon")
|
|
75586
75588
|
field = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="field")
|
|
75587
75589
|
|
|
75590
|
+
table = sgqlc.types.Field(String, graphql_name="table")
|
|
75591
|
+
|
|
75588
75592
|
mcon = sgqlc.types.Field(String, graphql_name="mcon")
|
|
75589
75593
|
|
|
75590
75594
|
|
|
@@ -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=eKaufMf6IqxFe6p4PleICPNN1mkH_80xLgS1fUo9HpA,6411627
|
|
39
|
+
pycarlo/lib/schema.py,sha256=FugvKIxAJUfTHi2RUAhjvFUDexQ3CMU6ktY_xRlj7Pw,2788650
|
|
40
|
+
pycarlo-0.10.221.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.221.dist-info/METADATA,sha256=4Xu2zo3uF43Bj4fcnt0gZoOlYPGMSPks082Utk55zho,8742
|
|
42
|
+
pycarlo-0.10.221.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.221.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.221.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|