syllable-sdk 0.38.22__py3-none-any.whl → 0.40.0__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 +3 -3
- syllable_sdk/directory.py +1323 -0
- syllable_sdk/models/__init__.py +99 -0
- syllable_sdk/models/agentvoicedisplayname.py +32 -0
- syllable_sdk/models/agentvoicevarname.py +40 -0
- syllable_sdk/models/body_directory_member_bulk_load.py +44 -0
- syllable_sdk/models/directory_member_deleteop.py +16 -0
- syllable_sdk/models/directory_member_get_by_idop.py +16 -0
- syllable_sdk/models/directory_member_listop.py +140 -0
- syllable_sdk/models/directory_member_updateop.py +23 -0
- syllable_sdk/models/directoryextension.py +62 -0
- syllable_sdk/models/directorymember.py +103 -0
- syllable_sdk/models/directorymembercreate.py +96 -0
- syllable_sdk/models/directorymemberproperties.py +13 -0
- syllable_sdk/models/languagecode.py +3 -0
- syllable_sdk/models/listresponse_directorymember_.py +74 -0
- syllable_sdk/sdk.py +4 -0
- {syllable_sdk-0.38.22.dist-info → syllable_sdk-0.40.0.dist-info}/METADATA +11 -1
- {syllable_sdk-0.38.22.dist-info → syllable_sdk-0.40.0.dist-info}/RECORD +20 -9
- {syllable_sdk-0.38.22.dist-info → syllable_sdk-0.40.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from pydantic import model_serializer
|
|
5
|
+
from syllable_sdk.types import (
|
|
6
|
+
BaseModel,
|
|
7
|
+
Nullable,
|
|
8
|
+
OptionalNullable,
|
|
9
|
+
UNSET,
|
|
10
|
+
UNSET_SENTINEL,
|
|
11
|
+
)
|
|
12
|
+
from typing import List
|
|
13
|
+
from typing_extensions import NotRequired, TypedDict
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class NumberTypedDict(TypedDict):
|
|
17
|
+
pass
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class Number(BaseModel):
|
|
21
|
+
pass
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
class DirectoryExtensionTypedDict(TypedDict):
|
|
25
|
+
name: str
|
|
26
|
+
numbers: NotRequired[Nullable[List[NumberTypedDict]]]
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class DirectoryExtension(BaseModel):
|
|
30
|
+
name: str
|
|
31
|
+
|
|
32
|
+
numbers: OptionalNullable[List[Number]] = UNSET
|
|
33
|
+
|
|
34
|
+
@model_serializer(mode="wrap")
|
|
35
|
+
def serialize_model(self, handler):
|
|
36
|
+
optional_fields = ["numbers"]
|
|
37
|
+
nullable_fields = ["numbers"]
|
|
38
|
+
null_default_fields = []
|
|
39
|
+
|
|
40
|
+
serialized = handler(self)
|
|
41
|
+
|
|
42
|
+
m = {}
|
|
43
|
+
|
|
44
|
+
for n, f in type(self).model_fields.items():
|
|
45
|
+
k = f.alias or n
|
|
46
|
+
val = serialized.get(k)
|
|
47
|
+
serialized.pop(k, None)
|
|
48
|
+
|
|
49
|
+
optional_nullable = k in optional_fields and k in nullable_fields
|
|
50
|
+
is_set = (
|
|
51
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
52
|
+
or k in null_default_fields
|
|
53
|
+
) # pylint: disable=no-member
|
|
54
|
+
|
|
55
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
56
|
+
m[k] = val
|
|
57
|
+
elif val != UNSET_SENTINEL and (
|
|
58
|
+
not k in optional_fields or (optional_nullable and is_set)
|
|
59
|
+
):
|
|
60
|
+
m[k] = val
|
|
61
|
+
|
|
62
|
+
return m
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .directoryextension import DirectoryExtension, DirectoryExtensionTypedDict
|
|
5
|
+
from datetime import datetime
|
|
6
|
+
from pydantic import model_serializer
|
|
7
|
+
from syllable_sdk.types import (
|
|
8
|
+
BaseModel,
|
|
9
|
+
Nullable,
|
|
10
|
+
OptionalNullable,
|
|
11
|
+
UNSET,
|
|
12
|
+
UNSET_SENTINEL,
|
|
13
|
+
)
|
|
14
|
+
from typing import List
|
|
15
|
+
from typing_extensions import NotRequired, TypedDict
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class DirectoryMemberContactTagsTypedDict(TypedDict):
|
|
19
|
+
pass
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class DirectoryMemberContactTags(BaseModel):
|
|
23
|
+
pass
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class DirectoryMemberTypedDict(TypedDict):
|
|
27
|
+
r"""Model for a directory member (i.e. a contact)."""
|
|
28
|
+
|
|
29
|
+
name: str
|
|
30
|
+
r"""Name of the directory member"""
|
|
31
|
+
type: str
|
|
32
|
+
r"""Type of the directory member"""
|
|
33
|
+
extensions: NotRequired[Nullable[List[DirectoryExtensionTypedDict]]]
|
|
34
|
+
r"""List of extensions for the directory member"""
|
|
35
|
+
contact_tags: NotRequired[Nullable[DirectoryMemberContactTagsTypedDict]]
|
|
36
|
+
updated_at: NotRequired[Nullable[datetime]]
|
|
37
|
+
last_updated_by: NotRequired[Nullable[str]]
|
|
38
|
+
id: NotRequired[Nullable[int]]
|
|
39
|
+
r"""Internal ID of the directory member"""
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
class DirectoryMember(BaseModel):
|
|
43
|
+
r"""Model for a directory member (i.e. a contact)."""
|
|
44
|
+
|
|
45
|
+
name: str
|
|
46
|
+
r"""Name of the directory member"""
|
|
47
|
+
|
|
48
|
+
type: str
|
|
49
|
+
r"""Type of the directory member"""
|
|
50
|
+
|
|
51
|
+
extensions: OptionalNullable[List[DirectoryExtension]] = UNSET
|
|
52
|
+
r"""List of extensions for the directory member"""
|
|
53
|
+
|
|
54
|
+
contact_tags: OptionalNullable[DirectoryMemberContactTags] = UNSET
|
|
55
|
+
|
|
56
|
+
updated_at: OptionalNullable[datetime] = UNSET
|
|
57
|
+
|
|
58
|
+
last_updated_by: OptionalNullable[str] = UNSET
|
|
59
|
+
|
|
60
|
+
id: OptionalNullable[int] = UNSET
|
|
61
|
+
r"""Internal ID of the directory member"""
|
|
62
|
+
|
|
63
|
+
@model_serializer(mode="wrap")
|
|
64
|
+
def serialize_model(self, handler):
|
|
65
|
+
optional_fields = [
|
|
66
|
+
"extensions",
|
|
67
|
+
"contact_tags",
|
|
68
|
+
"updated_at",
|
|
69
|
+
"last_updated_by",
|
|
70
|
+
"id",
|
|
71
|
+
]
|
|
72
|
+
nullable_fields = [
|
|
73
|
+
"extensions",
|
|
74
|
+
"contact_tags",
|
|
75
|
+
"updated_at",
|
|
76
|
+
"last_updated_by",
|
|
77
|
+
"id",
|
|
78
|
+
]
|
|
79
|
+
null_default_fields = []
|
|
80
|
+
|
|
81
|
+
serialized = handler(self)
|
|
82
|
+
|
|
83
|
+
m = {}
|
|
84
|
+
|
|
85
|
+
for n, f in type(self).model_fields.items():
|
|
86
|
+
k = f.alias or n
|
|
87
|
+
val = serialized.get(k)
|
|
88
|
+
serialized.pop(k, None)
|
|
89
|
+
|
|
90
|
+
optional_nullable = k in optional_fields and k in nullable_fields
|
|
91
|
+
is_set = (
|
|
92
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
93
|
+
or k in null_default_fields
|
|
94
|
+
) # pylint: disable=no-member
|
|
95
|
+
|
|
96
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
97
|
+
m[k] = val
|
|
98
|
+
elif val != UNSET_SENTINEL and (
|
|
99
|
+
not k in optional_fields or (optional_nullable and is_set)
|
|
100
|
+
):
|
|
101
|
+
m[k] = val
|
|
102
|
+
|
|
103
|
+
return m
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .directoryextension import DirectoryExtension, DirectoryExtensionTypedDict
|
|
5
|
+
from datetime import datetime
|
|
6
|
+
from pydantic import model_serializer
|
|
7
|
+
from syllable_sdk.types import (
|
|
8
|
+
BaseModel,
|
|
9
|
+
Nullable,
|
|
10
|
+
OptionalNullable,
|
|
11
|
+
UNSET,
|
|
12
|
+
UNSET_SENTINEL,
|
|
13
|
+
)
|
|
14
|
+
from typing import List
|
|
15
|
+
from typing_extensions import NotRequired, TypedDict
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class DirectoryMemberCreateContactTagsTypedDict(TypedDict):
|
|
19
|
+
pass
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class DirectoryMemberCreateContactTags(BaseModel):
|
|
23
|
+
pass
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class DirectoryMemberCreateTypedDict(TypedDict):
|
|
27
|
+
r"""Request model to create a directory member."""
|
|
28
|
+
|
|
29
|
+
name: str
|
|
30
|
+
r"""Name of the directory member"""
|
|
31
|
+
type: str
|
|
32
|
+
r"""Type of the directory member"""
|
|
33
|
+
extensions: NotRequired[Nullable[List[DirectoryExtensionTypedDict]]]
|
|
34
|
+
r"""List of extensions for the directory member"""
|
|
35
|
+
contact_tags: NotRequired[Nullable[DirectoryMemberCreateContactTagsTypedDict]]
|
|
36
|
+
updated_at: NotRequired[Nullable[datetime]]
|
|
37
|
+
last_updated_by: NotRequired[Nullable[str]]
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class DirectoryMemberCreate(BaseModel):
|
|
41
|
+
r"""Request model to create a directory member."""
|
|
42
|
+
|
|
43
|
+
name: str
|
|
44
|
+
r"""Name of the directory member"""
|
|
45
|
+
|
|
46
|
+
type: str
|
|
47
|
+
r"""Type of the directory member"""
|
|
48
|
+
|
|
49
|
+
extensions: OptionalNullable[List[DirectoryExtension]] = UNSET
|
|
50
|
+
r"""List of extensions for the directory member"""
|
|
51
|
+
|
|
52
|
+
contact_tags: OptionalNullable[DirectoryMemberCreateContactTags] = UNSET
|
|
53
|
+
|
|
54
|
+
updated_at: OptionalNullable[datetime] = UNSET
|
|
55
|
+
|
|
56
|
+
last_updated_by: OptionalNullable[str] = UNSET
|
|
57
|
+
|
|
58
|
+
@model_serializer(mode="wrap")
|
|
59
|
+
def serialize_model(self, handler):
|
|
60
|
+
optional_fields = [
|
|
61
|
+
"extensions",
|
|
62
|
+
"contact_tags",
|
|
63
|
+
"updated_at",
|
|
64
|
+
"last_updated_by",
|
|
65
|
+
]
|
|
66
|
+
nullable_fields = [
|
|
67
|
+
"extensions",
|
|
68
|
+
"contact_tags",
|
|
69
|
+
"updated_at",
|
|
70
|
+
"last_updated_by",
|
|
71
|
+
]
|
|
72
|
+
null_default_fields = []
|
|
73
|
+
|
|
74
|
+
serialized = handler(self)
|
|
75
|
+
|
|
76
|
+
m = {}
|
|
77
|
+
|
|
78
|
+
for n, f in type(self).model_fields.items():
|
|
79
|
+
k = f.alias or n
|
|
80
|
+
val = serialized.get(k)
|
|
81
|
+
serialized.pop(k, None)
|
|
82
|
+
|
|
83
|
+
optional_nullable = k in optional_fields and k in nullable_fields
|
|
84
|
+
is_set = (
|
|
85
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
86
|
+
or k in null_default_fields
|
|
87
|
+
) # pylint: disable=no-member
|
|
88
|
+
|
|
89
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
90
|
+
m[k] = val
|
|
91
|
+
elif val != UNSET_SENTINEL and (
|
|
92
|
+
not k in optional_fields or (optional_nullable and is_set)
|
|
93
|
+
):
|
|
94
|
+
m[k] = val
|
|
95
|
+
|
|
96
|
+
return m
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from enum import Enum
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class DirectoryMemberProperties(str, Enum):
|
|
8
|
+
ID = "id"
|
|
9
|
+
NAME = "name"
|
|
10
|
+
TYPE = "type"
|
|
11
|
+
EXTENSIONS = "extensions"
|
|
12
|
+
CONTACT_TAGS = "contact_tags"
|
|
13
|
+
UPDATED_AT = "updated_at"
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .directorymember import DirectoryMember, DirectoryMemberTypedDict
|
|
5
|
+
from pydantic import model_serializer
|
|
6
|
+
from syllable_sdk.types import (
|
|
7
|
+
BaseModel,
|
|
8
|
+
Nullable,
|
|
9
|
+
OptionalNullable,
|
|
10
|
+
UNSET,
|
|
11
|
+
UNSET_SENTINEL,
|
|
12
|
+
)
|
|
13
|
+
from typing import List
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class ListResponseDirectoryMemberTypedDict(TypedDict):
|
|
18
|
+
items: List[DirectoryMemberTypedDict]
|
|
19
|
+
r"""List of items returned from the query"""
|
|
20
|
+
page: int
|
|
21
|
+
r"""The page number of the results (0-based)"""
|
|
22
|
+
page_size: int
|
|
23
|
+
r"""The number of items returned per page"""
|
|
24
|
+
total_pages: NotRequired[Nullable[int]]
|
|
25
|
+
r"""The total number of pages of results given the indicated page size"""
|
|
26
|
+
total_count: NotRequired[Nullable[int]]
|
|
27
|
+
r"""The total number of items returned from the query"""
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
class ListResponseDirectoryMember(BaseModel):
|
|
31
|
+
items: List[DirectoryMember]
|
|
32
|
+
r"""List of items returned from the query"""
|
|
33
|
+
|
|
34
|
+
page: int
|
|
35
|
+
r"""The page number of the results (0-based)"""
|
|
36
|
+
|
|
37
|
+
page_size: int
|
|
38
|
+
r"""The number of items returned per page"""
|
|
39
|
+
|
|
40
|
+
total_pages: OptionalNullable[int] = UNSET
|
|
41
|
+
r"""The total number of pages of results given the indicated page size"""
|
|
42
|
+
|
|
43
|
+
total_count: OptionalNullable[int] = UNSET
|
|
44
|
+
r"""The total number of items returned from the query"""
|
|
45
|
+
|
|
46
|
+
@model_serializer(mode="wrap")
|
|
47
|
+
def serialize_model(self, handler):
|
|
48
|
+
optional_fields = ["total_pages", "total_count"]
|
|
49
|
+
nullable_fields = ["total_pages", "total_count"]
|
|
50
|
+
null_default_fields = []
|
|
51
|
+
|
|
52
|
+
serialized = handler(self)
|
|
53
|
+
|
|
54
|
+
m = {}
|
|
55
|
+
|
|
56
|
+
for n, f in type(self).model_fields.items():
|
|
57
|
+
k = f.alias or n
|
|
58
|
+
val = serialized.get(k)
|
|
59
|
+
serialized.pop(k, None)
|
|
60
|
+
|
|
61
|
+
optional_nullable = k in optional_fields and k in nullable_fields
|
|
62
|
+
is_set = (
|
|
63
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
64
|
+
or k in null_default_fields
|
|
65
|
+
) # pylint: disable=no-member
|
|
66
|
+
|
|
67
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
68
|
+
m[k] = val
|
|
69
|
+
elif val != UNSET_SENTINEL and (
|
|
70
|
+
not k in optional_fields or (optional_nullable and is_set)
|
|
71
|
+
):
|
|
72
|
+
m[k] = val
|
|
73
|
+
|
|
74
|
+
return m
|
syllable_sdk/sdk.py
CHANGED
|
@@ -21,6 +21,7 @@ if TYPE_CHECKING:
|
|
|
21
21
|
from syllable_sdk.custom_messages import CustomMessages
|
|
22
22
|
from syllable_sdk.dashboards import Dashboards
|
|
23
23
|
from syllable_sdk.data_sources import DataSources
|
|
24
|
+
from syllable_sdk.directory import Directory
|
|
24
25
|
from syllable_sdk.events import Events
|
|
25
26
|
from syllable_sdk.incidents import Incidents
|
|
26
27
|
from syllable_sdk.insights_sdk import InsightsSDK
|
|
@@ -112,6 +113,8 @@ class SyllableSDK(BaseSDK):
|
|
|
112
113
|
session_debug: "SessionDebug"
|
|
113
114
|
tools: "Tools"
|
|
114
115
|
r"""Operations related to tool configuration. A tool is a function that an agent can call to perform actions like accessing databases, making API calls, or processing data. For an agent to have access to a tool, the prompt associated with that agent should be linked to the tool and include instructions to use it. For more information, see [Console docs](https://docs.syllable.ai/Resources/Tools)."""
|
|
116
|
+
directory: "Directory"
|
|
117
|
+
r"""Operations related to directory"""
|
|
115
118
|
dashboards: "Dashboards"
|
|
116
119
|
r"""Operations related to dashboards. Currently the API/SDK only supports fetching basic information about dashboards."""
|
|
117
120
|
organizations: "Organizations"
|
|
@@ -141,6 +144,7 @@ class SyllableSDK(BaseSDK):
|
|
|
141
144
|
"sessions": ("syllable_sdk.sessions", "Sessions"),
|
|
142
145
|
"session_debug": ("syllable_sdk.session_debug", "SessionDebug"),
|
|
143
146
|
"tools": ("syllable_sdk.tools", "Tools"),
|
|
147
|
+
"directory": ("syllable_sdk.directory", "Directory"),
|
|
144
148
|
"dashboards": ("syllable_sdk.dashboards", "Dashboards"),
|
|
145
149
|
"organizations": ("syllable_sdk.organizations", "Organizations"),
|
|
146
150
|
"outbound": ("syllable_sdk.outbound", "Outbound"),
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: syllable-sdk
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.40.0
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Syllable
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -316,6 +316,16 @@ with SyllableSDK(
|
|
|
316
316
|
* [get_by_id](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/datasources/README.md#get_by_id) - Get Data Source
|
|
317
317
|
* [delete](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/datasources/README.md#delete) - Delete Data Source
|
|
318
318
|
|
|
319
|
+
### [directory](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/directory/README.md)
|
|
320
|
+
|
|
321
|
+
* [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/directory/README.md#list) - Directory Member List
|
|
322
|
+
* [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/directory/README.md#create) - Create Directory Member
|
|
323
|
+
* [get_by_id](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/directory/README.md#get_by_id) - Get Directory Member By Id
|
|
324
|
+
* [update](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/directory/README.md#update) - Update Directory Member
|
|
325
|
+
* [delete](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/directory/README.md#delete) - Delete Directory Member
|
|
326
|
+
* [directory_member_bulk_load](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/directory/README.md#directory_member_bulk_load) - Bulk Load Directory Members
|
|
327
|
+
* [directory_member_download](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/directory/README.md#directory_member_download) - Download Directory Members
|
|
328
|
+
|
|
319
329
|
### [events](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/events/README.md)
|
|
320
330
|
|
|
321
331
|
* [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/events/README.md#list) - Events List
|
|
@@ -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=P9dKhXhLC0aiyrVLG7_NswdkOPuMRjPRo5PEvvo--cQ,468
|
|
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
|
|
@@ -13,6 +13,7 @@ syllable_sdk/conversations.py,sha256=ghoxP8diGGzI19G2Lffr9v3XgQ_dbC-NibDOvwhaW00
|
|
|
13
13
|
syllable_sdk/custom_messages.py,sha256=TFZWJEtt6obeBx7hMZUZkN7rsTlZzLABdS8UHblegU8,41327
|
|
14
14
|
syllable_sdk/dashboards.py,sha256=db98Dq21VhsVWGKdpWePp5I6dwgQUkQaKRJHun5yVFI,45466
|
|
15
15
|
syllable_sdk/data_sources.py,sha256=yQ26ikJElPq6HujNJ4_8971GxpFD0LH4kWi2vgKudSA,40929
|
|
16
|
+
syllable_sdk/directory.py,sha256=thTgpawyfT9YaTlWBpiDEMXPpMT1Woknr60Sc8Crrw4,54775
|
|
16
17
|
syllable_sdk/errors/__init__.py,sha256=b7YCOOsKA0VcV2bgdwU0w8lITftThPQ5QHX8sTisILk,2098
|
|
17
18
|
syllable_sdk/errors/apierror.py,sha256=-LoYmnlQmN0_BBJU1vWCEvA3QDeag_x4lbw7u4R6pfk,1297
|
|
18
19
|
syllable_sdk/errors/httpvalidationerror.py,sha256=ZsPoNUMwj4CdGcDRWmljjBmg_a9UkpoKSBFFylM9Pu0,906
|
|
@@ -28,7 +29,7 @@ syllable_sdk/insights_sdk.py,sha256=_RfPEqpJGTYpGv0kxID2YQb-EbbhZKc82VwlB4xDON4,
|
|
|
28
29
|
syllable_sdk/insights_tools.py,sha256=CcOobBAVx2kS8fj4Qk6eoPanmVpEMK7oH9IFaijDlQs,55143
|
|
29
30
|
syllable_sdk/language_groups.py,sha256=6x4_4TNhVaz-O50iT1hpDQGfoH1OZdIR0-lL4y5Psbg,51531
|
|
30
31
|
syllable_sdk/latency.py,sha256=qJT16MmojZcxXD2-x5i27FplrB4O_fAN264LsHbHckg,7453
|
|
31
|
-
syllable_sdk/models/__init__.py,sha256=
|
|
32
|
+
syllable_sdk/models/__init__.py,sha256=5b6cyeBUwxhu8VdKbo1qH77Q6n_gp0pWsLb0p68rDCU,95997
|
|
32
33
|
syllable_sdk/models/agent_deleteop.py,sha256=tUbi-gwd4chf2Ba9O9lCvqDQw6YOnn7aheu8OPDzptc,629
|
|
33
34
|
syllable_sdk/models/agent_get_by_idop.py,sha256=vj_xEbhOv3c8n3-B3uQnfTwHWdxYSE4k3Zvr58Yc9A4,484
|
|
34
35
|
syllable_sdk/models/agent_listop.py,sha256=dJdQuIst1TF4xMol9XVdX4xOw8z06jyAQpm46_u0Ysk,5007
|
|
@@ -41,10 +42,10 @@ syllable_sdk/models/agenttooldefaults.py,sha256=grephhXpDNRoteEjin5eOFqe2pqh2WHs
|
|
|
41
42
|
syllable_sdk/models/agenttoolfielddefault.py,sha256=80ANVtg-F04tDjWvMj55g2xUujUIx-XtT-_lIQOiYnY,788
|
|
42
43
|
syllable_sdk/models/agentupdate.py,sha256=JyNM5fEMKzsrsk1Ydbr3pu0RyJdQZmv80gvsHm9miL8,6767
|
|
43
44
|
syllable_sdk/models/agentvoice.py,sha256=BczZexgI1oNXBnLNT-WOePXj52jTot23Twu2h-qXNJE,1853
|
|
44
|
-
syllable_sdk/models/agentvoicedisplayname.py,sha256=
|
|
45
|
+
syllable_sdk/models/agentvoicedisplayname.py,sha256=hWQsGo2OAujZ8SzeZ9CLXblW9WQWYS-i--eFI8VrPEg,5490
|
|
45
46
|
syllable_sdk/models/agentvoicegender.py,sha256=eSrSwtf7UsFw9hFLcdgtjyp_OeNheZRGJtsu4pOJgPQ,246
|
|
46
47
|
syllable_sdk/models/agentvoicemodel.py,sha256=N3TAL-P3ygR1NOJ50sTTQGYSbRbsFcC-tf-auKPndrQ,435
|
|
47
|
-
syllable_sdk/models/agentvoicevarname.py,sha256=
|
|
48
|
+
syllable_sdk/models/agentvoicevarname.py,sha256=47L9I47-1djXwkoKGZ6PuLMuE7zWO4fcJboQxQmpjrU,10955
|
|
48
49
|
syllable_sdk/models/agentwaitsound.py,sha256=ymA-9uspKNFof6S1_JNnaqjUqK7P1e5SY44xQdtjWDc,328
|
|
49
50
|
syllable_sdk/models/available_targetsop.py,sha256=Y51_cmkQO9zDsL10ObhxUgnMluyHht3mqQLRUNh8i68,5101
|
|
50
51
|
syllable_sdk/models/availabletarget.py,sha256=fiLk4tQ_ZWmqjPYUm49ckaTtvmT4DppBfPdxMJujQo0,2217
|
|
@@ -52,6 +53,7 @@ syllable_sdk/models/availabletargetproperties.py,sha256=taQ4fRcKP1AmUFursvvCqOfa
|
|
|
52
53
|
syllable_sdk/models/batchdetails.py,sha256=TqjwXffSf77omFY2uVJBckSkCFW7MUs_1fnLWQPxYyA,4170
|
|
53
54
|
syllable_sdk/models/batchproperties.py,sha256=89ZX5kuIyO7VzVhogtOh5vQajSGT7pQWo6AaNoDmWsA,316
|
|
54
55
|
syllable_sdk/models/batchstatus.py,sha256=NZOhX8BPxuxtr7IP_1pX4_4sy8Oe6p31h1gnATgV4FE,347
|
|
56
|
+
syllable_sdk/models/body_directory_member_bulk_load.py,sha256=jpNkQNE0lk6_z1UpGU7DWIt94SnDw2wYeSZ0jByxWOE,1307
|
|
55
57
|
syllable_sdk/models/body_insights_folder_upload_file.py,sha256=6m577ErqGnhPNsGoDvG9fO7vjwbwA8XNgzTgrxeSzQc,1343
|
|
56
58
|
syllable_sdk/models/body_organizations_create.py,sha256=z2TKa8xfLgQ_zXYD7vmhz5ED2cVhwg2Ks-YHqVNtISk,3602
|
|
57
59
|
syllable_sdk/models/body_organizations_delete.py,sha256=-ooSAYXKGB45bRpcTJrKJhyLg2sLBwgLHIn3ph4FFws,1619
|
|
@@ -113,6 +115,14 @@ syllable_sdk/models/dialogmessage.py,sha256=MlB4omxykh8oFlt-UuIJ4YN91YOGTM4K1i8E
|
|
|
113
115
|
syllable_sdk/models/dialogrole.py,sha256=KAsvAMkeFhkv4JDsTM0Bw8XctAbtcUhq5DU1CFMOhpc,226
|
|
114
116
|
syllable_sdk/models/dialogtoolcall.py,sha256=hDdnuQQNrB4Vzb--R_v3ze_p9McQszzyQG9JwWrGmZo,1904
|
|
115
117
|
syllable_sdk/models/dictionarymetadata.py,sha256=aXEVP6T0vNXh85_LYdvOqhtwzGvTyuyEhC-kleI3D9M,555
|
|
118
|
+
syllable_sdk/models/directory_member_deleteop.py,sha256=a6T1MBc0ZUBaQFQ3ugRMs_E8Ic0p9zCWs9FmdWp-MHg,504
|
|
119
|
+
syllable_sdk/models/directory_member_get_by_idop.py,sha256=5IvyVMM4Ykm-_75QYbe3ljxatQUvO2sQHtQ5Xt98NE8,506
|
|
120
|
+
syllable_sdk/models/directory_member_listop.py,sha256=568u6zJ86cE45I9mF4dzRd4dRn-EHTlppdtazmx5W2c,5107
|
|
121
|
+
syllable_sdk/models/directory_member_updateop.py,sha256=q3kr--mKru1xyqv81_lpHNR_wcHWcXh-0sqj4VvhbsE,783
|
|
122
|
+
syllable_sdk/models/directoryextension.py,sha256=iGkSEB0W6M-odk9-34EqdxTHPSVfb4fGxgni4uzqzl4,1557
|
|
123
|
+
syllable_sdk/models/directorymember.py,sha256=AgMLgVBA7r_X4u2IUgEB9moSob1ZOqQiMbWC_i5HgM8,2923
|
|
124
|
+
syllable_sdk/models/directorymembercreate.py,sha256=Z8RNV7bYZ8AYUCPBqJi3XGwSer7vFyZCsb52rs3hpJE,2749
|
|
125
|
+
syllable_sdk/models/directorymemberproperties.py,sha256=aNLqwweGWUYHbbaStYj8MtStQeP2kIdoUcxopsseDL8,320
|
|
116
126
|
syllable_sdk/models/event.py,sha256=qFvXId06MfWSPW3SnFyy4_rvvqknzoAo0TSQy3F38Jo,4151
|
|
117
127
|
syllable_sdk/models/eventproperties.py,sha256=9_5DIkk5RtQsa52IxCkffSG0livH8baPSCdhzRKz48I,444
|
|
118
128
|
syllable_sdk/models/events_listop.py,sha256=eIXJRB3dZpc0DQAOzgfmls2OIgR8vpn_J-_AspXVUBY,5009
|
|
@@ -172,7 +182,7 @@ syllable_sdk/models/internaltool.py,sha256=d-n7i573SPGBMZ0Krz3UhcJSopb-YkoH0q4uR
|
|
|
172
182
|
syllable_sdk/models/language_groups_deleteop.py,sha256=4MTGog70ojnyXZeVGNwp-50YcVktvkLBuzOWXUFrGA0,665
|
|
173
183
|
syllable_sdk/models/language_groups_get_by_idop.py,sha256=BqY8RoJ2AExtA67AIQlbn0J4dpTP4jmlEJUSagtgPHY,520
|
|
174
184
|
syllable_sdk/models/language_groups_listop.py,sha256=4ufQtf55hOWLmJMFPaS7Ff7mg9_TSVL4MiUbUrgfXiY,5089
|
|
175
|
-
syllable_sdk/models/languagecode.py,sha256=
|
|
185
|
+
syllable_sdk/models/languagecode.py,sha256=eqk1oI25P0KHcdKu2S9HgoNzKyE12Eq84_YGXzI49tM,487
|
|
176
186
|
syllable_sdk/models/languageconfig.py,sha256=3TPAVwjqJ09q9zuCqEUhQrw1IwO9TDKZ7t2U7sdqT8c,3597
|
|
177
187
|
syllable_sdk/models/languagegroupagentinfo.py,sha256=kzmhCVzbuDP06Vm2SW28Pn1QusTZgkDjCfZ9myE8Hks,599
|
|
178
188
|
syllable_sdk/models/languagegroupcreaterequest.py,sha256=IbfnkvXunx9RC-49lrXuSAL2o7cNyslmPPN6NzjDUd0,2454
|
|
@@ -192,6 +202,7 @@ syllable_sdk/models/listresponse_conversation_.py,sha256=qaulgjao-ya0KZVGJPXrr9N
|
|
|
192
202
|
syllable_sdk/models/listresponse_custommessageresponse_.py,sha256=FwUCbo14PPLcQP5i4h4JNTgtmWp77Qhcj7QnxEDyHgI,2411
|
|
193
203
|
syllable_sdk/models/listresponse_dashboardresponse_.py,sha256=CIdHngU8-JiDrYtRgcMLJVKC2yAklSx5WHvayKoQtNY,2383
|
|
194
204
|
syllable_sdk/models/listresponse_datasourcemetadataresponse_.py,sha256=Kb4uw07UEshXskBIGbgfGpIYfsoI0qijMSeEEvdLUo4,2459
|
|
205
|
+
syllable_sdk/models/listresponse_directorymember_.py,sha256=oiKM0xOLf3zAcwhZVMGdJU2GU504xZfIbV9CdEJ9z2k,2369
|
|
195
206
|
syllable_sdk/models/listresponse_event_.py,sha256=08Kl_SVKXFr9Uh-LQqxB6Wa9aDFvRiy2aNZda0aBHLQ,2299
|
|
196
207
|
syllable_sdk/models/listresponse_incidentresponse_.py,sha256=QVJ3aL2zBpM-efmuoWcEyQdGsCV_GjVqixwr7kQwiFI,2376
|
|
197
208
|
syllable_sdk/models/listresponse_insightsfolder_.py,sha256=vd40kEPKGr16bFqh-lOZA88-v3UrqtG1LRSKyrbXtvs,2362
|
|
@@ -357,7 +368,7 @@ syllable_sdk/prompts.py,sha256=qu4yha2PdiG5ntsGjOgZIlwbRFaFlaCzvcxbm4cYKC0,53372
|
|
|
357
368
|
syllable_sdk/pronunciations.py,sha256=eDd25xxtUAaqzeyiF-unpR5RL7hpAJICVSGg_9i_gNA,32972
|
|
358
369
|
syllable_sdk/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
359
370
|
syllable_sdk/roles.py,sha256=zt9FWrBptDZ4Lz3_aJYetvkEVdxSHE9fGXeRlR0MLhk,40394
|
|
360
|
-
syllable_sdk/sdk.py,sha256=
|
|
371
|
+
syllable_sdk/sdk.py,sha256=pokZi3ctgGEHa--dfC4taqX_wihqRxruFfKn8IIPTVM,16815
|
|
361
372
|
syllable_sdk/sdkconfiguration.py,sha256=cbYqSx5Sw6bPo2RiqBsU6OkBJnBBVJ6pNORhPyaTHkg,1594
|
|
362
373
|
syllable_sdk/services.py,sha256=v7dNuYu2_yt7XY8EZPu3v9tfJE55Oszr0glEJIIEEB8,40291
|
|
363
374
|
syllable_sdk/session_debug.py,sha256=ykvBjvx8cfnqdPxbI3KZ3xEM1-I8InZ7dQJDbuY-EQc,22200
|
|
@@ -392,6 +403,6 @@ syllable_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,
|
|
|
392
403
|
syllable_sdk/v1.py,sha256=BuA9D8PTM3ACw7t2p_wd6bIZblDM1JF8Scx0U2GPpCQ,53476
|
|
393
404
|
syllable_sdk/voice_groups.py,sha256=m68HbT6z6SWtGWPoZaFFu6NIyNYIG7H9H5QkQuzlTQU,48512
|
|
394
405
|
syllable_sdk/workflows.py,sha256=xHWT4Wl65qw2jvNZ5xF_MwpR5xd5147cSlQE_6gvfSo,64809
|
|
395
|
-
syllable_sdk-0.
|
|
396
|
-
syllable_sdk-0.
|
|
397
|
-
syllable_sdk-0.
|
|
406
|
+
syllable_sdk-0.40.0.dist-info/METADATA,sha256=kIn1MNN48_J_PbR9zBGy9cKQv_qdjdqDwCOP7qexK6I,49474
|
|
407
|
+
syllable_sdk-0.40.0.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
408
|
+
syllable_sdk-0.40.0.dist-info/RECORD,,
|
|
File without changes
|