@@ -1182,6 +1182,7 @@ types:
11821182 - USER_TIMEOUT
11831183 - INACTIVITY_TIMEOUT
11841184 - MAX_DURATION_TIMEOUT
1185+ - SILENCE_TIMEOUT
11851186 - ERROR
11861187 source :
11871188 openapi : evi-openapi.json
@@ -1869,6 +1870,7 @@ types:
18691870 docs : List of built-in tools associated with this Config.
18701871 event_messages : optional<ReturnEventMessageSpecs>
18711872 timeouts : optional<ReturnTimeoutSpecs>
1873+ nudges : optional<ReturnNudgeSpec>
18721874 webhooks :
18731875 type : optional<list<optional<ReturnWebhookSpec>>>
18741876 docs : Map of webhooks associated with this config.
@@ -2564,6 +2566,17 @@ types:
25642566 the time limit for the chat has been reached.
25652567 source :
25662568 openapi : evi-openapi.json
2569+ PostedNudgeSpec :
2570+ docs : A nudge specification posted to the server
2571+ properties :
2572+ enabled :
2573+ type : optional<boolean>
2574+ docs : EVI will nudge user after inactivity
2575+ interval_secs :
2576+ type : optional<integer>
2577+ docs : Time interval in seconds after which the nudge will be sent.
2578+ source :
2579+ openapi : evi-openapi.json
25672580 PostedTimeoutSpecsInactivity :
25682581 docs : >-
25692582 Specifies the duration of user inactivity (in seconds) after which the EVI
@@ -2815,6 +2828,17 @@ types:
28152828 seconds.
28162829 source :
28172830 openapi : evi-openapi.json
2831+ ReturnNudgeSpec :
2832+ docs : A specific nudge configuration returned from the server
2833+ properties :
2834+ enabled :
2835+ type : boolean
2836+ docs : EVI will nudge user after inactivity
2837+ interval_secs :
2838+ type : optional<integer>
2839+ docs : Time interval in seconds after which the nudge will be sent.
2840+ source :
2841+ openapi : evi-openapi.json
28182842 ReturnWebhookEventType :
28192843 enum :
28202844 - chat_started
0 commit comments