splunk-soar-sdk 1.6.2__py3-none-any.whl → 1.6.3__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.
@@ -200,13 +200,15 @@ class ActionOutput(BaseModel):
200
200
  field_type = get_args(field_type)[0]
201
201
  datapath += ".*"
202
202
 
203
- # For some reason, issubclass(Optional, _) doesn't work.
204
- # This provides a nicer error message to an app dev, unless and
205
- # until we can build proper support for Optional types.
206
- if get_origin(field_type) is Union:
207
- raise TypeError(
208
- f"Output field {field_name} cannot be Union or Optional."
209
- )
203
+ if get_origin(field_type) is Union or get_origin(field_type) is Optional:
204
+ type_args = [
205
+ arg for arg in get_args(field_type) if arg is not type(None)
206
+ ]
207
+ if len(type_args) > 1:
208
+ raise TypeError(
209
+ f"Output field {field_name} is invalid: the only valid Union type is Optional, or Union[X, None]."
210
+ )
211
+ field_type = type_args[0]
210
212
 
211
213
  if issubclass(field_type, ActionOutput):
212
214
  # If the field is another ActionOutput, recursively call _to_json_schema
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: splunk-soar-sdk
3
- Version: 1.6.2
3
+ Version: 1.6.3
4
4
  Summary: The official framework for developing and testing Splunk SOAR Apps
5
5
  Project-URL: Homepage, https://github.com/phantomcyber/splunk-soar-sdk
6
6
  Project-URL: Documentation, https://github.com/phantomcyber/splunk-soar-sdk
@@ -1,6 +1,6 @@
1
1
  soar_sdk/__init__.py,sha256=RzAng-ARqpK01SY82lNy4uYJFVG0yW6Q3CccEqbToJ4,726
2
2
  soar_sdk/abstract.py,sha256=jGXs2Fv5TRpnh5Duz3mWjY8_DAOpY4RSSzvw_z4XN4I,7950
3
- soar_sdk/action_results.py,sha256=gAQwHjXbkkzOJTmQnLwBjKjwbuz8mSPyqIVcirVS598,10114
3
+ soar_sdk/action_results.py,sha256=4uKVz-oUVJf9idMdTijUD28PdF6ZKNdrpOTkMCRD0Fs,10202
4
4
  soar_sdk/actions_manager.py,sha256=wJCyfzkI_6OKZ-Kmll4vRJpGvYdL93Uw-JyEEGnKcw0,5779
5
5
  soar_sdk/app.py,sha256=KhRpCUtbvF4g6Ecn9iSNv6Su5KMIB1VhfRdGxIPdP8A,32884
6
6
  soar_sdk/app_cli_runner.py,sha256=fJoozhyAt7QUMuc02nE5RL_InpsjQBpr6U4rF9sey3E,11627
@@ -96,8 +96,8 @@ soar_sdk/views/components/pie_chart.py,sha256=LVTeHVJN6nf2vjUs9y7PDBhS0U1fKW750l
96
96
  soar_sdk/webhooks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
97
  soar_sdk/webhooks/models.py,sha256=-rjuFA9cRX5zTLp7cHSHVTkt5eVJD6BdESGbj_qkyHI,4540
98
98
  soar_sdk/webhooks/routing.py,sha256=BKbURSrBPdOTS5UFL-mHzFEr-Fj04mJMx9KeiPrZ2VQ,6872
99
- splunk_soar_sdk-1.6.2.dist-info/METADATA,sha256=cbPNUy88KzQOkerQcN11D65tjGlt-M_k5__ATRzk3a8,7361
100
- splunk_soar_sdk-1.6.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
101
- splunk_soar_sdk-1.6.2.dist-info/entry_points.txt,sha256=CgBjo2ZWpYNkt9TgvToL26h2Tg1yt8FbvYTb5NVgNuc,51
102
- splunk_soar_sdk-1.6.2.dist-info/licenses/LICENSE,sha256=gNCGrGhrSQb1PUzBOByVUN1tvaliwLZfna-QU2r2hQ8,11345
103
- splunk_soar_sdk-1.6.2.dist-info/RECORD,,
99
+ splunk_soar_sdk-1.6.3.dist-info/METADATA,sha256=0_WxMtlZ3BrXjEpcCJ5Yg8nVkQi4gfv9ProOkQPr1mw,7361
100
+ splunk_soar_sdk-1.6.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
101
+ splunk_soar_sdk-1.6.3.dist-info/entry_points.txt,sha256=CgBjo2ZWpYNkt9TgvToL26h2Tg1yt8FbvYTb5NVgNuc,51
102
+ splunk_soar_sdk-1.6.3.dist-info/licenses/LICENSE,sha256=gNCGrGhrSQb1PUzBOByVUN1tvaliwLZfna-QU2r2hQ8,11345
103
+ splunk_soar_sdk-1.6.3.dist-info/RECORD,,