microsoft-agents-hosting-teams 0.6.0.dev10__tar.gz → 0.6.0.dev11__tar.gz
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.
- {microsoft_agents_hosting_teams-0.6.0.dev10/microsoft_agents_hosting_teams.egg-info → microsoft_agents_hosting_teams-0.6.0.dev11}/PKG-INFO +2 -2
- {microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11}/microsoft_agents/hosting/teams/errors/error_resources.py +0 -10
- {microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11/microsoft_agents_hosting_teams.egg-info}/PKG-INFO +2 -2
- microsoft_agents_hosting_teams-0.6.0.dev11/microsoft_agents_hosting_teams.egg-info/requires.txt +2 -0
- microsoft_agents_hosting_teams-0.6.0.dev10/microsoft_agents_hosting_teams.egg-info/requires.txt +0 -2
- {microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11}/LICENSE +0 -0
- {microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11}/microsoft_agents/hosting/teams/__init__.py +0 -0
- {microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11}/microsoft_agents/hosting/teams/errors/__init__.py +0 -0
- {microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11}/microsoft_agents/hosting/teams/teams_activity_handler.py +0 -0
- {microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11}/microsoft_agents/hosting/teams/teams_cloud_adapter.py +0 -0
- {microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11}/microsoft_agents/hosting/teams/teams_info.py +0 -0
- {microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11}/microsoft_agents_hosting_teams.egg-info/SOURCES.txt +0 -0
- {microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11}/microsoft_agents_hosting_teams.egg-info/dependency_links.txt +0 -0
- {microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11}/microsoft_agents_hosting_teams.egg-info/top_level.txt +0 -0
- {microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11}/pyproject.toml +0 -0
- {microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11}/readme.md +0 -0
- {microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11}/setup.cfg +0 -0
- {microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microsoft-agents-hosting-teams
|
|
3
|
-
Version: 0.6.0.
|
|
3
|
+
Version: 0.6.0.dev11
|
|
4
4
|
Summary: Integration library for Microsoft Agents with Teams
|
|
5
5
|
Author: Microsoft Corporation
|
|
6
6
|
License-Expression: MIT
|
|
@@ -15,7 +15,7 @@ Classifier: Operating System :: OS Independent
|
|
|
15
15
|
Requires-Python: >=3.10
|
|
16
16
|
Description-Content-Type: text/markdown
|
|
17
17
|
License-File: LICENSE
|
|
18
|
-
Requires-Dist: microsoft-agents-hosting-core==0.6.0.
|
|
18
|
+
Requires-Dist: microsoft-agents-hosting-core==0.6.0.dev11
|
|
19
19
|
Requires-Dist: aiohttp>=3.11.11
|
|
20
20
|
Dynamic: license-file
|
|
21
21
|
Dynamic: requires-dist
|
|
@@ -20,61 +20,51 @@ class TeamsErrorResources:
|
|
|
20
20
|
TeamsBadRequest = ErrorMessage(
|
|
21
21
|
"BadRequest",
|
|
22
22
|
-62000,
|
|
23
|
-
"teams-integration",
|
|
24
23
|
)
|
|
25
24
|
|
|
26
25
|
TeamsNotImplemented = ErrorMessage(
|
|
27
26
|
"NotImplemented",
|
|
28
27
|
-62001,
|
|
29
|
-
"teams-integration",
|
|
30
28
|
)
|
|
31
29
|
|
|
32
30
|
TeamsContextRequired = ErrorMessage(
|
|
33
31
|
"context is required.",
|
|
34
32
|
-62002,
|
|
35
|
-
"teams-integration",
|
|
36
33
|
)
|
|
37
34
|
|
|
38
35
|
TeamsMeetingIdRequired = ErrorMessage(
|
|
39
36
|
"meeting_id is required.",
|
|
40
37
|
-62003,
|
|
41
|
-
"teams-integration",
|
|
42
38
|
)
|
|
43
39
|
|
|
44
40
|
TeamsParticipantIdRequired = ErrorMessage(
|
|
45
41
|
"participant_id is required.",
|
|
46
42
|
-62004,
|
|
47
|
-
"teams-integration",
|
|
48
43
|
)
|
|
49
44
|
|
|
50
45
|
TeamsTeamIdRequired = ErrorMessage(
|
|
51
46
|
"team_id is required.",
|
|
52
47
|
-62005,
|
|
53
|
-
"teams-integration",
|
|
54
48
|
)
|
|
55
49
|
|
|
56
50
|
TeamsTurnContextRequired = ErrorMessage(
|
|
57
51
|
"TurnContext cannot be None",
|
|
58
52
|
-62006,
|
|
59
|
-
"teams-integration",
|
|
60
53
|
)
|
|
61
54
|
|
|
62
55
|
TeamsActivityRequired = ErrorMessage(
|
|
63
56
|
"Activity cannot be None",
|
|
64
57
|
-62007,
|
|
65
|
-
"teams-integration",
|
|
66
58
|
)
|
|
67
59
|
|
|
68
60
|
TeamsChannelIdRequired = ErrorMessage(
|
|
69
61
|
"The teams_channel_id cannot be None or empty",
|
|
70
62
|
-62008,
|
|
71
|
-
"teams-integration",
|
|
72
63
|
)
|
|
73
64
|
|
|
74
65
|
TeamsConversationIdRequired = ErrorMessage(
|
|
75
66
|
"conversation_id is required.",
|
|
76
67
|
-62009,
|
|
77
|
-
"teams-integration",
|
|
78
68
|
)
|
|
79
69
|
|
|
80
70
|
def __init__(self):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microsoft-agents-hosting-teams
|
|
3
|
-
Version: 0.6.0.
|
|
3
|
+
Version: 0.6.0.dev11
|
|
4
4
|
Summary: Integration library for Microsoft Agents with Teams
|
|
5
5
|
Author: Microsoft Corporation
|
|
6
6
|
License-Expression: MIT
|
|
@@ -15,7 +15,7 @@ Classifier: Operating System :: OS Independent
|
|
|
15
15
|
Requires-Python: >=3.10
|
|
16
16
|
Description-Content-Type: text/markdown
|
|
17
17
|
License-File: LICENSE
|
|
18
|
-
Requires-Dist: microsoft-agents-hosting-core==0.6.0.
|
|
18
|
+
Requires-Dist: microsoft-agents-hosting-core==0.6.0.dev11
|
|
19
19
|
Requires-Dist: aiohttp>=3.11.11
|
|
20
20
|
Dynamic: license-file
|
|
21
21
|
Dynamic: requires-dist
|
{microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11}/readme.md
RENAMED
|
File without changes
|
{microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11}/setup.cfg
RENAMED
|
File without changes
|
{microsoft_agents_hosting_teams-0.6.0.dev10 → microsoft_agents_hosting_teams-0.6.0.dev11}/setup.py
RENAMED
|
File without changes
|