From 4b55c30df62dcbe08b72cfc48a3fb44dd615a1b0 Mon Sep 17 00:00:00 2001 From: "Gavin Barron (from Dev Box)" Date: Fri, 3 Oct 2025 11:55:12 -0700 Subject: [PATCH] fix: update contacts typespec annotation to restore update and delete operations --- additions/main.tsp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/additions/main.tsp b/additions/main.tsp index b15473e52..18b236e74 100644 --- a/additions/main.tsp +++ b/additions/main.tsp @@ -13,9 +13,11 @@ namespace microsoft.graph { @graphRoute("contacts/{id}") interface OrgContactsById extends Resource { @select GetResource is GraphOps.GetResource; + @select PatchResource is GraphOps.PatchWithResponse; + @select DeleteResource is GraphOps.Delete; } @graphRoute("contacts") interface OrgContacts extends Collection { - @orderBy("displayName") @filter("*") @search @count @select @top GetCollection is GraphOps.GetPagedCollection; + @orderBy("displayName") @filter("*") @search @count @select @skip @top GetCollection is GraphOps.GetPagedCollection; } }