syllable-sdk 0.44.12__py3-none-any.whl → 0.44.17__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.44.12"
6
+ __version__: str = "0.44.17"
7
7
  __openapi_doc_version__: str = "0.0.3"
8
- __gen_version__: str = "2.781.2"
9
- __user_agent__: str = "speakeasy-sdk/python 0.44.12 2.781.2 0.0.3 syllable-sdk"
8
+ __gen_version__: str = "2.791.1"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.44.17 2.791.1 0.0.3 syllable-sdk"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -26,8 +26,6 @@ class AgentCreateTypedDict(TypedDict):
26
26
  r"""The agent type. Must be \"ca_v1\" currently."""
27
27
  prompt_id: int
28
28
  r"""ID of the prompt associated with the agent"""
29
- custom_message_id: int
30
- r"""Internal ID of the custom message that should be delivered at the beginning of a conversation with the agent"""
31
29
  timezone: str
32
30
  r"""The time zone in which the agent operates"""
33
31
  variables: Dict[str, str]
@@ -40,6 +38,8 @@ class AgentCreateTypedDict(TypedDict):
40
38
  r"""The agent label (DEPRECATED - use labels instead.)"""
41
39
  labels: NotRequired[Nullable[List[str]]]
42
40
  r"""The agent labels"""
41
+ custom_message_id: NotRequired[Nullable[int]]
42
+ r"""Internal ID of the custom message that should be delivered at the beginning of a conversation with the agent"""
43
43
  language_group_id: NotRequired[Nullable[int]]
44
44
  r"""Internal ID of the language group associated with the agent"""
45
45
  prompt_tool_defaults: NotRequired[List[AgentToolDefaultsTypedDict]]
@@ -66,9 +66,6 @@ class AgentCreate(BaseModel):
66
66
  prompt_id: int
67
67
  r"""ID of the prompt associated with the agent"""
68
68
 
69
- custom_message_id: int
70
- r"""Internal ID of the custom message that should be delivered at the beginning of a conversation with the agent"""
71
-
72
69
  timezone: str
73
70
  r"""The time zone in which the agent operates"""
74
71
 
@@ -92,6 +89,9 @@ class AgentCreate(BaseModel):
92
89
  labels: OptionalNullable[List[str]] = UNSET
93
90
  r"""The agent labels"""
94
91
 
92
+ custom_message_id: OptionalNullable[int] = UNSET
93
+ r"""Internal ID of the custom message that should be delivered at the beginning of a conversation with the agent"""
94
+
95
95
  language_group_id: OptionalNullable[int] = UNSET
96
96
  r"""Internal ID of the language group associated with the agent"""
97
97
 
@@ -121,6 +121,7 @@ class AgentCreate(BaseModel):
121
121
  "description",
122
122
  "label",
123
123
  "labels",
124
+ "custom_message_id",
124
125
  "language_group_id",
125
126
  "prompt_tool_defaults",
126
127
  "languages",
@@ -132,6 +133,7 @@ class AgentCreate(BaseModel):
132
133
  "description",
133
134
  "label",
134
135
  "labels",
136
+ "custom_message_id",
135
137
  "language_group_id",
136
138
  "tool_headers",
137
139
  "stt_provider",
@@ -40,8 +40,6 @@ class AgentResponseTypedDict(TypedDict):
40
40
  r"""The agent type. Must be \"ca_v1\" currently."""
41
41
  prompt_id: int
42
42
  r"""ID of the prompt associated with the agent"""
43
- custom_message_id: int
44
- r"""Internal ID of the custom message that should be delivered at the beginning of a conversation with the agent"""
45
43
  timezone: str
46
44
  r"""The time zone in which the agent operates"""
47
45
  variables: Dict[str, str]
@@ -60,6 +58,8 @@ class AgentResponseTypedDict(TypedDict):
60
58
  r"""The agent label (DEPRECATED - use labels instead.)"""
