From 4aae2dc31d445b969ea2f7170c5faac52161fe7c Mon Sep 17 00:00:00 2001 From: Slawomir Koszewski Date: Wed, 4 Feb 2026 21:52:17 +0100 Subject: [PATCH] Add Azure DevOps API dependency and update exports in package.json --- package.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 806d28e..8fbdcb6 100644 --- a/package.json +++ b/package.json @@ -9,11 +9,13 @@ "dependencies": { "@azure/identity": "^4.13.0", "@azure/msal-node": "^5.0.3", - "@microsoft/microsoft-graph-client": "^3.0.7" + "@microsoft/microsoft-graph-client": "^3.0.7", + "azure-devops-node-api": "^15.1.2" }, "exports": { ".": "./src/index.js", "./azure": "./src/azure.js", - "./graph": "./src/graph.js" + "./graph": "./src/graph.js", + "./devops": "./src/devops.js" } }