@microsoft/teamsfx 2.3.1-alpha.eaec9fde2.0 → 2.3.1-alpha.f688c0131.0

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.
@@ -130,6 +130,7 @@ ErrorMessage.DuplicateHttpsOptionProperty = "Axios HTTPS agent already defined v
130
130
  ErrorMessage.DuplicateApiKeyInHeader = "The request already defined api key in request header with name {0}.";
131
131
  ErrorMessage.DuplicateApiKeyInQueryParam = "The request already defined api key in query parameter with name {0}.";
132
132
  ErrorMessage.OnlySupportInQueryActivity = "The handleMessageExtensionQueryWithToken only support in handleTeamsMessagingExtensionQuery with composeExtension/query type.";
133
+ ErrorMessage.OnlySupportInLinkQueryActivity = "The handleMessageExtensionLinkQueryWithSSO only support in handleTeamsAppBasedLinkQuery with composeExtension/queryLink type.";
133
134
  /**
134
135
  * Error class with code and message thrown by the SDK.
135
136
  */
@@ -1111,7 +1112,7 @@ function createApiClient(apiEndpoint, authProvider) {
1111
1112
  baseURL: apiEndpoint,
1112
1113
  });
1113
1114
  instance.interceptors.request.use(async function (config) {
1114
- return await authProvider.AddAuthenticationInfo(config);
1115
+ return (await authProvider.AddAuthenticationInfo(config));
1115
1116
  });
1116
1117
  return instance;
1117
1118
  }