microsoft-agents-activity 0.3.0__py3-none-any.whl → 0.4.0.dev1__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.

Potentially problematic release.


This version of microsoft-agents-activity might be problematic. Click here for more details.

Files changed (35) hide show
  1. microsoft_agents/activity/activity.py +20 -20
  2. microsoft_agents/activity/animation_card.py +3 -3
  3. microsoft_agents/activity/attachment_info.py +1 -1
  4. microsoft_agents/activity/audio_card.py +3 -3
  5. microsoft_agents/activity/basic_card.py +3 -3
  6. microsoft_agents/activity/card_action.py +1 -1
  7. microsoft_agents/activity/card_image.py +1 -1
  8. microsoft_agents/activity/channel_account.py +1 -1
  9. microsoft_agents/activity/conversation_account.py +1 -1
  10. microsoft_agents/activity/conversation_members.py +1 -1
  11. microsoft_agents/activity/conversation_parameters.py +3 -3
  12. microsoft_agents/activity/conversation_reference.py +3 -3
  13. microsoft_agents/activity/conversations_result.py +1 -1
  14. microsoft_agents/activity/error.py +1 -1
  15. microsoft_agents/activity/error_response.py +1 -1
  16. microsoft_agents/activity/expected_replies.py +1 -1
  17. microsoft_agents/activity/hero_card.py +3 -3
  18. microsoft_agents/activity/media_card.py +3 -3
  19. microsoft_agents/activity/mention.py +1 -1
  20. microsoft_agents/activity/message_reaction.py +1 -1
  21. microsoft_agents/activity/oauth_card.py +1 -1
  22. microsoft_agents/activity/paged_members_result.py +1 -1
  23. microsoft_agents/activity/receipt_card.py +4 -4
  24. microsoft_agents/activity/receipt_item.py +2 -2
  25. microsoft_agents/activity/semantic_action.py +2 -2
  26. microsoft_agents/activity/signin_card.py +1 -1
  27. microsoft_agents/activity/suggested_actions.py +1 -1
  28. microsoft_agents/activity/thumbnail_card.py +3 -3
  29. microsoft_agents/activity/token_exchange_state.py +2 -2
  30. microsoft_agents/activity/transcript.py +1 -1
  31. microsoft_agents/activity/video_card.py +3 -3
  32. {microsoft_agents_activity-0.3.0.dist-info → microsoft_agents_activity-0.4.0.dev1.dist-info}/METADATA +1 -1
  33. {microsoft_agents_activity-0.3.0.dist-info → microsoft_agents_activity-0.4.0.dev1.dist-info}/RECORD +35 -35
  34. {microsoft_agents_activity-0.3.0.dist-info → microsoft_agents_activity-0.4.0.dev1.dist-info}/WHEEL +0 -0
  35. {microsoft_agents_activity-0.3.0.dist-info → microsoft_agents_activity-0.4.0.dev1.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,7 @@ class Activity(AgentsModel):
27
27
  'endOfConversation', 'event', 'invoke', 'deleteUserData', 'messageUpdate',
28
28
  'messageDelete', 'installationUpdate', 'messageReaction', 'suggestion',
29
29
  'trace', 'handoff'
30
- :type type: str or ~microsoft_agents.protocols.models.ActivityTypes
30
+ :type type: str or ~microsoft_agents.activity.ActivityTypes
31
31
  :param id: Contains an ID that uniquely identifies the activity on the channel.
32
32
  :type id: str
33
33
  :param timestamp: Contains the date and time that the message was sent, in UTC, expressed in ISO-8601 format.
@@ -43,23 +43,23 @@ class Activity(AgentsModel):
43
43
  :param channel_id: Contains an ID that uniquely identifies the channel. Set by the channel.
44
44
  :type channel_id: str
45
45
  :param from_property: Identifies the sender of the message.
46
- :type from_property: ~microsoft_agents.protocols.models.ChannelAccount
46
+ :type from_property: ~microsoft_agents.activity.ChannelAccount
47
47
  :param conversation: Identifies the conversation to which the activity belongs.
48
- :type conversation: ~microsoft_agents.protocols.models.ConversationAccount
48
+ :type conversation: ~microsoft_agents.activity.ConversationAccount
49
49
  :param recipient: Identifies the recipient of the message.
50
- :type recipient: ~microsoft_agents.protocols.models.ChannelAccount
50
+ :type recipient: ~microsoft_agents.activity.ChannelAccount
51
51
  :param text_format: Format of text fields Default:markdown. Possible values include: 'markdown', 'plain', 'xml'
52
- :type text_format: str or ~microsoft_agents.protocols.models.TextFormatTypes
52
+ :type text_format: str or ~microsoft_agents.activity.TextFormatTypes
53
53
  :param attachment_layout: The layout hint for multiple attachments. Default: list. Possible values include: 'list', 'carousel'
54
- :type attachment_layout: str or ~microsoft_agents.protocols.models.AttachmentLayoutTypes
54
+ :type attachment_layout: str or ~microsoft_agents.activity.AttachmentLayoutTypes
55
55
  :param members_added: The collection of members added to the conversation.
56
- :type members_added: list[~microsoft_agents.protocols.models.ChannelAccount]
56
+ :type members_added: list[~microsoft_agents.activity.ChannelAccount]
57
57
  :param members_removed: The collection of members removed from the conversation.
58
- :type members_removed: list[~microsoft_agents.protocols.models.ChannelAccount]
58
+ :type members_removed: list[~microsoft_agents.activity.ChannelAccount]
59
59
  :param reactions_added: The collection of reactions added to the conversation.
60
- :type reactions_added: list[~microsoft_agents.protocols.models.MessageReaction]
60
+ :type reactions_added: list[~microsoft_agents.activity.MessageReaction]
61
61
  :param reactions_removed: The collection of reactions removed from the conversation.
62
- :type reactions_removed: list[~microsoft_agents.protocols.models.MessageReaction]
62
+ :type reactions_removed: list[~microsoft_agents.activity.MessageReaction]
63
63
  :param topic_name: The updated topic name of the conversation.
64
64
  :type topic_name: str
65
65
  :param history_disclosed: Indicates whether the prior history of the channel is disclosed.
@@ -74,15 +74,15 @@ class Activity(AgentsModel):
74
74
  :type speak: str
75
75
  :param input_hint: Indicates whether your agent is accepting, expecting, or ignoring user input after the message is delivered to the client.
76
76
  Possible values include: 'acceptingInput', 'ignoringInput', 'expectingInput'
77
- :type input_hint: str or ~microsoft_agents.protocols.models.InputHints
77
+ :type input_hint: str or ~microsoft_agents.activity.InputHints
78
78
  :param summary: The text to display if the channel cannot render cards.
79
79
  :type summary: str
80
80
  :param suggested_actions: The suggested actions for the activity.
81
- :type suggested_actions: ~microsoft_agents.protocols.models.SuggestedActions
81
+ :type suggested_actions: ~microsoft_agents.activity.SuggestedActions
82
82
  :param attachments: Attachments
83
- :type attachments: list[~microsoft_agents.protocols.models.Attachment]
83
+ :type attachments: list[~microsoft_agents.activity.Attachment]
84
84
  :param entities: Represents the entities that were mentioned in the message.
85
- :type entities: list[~microsoft_agents.protocols.models.Entity]
85
+ :type entities: list[~microsoft_agents.activity.Entity]
86
86
  :param channel_data: Contains channel-specific content.
87
87
  :type channel_data: object
88
88
  :param action: Indicates whether the recipient of a contactRelationUpdate was added or removed from the sender's contact list.
@@ -98,23 +98,23 @@ class Activity(AgentsModel):
98
98
  :param name: The name of the operation associated with an invoke or event activity.
99
99
  :type name: str
100
100
  :param relates_to: A reference to another conversation or activity.
101
- :type relates_to: ~microsoft_agents.protocols.models.ConversationReference
101
+ :type relates_to: ~microsoft_agents.activity.ConversationReference
102
102
  :param code: The a code for endOfConversation activities that indicates why the conversation ended. Possible values include: 'unknown',
103
103
  'completedSuccessfully', 'userCancelled', 'botTimedOut', 'botIssuedInvalidMessage', 'channelFailed'
104
- :type code: str or ~microsoft_agents.protocols.models.EndOfConversationCodes
104
+ :type code: str or ~microsoft_agents.activity.EndOfConversationCodes
105
105
  :param expiration: The time at which the activity should be considered to be "expired" and should not be presented to the recipient.
106
106
  :type expiration: datetime
107
107
  :param importance: The importance of the activity. Possible values include: 'low', 'normal', 'high'
108
- :type importance: str or ~microsoft_agents.protocols.models.ActivityImportance
108
+ :type importance: str or ~microsoft_agents.activity.ActivityImportance
109
109
  :param delivery_mode: A delivery hint to signal to the recipient alternate delivery paths for the activity.
110
110
  The default delivery mode is "default". Possible values include: 'normal', 'notification', 'expectReplies', 'ephemeral'
111
- :type delivery_mode: str or ~microsoft_agents.protocols.models.DeliveryModes
111
+ :type delivery_mode: str or ~microsoft_agents.activity.DeliveryModes
112
112
  :param listen_for: List of phrases and references that speech and language priming systems should listen for
113
113
  :type listen_for: list[str]
114
114
  :param text_highlights: The collection of text fragments to highlight when the activity contains a ReplyToId value.
115
- :type text_highlights: list[~microsoft_agents.protocols.models.TextHighlight]
115
+ :type text_highlights: list[~microsoft_agents.activity.TextHighlight]
116
116
  :param semantic_action: An optional programmatic action accompanying this request
117
- :type semantic_action: ~microsoft_agents.protocols.models.SemanticAction
117
+ :type semantic_action: ~microsoft_agents.activity.SemanticAction
118
118
  :param caller_id: A string containing an IRI identifying the caller of an agent. This field is not intended to be transmitted over the wire,
119
119
  but is instead populated by agents and clients based on cryptographically verifiable data that asserts the identity of the callers (e.g. tokens).
120
120
  :type caller_id: str
@@ -15,12 +15,12 @@ class AnimationCard(AgentsModel):
15
15
  :param text: Text of this card
16
16
  :type text: str
17
17
  :param image: Thumbnail placeholder
18
- :type image: ~microsoft_agents.protocols.models.ThumbnailUrl
18
+ :type image: ~microsoft_agents.activity.ThumbnailUrl
19
19
  :param media: Media URLs for this card. When this field contains more than
20
20
  one URL, each URL is an alternative format of the same content.
21
- :type media: list[~microsoft_agents.protocols.models.MediaUrl]
21
+ :type media: list[~microsoft_agents.activity.MediaUrl]
22
22
  :param buttons: Actions on this card
23
- :type buttons: list[~microsoft_agents.protocols.models.CardAction]
23
+ :type buttons: list[~microsoft_agents.activity.CardAction]
24
24
  :param shareable: This content may be shared with others (default:true)
25
25
  :type shareable: bool
26
26
  :param autoloop: Should the client loop playback at end of content
@@ -11,7 +11,7 @@ class AttachmentInfo(AgentsModel):
11
11
  :param type: ContentType of the attachment
12
12
  :type type: str
13
13
  :param views: attachment views
14
- :type views: list[~microsoft_agents.protocols.models.AttachmentView]
14
+ :type views: list[~microsoft_agents.activity.AttachmentView]
15
15
  """
16
16
 
17
17
  name: NonEmptyString = None
@@ -15,12 +15,12 @@ class AudioCard(AgentsModel):
15
15
  :param text: Text of this card
16
16
  :type text: str
17
17
  :param image: Thumbnail placeholder
18
- :type image: ~microsoft_agents.protocols.models.ThumbnailUrl
18
+ :type image: ~microsoft_agents.activity.ThumbnailUrl
19
19
  :param media: Media URLs for this card. When this field contains more than
20
20
  one URL, each URL is an alternative format of the same content.
21
- :type media: list[~microsoft_agents.protocols.models.MediaUrl]
21
+ :type media: list[~microsoft_agents.activity.MediaUrl]
22
22
  :param buttons: Actions on this card
23
- :type buttons: list[~microsoft_agents.protocols.models.CardAction]
23
+ :type buttons: list[~microsoft_agents.activity.CardAction]
24
24
  :param shareable: This content may be shared with others (default:true)
25
25
  :type shareable: bool
26
26
  :param autoloop: Should the client loop playback at end of content
@@ -14,12 +14,12 @@ class BasicCard(AgentsModel):
14
14
  :param text: Text for the card
15
15
  :type text: str
16
16
  :param images: Array of images for the card
17
- :type images: list[~microsoft_agents.protocols.models.CardImage]
17
+ :type images: list[~microsoft_agents.activity.CardImage]
18
18
  :param buttons: Set of actions applicable to the current card
19
- :type buttons: list[~microsoft_agents.protocols.models.CardAction]
19
+ :type buttons: list[~microsoft_agents.activity.CardAction]
20
20
  :param tap: This action will be activated when user taps on the card
21
21
  itself
22
- :type tap: ~microsoft_agents.protocols.models.CardAction
22
+ :type tap: ~microsoft_agents.activity.CardAction
23
23
  """
24
24
 
25
25
  title: NonEmptyString = None
@@ -9,7 +9,7 @@ class CardAction(AgentsModel):
9
9
  :param type: The type of action implemented by this button. Possible
10
10
  values include: 'openUrl', 'imBack', 'postBack', 'playAudio', 'playVideo',
11
11
  'showImage', 'downloadFile', 'signin', 'call', 'messageBack'
12
- :type type: str or ~microsoft_agents.protocols.models.ActionTypes
12
+ :type type: str or ~microsoft_agents.activity.ActionTypes
13
13
  :param title: Text description which appears on the button
14
14
  :type title: str
15
15
  :param image: Image URL which will appear on the button, next to text
@@ -11,7 +11,7 @@ class CardImage(AgentsModel):
11
11
  :param alt: Image description intended for screen readers
12
12
  :type alt: str
13
13
  :param tap: Action assigned to specific Attachment
14
- :type tap: ~microsoft_agents.protocols.models.CardAction
14
+ :type tap: ~microsoft_agents.activity.CardAction
15
15
  """
16
16
 
17
17
  url: NonEmptyString = None
@@ -17,7 +17,7 @@ class ChannelAccount(AgentsModel):
17
17
  Directory (AAD)
18
18
  :type aad_object_id: str
19
19
  :param role: Role of the entity behind the account
20
- :type role: str or ~microsoft_agents.protocols.models.RoleTypes
20
+ :type role: str or ~microsoft_agents.activity.RoleTypes
21
21
  """
22
22
 
23
23
  model_config = ConfigDict(extra="allow")
@@ -21,7 +21,7 @@ class ConversationAccount(AgentsModel):
21
21
  Directory (AAD)
22
22
  :type aad_object_id: str
23
23
  :param role: Role of the entity behind the account
24
- :type role: str or ~microsoft_agents.protocols.models.RoleTypes
24
+ :type role: str or ~microsoft_agents.activity.RoleTypes
25
25
  :param tenant_id: This conversation's tenant ID
26
26
  :type tenant_id: str
27
27
  :param properties: This conversation's properties
@@ -9,7 +9,7 @@ class ConversationMembers(AgentsModel):
9
9
  :param id: Conversation ID
10
10
  :type id: str
11
11
  :param members: List of members in this conversation
12
- :type members: list[~microsoft_agents.protocols.models.ChannelAccount]
12
+ :type members: list[~microsoft_agents.activity.ChannelAccount]
13
13
  """
14
14
 
15
15
  id: NonEmptyString = None
@@ -12,15 +12,15 @@ class ConversationParameters(AgentsModel):
12
12
  :param is_group: IsGroup
13
13
  :type is_group: bool
14
14
  :param agent: The agent address for this conversation
15
- :type agent: ~microsoft_agents.protocols.models.ChannelAccount
15
+ :type agent: ~microsoft_agents.activity.ChannelAccount
16
16
  :param members: Members to add to the conversation
17
- :type members: list[~microsoft_agents.protocols.models.ChannelAccount]
17
+ :type members: list[~microsoft_agents.activity.ChannelAccount]
18
18
  :param topic_name: (Optional) Topic of the conversation (if supported by
19
19
  the channel)
20
20
  :type topic_name: str
21
21
  :param activity: (Optional) When creating a new conversation, use this
22
22
  activity as the initial message to the conversation
23
- :type activity: ~microsoft_agents.protocols.models.Activity
23
+ :type activity: ~microsoft_agents.activity.Activity
24
24
  :param channel_data: Channel specific payload for creating the
25
25
  conversation
26
26
  :type channel_data: object
@@ -17,11 +17,11 @@ class ConversationReference(AgentsModel):
17
17
  :param activity_id: (Optional) ID of the activity to refer to
18
18
  :type activity_id: str
19
19
  :param user: (Optional) User participating in this conversation
20
- :type user: ~microsoft_agents.protocols.models.ChannelAccount
20
+ :type user: ~microsoft_agents.activity.ChannelAccount
21
21
  :param agent: Agent participating in this conversation
22
- :type agent: ~microsoft_agents.protocols.models.ChannelAccount
22
+ :type agent: ~microsoft_agents.activity.ChannelAccount
23
23
  :param conversation: Conversation reference
24
- :type conversation: ~microsoft_agents.protocols.models.ConversationAccount
24
+ :type conversation: ~microsoft_agents.activity.ConversationAccount
25
25
  :param channel_id: Channel ID
26
26
  :type channel_id: str
27
27
  :param locale: A locale name for the contents of the text field.
@@ -10,7 +10,7 @@ class ConversationsResult(AgentsModel):
10
10
  :type continuation_token: str
11
11
  :param conversations: List of conversations
12
12
  :type conversations:
13
- list[~microsoft_agents.protocols.models.ConversationMembers]
13
+ list[~microsoft_agents.activity.ConversationMembers]
14
14
  """
15
15
 
16
16
  continuation_token: NonEmptyString = None
@@ -11,7 +11,7 @@ class Error(AgentsModel):
11
11
  :param message: Error message
12
12
  :type message: str
13
13
  :param inner_http_error: Error from inner http call
14
- :type inner_http_error: ~microsoft_agents.protocols.models.InnerHttpError
14
+ :type inner_http_error: ~microsoft_agents.activity.InnerHttpError
15
15
  """
16
16
 
17
17
  code: NonEmptyString = None
@@ -6,7 +6,7 @@ class ErrorResponse(AgentsModel):
6
6
  """An HTTP API response.
7
7
 
8
8
  :param error: Error message
9
- :type error: ~microsoft_agents.protocols.models.Error
9
+ :type error: ~microsoft_agents.activity.Error
10
10
  """
11
11
 
12
12
  error: Error = None
@@ -7,7 +7,7 @@ class ExpectedReplies(AgentsModel):
7
7
 
8
8
  :param activities: A collection of Activities that conforms to the
9
9
  ExpectedReplies schema.
10
- :type activities: list[~microsoft_agents.protocols.models.Activity]
10
+ :type activities: list[~microsoft_agents.activity.Activity]
11
11
  """
12
12
 
13
13
  activities: list[Activity] = None
@@ -14,12 +14,12 @@ class HeroCard(AgentsModel):
14
14
  :param text: Text for the card
15
15
  :type text: str
16
16
  :param images: Array of images for the card
17
- :type images: list[~microsoft_agents.protocols.models.CardImage]
17
+ :type images: list[~microsoft_agents.activity.CardImage]
18
18
  :param buttons: Set of actions applicable to the current card
19
- :type buttons: list[~microsoft_agents.protocols.models.CardAction]
19
+ :type buttons: list[~microsoft_agents.activity.CardAction]
20
20
  :param tap: This action will be activated when user taps on the card
21
21
  itself
22
- :type tap: ~microsoft_agents.protocols.models.CardAction
22
+ :type tap: ~microsoft_agents.activity.CardAction
23
23
  """
24
24
 
25
25
  title: NonEmptyString = None
@@ -15,12 +15,12 @@ class MediaCard(AgentsModel):
15
15
  :param text: Text of this card
16
16
  :type text: str
17
17
  :param image: Thumbnail placeholder
18
- :type image: ~microsoft_agents.protocols.models.ThumbnailUrl
18
+ :type image: ~microsoft_agents.activity.ThumbnailUrl
19
19
  :param media: Media URLs for this card. When this field contains more than
20
20
  one URL, each URL is an alternative format of the same content.
21
- :type media: list[~microsoft_agents.protocols.models.MediaUrl]
21
+ :type media: list[~microsoft_agents.activity.MediaUrl]
22
22
  :param buttons: Actions on this card
23
- :type buttons: list[~microsoft_agents.protocols.models.CardAction]
23
+ :type buttons: list[~microsoft_agents.activity.CardAction]
24
24
  :param shareable: This content may be shared with others (default:true)
25
25
  :type shareable: bool
26
26
  :param autoloop: Should the client loop playback at end of content
@@ -7,7 +7,7 @@ class Mention(Entity):
7
7
  """Mention information (entity type: "mention").
8
8
 
9
9
  :param mentioned: The mentioned user
10
- :type mentioned: ~microsoft_agents.protocols.models.ChannelAccount
10
+ :type mentioned: ~microsoft_agents.activity.ChannelAccount
11
11
  :param text: Sub Text which represents the mention (can be null or empty)
12
12
  :type text: str
13
13
  :param type: Type of this entity (RFC 3987 IRI)
@@ -7,7 +7,7 @@ class MessageReaction(AgentsModel):
7
7
 
8
8
  :param type: Message reaction type. Possible values include: 'like',
9
9
  'plusOne'
10
- :type type: str or ~microsoft_agents.protocols.models.MessageReactionTypes
10
+ :type type: str or ~microsoft_agents.activity.MessageReactionTypes
11
11
  """
12
12
 
13
13
  type: NonEmptyString
@@ -14,7 +14,7 @@ class OAuthCard(AgentsModel):
14
14
  :param connection_name: The name of the registered connection
15
15
  :type connection_name: str
16
16
  :param buttons: Action to use to perform signin
17
- :type buttons: list[~microsoft_agents.protocols.models.CardAction]
17
+ :type buttons: list[~microsoft_agents.activity.CardAction]
18
18
  """
19
19
 
20
20
  text: NonEmptyString = None
@@ -9,7 +9,7 @@ class PagedMembersResult(AgentsModel):
9
9
  :param continuation_token: Paging token
10
10
  :type continuation_token: str
11
11
  :param members: The Channel Accounts.
12
- :type members: list[~microsoft_agents.protocols.models.ChannelAccount]
12
+ :type members: list[~microsoft_agents.activity.ChannelAccount]
13
13
  """
14
14
 
15
15
  continuation_token: NonEmptyString = None
@@ -11,11 +11,11 @@ class ReceiptCard(AgentsModel):
11
11
  :param title: Title of the card
12
12
  :type title: str
13
13
  :param facts: Array of Fact objects
14
- :type facts: list[~microsoft_agents.protocols.models.Fact]
14
+ :type facts: list[~microsoft_agents.activity.Fact]
15
15
  :param items: Array of Receipt Items
16
- :type items: list[~microsoft_agents.protocols.models.ReceiptItem]
16
+ :type items: list[~microsoft_agents.activity.ReceiptItem]
17
17
  :param tap: This action will be activated when user taps on the card
18
- :type tap: ~microsoft_agents.protocols.models.CardAction
18
+ :type tap: ~microsoft_agents.activity.CardAction
19
19
  :param total: Total amount of money paid (or to be paid)
20
20
  :type total: str
21
21
  :param tax: Total amount of tax paid (or to be paid)
@@ -23,7 +23,7 @@ class ReceiptCard(AgentsModel):
23
23
  :param vat: Total amount of VAT paid (or to be paid)
24
24
  :type vat: str
25
25
  :param buttons: Set of actions applicable to the current card
26
- :type buttons: list[~microsoft_agents.protocols.models.CardAction]
26
+ :type buttons: list[~microsoft_agents.activity.CardAction]
27
27
  """
28
28
 
29
29
  title: NonEmptyString = None
@@ -16,14 +16,14 @@ class ReceiptItem(AgentsModel):
16
16
  in font styling only
17
17
  :type text: str
18
18
  :param image: Image
19
- :type image: ~microsoft_agents.protocols.models.CardImage
19
+ :type image: ~microsoft_agents.activity.CardImage
20
20
  :param price: Amount with currency
21
21
  :type price: str
22
22
  :param quantity: Number of items of given kind
23
23
  :type quantity: str
24
24
  :param tap: This action will be activated when user taps on the Item
25
25
  bubble.
26
- :type tap: ~microsoft_agents.protocols.models.CardAction
26
+ :type tap: ~microsoft_agents.activity.CardAction
27
27
  """
28
28
 
29
29
  title: NonEmptyString = None
@@ -8,9 +8,9 @@ class SemanticAction(AgentsModel):
8
8
  :param id: ID of this action
9
9
  :type id: str
10
10
  :param entities: Entities associated with this action
11
- :type entities: dict[str, ~microsoft_agents.protocols.models.Entity]
11
+ :type entities: dict[str, ~microsoft_agents.activity.Entity]
12
12
  :param state: State of this action. Allowed values: `start`, `continue`, `done`
13
- :type state: str or ~microsoft_agents.protocols.models.SemanticActionStates
13
+ :type state: str or ~microsoft_agents.activity.SemanticActionStates
14
14
  """
15
15
 
16
16
  id: NonEmptyString
@@ -9,7 +9,7 @@ class SigninCard(AgentsModel):
9
9
  :param text: Text for signin request
10
10
  :type text: str
11
11
  :param buttons: Action to use to perform signin
12
- :type buttons: list[~microsoft_agents.protocols.models.CardAction]
12
+ :type buttons: list[~microsoft_agents.activity.CardAction]
13
13
  """
14
14
 
15
15
  text: NonEmptyString = None
@@ -11,7 +11,7 @@ class SuggestedActions(AgentsModel):
11
11
  the activity
12
12
  :type to: list[str]
13
13
  :param actions: Actions that can be shown to the user
14
- :type actions: list[~microsoft_agents.protocols.models.CardAction]
14
+ :type actions: list[~microsoft_agents.activity.CardAction]
15
15
  """
16
16
 
17
17
  to: list[NonEmptyString]
@@ -14,12 +14,12 @@ class ThumbnailCard(AgentsModel):
14
14
  :param text: Text for the card
15
15
  :type text: str
16
16
  :param images: Array of images for the card
17
- :type images: list[~microsoft_agents.protocols.models.CardImage]
17
+ :type images: list[~microsoft_agents.activity.CardImage]
18
18
  :param buttons: Set of actions applicable to the current card
19
- :type buttons: list[~microsoft_agents.protocols.models.CardAction]
19
+ :type buttons: list[~microsoft_agents.activity.CardAction]
20
20
  :param tap: This action will be activated when user taps on the card
21
21
  itself
22
- :type tap: ~microsoft_agents.protocols.models.CardAction
22
+ :type tap: ~microsoft_agents.activity.CardAction
23
23
  """
24
24
 
25
25
  title: NonEmptyString = None
@@ -14,9 +14,9 @@ class TokenExchangeState(AgentsModel):
14
14
  :param connection_name: The connection name that was used.
15
15
  :type connection_name: str
16
16
  :param conversation: Gets or sets a reference to the conversation.
17
- :type conversation: ~microsoft_agents.protocols.models.ConversationReference
17
+ :type conversation: ~microsoft_agents.activity.ConversationReference
18
18
  :param relates_to: Gets or sets a reference to a related parent conversation for this token exchange.
19
- :type relates_to: ~microsoft_agents.protocols.models.ConversationReference
19
+ :type relates_to: ~microsoft_agents.activity.ConversationReference
20
20
  :param agent_url: The URL of the agent messaging endpoint.
21
21
  :type agent_url: str
22
22
  :param ms_app_id: The agent's registered application ID.
@@ -7,7 +7,7 @@ class Transcript(AgentsModel):
7
7
 
8
8
  :param activities: A collection of Activities that conforms to the
9
9
  Transcript schema.
10
- :type activities: list[~microsoft_agents.protocols.models.Activity]
10
+ :type activities: list[~microsoft_agents.activity.Activity]
11
11
  """
12
12
 
13
13
  activities: list[Activity] = None
@@ -15,12 +15,12 @@ class VideoCard(AgentsModel):
15
15
  :param text: Text of this card
16
16
  :type text: str
17
17
  :param image: Thumbnail placeholder
18
- :type image: ~microsoft_agents.protocols.models.ThumbnailUrl
18
+ :type image: ~microsoft_agents.activity.ThumbnailUrl
19
19
  :param media: Media URLs for this card. When this field contains more than
20
20
  one URL, each URL is an alternative format of the same content.
21
- :type media: list[~microsoft_agents.protocols.models.MediaUrl]
21
+ :type media: list[~microsoft_agents.activity.MediaUrl]
22
22
  :param buttons: Actions on this card
23
- :type buttons: list[~microsoft_agents.protocols.models.CardAction]
23
+ :type buttons: list[~microsoft_agents.activity.CardAction]
24
24
  :param shareable: This content may be shared with others (default:true)
25
25
  :type shareable: bool
26
26
  :param autoloop: Should the client loop playback at end of content
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: microsoft-agents-activity
3
- Version: 0.3.0
3
+ Version: 0.4.0.dev1
4
4
  Summary: A protocol library for Microsoft Agents
5
5
  Author: Microsoft Corporation
6
6
  Project-URL: Homepage, https://github.com/microsoft/Agents
@@ -2,7 +2,7 @@ microsoft_agents/activity/__init__.py,sha256=9p3zp5KHhxRPHblwZ8WPGhTJst4YzYy-qQx
2
2
  microsoft_agents/activity/_load_configuration.py,sha256=Sepf-xe0pD_xuDwZEFmAEchMJURqIXmL2az78LIJLyw,833
3
3
  microsoft_agents/activity/_type_aliases.py,sha256=7kkx_rIxA1B-z2T6HU6OMBm5lgD1t6KGNznJzAX-VgE,135
4
4
  microsoft_agents/activity/action_types.py,sha256=DY0RkEFquJ_SjMKJvHsD5Ring4j_HPrchEvIsFunIfI,324
5
- microsoft_agents/activity/activity.py,sha256=aVy_AcCObLr83iH3O9P_iasa3rl0r7Tzs7x6UALZBJc,26308
5
+ microsoft_agents/activity/activity.py,sha256=GQoF55LlwjtdjEHqcBWgzEGo3Jvzfeh7ea5k5frN-lc,26148
6
6
  microsoft_agents/activity/activity_event_names.py,sha256=3X5u4xppN86wY-KpBAwRr4sfYB3-V4MSlB5SsrcI7l0,159
7
7
  microsoft_agents/activity/activity_importance.py,sha256=kdwdcVa9fsCEk5hvxOsGhqsE4uu7gpTYKtACEgmva0A,117
8
8
  microsoft_agents/activity/activity_types.py,sha256=a9XvGgWsFI1Rur4JC-n5YIDpdSooxqaMNna3VS1CW1s,667
@@ -11,77 +11,77 @@ microsoft_agents/activity/adaptive_card_invoke_response.py,sha256=lWlB9bL6I7F1Sr
11
11
  microsoft_agents/activity/adaptive_card_invoke_value.py,sha256=9AWQF2maf48GMAoWRgljquMZHZX1r_y3wqULprygJKI,995
12
12
  microsoft_agents/activity/agents_model.py,sha256=h7GVx8NWVXjYs6ARUn3kZ_Km4Xbsn3qw27Ygq6zzrZs,474
13
13
  microsoft_agents/activity/ai_entity.py,sha256=oKWQhmA9WkKhgMRf7wQTvxDTVBLqiMtO5FiZjISau00,4160
14
- microsoft_agents/activity/animation_card.py,sha256=UM6hWq9_AToSWxGFBacsIznJ9Xk0_JbEd7JYxEblhi0,2029
14
+ microsoft_agents/activity/animation_card.py,sha256=ZnXiX5TXj32TS5lDXjZ5TrnYzHnPTVr2Tz3TYyjUlTQ,2005
15
15
  microsoft_agents/activity/attachment.py,sha256=Z2FtaHURYHPRDMdVWgeaxMlFENBMHCBCUKoRGEc2bVY,727
16
16
  microsoft_agents/activity/attachment_data.py,sha256=qY7Ue3IPWq45mFhFrDqUPa_PBqLHYGGCcrAdKHVnXHM,576
17
- microsoft_agents/activity/attachment_info.py,sha256=GG0SS5HhkORdVuTuyzUHeHB-vqPnch0jgFNSpdmgkuI,544
17
+ microsoft_agents/activity/attachment_info.py,sha256=qrQPNYc5cFdaUMCcaBynhLNVTQGAMFD-pZbUIOcfAa0,536
18
18
  microsoft_agents/activity/attachment_layout_types.py,sha256=iXmEtlV-arcXmdZ2anlJVFs4Jjd7QHF2IHS4OfblpYI,108
19
19
  microsoft_agents/activity/attachment_view.py,sha256=-rIphRFMJ_DnARoX2WhL6OeKPciDSd4zvwQjLWAbchM,345
20
- microsoft_agents/activity/audio_card.py,sha256=Y0whCc0K68mpPBrnPKSz3_fIxHrqdTOdYDPovJ53xA8,1988
21
- microsoft_agents/activity/basic_card.py,sha256=SbgS0JwSV2PvDgLBtep-sQ_4MSV-Jdfp_O1YaLpIbaQ,991
20
+ microsoft_agents/activity/audio_card.py,sha256=9padrG8lx4_uKc7HAYvZAEQ88c-1hld5BMcjVHIpD60,1964
21
+ microsoft_agents/activity/basic_card.py,sha256=D7w4yt6Wk4YE7P5_ZJcd35BIrk37eSaAjvD7msILyNw,967
22
22
  microsoft_agents/activity/caller_id_constants.py,sha256=9VhHXo0XyTkknm6NTSGpHOLEMZQp7d3A5B5DOX5L0Kk,220
23
- microsoft_agents/activity/card_action.py,sha256=zanFJPMgmmTsnt9L-l4Hucin6bhsUYU--JNgLth7QgE,1422
24
- microsoft_agents/activity/card_image.py,sha256=EBmSaJ5weNU-oN_JVG1BkWulmGYJOjJf3YxRBx5f4EU,553
25
- microsoft_agents/activity/channel_account.py,sha256=KeU9B4sOJCfLna5o798_jn2d3pSGvnxXrNCUPFv6oKU,1008
23
+ microsoft_agents/activity/card_action.py,sha256=uVlxGFNE7H-ZIjE2YYESuuMDy24mp7MCvenhp83_xII,1414
24
+ microsoft_agents/activity/card_image.py,sha256=yYyo8RBG3z1Heoorj3zEG32oMkLV_mzJWDJetRnszSg,545
25
+ microsoft_agents/activity/channel_account.py,sha256=Vm-IEd6IjqXFFWS26afGThZZ8ysmAbtdy536_D4x5Hw,1000
26
26
  microsoft_agents/activity/channel_adapter_protocol.py,sha256=C-LTxx-EZ8GlRdfuMUx-tCxZrRTcyXQsbINUlM-Fnf0,2040
27
27
  microsoft_agents/activity/channels.py,sha256=DxdIMY_nBXA4BsbLKuL6A6BP0a8_RWvrdBSpR1kFYPY,4511
28
28
  microsoft_agents/activity/contact_relation_update_action_types.py,sha256=BWDcwhcw2xX2Bn2h_11uWNmcrGa_JV4ANbvmxP3Gqng,113
29
- microsoft_agents/activity/conversation_account.py,sha256=kRZvQL3tWPsxzeuG4hFuocvyr5kZurutsLT-N5KvmsI,1449
30
- microsoft_agents/activity/conversation_members.py,sha256=QB1kmDQ1vQJl8VRHcQrkrgMeHmNMSjI2rvEzgBqLAY8,465
31
- microsoft_agents/activity/conversation_parameters.py,sha256=8Fzs3aFrHqgw3_vtcA001g84vqpMGFt_-WDHAZDh-K0,1404
32
- microsoft_agents/activity/conversation_reference.py,sha256=uIRgoiV812Mi08blZBTaOt0Q1SAexv8qnAgaA9unEr0,2381
29
+ microsoft_agents/activity/conversation_account.py,sha256=iFmtRUqPINXNie909SfnlwK0_lFiz8VxMt3old8G6W8,1441
30
+ microsoft_agents/activity/conversation_members.py,sha256=Cw54xRDsZq_wWaXHiivu09chmfUVJbm_nu3lPJY_vjQ,457
31
+ microsoft_agents/activity/conversation_parameters.py,sha256=c_raAMnP8sxh1dFjo6yDVACjR1n-w5iJeeq8w6uZSbo,1380
32
+ microsoft_agents/activity/conversation_reference.py,sha256=erum9ec5tlh_ouvGIhf15AU7I4rXvlWibPnVBChhfHU,2357
33
33
  microsoft_agents/activity/conversation_resource_response.py,sha256=68BzLEYwMBMKlAWl0v_M4GwnXr-EBlzufZyJjowTd88,557
34
34
  microsoft_agents/activity/conversation_update_types.py,sha256=VEUqDxPcohg68El9ROmi_6KiYpsLraBFjxouEIXpX_Q,473
35
- microsoft_agents/activity/conversations_result.py,sha256=js0LtJSfjr260VAsIXy916gLxJXbU0Zfk7WOpMQMq8A,530
35
+ microsoft_agents/activity/conversations_result.py,sha256=3D0dqPBAfo9ZUmpP1bCTEROh8aLF3kqBxvDON7HWNd4,522
36
36
  microsoft_agents/activity/delivery_modes.py,sha256=kwSrdeVxevLEG7lzn8MfRPAO8hQQgbPYqz7kdPWbHjI,199
37
37
  microsoft_agents/activity/end_of_conversation_codes.py,sha256=NJBRgjwHkzbJvmTSGgy-RnjbBlWDIHmZ9dhN118BGDc,301
38
38
  microsoft_agents/activity/entity.py,sha256=b_WPdzJg55n0qiz9cpfml-aEs-f_95VBNb-ihV9Ne6I,1071
39
- microsoft_agents/activity/error.py,sha256=d02y9SZYxOA-CG42gzvmlZbRHFUMO7bHTA1SVckIqnw,559
40
- microsoft_agents/activity/error_response.py,sha256=M_CVtyYdzYCKC6zquLva_VWX2ZTy57fvLazLVXsE0_Y,252
41
- microsoft_agents/activity/expected_replies.py,sha256=Qk586D70KKMJ12Phdcw17sdgaDnA_CNCecjg4blh7MM,351
39
+ microsoft_agents/activity/error.py,sha256=N5DsUr9RYXj0HOu2h89RkNasbSrtvBL-hS9-oKrxt3o,551
40
+ microsoft_agents/activity/error_response.py,sha256=XbCk_B347r69uD2QPkW_1Ld42_yBZMmEZoAF8rWr99o,244
41
+ microsoft_agents/activity/expected_replies.py,sha256=FbJ0yoXhn2XvQ-PN4vo60O_knte-1R2bBPFQy49jZtM,343
42
42
  microsoft_agents/activity/fact.py,sha256=ljgtTptRLpPiBubCrc29SdiTFEQXJvOK4LHRz4CcIlc,549
43
43
  microsoft_agents/activity/geo_coordinates.py,sha256=Qq63l_AWH1t8BphN5rdYWlsK0qsXL6VyMlevYum-D64,889
44
- microsoft_agents/activity/hero_card.py,sha256=pwkQDMV01c8OiFTv7_Fy6iM-VkgwOT-bcv5mQpZnN6E,1023
44
+ microsoft_agents/activity/hero_card.py,sha256=KNCT3p9jr-tK_zlczPFwKZbpfEFDE-rmjA-PBs7v6Ik,999
45
45
  microsoft_agents/activity/inner_http_error.py,sha256=1hcteIiy3LsXTtVT3pD4-83s7sichQsfkV4LaQ0-QhM,333
46
46
  microsoft_agents/activity/input_hints.py,sha256=14us7b1Km-uApAQUpjC5VYnm12QaD-NhpwBQZwwRg0o,263
47
47
  microsoft_agents/activity/installation_update_action_types.py,sha256=Ge-4MqT_TG6JFG5yMR9a_CK3pA5q81_g8GyKM2TWKNE,110
48
48
  microsoft_agents/activity/invoke_response.py,sha256=Unn1fMk2rW-EJx7rvYOFqdBqWnPvD8W5sPRkhqNDG-I,861
49
- microsoft_agents/activity/media_card.py,sha256=v9Tecnj_HgmpJa0MTQPSO2twxjV0hkgH1gPdx7YIBfs,1988
49
+ microsoft_agents/activity/media_card.py,sha256=JKAQu_awjfJTlbpi-nrja_FV7LBEIDZswbsHX3u1t50,1964
50
50
  microsoft_agents/activity/media_event_value.py,sha256=8GUi5uofatEavSuWEMo6sydlOD9_ntd5XDmmQT-hwLM,314
51
51
  microsoft_agents/activity/media_url.py,sha256=tui_uIU93lwLefb7xeRArwvE410w__hFllgi-uLnB8A,401
52
- microsoft_agents/activity/mention.py,sha256=hx_SjB-7g2X09-upVB66O-qC13oOzlptFeh0mTl4Mwk,584
53
- microsoft_agents/activity/message_reaction.py,sha256=X6th2SFLstJYfmmiKA3LYAHVmhBe2UPZk5NjImwMezQ,352
52
+ microsoft_agents/activity/mention.py,sha256=MMcsFWHV8w8L478L-7iOswP5uXXliUnhnXC8k7X14HA,576
53
+ microsoft_agents/activity/message_reaction.py,sha256=wIfLWZl-LstuVMKqmzPagOi6LhsGsUu8Tlcf75-CgAs,344
54
54
  microsoft_agents/activity/message_reaction_types.py,sha256=cAdeuthZmDLu-DZ2IRnuVDFC_ldTSBPjwDRuuSZfcGs,219
55
55
  microsoft_agents/activity/message_update_types.py,sha256=LTIXbGk3NVmraRDPRokdxxD81f-tyg_n7KuNCmX4vcA,181
56
- microsoft_agents/activity/oauth_card.py,sha256=rr1Sc8OyGdTcUO7Nf6Kp3XM6u7QyPll2jJ_wvmjhsdc,876
57
- microsoft_agents/activity/paged_members_result.py,sha256=SK8ebyfHGAdTulAZpbqVbgJW9FevegiI6GdO9EaCIdo,481
56
+ microsoft_agents/activity/oauth_card.py,sha256=cNMlVJ_s3rZry5bZ1Fwv42SpouHRYyrwCFrb7jxatiA,868
57
+ microsoft_agents/activity/paged_members_result.py,sha256=ABwhTA3znOO0HCam1_-26lmAiEnYRe6AICkrTe8npR0,473
58
58
  microsoft_agents/activity/place.py,sha256=KwoNIZ06MhTdYkevzIr6auAR65Z_aXALqunZt7Ze5XE,824
59
- microsoft_agents/activity/receipt_card.py,sha256=Vo3kzm88OKPCkGAP4EohC2KxG6iiJnC7lq4PCJhEvLo,1277
60
- microsoft_agents/activity/receipt_item.py,sha256=CJwU9T3Ju-P3-nNme_C1q2bpRu0dpJAjzU2lhqP3TiM,1134
59
+ microsoft_agents/activity/receipt_card.py,sha256=P-FQYuIsGGx9yLjpF8KZO4ZzaFf0rd_ocM5DOk0mRgU,1245
60
+ microsoft_agents/activity/receipt_item.py,sha256=pPGnf2XRPdiNr2NpqRm5Oa3ns7ITVO3zqD_NGm4MLq4,1118
61
61
  microsoft_agents/activity/resource_response.py,sha256=qTN6C2wXTP_euH5_LDL47DOfMfofe4_o1z7ZO39OEpU,255
62
62
  microsoft_agents/activity/role_types.py,sha256=Y-bnda7PFFBhXd-zZaL5RlIDbgAhdZbeW8TLV_fYjf0,108
63
- microsoft_agents/activity/semantic_action.py,sha256=-crypeiBrLCr1mfN1hCnT9emnEBAUAd7oJj1s1Q5PJQ,611
63
+ microsoft_agents/activity/semantic_action.py,sha256=HjkK0yq_w5hHLaP_DAsPNaBRReRplyupcvUroZeVQr8,595
64
64
  microsoft_agents/activity/semantic_actions_states.py,sha256=xCcSWGmCKizL9J7lycEBIYPIGeQb2dQmsLLObph7s00,149
65
65
  microsoft_agents/activity/sign_in_constants.py,sha256=3juR-nSfP0vr3TvFPhQ2foEivt1lLgWxsG6LQmWhhkc,534
66
66
  microsoft_agents/activity/sign_in_resource.py,sha256=Ygy5wjCvyW1fQ5aLf29214_LFeF9zJnd7ZsUxice5JY,446
67
- microsoft_agents/activity/signin_card.py,sha256=Z2EeiFNwXwmNAEO9Ou42saBbZnPyABx8zFQDhBIWXiU,461
68
- microsoft_agents/activity/suggested_actions.py,sha256=QBzyXjSz8PjSBr33vP8PbckyjaXimPU5zWnRigBF_As,595
67
+ microsoft_agents/activity/signin_card.py,sha256=mI1Zg3PcpFRneH4XL_sdUw2rwIAYN6YMdG_FfpoPmww,453
68
+ microsoft_agents/activity/suggested_actions.py,sha256=R9jHYkL5nau9Mlz7q0UJqv4PeQ2_H4P3WvTtrGMaLXQ,587
69
69
  microsoft_agents/activity/text_format_types.py,sha256=cMYHz1LQY1FwUgh1odOAVyfidKl1RZKPVFrxLW9SQ1Q,120
70
70
  microsoft_agents/activity/text_highlight.py,sha256=OunPICePQLNgJOEO1Xw4PlOvPkoRF6Y5xssx-Kh4jJE,441
71
71
  microsoft_agents/activity/thing.py,sha256=L7J1WBGtgDNkzk99FcgHU7nalhXoe4TQj67hvmWiKE8,356
72
- microsoft_agents/activity/thumbnail_card.py,sha256=FprMoeGt3xGZbF8P-7MqTT771B9XRYFRyivmNm_CNcU,1043
72
+ microsoft_agents/activity/thumbnail_card.py,sha256=gvbWnvWCV4AoXfBjnAorUKXNmLBZJ0YAvd4tDNjDW_E,1019
73
73
  microsoft_agents/activity/thumbnail_url.py,sha256=1gGTFfKmjGi3Rrtgh4RF4nmx13ZlwZVgvpeAtTUfS0E,383
74
74
  microsoft_agents/activity/token_exchange_invoke_request.py,sha256=MQ2WskGT3rOOZYMZTtRiA9W4vmJ8TWSgkkx29-4LH-o,631
75
75
  microsoft_agents/activity/token_exchange_invoke_response.py,sha256=U2rIXQJkqEl9y_9zQuBz1CEXZ9_0k4w77jxNkYSLXG4,668
76
76
  microsoft_agents/activity/token_exchange_resource.py,sha256=U5qptVUUZatpeQjuzFGr4XvLBuRqYRwGe8SM1JvrPnY,296
77
- microsoft_agents/activity/token_exchange_state.py,sha256=M-mkDXOF1nIY06gOOBSDRDSYGKhrmMZdAUDbmQkaZbM,1468
77
+ microsoft_agents/activity/token_exchange_state.py,sha256=C9QosBw52qItGhU5wiRUxkuixfni5Krh5BzftyuCzmo,1452
78
78
  microsoft_agents/activity/token_post_resource.py,sha256=GG65qizkE1v7VKqlQcKKFJky5XubQslrvAGK-BisCVw,226
79
79
  microsoft_agents/activity/token_request.py,sha256=ZXvYDCRaIydyzMuztfa0nQ3HMKURQJpvuTyzKbhukLo,448
80
80
  microsoft_agents/activity/token_response.py,sha256=jQbDEyQqApsF85Zse03D_FsW6ATGfN85-_ywh1ipf38,819
81
81
  microsoft_agents/activity/token_status.py,sha256=o3pGTKRjuqEndRWClMe91Cmox6cW8aDrOTvE3_k5jFI,1174
82
- microsoft_agents/activity/transcript.py,sha256=akGNJ5qt-gAoo6FOt7kr3E_kS7p-vtu-APBAiV0vy-U,336
82
+ microsoft_agents/activity/transcript.py,sha256=yV5s5rONGC1uM5pKnVv0HbY2SVzQ9qKOBawM0fzJOJc,328
83
83
  microsoft_agents/activity/turn_context_protocol.py,sha256=ETR6L5aMoZdPkLUcULmDHfmQo21-_bFF_yzxZmiG_6g,1692
84
- microsoft_agents/activity/video_card.py,sha256=jQDSqbuFunNPR_JqLBvJ0vxCwpLFYG3dUvpg2oYk0I8,1988
84
+ microsoft_agents/activity/video_card.py,sha256=WkIKFxW87-DGKY7HmPp8a2ae2rp0F8piWnspW6IaptI,1964
85
85
  microsoft_agents/activity/teams/__init__.py,sha256=pdcnd_Ud92Eox_fHSgm1kwzwFmG8LVeatF9MRI8IaVY,8532
86
86
  microsoft_agents/activity/teams/app_based_link_query.py,sha256=-2uuPbyElN0DbU5R_mTJ_o7jphBNFr1ZFlLeziXuxn0,462
87
87
  microsoft_agents/activity/teams/batch_failed_entries_response.py,sha256=Q6Mgbdu_OdFGEKmaMu3jr71BSfwNtAgCMLyDSrfLf7I,439
@@ -189,7 +189,7 @@ microsoft_agents/activity/teams/teams_member.py,sha256=vRcLRHy6wTfH7DP6k6QbrKkOR
189
189
  microsoft_agents/activity/teams/teams_paged_members_result.py,sha256=cG4eKHjA0u1EMioC2ErVpydnoPJrtTDcdhdzYET9xto,555
190
190
  microsoft_agents/activity/teams/tenant_info.py,sha256=h8OxMd6LD5lWVj_LK2ut8z7SB0I7Gx74W1wwEiYOzXk,296
191
191
  microsoft_agents/activity/teams/user_meeting_details.py,sha256=tvk2CWYf7Bo-DhK8NSojhanJDXEOGVrKXxJDca03CAo,467
192
- microsoft_agents_activity-0.3.0.dist-info/METADATA,sha256=wBJgLmCdAfRok1r38RPmsmwAAk17iJY_xwl6vI3EeTw,408
193
- microsoft_agents_activity-0.3.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
194
- microsoft_agents_activity-0.3.0.dist-info/top_level.txt,sha256=lWKcT4v6fTA_NgsuHdNvuMjSrkiBMXohn64ApY7Xi8A,17
195
- microsoft_agents_activity-0.3.0.dist-info/RECORD,,
192
+ microsoft_agents_activity-0.4.0.dev1.dist-info/METADATA,sha256=4HtgnXuupQvZ3zrM3GO6omQeb_PrhybZ6QAq0hpYjRE,413
193
+ microsoft_agents_activity-0.4.0.dev1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
194
+ microsoft_agents_activity-0.4.0.dev1.dist-info/top_level.txt,sha256=lWKcT4v6fTA_NgsuHdNvuMjSrkiBMXohn64ApY7Xi8A,17
195
+ microsoft_agents_activity-0.4.0.dev1.dist-info/RECORD,,