@lancedb/lancedb
Version:
LanceDB: A serverless, low-latency vector database for AI applications
16 lines (15 loc) • 604 B
JavaScript
;
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright The LanceDB Authors
Object.defineProperty(exports, "__esModule", { value: true });
exports.OAuthFlowType = void 0;
/**
* OAuth authentication flow types.
*/
var OAuthFlowType;
(function (OAuthFlowType) {
/** Client Credentials grant (service-to-service / M2M). */
OAuthFlowType["ClientCredentials"] = "client_credentials";
/** Azure Managed Identity via IMDS. */
OAuthFlowType["AzureManagedIdentity"] = "azure_managed_identity";
})(OAuthFlowType || (exports.OAuthFlowType = OAuthFlowType = {}));