authConstants.ts 550 B

12345678910111213
  1. // Copyright (c) Microsoft Corporation. All rights reserved.
  2. // Licensed under the MIT License. See License.txt in the project root for license information.
  3. export const AuthConstants = {
  4. "AAD_COMMON_TENANT": "common",
  5. "DEFAULT_ADAL_CLIENT_ID": "04b07795-8ddb-461a-bbee-02f9e1bf7b46",
  6. "SDK_INTERNAL_ERROR": "SDK_INTERNAL_ERROR",
  7. "DEFAULT_LANGUAGE": "en-us",
  8. "AZURE_AUTH_LOCATION": "AZURE_AUTH_LOCATION",
  9. "RESOURCE_MANAGER_ENDPOINT": "https://management.azure.com/"
  10. };
  11. export type TokenAudience = "graph" | "batch" | string | undefined;