syllable-sdk 0.41.20__py3-none-any.whl → 0.43.1__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/models/__init__.py +406 -8
- syllable_sdk/models/callaction.py +116 -0
- syllable_sdk/models/caseexpression.py +17 -0
- syllable_sdk/models/celexpression.py +31 -0
- syllable_sdk/models/conditionaltext.py +94 -0
- syllable_sdk/models/conditionalvalue.py +131 -0
- syllable_sdk/models/context.py +112 -0
- syllable_sdk/models/contexttaskmetadata.py +55 -0
- syllable_sdk/models/contexttoolinfo.py +57 -0
- syllable_sdk/models/custommessagecreaterequest.py +1 -7
- syllable_sdk/models/custommessageresponse.py +1 -7
- syllable_sdk/models/custommessageupdaterequest.py +1 -7
- syllable_sdk/models/eventtask.py +98 -0
- syllable_sdk/models/eventtaskevents.py +83 -0
- syllable_sdk/models/expressiontask.py +150 -0
- syllable_sdk/models/expressiontaskevents.py +116 -0
- syllable_sdk/models/incrementaction.py +106 -0
- syllable_sdk/models/inputparameter.py +106 -0
- syllable_sdk/models/jmespathexpression.py +33 -0
- syllable_sdk/models/loadtoolfromfiletask.py +112 -0
- syllable_sdk/models/nextstep.py +97 -0
- syllable_sdk/models/saveaction.py +103 -0
- syllable_sdk/models/sayaction.py +108 -0
- syllable_sdk/models/session.py +7 -0
- syllable_sdk/models/setvalueaction.py +140 -0
- syllable_sdk/models/step.py +65 -0
- syllable_sdk/models/stepeventactions.py +145 -0
- syllable_sdk/models/stepstask.py +98 -0
- syllable_sdk/models/steptools.py +67 -0
- syllable_sdk/models/tooldefinition.py +11 -3
- syllable_sdk/models/variable.py +149 -0
- {syllable_sdk-0.41.20.dist-info → syllable_sdk-0.43.1.dist-info}/METADATA +1 -1
- {syllable_sdk-0.41.20.dist-info → syllable_sdk-0.43.1.dist-info}/RECORD +35 -11
- syllable_sdk/models/custommessageconfig.py +0 -20
- {syllable_sdk-0.41.20.dist-info → syllable_sdk-0.43.1.dist-info}/WHEEL +0 -0
syllable_sdk/models/__init__.py
CHANGED
|
@@ -1,7 +1,20 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
3
|
from .agentresponse import AgentResponse, AgentResponseTypedDict
|
|
4
|
+
from .caseexpression import CaseExpression, CaseExpressionTypedDict
|
|
4
5
|
from .channeltargetresponse import ChannelTargetResponse, ChannelTargetResponseTypedDict
|
|
6
|
+
from .conditionalvalue import (
|
|
7
|
+
ConditionalValue,
|
|
8
|
+
ConditionalValueIf1,
|
|
9
|
+
ConditionalValueIf1TypedDict,
|
|
10
|
+
ConditionalValueIf2,
|
|
11
|
+
ConditionalValueIf2TypedDict,
|
|
12
|
+
ConditionalValueTypedDict,
|
|
13
|
+
ConditionalValueValueFrom1,
|
|
14
|
+
ConditionalValueValueFrom1TypedDict,
|
|
15
|
+
ConditionalValueValueFrom2,
|
|
16
|
+
ConditionalValueValueFrom2TypedDict,
|
|
17
|
+
)
|
|
5
18
|
from typing import TYPE_CHECKING
|
|
6
19
|
from importlib import import_module
|
|
7
20
|
import builtins
|
|
@@ -80,7 +93,18 @@ if TYPE_CHECKING:
|
|
|
80
93
|
BodyPronunciationsUploadCsvFileTypedDict,
|
|
81
94
|
BodyPronunciationsUploadCsvTypedDict,
|
|
82
95
|
)
|
|
96
|
+
from .callaction import (
|
|
97
|
+
AutoPopulate,
|
|
98
|
+
AutoPopulateTypedDict,
|
|
99
|
+
CallAction,
|
|
100
|
+
CallActionIf1,
|
|
101
|
+
CallActionIf1TypedDict,
|
|
102
|
+
CallActionIf2,
|
|
103
|
+
CallActionIf2TypedDict,
|
|
104
|
+
CallActionTypedDict,
|
|
105
|
+
)
|
|
83
106
|
from .campaignproperties import CampaignProperties
|
|
107
|
+
from .celexpression import CelExpression, CelExpressionTypedDict
|
|
84
108
|
from .channel import Channel, ChannelTypedDict
|
|
85
109
|
from .channel_targets_createop import (
|
|
86
110
|
ChannelTargetsCreateRequest,
|
|
@@ -150,6 +174,26 @@ if TYPE_CHECKING:
|
|
|
150
174
|
Insights,
|
|
151
175
|
InsightsTypedDict,
|
|
152
176
|
)
|
|
177
|
+
from .conditionaltext import (
|
|
178
|
+
ConditionalText,
|
|
179
|
+
ConditionalTextIf1,
|
|
180
|
+
ConditionalTextIf1TypedDict,
|
|
181
|
+
ConditionalTextIf2,
|
|
182
|
+
ConditionalTextIf2TypedDict,
|
|
183
|
+
ConditionalTextTypedDict,
|
|
184
|
+
)
|
|
185
|
+
from .context import (
|
|
186
|
+
Context,
|
|
187
|
+
ContextTypedDict,
|
|
188
|
+
Task1,
|
|
189
|
+
Task1TypedDict,
|
|
190
|
+
Task2,
|
|
191
|
+
Task2TypedDict,
|
|
192
|
+
Task3,
|
|
193
|
+
Task3TypedDict,
|
|
194
|
+
)
|
|
195
|
+
from .contexttaskmetadata import ContextTaskMetadata, ContextTaskMetadataTypedDict
|
|
196
|
+
from .contexttoolinfo import ContextToolInfo, ContextToolInfoTypedDict
|
|
153
197
|
from .conversation import Conversation, ConversationTypedDict
|
|
154
198
|
from .conversationproperties import ConversationProperties
|
|
155
199
|
from .conversations_listop import (
|
|
@@ -172,7 +216,6 @@ if TYPE_CHECKING:
|
|
|
172
216
|
CustomMessagesListRequest,
|
|
173
217
|
CustomMessagesListRequestTypedDict,
|
|
174
218
|
)
|
|
175
|
-
from .custommessageconfig import CustomMessageConfig, CustomMessageConfigTypedDict
|
|
176
219
|
from .custommessagecreaterequest import (
|
|
177
220
|
CustomMessageCreateRequest,
|
|
178
221
|
CustomMessageCreateRequestTypedDict,
|
|
@@ -272,6 +315,29 @@ if TYPE_CHECKING:
|
|
|
272
315
|
from .event import Attributes, AttributesTypedDict, Event, EventTypedDict
|
|
273
316
|
from .eventproperties import EventProperties
|
|
274
317
|
from .events_listop import EventsListRequest, EventsListRequestTypedDict
|
|
318
|
+
from .eventtask import EventTask, EventTaskTypedDict
|
|
319
|
+
from .eventtaskevents import (
|
|
320
|
+
EventTaskEvents,
|
|
321
|
+
EventTaskEventsStart,
|
|
322
|
+
EventTaskEventsStartTypedDict,
|
|
323
|
+
EventTaskEventsTypedDict,
|
|
324
|
+
)
|
|
325
|
+
from .expressiontask import (
|
|
326
|
+
Expression1,
|
|
327
|
+
Expression1TypedDict,
|
|
328
|
+
Expression2,
|
|
329
|
+
Expression2TypedDict,
|
|
330
|
+
ExpressionTask,
|
|
331
|
+
ExpressionTaskTypedDict,
|
|
332
|
+
)
|
|
333
|
+
from .expressiontaskevents import (
|
|
334
|
+
ExpressionTaskEvents,
|
|
335
|
+
ExpressionTaskEventsStart,
|
|
336
|
+
ExpressionTaskEventsStartTypedDict,
|
|
337
|
+
ExpressionTaskEventsSubmit,
|
|
338
|
+
ExpressionTaskEventsSubmitTypedDict,
|
|
339
|
+
ExpressionTaskEventsTypedDict,
|
|
340
|
+
)
|
|
275
341
|
from .folderdetails import (
|
|
276
342
|
FolderDetails,
|
|
277
343
|
FolderDetailsTypedDict,
|
|
@@ -314,6 +380,19 @@ if TYPE_CHECKING:
|
|
|
314
380
|
IncidentUpdateRequest,
|
|
315
381
|
IncidentUpdateRequestTypedDict,
|
|
316
382
|
)
|
|
383
|
+
from .incrementaction import (
|
|
384
|
+
IncrementAction,
|
|
385
|
+
IncrementActionIf1,
|
|
386
|
+
IncrementActionIf1TypedDict,
|
|
387
|
+
IncrementActionIf2,
|
|
388
|
+
IncrementActionIf2TypedDict,
|
|
389
|
+
IncrementActionTypedDict,
|
|
390
|
+
)
|
|
391
|
+
from .inputparameter import (
|
|
392
|
+
InputParameter,
|
|
393
|
+
InputParameterType,
|
|
394
|
+
InputParameterTypedDict,
|
|
395
|
+
)
|
|
317
396
|
from .insight_tool_get_by_idop import (
|
|
318
397
|
InsightToolGetByIDRequest,
|
|
319
398
|
InsightToolGetByIDRequestTypedDict,
|
|
@@ -449,6 +528,11 @@ if TYPE_CHECKING:
|
|
|
449
528
|
InspectLatencyResponseTypedDict,
|
|
450
529
|
)
|
|
451
530
|
from .internaltool import InternalTool, InternalToolTypedDict
|
|
531
|
+
from .jmespathexpression import (
|
|
532
|
+
JMESPathExpression,
|
|
533
|
+
JMESPathExpressionType,
|
|
534
|
+
JMESPathExpressionTypedDict,
|
|
535
|
+
)
|
|
452
536
|
from .language_groups_deleteop import (
|
|
453
537
|
LanguageGroupsDeleteRequest,
|
|
454
538
|
LanguageGroupsDeleteRequestTypedDict,
|
|
@@ -586,8 +670,22 @@ if TYPE_CHECKING:
|
|
|
586
670
|
ListResponseVoiceGroupResponse,
|
|
587
671
|
ListResponseVoiceGroupResponseTypedDict,
|
|
588
672
|
)
|
|
673
|
+
from .loadtoolfromfiletask import (
|
|
674
|
+
File,
|
|
675
|
+
FileTypedDict,
|
|
676
|
+
LoadToolFromFileTask,
|
|
677
|
+
LoadToolFromFileTaskTypedDict,
|
|
678
|
+
)
|
|
589
679
|
from .logintype import LoginType
|
|
590
680
|
from .matchtype import MatchType
|
|
681
|
+
from .nextstep import (
|
|
682
|
+
NextStep,
|
|
683
|
+
NextStepIf1,
|
|
684
|
+
NextStepIf1TypedDict,
|
|
685
|
+
NextStepIf2,
|
|
686
|
+
NextStepIf2TypedDict,
|
|
687
|
+
NextStepTypedDict,
|
|
688
|
+
)
|
|
591
689
|
from .orderbydirection import OrderByDirection
|
|
592
690
|
from .organizationchannelconfig import (
|
|
593
691
|
OrganizationChannelConfig,
|
|
@@ -709,6 +807,23 @@ if TYPE_CHECKING:
|
|
|
709
807
|
from .roles_get_by_idop import RolesGetByIDRequest, RolesGetByIDRequestTypedDict
|
|
710
808
|
from .roles_listop import RolesListRequest, RolesListRequestTypedDict
|
|
711
809
|
from .roleupdaterequest import RoleUpdateRequest, RoleUpdateRequestTypedDict
|
|
810
|
+
from .saveaction import (
|
|
811
|
+
SaveAction,
|
|
812
|
+
SaveActionIf1,
|
|
813
|
+
SaveActionIf1TypedDict,
|
|
814
|
+
SaveActionIf2,
|
|
815
|
+
SaveActionIf2TypedDict,
|
|
816
|
+
SaveActionTypedDict,
|
|
817
|
+
)
|
|
818
|
+
from .sayaction import (
|
|
819
|
+
Role,
|
|
820
|
+
SayAction,
|
|
821
|
+
SayActionIf1,
|
|
822
|
+
SayActionIf1TypedDict,
|
|
823
|
+
SayActionIf2,
|
|
824
|
+
SayActionIf2TypedDict,
|
|
825
|
+
SayActionTypedDict,
|
|
826
|
+
)
|
|
712
827
|
from .security import Security, SecurityTypedDict
|
|
713
828
|
from .service_deleteop import ServiceDeleteRequest, ServiceDeleteRequestTypedDict
|
|
714
829
|
from .service_listop import ServiceListRequest, ServiceListRequestTypedDict
|
|
@@ -776,8 +891,40 @@ if TYPE_CHECKING:
|
|
|
776
891
|
SessionTranscriptionResponse,
|
|
777
892
|
SessionTranscriptionResponseTypedDict,
|
|
778
893
|
)
|
|
894
|
+
from .setvalueaction import (
|
|
895
|
+
SetValueAction,
|
|
896
|
+
SetValueActionIf1,
|
|
897
|
+
SetValueActionIf1TypedDict,
|
|
898
|
+
SetValueActionIf2,
|
|
899
|
+
SetValueActionIf2TypedDict,
|
|
900
|
+
SetValueActionTypedDict,
|
|
901
|
+
SetValueActionValueFrom1,
|
|
902
|
+
SetValueActionValueFrom1TypedDict,
|
|
903
|
+
SetValueActionValueFrom2,
|
|
904
|
+
SetValueActionValueFrom2TypedDict,
|
|
905
|
+
)
|
|
779
906
|
from .statictoolparameter import StaticToolParameter, StaticToolParameterTypedDict
|
|
780
907
|
from .statictoolparametertype import StaticToolParameterType
|
|
908
|
+
from .step import (
|
|
909
|
+
Instruction,
|
|
910
|
+
InstructionTypedDict,
|
|
911
|
+
Next,
|
|
912
|
+
NextTypedDict,
|
|
913
|
+
Step,
|
|
914
|
+
StepTypedDict,
|
|
915
|
+
)
|
|
916
|
+
from .stepeventactions import (
|
|
917
|
+
Enter,
|
|
918
|
+
EnterTypedDict,
|
|
919
|
+
StepEventActions,
|
|
920
|
+
StepEventActionsStart,
|
|
921
|
+
StepEventActionsStartTypedDict,
|
|
922
|
+
StepEventActionsSubmit,
|
|
923
|
+
StepEventActionsSubmitTypedDict,
|
|
924
|
+
StepEventActionsTypedDict,
|
|
925
|
+
)
|
|
926
|
+
from .stepstask import StepsTask, StepsTaskTypedDict
|
|
927
|
+
from .steptools import StepTools, StepToolsTypedDict
|
|
781
928
|
from .summaryentry import SummaryEntry, SummaryEntryTypedDict
|
|
782
929
|
from .supportedllm import SupportedLlm, SupportedLlmTypedDict
|
|
783
930
|
from .takeoutrequeststatus import TakeoutRequestStatus
|
|
@@ -811,8 +958,8 @@ if TYPE_CHECKING:
|
|
|
811
958
|
Defaults,
|
|
812
959
|
DefaultsTypedDict,
|
|
813
960
|
ToolDefinition,
|
|
961
|
+
ToolDefinitionType,
|
|
814
962
|
ToolDefinitionTypedDict,
|
|
815
|
-
Type,
|
|
816
963
|
)
|
|
817
964
|
from .tooldetailresponse import ToolDetailResponse, ToolDetailResponseTypedDict
|
|
818
965
|
from .toolfunction import ToolFunction, ToolFunctionTypedDict
|
|
@@ -896,6 +1043,15 @@ if TYPE_CHECKING:
|
|
|
896
1043
|
ValidationError,
|
|
897
1044
|
ValidationErrorTypedDict,
|
|
898
1045
|
)
|
|
1046
|
+
from .variable import (
|
|
1047
|
+
Variable,
|
|
1048
|
+
VariableType,
|
|
1049
|
+
VariableTypedDict,
|
|
1050
|
+
VariableValueFrom1,
|
|
1051
|
+
VariableValueFrom1TypedDict,
|
|
1052
|
+
VariableValueFrom2,
|
|
1053
|
+
VariableValueFrom2TypedDict,
|
|
1054
|
+
)
|
|
899
1055
|
from .voice_groups_deleteop import (
|
|
900
1056
|
VoiceGroupsDeleteRequest,
|
|
901
1057
|
VoiceGroupsDeleteRequestTypedDict,
|
|
@@ -925,6 +1081,8 @@ if TYPE_CHECKING:
|
|
|
925
1081
|
) # Pydantic models with forward references
|
|
926
1082
|
AgentResponse.model_rebuild()
|
|
927
1083
|
ChannelTargetResponse.model_rebuild()
|
|
1084
|
+
CaseExpression.model_rebuild()
|
|
1085
|
+
ConditionalValue.model_rebuild()
|
|
928
1086
|
|
|
929
1087
|
|
|
930
1088
|
__all__ = [
|
|
@@ -960,6 +1118,8 @@ __all__ = [
|
|
|
960
1118
|
"AgentWaitSound",
|
|
961
1119
|
"Attributes",
|
|
962
1120
|
"AttributesTypedDict",
|
|
1121
|
+
"AutoPopulate",
|
|
1122
|
+
"AutoPopulateTypedDict",
|
|
963
1123
|
"AvailableTarget",
|
|
964
1124
|
"AvailableTargetProperties",
|
|
965
1125
|
"AvailableTargetTypedDict",
|
|
@@ -997,7 +1157,17 @@ __all__ = [
|
|
|
997
1157
|
"BodyPronunciationsUploadCsvFile",
|
|
998
1158
|
"BodyPronunciationsUploadCsvFileTypedDict",
|
|
999
1159
|
"BodyPronunciationsUploadCsvTypedDict",
|
|
1160
|
+
"CallAction",
|
|
1161
|
+
"CallActionIf1",
|
|
1162
|
+
"CallActionIf1TypedDict",
|
|
1163
|
+
"CallActionIf2",
|
|
1164
|
+
"CallActionIf2TypedDict",
|
|
1165
|
+
"CallActionTypedDict",
|
|
1000
1166
|
"CampaignProperties",
|
|
1167
|
+
"CaseExpression",
|
|
1168
|
+
"CaseExpressionTypedDict",
|
|
1169
|
+
"CelExpression",
|
|
1170
|
+
"CelExpressionTypedDict",
|
|
1001
1171
|
"Channel",
|
|
1002
1172
|
"ChannelConfigView",
|
|
1003
1173
|
"ChannelConfigViewTypedDict",
|
|
@@ -1041,6 +1211,28 @@ __all__ = [
|
|
|
1041
1211
|
"CommunicationRequestResult",
|
|
1042
1212
|
"CommunicationRequestResultTypedDict",
|
|
1043
1213
|
"CommunicationRequestTypedDict",
|
|
1214
|
+
"ConditionalText",
|
|
1215
|
+
"ConditionalTextIf1",
|
|
1216
|
+
"ConditionalTextIf1TypedDict",
|
|
1217
|
+
"ConditionalTextIf2",
|
|
1218
|
+
"ConditionalTextIf2TypedDict",
|
|
1219
|
+
"ConditionalTextTypedDict",
|
|
1220
|
+
"ConditionalValue",
|
|
1221
|
+
"ConditionalValueIf1",
|
|
1222
|
+
"ConditionalValueIf1TypedDict",
|
|
1223
|
+
"ConditionalValueIf2",
|
|
1224
|
+
"ConditionalValueIf2TypedDict",
|
|
1225
|
+
"ConditionalValueTypedDict",
|
|
1226
|
+
"ConditionalValueValueFrom1",
|
|
1227
|
+
"ConditionalValueValueFrom1TypedDict",
|
|
1228
|
+
"ConditionalValueValueFrom2",
|
|
1229
|
+
"ConditionalValueValueFrom2TypedDict",
|
|
1230
|
+
"Context",
|
|
1231
|
+
"ContextTaskMetadata",
|
|
1232
|
+
"ContextTaskMetadataTypedDict",
|
|
1233
|
+
"ContextToolInfo",
|
|
1234
|
+
"ContextToolInfoTypedDict",
|
|
1235
|
+
"ContextTypedDict",
|
|
1044
1236
|
"Conversation",
|
|
1045
1237
|
"ConversationProperties",
|
|
1046
1238
|
"ConversationTypedDict",
|
|
@@ -1048,8 +1240,6 @@ __all__ = [
|
|
|
1048
1240
|
"ConversationsListRequestTypedDict",
|
|
1049
1241
|
"CreateTakeoutResponse",
|
|
1050
1242
|
"CreateTakeoutResponseTypedDict",
|
|
1051
|
-
"CustomMessageConfig",
|
|
1052
|
-
"CustomMessageConfigTypedDict",
|
|
1053
1243
|
"CustomMessageCreateRequest",
|
|
1054
1244
|
"CustomMessageCreateRequestTypedDict",
|
|
1055
1245
|
"CustomMessageGetByIDRequest",
|
|
@@ -1123,11 +1313,33 @@ __all__ = [
|
|
|
1123
1313
|
"DirectoryMemberUpdateRequest",
|
|
1124
1314
|
"DirectoryMemberUpdateRequestTypedDict",
|
|
1125
1315
|
"DirectoryMemberUpdateTypedDict",
|
|
1316
|
+
"Enter",
|
|
1317
|
+
"EnterTypedDict",
|
|
1126
1318
|
"Event",
|
|
1127
1319
|
"EventProperties",
|
|
1320
|
+
"EventTask",
|
|
1321
|
+
"EventTaskEvents",
|
|
1322
|
+
"EventTaskEventsStart",
|
|
1323
|
+
"EventTaskEventsStartTypedDict",
|
|
1324
|
+
"EventTaskEventsTypedDict",
|
|
1325
|
+
"EventTaskTypedDict",
|
|
1128
1326
|
"EventTypedDict",
|
|
1129
1327
|
"EventsListRequest",
|
|
1130
1328
|
"EventsListRequestTypedDict",
|
|
1329
|
+
"Expression1",
|
|
1330
|
+
"Expression1TypedDict",
|
|
1331
|
+
"Expression2",
|
|
1332
|
+
"Expression2TypedDict",
|
|
1333
|
+
"ExpressionTask",
|
|
1334
|
+
"ExpressionTaskEvents",
|
|
1335
|
+
"ExpressionTaskEventsStart",
|
|
1336
|
+
"ExpressionTaskEventsStartTypedDict",
|
|
1337
|
+
"ExpressionTaskEventsSubmit",
|
|
1338
|
+
"ExpressionTaskEventsSubmitTypedDict",
|
|
1339
|
+
"ExpressionTaskEventsTypedDict",
|
|
1340
|
+
"ExpressionTaskTypedDict",
|
|
1341
|
+
"File",
|
|
1342
|
+
"FileTypedDict",
|
|
1131
1343
|
"FolderDetails",
|
|
1132
1344
|
"FolderDetailsTypedDict",
|
|
1133
1345
|
"FolderStats",
|
|
@@ -1155,6 +1367,15 @@ __all__ = [
|
|
|
1155
1367
|
"IncidentResponseTypedDict",
|
|
1156
1368
|
"IncidentUpdateRequest",
|
|
1157
1369
|
"IncidentUpdateRequestTypedDict",
|
|
1370
|
+
"IncrementAction",
|
|
1371
|
+
"IncrementActionIf1",
|
|
1372
|
+
"IncrementActionIf1TypedDict",
|
|
1373
|
+
"IncrementActionIf2",
|
|
1374
|
+
"IncrementActionIf2TypedDict",
|
|
1375
|
+
"IncrementActionTypedDict",
|
|
1376
|
+
"InputParameter",
|
|
1377
|
+
"InputParameterType",
|
|
1378
|
+
"InputParameterTypedDict",
|
|
1158
1379
|
"InsightToolDefinition",
|
|
1159
1380
|
"InsightToolDefinitionTypedDict",
|
|
1160
1381
|
"InsightToolGetByIDRequest",
|
|
@@ -1230,8 +1451,13 @@ __all__ = [
|
|
|
1230
1451
|
"InsightsWorkflowUpdateRequestTypedDict",
|
|
1231
1452
|
"InspectLatencyResponse",
|
|
1232
1453
|
"InspectLatencyResponseTypedDict",
|
|
1454
|
+
"Instruction",
|
|
1455
|
+
"InstructionTypedDict",
|
|
1233
1456
|
"InternalTool",
|
|
1234
1457
|
"InternalToolTypedDict",
|
|
1458
|
+
"JMESPathExpression",
|
|
1459
|
+
"JMESPathExpressionType",
|
|
1460
|
+
"JMESPathExpressionTypedDict",
|
|
1235
1461
|
"JSONValue",
|
|
1236
1462
|
"JSONValueTypedDict",
|
|
1237
1463
|
"LanguageCode",
|
|
@@ -1312,12 +1538,22 @@ __all__ = [
|
|
|
1312
1538
|
"ListResponseUserResponseTypedDict",
|
|
1313
1539
|
"ListResponseVoiceGroupResponse",
|
|
1314
1540
|
"ListResponseVoiceGroupResponseTypedDict",
|
|
1541
|
+
"LoadToolFromFileTask",
|
|
1542
|
+
"LoadToolFromFileTaskTypedDict",
|
|
1315
1543
|
"Loc",
|
|
1316
1544
|
"LocTypedDict",
|
|
1317
1545
|
"LoginType",
|
|
1318
1546
|
"MatchType",
|
|
1319
1547
|
"Metadata",
|
|
1320
1548
|
"MetadataTypedDict",
|
|
1549
|
+
"Next",
|
|
1550
|
+
"NextStep",
|
|
1551
|
+
"NextStepIf1",
|
|
1552
|
+
"NextStepIf1TypedDict",
|
|
1553
|
+
"NextStepIf2",
|
|
1554
|
+
"NextStepIf2TypedDict",
|
|
1555
|
+
"NextStepTypedDict",
|
|
1556
|
+
"NextTypedDict",
|
|
1321
1557
|
"OrderByDirection",
|
|
1322
1558
|
"OrganizationChannelConfig",
|
|
1323
1559
|
"OrganizationChannelConfigTypedDict",
|
|
@@ -1392,6 +1628,7 @@ __all__ = [
|
|
|
1392
1628
|
"PronunciationsCsvUploadResponse",
|
|
1393
1629
|
"PronunciationsCsvUploadResponseTypedDict",
|
|
1394
1630
|
"RequestStatus",
|
|
1631
|
+
"Role",
|
|
1395
1632
|
"RoleCreateRequest",
|
|
1396
1633
|
"RoleCreateRequestTypedDict",
|
|
1397
1634
|
"RoleProperties",
|
|
@@ -1407,6 +1644,18 @@ __all__ = [
|
|
|
1407
1644
|
"RolesListRequestTypedDict",
|
|
1408
1645
|
"SampleRate",
|
|
1409
1646
|
"SampleRateTypedDict",
|
|
1647
|
+
"SaveAction",
|
|
1648
|
+
"SaveActionIf1",
|
|
1649
|
+
"SaveActionIf1TypedDict",
|
|
1650
|
+
"SaveActionIf2",
|
|
1651
|
+
"SaveActionIf2TypedDict",
|
|
1652
|
+
"SaveActionTypedDict",
|
|
1653
|
+
"SayAction",
|
|
1654
|
+
"SayActionIf1",
|
|
1655
|
+
"SayActionIf1TypedDict",
|
|
1656
|
+
"SayActionIf2",
|
|
1657
|
+
"SayActionIf2TypedDict",
|
|
1658
|
+
"SayActionTypedDict",
|
|
1410
1659
|
"Security",
|
|
1411
1660
|
"SecurityTypedDict",
|
|
1412
1661
|
"ServiceCreateRequest",
|
|
@@ -1460,9 +1709,31 @@ __all__ = [
|
|
|
1460
1709
|
"SessionTypedDict",
|
|
1461
1710
|
"SessionsListRequest",
|
|
1462
1711
|
"SessionsListRequestTypedDict",
|
|
1712
|
+
"SetValueAction",
|
|
1713
|
+
"SetValueActionIf1",
|
|
1714
|
+
"SetValueActionIf1TypedDict",
|
|
1715
|
+
"SetValueActionIf2",
|
|
1716
|
+
"SetValueActionIf2TypedDict",
|
|
1717
|
+
"SetValueActionTypedDict",
|
|
1718
|
+
"SetValueActionValueFrom1",
|
|
1719
|
+
"SetValueActionValueFrom1TypedDict",
|
|
1720
|
+
"SetValueActionValueFrom2",
|
|
1721
|
+
"SetValueActionValueFrom2TypedDict",
|
|
1463
1722
|
"StaticToolParameter",
|
|
1464
1723
|
"StaticToolParameterType",
|
|
1465
1724
|
"StaticToolParameterTypedDict",
|
|
1725
|
+
"Step",
|
|
1726
|
+
"StepEventActions",
|
|
1727
|
+
"StepEventActionsStart",
|
|
1728
|
+
"StepEventActionsStartTypedDict",
|
|
1729
|
+
"StepEventActionsSubmit",
|
|
1730
|
+
"StepEventActionsSubmitTypedDict",
|
|
1731
|
+
"StepEventActionsTypedDict",
|
|
1732
|
+
"StepTools",
|
|
1733
|
+
"StepToolsTypedDict",
|
|
1734
|
+
"StepTypedDict",
|
|
1735
|
+
"StepsTask",
|
|
1736
|
+
"StepsTaskTypedDict",
|
|
1466
1737
|
"SummaryEntry",
|
|
1467
1738
|
"SummaryEntryTypedDict",
|
|
1468
1739
|
"SupportedLlm",
|
|
@@ -1475,6 +1746,12 @@ __all__ = [
|
|
|
1475
1746
|
"TakeoutsGetFileRequest",
|
|
1476
1747
|
"TakeoutsGetFileRequestTypedDict",
|
|
1477
1748
|
"TargetModes",
|
|
1749
|
+
"Task1",
|
|
1750
|
+
"Task1TypedDict",
|
|
1751
|
+
"Task2",
|
|
1752
|
+
"Task2TypedDict",
|
|
1753
|
+
"Task3",
|
|
1754
|
+
"Task3TypedDict",
|
|
1478
1755
|
"TelephonyConfigurations",
|
|
1479
1756
|
"TelephonyConfigurationsTypedDict",
|
|
1480
1757
|
"TestMessage",
|
|
@@ -1488,6 +1765,7 @@ __all__ = [
|
|
|
1488
1765
|
"ToolCreateRequest",
|
|
1489
1766
|
"ToolCreateRequestTypedDict",
|
|
1490
1767
|
"ToolDefinition",
|
|
1768
|
+
"ToolDefinitionType",
|
|
1491
1769
|
"ToolDefinitionTypedDict",
|
|
1492
1770
|
"ToolDeleteRequest",
|
|
1493
1771
|
"ToolDeleteRequestTypedDict",
|
|
@@ -1540,7 +1818,6 @@ __all__ = [
|
|
|
1540
1818
|
"TwilioNumberUpdateResponseTypedDict",
|
|
1541
1819
|
"TwilioPhoneNumber",
|
|
1542
1820
|
"TwilioPhoneNumberTypedDict",
|
|
1543
|
-
"Type",
|
|
1544
1821
|
"UserActivityStatus",
|
|
1545
1822
|
"UserCreateRequest",
|
|
1546
1823
|
"UserCreateRequestTypedDict",
|
|
@@ -1559,6 +1836,13 @@ __all__ = [
|
|
|
1559
1836
|
"UsersSendEmailRequestTypedDict",
|
|
1560
1837
|
"ValidationError",
|
|
1561
1838
|
"ValidationErrorTypedDict",
|
|
1839
|
+
"Variable",
|
|
1840
|
+
"VariableType",
|
|
1841
|
+
"VariableTypedDict",
|
|
1842
|
+
"VariableValueFrom1",
|
|
1843
|
+
"VariableValueFrom1TypedDict",
|
|
1844
|
+
"VariableValueFrom2",
|
|
1845
|
+
"VariableValueFrom2TypedDict",
|
|
1562
1846
|
"VoiceDisplayInfo",
|
|
1563
1847
|
"VoiceDisplayInfoTypedDict",
|
|
1564
1848
|
"VoiceGroupCreateRequest",
|
|
@@ -1641,7 +1925,17 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1641
1925
|
"BodyPronunciationsUploadCsvFile": ".body_pronunciations_upload_csv",
|
|
1642
1926
|
"BodyPronunciationsUploadCsvFileTypedDict": ".body_pronunciations_upload_csv",
|
|
1643
1927
|
"BodyPronunciationsUploadCsvTypedDict": ".body_pronunciations_upload_csv",
|
|
1928
|
+
"AutoPopulate": ".callaction",
|
|
1929
|
+
"AutoPopulateTypedDict": ".callaction",
|
|
1930
|
+
"CallAction": ".callaction",
|
|
1931
|
+
"CallActionIf1": ".callaction",
|
|
1932
|
+
"CallActionIf1TypedDict": ".callaction",
|
|
1933
|
+
"CallActionIf2": ".callaction",
|
|
1934
|
+
"CallActionIf2TypedDict": ".callaction",
|
|
1935
|
+
"CallActionTypedDict": ".callaction",
|
|
1644
1936
|
"CampaignProperties": ".campaignproperties",
|
|
1937
|
+
"CelExpression": ".celexpression",
|
|
1938
|
+
"CelExpressionTypedDict": ".celexpression",
|
|
1645
1939
|
"Channel": ".channel",
|
|
1646
1940
|
"ChannelTypedDict": ".channel",
|
|
1647
1941
|
"ChannelTargetsCreateRequest": ".channel_targets_createop",
|
|
@@ -1685,6 +1979,24 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1685
1979
|
"CommunicationRequestResultTypedDict": ".communicationrequestresult",
|
|
1686
1980
|
"Insights": ".communicationrequestresult",
|
|
1687
1981
|
"InsightsTypedDict": ".communicationrequestresult",
|
|
1982
|
+
"ConditionalText": ".conditionaltext",
|
|
1983
|
+
"ConditionalTextIf1": ".conditionaltext",
|
|
1984
|
+
"ConditionalTextIf1TypedDict": ".conditionaltext",
|
|
1985
|
+
"ConditionalTextIf2": ".conditionaltext",
|
|
1986
|
+
"ConditionalTextIf2TypedDict": ".conditionaltext",
|
|
1987
|
+
"ConditionalTextTypedDict": ".conditionaltext",
|
|
1988
|
+
"Context": ".context",
|
|
1989
|
+
"ContextTypedDict": ".context",
|
|
1990
|
+
"Task1": ".context",
|
|
1991
|
+
"Task1TypedDict": ".context",
|
|
1992
|
+
"Task2": ".context",
|
|
1993
|
+
"Task2TypedDict": ".context",
|
|
1994
|
+
"Task3": ".context",
|
|
1995
|
+
"Task3TypedDict": ".context",
|
|
1996
|
+
"ContextTaskMetadata": ".contexttaskmetadata",
|
|
1997
|
+
"ContextTaskMetadataTypedDict": ".contexttaskmetadata",
|
|
1998
|
+
"ContextToolInfo": ".contexttoolinfo",
|
|
1999
|
+
"ContextToolInfoTypedDict": ".contexttoolinfo",
|
|
1688
2000
|
"Conversation": ".conversation",
|
|
1689
2001
|
"ConversationTypedDict": ".conversation",
|
|
1690
2002
|
"ConversationProperties": ".conversationproperties",
|
|
@@ -1698,8 +2010,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1698
2010
|
"CustomMessagesDeleteRequestTypedDict": ".custom_messages_deleteop",
|
|
1699
2011
|
"CustomMessagesListRequest": ".custom_messages_listop",
|
|
1700
2012
|
"CustomMessagesListRequestTypedDict": ".custom_messages_listop",
|
|
1701
|
-
"CustomMessageConfig": ".custommessageconfig",
|
|
1702
|
-
"CustomMessageConfigTypedDict": ".custommessageconfig",
|
|
1703
2013
|
"CustomMessageCreateRequest": ".custommessagecreaterequest",
|
|
1704
2014
|
"CustomMessageCreateRequestTypedDict": ".custommessagecreaterequest",
|
|
1705
2015
|
"CustomMessageProperties": ".custommessageproperties",
|
|
@@ -1772,6 +2082,24 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1772
2082
|
"EventProperties": ".eventproperties",
|
|
1773
2083
|
"EventsListRequest": ".events_listop",
|
|
1774
2084
|
"EventsListRequestTypedDict": ".events_listop",
|
|
2085
|
+
"EventTask": ".eventtask",
|
|
2086
|
+
"EventTaskTypedDict": ".eventtask",
|
|
2087
|
+
"EventTaskEvents": ".eventtaskevents",
|
|
2088
|
+
"EventTaskEventsStart": ".eventtaskevents",
|
|
2089
|
+
"EventTaskEventsStartTypedDict": ".eventtaskevents",
|
|
2090
|
+
"EventTaskEventsTypedDict": ".eventtaskevents",
|
|
2091
|
+
"Expression1": ".expressiontask",
|
|
2092
|
+
"Expression1TypedDict": ".expressiontask",
|
|
2093
|
+
"Expression2": ".expressiontask",
|
|
2094
|
+
"Expression2TypedDict": ".expressiontask",
|
|
2095
|
+
"ExpressionTask": ".expressiontask",
|
|
2096
|
+
"ExpressionTaskTypedDict": ".expressiontask",
|
|
2097
|
+
"ExpressionTaskEvents": ".expressiontaskevents",
|
|
2098
|
+
"ExpressionTaskEventsStart": ".expressiontaskevents",
|
|
2099
|
+
"ExpressionTaskEventsStartTypedDict": ".expressiontaskevents",
|
|
2100
|
+
"ExpressionTaskEventsSubmit": ".expressiontaskevents",
|
|
2101
|
+
"ExpressionTaskEventsSubmitTypedDict": ".expressiontaskevents",
|
|
2102
|
+
"ExpressionTaskEventsTypedDict": ".expressiontaskevents",
|
|
1775
2103
|
"FolderDetails": ".folderdetails",
|
|
1776
2104
|
"FolderDetailsTypedDict": ".folderdetails",
|
|
1777
2105
|
"FolderStats": ".folderdetails",
|
|
@@ -1799,6 +2127,15 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1799
2127
|
"IncidentResponseTypedDict": ".incidentresponse",
|
|
1800
2128
|
"IncidentUpdateRequest": ".incidentupdaterequest",
|
|
1801
2129
|
"IncidentUpdateRequestTypedDict": ".incidentupdaterequest",
|
|
2130
|
+
"IncrementAction": ".incrementaction",
|
|
2131
|
+
"IncrementActionIf1": ".incrementaction",
|
|
2132
|
+
"IncrementActionIf1TypedDict": ".incrementaction",
|
|
2133
|
+
"IncrementActionIf2": ".incrementaction",
|
|
2134
|
+
"IncrementActionIf2TypedDict": ".incrementaction",
|
|
2135
|
+
"IncrementActionTypedDict": ".incrementaction",
|
|
2136
|
+
"InputParameter": ".inputparameter",
|
|
2137
|
+
"InputParameterType": ".inputparameter",
|
|
2138
|
+
"InputParameterTypedDict": ".inputparameter",
|
|
1802
2139
|
"InsightToolGetByIDRequest": ".insight_tool_get_by_idop",
|
|
1803
2140
|
"InsightToolGetByIDRequestTypedDict": ".insight_tool_get_by_idop",
|
|
1804
2141
|
"InsightToolListRequest": ".insight_tool_listop",
|
|
@@ -1882,6 +2219,9 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1882
2219
|
"InspectLatencyResponseTypedDict": ".inspectlatencyresponse",
|
|
1883
2220
|
"InternalTool": ".internaltool",
|
|
1884
2221
|
"InternalToolTypedDict": ".internaltool",
|
|
2222
|
+
"JMESPathExpression": ".jmespathexpression",
|
|
2223
|
+
"JMESPathExpressionType": ".jmespathexpression",
|
|
2224
|
+
"JMESPathExpressionTypedDict": ".jmespathexpression",
|
|
1885
2225
|
"LanguageGroupsDeleteRequest": ".language_groups_deleteop",
|
|
1886
2226
|
"LanguageGroupsDeleteRequestTypedDict": ".language_groups_deleteop",
|
|
1887
2227
|
"LanguageGroupsGetByIDRequest": ".language_groups_get_by_idop",
|
|
@@ -1960,8 +2300,18 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1960
2300
|
"ListResponseUserResponseTypedDict": ".listresponse_userresponse_",
|
|
1961
2301
|
"ListResponseVoiceGroupResponse": ".listresponse_voicegroupresponse_",
|
|
1962
2302
|
"ListResponseVoiceGroupResponseTypedDict": ".listresponse_voicegroupresponse_",
|
|
2303
|
+
"File": ".loadtoolfromfiletask",
|
|
2304
|
+
"FileTypedDict": ".loadtoolfromfiletask",
|
|
2305
|
+
"LoadToolFromFileTask": ".loadtoolfromfiletask",
|
|
2306
|
+
"LoadToolFromFileTaskTypedDict": ".loadtoolfromfiletask",
|
|
1963
2307
|
"LoginType": ".logintype",
|
|
1964
2308
|
"MatchType": ".matchtype",
|
|
2309
|
+
"NextStep": ".nextstep",
|
|
2310
|
+
"NextStepIf1": ".nextstep",
|
|
2311
|
+
"NextStepIf1TypedDict": ".nextstep",
|
|
2312
|
+
"NextStepIf2": ".nextstep",
|
|
2313
|
+
"NextStepIf2TypedDict": ".nextstep",
|
|
2314
|
+
"NextStepTypedDict": ".nextstep",
|
|
1965
2315
|
"OrderByDirection": ".orderbydirection",
|
|
1966
2316
|
"OrganizationChannelConfig": ".organizationchannelconfig",
|
|
1967
2317
|
"OrganizationChannelConfigTypedDict": ".organizationchannelconfig",
|
|
@@ -2049,6 +2399,19 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2049
2399
|
"RolesListRequestTypedDict": ".roles_listop",
|
|
2050
2400
|
"RoleUpdateRequest": ".roleupdaterequest",
|
|
2051
2401
|
"RoleUpdateRequestTypedDict": ".roleupdaterequest",
|
|
2402
|
+
"SaveAction": ".saveaction",
|
|
2403
|
+
"SaveActionIf1": ".saveaction",
|
|
2404
|
+
"SaveActionIf1TypedDict": ".saveaction",
|
|
2405
|
+
"SaveActionIf2": ".saveaction",
|
|
2406
|
+
"SaveActionIf2TypedDict": ".saveaction",
|
|
2407
|
+
"SaveActionTypedDict": ".saveaction",
|
|
2408
|
+
"Role": ".sayaction",
|
|
2409
|
+
"SayAction": ".sayaction",
|
|
2410
|
+
"SayActionIf1": ".sayaction",
|
|
2411
|
+
"SayActionIf1TypedDict": ".sayaction",
|
|
2412
|
+
"SayActionIf2": ".sayaction",
|
|
2413
|
+
"SayActionIf2TypedDict": ".sayaction",
|
|
2414
|
+
"SayActionTypedDict": ".sayaction",
|
|
2052
2415
|
"Security": ".security",
|
|
2053
2416
|
"SecurityTypedDict": ".security",
|
|
2054
2417
|
"ServiceDeleteRequest": ".service_deleteop",
|
|
@@ -2102,9 +2465,37 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2102
2465
|
"SessionTextTypedDict": ".sessiontext",
|
|
2103
2466
|
"SessionTranscriptionResponse": ".sessiontranscriptionresponse",
|
|
2104
2467
|
"SessionTranscriptionResponseTypedDict": ".sessiontranscriptionresponse",
|
|
2468
|
+
"SetValueAction": ".setvalueaction",
|
|
2469
|
+
"SetValueActionIf1": ".setvalueaction",
|
|
2470
|
+
"SetValueActionIf1TypedDict": ".setvalueaction",
|
|
2471
|
+
"SetValueActionIf2": ".setvalueaction",
|
|
2472
|
+
"SetValueActionIf2TypedDict": ".setvalueaction",
|
|
2473
|
+
"SetValueActionTypedDict": ".setvalueaction",
|
|
2474
|
+
"SetValueActionValueFrom1": ".setvalueaction",
|
|
2475
|
+
"SetValueActionValueFrom1TypedDict": ".setvalueaction",
|
|
2476
|
+
"SetValueActionValueFrom2": ".setvalueaction",
|
|
2477
|
+
"SetValueActionValueFrom2TypedDict": ".setvalueaction",
|
|
2105
2478
|
"StaticToolParameter": ".statictoolparameter",
|
|
2106
2479
|
"StaticToolParameterTypedDict": ".statictoolparameter",
|
|
2107
2480
|
"StaticToolParameterType": ".statictoolparametertype",
|
|
2481
|
+
"Instruction": ".step",
|
|
2482
|
+
"InstructionTypedDict": ".step",
|
|
2483
|
+
"Next": ".step",
|
|
2484
|
+
"NextTypedDict": ".step",
|
|
2485
|
+
"Step": ".step",
|
|
2486
|
+
"StepTypedDict": ".step",
|
|
2487
|
+
"Enter": ".stepeventactions",
|
|
2488
|
+
"EnterTypedDict": ".stepeventactions",
|
|
2489
|
+
"StepEventActions": ".stepeventactions",
|
|
2490
|
+
"StepEventActionsStart": ".stepeventactions",
|
|
2491
|
+
"StepEventActionsStartTypedDict": ".stepeventactions",
|
|
2492
|
+
"StepEventActionsSubmit": ".stepeventactions",
|
|
2493
|
+
"StepEventActionsSubmitTypedDict": ".stepeventactions",
|
|
2494
|
+
"StepEventActionsTypedDict": ".stepeventactions",
|
|
2495
|
+
"StepsTask": ".stepstask",
|
|
2496
|
+
"StepsTaskTypedDict": ".stepstask",
|
|
2497
|
+
"StepTools": ".steptools",
|
|
2498
|
+
"StepToolsTypedDict": ".steptools",
|
|
2108
2499
|
"SummaryEntry": ".summaryentry",
|
|
2109
2500
|
"SummaryEntryTypedDict": ".summaryentry",
|
|
2110
2501
|
"SupportedLlm": ".supportedllm",
|
|
@@ -2138,8 +2529,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2138
2529
|
"Defaults": ".tooldefinition",
|
|
2139
2530
|
"DefaultsTypedDict": ".tooldefinition",
|
|
2140
2531
|
"ToolDefinition": ".tooldefinition",
|
|
2532
|
+
"ToolDefinitionType": ".tooldefinition",
|
|
2141
2533
|
"ToolDefinitionTypedDict": ".tooldefinition",
|
|
2142
|
-
"Type": ".tooldefinition",
|
|
2143
2534
|
"ToolDetailResponse": ".tooldetailresponse",
|
|
2144
2535
|
"ToolDetailResponseTypedDict": ".tooldetailresponse",
|
|
2145
2536
|
"ToolFunction": ".toolfunction",
|
|
@@ -2206,6 +2597,13 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2206
2597
|
"LocTypedDict": ".validationerror",
|
|
2207
2598
|
"ValidationError": ".validationerror",
|
|
2208
2599
|
"ValidationErrorTypedDict": ".validationerror",
|
|
2600
|
+
"Variable": ".variable",
|
|
2601
|
+
"VariableType": ".variable",
|
|
2602
|
+
"VariableTypedDict": ".variable",
|
|
2603
|
+
"VariableValueFrom1": ".variable",
|
|
2604
|
+
"VariableValueFrom1TypedDict": ".variable",
|
|
2605
|
+
"VariableValueFrom2": ".variable",
|
|
2606
|
+
"VariableValueFrom2TypedDict": ".variable",
|
|
2209
2607
|
"VoiceGroupsDeleteRequest": ".voice_groups_deleteop",
|
|
2210
2608
|
"VoiceGroupsDeleteRequestTypedDict": ".voice_groups_deleteop",
|
|
2211
2609
|
"VoiceGroupsGetByIDRequest": ".voice_groups_get_by_idop",
|