pycarlo 0.10.220__py3-none-any.whl → 0.10.222__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 +30 -4
- pycarlo/lib/schema.py +11 -5
- {pycarlo-0.10.220.dist-info → pycarlo-0.10.222.dist-info}/METADATA +1 -1
- {pycarlo-0.10.220.dist-info → pycarlo-0.10.222.dist-info}/RECORD +7 -7
- {pycarlo-0.10.220.dist-info → pycarlo-0.10.222.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.220.dist-info → pycarlo-0.10.222.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.220.dist-info → pycarlo-0.10.222.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,
|
|
@@ -172311,12 +172321,16 @@
|
|
|
172311
172321
|
},
|
|
172312
172322
|
{
|
|
172313
172323
|
"defaultValue": null,
|
|
172314
|
-
"description": "Integration type for direct routing
|
|
172324
|
+
"description": "Integration type for direct routing.",
|
|
172315
172325
|
"name": "integrationType",
|
|
172316
172326
|
"type": {
|
|
172317
|
-
"kind": "
|
|
172318
|
-
"name":
|
|
172319
|
-
"ofType":
|
|
172327
|
+
"kind": "NON_NULL",
|
|
172328
|
+
"name": null,
|
|
172329
|
+
"ofType": {
|
|
172330
|
+
"kind": "SCALAR",
|
|
172331
|
+
"name": "String",
|
|
172332
|
+
"ofType": null
|
|
172333
|
+
}
|
|
172320
172334
|
}
|
|
172321
172335
|
},
|
|
172322
172336
|
{
|
|
@@ -200988,6 +201002,18 @@
|
|
|
200988
201002
|
}
|
|
200989
201003
|
}
|
|
200990
201004
|
},
|
|
201005
|
+
{
|
|
201006
|
+
"args": [],
|
|
201007
|
+
"deprecationReason": null,
|
|
201008
|
+
"description": null,
|
|
201009
|
+
"isDeprecated": false,
|
|
201010
|
+
"name": "table",
|
|
201011
|
+
"type": {
|
|
201012
|
+
"kind": "SCALAR",
|
|
201013
|
+
"name": "String",
|
|
201014
|
+
"ofType": null
|
|
201015
|
+
}
|
|
201016
|
+
},
|
|
200991
201017
|
{
|
|
200992
201018
|
"args": [],
|
|
200993
201019
|
"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")
|
|
@@ -39199,7 +39201,9 @@ class Mutation(sgqlc.types.Type):
|
|
|
39199
39201
|
),
|
|
39200
39202
|
(
|
|
39201
39203
|
"integration_type",
|
|
39202
|
-
sgqlc.types.Arg(
|
|
39204
|
+
sgqlc.types.Arg(
|
|
39205
|
+
sgqlc.types.non_null(String), graphql_name="integrationType", default=None
|
|
39206
|
+
),
|
|
39203
39207
|
),
|
|
39204
39208
|
(
|
|
39205
39209
|
"name",
|
|
@@ -39215,8 +39219,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
39215
39219
|
Arguments:
|
|
39216
39220
|
|
|
39217
39221
|
* `integration_id` (`UUID!`): UUID of the integration to update.
|
|
39218
|
-
* `integration_type` (`String
|
|
39219
|
-
routing
|
|
39222
|
+
* `integration_type` (`String!`): Integration type for direct
|
|
39223
|
+
routing.
|
|
39220
39224
|
* `name` (`String!`): Desired name.
|
|
39221
39225
|
"""
|
|
39222
39226
|
|
|
@@ -75582,9 +75586,11 @@ class FilterUnary(sgqlc.types.Type, FilterInterface):
|
|
|
75582
75586
|
|
|
75583
75587
|
class FilterValueField(sgqlc.types.Type, FilterValueInterface):
|
|
75584
75588
|
__schema__ = schema
|
|
75585
|
-
__field_names__ = ("field", "mcon")
|
|
75589
|
+
__field_names__ = ("field", "table", "mcon")
|
|
75586
75590
|
field = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="field")
|
|
75587
75591
|
|
|
75592
|
+
table = sgqlc.types.Field(String, graphql_name="table")
|
|
75593
|
+
|
|
75588
75594
|
mcon = sgqlc.types.Field(String, graphql_name="mcon")
|
|
75589
75595
|
|
|
75590
75596
|
|
|
@@ -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=2HbpkByo8HeBtudKxCyVAPM0cRZhEFmiIe0TKQy2tq4,6411750
|
|
39
|
+
pycarlo/lib/schema.py,sha256=kIU4zFUsLEQYr15sBom6GfBayDvqpRphw4Ruf7mBH_4,2788708
|
|
40
|
+
pycarlo-0.10.222.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.222.dist-info/METADATA,sha256=gvMomHNqAFV70VnTfq3wdj1fPOddELWG4zzt-sTovO4,8742
|
|
42
|
+
pycarlo-0.10.222.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.222.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.222.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|