syllable-sdk 0.39.4__py3-none-any.whl → 0.40.9__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 +1514 -0
- syllable_sdk/models/__init__.py +99 -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_test_extensionop.py +70 -0
- syllable_sdk/models/directory_member_updateop.py +23 -0
- syllable_sdk/models/directoryextension.py +62 -0
- syllable_sdk/models/directoryextensionnumber.py +58 -0
- syllable_sdk/models/directorymember.py +101 -0
- syllable_sdk/models/directorymembercreate.py +73 -0
- syllable_sdk/models/directorymemberproperties.py +14 -0
- syllable_sdk/models/directorymembertestresponse.py +52 -0
- syllable_sdk/models/listresponse_directorymember_.py +74 -0
- syllable_sdk/models/toolhttpmethod.py +2 -0
- syllable_sdk/sdk.py +4 -0
- {syllable_sdk-0.39.4.dist-info → syllable_sdk-0.40.9.dist-info}/METADATA +12 -1
- {syllable_sdk-0.39.4.dist-info → syllable_sdk-0.40.9.dist-info}/RECORD +21 -7
- {syllable_sdk-0.39.4.dist-info → syllable_sdk-0.40.9.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,101 @@
|
|
|
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 Dict, List
|
|
15
|
+
from typing_extensions import NotRequired, TypedDict
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class DirectoryMemberTypedDict(TypedDict):
|
|
19
|
+
r"""Model for a directory member (i.e. a contact)."""
|
|
20
|
+
|
|
21
|
+
name: str
|
|
22
|
+
r"""Name of the directory member"""
|
|
23
|
+
type: str
|
|
24
|
+
r"""Type of the directory member"""
|
|
25
|
+
extensions: NotRequired[Nullable[List[DirectoryExtensionTypedDict]]]
|
|
26
|
+
r"""List of extensions for the directory member"""
|
|
27
|
+
contact_tags: NotRequired[Nullable[Dict[str, List[str]]]]
|
|
28
|
+
r"""Tags for the directory member"""
|
|
29
|
+
id: NotRequired[Nullable[int]]
|
|
30
|
+
r"""Internal ID of the directory member"""
|
|
31
|
+
updated_at: NotRequired[Nullable[datetime]]
|
|
32
|
+
r"""Timestamp of most recent update"""
|
|
33
|
+
last_updated_by: NotRequired[Nullable[str]]
|
|
34
|
+
r"""Email of the user who last updated the directory member"""
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
class DirectoryMember(BaseModel):
|
|
38
|
+
r"""Model for a directory member (i.e. a contact)."""
|
|
39
|
+
|
|
40
|
+
name: str
|
|
41
|
+
r"""Name of the directory member"""
|
|
42
|
+
|
|
43
|
+
type: str
|
|
44
|
+
r"""Type of the directory member"""
|
|
45
|
+
|
|
46
|
+
extensions: OptionalNullable[List[DirectoryExtension]] = UNSET
|
|
47
|
+
r"""List of extensions for the directory member"""
|
|
48
|
+
|
|
49
|
+
contact_tags: OptionalNullable[Dict[str, List[str]]] = UNSET
|
|
50
|
+
r"""Tags for the directory member"""
|
|
51
|
+
|
|
52
|
+
id: OptionalNullable[int] = UNSET
|
|
53
|
+
r"""Internal ID of the directory member"""
|
|
54
|
+
|
|
55
|
+
updated_at: OptionalNullable[datetime] = UNSET
|
|
56
|
+
r"""Timestamp of most recent update"""
|
|
57
|
+
|
|
58
|
+
last_updated_by: OptionalNullable[str] = UNSET
|
|
59
|
+
r"""Email of the user who last updated the directory member"""
|
|
60
|
+
|
|
61
|
+
@model_serializer(mode="wrap")
|
|
62
|
+
def serialize_model(self, handler):
|
|
63
|
+
optional_fields = [
|
|
64
|
+
"extensions",
|
|
65
|
+
"contact_tags",
|
|
66
|
+
"id",
|
|
67
|
+
"updated_at",
|
|
68
|
+
"last_updated_by",
|
|
69
|
+
]
|
|
70
|
+
nullable_fields = [
|
|
71
|
+
"extensions",
|
|
72
|
+
"contact_tags",
|
|
73
|
+
"id",
|
|
74
|
+
"updated_at",
|
|
75
|
+
"last_updated_by",
|
|
76
|
+
]
|
|
77
|
+
null_default_fields = []
|
|
78
|
+
|
|
79
|
+
serialized = handler(self)
|
|
80
|
+
|
|
81
|
+
m = {}
|
|
82
|
+
|
|
83
|
+
for n, f in type(self).model_fields.items():
|
|
84
|
+
k = f.alias or n
|
|
85
|
+
val = serialized.get(k)
|
|
86
|
+
serialized.pop(k, None)
|
|
87
|
+
|
|
88
|
+
optional_nullable = k in optional_fields and k in nullable_fields
|
|
89
|
+
is_set = (
|
|
90
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
91
|
+
or k in null_default_fields
|
|
92
|
+
) # pylint: disable=no-member
|
|
93
|
+
|
|
94
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
95
|
+
m[k] = val
|
|
96
|
+
elif val != UNSET_SENTINEL and (
|
|
97
|
+
not k in optional_fields or (optional_nullable and is_set)
|
|
98
|
+
):
|
|
99
|
+
m[k] = val
|
|
100
|
+
|
|
101
|
+
return m
|
|
@@ -0,0 +1,73 @@
|
|
|
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 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 Dict, List
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class DirectoryMemberCreateTypedDict(TypedDict):
|
|
18
|
+
r"""Request model to create a directory member."""
|
|
19
|
+
|
|
20
|
+
name: str
|
|
21
|
+
r"""Name of the directory member"""
|
|
22
|
+
type: str
|
|
23
|
+
r"""Type of the directory member"""
|
|
24
|
+
extensions: NotRequired[Nullable[List[DirectoryExtensionTypedDict]]]
|
|
25
|
+
r"""List of extensions for the directory member"""
|
|
26
|
+
contact_tags: NotRequired[Nullable[Dict[str, List[str]]]]
|
|
27
|
+
r"""Tags for the directory member"""
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
class DirectoryMemberCreate(BaseModel):
|
|
31
|
+
r"""Request model to create a directory member."""
|
|
32
|
+
|
|
33
|
+
name: str
|
|
34
|
+
r"""Name of the directory member"""
|
|
35
|
+
|
|
36
|
+
type: str
|
|
37
|
+
r"""Type of the directory member"""
|
|
38
|
+
|
|
39
|
+
extensions: OptionalNullable[List[DirectoryExtension]] = UNSET
|
|
40
|
+
r"""List of extensions for the directory member"""
|
|
41
|
+
|
|
42
|
+
contact_tags: OptionalNullable[Dict[str, List[str]]] = UNSET
|
|
43
|
+
r"""Tags for the directory member"""
|
|
44
|
+
|
|
45
|
+
@model_serializer(mode="wrap")
|
|
46
|
+
def serialize_model(self, handler):
|
|
47
|
+
optional_fields = ["extensions", "contact_tags"]
|
|
48
|
+
nullable_fields = ["extensions", "contact_tags"]
|
|
49
|
+
null_default_fields = []
|
|
50
|
+
|
|
51
|
+
serialized = handler(self)
|
|
52
|
+
|
|
53
|
+
m = {}
|
|
54
|
+
|
|
55
|
+
for n, f in type(self).model_fields.items():
|
|
56
|
+
k = f.alias or n
|
|
57
|
+
val = serialized.get(k)
|
|
58
|
+
serialized.pop(k, None)
|
|
59
|
+
|
|
60
|
+
optional_nullable = k in optional_fields and k in nullable_fields
|
|
61
|
+
is_set = (
|
|
62
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
63
|
+
or k in null_default_fields
|
|
64
|
+
) # pylint: disable=no-member
|
|
65
|
+
|
|
66
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
67
|
+
m[k] = val
|
|
68
|
+
elif val != UNSET_SENTINEL and (
|
|
69
|
+
not k in optional_fields or (optional_nullable and is_set)
|
|
70
|
+
):
|
|
71
|
+
m[k] = val
|
|
72
|
+
|
|
73
|
+
return m
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
NAME_EXACT = "name_exact"
|
|
11
|
+
TYPE = "type"
|
|
12
|
+
EXTENSIONS = "extensions"
|
|
13
|
+
CONTACT_TAGS = "contact_tags"
|
|
14
|
+
UPDATED_AT = "updated_at"
|
|
@@ -0,0 +1,52 @@
|
|
|
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_extensions import NotRequired, TypedDict
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class DirectoryMemberTestResponseTypedDict(TypedDict):
|
|
16
|
+
extension: NotRequired[Nullable[str]]
|
|
17
|
+
r"""Extension to which the user will be transferred if they call at the provided timestamp in the given language"""
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class DirectoryMemberTestResponse(BaseModel):
|
|
21
|
+
extension: OptionalNullable[str] = UNSET
|
|
22
|
+
r"""Extension to which the user will be transferred if they call at the provided timestamp in the given language"""
|
|
23
|
+
|
|
24
|
+
@model_serializer(mode="wrap")
|
|
25
|
+
def serialize_model(self, handler):
|
|
26
|
+
optional_fields = ["extension"]
|
|
27
|
+
nullable_fields = ["extension"]
|
|
28
|
+
null_default_fields = []
|
|
29
|
+
|
|
30
|
+
serialized = handler(self)
|
|
31
|
+
|
|
32
|
+
m = {}
|
|
33
|
+
|
|
34
|
+
for n, f in type(self).model_fields.items():
|
|
35
|
+
k = f.alias or n
|
|
36
|
+
val = serialized.get(k)
|
|
37
|
+
serialized.pop(k, None)
|
|
38
|
+
|
|
39
|
+
optional_nullable = k in optional_fields and k in nullable_fields
|
|
40
|
+
is_set = (
|
|
41
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
42
|
+
or k in null_default_fields
|
|
43
|
+
) # pylint: disable=no-member
|
|
44
|
+
|
|
45
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
46
|
+
m[k] = val
|
|
47
|
+
elif val != UNSET_SENTINEL and (
|
|
48
|
+
not k in optional_fields or (optional_nullable and is_set)
|
|
49
|
+
):
|
|
50
|
+
m[k] = val
|
|
51
|
+
|
|
52
|
+
return m
|
|
@@ -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.9
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Syllable
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -316,6 +316,17 @@ 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_test_extension](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/directory/README.md#directory_member_test_extension) - Test Directory Member Extension
|
|
327
|
+
* [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
|
|
328
|
+
* [directory_member_download](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/directory/README.md#directory_member_download) - Download Directory Members
|
|
329
|
+
|
|
319
330
|
### [events](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/events/README.md)
|
|
320
331
|
|
|
321
332
|
* [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=NqTh_LfxRKH5cFVpkKjrcBVHEZGyFpUAJoyjqfKmieE,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=ISsZyxUOrxwk0F_U8aGWdheo9Cl2flxf3caRDH5rprI,62629
|
|
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=qnJWpW-bZu_RMDQd2BaUqLauzlx6kLR4dusX_ee5x4I,96301
|
|
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
|
|
@@ -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,17 @@ 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_test_extensionop.py,sha256=JpmuK8_1T7R3FK9DGyOjZgCOnaWzNXxgpUA8TJOaU0Y,2162
|
|
122
|
+
syllable_sdk/models/directory_member_updateop.py,sha256=q3kr--mKru1xyqv81_lpHNR_wcHWcXh-0sqj4VvhbsE,783
|
|
123
|
+
syllable_sdk/models/directoryextension.py,sha256=37hSpmuwYovZ7AuO3-FajBLr9_i_ardVG20fYHuDF4I,1775
|
|
124
|
+
syllable_sdk/models/directoryextensionnumber.py,sha256=P7u9CtS1N4k0b0XLD4AD9HnrXY2GcE8D65M8Uwsu6DE,1789
|
|
125
|
+
syllable_sdk/models/directorymember.py,sha256=VDVWGYyNRbzUSv40l__kjDrbC7fBsX_A8z1c4FHKKsY,3089
|
|
126
|
+
syllable_sdk/models/directorymembercreate.py,sha256=uJbTXLxb5g6uX4kJphChQzy9EZr2B06cCiYc9Eb-phM,2257
|
|
127
|
+
syllable_sdk/models/directorymemberproperties.py,sha256=qX6Ln1OABBc26wgdAiYfZFK0yvYRARgIWaw6RxyUaLg,350
|
|
128
|
+
syllable_sdk/models/directorymembertestresponse.py,sha256=iHorMtw1hu3lqt9jRH0xhoiskGWDkbrC7wys3TSoP3I,1662
|
|
116
129
|
syllable_sdk/models/event.py,sha256=qFvXId06MfWSPW3SnFyy4_rvvqknzoAo0TSQy3F38Jo,4151
|
|
117
130
|
syllable_sdk/models/eventproperties.py,sha256=9_5DIkk5RtQsa52IxCkffSG0livH8baPSCdhzRKz48I,444
|
|
118
131
|
syllable_sdk/models/events_listop.py,sha256=eIXJRB3dZpc0DQAOzgfmls2OIgR8vpn_J-_AspXVUBY,5009
|
|
@@ -192,6 +205,7 @@ syllable_sdk/models/listresponse_conversation_.py,sha256=qaulgjao-ya0KZVGJPXrr9N
|
|
|
192
205
|
syllable_sdk/models/listresponse_custommessageresponse_.py,sha256=FwUCbo14PPLcQP5i4h4JNTgtmWp77Qhcj7QnxEDyHgI,2411
|
|
193
206
|
syllable_sdk/models/listresponse_dashboardresponse_.py,sha256=CIdHngU8-JiDrYtRgcMLJVKC2yAklSx5WHvayKoQtNY,2383
|
|
194
207
|
syllable_sdk/models/listresponse_datasourcemetadataresponse_.py,sha256=Kb4uw07UEshXskBIGbgfGpIYfsoI0qijMSeEEvdLUo4,2459
|
|
208
|
+
syllable_sdk/models/listresponse_directorymember_.py,sha256=oiKM0xOLf3zAcwhZVMGdJU2GU504xZfIbV9CdEJ9z2k,2369
|
|
195
209
|
syllable_sdk/models/listresponse_event_.py,sha256=08Kl_SVKXFr9Uh-LQqxB6Wa9aDFvRiy2aNZda0aBHLQ,2299
|
|
196
210
|
syllable_sdk/models/listresponse_incidentresponse_.py,sha256=QVJ3aL2zBpM-efmuoWcEyQdGsCV_GjVqixwr7kQwiFI,2376
|
|
197
211
|
syllable_sdk/models/listresponse_insightsfolder_.py,sha256=vd40kEPKGr16bFqh-lOZA88-v3UrqtG1LRSKyrbXtvs,2362
|
|
@@ -309,7 +323,7 @@ syllable_sdk/models/tooldefinition.py,sha256=X0wEwLMzWFUOv1V6ime1LjSusckoPt1NJ38
|
|
|
309
323
|
syllable_sdk/models/tooldetailresponse.py,sha256=6JVm3M-ZW6pWB3kyThlUVFzHc2QAQWyv4OuLwtUfvvI,4805
|
|
310
324
|
syllable_sdk/models/toolfunction.py,sha256=bqrAmQxStYGQChS4nwzsVDBsnXIq0nHDxkmO9ht_Zgw,1009
|
|
311
325
|
syllable_sdk/models/toolhttpendpoint.py,sha256=Q54Fpith2qyO1MyJ6JZ8JpyWUphdZJPgMv4Qmcdobig,1472
|
|
312
|
-
syllable_sdk/models/toolhttpmethod.py,sha256=
|
|
326
|
+
syllable_sdk/models/toolhttpmethod.py,sha256=_9dJZ4seimNvLiYhC3Y-6U-jELgG0DN6v_QWXnv_rJo,297
|
|
313
327
|
syllable_sdk/models/tooloptions.py,sha256=SYIjUy-NnTjZsr7_J7CjGsBqwkzyCLa78tIs4pSTuWM,632
|
|
314
328
|
syllable_sdk/models/toolparameterdefault.py,sha256=iurkZxYBya9rqjs-cTNNzLV9TBLDcZuo2AvNGMhxBkQ,1124
|
|
315
329
|
syllable_sdk/models/toolparametertransform.py,sha256=ZrwH9GR52oe7Ldb9lOLKcHMJYOtJmkKoyD5ZMdcJz5w,3950
|
|
@@ -357,7 +371,7 @@ syllable_sdk/prompts.py,sha256=qu4yha2PdiG5ntsGjOgZIlwbRFaFlaCzvcxbm4cYKC0,53372
|
|
|
357
371
|
syllable_sdk/pronunciations.py,sha256=eDd25xxtUAaqzeyiF-unpR5RL7hpAJICVSGg_9i_gNA,32972
|
|
358
372
|
syllable_sdk/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
359
373
|
syllable_sdk/roles.py,sha256=zt9FWrBptDZ4Lz3_aJYetvkEVdxSHE9fGXeRlR0MLhk,40394
|
|
360
|
-
syllable_sdk/sdk.py,sha256=
|
|
374
|
+
syllable_sdk/sdk.py,sha256=pokZi3ctgGEHa--dfC4taqX_wihqRxruFfKn8IIPTVM,16815
|
|
361
375
|
syllable_sdk/sdkconfiguration.py,sha256=cbYqSx5Sw6bPo2RiqBsU6OkBJnBBVJ6pNORhPyaTHkg,1594
|
|
362
376
|
syllable_sdk/services.py,sha256=v7dNuYu2_yt7XY8EZPu3v9tfJE55Oszr0glEJIIEEB8,40291
|
|
363
377
|
syllable_sdk/session_debug.py,sha256=ykvBjvx8cfnqdPxbI3KZ3xEM1-I8InZ7dQJDbuY-EQc,22200
|
|
@@ -392,6 +406,6 @@ syllable_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,
|
|
|
392
406
|
syllable_sdk/v1.py,sha256=BuA9D8PTM3ACw7t2p_wd6bIZblDM1JF8Scx0U2GPpCQ,53476
|
|
393
407
|
syllable_sdk/voice_groups.py,sha256=m68HbT6z6SWtGWPoZaFFu6NIyNYIG7H9H5QkQuzlTQU,48512
|
|
394
408
|
syllable_sdk/workflows.py,sha256=xHWT4Wl65qw2jvNZ5xF_MwpR5xd5147cSlQE_6gvfSo,64809
|
|
395
|
-
syllable_sdk-0.
|
|
396
|
-
syllable_sdk-0.
|
|
397
|
-
syllable_sdk-0.
|
|
409
|
+
syllable_sdk-0.40.9.dist-info/METADATA,sha256=yDOAqbIHOdLWO2EB-u--to4h848DX5Db5unDSiLhyy8,49670
|
|
410
|
+
syllable_sdk-0.40.9.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
411
|
+
syllable_sdk-0.40.9.dist-info/RECORD,,
|
|
File without changes
|