61
59
  labels: NotRequired[Nullable[List[str]]]
62
60
  r"""The agent labels"""
61
+ custom_message_id: NotRequired[Nullable[int]]
62
+ r"""Internal ID of the custom message that should be delivered at the beginning of a conversation with the agent"""
63
63
  language_group_id: NotRequired[Nullable[int]]
64
64
  r"""Internal ID of the language group associated with the agent"""
65
65
  prompt_tool_defaults: NotRequired[List[AgentToolDefaultsTypedDict]]
@@ -101,9 +101,6 @@ class AgentResponse(BaseModel):
101
101
  prompt_id: int
102
102
  r"""ID of the prompt associated with the agent"""
103
103
 
104
- custom_message_id: int
105
- r"""Internal ID of the custom message that should be delivered at the beginning of a conversation with the agent"""
106
-
107
104
  timezone: str
108
105
  r"""The time zone in which the agent operates"""
109
106
 
@@ -136,6 +133,9 @@ class AgentResponse(BaseModel):
136
133
  labels: OptionalNullable[List[str]] = UNSET
137
134
  r"""The agent labels"""
138
135
 
136
+ custom_message_id: OptionalNullable[int] = UNSET
137
+ r"""Internal ID of the custom message that should be delivered at the beginning of a conversation with the agent"""
138
+
139
139
  language_group_id: OptionalNullable[int] = UNSET
140
140
  r"""Internal ID of the language group associated with the agent"""
141
141
 
@@ -180,6 +180,7 @@ class AgentResponse(BaseModel):
180
180
  "description",
181
181
  "label",
182
182
  "labels",
183
+ "custom_message_id",
183
184
  "language_group_id",
184
185
  "prompt_tool_defaults",
185
186
  "languages",
@@ -196,6 +197,7 @@ class AgentResponse(BaseModel):
196
197
  "description",
197
198
  "label",
198
199
  "labels",
200
+ "custom_message_id",
199
201
  "language_group_id",
200
202
  "tool_headers",
201
203
  "stt_provider",
@@ -26,8 +26,6 @@ class AgentUpdateTypedDict(TypedDict):
26
26
  r"""The agent type. Must be \"ca_v1\" currently."""
27
27
  prompt_id: int
28
28
  r"""ID of the prompt associated with the agent"""
29
- custom_message_id: int
30
- r"""Internal ID of the custom message that should be delivered at the beginning of a conversation with the agent"""
31
29
  timezone: str
32
30
  r"""The time zone in which the agent operates"""
33
31
  variables: Dict[str, str]
@@ -42,6 +40,8 @@ class AgentUpdateTypedDict(TypedDict):
42
40
  r"""The agent label (DEPRECATED - use labels instead.)"""
43
41
  labels: NotRequired[Nullable[List[str]]]
44
42
  r"""The agent labels"""
43
+ custom_message_id: NotRequired[Nullable[int]]
44
+ r"""Internal ID of the custom message that should be delivered at the beginning of a conversation with the agent"""
45
45
  language_group_id: NotRequired[Nullable[int]]
46
46
  r"""Internal ID of the language group associated with the agent"""
47
47
  prompt_tool_defaults: NotRequired[List[AgentToolDefaultsTypedDict]]
@@ -68,9 +68,6 @@ class AgentUpdate(BaseModel):
68
68
  prompt_id: int
69
69
  r"""ID of the prompt associated with the agent"""
70
70
 
71
- custom_message_id: int
72
- r"""Internal ID of the custom message that should be delivered at the beginning of a conversation with the agent"""
73
-
74
71
  timezone: str
75
72
  r"""The time zone in which the agent operates"""
76
73
 
@@ -97,6 +94,9 @@ class AgentUpdate(BaseModel):
97
94
  labels: OptionalNullable[List[str]] = UNSET
98
95
  r"""The agent labels"""
99
96
 
