Skip to content

Commit 10fdfb3

Browse files
author
Eric Dahlvang
authored
Add ephemeral to DeliveryModes (parity) (#847)
1 parent cb7f7af commit 10fdfb3

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

libraries/botbuilder-schema/botbuilder/schema/_connector_client_enums.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ class DeliveryModes(str, Enum):
100100
normal = "normal"
101101
notification = "notification"
102102
expect_replies = "expectReplies"
103+
ephemeral = "ephemeral"
103104

104105

105106
class ContactRelationUpdateActionTypes(str, Enum):

libraries/botbuilder-schema/botbuilder/schema/_models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class Activity(Model):
133133
:param delivery_mode: A delivery hint to signal to the recipient alternate
134134
delivery paths for the activity.
135135
The default delivery mode is "default". Possible values include: 'normal',
136-
'notification', 'expectReplies'
136+
'notification', 'expectReplies', 'ephemeral'
137137
:type delivery_mode: str or ~botframework.connector.models.DeliveryModes
138138
:param listen_for: List of phrases and references that speech and language
139139
priming systems should listen for
@@ -146,7 +146,7 @@ class Activity(Model):
146146
:type semantic_action: ~botframework.connector.models.SemanticAction
147147
:param caller_id: A string containing an IRI identifying the caller of a
148148
bot. This field is not intended to be transmitted over the wire, but is
149-
instead populated by bots and clients based on cryptographically
149+
instead populated by bots and clients based on cryptographically
150150
verifiable data that asserts the identity of the callers (e.g. tokens).
151151
:type caller_id: str
152152
"""

libraries/botbuilder-schema/botbuilder/schema/_models_py3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class Activity(Model):
133133
:param delivery_mode: A delivery hint to signal to the recipient alternate
134134
delivery paths for the activity.
135135
The default delivery mode is "default". Possible values include: 'normal',
136-
'notification', 'expectReplies'
136+
'notification', 'expectReplies', 'ephemeral'
137137
:type delivery_mode: str or ~botframework.connector.models.DeliveryModes
138138
:param listen_for: List of phrases and references that speech and language
139139
priming systems should listen for

0 commit comments

Comments
 (0)