microsoft-agents-activity 0.4.0.dev18__py3-none-any.whl → 0.5.0.dev3__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 +2 -0
- microsoft_agents/activity/_load_configuration.py +3 -0
- microsoft_agents/activity/_model_utils.py +3 -0
- microsoft_agents/activity/_type_aliases.py +3 -0
- microsoft_agents/activity/action_types.py +3 -0
- microsoft_agents/activity/activity.py +3 -0
- microsoft_agents/activity/activity_event_names.py +3 -0
- microsoft_agents/activity/activity_importance.py +3 -0
- microsoft_agents/activity/activity_types.py +3 -0
- microsoft_agents/activity/adaptive_card_invoke_action.py +3 -0
- microsoft_agents/activity/adaptive_card_invoke_response.py +3 -0
- microsoft_agents/activity/adaptive_card_invoke_value.py +3 -0
- microsoft_agents/activity/agents_model.py +3 -0
- microsoft_agents/activity/animation_card.py +3 -0
- microsoft_agents/activity/attachment.py +3 -0
- microsoft_agents/activity/attachment_data.py +3 -0
- microsoft_agents/activity/attachment_info.py +3 -0
- microsoft_agents/activity/attachment_layout_types.py +3 -0
- microsoft_agents/activity/attachment_view.py +3 -0
- microsoft_agents/activity/audio_card.py +3 -0
- microsoft_agents/activity/basic_card.py +3 -0
- microsoft_agents/activity/caller_id_constants.py +3 -0
- microsoft_agents/activity/card_action.py +3 -0
- microsoft_agents/activity/card_image.py +3 -0
- microsoft_agents/activity/channel_account.py +3 -0
- microsoft_agents/activity/channel_adapter_protocol.py +3 -0
- microsoft_agents/activity/channels.py +2 -2
- microsoft_agents/activity/contact_relation_update_action_types.py +3 -0
- microsoft_agents/activity/conversation_account.py +3 -0
- microsoft_agents/activity/conversation_members.py +3 -0
- microsoft_agents/activity/conversation_parameters.py +3 -0
- microsoft_agents/activity/conversation_reference.py +3 -0
- microsoft_agents/activity/conversation_resource_response.py +3 -0
- microsoft_agents/activity/conversation_update_types.py +3 -0
- microsoft_agents/activity/conversations_result.py +3 -0
- microsoft_agents/activity/delivery_modes.py +3 -0
- microsoft_agents/activity/end_of_conversation_codes.py +3 -0
- microsoft_agents/activity/entity/entity.py +3 -0
- microsoft_agents/activity/entity/geo_coordinates.py +3 -0
- microsoft_agents/activity/entity/mention.py +3 -0
- microsoft_agents/activity/entity/place.py +3 -0
- microsoft_agents/activity/entity/thing.py +3 -0
- microsoft_agents/activity/error.py +3 -0
- microsoft_agents/activity/error_response.py +3 -0
- microsoft_agents/activity/expected_replies.py +3 -0
- microsoft_agents/activity/fact.py +3 -0
- microsoft_agents/activity/hero_card.py +3 -0
- microsoft_agents/activity/inner_http_error.py +3 -0
- microsoft_agents/activity/installation_update_action_types.py +3 -0
- microsoft_agents/activity/invoke_response.py +3 -0
- microsoft_agents/activity/media_card.py +3 -0
- microsoft_agents/activity/media_event_value.py +3 -0
- microsoft_agents/activity/media_url.py +3 -0
- microsoft_agents/activity/message_reaction.py +3 -0
- microsoft_agents/activity/message_reaction_types.py +3 -0
- microsoft_agents/activity/message_update_types.py +3 -0
- microsoft_agents/activity/oauth_card.py +3 -0
- microsoft_agents/activity/paged_members_result.py +3 -0
- microsoft_agents/activity/receipt_card.py +3 -0
- microsoft_agents/activity/receipt_item.py +3 -0
- microsoft_agents/activity/resource_response.py +3 -0
- microsoft_agents/activity/role_types.py +3 -0
- microsoft_agents/activity/semantic_action.py +3 -0
- microsoft_agents/activity/semantic_actions_states.py +3 -0
- microsoft_agents/activity/sign_in_resource.py +3 -0
- microsoft_agents/activity/signin_card.py +3 -0
- microsoft_agents/activity/suggested_actions.py +3 -0
- microsoft_agents/activity/text_format_types.py +3 -0
- microsoft_agents/activity/text_highlight.py +3 -0
- microsoft_agents/activity/thumbnail_card.py +3 -0
- microsoft_agents/activity/thumbnail_url.py +3 -0
- microsoft_agents/activity/token_exchange_invoke_request.py +3 -0
- microsoft_agents/activity/token_exchange_invoke_response.py +3 -0
- microsoft_agents/activity/token_exchange_resource.py +3 -0
- microsoft_agents/activity/token_exchange_state.py +3 -0
- microsoft_agents/activity/token_or_sign_in_resource_response.py +21 -0
- microsoft_agents/activity/token_post_resource.py +3 -0
- microsoft_agents/activity/token_request.py +3 -0
- microsoft_agents/activity/transcript.py +3 -0
- microsoft_agents/activity/turn_context_protocol.py +3 -0
- microsoft_agents/activity/video_card.py +3 -0
- {microsoft_agents_activity-0.4.0.dev18.dist-info → microsoft_agents_activity-0.5.0.dev3.dist-info}/METADATA +1 -1
- {microsoft_agents_activity-0.4.0.dev18.dist-info → microsoft_agents_activity-0.5.0.dev3.dist-info}/RECORD +85 -84
- {microsoft_agents_activity-0.4.0.dev18.dist-info → microsoft_agents_activity-0.5.0.dev3.dist-info}/WHEEL +0 -0
- {microsoft_agents_activity-0.4.0.dev18.dist-info → microsoft_agents_activity-0.5.0.dev3.dist-info}/top_level.txt +0 -0
|
@@ -62,6 +62,7 @@ from .thumbnail_url import ThumbnailUrl
|
|
|
62
62
|
from .token_exchange_invoke_request import TokenExchangeInvokeRequest
|
|
63
63
|
from .token_exchange_invoke_response import TokenExchangeInvokeResponse
|
|
64
64
|
from .token_exchange_state import TokenExchangeState
|
|
65
|
+
from .token_or_sign_in_resource_response import TokenOrSignInResourceResponse
|
|
65
66
|
from .token_request import TokenRequest
|
|
66
67
|
from .token_response import TokenResponse
|
|
67
68
|
from .token_status import TokenStatus
|
|
@@ -185,4 +186,5 @@ __all__ = [
|
|
|
185
186
|
"load_configuration_from_env",
|
|
186
187
|
"ChannelAdapterProtocol",
|
|
187
188
|
"TurnContextProtocol",
|
|
189
|
+
"TokenOrSignInResourceResponse",
|
|
188
190
|
]
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2
|
+
# Licensed under the MIT License.
|
|
3
|
+
|
|
1
4
|
from .adaptive_card_invoke_action import AdaptiveCardInvokeAction
|
|
2
5
|
from .token_exchange_invoke_request import TokenExchangeInvokeRequest
|
|
3
6
|
from .agents_model import AgentsModel
|
|
@@ -74,7 +74,7 @@ class Channels(str, Enum):
|
|
|
74
74
|
|
|
75
75
|
Args:
|
|
76
76
|
channel_id (str): The Channel to check the if Suggested Actions are supported in.
|
|
77
|
-
button_cnt (int,
|
|
77
|
+
button_cnt (int, Optional): Defaults to 100. The number of Suggested Actions to check for the Channel.
|
|
78
78
|
|
|
79
79
|
Returns:
|
|
80
80
|
bool: True if the Channel supports the button_cnt total Suggested Actions, False if the Channel does not
|
|
@@ -107,7 +107,7 @@ class Channels(str, Enum):
|
|
|
107
107
|
|
|
108
108
|
Args:
|
|
109
109
|
channel_id (str): The Channel to check if the Card Actions are supported in.
|
|
110
|
-
button_cnt (int,
|
|
110
|
+
button_cnt (int, Optional): Defaults to 100. The number of Card Actions to check for the Channel.
|
|
111
111
|
|
|
112
112
|
Returns:
|
|
113
113
|
bool: True if the Channel supports the button_cnt total Card Actions, False if the Channel does not support
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2
|
+
# Licensed under the MIT License.
|
|
3
|
+
|
|
4
|
+
from .agents_model import AgentsModel
|
|
5
|
+
from .token_response import TokenResponse
|
|
6
|
+
from .sign_in_resource import SignInResource
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class TokenOrSignInResourceResponse(AgentsModel):
|
|
10
|
+
"""Represents the response containing either a token or a sign-in resource.
|
|
11
|
+
|
|
12
|
+
One of the two properties should be set (if returned from the 'getTokenOrSignInResource' endpoint), not both.
|
|
13
|
+
|
|
14
|
+
:param token_response: The token response.
|
|
15
|
+
:type token_response: TokenResponse
|
|
16
|
+
:param sign_in_resource: The sign-in resource.
|
|
17
|
+
:type sign_in_resource: SignInResource
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
token_response: TokenResponse = None
|
|
21
|
+
sign_in_resource: SignInResource = None
|
|
@@ -1,89 +1,90 @@
|
|
|
1
|
-
microsoft_agents/activity/__init__.py,sha256=
|
|
2
|
-
microsoft_agents/activity/_load_configuration.py,sha256=
|
|
3
|
-
microsoft_agents/activity/_model_utils.py,sha256=
|
|
4
|
-
microsoft_agents/activity/_type_aliases.py,sha256=
|
|
5
|
-
microsoft_agents/activity/action_types.py,sha256=
|
|
6
|
-
microsoft_agents/activity/activity.py,sha256=
|
|
7
|
-
microsoft_agents/activity/activity_event_names.py,sha256=
|
|
8
|
-
microsoft_agents/activity/activity_importance.py,sha256=
|
|
9
|
-
microsoft_agents/activity/activity_types.py,sha256=
|
|
10
|
-
microsoft_agents/activity/adaptive_card_invoke_action.py,sha256=
|
|
11
|
-
microsoft_agents/activity/adaptive_card_invoke_response.py,sha256=
|
|
12
|
-
microsoft_agents/activity/adaptive_card_invoke_value.py,sha256=
|
|
13
|
-
microsoft_agents/activity/agents_model.py,sha256=
|
|
14
|
-
microsoft_agents/activity/animation_card.py,sha256=
|
|
15
|
-
microsoft_agents/activity/attachment.py,sha256=
|
|
16
|
-
microsoft_agents/activity/attachment_data.py,sha256=
|
|
17
|
-
microsoft_agents/activity/attachment_info.py,sha256=
|
|
18
|
-
microsoft_agents/activity/attachment_layout_types.py,sha256=
|
|
19
|
-
microsoft_agents/activity/attachment_view.py,sha256
|
|
20
|
-
microsoft_agents/activity/audio_card.py,sha256=
|
|
21
|
-
microsoft_agents/activity/basic_card.py,sha256=
|
|
22
|
-
microsoft_agents/activity/caller_id_constants.py,sha256=
|
|
23
|
-
microsoft_agents/activity/card_action.py,sha256
|
|
24
|
-
microsoft_agents/activity/card_image.py,sha256=
|
|
25
|
-
microsoft_agents/activity/channel_account.py,sha256=
|
|
26
|
-
microsoft_agents/activity/channel_adapter_protocol.py,sha256=
|
|
27
|
-
microsoft_agents/activity/channels.py,sha256=
|
|
28
|
-
microsoft_agents/activity/contact_relation_update_action_types.py,sha256=
|
|
29
|
-
microsoft_agents/activity/conversation_account.py,sha256=
|
|
30
|
-
microsoft_agents/activity/conversation_members.py,sha256=
|
|
31
|
-
microsoft_agents/activity/conversation_parameters.py,sha256=
|
|
32
|
-
microsoft_agents/activity/conversation_reference.py,sha256=
|
|
33
|
-
microsoft_agents/activity/conversation_resource_response.py,sha256=
|
|
34
|
-
microsoft_agents/activity/conversation_update_types.py,sha256=
|
|
35
|
-
microsoft_agents/activity/conversations_result.py,sha256=
|
|
36
|
-
microsoft_agents/activity/delivery_modes.py,sha256=
|
|
37
|
-
microsoft_agents/activity/end_of_conversation_codes.py,sha256=
|
|
38
|
-
microsoft_agents/activity/error.py,sha256=
|
|
39
|
-
microsoft_agents/activity/error_response.py,sha256=
|
|
40
|
-
microsoft_agents/activity/expected_replies.py,sha256=
|
|
41
|
-
microsoft_agents/activity/fact.py,sha256=
|
|
42
|
-
microsoft_agents/activity/hero_card.py,sha256=
|
|
43
|
-
microsoft_agents/activity/inner_http_error.py,sha256=
|
|
1
|
+
microsoft_agents/activity/__init__.py,sha256=YOcBqmggcRMTr1JGEswCBMENn_CW2crgsGQY1dr2Elo,6093
|
|
2
|
+
microsoft_agents/activity/_load_configuration.py,sha256=ztmv1wOBDE9hUYPPzWexc-qi0eiBmxnay1skJpKVEcY,1125
|
|
3
|
+
microsoft_agents/activity/_model_utils.py,sha256=gUAKCOl98jA9tt95o5G7LoMuHgROvrW6lY9s0CzQu6k,2004
|
|
4
|
+
microsoft_agents/activity/_type_aliases.py,sha256=kP5tYxEKSgcgBT3bucdluVVxxopwrUaGqKL7X_TQ0Og,229
|
|
5
|
+
microsoft_agents/activity/action_types.py,sha256=nslx3hvQAd120NPdXZXdprwdjj3I3d4MWXV1b-Igr_o,419
|
|
6
|
+
microsoft_agents/activity/activity.py,sha256=hLtPg9-nt7o0M_jUzkiAw7EfNOlqkAbvvBEDDt-cjCA,28002
|
|
7
|
+
microsoft_agents/activity/activity_event_names.py,sha256=dmtE1w50nnemTC_s1QG7IqTbnocpiczK_CG31JpgoJ4,254
|
|
8
|
+
microsoft_agents/activity/activity_importance.py,sha256=cRIlyz8EjmztPmfcgdqZ6Csp6Vp2rQhXt4ZWIDXdt_s,212
|
|
9
|
+
microsoft_agents/activity/activity_types.py,sha256=dm4vTVSoa-8_aPY_kZuU6C_FWQAURgZRassR1o8o9qQ,762
|
|
10
|
+
microsoft_agents/activity/adaptive_card_invoke_action.py,sha256=IW-XBE7bF4s9Tx8vr1vwSXOwv4R6VpVBqiRWzgX2aKw,874
|
|
11
|
+
microsoft_agents/activity/adaptive_card_invoke_response.py,sha256=Uu5pJ9CkPAla1fNQ6xZc5kKt8_aMVSVv427taNsJzfI,735
|
|
12
|
+
microsoft_agents/activity/adaptive_card_invoke_value.py,sha256=tmyiEarxqjjnu8k06mh9ahjuPLha2YCgARLWdzeK35g,1134
|
|
13
|
+
microsoft_agents/activity/agents_model.py,sha256=VkuOFU4Z7M9NzJ00OiXqFGiyTmcHKjvsSzVvwVo27-k,1585
|
|
14
|
+
microsoft_agents/activity/animation_card.py,sha256=SoArDB1mRl3LjNNNAnMsTivdsYzmNyhbndLoYUQdcHk,2089
|
|
15
|
+
microsoft_agents/activity/attachment.py,sha256=A4VIApR6E2agWJoFEVpDXgbxGHqe2aAqnr8CnfVoxlU,822
|
|
16
|
+
microsoft_agents/activity/attachment_data.py,sha256=j3Lbht8VyotEovSrthU9x5H0tGXdAj4HyPsXPbZxqP8,671
|
|
17
|
+
microsoft_agents/activity/attachment_info.py,sha256=hCN2EbW-cIygBiZ2-6fSi8lvoF7DKhsYkwYHu7-vSzE,631
|
|
18
|
+
microsoft_agents/activity/attachment_layout_types.py,sha256=rzj01fXS1woVc__Mlfx_JsUdpIevxBhKycC5Bm2x4qg,203
|
|
19
|
+
microsoft_agents/activity/attachment_view.py,sha256=BVDzJAlgSqIrbNWYMnlttaefXTwx_MNLCn9ER2CRCFE,440
|
|
20
|
+
microsoft_agents/activity/audio_card.py,sha256=EVNOZ-Pgr3NVpQvNRjkQSq18TfBuW9_N_9qOP_F6rb8,2048
|
|
21
|
+
microsoft_agents/activity/basic_card.py,sha256=vJ8NcMCmGyNp_LTo1ErE9xocO_e_zP8BL-ekVltal-I,1051
|
|
22
|
+
microsoft_agents/activity/caller_id_constants.py,sha256=OPUjKk3iFb-5oBcFUPpgHMYwvLPaPuz5iJNzX77a4gU,315
|
|
23
|
+
microsoft_agents/activity/card_action.py,sha256=-c9VLUNVrRx1wYCSiCueZRvWOO5nWOA6xrGh6gHs7i0,1509
|
|
24
|
+
microsoft_agents/activity/card_image.py,sha256=2DCOErbmGm8dRhJrYhxDweQgH0ys-5_cRISxgJ7hx9k,640
|
|
25
|
+
microsoft_agents/activity/channel_account.py,sha256=2M5K1NJl1GTttYNI65OQBvxLcgGzx9B7bJhjdTHRsgo,1217
|
|
26
|
+
microsoft_agents/activity/channel_adapter_protocol.py,sha256=CQU9FhsR5UCzRib8DJVj9DO0131QB9Kn5euhHRKGCf4,2135
|
|
27
|
+
microsoft_agents/activity/channels.py,sha256=UC5MDF5C4PbW29rJhtXzfjA-4y4VqPXi1nK8oCmHM0o,4560
|
|
28
|
+
microsoft_agents/activity/contact_relation_update_action_types.py,sha256=6RIJbnVmr8agTPYYw84xTH9rx88QE0dvMbNwC0cpcG0,208
|
|
29
|
+
microsoft_agents/activity/conversation_account.py,sha256=fOU9PgxnH8NsHIZDiESU22Ph3oEE0PMnLbKYuz3vgYA,1536
|
|
30
|
+
microsoft_agents/activity/conversation_members.py,sha256=6-kBKO3W7rtpG1sbhKX5T6FDBDlQDzXdIIpjQALw1K4,552
|
|
31
|
+
microsoft_agents/activity/conversation_parameters.py,sha256=JwsoZeml90q8W_ngYBao218-q1FIMSAbIf3yUXz3yAg,1475
|
|
32
|
+
microsoft_agents/activity/conversation_reference.py,sha256=1Iyx4JeaZOWZvbLS0L1yYwnwRKZASzOASrFXYhyLqEo,2452
|
|
33
|
+
microsoft_agents/activity/conversation_resource_response.py,sha256=du_lE0AFPo_PEWj2a5gilsYFD8wfDidPh9LmUHQJVyA,652
|
|
34
|
+
microsoft_agents/activity/conversation_update_types.py,sha256=l57bE-oXKEYyrTLPmcYCioZD_VSfXQLUl9l29Pkw_7w,568
|
|
35
|
+
microsoft_agents/activity/conversations_result.py,sha256=GK_l5ou-veMnM7eQgiTQ1eUnf52KKEi6okUzf_ybeNc,617
|
|
36
|
+
microsoft_agents/activity/delivery_modes.py,sha256=7-etKNmYpfx5IU_q5MhqN04eEJw6UmS3tkcpI1ngvFk,294
|
|
37
|
+
microsoft_agents/activity/end_of_conversation_codes.py,sha256=kxSmn6yLnbM2obpjC1CdmAzXy0pWJGX5DcjuvmbZqFc,396
|
|
38
|
+
microsoft_agents/activity/error.py,sha256=FcnHfuqSI8Gebts6ygm1hOC0YXzJrzMAyzGWVz9y-yw,646
|
|
39
|
+
microsoft_agents/activity/error_response.py,sha256=w159KeFGZCYYt7quV5XwgiKZNdRDI6dzkZTeCqIWzko,339
|
|
40
|
+
microsoft_agents/activity/expected_replies.py,sha256=aNLOTBqaYDPukcEbCsZwWiWGQ0CWqFvzEF9_EeS4-Gk,438
|
|
41
|
+
microsoft_agents/activity/fact.py,sha256=pBxUcHBiw6IxmivJVFDWMV0ox5DvHI43zwadlz78mqc,644
|
|
42
|
+
microsoft_agents/activity/hero_card.py,sha256=MTmP813-R-p4oEm5wuN15hHkDz32mtwcrHPhUq8wPk0,1083
|
|
43
|
+
microsoft_agents/activity/inner_http_error.py,sha256=M-TT0YgX9VcuxGL-H2V7GT61JoGSgAdLj-f3MdYBs5s,428
|
|
44
44
|
microsoft_agents/activity/input_hints.py,sha256=14us7b1Km-uApAQUpjC5VYnm12QaD-NhpwBQZwwRg0o,263
|
|
45
|
-
microsoft_agents/activity/installation_update_action_types.py,sha256=
|
|
46
|
-
microsoft_agents/activity/invoke_response.py,sha256=
|
|
47
|
-
microsoft_agents/activity/media_card.py,sha256=
|
|
48
|
-
microsoft_agents/activity/media_event_value.py,sha256=
|
|
49
|
-
microsoft_agents/activity/media_url.py,sha256=
|
|
50
|
-
microsoft_agents/activity/message_reaction.py,sha256=
|
|
51
|
-
microsoft_agents/activity/message_reaction_types.py,sha256=
|
|
52
|
-
microsoft_agents/activity/message_update_types.py,sha256=
|
|
53
|
-
microsoft_agents/activity/oauth_card.py,sha256=
|
|
54
|
-
microsoft_agents/activity/paged_members_result.py,sha256=
|
|
55
|
-
microsoft_agents/activity/receipt_card.py,sha256=
|
|
56
|
-
microsoft_agents/activity/receipt_item.py,sha256=
|
|
57
|
-
microsoft_agents/activity/resource_response.py,sha256=
|
|
58
|
-
microsoft_agents/activity/role_types.py,sha256=
|
|
59
|
-
microsoft_agents/activity/semantic_action.py,sha256=
|
|
60
|
-
microsoft_agents/activity/semantic_actions_states.py,sha256=
|
|
45
|
+
microsoft_agents/activity/installation_update_action_types.py,sha256=vpvepQ9IbuYWcjOa2d4ruG0PWIUb15Z4hZsaU6wl8Sw,205
|
|
46
|
+
microsoft_agents/activity/invoke_response.py,sha256=VIfYldqx0NKb8N8NtVh-GBUbkOsg3C_KTSMwh07FQnY,956
|
|
47
|
+
microsoft_agents/activity/media_card.py,sha256=g2N1a6es9En4EnhQ_NwLumIVZvdS-Xlo2hDWXjKaYYM,2048
|
|
48
|
+
microsoft_agents/activity/media_event_value.py,sha256=FhyXD-n8SGPK7X0qUc30USFrcFOXSAOZovA_5ioWgmQ,409
|
|
49
|
+
microsoft_agents/activity/media_url.py,sha256=9EyYu4V4winHoEl_uz8SsLObiGXA-DVSBSln3S7GA08,496
|
|
50
|
+
microsoft_agents/activity/message_reaction.py,sha256=qynq4661vyDlAhejLtqUa042Zajt0JrP3UWvQcLaNRY,439
|
|
51
|
+
microsoft_agents/activity/message_reaction_types.py,sha256=bSZxOLXT9R76EC9BI2PJwwg6IXgBJY8b9bfLUnuGinI,314
|
|
52
|
+
microsoft_agents/activity/message_update_types.py,sha256=DOA-Y8bzj2uwr75cFIgbupnocHRfA9u_iVM5P3yXUac,276
|
|
53
|
+
microsoft_agents/activity/oauth_card.py,sha256=Y-dJ6sRnoUTNibWRve6zIjG_P8Y2lJJJ62mVawsDr1E,952
|
|
54
|
+
microsoft_agents/activity/paged_members_result.py,sha256=l85Qw32maNTxonaPS_vGqoq7p-wXLyEP2N_D_XSOguM,568
|
|
55
|
+
microsoft_agents/activity/receipt_card.py,sha256=tHoG7Lzpr82o2WhP2oBcZyy_-uidOdv9046zCOfTS7M,1340
|
|
56
|
+
microsoft_agents/activity/receipt_item.py,sha256=t2JyzseVHE97EzalICJLfjBb4kTqqzwpHkV8oRZLOUg,1202
|
|
57
|
+
microsoft_agents/activity/resource_response.py,sha256=Ft3SHgpkRSIqRoIGtXhuMB4UrI-CIoJscM0d8OKWpCs,350
|
|
58
|
+
microsoft_agents/activity/role_types.py,sha256=DH39jBc-xjB_y0vCOvROtujIBOi9DTZf1ABtELrzZZQ,280
|
|
59
|
+
microsoft_agents/activity/semantic_action.py,sha256=cXfsqoD9FD5pzcoFCAYVBdxdjVzbhRnAbeXkPWS6wag,736
|
|
60
|
+
microsoft_agents/activity/semantic_actions_states.py,sha256=8uD9w9Za-ZUGnhol63LGkzhPyCbF0VSzQ3qlbTlhjAc,244
|
|
61
61
|
microsoft_agents/activity/sign_in_constants.py,sha256=3juR-nSfP0vr3TvFPhQ2foEivt1lLgWxsG6LQmWhhkc,534
|
|
62
|
-
microsoft_agents/activity/sign_in_resource.py,sha256=
|
|
63
|
-
microsoft_agents/activity/signin_card.py,sha256=
|
|
64
|
-
microsoft_agents/activity/suggested_actions.py,sha256=
|
|
65
|
-
microsoft_agents/activity/text_format_types.py,sha256=
|
|
66
|
-
microsoft_agents/activity/text_highlight.py,sha256=
|
|
67
|
-
microsoft_agents/activity/thumbnail_card.py,sha256=
|
|
68
|
-
microsoft_agents/activity/thumbnail_url.py,sha256=
|
|
69
|
-
microsoft_agents/activity/token_exchange_invoke_request.py,sha256=
|
|
70
|
-
microsoft_agents/activity/token_exchange_invoke_response.py,sha256=
|
|
71
|
-
microsoft_agents/activity/token_exchange_resource.py,sha256=
|
|
72
|
-
microsoft_agents/activity/token_exchange_state.py,sha256=
|
|
73
|
-
microsoft_agents/activity/
|
|
74
|
-
microsoft_agents/activity/
|
|
62
|
+
microsoft_agents/activity/sign_in_resource.py,sha256=7aT7m7eSLVuW6veD3OxAM_IcSxVqFaK3zu31SSSEE1w,541
|
|
63
|
+
microsoft_agents/activity/signin_card.py,sha256=3sc9ECFIS7JP3iIkQOHvG2WEaHg3MBnXWFwrnDQ7STU,537
|
|
64
|
+
microsoft_agents/activity/suggested_actions.py,sha256=IsLG-_zDsAL2-Y6zxvCSpzcsqQzNh14cNA7N29A6ni4,682
|
|
65
|
+
microsoft_agents/activity/text_format_types.py,sha256=9e1uJTe0mRojA60xJo7D2JLmxJRFHNtIUdvIQZ1BZmA,215
|
|
66
|
+
microsoft_agents/activity/text_highlight.py,sha256=uqh7N248SWgQIu3ZYmx2ZIJRL3LJMfj8enWxFTefBgI,525
|
|
67
|
+
microsoft_agents/activity/thumbnail_card.py,sha256=v828NtmqRmVx5Bcvl1ijZYQwcm4bTCH8Zte4AaFP-9Y,1103
|
|
68
|
+
microsoft_agents/activity/thumbnail_url.py,sha256=PL20G49kzfr5-Oh58j9uooV_NnGBsvGSwGrUXtLA8k0,478
|
|
69
|
+
microsoft_agents/activity/token_exchange_invoke_request.py,sha256=PF7x1RaRRUNkY0ghGfeWNgLZF-e6td6yJk5bj-N9eW0,726
|
|
70
|
+
microsoft_agents/activity/token_exchange_invoke_response.py,sha256=pri_QGLfZyyOcQaw3GqO3jt7anTAjpS9oYDfgWrWQiM,763
|
|
71
|
+
microsoft_agents/activity/token_exchange_resource.py,sha256=EJxcMf4TkKXvOVuyy7DL2Q2-09zEYbRZjqCY6ddJ54M,391
|
|
72
|
+
microsoft_agents/activity/token_exchange_state.py,sha256=w9N1KAsHUfS_aUFa9oLHM8Y6xl9NpahzkL924WmJtlI,1547
|
|
73
|
+
microsoft_agents/activity/token_or_sign_in_resource_response.py,sha256=UUD2K58E6qB5oi-14Q2e9OLRsYXx07RWjLD5lpqfpmw,743
|
|
74
|
+
microsoft_agents/activity/token_post_resource.py,sha256=IpUXDuCkbHnOWm6aDXBUpKWrgck_x97IpWnRAgM5bFY,321
|
|
75
|
+
microsoft_agents/activity/token_request.py,sha256=suHLdXi1MiQq__7lCUu0eq0Fa1zLVgikU3N9LDqVi38,543
|
|
75
76
|
microsoft_agents/activity/token_response.py,sha256=Zv-9uZ4UvB4TcS6NPklSoONv8WEbTwAkKROZi3UFglI,1413
|
|
76
77
|
microsoft_agents/activity/token_status.py,sha256=o3pGTKRjuqEndRWClMe91Cmox6cW8aDrOTvE3_k5jFI,1174
|
|
77
|
-
microsoft_agents/activity/transcript.py,sha256=
|
|
78
|
-
microsoft_agents/activity/turn_context_protocol.py,sha256=
|
|
79
|
-
microsoft_agents/activity/video_card.py,sha256=
|
|
78
|
+
microsoft_agents/activity/transcript.py,sha256=vV0p-JEt62UPp3D4gmz1Fn1vq45vpjc01x2p5iCzKsw,423
|
|
79
|
+
microsoft_agents/activity/turn_context_protocol.py,sha256=S1lJi_pT-o3w0RNB9p4WDiOEL7SHBf_gojRfY9CBwF4,1787
|
|
80
|
+
microsoft_agents/activity/video_card.py,sha256=6ZYvTYCsIsACbR3KJBhfwFJ1GTYbjKJWvBsqw0pyyWA,2048
|
|
80
81
|
microsoft_agents/activity/entity/__init__.py,sha256=WqUL3e79ifcn8UhHVIHcSqQ6MHaEEyGgKi3v65-jQls,617
|
|
81
82
|
microsoft_agents/activity/entity/ai_entity.py,sha256=VOjU9Y6m68vkiKUHnqG5XmNPRu4KCSKmd0XPDCJ6B0s,3280
|
|
82
|
-
microsoft_agents/activity/entity/entity.py,sha256=
|
|
83
|
-
microsoft_agents/activity/entity/geo_coordinates.py,sha256=
|
|
84
|
-
microsoft_agents/activity/entity/mention.py,sha256=
|
|
85
|
-
microsoft_agents/activity/entity/place.py,sha256=
|
|
86
|
-
microsoft_agents/activity/entity/thing.py,sha256=
|
|
83
|
+
microsoft_agents/activity/entity/entity.py,sha256=AyAigxMH1M966G7gn6BHgjztuaKJLZcdJ5WfyJZsn6A,1180
|
|
84
|
+
microsoft_agents/activity/entity/geo_coordinates.py,sha256=N-90kqHX1I04U4rju5WVPMiVaV4EGMfS0bs5C4sX6qM,986
|
|
85
|
+
microsoft_agents/activity/entity/mention.py,sha256=1OEmnzNJ9me5dbVwCxjFLFwmj1Ubc9-kDQHuBiuC2Ks,699
|
|
86
|
+
microsoft_agents/activity/entity/place.py,sha256=SskI7KzQ8YHCAahOUYDdKnMxWNgLCc76kzPl-DcHfJk,921
|
|
87
|
+
microsoft_agents/activity/entity/thing.py,sha256=r2LTZ1Ytp8oau56FaWgniNEszn-TWTP-U-lNb3lS-Mo,453
|
|
87
88
|
microsoft_agents/activity/teams/__init__.py,sha256=pdcnd_Ud92Eox_fHSgm1kwzwFmG8LVeatF9MRI8IaVY,8532
|
|
88
89
|
microsoft_agents/activity/teams/app_based_link_query.py,sha256=-2uuPbyElN0DbU5R_mTJ_o7jphBNFr1ZFlLeziXuxn0,462
|
|
89
90
|
microsoft_agents/activity/teams/batch_failed_entries_response.py,sha256=Q6Mgbdu_OdFGEKmaMu3jr71BSfwNtAgCMLyDSrfLf7I,439
|
|
@@ -191,7 +192,7 @@ microsoft_agents/activity/teams/teams_member.py,sha256=vRcLRHy6wTfH7DP6k6QbrKkOR
|
|
|
191
192
|
microsoft_agents/activity/teams/teams_paged_members_result.py,sha256=cG4eKHjA0u1EMioC2ErVpydnoPJrtTDcdhdzYET9xto,555
|
|
192
193
|
microsoft_agents/activity/teams/tenant_info.py,sha256=h8OxMd6LD5lWVj_LK2ut8z7SB0I7Gx74W1wwEiYOzXk,296
|
|
193
194
|
microsoft_agents/activity/teams/user_meeting_details.py,sha256=tvk2CWYf7Bo-DhK8NSojhanJDXEOGVrKXxJDca03CAo,467
|
|
194
|
-
microsoft_agents_activity-0.
|
|
195
|
-
microsoft_agents_activity-0.
|
|
196
|
-
microsoft_agents_activity-0.
|
|
197
|
-
microsoft_agents_activity-0.
|
|
195
|
+
microsoft_agents_activity-0.5.0.dev3.dist-info/METADATA,sha256=qlnuf4zLJx4797H6I8ttC0qI3aAY8QKqNfxFdIRsfpY,413
|
|
196
|
+
microsoft_agents_activity-0.5.0.dev3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
197
|
+
microsoft_agents_activity-0.5.0.dev3.dist-info/top_level.txt,sha256=lWKcT4v6fTA_NgsuHdNvuMjSrkiBMXohn64ApY7Xi8A,17
|
|
198
|
+
microsoft_agents_activity-0.5.0.dev3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|