97
+ custom_message_id: OptionalNullable[int] = UNSET
98
+ r"""Internal ID of the custom message that should be delivered at the beginning of a conversation with the agent"""
99
+
100
100
  language_group_id: OptionalNullable[int] = UNSET
101
101
  r"""Internal ID of the language group associated with the agent"""
102
102
 
@@ -126,6 +126,7 @@ class AgentUpdate(BaseModel):
126
126
  "description",
127
127
  "label",
128
128
  "labels",
129
+ "custom_message_id",
129
130
  "language_group_id",
130
131
  "prompt_tool_defaults",
131
132
  "languages",
@@ -137,6 +138,7 @@ class AgentUpdate(BaseModel):
137
138
  "description",
138
139
  "label",
139
140
  "labels",
141
+ "custom_message_id",
140
142
  "language_group_id",
141
143
  "tool_headers",
142
144
  "stt_provider",
@@ -21,6 +21,8 @@ class CustomMessageCreateRequestTypedDict(TypedDict):
21
21
  r"""The name of the custom message"""
22
22
  text: str
23
23
  r"""The default message that the agent will deliver if no rules are set or no rules match the current timestamp."""
24
+ preamble: NotRequired[Nullable[str]]
25
+ r"""An optional preamble that will be delivered before the main message, regardless of whether the current time and date match a rule or the system uses the default message. Cannot contain the \"{{ language.mode }}\" tag. In the case of a voice conversation, the user will not be able to interrupt the preamble. Can be used for e.g. legal disclaimers that the user must always see/hear."""
24
26
  label: NotRequired[Nullable[str]]
25
27
  r"""The label of the custom message"""
26
28
  rules: NotRequired[List[CustomMessageRuleTypedDict]]
@@ -38,6 +40,9 @@ class CustomMessageCreateRequest(BaseModel):
38
40
  text: str
39
41
  r"""The default message that the agent will deliver if no rules are set or no rules match the current timestamp."""
40
42
 
43
+ preamble: OptionalNullable[str] = UNSET
44
+ r"""An optional preamble that will be delivered before the main message, regardless of whether the current time and date match a rule or the system uses the default message. Cannot contain the \"{{ language.mode }}\" tag. In the case of a voice conversation, the user will not be able to interrupt the preamble. Can be used for e.g. legal disclaimers that the user must always see/hear."""
45
+
41
46
  label: OptionalNullable[str] = UNSET
42
47
  r"""The label of the custom message"""
43
48
 
@@ -49,8 +54,8 @@ class CustomMessageCreateRequest(BaseModel):
49
54
 
50
55
  @model_serializer(mode="wrap")
51
56
  def serialize_model(self, handler):
52
- optional_fields = ["label", "rules", "type"]
53
- nullable_fields = ["label"]
57
+ optional_fields = ["preamble", "label", "rules", "type"]
58
+ nullable_fields = ["preamble", "label"]
54
59
  null_default_fields = []
55
60
 
56
61
  serialized = handler(self)
@@ -34,6 +34,8 @@ class CustomMessageResponseTypedDict(TypedDict):
34
34
  r"""Timestamp of the most recent update to the custom message"""
35
35
  last_updated_by: str
36
36
  r"""The email address of the user who most recently updated the custom message"""
37
+ preamble: NotRequired[Nullable[str]]
38
+ r"""An optional preamble that will be delivered before the main message, regardless of whether the current time and date match a rule or the system uses the default message. Cannot contain the \"{{ language.mode }}\" tag. In the case of a voice conversation, the user will not be able to interrupt the preamble. Can be used for e.g. legal disclaimers that the user must always see/hear."""
37
39
  label: NotRequired[Nullable[str]]
38
40
  r"""The label of the custom message"""
39
41
  rules: NotRequired[List[CustomMessageRuleTypedDict]]
@@ -68,6 +70,9 @@ class CustomMessageResponse(BaseModel):
68
70
  last_updated_by: str
