File tree Expand file tree Collapse file tree 8 files changed +17
-6
lines changed Expand file tree Collapse file tree 8 files changed +17
-6
lines changed Original file line number Diff line number Diff line change 1
1
[GLOBAL ]
2
- pants_version = ' 2.23.0 '
2
+ pants_version = ' 2.24.2 '
3
3
4
4
backend_packages = [
5
5
' pants.backend.python' ,
@@ -21,7 +21,7 @@ enabled = false
21
21
root_patterns = [' /' , ' src/' , ' tests/' ]
22
22
23
23
[python ]
24
- interpreter_constraints = [' ==3.12 .*' ]
24
+ interpreter_constraints = [' ==3.13 .*' ]
25
25
26
26
[pytest ]
27
27
args = [' -vv' , ' --no-header' ]
Original file line number Diff line number Diff line change
1
+ # 1.4.0
2
+ - Increase maximum value of call ` length_timer ` to 86400s
3
+ - Add additional fields ` eventUrl ` and ` eventMethod ` to NCCO model
4
+
1
5
# 1.3.0
2
6
- Add new ` headers ` and ` standard_headers ` options to the ` Sip ` data model
3
7
- Add new ` standardHeaders ` option to the ` SipEndpoint ` NCCO model
Original file line number Diff line number Diff line change 1
- __version__ = '1.3 .0'
1
+ __version__ = '1.4 .0'
Original file line number Diff line number Diff line change @@ -88,6 +88,8 @@ class Conversation(NccoAction):
88
88
hear. If not provided, the participant can hear everyone. If an empty list
89
89
is provided, the participant will not hear any other participants.
90
90
mute (Optional[bool]): Mute the participant.
91
+ eventUrl (Optional[list[str]]): The URL to send asynchronous events to.
92
+ eventMethod (Optional[str]): The HTTP method used to send the event to `eventUrl`.
91
93
92
94
Raises:
93
95
NccoActionError: If the `mute` option is used with the `canSpeak` option.
@@ -101,6 +103,8 @@ class Conversation(NccoAction):
101
103
canSpeak : Optional [list [str ]] = None
102
104
canHear : Optional [list [str ]] = None
103
105
mute : Optional [bool ] = None
106
+ eventUrl : Optional [list ] = None
107
+ eventMethod : Optional [str ] = None
104
108
action : NccoActionType = NccoActionType .CONVERSATION
105
109
106
110
@model_validator (mode = 'after' )
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ class CreateCallRequest(BaseModel):
65
65
event_method : Optional [Literal ['POST' , 'GET' ]] = None
66
66
machine_detection : Optional [Literal ['continue' , 'hangup' ]] = None
67
67
advanced_machine_detection : Optional [AdvancedMachineDetection ] = None
68
- length_timer : Optional [int ] = Field (None , ge = 1 , le = 7200 )
68
+ length_timer : Optional [int ] = Field (None , ge = 1 , le = 86400 )
69
69
ringing_timer : Optional [int ] = Field (None , ge = 1 , le = 120 )
70
70
71
71
@model_validator (mode = 'after' )
Original file line number Diff line number Diff line change
1
+ # 4.4.1
2
+ - Update some Voice API parameters
3
+
1
4
# 4.4.0
2
5
Vonage Voice Package:
3
6
- Add new ` headers ` and ` standard_headers ` options to the ` Sip ` data model
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ dependencies = [
21
21
" vonage-verify>=2.1.0" ,
22
22
" vonage-verify-legacy>=1.0.1" ,
23
23
" vonage-video>=1.2.0" ,
24
- " vonage-voice>=1.3 .0" ,
24
+ " vonage-voice>=1.4 .0" ,
25
25
]
26
26
classifiers = [
27
27
" Programming Language :: Python" ,
Original file line number Diff line number Diff line change 1
- __version__ = '4.4.0 '
1
+ __version__ = '4.4.1 '
You can’t perform that action at this time.
0 commit comments