pycarlo 0.10.173__py3-none-any.whl → 0.10.175__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 +42 -4
- pycarlo/lib/schema.py +12 -2
- {pycarlo-0.10.173.dist-info → pycarlo-0.10.175.dist-info}/METADATA +1 -1
- {pycarlo-0.10.173.dist-info → pycarlo-0.10.175.dist-info}/RECORD +7 -7
- {pycarlo-0.10.173.dist-info → pycarlo-0.10.175.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.173.dist-info → pycarlo-0.10.175.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.173.dist-info → pycarlo-0.10.175.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -1048,16 +1048,20 @@
|
|
|
1048
1048
|
{
|
|
1049
1049
|
"args": [],
|
|
1050
1050
|
"deprecationReason": null,
|
|
1051
|
-
"description": "(experimental)
|
|
1051
|
+
"description": "(experimental) Gets all available transform functions",
|
|
1052
1052
|
"isDeprecated": false,
|
|
1053
1053
|
"name": "getTransformFunctions",
|
|
1054
1054
|
"type": {
|
|
1055
1055
|
"kind": "LIST",
|
|
1056
1056
|
"name": null,
|
|
1057
1057
|
"ofType": {
|
|
1058
|
-
"kind": "
|
|
1059
|
-
"name":
|
|
1060
|
-
"ofType":
|
|
1058
|
+
"kind": "NON_NULL",
|
|
1059
|
+
"name": null,
|
|
1060
|
+
"ofType": {
|
|
1061
|
+
"kind": "OBJECT",
|
|
1062
|
+
"name": "TransformFunction",
|
|
1063
|
+
"ofType": null
|
|
1064
|
+
}
|
|
1061
1065
|
}
|
|
1062
1066
|
}
|
|
1063
1067
|
},
|
|
@@ -35244,6 +35248,16 @@
|
|
|
35244
35248
|
"ofType": null
|
|
35245
35249
|
}
|
|
35246
35250
|
},
|
|
35251
|
+
{
|
|
35252
|
+
"defaultValue": null,
|
|
35253
|
+
"description": null,
|
|
35254
|
+
"name": "sqlExpression",
|
|
35255
|
+
"type": {
|
|
35256
|
+
"kind": "SCALAR",
|
|
35257
|
+
"name": "String",
|
|
35258
|
+
"ofType": null
|
|
35259
|
+
}
|
|
35260
|
+
},
|
|
35247
35261
|
{
|
|
35248
35262
|
"defaultValue": null,
|
|
35249
35263
|
"description": null,
|
|
@@ -36999,6 +37013,18 @@
|
|
|
36999
37013
|
"name": "String",
|
|
37000
37014
|
"ofType": null
|
|
37001
37015
|
}
|
|
37016
|
+
},
|
|
37017
|
+
{
|
|
37018
|
+
"args": [],
|
|
37019
|
+
"deprecationReason": null,
|
|
37020
|
+
"description": null,
|
|
37021
|
+
"isDeprecated": false,
|
|
37022
|
+
"name": "sqlExpression",
|
|
37023
|
+
"type": {
|
|
37024
|
+
"kind": "SCALAR",
|
|
37025
|
+
"name": "String",
|
|
37026
|
+
"ofType": null
|
|
37027
|
+
}
|
|
37002
37028
|
}
|
|
37003
37029
|
],
|
|
37004
37030
|
"inputFields": null,
|
|
@@ -86624,6 +86650,18 @@
|
|
|
86624
86650
|
"ofType": null
|
|
86625
86651
|
}
|
|
86626
86652
|
},
|
|
86653
|
+
{
|
|
86654
|
+
"args": [],
|
|
86655
|
+
"deprecationReason": null,
|
|
86656
|
+
"description": null,
|
|
86657
|
+
"isDeprecated": false,
|
|
86658
|
+
"name": "sqlExpression",
|
|
86659
|
+
"type": {
|
|
86660
|
+
"kind": "SCALAR",
|
|
86661
|
+
"name": "String",
|
|
86662
|
+
"ofType": null
|
|
86663
|
+
}
|
|
86664
|
+
},
|
|
86627
86665
|
{
|
|
86628
86666
|
"args": [],
|
|
86629
86667
|
"deprecationReason": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -9996,6 +9996,7 @@ class TransformInput(sgqlc.types.Input):
|
|
|
9996
9996
|
"categories",
|
|
9997
9997
|
"model_connection_id",
|
|
9998
9998
|
"output_type",
|
|
9999
|
+
"sql_expression",
|
|
9999
10000
|
"field_config_list",
|
|
10000
10001
|
"function",
|
|
10001
10002
|
"field",
|
|
@@ -10014,6 +10015,8 @@ class TransformInput(sgqlc.types.Input):
|
|
|
10014
10015
|
|
|
10015
10016
|
output_type = sgqlc.types.Field(String, graphql_name="outputType")
|
|
10016
10017
|
|
|
10018
|
+
sql_expression = sgqlc.types.Field(String, graphql_name="sqlExpression")
|
|
10019
|
+
|
|
10017
10020
|
field_config_list = sgqlc.types.Field(
|
|
10018
10021
|
sgqlc.types.list_of(sgqlc.types.non_null(FieldConfigInput)), graphql_name="fieldConfigList"
|
|
10019
10022
|
)
|
|
@@ -44965,9 +44968,10 @@ class Query(sgqlc.types.Type):
|
|
|
44965
44968
|
)
|
|
44966
44969
|
|
|
44967
44970
|
get_transform_functions = sgqlc.types.Field(
|
|
44968
|
-
sgqlc.types.list_of("TransformFunction"),
|
|
44971
|
+
sgqlc.types.list_of(sgqlc.types.non_null("TransformFunction")),
|
|
44972
|
+
graphql_name="getTransformFunctions",
|
|
44969
44973
|
)
|
|
44970
|
-
"""(experimental)
|
|
44974
|
+
"""(experimental) Gets all available transform functions"""
|
|
44971
44975
|
|
|
44972
44976
|
run_custom_query = sgqlc.types.Field(
|
|
44973
44977
|
"SQLResponse",
|
|
@@ -66536,6 +66540,7 @@ class Transform(sgqlc.types.Type):
|
|
|
66536
66540
|
"categories",
|
|
66537
66541
|
"model_connection_id",
|
|
66538
66542
|
"output_type",
|
|
66543
|
+
"sql_expression",
|
|
66539
66544
|
"field_config_list",
|
|
66540
66545
|
"function",
|
|
66541
66546
|
"field",
|
|
@@ -66554,6 +66559,8 @@ class Transform(sgqlc.types.Type):
|
|
|
66554
66559
|
|
|
66555
66560
|
output_type = sgqlc.types.Field(String, graphql_name="outputType")
|
|
66556
66561
|
|
|
66562
|
+
sql_expression = sgqlc.types.Field(String, graphql_name="sqlExpression")
|
|
66563
|
+
|
|
66557
66564
|
field_config_list = sgqlc.types.Field(
|
|
66558
66565
|
sgqlc.types.list_of(sgqlc.types.non_null(FieldConfig)), graphql_name="fieldConfigList"
|
|
66559
66566
|
)
|
|
@@ -66583,6 +66590,7 @@ class TransformFunction(sgqlc.types.Type):
|
|
|
66583
66590
|
"supports_field_range",
|
|
66584
66591
|
"supported_output_types",
|
|
66585
66592
|
"icon",
|
|
66593
|
+
"sql_expression",
|
|
66586
66594
|
)
|
|
66587
66595
|
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
|
|
66588
66596
|
|
|
@@ -66627,6 +66635,8 @@ class TransformFunction(sgqlc.types.Type):
|
|
|
66627
66635
|
|
|
66628
66636
|
icon = sgqlc.types.Field(String, graphql_name="icon")
|
|
66629
66637
|
|
|
66638
|
+
sql_expression = sgqlc.types.Field(String, graphql_name="sqlExpression")
|
|
66639
|
+
|
|
66630
66640
|
|
|
66631
66641
|
class TriggerCircuitBreakerRule(sgqlc.types.Type):
|
|
66632
66642
|
"""Run a custom rule as a circuit breaker immediately. Supports rules
|
|
@@ -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=pFIhtPYapQdGz6Y5R3UoXEg9ksNCsWwJsfMf7df4flM,6272567
|
|
39
|
+
pycarlo/lib/schema.py,sha256=DVUWlqR_VL7qBdU_8F8ZCsVQlPxh5gEQhiO1HnPEFBE,2726878
|
|
40
|
+
pycarlo-0.10.175.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.175.dist-info/METADATA,sha256=h3pMrcUY-Hzs-pOx6g9Vt7-2yDMT3OZVWBoQYGaudtA,8742
|
|
42
|
+
pycarlo-0.10.175.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.175.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.175.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|