69
71
  r"""The email address of the user who most recently updated the custom message"""
70
72
 
73
+ preamble: OptionalNullable[str] = UNSET
74
+ r"""An optional preamble that will be delivered before the main message, regardless of whether the current time and date match a rule or the system uses the default message. Cannot contain the \"{{ language.mode }}\" tag. In the case of a voice conversation, the user will not be able to interrupt the preamble. Can be used for e.g. legal disclaimers that the user must always see/hear."""
75
+
71
76
  label: OptionalNullable[str] = UNSET
72
77
  r"""The label of the custom message"""
73
78
 
@@ -82,8 +87,8 @@ class CustomMessageResponse(BaseModel):
82
87
 
83
88
  @model_serializer(mode="wrap")
84
89
  def serialize_model(self, handler):
85
- optional_fields = ["label", "rules", "agent_count", "type"]
86
- nullable_fields = ["label", "agent_count"]
90
+ optional_fields = ["preamble", "label", "rules", "agent_count", "type"]
91
+ nullable_fields = ["preamble", "label", "agent_count"]
87
92
  null_default_fields = []
88
93
 
89
94
  serialized = handler(self)
@@ -23,6 +23,8 @@ class CustomMessageUpdateRequestTypedDict(TypedDict):
23
23
  r"""The default message that the agent will deliver if no rules are set or no rules match the current timestamp."""
24
24
  id: int
25
25
  r"""The ID of the custom message"""
26
+ preamble: NotRequired[Nullable[str]]
27
+ r"""An optional preamble that will be delivered before the main message, regardless of whether the current time and date match a rule or the system uses the default message. Cannot contain the \"{{ language.mode }}\" tag. In the case of a voice conversation, the user will not be able to interrupt the preamble. Can be used for e.g. legal disclaimers that the user must always see/hear."""
26
28
  label: NotRequired[Nullable[str]]
27
29
  r"""The label of the custom message"""
28
30
  rules: NotRequired[List[CustomMessageRuleTypedDict]]
@@ -43,6 +45,9 @@ class CustomMessageUpdateRequest(BaseModel):
43
45
  id: int
44
46
  r"""The ID of the custom message"""
45
47
 
48
+ preamble: OptionalNullable[str] = UNSET
49
+ r"""An optional preamble that will be delivered before the main message, regardless of whether the current time and date match a rule or the system uses the default message. Cannot contain the \"{{ language.mode }}\" tag. In the case of a voice conversation, the user will not be able to interrupt the preamble. Can be used for e.g. legal disclaimers that the user must always see/hear."""
50
+
46
51
  label: OptionalNullable[str] = UNSET
47
52
  r"""The label of the custom message"""
48
53
 
@@ -54,8 +59,8 @@ class CustomMessageUpdateRequest(BaseModel):
54
59
 
55
60
  @model_serializer(mode="wrap")
56
61
  def serialize_model(self, handler):
57
- optional_fields = ["label", "rules", "type"]
58
- nullable_fields = ["label"]
62
+ optional_fields = ["preamble", "label", "rules", "type"]
63
+ nullable_fields = ["preamble", "label"]
59
64
  null_default_fields = []
60
65
 
61
66
  serialized = handler(self)
@@ -2,7 +2,8 @@
2
2
 
3
3
  from pydantic import ConfigDict, model_serializer
4
4
  from pydantic import BaseModel as PydanticBaseModel
5
- from typing import TYPE_CHECKING, Literal, Optional, TypeVar, Union
5
+ from pydantic_core import core_schema
6
+ from typing import TYPE_CHECKING, Any, Literal, Optional, TypeVar, Union
6
7
  from typing_extensions import TypeAliasType, TypeAlias
7
8
 
8
9
 
@@ -35,5 +36,42 @@ else:
35
36
  "OptionalNullable", Union[Optional[Nullable[T]], Unset], type_params=(T,)
