syllable-sdk 0.41.23__py3-none-any.whl → 0.44.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/agents.py +12 -0
- syllable_sdk/basesdk.py +6 -0
- syllable_sdk/batches.py +18 -0
- syllable_sdk/campaigns.py +10 -0
- syllable_sdk/channels.py +8 -0
- syllable_sdk/conversation_config.py +411 -0
- syllable_sdk/conversations.py +2 -0
- syllable_sdk/custom_messages.py +10 -0
- syllable_sdk/dashboards.py +12 -0
- syllable_sdk/data_sources.py +10 -0
- syllable_sdk/directory.py +16 -0
- syllable_sdk/events.py +2 -0
- syllable_sdk/folders.py +16 -0
- syllable_sdk/full_summary.py +2 -0
- syllable_sdk/incidents.py +12 -0
- syllable_sdk/insights_sdk.py +2 -0
- syllable_sdk/insights_tools.py +14 -0
- syllable_sdk/language_groups.py +12 -0
- syllable_sdk/latency.py +2 -0
- syllable_sdk/models/__init__.py +449 -8
- syllable_sdk/models/bridgephrasesconfig.py +39 -0
- 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/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/get_bridge_phrases_configop.py +64 -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/pronunciationoverridesdictionary.py +6 -3
- syllable_sdk/models/saveaction.py +103 -0
- syllable_sdk/models/sayaction.py +108 -0
- syllable_sdk/models/schemas_cortex_v1_bridge_phrases_dictionarymetadata.py +67 -0
- syllable_sdk/models/{dictionarymetadata.py → schemas_tts_v1_pronunciations_dictionarymetadata.py} +2 -2
- 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 +166 -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/update_bridge_phrases_configop.py +71 -0
- syllable_sdk/models/variable.py +149 -0
- syllable_sdk/numbers.py +6 -0
- syllable_sdk/organizations.py +8 -0
- syllable_sdk/permissions.py +2 -0
- syllable_sdk/prompts.py +14 -0
- syllable_sdk/pronunciations.py +18 -4
- syllable_sdk/roles.py +10 -0
- syllable_sdk/sdk.py +6 -0
- syllable_sdk/services.py +10 -0
- syllable_sdk/session_debug.py +6 -0
- syllable_sdk/session_labels.py +6 -0
- syllable_sdk/sessions.py +8 -0
- syllable_sdk/takeouts.py +6 -0
- syllable_sdk/targets.py +10 -0
- syllable_sdk/test.py +2 -0
- syllable_sdk/tools.py +10 -0
- syllable_sdk/transcript.py +2 -0
- syllable_sdk/twilio.py +6 -0
- syllable_sdk/users.py +14 -0
- syllable_sdk/utils/forms.py +21 -10
- syllable_sdk/utils/queryparams.py +14 -2
- syllable_sdk/utils/retries.py +69 -5
- syllable_sdk/v1.py +14 -0
- syllable_sdk/voice_groups.py +12 -0
- syllable_sdk/workflows.py +16 -0
- {syllable_sdk-0.41.23.dist-info → syllable_sdk-0.44.1.dist-info}/METADATA +6 -1
- {syllable_sdk-0.41.23.dist-info → syllable_sdk-0.44.1.dist-info}/RECORD +81 -51
- {syllable_sdk-0.41.23.dist-info → syllable_sdk-0.44.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,19 @@ if TYPE_CHECKING:
|
|
|
80
93
|
BodyPronunciationsUploadCsvFileTypedDict,
|
|
81
94
|
BodyPronunciationsUploadCsvTypedDict,
|
|
82
95
|
)
|
|
96
|
+
from .bridgephrasesconfig import BridgePhrasesConfig, BridgePhrasesConfigTypedDict
|
|
97
|
+
from .callaction import (
|
|
98
|
+
AutoPopulate,
|
|
99
|
+
AutoPopulateTypedDict,
|
|
100
|
+
CallAction,
|
|
101
|
+
CallActionIf1,
|
|
102
|
+
CallActionIf1TypedDict,
|
|
103
|
+
CallActionIf2,
|
|
104
|
+
CallActionIf2TypedDict,
|
|
105
|
+
CallActionTypedDict,
|
|
106
|
+
)
|
|
83
107
|
from .campaignproperties import CampaignProperties
|
|
108
|
+
from .celexpression import CelExpression, CelExpressionTypedDict
|
|
84
109
|
from .channel import Channel, ChannelTypedDict
|
|
85
110
|
from .channel_targets_createop import (
|
|
86
111
|
ChannelTargetsCreateRequest,
|
|
@@ -150,6 +175,26 @@ if TYPE_CHECKING:
|
|
|
150
175
|
Insights,
|
|
151
176
|
InsightsTypedDict,
|
|
152
177
|
)
|
|
178
|
+
from .conditionaltext import (
|
|
179
|
+
ConditionalText,
|
|
180
|
+
ConditionalTextIf1,
|
|
181
|
+
ConditionalTextIf1TypedDict,
|
|
182
|
+
ConditionalTextIf2,
|
|
183
|
+
ConditionalTextIf2TypedDict,
|
|
184
|
+
ConditionalTextTypedDict,
|
|
185
|
+
)
|
|
186
|
+
from .context import (
|
|
187
|
+
Context,
|
|
188
|
+
ContextTypedDict,
|
|
189
|
+
Task1,
|
|
190
|
+
Task1TypedDict,
|
|
191
|
+
Task2,
|
|
192
|
+
Task2TypedDict,
|
|
193
|
+
Task3,
|
|
194
|
+
Task3TypedDict,
|
|
195
|
+
)
|
|
196
|
+
from .contexttaskmetadata import ContextTaskMetadata, ContextTaskMetadataTypedDict
|
|
197
|
+
from .contexttoolinfo import ContextToolInfo, ContextToolInfoTypedDict
|
|
153
198
|
from .conversation import Conversation, ConversationTypedDict
|
|
154
199
|
from .conversationproperties import ConversationProperties
|
|
155
200
|
from .conversations_listop import (
|
|
@@ -228,7 +273,6 @@ if TYPE_CHECKING:
|
|
|
228
273
|
from .dialogmessage import DialogMessage, DialogMessageTypedDict
|
|
229
274
|
from .dialogrole import DialogRole
|
|
230
275
|
from .dialogtoolcall import DialogToolCall, DialogToolCallTypedDict
|
|
231
|
-
from .dictionarymetadata import DictionaryMetadata, DictionaryMetadataTypedDict
|
|
232
276
|
from .directory_member_deleteop import (
|
|
233
277
|
DirectoryMemberDeleteRequest,
|
|
234
278
|
DirectoryMemberDeleteRequestTypedDict,
|
|
@@ -271,6 +315,29 @@ if TYPE_CHECKING:
|
|
|
271
315
|
from .event import Attributes, AttributesTypedDict, Event, EventTypedDict
|
|
272
316
|
from .eventproperties import EventProperties
|
|
273
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
|
+
)
|
|
274
341
|
from .folderdetails import (
|
|
275
342
|
FolderDetails,
|
|
276
343
|
FolderDetailsTypedDict,
|
|
@@ -281,6 +348,10 @@ if TYPE_CHECKING:
|
|
|
281
348
|
GenerateSessionRecordingUrlsRequest,
|
|
282
349
|
GenerateSessionRecordingUrlsRequestTypedDict,
|
|
283
350
|
)
|
|
351
|
+
from .get_bridge_phrases_configop import (
|
|
352
|
+
GetBridgePhrasesConfigRequest,
|
|
353
|
+
GetBridgePhrasesConfigRequestTypedDict,
|
|
354
|
+
)
|
|
284
355
|
from .get_session_data_by_session_idop import (
|
|
285
356
|
GetSessionDataBySessionIDRequest,
|
|
286
357
|
GetSessionDataBySessionIDRequestTypedDict,
|
|
@@ -313,6 +384,19 @@ if TYPE_CHECKING:
|
|
|
313
384
|
IncidentUpdateRequest,
|
|
314
385
|
IncidentUpdateRequestTypedDict,
|
|
315
386
|
)
|
|
387
|
+
from .incrementaction import (
|
|
388
|
+
IncrementAction,
|
|
389
|
+
IncrementActionIf1,
|
|
390
|
+
IncrementActionIf1TypedDict,
|
|
391
|
+
IncrementActionIf2,
|
|
392
|
+
IncrementActionIf2TypedDict,
|
|
393
|
+
IncrementActionTypedDict,
|
|
394
|
+
)
|
|
395
|
+
from .inputparameter import (
|
|
396
|
+
InputParameter,
|
|
397
|
+
InputParameterType,
|
|
398
|
+
InputParameterTypedDict,
|
|
399
|
+
)
|
|
316
400
|
from .insight_tool_get_by_idop import (
|
|
317
401
|
InsightToolGetByIDRequest,
|
|
318
402
|
InsightToolGetByIDRequestTypedDict,
|
|
@@ -448,6 +532,11 @@ if TYPE_CHECKING:
|
|
|
448
532
|
InspectLatencyResponseTypedDict,
|
|
449
533
|
)
|
|
450
534
|
from .internaltool import InternalTool, InternalToolTypedDict
|
|
535
|
+
from .jmespathexpression import (
|
|
536
|
+
JMESPathExpression,
|
|
537
|
+
JMESPathExpressionType,
|
|
538
|
+
JMESPathExpressionTypedDict,
|
|
539
|
+
)
|
|
451
540
|
from .language_groups_deleteop import (
|
|
452
541
|
LanguageGroupsDeleteRequest,
|
|
453
542
|
LanguageGroupsDeleteRequestTypedDict,
|
|
@@ -585,8 +674,22 @@ if TYPE_CHECKING:
|
|
|
585
674
|
ListResponseVoiceGroupResponse,
|
|
586
675
|
ListResponseVoiceGroupResponseTypedDict,
|
|
587
676
|
)
|
|
677
|
+
from .loadtoolfromfiletask import (
|
|
678
|
+
File,
|
|
679
|
+
FileTypedDict,
|
|
680
|
+
LoadToolFromFileTask,
|
|
681
|
+
LoadToolFromFileTaskTypedDict,
|
|
682
|
+
)
|
|
588
683
|
from .logintype import LoginType
|
|
589
684
|
from .matchtype import MatchType
|
|
685
|
+
from .nextstep import (
|
|
686
|
+
NextStep,
|
|
687
|
+
NextStepIf1,
|
|
688
|
+
NextStepIf1TypedDict,
|
|
689
|
+
NextStepIf2,
|
|
690
|
+
NextStepIf2TypedDict,
|
|
691
|
+
NextStepTypedDict,
|
|
692
|
+
)
|
|
590
693
|
from .orderbydirection import OrderByDirection
|
|
591
694
|
from .organizationchannelconfig import (
|
|
592
695
|
OrganizationChannelConfig,
|
|
@@ -708,6 +811,31 @@ if TYPE_CHECKING:
|
|
|
708
811
|
from .roles_get_by_idop import RolesGetByIDRequest, RolesGetByIDRequestTypedDict
|
|
709
812
|
from .roles_listop import RolesListRequest, RolesListRequestTypedDict
|
|
710
813
|
from .roleupdaterequest import RoleUpdateRequest, RoleUpdateRequestTypedDict
|
|
814
|
+
from .saveaction import (
|
|
815
|
+
SaveAction,
|
|
816
|
+
SaveActionIf1,
|
|
817
|
+
SaveActionIf1TypedDict,
|
|
818
|
+
SaveActionIf2,
|
|
819
|
+
SaveActionIf2TypedDict,
|
|
820
|
+
SaveActionTypedDict,
|
|
821
|
+
)
|
|
822
|
+
from .sayaction import (
|
|
823
|
+
Role,
|
|
824
|
+
SayAction,
|
|
825
|
+
SayActionIf1,
|
|
826
|
+
SayActionIf1TypedDict,
|
|
827
|
+
SayActionIf2,
|
|
828
|
+
SayActionIf2TypedDict,
|
|
829
|
+
SayActionTypedDict,
|
|
830
|
+
)
|
|
831
|
+
from .schemas_cortex_v1_bridge_phrases_dictionarymetadata import (
|
|
832
|
+
SchemasCortexV1BridgePhrasesDictionaryMetadata,
|
|
833
|
+
SchemasCortexV1BridgePhrasesDictionaryMetadataTypedDict,
|
|
834
|
+
)
|
|
835
|
+
from .schemas_tts_v1_pronunciations_dictionarymetadata import (
|
|
836
|
+
SchemasTtsV1PronunciationsDictionaryMetadata,
|
|
837
|
+
SchemasTtsV1PronunciationsDictionaryMetadataTypedDict,
|
|
838
|
+
)
|
|
711
839
|
from .security import Security, SecurityTypedDict
|
|
712
840
|
from .service_deleteop import ServiceDeleteRequest, ServiceDeleteRequestTypedDict
|
|
713
841
|
from .service_listop import ServiceListRequest, ServiceListRequestTypedDict
|
|
@@ -775,8 +903,42 @@ if TYPE_CHECKING:
|
|
|
775
903
|
SessionTranscriptionResponse,
|
|
776
904
|
SessionTranscriptionResponseTypedDict,
|
|
777
905
|
)
|
|
906
|
+
from .setvalueaction import (
|
|
907
|
+
SetValueAction,
|
|
908
|
+
SetValueActionIf1,
|
|
909
|
+
SetValueActionIf1TypedDict,
|
|
910
|
+
SetValueActionIf2,
|
|
911
|
+
SetValueActionIf2TypedDict,
|
|
912
|
+
SetValueActionTypedDict,
|
|
913
|
+
SetValueActionValueFrom1,
|
|
914
|
+
SetValueActionValueFrom1TypedDict,
|
|
915
|
+
SetValueActionValueFrom2,
|
|
916
|
+
SetValueActionValueFrom2TypedDict,
|
|
917
|
+
)
|
|
778
918
|
from .statictoolparameter import StaticToolParameter, StaticToolParameterTypedDict
|
|
779
919
|
from .statictoolparametertype import StaticToolParameterType
|
|
920
|
+
from .step import (
|
|
921
|
+
Instruction,
|
|
922
|
+
InstructionTypedDict,
|
|
923
|
+
Next,
|
|
924
|
+
NextTypedDict,
|
|
925
|
+
Step,
|
|
926
|
+
StepTypedDict,
|
|
927
|
+
)
|
|
928
|
+
from .stepeventactions import (
|
|
929
|
+
Enter,
|
|
930
|
+
EnterTypedDict,
|
|
931
|
+
Presubmit,
|
|
932
|
+
PresubmitTypedDict,
|
|
933
|
+
StepEventActions,
|
|
934
|
+
StepEventActionsStart,
|
|
935
|
+
StepEventActionsStartTypedDict,
|
|
936
|
+
StepEventActionsSubmit,
|
|
937
|
+
StepEventActionsSubmitTypedDict,
|
|
938
|
+
StepEventActionsTypedDict,
|
|
939
|
+
)
|
|
940
|
+
from .stepstask import StepsTask, StepsTaskTypedDict
|
|
941
|
+
from .steptools import StepTools, StepToolsTypedDict
|
|
780
942
|
from .summaryentry import SummaryEntry, SummaryEntryTypedDict
|
|
781
943
|
from .supportedllm import SupportedLlm, SupportedLlmTypedDict
|
|
782
944
|
from .takeoutrequeststatus import TakeoutRequestStatus
|
|
@@ -810,8 +972,8 @@ if TYPE_CHECKING:
|
|
|
810
972
|
Defaults,
|
|
811
973
|
DefaultsTypedDict,
|
|
812
974
|
ToolDefinition,
|
|
975
|
+
ToolDefinitionType,
|
|
813
976
|
ToolDefinitionTypedDict,
|
|
814
|
-
Type,
|
|
815
977
|
)
|
|
816
978
|
from .tooldetailresponse import ToolDetailResponse, ToolDetailResponseTypedDict
|
|
817
979
|
from .toolfunction import ToolFunction, ToolFunctionTypedDict
|
|
@@ -874,6 +1036,10 @@ if TYPE_CHECKING:
|
|
|
874
1036
|
TwilioNumberUpdateResponseTypedDict,
|
|
875
1037
|
)
|
|
876
1038
|
from .twiliophonenumber import TwilioPhoneNumber, TwilioPhoneNumberTypedDict
|
|
1039
|
+
from .update_bridge_phrases_configop import (
|
|
1040
|
+
UpdateBridgePhrasesConfigRequest,
|
|
1041
|
+
UpdateBridgePhrasesConfigRequestTypedDict,
|
|
1042
|
+
)
|
|
877
1043
|
from .useractivitystatus import UserActivityStatus
|
|
878
1044
|
from .usercreaterequest import UserCreateRequest, UserCreateRequestTypedDict
|
|
879
1045
|
from .userdeleterequest import UserDeleteRequest, UserDeleteRequestTypedDict
|
|
@@ -895,6 +1061,15 @@ if TYPE_CHECKING:
|
|
|
895
1061
|
ValidationError,
|
|
896
1062
|
ValidationErrorTypedDict,
|
|
897
1063
|
)
|
|
1064
|
+
from .variable import (
|
|
1065
|
+
Variable,
|
|
1066
|
+
VariableType,
|
|
1067
|
+
VariableTypedDict,
|
|
1068
|
+
VariableValueFrom1,
|
|
1069
|
+
VariableValueFrom1TypedDict,
|
|
1070
|
+
VariableValueFrom2,
|
|
1071
|
+
VariableValueFrom2TypedDict,
|
|
1072
|
+
)
|
|
898
1073
|
from .voice_groups_deleteop import (
|
|
899
1074
|
VoiceGroupsDeleteRequest,
|
|
900
1075
|
VoiceGroupsDeleteRequestTypedDict,
|
|
@@ -924,6 +1099,8 @@ if TYPE_CHECKING:
|
|
|
924
1099
|
) # Pydantic models with forward references
|
|
925
1100
|
AgentResponse.model_rebuild()
|
|
926
1101
|
ChannelTargetResponse.model_rebuild()
|
|
1102
|
+
CaseExpression.model_rebuild()
|
|
1103
|
+
ConditionalValue.model_rebuild()
|
|
927
1104
|
|
|
928
1105
|
|
|
929
1106
|
__all__ = [
|
|
@@ -959,6 +1136,8 @@ __all__ = [
|
|
|
959
1136
|
"AgentWaitSound",
|
|
960
1137
|
"Attributes",
|
|
961
1138
|
"AttributesTypedDict",
|
|
1139
|
+
"AutoPopulate",
|
|
1140
|
+
"AutoPopulateTypedDict",
|
|
962
1141
|
"AvailableTarget",
|
|
963
1142
|
"AvailableTargetProperties",
|
|
964
1143
|
"AvailableTargetTypedDict",
|
|
@@ -996,7 +1175,19 @@ __all__ = [
|
|
|
996
1175
|
"BodyPronunciationsUploadCsvFile",
|
|
997
1176
|
"BodyPronunciationsUploadCsvFileTypedDict",
|
|
998
1177
|
"BodyPronunciationsUploadCsvTypedDict",
|
|
1178
|
+
"BridgePhrasesConfig",
|
|
1179
|
+
"BridgePhrasesConfigTypedDict",
|
|
1180
|
+
"CallAction",
|
|
1181
|
+
"CallActionIf1",
|
|
1182
|
+
"CallActionIf1TypedDict",
|
|
1183
|
+
"CallActionIf2",
|
|
1184
|
+
"CallActionIf2TypedDict",
|
|
1185
|
+
"CallActionTypedDict",
|
|
999
1186
|
"CampaignProperties",
|
|
1187
|
+
"CaseExpression",
|
|
1188
|
+
"CaseExpressionTypedDict",
|
|
1189
|
+
"CelExpression",
|
|
1190
|
+
"CelExpressionTypedDict",
|
|
1000
1191
|
"Channel",
|
|
1001
1192
|
"ChannelConfigView",
|
|
1002
1193
|
"ChannelConfigViewTypedDict",
|
|
@@ -1040,6 +1231,28 @@ __all__ = [
|
|
|
1040
1231
|
"CommunicationRequestResult",
|
|
1041
1232
|
"CommunicationRequestResultTypedDict",
|
|
1042
1233
|
"CommunicationRequestTypedDict",
|
|
1234
|
+
"ConditionalText",
|
|
1235
|
+
"ConditionalTextIf1",
|
|
1236
|
+
"ConditionalTextIf1TypedDict",
|
|
1237
|
+
"ConditionalTextIf2",
|
|
1238
|
+
"ConditionalTextIf2TypedDict",
|
|
1239
|
+
"ConditionalTextTypedDict",
|
|
1240
|
+
"ConditionalValue",
|
|
1241
|
+
"ConditionalValueIf1",
|
|
1242
|
+
"ConditionalValueIf1TypedDict",
|
|
1243
|
+
"ConditionalValueIf2",
|
|
1244
|
+
"ConditionalValueIf2TypedDict",
|
|
1245
|
+
"ConditionalValueTypedDict",
|
|
1246
|
+
"ConditionalValueValueFrom1",
|
|
1247
|
+
"ConditionalValueValueFrom1TypedDict",
|
|
1248
|
+
"ConditionalValueValueFrom2",
|
|
1249
|
+
"ConditionalValueValueFrom2TypedDict",
|
|
1250
|
+
"Context",
|
|
1251
|
+
"ContextTaskMetadata",
|
|
1252
|
+
"ContextTaskMetadataTypedDict",
|
|
1253
|
+
"ContextToolInfo",
|
|
1254
|
+
"ContextToolInfoTypedDict",
|
|
1255
|
+
"ContextTypedDict",
|
|
1043
1256
|
"Conversation",
|
|
1044
1257
|
"ConversationProperties",
|
|
1045
1258
|
"ConversationTypedDict",
|
|
@@ -1095,8 +1308,6 @@ __all__ = [
|
|
|
1095
1308
|
"DialogRole",
|
|
1096
1309
|
"DialogToolCall",
|
|
1097
1310
|
"DialogToolCallTypedDict",
|
|
1098
|
-
"DictionaryMetadata",
|
|
1099
|
-
"DictionaryMetadataTypedDict",
|
|
1100
1311
|
"DirectoryExtension",
|
|
1101
1312
|
"DirectoryExtensionNumber",
|
|
1102
1313
|
"DirectoryExtensionNumberTypedDict",
|
|
@@ -1120,17 +1331,41 @@ __all__ = [
|
|
|
1120
1331
|
"DirectoryMemberUpdateRequest",
|
|
1121
1332
|
"DirectoryMemberUpdateRequestTypedDict",
|
|
1122
1333
|
"DirectoryMemberUpdateTypedDict",
|
|
1334
|
+
"Enter",
|
|
1335
|
+
"EnterTypedDict",
|
|
1123
1336
|
"Event",
|
|
1124
1337
|
"EventProperties",
|
|
1338
|
+
"EventTask",
|
|
1339
|
+
"EventTaskEvents",
|
|
1340
|
+
"EventTaskEventsStart",
|
|
1341
|
+
"EventTaskEventsStartTypedDict",
|
|
1342
|
+
"EventTaskEventsTypedDict",
|
|
1343
|
+
"EventTaskTypedDict",
|
|
1125
1344
|
"EventTypedDict",
|
|
1126
1345
|
"EventsListRequest",
|
|
1127
1346
|
"EventsListRequestTypedDict",
|
|
1347
|
+
"Expression1",
|
|
1348
|
+
"Expression1TypedDict",
|
|
1349
|
+
"Expression2",
|
|
1350
|
+
"Expression2TypedDict",
|
|
1351
|
+
"ExpressionTask",
|
|
1352
|
+
"ExpressionTaskEvents",
|
|
1353
|
+
"ExpressionTaskEventsStart",
|
|
1354
|
+
"ExpressionTaskEventsStartTypedDict",
|
|
1355
|
+
"ExpressionTaskEventsSubmit",
|
|
1356
|
+
"ExpressionTaskEventsSubmitTypedDict",
|
|
1357
|
+
"ExpressionTaskEventsTypedDict",
|
|
1358
|
+
"ExpressionTaskTypedDict",
|
|
1359
|
+
"File",
|
|
1360
|
+
"FileTypedDict",
|
|
1128
1361
|
"FolderDetails",
|
|
1129
1362
|
"FolderDetailsTypedDict",
|
|
1130
1363
|
"FolderStats",
|
|
1131
1364
|
"FolderStatsTypedDict",
|
|
1132
1365
|
"GenerateSessionRecordingUrlsRequest",
|
|
1133
1366
|
"GenerateSessionRecordingUrlsRequestTypedDict",
|
|
1367
|
+
"GetBridgePhrasesConfigRequest",
|
|
1368
|
+
"GetBridgePhrasesConfigRequestTypedDict",
|
|
1134
1369
|
"GetSessionDataBySessionIDRequest",
|
|
1135
1370
|
"GetSessionDataBySessionIDRequestTypedDict",
|
|
1136
1371
|
"GetSessionDataBySidRequest",
|
|
@@ -1152,6 +1387,15 @@ __all__ = [
|
|
|
1152
1387
|
"IncidentResponseTypedDict",
|
|
1153
1388
|
"IncidentUpdateRequest",
|
|
1154
1389
|
"IncidentUpdateRequestTypedDict",
|
|
1390
|
+
"IncrementAction",
|
|
1391
|
+
"IncrementActionIf1",
|
|
1392
|
+
"IncrementActionIf1TypedDict",
|
|
1393
|
+
"IncrementActionIf2",
|
|
1394
|
+
"IncrementActionIf2TypedDict",
|
|
1395
|
+
"IncrementActionTypedDict",
|
|
1396
|
+
"InputParameter",
|
|
1397
|
+
"InputParameterType",
|
|
1398
|
+
"InputParameterTypedDict",
|
|
1155
1399
|
"InsightToolDefinition",
|
|
1156
1400
|
"InsightToolDefinitionTypedDict",
|
|
1157
1401
|
"InsightToolGetByIDRequest",
|
|
@@ -1227,8 +1471,13 @@ __all__ = [
|
|
|
1227
1471
|
"InsightsWorkflowUpdateRequestTypedDict",
|
|
1228
1472
|
"InspectLatencyResponse",
|
|
1229
1473
|
"InspectLatencyResponseTypedDict",
|
|
1474
|
+
"Instruction",
|
|
1475
|
+
"InstructionTypedDict",
|
|
1230
1476
|
"InternalTool",
|
|
1231
1477
|
"InternalToolTypedDict",
|
|
1478
|
+
"JMESPathExpression",
|
|
1479
|
+
"JMESPathExpressionType",
|
|
1480
|
+
"JMESPathExpressionTypedDict",
|
|
1232
1481
|
"JSONValue",
|
|
1233
1482
|
"JSONValueTypedDict",
|
|
1234
1483
|
"LanguageCode",
|
|
@@ -1309,12 +1558,22 @@ __all__ = [
|
|
|
1309
1558
|
"ListResponseUserResponseTypedDict",
|
|
1310
1559
|
"ListResponseVoiceGroupResponse",
|
|
1311
1560
|
"ListResponseVoiceGroupResponseTypedDict",
|
|
1561
|
+
"LoadToolFromFileTask",
|
|
1562
|
+
"LoadToolFromFileTaskTypedDict",
|
|
1312
1563
|
"Loc",
|
|
1313
1564
|
"LocTypedDict",
|
|
1314
1565
|
"LoginType",
|
|
1315
1566
|
"MatchType",
|
|
1316
1567
|
"Metadata",
|
|
1317
1568
|
"MetadataTypedDict",
|
|
1569
|
+
"Next",
|
|
1570
|
+
"NextStep",
|
|
1571
|
+
"NextStepIf1",
|
|
1572
|
+
"NextStepIf1TypedDict",
|
|
1573
|
+
"NextStepIf2",
|
|
1574
|
+
"NextStepIf2TypedDict",
|
|
1575
|
+
"NextStepTypedDict",
|
|
1576
|
+
"NextTypedDict",
|
|
1318
1577
|
"OrderByDirection",
|
|
1319
1578
|
"OrganizationChannelConfig",
|
|
1320
1579
|
"OrganizationChannelConfigTypedDict",
|
|
@@ -1360,6 +1619,8 @@ __all__ = [
|
|
|
1360
1619
|
"PostGetDashboardRequestTypedDict",
|
|
1361
1620
|
"PostListDashboardRequest",
|
|
1362
1621
|
"PostListDashboardRequestTypedDict",
|
|
1622
|
+
"Presubmit",
|
|
1623
|
+
"PresubmitTypedDict",
|
|
1363
1624
|
"PromptCreateRequest",
|
|
1364
1625
|
"PromptCreateRequestTypedDict",
|
|
1365
1626
|
"PromptHistory",
|
|
@@ -1389,6 +1650,7 @@ __all__ = [
|
|
|
1389
1650
|
"PronunciationsCsvUploadResponse",
|
|
1390
1651
|
"PronunciationsCsvUploadResponseTypedDict",
|
|
1391
1652
|
"RequestStatus",
|
|
1653
|
+
"Role",
|
|
1392
1654
|
"RoleCreateRequest",
|
|
1393
1655
|
"RoleCreateRequestTypedDict",
|
|
1394
1656
|
"RoleProperties",
|
|
@@ -1404,6 +1666,22 @@ __all__ = [
|
|
|
1404
1666
|
"RolesListRequestTypedDict",
|
|
1405
1667
|
"SampleRate",
|
|
1406
1668
|
"SampleRateTypedDict",
|
|
1669
|
+
"SaveAction",
|
|
1670
|
+
"SaveActionIf1",
|
|
1671
|
+
"SaveActionIf1TypedDict",
|
|
1672
|
+
"SaveActionIf2",
|
|
1673
|
+
"SaveActionIf2TypedDict",
|
|
1674
|
+
"SaveActionTypedDict",
|
|
1675
|
+
"SayAction",
|
|
1676
|
+
"SayActionIf1",
|
|
1677
|
+
"SayActionIf1TypedDict",
|
|
1678
|
+
"SayActionIf2",
|
|
1679
|
+
"SayActionIf2TypedDict",
|
|
1680
|
+
"SayActionTypedDict",
|
|
1681
|
+
"SchemasCortexV1BridgePhrasesDictionaryMetadata",
|
|
1682
|
+
"SchemasCortexV1BridgePhrasesDictionaryMetadataTypedDict",
|
|
1683
|
+
"SchemasTtsV1PronunciationsDictionaryMetadata",
|
|
1684
|
+
"SchemasTtsV1PronunciationsDictionaryMetadataTypedDict",
|
|
1407
1685
|
"Security",
|
|
1408
1686
|
"SecurityTypedDict",
|
|
1409
1687
|
"ServiceCreateRequest",
|
|
@@ -1457,9 +1735,31 @@ __all__ = [
|
|
|
1457
1735
|
"SessionTypedDict",
|
|
1458
1736
|
"SessionsListRequest",
|
|
1459
1737
|
"SessionsListRequestTypedDict",
|
|
1738
|
+
"SetValueAction",
|
|
1739
|
+
"SetValueActionIf1",
|
|
1740
|
+
"SetValueActionIf1TypedDict",
|
|
1741
|
+
"SetValueActionIf2",
|
|
1742
|
+
"SetValueActionIf2TypedDict",
|
|
1743
|
+
"SetValueActionTypedDict",
|
|
1744
|
+
"SetValueActionValueFrom1",
|
|
1745
|
+
"SetValueActionValueFrom1TypedDict",
|
|
1746
|
+
"SetValueActionValueFrom2",
|
|
1747
|
+
"SetValueActionValueFrom2TypedDict",
|
|
1460
1748
|
"StaticToolParameter",
|
|
1461
1749
|
"StaticToolParameterType",
|
|
1462
1750
|
"StaticToolParameterTypedDict",
|
|
1751
|
+
"Step",
|
|
1752
|
+
"StepEventActions",
|
|
1753
|
+
"StepEventActionsStart",
|
|
1754
|
+
"StepEventActionsStartTypedDict",
|
|
1755
|
+
"StepEventActionsSubmit",
|
|
1756
|
+
"StepEventActionsSubmitTypedDict",
|
|
1757
|
+
"StepEventActionsTypedDict",
|
|
1758
|
+
"StepTools",
|
|
1759
|
+
"StepToolsTypedDict",
|
|
1760
|
+
"StepTypedDict",
|
|
1761
|
+
"StepsTask",
|
|
1762
|
+
"StepsTaskTypedDict",
|
|
1463
1763
|
"SummaryEntry",
|
|
1464
1764
|
"SummaryEntryTypedDict",
|
|
1465
1765
|
"SupportedLlm",
|
|
@@ -1472,6 +1772,12 @@ __all__ = [
|
|
|
1472
1772
|
"TakeoutsGetFileRequest",
|
|
1473
1773
|
"TakeoutsGetFileRequestTypedDict",
|
|
1474
1774
|
"TargetModes",
|
|
1775
|
+
"Task1",
|
|
1776
|
+
"Task1TypedDict",
|
|
1777
|
+
"Task2",
|
|
1778
|
+
"Task2TypedDict",
|
|
1779
|
+
"Task3",
|
|
1780
|
+
"Task3TypedDict",
|
|
1475
1781
|
"TelephonyConfigurations",
|
|
1476
1782
|
"TelephonyConfigurationsTypedDict",
|
|
1477
1783
|
"TestMessage",
|
|
@@ -1485,6 +1791,7 @@ __all__ = [
|
|
|
1485
1791
|
"ToolCreateRequest",
|
|
1486
1792
|
"ToolCreateRequestTypedDict",
|
|
1487
1793
|
"ToolDefinition",
|
|
1794
|
+
"ToolDefinitionType",
|
|
1488
1795
|
"ToolDefinitionTypedDict",
|
|
1489
1796
|
"ToolDeleteRequest",
|
|
1490
1797
|
"ToolDeleteRequestTypedDict",
|
|
@@ -1537,7 +1844,8 @@ __all__ = [
|
|
|
1537
1844
|
"TwilioNumberUpdateResponseTypedDict",
|
|
1538
1845
|
"TwilioPhoneNumber",
|
|
1539
1846
|
"TwilioPhoneNumberTypedDict",
|
|
1540
|
-
"
|
|
1847
|
+
"UpdateBridgePhrasesConfigRequest",
|
|
1848
|
+
"UpdateBridgePhrasesConfigRequestTypedDict",
|
|
1541
1849
|
"UserActivityStatus",
|
|
1542
1850
|
"UserCreateRequest",
|
|
1543
1851
|
"UserCreateRequestTypedDict",
|
|
@@ -1556,6 +1864,13 @@ __all__ = [
|
|
|
1556
1864
|
"UsersSendEmailRequestTypedDict",
|
|
1557
1865
|
"ValidationError",
|
|
1558
1866
|
"ValidationErrorTypedDict",
|
|
1867
|
+
"Variable",
|
|
1868
|
+
"VariableType",
|
|
1869
|
+
"VariableTypedDict",
|
|
1870
|
+
"VariableValueFrom1",
|
|
1871
|
+
"VariableValueFrom1TypedDict",
|
|
1872
|
+
"VariableValueFrom2",
|
|
1873
|
+
"VariableValueFrom2TypedDict",
|
|
1559
1874
|
"VoiceDisplayInfo",
|
|
1560
1875
|
"VoiceDisplayInfoTypedDict",
|
|
1561
1876
|
"VoiceGroupCreateRequest",
|
|
@@ -1638,7 +1953,19 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1638
1953
|
"BodyPronunciationsUploadCsvFile": ".body_pronunciations_upload_csv",
|
|
1639
1954
|
"BodyPronunciationsUploadCsvFileTypedDict": ".body_pronunciations_upload_csv",
|
|
1640
1955
|
"BodyPronunciationsUploadCsvTypedDict": ".body_pronunciations_upload_csv",
|
|
1956
|
+
"BridgePhrasesConfig": ".bridgephrasesconfig",
|
|
1957
|
+
"BridgePhrasesConfigTypedDict": ".bridgephrasesconfig",
|
|
1958
|
+
"AutoPopulate": ".callaction",
|
|
1959
|
+
"AutoPopulateTypedDict": ".callaction",
|
|
1960
|
+
"CallAction": ".callaction",
|
|
1961
|
+
"CallActionIf1": ".callaction",
|
|
1962
|
+
"CallActionIf1TypedDict": ".callaction",
|
|
1963
|
+
"CallActionIf2": ".callaction",
|
|
1964
|
+
"CallActionIf2TypedDict": ".callaction",
|
|
1965
|
+
"CallActionTypedDict": ".callaction",
|
|
1641
1966
|
"CampaignProperties": ".campaignproperties",
|
|
1967
|
+
"CelExpression": ".celexpression",
|
|
1968
|
+
"CelExpressionTypedDict": ".celexpression",
|
|
1642
1969
|
"Channel": ".channel",
|
|
1643
1970
|
"ChannelTypedDict": ".channel",
|
|
1644
1971
|
"ChannelTargetsCreateRequest": ".channel_targets_createop",
|
|
@@ -1682,6 +2009,24 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1682
2009
|
"CommunicationRequestResultTypedDict": ".communicationrequestresult",
|
|
1683
2010
|
"Insights": ".communicationrequestresult",
|
|
1684
2011
|
"InsightsTypedDict": ".communicationrequestresult",
|
|
2012
|
+
"ConditionalText": ".conditionaltext",
|
|
2013
|
+
"ConditionalTextIf1": ".conditionaltext",
|
|
2014
|
+
"ConditionalTextIf1TypedDict": ".conditionaltext",
|
|
2015
|
+
"ConditionalTextIf2": ".conditionaltext",
|
|
2016
|
+
"ConditionalTextIf2TypedDict": ".conditionaltext",
|
|
2017
|
+
"ConditionalTextTypedDict": ".conditionaltext",
|
|
2018
|
+
"Context": ".context",
|
|
2019
|
+
"ContextTypedDict": ".context",
|
|
2020
|
+
"Task1": ".context",
|
|
2021
|
+
"Task1TypedDict": ".context",
|
|
2022
|
+
"Task2": ".context",
|
|
2023
|
+
"Task2TypedDict": ".context",
|
|
2024
|
+
"Task3": ".context",
|
|
2025
|
+
"Task3TypedDict": ".context",
|
|
2026
|
+
"ContextTaskMetadata": ".contexttaskmetadata",
|
|
2027
|
+
"ContextTaskMetadataTypedDict": ".contexttaskmetadata",
|
|
2028
|
+
"ContextToolInfo": ".contexttoolinfo",
|
|
2029
|
+
"ContextToolInfoTypedDict": ".contexttoolinfo",
|
|
1685
2030
|
"Conversation": ".conversation",
|
|
1686
2031
|
"ConversationTypedDict": ".conversation",
|
|
1687
2032
|
"ConversationProperties": ".conversationproperties",
|
|
@@ -1735,8 +2080,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1735
2080
|
"DialogRole": ".dialogrole",
|
|
1736
2081
|
"DialogToolCall": ".dialogtoolcall",
|
|
1737
2082
|
"DialogToolCallTypedDict": ".dialogtoolcall",
|
|
1738
|
-
"DictionaryMetadata": ".dictionarymetadata",
|
|
1739
|
-
"DictionaryMetadataTypedDict": ".dictionarymetadata",
|
|
1740
2083
|
"DirectoryMemberDeleteRequest": ".directory_member_deleteop",
|
|
1741
2084
|
"DirectoryMemberDeleteRequestTypedDict": ".directory_member_deleteop",
|
|
1742
2085
|
"DirectoryMemberGetByIDRequest": ".directory_member_get_by_idop",
|
|
@@ -1767,12 +2110,32 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1767
2110
|
"EventProperties": ".eventproperties",
|
|
1768
2111
|
"EventsListRequest": ".events_listop",
|
|
1769
2112
|
"EventsListRequestTypedDict": ".events_listop",
|
|
2113
|
+
"EventTask": ".eventtask",
|
|
2114
|
+
"EventTaskTypedDict": ".eventtask",
|
|
2115
|
+
"EventTaskEvents": ".eventtaskevents",
|
|
2116
|
+
"EventTaskEventsStart": ".eventtaskevents",
|
|
2117
|
+
"EventTaskEventsStartTypedDict": ".eventtaskevents",
|
|
2118
|
+
"EventTaskEventsTypedDict": ".eventtaskevents",
|
|
2119
|
+
"Expression1": ".expressiontask",
|
|
2120
|
+
"Expression1TypedDict": ".expressiontask",
|
|
2121
|
+
"Expression2": ".expressiontask",
|
|
2122
|
+
"Expression2TypedDict": ".expressiontask",
|
|
2123
|
+
"ExpressionTask": ".expressiontask",
|
|
2124
|
+
"ExpressionTaskTypedDict": ".expressiontask",
|
|
2125
|
+
"ExpressionTaskEvents": ".expressiontaskevents",
|
|
2126
|
+
"ExpressionTaskEventsStart": ".expressiontaskevents",
|
|
2127
|
+
"ExpressionTaskEventsStartTypedDict": ".expressiontaskevents",
|
|
2128
|
+
"ExpressionTaskEventsSubmit": ".expressiontaskevents",
|
|
2129
|
+
"ExpressionTaskEventsSubmitTypedDict": ".expressiontaskevents",
|
|
2130
|
+
"ExpressionTaskEventsTypedDict": ".expressiontaskevents",
|
|
1770
2131
|
"FolderDetails": ".folderdetails",
|
|
1771
2132
|
"FolderDetailsTypedDict": ".folderdetails",
|
|
1772
2133
|
"FolderStats": ".folderdetails",
|
|
1773
2134
|
"FolderStatsTypedDict": ".folderdetails",
|
|
1774
2135
|
"GenerateSessionRecordingUrlsRequest": ".generate_session_recording_urlsop",
|
|
1775
2136
|
"GenerateSessionRecordingUrlsRequestTypedDict": ".generate_session_recording_urlsop",
|
|
2137
|
+
"GetBridgePhrasesConfigRequest": ".get_bridge_phrases_configop",
|
|
2138
|
+
"GetBridgePhrasesConfigRequestTypedDict": ".get_bridge_phrases_configop",
|
|
1776
2139
|
"GetSessionDataBySessionIDRequest": ".get_session_data_by_session_idop",
|
|
1777
2140
|
"GetSessionDataBySessionIDRequestTypedDict": ".get_session_data_by_session_idop",
|
|
1778
2141
|
"GetSessionDataBySidRequest": ".get_session_data_by_sidop",
|
|
@@ -1794,6 +2157,15 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1794
2157
|
"IncidentResponseTypedDict": ".incidentresponse",
|
|
1795
2158
|
"IncidentUpdateRequest": ".incidentupdaterequest",
|
|
1796
2159
|
"IncidentUpdateRequestTypedDict": ".incidentupdaterequest",
|
|
2160
|
+
"IncrementAction": ".incrementaction",
|
|
2161
|
+
"IncrementActionIf1": ".incrementaction",
|
|
2162
|
+
"IncrementActionIf1TypedDict": ".incrementaction",
|
|
2163
|
+
"IncrementActionIf2": ".incrementaction",
|
|
2164
|
+
"IncrementActionIf2TypedDict": ".incrementaction",
|
|
2165
|
+
"IncrementActionTypedDict": ".incrementaction",
|
|
2166
|
+
"InputParameter": ".inputparameter",
|
|
2167
|
+
"InputParameterType": ".inputparameter",
|
|
2168
|
+
"InputParameterTypedDict": ".inputparameter",
|
|
1797
2169
|
"InsightToolGetByIDRequest": ".insight_tool_get_by_idop",
|
|
1798
2170
|
"InsightToolGetByIDRequestTypedDict": ".insight_tool_get_by_idop",
|
|
1799
2171
|
"InsightToolListRequest": ".insight_tool_listop",
|
|
@@ -1877,6 +2249,9 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1877
2249
|
"InspectLatencyResponseTypedDict": ".inspectlatencyresponse",
|
|
1878
2250
|
"InternalTool": ".internaltool",
|
|
1879
2251
|
"InternalToolTypedDict": ".internaltool",
|
|
2252
|
+
"JMESPathExpression": ".jmespathexpression",
|
|
2253
|
+
"JMESPathExpressionType": ".jmespathexpression",
|
|
2254
|
+
"JMESPathExpressionTypedDict": ".jmespathexpression",
|
|
1880
2255
|
"LanguageGroupsDeleteRequest": ".language_groups_deleteop",
|
|
1881
2256
|
"LanguageGroupsDeleteRequestTypedDict": ".language_groups_deleteop",
|
|
1882
2257
|
"LanguageGroupsGetByIDRequest": ".language_groups_get_by_idop",
|
|
@@ -1955,8 +2330,18 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1955
2330
|
"ListResponseUserResponseTypedDict": ".listresponse_userresponse_",
|
|
1956
2331
|
"ListResponseVoiceGroupResponse": ".listresponse_voicegroupresponse_",
|
|
1957
2332
|
"ListResponseVoiceGroupResponseTypedDict": ".listresponse_voicegroupresponse_",
|
|
2333
|
+
"File": ".loadtoolfromfiletask",
|
|
2334
|
+
"FileTypedDict": ".loadtoolfromfiletask",
|
|
2335
|
+
"LoadToolFromFileTask": ".loadtoolfromfiletask",
|
|
2336
|
+
"LoadToolFromFileTaskTypedDict": ".loadtoolfromfiletask",
|
|
1958
2337
|
"LoginType": ".logintype",
|
|
1959
2338
|
"MatchType": ".matchtype",
|
|
2339
|
+
"NextStep": ".nextstep",
|
|
2340
|
+
"NextStepIf1": ".nextstep",
|
|
2341
|
+
"NextStepIf1TypedDict": ".nextstep",
|
|
2342
|
+
"NextStepIf2": ".nextstep",
|
|
2343
|
+
"NextStepIf2TypedDict": ".nextstep",
|
|
2344
|
+
"NextStepTypedDict": ".nextstep",
|
|
1960
2345
|
"OrderByDirection": ".orderbydirection",
|
|
1961
2346
|
"OrganizationChannelConfig": ".organizationchannelconfig",
|
|
1962
2347
|
"OrganizationChannelConfigTypedDict": ".organizationchannelconfig",
|
|
@@ -2044,6 +2429,23 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2044
2429
|
"RolesListRequestTypedDict": ".roles_listop",
|
|
2045
2430
|
"RoleUpdateRequest": ".roleupdaterequest",
|
|
2046
2431
|
"RoleUpdateRequestTypedDict": ".roleupdaterequest",
|
|
2432
|
+
"SaveAction": ".saveaction",
|
|
2433
|
+
"SaveActionIf1": ".saveaction",
|
|
2434
|
+
"SaveActionIf1TypedDict": ".saveaction",
|
|
2435
|
+
"SaveActionIf2": ".saveaction",
|
|
2436
|
+
"SaveActionIf2TypedDict": ".saveaction",
|
|
2437
|
+
"SaveActionTypedDict": ".saveaction",
|
|
2438
|
+
"Role": ".sayaction",
|
|
2439
|
+
"SayAction": ".sayaction",
|
|
2440
|
+
"SayActionIf1": ".sayaction",
|
|
2441
|
+
"SayActionIf1TypedDict": ".sayaction",
|
|
2442
|
+
"SayActionIf2": ".sayaction",
|
|
2443
|
+
"SayActionIf2TypedDict": ".sayaction",
|
|
2444
|
+
"SayActionTypedDict": ".sayaction",
|
|
2445
|
+
"SchemasCortexV1BridgePhrasesDictionaryMetadata": ".schemas_cortex_v1_bridge_phrases_dictionarymetadata",
|
|
2446
|
+
"SchemasCortexV1BridgePhrasesDictionaryMetadataTypedDict": ".schemas_cortex_v1_bridge_phrases_dictionarymetadata",
|
|
2447
|
+
"SchemasTtsV1PronunciationsDictionaryMetadata": ".schemas_tts_v1_pronunciations_dictionarymetadata",
|
|
2448
|
+
"SchemasTtsV1PronunciationsDictionaryMetadataTypedDict": ".schemas_tts_v1_pronunciations_dictionarymetadata",
|
|
2047
2449
|
"Security": ".security",
|
|
2048
2450
|
"SecurityTypedDict": ".security",
|
|
2049
2451
|
"ServiceDeleteRequest": ".service_deleteop",
|
|
@@ -2097,9 +2499,39 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2097
2499
|
"SessionTextTypedDict": ".sessiontext",
|
|
2098
2500
|
"SessionTranscriptionResponse": ".sessiontranscriptionresponse",
|
|
2099
2501
|
"SessionTranscriptionResponseTypedDict": ".sessiontranscriptionresponse",
|
|
2502
|
+
"SetValueAction": ".setvalueaction",
|
|
2503
|
+
"SetValueActionIf1": ".setvalueaction",
|
|
2504
|
+
"SetValueActionIf1TypedDict": ".setvalueaction",
|
|
2505
|
+
"SetValueActionIf2": ".setvalueaction",
|
|
2506
|
+
"SetValueActionIf2TypedDict": ".setvalueaction",
|
|
2507
|
+
"SetValueActionTypedDict": ".setvalueaction",
|
|
2508
|
+
"SetValueActionValueFrom1": ".setvalueaction",
|
|
2509
|
+
"SetValueActionValueFrom1TypedDict": ".setvalueaction",
|
|
2510
|
+
"SetValueActionValueFrom2": ".setvalueaction",
|
|
2511
|
+
"SetValueActionValueFrom2TypedDict": ".setvalueaction",
|
|
2100
2512
|
"StaticToolParameter": ".statictoolparameter",
|
|
2101
2513
|
"StaticToolParameterTypedDict": ".statictoolparameter",
|
|
2102
2514
|
"StaticToolParameterType": ".statictoolparametertype",
|
|
2515
|
+
"Instruction": ".step",
|
|
2516
|
+
"InstructionTypedDict": ".step",
|
|
2517
|
+
"Next": ".step",
|
|
2518
|
+
"NextTypedDict": ".step",
|
|
2519
|
+
"Step": ".step",
|
|
2520
|
+
"StepTypedDict": ".step",
|
|
2521
|
+
"Enter": ".stepeventactions",
|
|
2522
|
+
"EnterTypedDict": ".stepeventactions",
|
|
2523
|
+
"Presubmit": ".stepeventactions",
|
|
2524
|
+
"PresubmitTypedDict": ".stepeventactions",
|
|
2525
|
+
"StepEventActions": ".stepeventactions",
|
|
2526
|
+
"StepEventActionsStart": ".stepeventactions",
|
|
2527
|
+
"StepEventActionsStartTypedDict": ".stepeventactions",
|
|
2528
|
+
"StepEventActionsSubmit": ".stepeventactions",
|
|
2529
|
+
"StepEventActionsSubmitTypedDict": ".stepeventactions",
|
|
2530
|
+
"StepEventActionsTypedDict": ".stepeventactions",
|
|
2531
|
+
"StepsTask": ".stepstask",
|
|
2532
|
+
"StepsTaskTypedDict": ".stepstask",
|
|
2533
|
+
"StepTools": ".steptools",
|
|
2534
|
+
"StepToolsTypedDict": ".steptools",
|
|
2103
2535
|
"SummaryEntry": ".summaryentry",
|
|
2104
2536
|
"SummaryEntryTypedDict": ".summaryentry",
|
|
2105
2537
|
"SupportedLlm": ".supportedllm",
|
|
@@ -2133,8 +2565,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2133
2565
|
"Defaults": ".tooldefinition",
|
|
2134
2566
|
"DefaultsTypedDict": ".tooldefinition",
|
|
2135
2567
|
"ToolDefinition": ".tooldefinition",
|
|
2568
|
+
"ToolDefinitionType": ".tooldefinition",
|
|
2136
2569
|
"ToolDefinitionTypedDict": ".tooldefinition",
|
|
2137
|
-
"Type": ".tooldefinition",
|
|
2138
2570
|
"ToolDetailResponse": ".tooldetailresponse",
|
|
2139
2571
|
"ToolDetailResponseTypedDict": ".tooldetailresponse",
|
|
2140
2572
|
"ToolFunction": ".toolfunction",
|
|
@@ -2181,6 +2613,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2181
2613
|
"TwilioNumberUpdateResponseTypedDict": ".twilionumberupdateresponse",
|
|
2182
2614
|
"TwilioPhoneNumber": ".twiliophonenumber",
|
|
2183
2615
|
"TwilioPhoneNumberTypedDict": ".twiliophonenumber",
|
|
2616
|
+
"UpdateBridgePhrasesConfigRequest": ".update_bridge_phrases_configop",
|
|
2617
|
+
"UpdateBridgePhrasesConfigRequestTypedDict": ".update_bridge_phrases_configop",
|
|
2184
2618
|
"UserActivityStatus": ".useractivitystatus",
|
|
2185
2619
|
"UserCreateRequest": ".usercreaterequest",
|
|
2186
2620
|
"UserCreateRequestTypedDict": ".usercreaterequest",
|
|
@@ -2201,6 +2635,13 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2201
2635
|
"LocTypedDict": ".validationerror",
|
|
2202
2636
|
"ValidationError": ".validationerror",
|
|
2203
2637
|
"ValidationErrorTypedDict": ".validationerror",
|
|
2638
|
+
"Variable": ".variable",
|
|
2639
|
+
"VariableType": ".variable",
|
|
2640
|
+
"VariableTypedDict": ".variable",
|
|
2641
|
+
"VariableValueFrom1": ".variable",
|
|
2642
|
+
"VariableValueFrom1TypedDict": ".variable",
|
|
2643
|
+
"VariableValueFrom2": ".variable",
|
|
2644
|
+
"VariableValueFrom2TypedDict": ".variable",
|
|
2204
2645
|
"VoiceGroupsDeleteRequest": ".voice_groups_deleteop",
|
|
2205
2646
|
"VoiceGroupsDeleteRequestTypedDict": ".voice_groups_deleteop",
|
|
2206
2647
|
"VoiceGroupsGetByIDRequest": ".voice_groups_get_by_idop",
|