syllable-sdk 0.44.12__py3-none-any.whl → 0.44.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.44.12"
6
+ __version__: str = "0.44.20"
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.794.1"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.44.20 2.794.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
+ )
@@ -42,7 +42,6 @@ if TYPE_CHECKING:
42
42
  validate_decimal,
43
43
  validate_float,
44
44
  validate_int,
45
- validate_open_enum,
46
45
  )
47
46
  from .url import generate_url, template_url, remove_suffix
48
47
  from .values import (
@@ -104,7 +103,6 @@ __all__ = [
104
103
  "validate_const",
105
104
  "validate_float",
106
105
  "validate_int",
107
- "validate_open_enum",
108
106
  "cast_partial",
109
107
  ]
110
108
 
@@ -158,7 +156,6 @@ _dynamic_imports: dict[str, str] = {
158
156
  "validate_const": ".serializers",
159
157
  "validate_float": ".serializers",
160
158
  "validate_int": ".serializers",
161
- "validate_open_enum": ".serializers",
162
159
  "cast_partial": ".values",
163
160
  }
164
161
 
@@ -2,6 +2,10 @@
2
2
 
3
3
  import enum
4
4
  import sys
5
+ from typing import Any
6
+
7
+ from pydantic_core import core_schema
8
+
5
9
 
6
10
  class OpenEnumMeta(enum.EnumMeta):
7
11
  # The __call__ method `boundary` kwarg was added in 3.11 and must be present
@@ -72,3 +76,59 @@ class OpenEnumMeta(enum.EnumMeta):
72
76
  )
73
77
  except ValueError:
74
78
  return value