36
37
  )
37
38
 
38
- UnrecognizedInt: TypeAlias = int
39
- UnrecognizedStr: TypeAlias = str
39
+
40
+ class UnrecognizedStr(str):
41
+ @classmethod
42
+ def __get_pydantic_core_schema__(cls, _source_type: Any, _handler: Any) -> core_schema.CoreSchema:
43
+ # Make UnrecognizedStr only work in lax mode, not strict mode
44
+ # This makes it a "fallback" option when more specific types (like Literals) don't match
45
+ def validate_lax(v: Any) -> 'UnrecognizedStr':
46
+ if isinstance(v, cls):
47
+ return v
48
+ return cls(str(v))
49
+
50
+ # Use lax_or_strict_schema where strict always fails
51
+ # This forces Pydantic to prefer other union members in strict mode
52
+ # and only fall back to UnrecognizedStr in lax mode
53
+ return core_schema.lax_or_strict_schema(
54
+ lax_schema=core_schema.chain_schema([
55
+ core_schema.str_schema(),
56
+ core_schema.no_info_plain_validator_function(validate_lax)
57
+ ]),
58
+ strict_schema=core_schema.none_schema(), # Always fails in strict mode
59
+ )
60
+
61
+
62
+ class UnrecognizedInt(int):
63
+ @classmethod
64
+ def __get_pydantic_core_schema__(cls, _source_type: Any, _handler: Any) -> core_schema.CoreSchema:
65
+ # Make UnrecognizedInt only work in lax mode, not strict mode
66
+ # This makes it a "fallback" option when more specific types (like Literals) don't match
67
+ def validate_lax(v: Any) -> 'UnrecognizedInt':
68
+ if isinstance(v, cls):
69
+ return v
70
+ return cls(int(v))
71
+ return core_schema.lax_or_strict_schema(
72
+ lax_schema=core_schema.chain_schema([
73
+ core_schema.int_schema(),
74
+ core_schema.no_info_plain_validator_function(validate_lax)
75
+ ]),
76
+ strict_schema=core_schema.none_schema(), # Always fails in strict mode
77
+ )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: syllable-sdk
3
- Version: 0.44.12
3
+ Version: 0.44.17
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=NYrzBihFXoa4M_CT3JsPM6pW5DXoJFaEpTopwxBg3ZM,470
6
+ syllable_sdk/_version.py,sha256=JkjatalrwvzwkBJWkwtHEcjvVvQS-tS4oRwCKq_pWuE,470
7
7
  syllable_sdk/agents.py,sha256=5X4d7rstMwWCUTmNH76eX3dTFLGvUtO5fb36hYtXo9w,47252
8
8
  syllable_sdk/basesdk.py,sha256=OZv9Uydmc41Bm5rsLYX8yZdHFZxLCS8f0lABAZkQNs0,12473
9
9
  syllable_sdk/batches.py,sha256=jAL-2jfZqhuVGWd6gG7hzPk7mG_X1M1AuLsO14QRzM8,73743
@@ -34,14 +34,14 @@ syllable_sdk/models/__init__.py,sha256=7oJgUQfb9KvGL3xUb7PWJmaeeJPvAqLG6-7FQUONz
34
34
  syllable_sdk/models/agent_deleteop.py,sha256=tUbi-gwd4chf2Ba9O9lCvqDQw6YOnn7aheu8OPDzptc,629
35
35
  syllable_sdk/models/agent_get_by_idop.py,sha256=vj_xEbhOv3c8n3-B3uQnfTwHWdxYSE4k3Zvr58Yc9A4,484
36
36
  syllable_sdk/models/agent_listop.py,sha256=dJdQuIst1TF4xMol9XVdX4xOw8z06jyAQpm46_u0Ysk,5007
