microsoft-agents-activity 0.0.0__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.
- microsoft/agents/activity/__init__.py +191 -0
- microsoft/agents/activity/_load_configuration.py +25 -0
- microsoft/agents/activity/_type_aliases.py +5 -0
- microsoft/agents/activity/action_types.py +14 -0
- microsoft/agents/activity/activity.py +613 -0
- microsoft/agents/activity/activity_event_names.py +6 -0
- microsoft/agents/activity/activity_importance.py +7 -0
- microsoft/agents/activity/activity_types.py +22 -0
- microsoft/agents/activity/adaptive_card_invoke_action.py +24 -0
- microsoft/agents/activity/adaptive_card_invoke_response.py +20 -0
- microsoft/agents/activity/adaptive_card_invoke_value.py +22 -0
- microsoft/agents/activity/agents_model.py +18 -0
- microsoft/agents/activity/ai_entity.py +142 -0
- microsoft/agents/activity/animation_card.py +54 -0
- microsoft/agents/activity/attachment.py +24 -0
- microsoft/agents/activity/attachment_data.py +21 -0
- microsoft/agents/activity/attachment_info.py +19 -0
- microsoft/agents/activity/attachment_layout_types.py +6 -0
- microsoft/agents/activity/attachment_view.py +15 -0
- microsoft/agents/activity/audio_card.py +54 -0
- microsoft/agents/activity/basic_card.py +30 -0
- microsoft/agents/activity/caller_id_constants.py +7 -0
- microsoft/agents/activity/card_action.py +39 -0
- microsoft/agents/activity/card_image.py +19 -0
- microsoft/agents/activity/channel_account.py +33 -0
- microsoft/agents/activity/channel_adapter_protocol.py +76 -0
- microsoft/agents/activity/channels.py +158 -0
- microsoft/agents/activity/contact_relation_update_action_types.py +6 -0
- microsoft/agents/activity/conversation_account.py +38 -0
- microsoft/agents/activity/conversation_members.py +16 -0
- microsoft/agents/activity/conversation_parameters.py +37 -0
- microsoft/agents/activity/conversation_reference.py +60 -0
- microsoft/agents/activity/conversation_resource_response.py +19 -0
- microsoft/agents/activity/conversation_update_types.py +15 -0
- microsoft/agents/activity/conversations_result.py +17 -0
- microsoft/agents/activity/delivery_modes.py +9 -0
- microsoft/agents/activity/end_of_conversation_codes.py +10 -0
- microsoft/agents/activity/entity.py +38 -0
- microsoft/agents/activity/error.py +19 -0
- microsoft/agents/activity/error_response.py +12 -0
- microsoft/agents/activity/expected_replies.py +13 -0
- microsoft/agents/activity/fact.py +18 -0
- microsoft/agents/activity/geo_coordinates.py +27 -0
- microsoft/agents/activity/hero_card.py +30 -0
- microsoft/agents/activity/inner_http_error.py +14 -0
- microsoft/agents/activity/input_hints.py +10 -0
- microsoft/agents/activity/installation_update_action_types.py +6 -0
- microsoft/agents/activity/invoke_response.py +24 -0
- microsoft/agents/activity/media_card.py +54 -0
- microsoft/agents/activity/media_event_value.py +12 -0
- microsoft/agents/activity/media_url.py +16 -0
- microsoft/agents/activity/mention.py +19 -0
- microsoft/agents/activity/message_reaction.py +13 -0
- microsoft/agents/activity/message_reaction_types.py +11 -0
- microsoft/agents/activity/message_update_types.py +7 -0
- microsoft/agents/activity/oauth_card.py +24 -0
- microsoft/agents/activity/paged_members_result.py +16 -0
- microsoft/agents/activity/place.py +27 -0
- microsoft/agents/activity/receipt_card.py +36 -0
- microsoft/agents/activity/receipt_item.py +35 -0
- microsoft/agents/activity/resource_response.py +12 -0
- microsoft/agents/activity/role_types.py +7 -0
- microsoft/agents/activity/semantic_action.py +18 -0
- microsoft/agents/activity/semantic_actions_states.py +7 -0
- microsoft/agents/activity/sign_in_constants.py +13 -0
- microsoft/agents/activity/sign_in_resource.py +14 -0
- microsoft/agents/activity/signin_card.py +16 -0
- microsoft/agents/activity/suggested_actions.py +18 -0
- microsoft/agents/activity/teams/__init__.py +198 -0
- microsoft/agents/activity/teams/app_based_link_query.py +18 -0
- microsoft/agents/activity/teams/batch_failed_entries_response.py +15 -0
- microsoft/agents/activity/teams/batch_failed_entry.py +16 -0
- microsoft/agents/activity/teams/batch_operation_response.py +13 -0
- microsoft/agents/activity/teams/batch_operation_state_response.py +24 -0
- microsoft/agents/activity/teams/bot_config_auth.py +18 -0
- microsoft/agents/activity/teams/cache_info.py +18 -0
- microsoft/agents/activity/teams/cancel_operation_response.py +19 -0
- microsoft/agents/activity/teams/channel_info.py +21 -0
- microsoft/agents/activity/teams/config_auth_response.py +17 -0
- microsoft/agents/activity/teams/config_response.py +18 -0
- microsoft/agents/activity/teams/config_response_base.py +14 -0
- microsoft/agents/activity/teams/config_task_response.py +18 -0
- microsoft/agents/activity/teams/conversation_list.py +17 -0
- microsoft/agents/activity/teams/file_consent_card.py +24 -0
- microsoft/agents/activity/teams/file_consent_card_response.py +21 -0
- microsoft/agents/activity/teams/file_download_info.py +24 -0
- microsoft/agents/activity/teams/file_info_card.py +21 -0
- microsoft/agents/activity/teams/file_upload_info.py +26 -0
- microsoft/agents/activity/teams/meeting_details.py +23 -0
- microsoft/agents/activity/teams/meeting_details_base.py +21 -0
- microsoft/agents/activity/teams/meeting_end_event_details.py +15 -0
- microsoft/agents/activity/teams/meeting_event_details.py +15 -0
- microsoft/agents/activity/teams/meeting_info.py +24 -0
- microsoft/agents/activity/teams/meeting_notification.py +15 -0
- microsoft/agents/activity/teams/meeting_notification_base.py +14 -0
- microsoft/agents/activity/teams/meeting_notification_channel_data.py +16 -0
- microsoft/agents/activity/teams/meeting_notification_recipient_failure_info.py +20 -0
- microsoft/agents/activity/teams/meeting_notification_response.py +20 -0
- microsoft/agents/activity/teams/meeting_participant_info.py +18 -0
- microsoft/agents/activity/teams/meeting_participants_event_details.py +16 -0
- microsoft/agents/activity/teams/meeting_stage_surface.py +25 -0
- microsoft/agents/activity/teams/meeting_start_event_details.py +15 -0
- microsoft/agents/activity/teams/meeting_tab_icon_surface.py +15 -0
- microsoft/agents/activity/teams/message_actions_payload.py +70 -0
- microsoft/agents/activity/teams/message_actions_payload_app.py +29 -0
- microsoft/agents/activity/teams/message_actions_payload_attachment.py +30 -0
- microsoft/agents/activity/teams/message_actions_payload_body.py +17 -0
- microsoft/agents/activity/teams/message_actions_payload_conversation.py +20 -0
- microsoft/agents/activity/teams/message_actions_payload_from.py +25 -0
- microsoft/agents/activity/teams/message_actions_payload_mention.py +23 -0
- microsoft/agents/activity/teams/message_actions_payload_reaction.py +23 -0
- microsoft/agents/activity/teams/message_actions_payload_user.py +27 -0
- microsoft/agents/activity/teams/messaging_extension_action.py +37 -0
- microsoft/agents/activity/teams/messaging_extension_action_response.py +24 -0
- microsoft/agents/activity/teams/messaging_extension_attachment.py +32 -0
- microsoft/agents/activity/teams/messaging_extension_parameter.py +17 -0
- microsoft/agents/activity/teams/messaging_extension_query.py +27 -0
- microsoft/agents/activity/teams/messaging_extension_query_options.py +17 -0
- microsoft/agents/activity/teams/messaging_extension_response.py +21 -0
- microsoft/agents/activity/teams/messaging_extension_result.py +34 -0
- microsoft/agents/activity/teams/messaging_extension_suggested_action.py +17 -0
- microsoft/agents/activity/teams/notification_info.py +21 -0
- microsoft/agents/activity/teams/o365_connector_card.py +32 -0
- microsoft/agents/activity/teams/o365_connector_card_action_base.py +21 -0
- microsoft/agents/activity/teams/o365_connector_card_action_card.py +30 -0
- microsoft/agents/activity/teams/o365_connector_card_action_query.py +15 -0
- microsoft/agents/activity/teams/o365_connector_card_date_input.py +30 -0
- microsoft/agents/activity/teams/o365_connector_card_fact.py +17 -0
- microsoft/agents/activity/teams/o365_connector_card_http_post.py +25 -0
- microsoft/agents/activity/teams/o365_connector_card_image.py +18 -0
- microsoft/agents/activity/teams/o365_connector_card_input_base.py +28 -0
- microsoft/agents/activity/teams/o365_connector_card_multichoice_input.py +40 -0
- microsoft/agents/activity/teams/o365_connector_card_multichoice_input_choice.py +17 -0
- microsoft/agents/activity/teams/o365_connector_card_open_uri.py +26 -0
- microsoft/agents/activity/teams/o365_connector_card_open_uri_target.py +17 -0
- microsoft/agents/activity/teams/o365_connector_card_section.py +42 -0
- microsoft/agents/activity/teams/o365_connector_card_text_input.py +31 -0
- microsoft/agents/activity/teams/o365_connector_card_view_action.py +25 -0
- microsoft/agents/activity/teams/on_behalf_of.py +23 -0
- microsoft/agents/activity/teams/read_receipt_info.py +47 -0
- microsoft/agents/activity/teams/signin_state_verification_query.py +14 -0
- microsoft/agents/activity/teams/surface.py +18 -0
- microsoft/agents/activity/teams/tab_context.py +14 -0
- microsoft/agents/activity/teams/tab_entity_context.py +15 -0
- microsoft/agents/activity/teams/tab_request.py +22 -0
- microsoft/agents/activity/teams/tab_response.py +16 -0
- microsoft/agents/activity/teams/tab_response_card.py +14 -0
- microsoft/agents/activity/teams/tab_response_cards.py +17 -0
- microsoft/agents/activity/teams/tab_response_payload.py +25 -0
- microsoft/agents/activity/teams/tab_submit.py +23 -0
- microsoft/agents/activity/teams/tab_submit_data.py +18 -0
- microsoft/agents/activity/teams/tab_suggested_actions.py +17 -0
- microsoft/agents/activity/teams/targeted_meeting_notification.py +19 -0
- microsoft/agents/activity/teams/targeted_meeting_notification_value.py +19 -0
- microsoft/agents/activity/teams/task_module_card_response.py +15 -0
- microsoft/agents/activity/teams/task_module_continue_response.py +19 -0
- microsoft/agents/activity/teams/task_module_message_response.py +18 -0
- microsoft/agents/activity/teams/task_module_request.py +25 -0
- microsoft/agents/activity/teams/task_module_request_context.py +15 -0
- microsoft/agents/activity/teams/task_module_response.py +20 -0
- microsoft/agents/activity/teams/task_module_response_base.py +17 -0
- microsoft/agents/activity/teams/task_module_task_info.py +30 -0
- microsoft/agents/activity/teams/team_details.py +29 -0
- microsoft/agents/activity/teams/team_info.py +20 -0
- microsoft/agents/activity/teams/teams_batch_operation_response.py +19 -0
- microsoft/agents/activity/teams/teams_channel_account.py +44 -0
- microsoft/agents/activity/teams/teams_channel_data.py +43 -0
- microsoft/agents/activity/teams/teams_channel_data_settings.py +15 -0
- microsoft/agents/activity/teams/teams_meeting_info.py +14 -0
- microsoft/agents/activity/teams/teams_meeting_member.py +19 -0
- microsoft/agents/activity/teams/teams_meeting_participant.py +24 -0
- microsoft/agents/activity/teams/teams_member.py +14 -0
- microsoft/agents/activity/teams/teams_paged_members_result.py +19 -0
- microsoft/agents/activity/teams/tenant_info.py +14 -0
- microsoft/agents/activity/teams/user_meeting_details.py +17 -0
- microsoft/agents/activity/text_format_types.py +7 -0
- microsoft/agents/activity/text_highlight.py +16 -0
- microsoft/agents/activity/thing.py +15 -0
- microsoft/agents/activity/thumbnail_card.py +30 -0
- microsoft/agents/activity/thumbnail_url.py +15 -0
- microsoft/agents/activity/token_exchange_invoke_request.py +21 -0
- microsoft/agents/activity/token_exchange_invoke_response.py +21 -0
- microsoft/agents/activity/token_exchange_resource.py +13 -0
- microsoft/agents/activity/token_exchange_state.py +38 -0
- microsoft/agents/activity/token_post_resource.py +11 -0
- microsoft/agents/activity/token_request.py +16 -0
- microsoft/agents/activity/token_response.py +25 -0
- microsoft/agents/activity/token_status.py +32 -0
- microsoft/agents/activity/transcript.py +13 -0
- microsoft/agents/activity/turn_context_protocol.py +65 -0
- microsoft/agents/activity/video_card.py +54 -0
- microsoft_agents_activity-0.0.0.dist-info/METADATA +11 -0
- microsoft_agents_activity-0.0.0.dist-info/RECORD +195 -0
- microsoft_agents_activity-0.0.0.dist-info/WHEEL +5 -0
- microsoft_agents_activity-0.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from typing import Protocol, List, Callable, Optional, Generic, TypeVar
|
|
4
|
+
from abc import abstractmethod
|
|
5
|
+
|
|
6
|
+
from microsoft.agents.activity import (
|
|
7
|
+
Activity,
|
|
8
|
+
ResourceResponse,
|
|
9
|
+
ConversationReference,
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
# TODO: refactor circular dependency
|
|
13
|
+
# from .channel_adapter_protocol import ChannelAdapterProtocol
|
|
14
|
+
|
|
15
|
+
T = TypeVar("T", bound=Activity)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class TurnContextProtocol(Protocol, Generic[T]):
|
|
19
|
+
adapter: "ChannelAdapterProtocol"
|
|
20
|
+
activity: Activity | T
|
|
21
|
+
responded: bool
|
|
22
|
+
turn_state: dict
|
|
23
|
+
|
|
24
|
+
@abstractmethod
|
|
25
|
+
async def send_activity(
|
|
26
|
+
self,
|
|
27
|
+
activity_or_text: Activity | str,
|
|
28
|
+
speak: Optional[str] = None,
|
|
29
|
+
input_hint: Optional[str] = None,
|
|
30
|
+
) -> Optional[ResourceResponse]:
|
|
31
|
+
pass
|
|
32
|
+
|
|
33
|
+
@abstractmethod
|
|
34
|
+
async def send_activities(
|
|
35
|
+
self, activities: List[Activity]
|
|
36
|
+
) -> List[ResourceResponse]:
|
|
37
|
+
pass
|
|
38
|
+
|
|
39
|
+
@abstractmethod
|
|
40
|
+
async def update_activity(self, activity: Activity) -> Optional[ResourceResponse]:
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
@abstractmethod
|
|
44
|
+
async def delete_activity(
|
|
45
|
+
self, id_or_reference: str | ConversationReference
|
|
46
|
+
) -> None:
|
|
47
|
+
pass
|
|
48
|
+
|
|
49
|
+
@abstractmethod
|
|
50
|
+
def on_send_activities(self, handler: Callable) -> "TurnContextProtocol":
|
|
51
|
+
pass
|
|
52
|
+
|
|
53
|
+
@abstractmethod
|
|
54
|
+
def on_update_activity(self, handler: Callable) -> "TurnContextProtocol":
|
|
55
|
+
pass
|
|
56
|
+
|
|
57
|
+
@abstractmethod
|
|
58
|
+
def on_delete_activity(self, handler: Callable) -> "TurnContextProtocol":
|
|
59
|
+
pass
|
|
60
|
+
|
|
61
|
+
@abstractmethod
|
|
62
|
+
async def send_trace_activity(
|
|
63
|
+
self, name: str, value: object = None, value_type: str = None, label: str = None
|
|
64
|
+
) -> ResourceResponse:
|
|
65
|
+
pass
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
from .thumbnail_url import ThumbnailUrl
|
|
2
|
+
from .media_url import MediaUrl
|
|
3
|
+
from .card_action import CardAction
|
|
4
|
+
from .agents_model import AgentsModel
|
|
5
|
+
from ._type_aliases import NonEmptyString
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class VideoCard(AgentsModel):
|
|
9
|
+
"""Video card.
|
|
10
|
+
|
|
11
|
+
:param title: Title of this card
|
|
12
|
+
:type title: str
|
|
13
|
+
:param subtitle: Subtitle of this card
|
|
14
|
+
:type subtitle: str
|
|
15
|
+
:param text: Text of this card
|
|
16
|
+
:type text: str
|
|
17
|
+
:param image: Thumbnail placeholder
|
|
18
|
+
:type image: ~microsoft.agents.protocols.models.ThumbnailUrl
|
|
19
|
+
:param media: Media URLs for this card. When this field contains more than
|
|
20
|
+
one URL, each URL is an alternative format of the same content.
|
|
21
|
+
:type media: list[~microsoft.agents.protocols.models.MediaUrl]
|
|
22
|
+
:param buttons: Actions on this card
|
|
23
|
+
:type buttons: list[~microsoft.agents.protocols.models.CardAction]
|
|
24
|
+
:param shareable: This content may be shared with others (default:true)
|
|
25
|
+
:type shareable: bool
|
|
26
|
+
:param autoloop: Should the client loop playback at end of content
|
|
27
|
+
(default:true)
|
|
28
|
+
:type autoloop: bool
|
|
29
|
+
:param autostart: Should the client automatically start playback of media
|
|
30
|
+
in this card (default:true)
|
|
31
|
+
:type autostart: bool
|
|
32
|
+
:param aspect: Aspect ratio of thumbnail/media placeholder. Allowed values
|
|
33
|
+
are "16:9" and "4:3"
|
|
34
|
+
:type aspect: str
|
|
35
|
+
:param duration: Describes the length of the media content without
|
|
36
|
+
requiring a receiver to open the content. Formatted as an ISO 8601
|
|
37
|
+
Duration field.
|
|
38
|
+
:type duration: str
|
|
39
|
+
:param value: Supplementary parameter for this card
|
|
40
|
+
:type value: object
|
|
41
|
+
"""
|
|
42
|
+
|
|
43
|
+
title: NonEmptyString = None
|
|
44
|
+
subtitle: NonEmptyString = None
|
|
45
|
+
text: NonEmptyString = None
|
|
46
|
+
image: ThumbnailUrl = None
|
|
47
|
+
media: list[MediaUrl] = None
|
|
48
|
+
buttons: list[CardAction] = None
|
|
49
|
+
shareable: bool = None
|
|
50
|
+
autoloop: bool = None
|
|
51
|
+
autostart: bool = None
|
|
52
|
+
aspect: NonEmptyString = None
|
|
53
|
+
duration: NonEmptyString = None
|
|
54
|
+
value: object = None
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: microsoft-agents-activity
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: A protocol library for Microsoft Agents
|
|
5
|
+
Author: Microsoft Corporation
|
|
6
|
+
Project-URL: Homepage, https://github.com/microsoft/Agents
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.9
|
|
11
|
+
Requires-Dist: pydantic>=2.10.4
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
microsoft/agents/activity/__init__.py,sha256=9p3zp5KHhxRPHblwZ8WPGhTJst4YzYy-qQxLJEK0qWI,6115
|
|
2
|
+
microsoft/agents/activity/_load_configuration.py,sha256=Sepf-xe0pD_xuDwZEFmAEchMJURqIXmL2az78LIJLyw,833
|
|
3
|
+
microsoft/agents/activity/_type_aliases.py,sha256=7kkx_rIxA1B-z2T6HU6OMBm5lgD1t6KGNznJzAX-VgE,135
|
|
4
|
+
microsoft/agents/activity/action_types.py,sha256=DY0RkEFquJ_SjMKJvHsD5Ring4j_HPrchEvIsFunIfI,324
|
|
5
|
+
microsoft/agents/activity/activity.py,sha256=tHSOc50f0Nvz8lGAKLDnTQDOo2mQNZ1SzQi15bD69oA,26308
|
|
6
|
+
microsoft/agents/activity/activity_event_names.py,sha256=3X5u4xppN86wY-KpBAwRr4sfYB3-V4MSlB5SsrcI7l0,159
|
|
7
|
+
microsoft/agents/activity/activity_importance.py,sha256=kdwdcVa9fsCEk5hvxOsGhqsE4uu7gpTYKtACEgmva0A,117
|
|
8
|
+
microsoft/agents/activity/activity_types.py,sha256=a9XvGgWsFI1Rur4JC-n5YIDpdSooxqaMNna3VS1CW1s,667
|
|
9
|
+
microsoft/agents/activity/adaptive_card_invoke_action.py,sha256=X4weYdv8uzeNyBPpeTYD4631O19aaQdvvyrYi5PUJdU,779
|
|
10
|
+
microsoft/agents/activity/adaptive_card_invoke_response.py,sha256=lWlB9bL6I7F1Sr2-xV1XFq6ddB2UGi8GRCOOt4kyffs,640
|
|
11
|
+
microsoft/agents/activity/adaptive_card_invoke_value.py,sha256=oMBJ3qlpn9lSnabc2Boz__wO_s9XakshZ0XqdGchLoY,995
|
|
12
|
+
microsoft/agents/activity/agents_model.py,sha256=h7GVx8NWVXjYs6ARUn3kZ_Km4Xbsn3qw27Ygq6zzrZs,474
|
|
13
|
+
microsoft/agents/activity/ai_entity.py,sha256=oKWQhmA9WkKhgMRf7wQTvxDTVBLqiMtO5FiZjISau00,4160
|
|
14
|
+
microsoft/agents/activity/animation_card.py,sha256=2nuA6DCJAw78t0bpI3s9oirhYmk2IT60cQmfqqOInCk,2029
|
|
15
|
+
microsoft/agents/activity/attachment.py,sha256=Z2FtaHURYHPRDMdVWgeaxMlFENBMHCBCUKoRGEc2bVY,727
|
|
16
|
+
microsoft/agents/activity/attachment_data.py,sha256=qY7Ue3IPWq45mFhFrDqUPa_PBqLHYGGCcrAdKHVnXHM,576
|
|
17
|
+
microsoft/agents/activity/attachment_info.py,sha256=400B_H_CmKl7kMVixKFdUQ5kEjWs2o0NY7HpAVXSoGs,544
|
|
18
|
+
microsoft/agents/activity/attachment_layout_types.py,sha256=iXmEtlV-arcXmdZ2anlJVFs4Jjd7QHF2IHS4OfblpYI,108
|
|
19
|
+
microsoft/agents/activity/attachment_view.py,sha256=-rIphRFMJ_DnARoX2WhL6OeKPciDSd4zvwQjLWAbchM,345
|
|
20
|
+
microsoft/agents/activity/audio_card.py,sha256=-DfOGKQROxjPtue748T9sWOUPqVFVzrdo0Bm_aMvf8Y,1988
|
|
21
|
+
microsoft/agents/activity/basic_card.py,sha256=hN--4lPq5ZxU27EKPVQSlZtCFzE6X4TRkpBAiO68rDU,991
|
|
22
|
+
microsoft/agents/activity/caller_id_constants.py,sha256=9VhHXo0XyTkknm6NTSGpHOLEMZQp7d3A5B5DOX5L0Kk,220
|
|
23
|
+
microsoft/agents/activity/card_action.py,sha256=FMaoY3neoLDJMD2yj7cqIpV-AaZBd75YKF1jcKE0J6U,1422
|
|
24
|
+
microsoft/agents/activity/card_image.py,sha256=1VdHgWghZOzDkkQdAkO2YMOPqOys77rR1yE3-R79dkc,553
|
|
25
|
+
microsoft/agents/activity/channel_account.py,sha256=D_tR_FvZ93vrpaIDKTmp7P0Yg3BA_NJHn3vmQCBxVMo,1001
|
|
26
|
+
microsoft/agents/activity/channel_adapter_protocol.py,sha256=5EtuJ0O4BCxun6_z0EjWKuU4w1Argj1REKYmgkFaVus,2040
|
|
27
|
+
microsoft/agents/activity/channels.py,sha256=DxdIMY_nBXA4BsbLKuL6A6BP0a8_RWvrdBSpR1kFYPY,4511
|
|
28
|
+
microsoft/agents/activity/contact_relation_update_action_types.py,sha256=BWDcwhcw2xX2Bn2h_11uWNmcrGa_JV4ANbvmxP3Gqng,113
|
|
29
|
+
microsoft/agents/activity/conversation_account.py,sha256=a96E4PkptKk6jFSbadx-9fePYvTZsrQ4U2xRermwhZo,1449
|
|
30
|
+
microsoft/agents/activity/conversation_members.py,sha256=GxWSCIE4j7NwcjcKAcFbCohZFMRcw6Qf7JLbKhGQSS8,465
|
|
31
|
+
microsoft/agents/activity/conversation_parameters.py,sha256=Iv3wCg0oEnu07fmOB2QfUnqnzFlj48TBpi4IaRoqw6c,1404
|
|
32
|
+
microsoft/agents/activity/conversation_reference.py,sha256=HTXnfwwthL_AldH-LLguTeUJGwTIzuzboB1gLbbzc8c,2374
|
|
33
|
+
microsoft/agents/activity/conversation_resource_response.py,sha256=68BzLEYwMBMKlAWl0v_M4GwnXr-EBlzufZyJjowTd88,557
|
|
34
|
+
microsoft/agents/activity/conversation_update_types.py,sha256=VEUqDxPcohg68El9ROmi_6KiYpsLraBFjxouEIXpX_Q,473
|
|
35
|
+
microsoft/agents/activity/conversations_result.py,sha256=mSGYjoSPZg-Fn-bGDab84uoSeqsPN4yGM05JBaGqxzQ,530
|
|
36
|
+
microsoft/agents/activity/delivery_modes.py,sha256=kwSrdeVxevLEG7lzn8MfRPAO8hQQgbPYqz7kdPWbHjI,199
|
|
37
|
+
microsoft/agents/activity/end_of_conversation_codes.py,sha256=NJBRgjwHkzbJvmTSGgy-RnjbBlWDIHmZ9dhN118BGDc,301
|
|
38
|
+
microsoft/agents/activity/entity.py,sha256=b_WPdzJg55n0qiz9cpfml-aEs-f_95VBNb-ihV9Ne6I,1071
|
|
39
|
+
microsoft/agents/activity/error.py,sha256=n_sunFKsWD1pDiOcN4BlyHmP7T-V7dtBDImbp_GODxI,559
|
|
40
|
+
microsoft/agents/activity/error_response.py,sha256=Zni6-holQqMxezcb07I_PenrP4APcFXhX2WWHebxGMI,252
|
|
41
|
+
microsoft/agents/activity/expected_replies.py,sha256=zG5Gamd1N_NyxgPydCQp5gO7EZTAIJ4qfQcx0iF9YAo,351
|
|
42
|
+
microsoft/agents/activity/fact.py,sha256=ljgtTptRLpPiBubCrc29SdiTFEQXJvOK4LHRz4CcIlc,549
|
|
43
|
+
microsoft/agents/activity/geo_coordinates.py,sha256=Qq63l_AWH1t8BphN5rdYWlsK0qsXL6VyMlevYum-D64,889
|
|
44
|
+
microsoft/agents/activity/hero_card.py,sha256=jtU3gcfJeLYMnIkGn-ictiEFvwIgYM7OrmllhOqVvDE,1023
|
|
45
|
+
microsoft/agents/activity/inner_http_error.py,sha256=1hcteIiy3LsXTtVT3pD4-83s7sichQsfkV4LaQ0-QhM,333
|
|
46
|
+
microsoft/agents/activity/input_hints.py,sha256=14us7b1Km-uApAQUpjC5VYnm12QaD-NhpwBQZwwRg0o,263
|
|
47
|
+
microsoft/agents/activity/installation_update_action_types.py,sha256=Ge-4MqT_TG6JFG5yMR9a_CK3pA5q81_g8GyKM2TWKNE,110
|
|
48
|
+
microsoft/agents/activity/invoke_response.py,sha256=Unn1fMk2rW-EJx7rvYOFqdBqWnPvD8W5sPRkhqNDG-I,861
|
|
49
|
+
microsoft/agents/activity/media_card.py,sha256=IdLfzb8pz9YXQZVi3VqD0KeDAXMGmJD1HLR2CCzRrMs,1988
|
|
50
|
+
microsoft/agents/activity/media_event_value.py,sha256=8GUi5uofatEavSuWEMo6sydlOD9_ntd5XDmmQT-hwLM,314
|
|
51
|
+
microsoft/agents/activity/media_url.py,sha256=tui_uIU93lwLefb7xeRArwvE410w__hFllgi-uLnB8A,401
|
|
52
|
+
microsoft/agents/activity/mention.py,sha256=CBAL3kx-A7X7F2gC-uvKgX4waV0kjpGL_XR42_55iPY,584
|
|
53
|
+
microsoft/agents/activity/message_reaction.py,sha256=xydebNS8u6k1U5ntIGsNm6wF3Om0B1paErNmgc-a-w4,352
|
|
54
|
+
microsoft/agents/activity/message_reaction_types.py,sha256=cAdeuthZmDLu-DZ2IRnuVDFC_ldTSBPjwDRuuSZfcGs,219
|
|
55
|
+
microsoft/agents/activity/message_update_types.py,sha256=LTIXbGk3NVmraRDPRokdxxD81f-tyg_n7KuNCmX4vcA,181
|
|
56
|
+
microsoft/agents/activity/oauth_card.py,sha256=ZVD3JO0X0oRbE3mDXWF5j_W98_Kc4TvlvSdlNud7pmA,876
|
|
57
|
+
microsoft/agents/activity/paged_members_result.py,sha256=21H7P2zyEIlTjkkQX2uk2tqwHZstJuz6URswmlewTyg,481
|
|
58
|
+
microsoft/agents/activity/place.py,sha256=KwoNIZ06MhTdYkevzIr6auAR65Z_aXALqunZt7Ze5XE,824
|
|
59
|
+
microsoft/agents/activity/receipt_card.py,sha256=4sXWYObJgsFWCOme2ZNSuUfIE28zQ1beoecAwXlZbhw,1277
|
|
60
|
+
microsoft/agents/activity/receipt_item.py,sha256=fGtq8qnxUX2JZbC8RsGOmwypFEWfe6vjsPvybJzonrk,1134
|
|
61
|
+
microsoft/agents/activity/resource_response.py,sha256=qTN6C2wXTP_euH5_LDL47DOfMfofe4_o1z7ZO39OEpU,255
|
|
62
|
+
microsoft/agents/activity/role_types.py,sha256=Y-bnda7PFFBhXd-zZaL5RlIDbgAhdZbeW8TLV_fYjf0,108
|
|
63
|
+
microsoft/agents/activity/semantic_action.py,sha256=VpmXCgJsY4U2-k3THOgL4K_LrQ1q6AMOL1asX6hMuAU,611
|
|
64
|
+
microsoft/agents/activity/semantic_actions_states.py,sha256=xCcSWGmCKizL9J7lycEBIYPIGeQb2dQmsLLObph7s00,149
|
|
65
|
+
microsoft/agents/activity/sign_in_constants.py,sha256=3juR-nSfP0vr3TvFPhQ2foEivt1lLgWxsG6LQmWhhkc,534
|
|
66
|
+
microsoft/agents/activity/sign_in_resource.py,sha256=Ygy5wjCvyW1fQ5aLf29214_LFeF9zJnd7ZsUxice5JY,446
|
|
67
|
+
microsoft/agents/activity/signin_card.py,sha256=AOaeCNUnpReUFsnizCnsMYGRMCBJYw7Q7PXQph7lrkg,461
|
|
68
|
+
microsoft/agents/activity/suggested_actions.py,sha256=Sf-kurAwmJ8JhbZ8eICTyv2ToWA9uAxDcXTjjckN0bg,595
|
|
69
|
+
microsoft/agents/activity/text_format_types.py,sha256=cMYHz1LQY1FwUgh1odOAVyfidKl1RZKPVFrxLW9SQ1Q,120
|
|
70
|
+
microsoft/agents/activity/text_highlight.py,sha256=OunPICePQLNgJOEO1Xw4PlOvPkoRF6Y5xssx-Kh4jJE,441
|
|
71
|
+
microsoft/agents/activity/thing.py,sha256=L7J1WBGtgDNkzk99FcgHU7nalhXoe4TQj67hvmWiKE8,356
|
|
72
|
+
microsoft/agents/activity/thumbnail_card.py,sha256=ip3WIPhIe-5hJfMq76StSHbIG1Qh2Do7otN6h5sHV3w,1043
|
|
73
|
+
microsoft/agents/activity/thumbnail_url.py,sha256=1gGTFfKmjGi3Rrtgh4RF4nmx13ZlwZVgvpeAtTUfS0E,383
|
|
74
|
+
microsoft/agents/activity/token_exchange_invoke_request.py,sha256=MQ2WskGT3rOOZYMZTtRiA9W4vmJ8TWSgkkx29-4LH-o,631
|
|
75
|
+
microsoft/agents/activity/token_exchange_invoke_response.py,sha256=U2rIXQJkqEl9y_9zQuBz1CEXZ9_0k4w77jxNkYSLXG4,668
|
|
76
|
+
microsoft/agents/activity/token_exchange_resource.py,sha256=U5qptVUUZatpeQjuzFGr4XvLBuRqYRwGe8SM1JvrPnY,296
|
|
77
|
+
microsoft/agents/activity/token_exchange_state.py,sha256=nEONSuEtJA6WstlZJXBRbde8YXYnnVLbXEcWcFZAvEM,1468
|
|
78
|
+
microsoft/agents/activity/token_post_resource.py,sha256=GG65qizkE1v7VKqlQcKKFJky5XubQslrvAGK-BisCVw,226
|
|
79
|
+
microsoft/agents/activity/token_request.py,sha256=ZXvYDCRaIydyzMuztfa0nQ3HMKURQJpvuTyzKbhukLo,448
|
|
80
|
+
microsoft/agents/activity/token_response.py,sha256=IqQ1i5Gj2DtfKGtjI9nCcFIx2CL0dc5cLdq0zFMicXM,762
|
|
81
|
+
microsoft/agents/activity/token_status.py,sha256=o3pGTKRjuqEndRWClMe91Cmox6cW8aDrOTvE3_k5jFI,1174
|
|
82
|
+
microsoft/agents/activity/transcript.py,sha256=suHMv004esZJ8b6SmMVdFhyVtBq9M1D2nnDrpKE8mM0,336
|
|
83
|
+
microsoft/agents/activity/turn_context_protocol.py,sha256=d79zvsEsCDMSuXsMIlxksNnz7PXcfY3A1mXlbwXAewY,1692
|
|
84
|
+
microsoft/agents/activity/video_card.py,sha256=8IEa-_o-UszyQJJB4SSwxr-prnNLGylAN0uLIYUQu-w,1988
|
|
85
|
+
microsoft/agents/activity/teams/__init__.py,sha256=pdcnd_Ud92Eox_fHSgm1kwzwFmG8LVeatF9MRI8IaVY,8532
|
|
86
|
+
microsoft/agents/activity/teams/app_based_link_query.py,sha256=-2uuPbyElN0DbU5R_mTJ_o7jphBNFr1ZFlLeziXuxn0,462
|
|
87
|
+
microsoft/agents/activity/teams/batch_failed_entries_response.py,sha256=Q6Mgbdu_OdFGEKmaMu3jr71BSfwNtAgCMLyDSrfLf7I,439
|
|
88
|
+
microsoft/agents/activity/teams/batch_failed_entry.py,sha256=Zu9UaPJj2oIO5ZgLDS2wFuKIQIy7Rx0Mtf51gQO2XJM,399
|
|
89
|
+
microsoft/agents/activity/teams/batch_operation_response.py,sha256=AxHlwC5M3SzebzQuKYWrUNSi0pwBgwhmkJSOnaB0iJM,320
|
|
90
|
+
microsoft/agents/activity/teams/batch_operation_state_response.py,sha256=OaLNvEfs7yypVWJ8zglP5IYWPaSiiSdm6nJV4twzYLM,796
|
|
91
|
+
microsoft/agents/activity/teams/bot_config_auth.py,sha256=MMOqM7uuuEvlKQhY3Fom8lDo3RXyaBUGIJazzJHHQVs,554
|
|
92
|
+
microsoft/agents/activity/teams/cache_info.py,sha256=AwnBAK6kdffzhp40uhs-oJigQZWps9NHcBxFdaH-_Ag,531
|
|
93
|
+
microsoft/agents/activity/teams/cancel_operation_response.py,sha256=ACKR0ifabsVp8wOJdl2I7qzg9mgXLx-xOTiQGZXELrw,618
|
|
94
|
+
microsoft/agents/activity/teams/channel_info.py,sha256=tldwe5AJFutP9SW5jTGgfFFxey3jRlp0RGhYrgo0WsI,570
|
|
95
|
+
microsoft/agents/activity/teams/config_auth_response.py,sha256=ck0ZxPb056n0IBu9r1Icovd_0NpvfTW5tc6phrM_yco,511
|
|
96
|
+
microsoft/agents/activity/teams/config_response.py,sha256=G7vMyzFdSMF3-dLTAhTM8ob-wBDphHyXn8MP21rhu-Q,527
|
|
97
|
+
microsoft/agents/activity/teams/config_response_base.py,sha256=lV2j9-4gzV4_ikY-EcHwFakcmaq4UhJOdz0EQws0GqI,367
|
|
98
|
+
microsoft/agents/activity/teams/config_task_response.py,sha256=7C8idRQJAUEUUr6j9OHI6VnoxJzkG3PYl71cCs1hidg,513
|
|
99
|
+
microsoft/agents/activity/teams/conversation_list.py,sha256=KXcMedIZQY3pwiD9T-eMQqaQZSbjjVYfLk35fM7cxMY,419
|
|
100
|
+
microsoft/agents/activity/teams/file_consent_card.py,sha256=nCCClWrqt8t2t3nYhcDFB2HRHli50esZDF6xLANlBPA,752
|
|
101
|
+
microsoft/agents/activity/teams/file_consent_card_response.py,sha256=A8lygz940-PUxX8wh4A-iQjV16tmg1_k0ZDN33l3wfg,765
|
|
102
|
+
microsoft/agents/activity/teams/file_download_info.py,sha256=j5ws8LaikpetQLj1X4o17YWAMHP5CElq1agyLViTHdY,603
|
|
103
|
+
microsoft/agents/activity/teams/file_info_card.py,sha256=iGs9BztpXQRJCwsg2ygPGUQBupUImuWn5WOriO6U7Ng,490
|
|
104
|
+
microsoft/agents/activity/teams/file_upload_info.py,sha256=ljbY1JMNN-JIY_SCz-sonL8T_JKms1etLx_9Nr-tOvg,714
|
|
105
|
+
microsoft/agents/activity/teams/meeting_details.py,sha256=ECuEfsRRvMvuhz_zDIwlNkn_Sg_D2IkR1_pKHYnex2Q,766
|
|
106
|
+
microsoft/agents/activity/teams/meeting_details_base.py,sha256=7oZJHDBmDxCjBmzv3xPTwtXCzFlYUBNj5sAI1_ijPKE,570
|
|
107
|
+
microsoft/agents/activity/teams/meeting_end_event_details.py,sha256=nSJ-EqFzwRMFcZJpADHj3cqn7byAUra6MxZZA1F5Pxo,376
|
|
108
|
+
microsoft/agents/activity/teams/meeting_event_details.py,sha256=UVzPaGX2Lrlsd_vslF1coV23AQxETq_Nwaz1QTYIXKQ,374
|
|
109
|
+
microsoft/agents/activity/teams/meeting_info.py,sha256=pAMgH2q8aCvMutKDVfxvF-_2NzO-seiO1xY-WDgcNAY,807
|
|
110
|
+
microsoft/agents/activity/teams/meeting_notification.py,sha256=bJ58uClstIBYUIF0dsaRaDJYcPJ1UNul5HQ3J4NX6HM,541
|
|
111
|
+
microsoft/agents/activity/teams/meeting_notification_base.py,sha256=xSrhUjj7bOf5vJHqSNAJL0neAFBay3aWblKjl3wM_Vk,362
|
|
112
|
+
microsoft/agents/activity/teams/meeting_notification_channel_data.py,sha256=hXItBsPXhA2BGu4tjuLab4g8lcpjNhnr0h7DpxGhgOg,495
|
|
113
|
+
microsoft/agents/activity/teams/meeting_notification_recipient_failure_info.py,sha256=ZrXKxogP25asFlcUtuHjjrSNQmHk6xNZyCHOs0X7eqw,696
|
|
114
|
+
microsoft/agents/activity/teams/meeting_notification_response.py,sha256=ZN_NpvrxP32PlxuXzyCD4ysCDH_GQnSV5PS5cgLJMgA,691
|
|
115
|
+
microsoft/agents/activity/teams/meeting_participant_info.py,sha256=9rRrzJjHJoP9dZPE8vd1qtpY97DZw9mude2lI2PrWQM,508
|
|
116
|
+
microsoft/agents/activity/teams/meeting_participants_event_details.py,sha256=WwmtBofu6KbxanUGIx4a9iSmDn_XL4qmI0ujqk4JM9M,471
|
|
117
|
+
microsoft/agents/activity/teams/meeting_stage_surface.py,sha256=lRlxly0KReF035rp6RpMdWj3hySGugfIf33bZyCicQ0,626
|
|
118
|
+
microsoft/agents/activity/teams/meeting_start_event_details.py,sha256=7G2sOEsMUOFAgXLnKq_TVDLzu4yXzjSjzX4T4MtC9qM,388
|
|
119
|
+
microsoft/agents/activity/teams/meeting_tab_icon_surface.py,sha256=jQHBPVE3gR6kEW_-DNNamPEAsDvuDx1vo4PsNuVnlV8,417
|
|
120
|
+
microsoft/agents/activity/teams/message_actions_payload.py,sha256=r8zbKj8RXu-reCZGrGm93uPZnKM8N_SPofRlvoFhtaI,3195
|
|
121
|
+
microsoft/agents/activity/teams/message_actions_payload_app.py,sha256=zt4hnaw4BM0fk4tULRli2-VZPWceJbzPjeU5d6hwqhE,955
|
|
122
|
+
microsoft/agents/activity/teams/message_actions_payload_attachment.py,sha256=IKoEkmCYlL0tMkIhj2yVULOyY9645L-mjU9AIT43wg0,1099
|
|
123
|
+
microsoft/agents/activity/teams/message_actions_payload_body.py,sha256=oZE97w_2J7j1tn1gMxeS1rbIS1ci7oDkXNw-EzRFV5k,495
|
|
124
|
+
microsoft/agents/activity/teams/message_actions_payload_conversation.py,sha256=gLzH9AT-R4TT4owErcrlfj9WzxguRuAGmnG-i6sdHzw,644
|
|
125
|
+
microsoft/agents/activity/teams/message_actions_payload_from.py,sha256=IRD_Kz1IbrlwqcmqjJyMHVegVfmly4poB8GgIG5kd_k,1061
|
|
126
|
+
microsoft/agents/activity/teams/message_actions_payload_mention.py,sha256=vZDVyoknt01mQt6zEsrh7ArPb8rzdBcs8IqRWEVKeb8,779
|
|
127
|
+
microsoft/agents/activity/teams/message_actions_payload_reaction.py,sha256=_hUy5bbTbXsfobLjOD7YifvcJ5gKVv7nWDoEqYfzFh8,894
|
|
128
|
+
microsoft/agents/activity/teams/message_actions_payload_user.py,sha256=XShr0xGc-8cYhu1xPQDjXaa-Zr-7vQFaWToyayHl9qg,882
|
|
129
|
+
microsoft/agents/activity/teams/messaging_extension_action.py,sha256=ktcmD7ktsADEN3PfxdTI4rNNSqNZXJC_CFPz_-CPkKY,1537
|
|
130
|
+
microsoft/agents/activity/teams/messaging_extension_action_response.py,sha256=CVsox4boihpfSAMjWR-2W8YOEkcDVpgfAcYa8iXGUTA,881
|
|
131
|
+
microsoft/agents/activity/teams/messaging_extension_attachment.py,sha256=zhZh8Sv6TElaeqZZ6Pnk4k_iyLkZrz-Q_qtZeaOPzbo,933
|
|
132
|
+
microsoft/agents/activity/teams/messaging_extension_parameter.py,sha256=CaBXoluvtMorlf87xPO94qQN40XNXQlTMtwPJlZuuZg,406
|
|
133
|
+
microsoft/agents/activity/teams/messaging_extension_query.py,sha256=6Mo14r0KZMlbGnSfFNk2Cd39v7czjbr_8CCnV4OwC-E,1014
|
|
134
|
+
microsoft/agents/activity/teams/messaging_extension_query_options.py,sha256=PRi4QxJNp0BF8f61PfwOniH3Aldg2EZP05z1hCxYIpM,413
|
|
135
|
+
microsoft/agents/activity/teams/messaging_extension_response.py,sha256=z69aU_wzlPuvjVn0c1MP7coUpX_TRanUoSNs-yJYa84,706
|
|
136
|
+
microsoft/agents/activity/teams/messaging_extension_result.py,sha256=XB-5wVTvrv5Tx3928U3dPiMeR_S2CZqPCKbHW5X7ez0,1461
|
|
137
|
+
microsoft/agents/activity/teams/messaging_extension_suggested_action.py,sha256=8JiMl15dVGqgrdS2H82zc3Pr1qDbf5k1MhUA76ZGUM8,430
|
|
138
|
+
microsoft/agents/activity/teams/notification_info.py,sha256=1gY97Dsbjx5fvPOV3viUjOk3Qvx-r_clprNY4Q8eAQs,764
|
|
139
|
+
microsoft/agents/activity/teams/o365_connector_card.py,sha256=wAzj5-5LM9i2JA821SHO1UtUTaYN9WaNwqPmZfOKcDE,1187
|
|
140
|
+
microsoft/agents/activity/teams/o365_connector_card_action_base.py,sha256=TKl6QzOw-nNSV6TX2Ezwkl1tjwuQ0PeKiCVQ25-31b8,629
|
|
141
|
+
microsoft/agents/activity/teams/o365_connector_card_action_card.py,sha256=RF8a4vFMc7Q1B4NSsGI6FWTQOfJ5UjrWSHkVwE_3xsY,1143
|
|
142
|
+
microsoft/agents/activity/teams/o365_connector_card_action_query.py,sha256=J-cyiiRQadNacaNx3FcV5xzrz6PyECvXkE9japc6h1c,346
|
|
143
|
+
microsoft/agents/activity/teams/o365_connector_card_date_input.py,sha256=AdzLPe6_KmAf4TP0UNrIxXIBkbb4MSsJ4b1dlcWUwXA,1038
|
|
144
|
+
microsoft/agents/activity/teams/o365_connector_card_fact.py,sha256=D633JwrOQmHAeCHL7I00Gg6PpOXIsCkOIfRlvYgF7c4,392
|
|
145
|
+
microsoft/agents/activity/teams/o365_connector_card_http_post.py,sha256=hv-GQm1q-JeWMXTpDlCpJJVIzlsSiC9h68oFiLl2flY,710
|
|
146
|
+
microsoft/agents/activity/teams/o365_connector_card_image.py,sha256=TgmEeGUy9OWDO2O9TvyLVaz9E2kSdBAVQnuZCDVGMIs,432
|
|
147
|
+
microsoft/agents/activity/teams/o365_connector_card_input_base.py,sha256=EKnH76_SPTvCU0H8kElhwWdlM11DfApLpTA1fS2onUA,991
|
|
148
|
+
microsoft/agents/activity/teams/o365_connector_card_multichoice_input.py,sha256=aPy-kYMaKxA-lQetFrEC21ZjeMYZNz_547in5lDCvU4,1592
|
|
149
|
+
microsoft/agents/activity/teams/o365_connector_card_multichoice_input_choice.py,sha256=mWt5GbDKoh4Xx--qdvVsgcgEUZRl8qMJYT8XPFknMd0,438
|
|
150
|
+
microsoft/agents/activity/teams/o365_connector_card_open_uri.py,sha256=qH9NHKsnGJFOL1kqiPXOYSaPEb32vj4Zp01q15mI74Y,846
|
|
151
|
+
microsoft/agents/activity/teams/o365_connector_card_open_uri_target.py,sha256=nMROdPp1CECO1KrFo6jFkBVKEP9TYnrsxmJWa2dGsBU,448
|
|
152
|
+
microsoft/agents/activity/teams/o365_connector_card_section.py,sha256=UuVT50ral2aXYC4hVwFeJ5yTKGCe3g1OBbh5RBucY7g,1706
|
|
153
|
+
microsoft/agents/activity/teams/o365_connector_card_text_input.py,sha256=YXWsC_YtUttZlOFA4D8wADNLmUYGHXwSyajFZij7Rog,1120
|
|
154
|
+
microsoft/agents/activity/teams/o365_connector_card_view_action.py,sha256=06X2OhFxx3Lsmlvo9VxfOdS0GxgUfuksVd9oc72JbXE,732
|
|
155
|
+
microsoft/agents/activity/teams/on_behalf_of.py,sha256=2vEpGiPN5CGV9D-3ARN22ag_gqfnduXt94hfG-Pzjck,683
|
|
156
|
+
microsoft/agents/activity/teams/read_receipt_info.py,sha256=qIm_0YPM3VcoFM0XH0OCSOfnD9_W7_bSnZkYwSRIVU0,1892
|
|
157
|
+
microsoft/agents/activity/teams/signin_state_verification_query.py,sha256=AYgOvYThkXzIrD7ZsZ2MazgVMwwsf4ZWYwcT2DkdfIc,355
|
|
158
|
+
microsoft/agents/activity/teams/surface.py,sha256=EE8gJVcAMXS_JMUeM1aeoC7bOMhHxQ85MD6TMFMvptA,419
|
|
159
|
+
microsoft/agents/activity/teams/tab_context.py,sha256=C5QCnmoBHQjzfMH1PhdF9HTgxUiZ8rhd6XpxvKfvuDA,338
|
|
160
|
+
microsoft/agents/activity/teams/tab_entity_context.py,sha256=ZEgYTIC01qFJ37FJvCEOzK73PSB-wBtPWN2jjtebGcs,365
|
|
161
|
+
microsoft/agents/activity/teams/tab_request.py,sha256=AS0SyD3eYqqR6N5tTYDknD8_zXC-AGDX9G7Qeriljvw,739
|
|
162
|
+
microsoft/agents/activity/teams/tab_response.py,sha256=hQhFkU8DB5BTLxrUgu6bKck4O0tNJsln-IKe1wk2Fzc,425
|
|
163
|
+
microsoft/agents/activity/teams/tab_response_card.py,sha256=eevi3foLXv9ovPejfhMSF3G5GINqLN69ZRZ9qDidcWo,346
|
|
164
|
+
microsoft/agents/activity/teams/tab_response_cards.py,sha256=KBiUMKuJhlFClPyl2KmsbSVS01AQ02KdeJYHVIiLG_s,490
|
|
165
|
+
microsoft/agents/activity/teams/tab_response_payload.py,sha256=2-nGmu5tSrYdne8bz8-w8hun-tPMhgTtztRlLRcUIbk,932
|
|
166
|
+
microsoft/agents/activity/teams/tab_submit.py,sha256=8u8cz4hsg76wNCudyykyh2EkZL_6H5WjKjeJlkRWbBE,828
|
|
167
|
+
microsoft/agents/activity/teams/tab_submit_data.py,sha256=GtA2NkE_LFhLhFKQujl3yP9QB_bbFU7vgDZYh1uUAsY,542
|
|
168
|
+
microsoft/agents/activity/teams/tab_suggested_actions.py,sha256=1E2sb8sMdvW5MJH21gOb46_0tVdLwAlVDiQI1oNVNf0,468
|
|
169
|
+
microsoft/agents/activity/teams/targeted_meeting_notification.py,sha256=Qjdo4J8floVil5qMKQPvE07C8GLmub_RnYrkkxTQobY,777
|
|
170
|
+
microsoft/agents/activity/teams/targeted_meeting_notification_value.py,sha256=VdK3-8xntAGYlnHuCyUdN1KxM-8CQlh9KpkxFt7wP-4,567
|
|
171
|
+
microsoft/agents/activity/teams/task_module_card_response.py,sha256=XinpZw5b6xUsTjslpG9QVqTuIfQwemQwxgEj8UA3KcI,407
|
|
172
|
+
microsoft/agents/activity/teams/task_module_continue_response.py,sha256=CWKwFD-Vgk4hGnIGuq_c9M6ct9QIvp4zG0ylxNlb5Ik,561
|
|
173
|
+
microsoft/agents/activity/teams/task_module_message_response.py,sha256=TAXmozW-U8OPst5GSXg2nFcJtMtO3wF-6voU_nx5gwg,482
|
|
174
|
+
microsoft/agents/activity/teams/task_module_request.py,sha256=Zl5gJi55jz1-pbTEXG-BJMR4wktOtq01tpqpMFlM-to,887
|
|
175
|
+
microsoft/agents/activity/teams/task_module_request_context.py,sha256=HaKRkQYUhm414D_snxUlj9Xw7tJaT3JzZKAYuTrCHLw,368
|
|
176
|
+
microsoft/agents/activity/teams/task_module_response.py,sha256=c0Th_IUPXDzDwKmkTU3pR0v-Szd1vmZB4iYglLnkkho,693
|
|
177
|
+
microsoft/agents/activity/teams/task_module_response_base.py,sha256=xISwRTRS9jaOvV6ZQm6AVb9iM5JNdrP8YU7zcM1dxjc,392
|
|
178
|
+
microsoft/agents/activity/teams/task_module_task_info.py,sha256=hjqQK2ihIw0lnNDSqQXp6Bix0qoEqDzdmLL8dT0DP0w,803
|
|
179
|
+
microsoft/agents/activity/teams/team_details.py,sha256=dEgqvQ_I6PhxvcSQS1zJfRsOLgDeiD0VN4Rz9TqaTx8,816
|
|
180
|
+
microsoft/agents/activity/teams/team_info.py,sha256=AsYyQwjOBA6C2sx-c54jJ-6ZVPBnimIfhQ7C_DWOV6c,469
|
|
181
|
+
microsoft/agents/activity/teams/teams_batch_operation_response.py,sha256=pzjiBAEYSCy92sNjNrLRqEyoVHVZ-1PHocPjNwcIiM4,622
|
|
182
|
+
microsoft/agents/activity/teams/teams_channel_account.py,sha256=sNxt0AopWu0r2UdF78P8X6Xcy4g6hK7c3ndo2Goe05A,1359
|
|
183
|
+
microsoft/agents/activity/teams/teams_channel_data.py,sha256=HOhdGa8hH6lnJwJRSH6NYScS87Lp9KQXa7sexktsLzc,1700
|
|
184
|
+
microsoft/agents/activity/teams/teams_channel_data_settings.py,sha256=7T8duAUjfAazAuPaANGRZ_rpzAcYnEEfvzzdqxO1kuU,454
|
|
185
|
+
microsoft/agents/activity/teams/teams_meeting_info.py,sha256=zpCeeYxTNcxYdWeTjE1yLhiR0dkeO8Ds1uI0wh21mRc,310
|
|
186
|
+
microsoft/agents/activity/teams/teams_meeting_member.py,sha256=i6MR1m_Ab4uLRhgjha2uPY3Kj_8zf88AggmbH_GX7XY,573
|
|
187
|
+
microsoft/agents/activity/teams/teams_meeting_participant.py,sha256=Y7T2WFR4LUdT8mXEarv1fhPk_5ZjunPzX4w_r4gvfrc,950
|
|
188
|
+
microsoft/agents/activity/teams/teams_member.py,sha256=vRcLRHy6wTfH7DP6k6QbrKkORWcO76uhDG9zvUMm09g,316
|
|
189
|
+
microsoft/agents/activity/teams/teams_paged_members_result.py,sha256=cG4eKHjA0u1EMioC2ErVpydnoPJrtTDcdhdzYET9xto,555
|
|
190
|
+
microsoft/agents/activity/teams/tenant_info.py,sha256=h8OxMd6LD5lWVj_LK2ut8z7SB0I7Gx74W1wwEiYOzXk,296
|
|
191
|
+
microsoft/agents/activity/teams/user_meeting_details.py,sha256=tvk2CWYf7Bo-DhK8NSojhanJDXEOGVrKXxJDca03CAo,467
|
|
192
|
+
microsoft_agents_activity-0.0.0.dist-info/METADATA,sha256=d_Axtkksv1oDYzRMLrlXCfMm2FhNjMWi9t_VQtZr8L4,408
|
|
193
|
+
microsoft_agents_activity-0.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
194
|
+
microsoft_agents_activity-0.0.0.dist-info/top_level.txt,sha256=egwWDmpnNBTGerc55Oa6VVW9hTKdtxFjHWHywqmVMpM,10
|
|
195
|
+
microsoft_agents_activity-0.0.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
microsoft
|