syllable-sdk 0.41.14__py3-none-any.whl → 0.41.20__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.
syllable_sdk/_version.py CHANGED
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "syllable-sdk"
6
- __version__: str = "0.41.14"
6
+ __version__: str = "0.41.20"
7
7
  __openapi_doc_version__: str = "0.0.2"
8
- __gen_version__: str = "2.751.0"
9
- __user_agent__: str = "speakeasy-sdk/python 0.41.14 2.751.0 0.0.2 syllable-sdk"
8
+ __gen_version__: str = "2.755.9"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.41.20 2.755.9 0.0.2 syllable-sdk"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -172,6 +172,7 @@ if TYPE_CHECKING:
172
172
  CustomMessagesListRequest,
173
173
  CustomMessagesListRequestTypedDict,
174
174
  )
175
+ from .custommessageconfig import CustomMessageConfig, CustomMessageConfigTypedDict
175
176
  from .custommessagecreaterequest import (
176
177
  CustomMessageCreateRequest,
177
178
  CustomMessageCreateRequestTypedDict,
@@ -696,10 +697,6 @@ if TYPE_CHECKING:
696
697
  PronunciationOverridesDictionary,
697
698
  PronunciationOverridesDictionaryTypedDict,
698
699
  )
699
- from .pronunciations_download_csvop import (
700
- PronunciationsDownloadCsvResponse,
701
- PronunciationsDownloadCsvResponseTypedDict,
702
- )
703
700
  from .pronunciationscsvuploadresponse import (
704
701
  PronunciationsCsvUploadResponse,
705
702
  PronunciationsCsvUploadResponseTypedDict,
@@ -1051,6 +1048,8 @@ __all__ = [
1051
1048
  "ConversationsListRequestTypedDict",
1052
1049
  "CreateTakeoutResponse",
1053
1050
  "CreateTakeoutResponseTypedDict",
1051
+ "CustomMessageConfig",
1052
+ "CustomMessageConfigTypedDict",
1054
1053
  "CustomMessageCreateRequest",
1055
1054
  "CustomMessageCreateRequestTypedDict",
1056
1055
  "CustomMessageGetByIDRequest",
@@ -1392,8 +1391,6 @@ __all__ = [
1392
1391
  "PronunciationOverridesDictionaryTypedDict",
1393
1392
  "PronunciationsCsvUploadResponse",
1394
1393
  "PronunciationsCsvUploadResponseTypedDict",
1395
- "PronunciationsDownloadCsvResponse",
1396
- "PronunciationsDownloadCsvResponseTypedDict",
1397
1394
  "RequestStatus",
1398
1395
  "RoleCreateRequest",
1399
1396
  "RoleCreateRequestTypedDict",
@@ -1701,6 +1698,8 @@ _dynamic_imports: dict[str, str] = {
1701
1698
  "CustomMessagesDeleteRequestTypedDict": ".custom_messages_deleteop",
1702
1699
  "CustomMessagesListRequest": ".custom_messages_listop",
1703
1700
  "CustomMessagesListRequestTypedDict": ".custom_messages_listop",
1701
+ "CustomMessageConfig": ".custommessageconfig",
1702
+ "CustomMessageConfigTypedDict": ".custommessageconfig",
1704
1703
  "CustomMessageCreateRequest": ".custommessagecreaterequest",
1705
1704
  "CustomMessageCreateRequestTypedDict": ".custommessagecreaterequest",
1706
1705
  "CustomMessageProperties": ".custommessageproperties",
@@ -2034,8 +2033,6 @@ _dynamic_imports: dict[str, str] = {
2034
2033
  "PronunciationOverrideTypedDict": ".pronunciationoverride",
2035
2034
  "PronunciationOverridesDictionary": ".pronunciationoverridesdictionary",
2036
2035
  "PronunciationOverridesDictionaryTypedDict": ".pronunciationoverridesdictionary",
2037
- "PronunciationsDownloadCsvResponse": ".pronunciations_download_csvop",
2038
- "PronunciationsDownloadCsvResponseTypedDict": ".pronunciations_download_csvop",
2039
2036
  "PronunciationsCsvUploadResponse": ".pronunciationscsvuploadresponse",
2040
2037
  "PronunciationsCsvUploadResponseTypedDict": ".pronunciationscsvuploadresponse",
2041
2038
  "RequestStatus": ".requeststatus",
@@ -0,0 +1,20 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from syllable_sdk.types import BaseModel
5
+ from typing import Optional
6
+ from typing_extensions import NotRequired, TypedDict
7
+
8
+
9
+ class CustomMessageConfigTypedDict(TypedDict):
10
+ r"""Additional configuration options for the message."""
11
+
12
+ user_initiated_non_voice_session_behavior: NotRequired[str]
13
+ r"""The behavior of an agent assigned this message at the beginning of a user-initiated non-voice session (e.g., SMS, email, etc.). 'respond_only' will skip the message and respond to the user's message. 'greet_and_respond' will deliver the message and respond to the user's message. 'greet_only' will deliver the message and not respond to the user's message. Defaults to 'greet_only'."""
14
+
15
+
16
+ class CustomMessageConfig(BaseModel):
17
+ r"""Additional configuration options for the message."""
18
+
19
+ user_initiated_non_voice_session_behavior: Optional[str] = "greet_only"
20
+ r"""The behavior of an agent assigned this message at the beginning of a user-initiated non-voice session (e.g., SMS, email, etc.). 'respond_only' will skip the message and respond to the user's message. 'greet_and_respond' will deliver the message and respond to the user's message. 'greet_only' will deliver the message and not respond to the user's message. Defaults to 'greet_only'."""
@@ -1,6 +1,7 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
+ from .custommessageconfig import CustomMessageConfig, CustomMessageConfigTypedDict
4
5
  from .custommessagerule import CustomMessageRule, CustomMessageRuleTypedDict
5
6
  from pydantic import model_serializer
6
7
  from syllable_sdk.types import (
@@ -25,6 +26,8 @@ class CustomMessageCreateRequestTypedDict(TypedDict):
25
26
  r"""The label of the custom message"""
26
27
  rules: NotRequired[List[CustomMessageRuleTypedDict]]
27
28
  r"""Rules for time-specific message variants"""
29
+ config: NotRequired[CustomMessageConfigTypedDict]
30
+ r"""Additional configuration options for the message."""
28
31
  type: NotRequired[str]
29
32
  r"""Type of the custom message (must be \"greeting\" for now)"""
30
33
 
@@ -44,12 +47,15 @@ class CustomMessageCreateRequest(BaseModel):
44
47
  rules: Optional[List[CustomMessageRule]] = None
45
48
  r"""Rules for time-specific message variants"""
46
49
 
50
+ config: Optional[CustomMessageConfig] = None
51
+ r"""Additional configuration options for the message."""
52
+
47
53
  type: Optional[str] = "greeting"
48
54
  r"""Type of the custom message (must be \"greeting\" for now)"""
49
55
 
50
56
  @model_serializer(mode="wrap")
51
57
  def serialize_model(self, handler):
52
- optional_fields = ["label", "rules", "type"]
58
+ optional_fields = ["label", "rules", "config", "type"]
53
59
  nullable_fields = ["label"]
54
60
  null_default_fields = []
55
61
 
@@ -1,6 +1,7 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
+ from .custommessageconfig import CustomMessageConfig, CustomMessageConfigTypedDict
4
5
  from .custommessagerule import CustomMessageRule, CustomMessageRuleTypedDict
5
6
  from datetime import datetime
6
7
  from pydantic import model_serializer
@@ -38,6 +39,8 @@ class CustomMessageResponseTypedDict(TypedDict):
38
39
  r"""The label of the custom message"""
39
40
  rules: NotRequired[List[CustomMessageRuleTypedDict]]
40
41
  r"""Rules for time-specific message variants"""
42
+ config: NotRequired[CustomMessageConfigTypedDict]
43
+ r"""Additional configuration options for the message."""
41
44
  agent_count: NotRequired[Nullable[int]]
42
45
  r"""The number of agents using the custom message"""
43
46
  type: NotRequired[str]
@@ -74,6 +77,9 @@ class CustomMessageResponse(BaseModel):
74
77
  rules: Optional[List[CustomMessageRule]] = None
75
78
  r"""Rules for time-specific message variants"""
76
79
 
80
+ config: Optional[CustomMessageConfig] = None
81
+ r"""Additional configuration options for the message."""
82
+
77
83
  agent_count: OptionalNullable[int] = UNSET
78
84
  r"""The number of agents using the custom message"""
79
85
 
@@ -82,7 +88,7 @@ class CustomMessageResponse(BaseModel):
82
88
 
83
89
  @model_serializer(mode="wrap")
84
90
  def serialize_model(self, handler):
85
- optional_fields = ["label", "rules", "agent_count", "type"]
91
+ optional_fields = ["label", "rules", "config", "agent_count", "type"]
86
92
  nullable_fields = ["label", "agent_count"]
87
93
  null_default_fields = []
88
94
 
@@ -1,6 +1,7 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
+ from .custommessageconfig import CustomMessageConfig, CustomMessageConfigTypedDict
4
5
  from .custommessagerule import CustomMessageRule, CustomMessageRuleTypedDict
5
6
  from pydantic import model_serializer
6
7
  from syllable_sdk.types import (
@@ -27,6 +28,8 @@ class CustomMessageUpdateRequestTypedDict(TypedDict):
27
28
  r"""The label of the custom message"""
28
29
  rules: NotRequired[List[CustomMessageRuleTypedDict]]
29
30
  r"""Rules for time-specific message variants"""
31
+ config: NotRequired[CustomMessageConfigTypedDict]
32
+ r"""Additional configuration options for the message."""
30
33
  type: NotRequired[str]
31
34
  r"""Type of the custom message (must be \"greeting\" for now)"""
32
35
 
@@ -49,12 +52,15 @@ class CustomMessageUpdateRequest(BaseModel):
49
52
  rules: Optional[List[CustomMessageRule]] = None
50
53
  r"""Rules for time-specific message variants"""
51
54
 
55
+ config: Optional[CustomMessageConfig] = None
56
+ r"""Additional configuration options for the message."""
57
+
52
58
  type: Optional[str] = "greeting"
53
59
  r"""Type of the custom message (must be \"greeting\" for now)"""
54
60
 
55
61
  @model_serializer(mode="wrap")
56
62
  def serialize_model(self, handler):
57
- optional_fields = ["label", "rules", "type"]
63
+ optional_fields = ["label", "rules", "config", "type"]
58
64
  nullable_fields = ["label"]
59
65
  null_default_fields = []
60
66
 
@@ -1,6 +1,7 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from .basesdk import BaseSDK
4
+ import httpx
4
5
  from syllable_sdk import errors, models, utils
5
6
  from syllable_sdk._hooks import HookContext
6
7
  from syllable_sdk.types import BaseModel, OptionalNullable, UNSET
@@ -317,7 +318,7 @@ class Pronunciations(BaseSDK):
317
318
  server_url: Optional[str] = None,
318
319
  timeout_ms: Optional[int] = None,
319
320
  http_headers: Optional[Mapping[str, str]] = None,
320
- ) -> models.PronunciationsDownloadCsvResponse:
321
+ ) -> httpx.Response:
321
322
  r"""Download Pronunciations Csv
322
323
 
323
324
  :param retries: Override the default retry configuration for this method
@@ -375,9 +376,7 @@ class Pronunciations(BaseSDK):
375
376
  )
376
377
 
377
378
  if utils.match_response(http_res, "200", "text/csv"):
378
- return models.PronunciationsDownloadCsvResponse(
379
- result=http_res, headers=utils.get_response_headers(http_res.headers)
380
- )
379
+ return http_res
381
380
  if utils.match_response(http_res, "4XX", "*"):
382
381
  http_res_text = utils.stream_to_text(http_res)
383
382
  raise errors.APIError("API error occurred", http_res, http_res_text)
@@ -395,7 +394,7 @@ class Pronunciations(BaseSDK):
395
394
  server_url: Optional[str] = None,
396
395
  timeout_ms: Optional[int] = None,
397
396
  http_headers: Optional[Mapping[str, str]] = None,
398
- ) -> models.PronunciationsDownloadCsvResponse:
397
+ ) -> httpx.Response:
399
398
  r"""Download Pronunciations Csv
400
399
 
401
400
  :param retries: Override the default retry configuration for this method
@@ -453,9 +452,7 @@ class Pronunciations(BaseSDK):
453
452
  )
454
453
 
455
454
  if utils.match_response(http_res, "200", "text/csv"):
456
- return models.PronunciationsDownloadCsvResponse(
457
- result=http_res, headers=utils.get_response_headers(http_res.headers)
458
- )
455
+ return http_res
459
456
  if utils.match_response(http_res, "4XX", "*"):
460
457
  http_res_text = await utils.stream_to_text_async(http_res)
461
458
  raise errors.APIError("API error occurred", http_res, http_res_text)
@@ -1,12 +1,26 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
- from typing import Any, Optional
3
+ from typing import Any, Optional, Type, TypeVar, overload
4
4
 
5
5
  import httpx
6
6
 
7
7
  from .serializers import unmarshal_json
8
8
  from syllable_sdk import errors
9
9
 
10
+ T = TypeVar("T")
11
+
12
+
13
+ @overload
14
+ def unmarshal_json_response(
15
+ typ: Type[T], http_res: httpx.Response, body: Optional[str] = None
16
+ ) -> T: ...
17
+
18
+
19
+ @overload
20
+ def unmarshal_json_response(
21
+ typ: Any, http_res: httpx.Response, body: Optional[str] = None
22
+ ) -> Any: ...
23
+
10
24
 
11
25
  def unmarshal_json_response(
12
26
  typ: Any, http_res: httpx.Response, body: Optional[str] = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: syllable-sdk
3
- Version: 0.41.14
3
+ Version: 0.41.20
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Syllable
6
6
  Requires-Python: >=3.9.2
@@ -3,7 +3,7 @@ syllable_sdk/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU
3
3
  syllable_sdk/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
4
4
  syllable_sdk/_hooks/sdkhooks.py,sha256=aRu2TMpxilLKDrG6EIy6uQd6IrBH7kaHOoVkd7GIcus,2562
5
5
  syllable_sdk/_hooks/types.py,sha256=uwJkn18g4_rLZhVtKdE6Ed5YcCjGWSqVgN9-PWqV7Ho,3053
6
- syllable_sdk/_version.py,sha256=GrPK3l2ACP_fX2F5LQdhbrPjGRgwjmZL47dmFPStBx8,470
6
+ syllable_sdk/_version.py,sha256=sZccEOikz3RkNTZE8L8Yu9UUrSok-X-dpHGB3BLLR_o,470
7
7
  syllable_sdk/agents.py,sha256=KV-3_nFZGBOQV0IAfjO3TFhorfr-PV6eeuTl6DL8AqI,46820
8
8
  syllable_sdk/basesdk.py,sha256=PCXez-bS_sOzXpRo7awDMzW4zqGJtktHytrlQfG1HNw,12211
9
9
  syllable_sdk/batches.py,sha256=I-mV5vzpM3BfO91NLmtwt-GKhrOjf351XWFLrdvIofU,73095
@@ -29,7 +29,7 @@ syllable_sdk/insights_sdk.py,sha256=_RfPEqpJGTYpGv0kxID2YQb-EbbhZKc82VwlB4xDON4,
29
29
  syllable_sdk/insights_tools.py,sha256=CcOobBAVx2kS8fj4Qk6eoPanmVpEMK7oH9IFaijDlQs,55143
30
30
  syllable_sdk/language_groups.py,sha256=6x4_4TNhVaz-O50iT1hpDQGfoH1OZdIR0-lL4y5Psbg,51531
31
31
  syllable_sdk/latency.py,sha256=qJT16MmojZcxXD2-x5i27FplrB4O_fAN264LsHbHckg,7453
32
- syllable_sdk/models/__init__.py,sha256=IO-o6wdU3f610vYFjZBURrwKxZ3-sghEFX8h58fVyhc,96830
32
+ syllable_sdk/models/__init__.py,sha256=53iDQAXzIPn6qM3Hjutqc37uabZ3bfjZCS76LrDPjFc,96691
33
33
  syllable_sdk/models/agent_deleteop.py,sha256=tUbi-gwd4chf2Ba9O9lCvqDQw6YOnn7aheu8OPDzptc,629
34
34
  syllable_sdk/models/agent_get_by_idop.py,sha256=vj_xEbhOv3c8n3-B3uQnfTwHWdxYSE4k3Zvr58Yc9A4,484
35
35
  syllable_sdk/models/agent_listop.py,sha256=dJdQuIst1TF4xMol9XVdX4xOw8z06jyAQpm46_u0Ysk,5007
@@ -92,11 +92,12 @@ syllable_sdk/models/createtakeoutresponse.py,sha256=MuO3HWPcpU8T1IXvrcWklhac3P7s
92
92
  syllable_sdk/models/custom_message_get_by_idop.py,sha256=07SmbsleEoeO7xNyppH9p4oJNjpP45W3N6dR9wrpvVs,518
93
93
  syllable_sdk/models/custom_messages_deleteop.py,sha256=3-lNvqQ93OATAHxSFknM0nTl4ciz9i3Pk0wIuYWZipA,665
94
94
  syllable_sdk/models/custom_messages_listop.py,sha256=1FpcixhTIQfooFeOLkfPoLu9KwkZ42pPfvNLH8K-pQ0,5089
95
- syllable_sdk/models/custommessagecreaterequest.py,sha256=Pjh2oT0kWQ1PNTAMJ8lt7hu4Cl_XgBYRIYs2Gv1YVcw,2525
95
+ syllable_sdk/models/custommessageconfig.py,sha256=UIgrr1AfY38ixnHK5Zzg-Fr1lrkHTp5vg_0FnE6BfJo,1371
96
+ syllable_sdk/models/custommessagecreaterequest.py,sha256=7NSPZCWonJHk3v4vAbyKbboGMHxDN8jnskqIdMfMGW8,2844
96
97
  syllable_sdk/models/custommessageproperties.py,sha256=d5QrfThosurEgPFUlZun168xmjcvPlKop9Ay3i87BnI,304
97
- syllable_sdk/models/custommessageresponse.py,sha256=WNXTV-Qv2zQ4sKUqjU2MbhwRA0dGjLSOHsB5CJma6zM,4258
98
+ syllable_sdk/models/custommessageresponse.py,sha256=U_MYTR1Npy8qrR82bbWAlHjjU8s3pPcbFit8gKh0174,4577
98
99
  syllable_sdk/models/custommessagerule.py,sha256=w97jz-I-riDHSVmq1Qeu7nuW6V91heV0x60XSgGi56o,3280
99
- syllable_sdk/models/custommessageupdaterequest.py,sha256=4Hj63sregTQ7-VDLTqALlkUDM5J9yKLhe9ddFYgzLBI,2650
100
+ syllable_sdk/models/custommessageupdaterequest.py,sha256=qGWGu2GLEDT5DtQS9Y1xPnCWhVd-CzF8LmIHZ7ICzj8,2969
100
101
  syllable_sdk/models/daotoolresponse.py,sha256=b0bVgo94XvjFgq-Ki5vr044zexGywNzNNbd_WtbunkE,3802
101
102
  syllable_sdk/models/dashboard.py,sha256=Q7Tji4r3VKAvrjPRE4NOyRsldyFLHXdie5hBODSdkMM,993
102
103
  syllable_sdk/models/dashboardproperties.py,sha256=JhuzlUJK4VHGWalpvKbZfu6LK-KcmP189BwubyfRhYk,362
@@ -264,7 +265,6 @@ syllable_sdk/models/prompts_listop.py,sha256=s9iHPBo_MDmtVvwh3bqEFSgxmNVUqjNebO8
264
265
  syllable_sdk/models/promptupdaterequest.py,sha256=H-PEJ_C9DbHEjwpkyDfbehKPd6OyLmPPBdK11GqtXqM,4221
265
266
  syllable_sdk/models/pronunciationoverride.py,sha256=hh40Pm5_foJuS57H-umDw55KMFnYxM_fai5NbLFVu_Y,1120
266
267
  syllable_sdk/models/pronunciationoverridesdictionary.py,sha256=VAVif2n6qV2xIYNugb9DT52U33PwW1YXFDIGcFPWuPQ,2693
267
- syllable_sdk/models/pronunciations_download_csvop.py,sha256=xCoc57YcYPwYjhJ1ZcfvpaDePoEJ4HJuXIgyBSL0hlA,472
268
268
  syllable_sdk/models/pronunciationscsvuploadresponse.py,sha256=SjHZfk0je0BPUlYCU5BkO8eR7fup9B1EpKkafjra0JU,773
269
269
  syllable_sdk/models/requeststatus.py,sha256=zvE_ov3uTsDY0R2MAMrl2YCVvwkMLO1qREEogFcT5wQ,429
270
270
  syllable_sdk/models/rolecreaterequest.py,sha256=6p4WSFxwIeQrDvAy5hqu2_bSMC5o2IvgkX6I3_Tn_iY,1990
@@ -370,7 +370,7 @@ syllable_sdk/organizations.py,sha256=xe843aVTG2lTMY14LdpBDQCfgSd6hPDc8XacBwILLYU
370
370
  syllable_sdk/outbound.py,sha256=SKcqICw_VNT4vGDdu6b4TFh55hdA4Nh3QbZHbTs3MIc,902
371
371
  syllable_sdk/permissions.py,sha256=AVjhL5dMyMPACBpDZBxcocon4_OF5NqXooFQNFeGlvI,6895
372
372
  syllable_sdk/prompts.py,sha256=qu4yha2PdiG5ntsGjOgZIlwbRFaFlaCzvcxbm4cYKC0,53372
373
- syllable_sdk/pronunciations.py,sha256=eDd25xxtUAaqzeyiF-unpR5RL7hpAJICVSGg_9i_gNA,32972
373
+ syllable_sdk/pronunciations.py,sha256=pubjPXB4TzcyxupwgJGqECaYw54Y_5iFRymMMYtpO8Y,32667
374
374
  syllable_sdk/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
375
375
  syllable_sdk/roles.py,sha256=zt9FWrBptDZ4Lz3_aJYetvkEVdxSHE9fGXeRlR0MLhk,40394
376
376
  syllable_sdk/sdk.py,sha256=pokZi3ctgGEHa--dfC4taqX_wihqRxruFfKn8IIPTVM,16815
@@ -402,12 +402,12 @@ syllable_sdk/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4
402
402
  syllable_sdk/utils/retries.py,sha256=6yhfZifqIat9i76xF0lTR2jLj1IN9BNGyqqxATlEFPU,6348
403
403
  syllable_sdk/utils/security.py,sha256=ISsENQVLMQAPDsJ09g-m67Bs9YaS1-H-Hhw89RBJA3E,6037
404
404
  syllable_sdk/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6PN7R-0HwvOE,5999
405
- syllable_sdk/utils/unmarshal_json_response.py,sha256=ie3yrnympvSLf0qqOrnZFbnV_tswyDbbDjqFLU_IBzc,588
405
+ syllable_sdk/utils/unmarshal_json_response.py,sha256=DwB7Hxdo9JjWFMqsxsTznV6d_MIlLLLz-tq04at_X9s,877
406
406
  syllable_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
407
407
  syllable_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
408
408
  syllable_sdk/v1.py,sha256=BuA9D8PTM3ACw7t2p_wd6bIZblDM1JF8Scx0U2GPpCQ,53476
409
409
  syllable_sdk/voice_groups.py,sha256=m68HbT6z6SWtGWPoZaFFu6NIyNYIG7H9H5QkQuzlTQU,48512
410
410
  syllable_sdk/workflows.py,sha256=xHWT4Wl65qw2jvNZ5xF_MwpR5xd5147cSlQE_6gvfSo,64809
411
- syllable_sdk-0.41.14.dist-info/METADATA,sha256=q2liWdIf2AybyfCw9HgERDJfdMNyQBUYe2lSn1Pd7ls,49729
412
- syllable_sdk-0.41.14.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
413
- syllable_sdk-0.41.14.dist-info/RECORD,,
411
+ syllable_sdk-0.41.20.dist-info/METADATA,sha256=j47ApnaDDFmXiT6Eb_wECMuCi3t2N2XIunLk8K-Woeg,49729
412
+ syllable_sdk-0.41.20.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
413
+ syllable_sdk-0.41.20.dist-info/RECORD,,
@@ -1,18 +0,0 @@
1
- """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
-
3
- from __future__ import annotations
4
- import httpx
5
- from syllable_sdk.types import BaseModel
6
- from typing import Dict, List
7
- from typing_extensions import TypedDict
8
-
9
-
10
- class PronunciationsDownloadCsvResponseTypedDict(TypedDict):
11
- headers: Dict[str, List[str]]
12
- result: httpx.Response
13
-
14
-
15
- class PronunciationsDownloadCsvResponse(BaseModel):
16
- headers: Dict[str, List[str]]
17
-
18
- result: httpx.Response