37
- syllable_sdk/models/agentcreate.py,sha256=Yfvu4U3Q0prMFDFSTQPalr7FaVbTKoChcGofc_Cw_T4,6652
37
+ syllable_sdk/models/agentcreate.py,sha256=9qg2WyiKfc5KgOmkRSDHLDIUTmtX7mWAvjab4aLQ4OM,6767
38
38
  syllable_sdk/models/agentlanguage.py,sha256=NkquRaZj2cPpm5bDSf2AuhHsL8NxDOYSDEO8YePUE4o,650
39
39
  syllable_sdk/models/agentproperties.py,sha256=r7acQPPWRA7gZUMbhSrQMyDFw_A7RSRZdKo7yvgGQY0,792
40
- syllable_sdk/models/agentresponse.py,sha256=pa6qBcPUF7LlK1Au29uuT6AN5dDiPDl8q1S1cc6LOqg,9689
40
+ syllable_sdk/models/agentresponse.py,sha256=TEO4pOwpPcFwDI_YQC78eCoutJTN5CnzNhr_tLElODw,9804
41
41
  syllable_sdk/models/agentsttprovider.py,sha256=WiCxgCdl7x1E9xSLpUm3KmwMoT09TNfm00hr6oMlP7Y,491
42
42
  syllable_sdk/models/agenttooldefaults.py,sha256=grephhXpDNRoteEjin5eOFqe2pqh2WHs80wO9As87S4,903
43
43
  syllable_sdk/models/agenttoolfielddefault.py,sha256=80ANVtg-F04tDjWvMj55g2xUujUIx-XtT-_lIQOiYnY,788
44
- syllable_sdk/models/agentupdate.py,sha256=JyNM5fEMKzsrsk1Ydbr3pu0RyJdQZmv80gvsHm9miL8,6767
44
+ syllable_sdk/models/agentupdate.py,sha256=Hrxvi0_5HmkNLzn7N9DARE2_nemj4xFsMYxGB7XpTew,6882
45
45
  syllable_sdk/models/agentvoice.py,sha256=BczZexgI1oNXBnLNT-WOePXj52jTot23Twu2h-qXNJE,1853
46
46
  syllable_sdk/models/agentvoicedisplayname.py,sha256=hWQsGo2OAujZ8SzeZ9CLXblW9WQWYS-i--eFI8VrPEg,5490
47
47
  syllable_sdk/models/agentvoicegender.py,sha256=eSrSwtf7UsFw9hFLcdgtjyp_OeNheZRGJtsu4pOJgPQ,246
@@ -102,11 +102,11 @@ syllable_sdk/models/createtakeoutresponse.py,sha256=MuO3HWPcpU8T1IXvrcWklhac3P7s
102
102
  syllable_sdk/models/custom_message_get_by_idop.py,sha256=07SmbsleEoeO7xNyppH9p4oJNjpP45W3N6dR9wrpvVs,518
103
103
  syllable_sdk/models/custom_messages_deleteop.py,sha256=3-lNvqQ93OATAHxSFknM0nTl4ciz9i3Pk0wIuYWZipA,665
104
104
  syllable_sdk/models/custom_messages_listop.py,sha256=1FpcixhTIQfooFeOLkfPoLu9KwkZ42pPfvNLH8K-pQ0,5089
105
- syllable_sdk/models/custommessagecreaterequest.py,sha256=Pjh2oT0kWQ1PNTAMJ8lt7hu4Cl_XgBYRIYs2Gv1YVcw,2525
105
+ syllable_sdk/models/custommessagecreaterequest.py,sha256=oceJtftFDuhWFY8ta4AMkMEa6Y9vSNvHgFoK6nt4QSo,3423
106
106
  syllable_sdk/models/custommessageproperties.py,sha256=d5QrfThosurEgPFUlZun168xmjcvPlKop9Ay3i87BnI,304