79
+
80
+ def __new__(mcs, name, bases, namespace, **kwargs):
81
+ cls = super().__new__(mcs, name, bases, namespace, **kwargs)
82
+
83
+ # Add __get_pydantic_core_schema__ to make open enums work correctly
84
+ # in union discrimination. In strict mode (used by Pydantic for unions),
85
+ # only known enum values match. In lax mode, unknown values are accepted.
86
+ def __get_pydantic_core_schema__(
87
+ cls_inner: Any, _source_type: Any, _handler: Any
88
+ ) -> core_schema.CoreSchema:
89
+ # Create a validator that only accepts known enum values (for strict mode)
90
+ def validate_strict(v: Any) -> Any:
91
+ if isinstance(v, cls_inner):
92
+ return v
93
+ # Use the parent EnumMeta's __call__ which raises ValueError for unknown values
94
+ return enum.EnumMeta.__call__(cls_inner, v)
95
+
96
+ # Create a lax validator that accepts unknown values
97
+ def validate_lax(v: Any) -> Any:
98
+ if isinstance(v, cls_inner):
99
+ return v
100
+ try:
101
+ return enum.EnumMeta.__call__(cls_inner, v)
102
+ except ValueError:
103
+ # Return the raw value for unknown enum values
104
+ return v
105
+
106
+ # Determine the base type schema (str or int)
107
+ is_int_enum = False
108
+ for base in cls_inner.__mro__:
109
+ if base is int:
110
+ is_int_enum = True
111
+ break
112
+ if base is str:
113
+ break
114
+
115
+ base_schema = (
116
+ core_schema.int_schema()
117
+ if is_int_enum
118
+ else core_schema.str_schema()
119
+ )
120
+
121
+ # Use lax_or_strict_schema:
122
+ # - strict mode: only known enum values match (raises ValueError for unknown)
123
+ # - lax mode: accept any value, return enum member or raw value
124
+ return core_schema.lax_or_strict_schema(
125
+ lax_schema=core_schema.chain_schema(
126
+ [base_schema, core_schema.no_info_plain_validator_function(validate_lax)]
127
+ ),
128
+ strict_schema=core_schema.chain_schema(
129
+ [base_schema, core_schema.no_info_plain_validator_function(validate_strict)]
130
+ ),
131
+ )
132
+
133
+ setattr(cls, "__get_pydantic_core_schema__", classmethod(__get_pydantic_core_schema__))
134
+ return cls
@@ -44,15 +44,15 @@ def serialize_request_body(
44
44
 
45
45
  serialized_request_body = SerializedRequestBody(media_type)
46
46
 
47
- if re.match(r"(application|text)\/.*?\+*json.*", media_type) is not None:
47
+ if re.match(r"^(application|text)\/([^+]+\+)*json.*", media_type) is not None:
48
48
  serialized_request_body.content = marshal_json(request_body, request_body_type)
49
- elif re.match(r"multipart\/.*", media_type) is not None:
49
+ elif re.match(r"^multipart\/.*", media_type) is not None:
50
50
  (
51
51
  serialized_request_body.media_type,
52
52
  serialized_request_body.data,
53
53
  serialized_request_body.files,
54
54
  ) = serialize_multipart_form(media_type, request_body)
55
- elif re.match(r"application\/x-www-form-urlencoded.*", media_type) is not None:
55
+ elif re.match(r"^application\/x-www-form-urlencoded.*", media_type) is not None:
56
56
  serialized_request_body.data = serialize_form_data(request_body)
57
57
  elif isinstance(request_body, (bytes, bytearray, io.BytesIO, io.BufferedReader)):
58
58
  serialized_request_body.content = request_body
@@ -102,26 +102,6 @@ def validate_int(b):
102
102
  return int(b)
103
103
 
104
104
 
105
- def validate_open_enum(is_int: bool):
106
- def validate(e):
107
- if e is None:
108
- return None
109
-
110
- if isinstance(e, Unset):
111
- return e
112
-
113
- if is_int:
114
- if not isinstance(e, int):
115
- raise ValueError("Expected int")
116
- else:
117
- if not isinstance(e, str):
118
- raise ValueError("Expected string")
119
-
120
- return e
121
-
122
- return validate
123
-
124
-
125
105
  def validate_const(v):
126
106
  def validate(c):
127
107
  # Optional[T] is a Union[T, None]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: syllable-sdk
3
- Version: 0.44.12
3
+ Version: 0.44.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=NYrzBihFXoa4M_CT3JsPM6pW5DXoJFaEpTopwxBg3ZM,470
6
+ syllable_sdk/_version.py,sha256=dSc0yPYX4SClXU72FVKHgaWw4CWMM6Sc9qcazJRWonQ,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,28 +418,28 @@ 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
- syllable_sdk/utils/__init__.py,sha256=CAG0O76aEToGKXpT6Ft87Vd-iiQTh4XdBrQ37BVbsiM,5861
423
+ syllable_sdk/utils/__init__.py,sha256=rIeddnHALPXhBP408MS8XDH7kO53V3kiXv25yTOv2UY,5765
424
424
  syllable_sdk/utils/annotations.py,sha256=FvfvVTUj8TUclm4HbGgY5yi2Ap7EzGmu2UPFU4FwC1w,2755
425
425
  syllable_sdk/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
426
- syllable_sdk/utils/enums.py,sha256=REU6ydF8gsVL3xaeGX4sMNyiL3q5P9h29-f6Sa6luAE,2633
426
+ syllable_sdk/utils/enums.py,sha256=wAgjjw7USk6IRpN2UJE5Sl8rfmEFiRwyrwMhhznnDIc,5147
427
427
  syllable_sdk/utils/eventstreaming.py,sha256=SgFqMcUOYKlrTQ4gAp_dNcKLvDXukeiEMNU3DP8mXk8,6692
428
428
  syllable_sdk/utils/forms.py,sha256=HzltKnYH5-ULoEz8JYfIUcw13I9dMZjw-1lQKNkH5fw,7178
429
429
  syllable_sdk/utils/headers.py,sha256=cPxWSmUILrefTGDzTH1Hdj7_Hlsj-EY6K5Tyc4iH4dk,3663
430
430
  syllable_sdk/utils/logger.py,sha256=nPc714a9tLm0QMEvK0KYGr2Sko2xjbqq-tPnNGLpFIE,682
431
431
  syllable_sdk/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0nKQDgHIBU,3136
432
432
  syllable_sdk/utils/queryparams.py,sha256=dxtFQDJ8dlbm_hh_fhdFC1qMWOOHR2MszNycKmME8bQ,6326
433
- syllable_sdk/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
433
+ syllable_sdk/utils/requestbodies.py,sha256=7bi6slrGKAbmfg4BoOUjSVGrbg9NvIFvCKUEgjwyJEw,2108
434
434
  syllable_sdk/utils/retries.py,sha256=stPJEFtmK8gOM6aT0DpEJp9Z39oXX1-8I69jpa2n3Ww,8130
435
435
  syllable_sdk/utils/security.py,sha256=ISsENQVLMQAPDsJ09g-m67Bs9YaS1-H-Hhw89RBJA3E,6037
436
- syllable_sdk/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6PN7R-0HwvOE,5999
436
+ syllable_sdk/utils/serializers.py,sha256=ueUga5yv_08r10eQiaVIk0o726j0TRno8603jUksasA,5585
437
437
  syllable_sdk/utils/unmarshal_json_response.py,sha256=DwB7Hxdo9JjWFMqsxsTznV6d_MIlLLLz-tq04at_X9s,877
438
438
  syllable_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
439
439
  syllable_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
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.20.dist-info/METADATA,sha256=SW4EMalgyOdf3RJOT_0pQ7zYY6nPWIA1Yc9A0HGq8_g,50234
444
+ syllable_sdk-0.44.20.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
445
+ syllable_sdk-0.44.20.dist-info/RECORD,,