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 CHANGED
@@ -1048,16 +1048,20 @@
1048
1048
  {
1049
1049
  "args": [],
1050
1050
  "deprecationReason": null,
1051
- "description": "(experimental) gets all available transform functions",
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": "OBJECT",
1059
- "name": "TransformFunction",
1060
- "ofType": null
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"), graphql_name="getTransformFunctions"
44971
+ sgqlc.types.list_of(sgqlc.types.non_null("TransformFunction")),
44972
+ graphql_name="getTransformFunctions",
44969
44973
  )
44970
- """(experimental) gets all available transform functions"""
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.173
3
+ Version: 0.10.175
4
4
  Summary: Monte Carlo's Python SDK
5
5
  Home-page: https://www.montecarlodata.com/
6
6
  Author: Monte Carlo Data, Inc
@@ -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=qtRrpmMo6-7fPVzoKk0cT6UKBl3VutaPwsvXkAhZUmU,6271471
39
- pycarlo/lib/schema.py,sha256=y41CYz2AHSvvlB_JB97Oww-XH9J-oskbovm2nGYABCQ,2726535
40
- pycarlo-0.10.173.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.173.dist-info/METADATA,sha256=FlwMlp1STaqW2Ro_KOOc6fS8GTIuxzgk1ubvQXkG-fs,8742
42
- pycarlo-0.10.173.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.173.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.173.dist-info/RECORD,,
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,,