107
- syllable_sdk/models/custommessageresponse.py,sha256=WNXTV-Qv2zQ4sKUqjU2MbhwRA0dGjLSOHsB5CJma6zM,4258
107
+ syllable_sdk/models/custommessageresponse.py,sha256=mshV8iLN2EfrpnTd6JbNGJPS_-KB8ja1Ob63Yn8gm1I,5156
108
108
  syllable_sdk/models/custommessagerule.py,sha256=w97jz-I-riDHSVmq1Qeu7nuW6V91heV0x60XSgGi56o,3280
109
- syllable_sdk/models/custommessageupdaterequest.py,sha256=4Hj63sregTQ7-VDLTqALlkUDM5J9yKLhe9ddFYgzLBI,2650
109
+ syllable_sdk/models/custommessageupdaterequest.py,sha256=KruZjFrbmSTzcmMEW92pxXYG_kXBmIqNym6lZAea0MQ,3548
110
110
  syllable_sdk/models/daotoolresponse.py,sha256=b0bVgo94XvjFgq-Ki5vr044zexGywNzNNbd_WtbunkE,3802
111
111
  syllable_sdk/models/dashboard.py,sha256=Q7Tji4r3VKAvrjPRE4NOyRsldyFLHXdie5hBODSdkMM,993
112
112
  syllable_sdk/models/dashboardproperties.py,sha256=JhuzlUJK4VHGWalpvKbZfu6LK-KcmP189BwubyfRhYk,362
@@ -418,7 +418,7 @@ syllable_sdk/tools.py,sha256=jKna-myFCIcsuDfJcuuF2TYPSupvVWGkJsQ0NDHImMY,40408
418
418
  syllable_sdk/transcript.py,sha256=-OsBwuJhprQ-qoP-7dIPidgoPii8INH4iRCc6jnOXY4,7632
419
419
  syllable_sdk/twilio.py,sha256=suZO3rlKl-mBqqF68EzqwJ2WcSfH0qwRzP1DQUCZdNc,24300
420
420
  syllable_sdk/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
421
- syllable_sdk/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
421
+ syllable_sdk/types/basemodel.py,sha256=MULDVywSVxR0lo8h5wMnXnkBFXLK5DXmBKD1eXAVKgE,2879
422
422
  syllable_sdk/users.py,sha256=jm_1MGY6X5_3GL9c15F3_E_YaA_A-fzlBS3heKssX74,53983
423
423
  syllable_sdk/utils/__init__.py,sha256=CAG0O76aEToGKXpT6Ft87Vd-iiQTh4XdBrQ37BVbsiM,5861
424
424
  syllable_sdk/utils/annotations.py,sha256=FvfvVTUj8TUclm4HbGgY5yi2Ap7EzGmu2UPFU4FwC1w,2755
@@ -440,6 +440,6 @@ syllable_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,
440
440
  syllable_sdk/v1.py,sha256=dA67n3aRVr-3VqqW4sFcIAqPRpEwsQqStv9EfJ-EPCc,53980
441
441
  syllable_sdk/voice_groups.py,sha256=ChjGJJW1n7IHfiSenzi-HiIa51jHFjUAO5L5yzNMPFY,48944
442
442
  syllable_sdk/workflows.py,sha256=vXaEaw29tOeMqUIBiJqN9S2XW4B3NP_ZDoUPMVDh_Ck,65385
443
- syllable_sdk-0.44.12.dist-info/METADATA,sha256=_UlQEKSfBUSGvJ-PEfdj6Q3lMKcexiuZiOv2Ad8yFxE,50234
444
- syllable_sdk-0.44.12.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
445
- syllable_sdk-0.44.12.dist-info/RECORD,,
443
+ syllable_sdk-0.44.17.dist-info/METADATA,sha256=Kx5qOHe_5_N5XvXFrYs72cQ6a1_xTfWhlZwnSRbvdFg,50234
444
+ syllable_sdk-0.44.17.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
445
+ syllable_sdk-0.44.17.dist-info/RECORD,,