syllable-sdk 0.38.16__py3-none-any.whl → 0.38.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 +2 -2
- syllable_sdk/models/insightsoutput.py +7 -1
- syllable_sdk/models/outboundcampaign.py +2 -2
- syllable_sdk/models/outboundcampaigninput.py +2 -2
- {syllable_sdk-0.38.16.dist-info → syllable_sdk-0.38.20.dist-info}/METADATA +1 -1
- {syllable_sdk-0.38.16.dist-info → syllable_sdk-0.38.20.dist-info}/RECORD +7 -7
- {syllable_sdk-0.38.16.dist-info → syllable_sdk-0.38.20.dist-info}/WHEEL +0 -0
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.38.
|
|
6
|
+
__version__: str = "0.38.20"
|
|
7
7
|
__openapi_doc_version__: str = "0.0.2"
|
|
8
8
|
__gen_version__: str = "2.723.11"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.38.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.38.20 2.723.11 0.0.2 syllable-sdk"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -10,7 +10,7 @@ from syllable_sdk.types import (
|
|
|
10
10
|
UNSET,
|
|
11
11
|
UNSET_SENTINEL,
|
|
12
12
|
)
|
|
13
|
-
from typing import Dict, Optional, Union
|
|
13
|
+
from typing import Any, Dict, Optional, Union
|
|
14
14
|
from typing_extensions import NotRequired, TypeAliasType, TypedDict
|
|
15
15
|
|
|
16
16
|
|
|
@@ -45,6 +45,8 @@ class InsightsOutputTypedDict(TypedDict):
|
|
|
45
45
|
r"""Timestamp at which insight tool result was created"""
|
|
46
46
|
updated_at: NotRequired[datetime]
|
|
47
47
|
r"""Timestamp at which insight tool result was last updated"""
|
|
48
|
+
upload_file_metadata: NotRequired[Any]
|
|
49
|
+
r"""Metadata associated with the uploaded file"""
|
|
48
50
|
|
|
49
51
|
|
|
50
52
|
class InsightsOutput(BaseModel):
|
|
@@ -83,6 +85,9 @@ class InsightsOutput(BaseModel):
|
|
|
83
85
|
updated_at: Optional[datetime] = None
|
|
84
86
|
r"""Timestamp at which insight tool result was last updated"""
|
|
85
87
|
|
|
88
|
+
upload_file_metadata: Optional[Any] = None
|
|
89
|
+
r"""Metadata associated with the uploaded file"""
|
|
90
|
+
|
|
86
91
|
@model_serializer(mode="wrap")
|
|
87
92
|
def serialize_model(self, handler):
|
|
88
93
|
optional_fields = [
|
|
@@ -92,6 +97,7 @@ class InsightsOutput(BaseModel):
|
|
|
92
97
|
"numeric_value",
|
|
93
98
|
"created_at",
|
|
94
99
|
"updated_at",
|
|
100
|
+
"upload_file_metadata",
|
|
95
101
|
]
|
|
96
102
|
nullable_fields = [
|
|
97
103
|
"session_id",
|
|
@@ -52,7 +52,7 @@ class OutboundCampaignTypedDict(TypedDict):
|
|
|
52
52
|
retry_interval: NotRequired[Nullable[str]]
|
|
53
53
|
r"""How long to wait before retrying"""
|
|
54
54
|
voicemail_detection: NotRequired[Nullable[Dict[str, float]]]
|
|
55
|
-
r"""Config for voicemail detection for voice campaigns"""
|
|
55
|
+
r"""Config for voicemail detection for voice campaigns. Set to None to disable."""
|
|
56
56
|
agent_id: NotRequired[Nullable[int]]
|
|
57
57
|
r"""ID of agent assigned to campaign"""
|
|
58
58
|
created_at: NotRequired[datetime]
|
|
@@ -119,7 +119,7 @@ class OutboundCampaign(BaseModel):
|
|
|
119
119
|
r"""How long to wait before retrying"""
|
|
120
120
|
|
|
121
121
|
voicemail_detection: OptionalNullable[Dict[str, float]] = UNSET
|
|
122
|
-
r"""Config for voicemail detection for voice campaigns"""
|
|
122
|
+
r"""Config for voicemail detection for voice campaigns. Set to None to disable."""
|
|
123
123
|
|
|
124
124
|
agent_id: OptionalNullable[int] = UNSET
|
|
125
125
|
r"""ID of agent assigned to campaign"""
|
|
@@ -47,7 +47,7 @@ class OutboundCampaignInputTypedDict(TypedDict):
|
|
|
47
47
|
retry_interval: NotRequired[Nullable[str]]
|
|
48
48
|
r"""How long to wait before retrying"""
|
|
49
49
|
voicemail_detection: NotRequired[Nullable[Dict[str, float]]]
|
|
50
|
-
r"""Config for voicemail detection for voice campaigns"""
|
|
50
|
+
r"""Config for voicemail detection for voice campaigns. Set to None to disable."""
|
|
51
51
|
|
|
52
52
|
|
|
53
53
|
class OutboundCampaignInput(BaseModel):
|
|
@@ -102,7 +102,7 @@ class OutboundCampaignInput(BaseModel):
|
|
|
102
102
|
r"""How long to wait before retrying"""
|
|
103
103
|
|
|
104
104
|
voicemail_detection: OptionalNullable[Dict[str, float]] = UNSET
|
|
105
|
-
r"""Config for voicemail detection for voice campaigns"""
|
|
105
|
+
r"""Config for voicemail detection for voice campaigns. Set to None to disable."""
|
|
106
106
|
|
|
107
107
|
@model_serializer(mode="wrap")
|
|
108
108
|
def serialize_model(self, handler):
|
|
@@ -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=
|
|
6
|
+
syllable_sdk/_version.py,sha256=GYHquQ23Nyx4W7hVpEvUSOKjW2ifyTmYdiklZW4cF60,472
|
|
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
|
|
@@ -151,7 +151,7 @@ syllable_sdk/models/insightsfolder.py,sha256=kqAZLES2iZSKceMZcOGPUcAWEEgnp-nGsTY
|
|
|
151
151
|
syllable_sdk/models/insightsfolderfilemove.py,sha256=AJcAgoyP07bQKxeQvFSlKcDxnX01LDTRaZUo-3bsQSA,771
|
|
152
152
|
syllable_sdk/models/insightsfolderinput.py,sha256=Dw4XX3rAizSLplz4kVTPuFn02xNuQXUQx0u2ZNOi8Xk,1989
|
|
153
153
|
syllable_sdk/models/insightsfolderproperties.py,sha256=lOLzVw_EVakuHiaHXFz0CNs5IN8b2n_eB8f_eMfbSH4,287
|
|
154
|
-
syllable_sdk/models/insightsoutput.py,sha256=
|
|
154
|
+
syllable_sdk/models/insightsoutput.py,sha256=dGm4Yge1j7VjnKBWKbbln4ac3r8nXKDIvDnFC9DARyw,4002
|
|
155
155
|
syllable_sdk/models/insightsproperties.py,sha256=d0etqw04RMdfDo8uwVMK9rC7UzZDxUyro8qi4dGx6tk,397
|
|
156
156
|
syllable_sdk/models/insightsuploadfile.py,sha256=3fAP67-RoHlQ-nihDq-5HnJubMo5FDMgV8ZS_STCakY,4540
|
|
157
157
|
syllable_sdk/models/insightsuploadfileproperties.py,sha256=g-9-uFhy1mS45UMiAruSRJyb8oXPmWdfqTfeLTg-dNc,453
|
|
@@ -226,8 +226,8 @@ syllable_sdk/models/outbound_campaign_deleteop.py,sha256=jSRM2gNWDel8UFFXMRXYR81
|
|
|
226
226
|
syllable_sdk/models/outbound_campaign_get_by_idop.py,sha256=4O1j5lDl2cgXwXYK9fH-EkeOQxujfNCQRT9g8gQCfWA,512
|
|
227
227
|
syllable_sdk/models/outbound_campaign_listop.py,sha256=yGQnD8Ne8s7qUttiJ1RTWq1ldsnuu5DiJhIf0wD3BJA,5053
|
|
228
228
|
syllable_sdk/models/outbound_campaign_updateop.py,sha256=-smpMJnsTeGzzPTfBg9CTM7uL7RJct8U2Ve3qMPJPj0,833
|
|
229
|
-
syllable_sdk/models/outboundcampaign.py,sha256=
|
|
230
|
-
syllable_sdk/models/outboundcampaigninput.py,sha256=
|
|
229
|
+
syllable_sdk/models/outboundcampaign.py,sha256=wIvlFQXML8Sb3Ulb36N0ccqkXcWeN-6nOg_Q2yEiVh8,5962
|
|
230
|
+
syllable_sdk/models/outboundcampaigninput.py,sha256=lhNjQNjCzFbri045BpQsH29vtFYik-vIwB-4hJnYisw,5096
|
|
231
231
|
syllable_sdk/models/permissiongroupresponse.py,sha256=-2y4Mm5p7k8A-oOrqEVrm-XeHVdwjYWl1nbsstkmaVg,965
|
|
232
232
|
syllable_sdk/models/permissionresponse.py,sha256=UieyRpT5ubQ-08bx3DMdIkGi9KYbJaLe4EOxdg15bVQ,1808
|
|
233
233
|
syllable_sdk/models/post_get_dashboardop.py,sha256=hJgtyzQsZ9Qyc5mqpfULcwHqXyAM8JucU5qRq6_VJ9g,504
|
|
@@ -382,6 +382,6 @@ syllable_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,525
|
|
|
382
382
|
syllable_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
383
383
|
syllable_sdk/v1.py,sha256=BuA9D8PTM3ACw7t2p_wd6bIZblDM1JF8Scx0U2GPpCQ,53476
|
|
384
384
|
syllable_sdk/workflows.py,sha256=xHWT4Wl65qw2jvNZ5xF_MwpR5xd5147cSlQE_6gvfSo,64809
|
|
385
|
-
syllable_sdk-0.38.
|
|
386
|
-
syllable_sdk-0.38.
|
|
387
|
-
syllable_sdk-0.38.
|
|
385
|
+
syllable_sdk-0.38.20.dist-info/METADATA,sha256=aA596lLOji6NB4iUKlBzgi-GvnpCgFX9pSr8JcMosgM,47153
|
|
386
|
+
syllable_sdk-0.38.20.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
387
|
+
syllable_sdk-0.38.20.dist-info/RECORD,,
|
|
File without changes
|