microsoft-agents-authentication-msal 0.6.0.dev10__py3-none-any.whl → 0.6.0.dev11__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.
- microsoft_agents/authentication/msal/errors/error_resources.py +0 -9
- {microsoft_agents_authentication_msal-0.6.0.dev10.dist-info → microsoft_agents_authentication_msal-0.6.0.dev11.dist-info}/METADATA +2 -2
- {microsoft_agents_authentication_msal-0.6.0.dev10.dist-info → microsoft_agents_authentication_msal-0.6.0.dev11.dist-info}/RECORD +6 -6
- {microsoft_agents_authentication_msal-0.6.0.dev10.dist-info → microsoft_agents_authentication_msal-0.6.0.dev11.dist-info}/WHEEL +0 -0
- {microsoft_agents_authentication_msal-0.6.0.dev10.dist-info → microsoft_agents_authentication_msal-0.6.0.dev11.dist-info}/licenses/LICENSE +0 -0
- {microsoft_agents_authentication_msal-0.6.0.dev10.dist-info → microsoft_agents_authentication_msal-0.6.0.dev11.dist-info}/top_level.txt +0 -0
|
@@ -20,55 +20,46 @@ class AuthenticationErrorResources:
|
|
|
20
20
|
FailedToAcquireToken = ErrorMessage(
|
|
21
21
|
"Failed to acquire token. {0}",
|
|
22
22
|
-60012,
|
|
23
|
-
"agentic-identity-with-the-m365-agents-sdk",
|
|
24
23
|
)
|
|
25
24
|
|
|
26
25
|
InvalidInstanceUrl = ErrorMessage(
|
|
27
26
|
"Invalid instance URL",
|
|
28
27
|
-60013,
|
|
29
|
-
"agentic-identity-with-the-m365-agents-sdk",
|
|
30
28
|
)
|
|
31
29
|
|
|
32
30
|
OnBehalfOfFlowNotSupportedManagedIdentity = ErrorMessage(
|
|
33
31
|
"On-behalf-of flow is not supported with Managed Identity authentication.",
|
|
34
32
|
-60014,
|
|
35
|
-
"agentic-identity-with-the-m365-agents-sdk",
|
|
36
33
|
)
|
|
37
34
|
|
|
38
35
|
OnBehalfOfFlowNotSupportedAuthType = ErrorMessage(
|
|
39
36
|
"On-behalf-of flow is not supported with the current authentication type: {0}",
|
|
40
37
|
-60015,
|
|
41
|
-
"agentic-identity-with-the-m365-agents-sdk",
|
|
42
38
|
)
|
|
43
39
|
|
|
44
40
|
AuthenticationTypeNotSupported = ErrorMessage(
|
|
45
41
|
"Authentication type not supported",
|
|
46
42
|
-60016,
|
|
47
|
-
"agentic-identity-with-the-m365-agents-sdk",
|
|
48
43
|
)
|
|
49
44
|
|
|
50
45
|
AgentApplicationInstanceIdRequired = ErrorMessage(
|
|
51
46
|
"Agent application instance Id must be provided.",
|
|
52
47
|
-60017,
|
|
53
|
-
"agentic-identity-with-the-m365-agents-sdk",
|
|
54
48
|
)
|
|
55
49
|
|
|
56
50
|
FailedToAcquireAgenticInstanceToken = ErrorMessage(
|
|
57
51
|
"Failed to acquire agentic instance token or agent token for agent_app_instance_id {0}",
|
|
58
52
|
-60018,
|
|
59
|
-
"agentic-identity-with-the-m365-agents-sdk",
|
|
60
53
|
)
|
|
61
54
|
|
|
62
55
|
AgentApplicationInstanceIdAndUserIdRequired = ErrorMessage(
|
|
63
56
|
"Agent application instance Id and agentic user Id must be provided.",
|
|
64
57
|
-60019,
|
|
65
|
-
"agentic-identity-with-the-m365-agents-sdk",
|
|
66
58
|
)
|
|
67
59
|
|
|
68
60
|
FailedToAcquireInstanceOrAgentToken = ErrorMessage(
|
|
69
61
|
"Failed to acquire instance token or agent token for agent_app_instance_id {0} and agentic_user_id {1}",
|
|
70
62
|
-60020,
|
|
71
|
-
"agentic-identity-with-the-m365-agents-sdk",
|
|
72
63
|
)
|
|
73
64
|
|
|
74
65
|
def __init__(self):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microsoft-agents-authentication-msal
|
|
3
|
-
Version: 0.6.0.
|
|
3
|
+
Version: 0.6.0.dev11
|
|
4
4
|
Summary: A msal-based authentication library for Microsoft Agents
|
|
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: msal>=1.31.1
|
|
20
20
|
Requires-Dist: requests>=2.32.3
|
|
21
21
|
Requires-Dist: cryptography>=44.0.0
|
|
@@ -2,9 +2,9 @@ microsoft_agents/authentication/msal/__init__.py,sha256=hjPpakL4zyqeCTEBOUCcHaRn
|
|
|
2
2
|
microsoft_agents/authentication/msal/msal_auth.py,sha256=iWXAFYYv0MoxK_mvuRq_cren8fJZWrBbW7hsSGmTDLQ,17057
|
|
3
3
|
microsoft_agents/authentication/msal/msal_connection_manager.py,sha256=v7o0ONzjId1G6Ta7IjHc1NtSeM3NWH4t7YilrwJzvYg,5713
|
|
4
4
|
microsoft_agents/authentication/msal/errors/__init__.py,sha256=pSwN3l4g8Hr3jFPjOVYH1P9bN_lw6X_2jZa3IGtELC0,453
|
|
5
|
-
microsoft_agents/authentication/msal/errors/error_resources.py,sha256=
|
|
6
|
-
microsoft_agents_authentication_msal-0.6.0.
|
|
7
|
-
microsoft_agents_authentication_msal-0.6.0.
|
|
8
|
-
microsoft_agents_authentication_msal-0.6.0.
|
|
9
|
-
microsoft_agents_authentication_msal-0.6.0.
|
|
10
|
-
microsoft_agents_authentication_msal-0.6.0.
|
|
5
|
+
microsoft_agents/authentication/msal/errors/error_resources.py,sha256=TzxXpo-3OaQWaxAiC07u8wnVmIPiGgt-o00JmNrk02U,1853
|
|
6
|
+
microsoft_agents_authentication_msal-0.6.0.dev11.dist-info/licenses/LICENSE,sha256=ws_MuBL-SCEBqPBFl9_FqZkaaydIJmxHrJG2parhU4M,1141
|
|
7
|
+
microsoft_agents_authentication_msal-0.6.0.dev11.dist-info/METADATA,sha256=I6p5UvBnok5-j3ERfDTLNCJFHHq42cEyTwNJUWbzxAw,8375
|
|
8
|
+
microsoft_agents_authentication_msal-0.6.0.dev11.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
9
|
+
microsoft_agents_authentication_msal-0.6.0.dev11.dist-info/top_level.txt,sha256=lWKcT4v6fTA_NgsuHdNvuMjSrkiBMXohn64ApY7Xi8A,17
|
|
10
|
+
microsoft_agents_authentication_msal-0.6.0.dev11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|