From 5d4cecbae814ef826ca0034c7d89c3a2317ed9c7 Mon Sep 17 00:00:00 2001 From: Sam Ramon <15154970+samantharamon@users.noreply.github.com> Date: Mon, 3 Nov 2025 11:43:08 -0800 Subject: [PATCH 1/4] [office-js-preview] (Outlook) Document updated SessionData size (#73755) --- types/office-js-preview/index.d.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/types/office-js-preview/index.d.ts b/types/office-js-preview/index.d.ts index 74dbedc0104ebf..1cfd55553dbba8 100644 --- a/types/office-js-preview/index.d.ts +++ b/types/office-js-preview/index.d.ts @@ -24217,7 +24217,10 @@ declare namespace Office { * * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose * - * **Important**: For each mail item, the entire SessionData object is limited to 50,000 characters per add-in. + * **Important**: In Outlook clients that support Mailbox 1.15 or earlier, the entire SessionData object for each mail item is limited to 50,000 characters per add-in. + * In classic Outlook on Windows, you can preview an increased character limit of up to 2,621,440 characters per add-in. To test the updated limit, join the + * {@link https://aka.ms/MSFT365InsiderProgram | Microsoft 365 Insider program}, then choose the Beta Channel in the classic Outlook on Windows client. + * Your client must be on Version 2510 (Build 19317.20000) or later. * * @param name - The session data key. * @param value - The session data value as a string. @@ -24237,7 +24240,10 @@ declare namespace Office { * * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose * - * **Important**: For each mail item, the entire SessionData object is limited to 50,000 characters per add-in. + * **Important**: In Outlook clients that support Mailbox 1.15 or earlier, the entire SessionData object for each mail item is limited to 50,000 characters per add-in. + * In classic Outlook on Windows, you can preview an increased character limit of up to 2,621,440 characters per add-in. To test the updated limit, join the + * {@link https://aka.ms/MSFT365InsiderProgram | Microsoft 365 Insider program}, then choose the Beta Channel in the classic Outlook on Windows client. + * Your client must be on Version 2510 (Build 19317.20000) or later. * * @param name - The session data key. * @param value - The session data value as a string. From 9f06584130cc44c16cbd326def5f74726394d76e Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Mon, 3 Nov 2025 13:16:56 -0800 Subject: [PATCH 2/4] [nodes7] Fix for TS 6.0 (#74012) --- types/nodes7/nodes7-tests.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/types/nodes7/nodes7-tests.ts b/types/nodes7/nodes7-tests.ts index 1230f467e5047b..b516ddb1eb6e55 100644 --- a/types/nodes7/nodes7-tests.ts +++ b/types/nodes7/nodes7-tests.ts @@ -59,8 +59,6 @@ i.dropConnection(() => {}); // $ExpectType void // @ts-expect-error i.setTranslationCB(); -// @ts-expect-error -i.setTranslationCB(() => {}); i.setTranslationCB(() => ""); // $ExpectType void i.setTranslationCB(x => x); // $ExpectType void From 363fff4f1fa5cf89a68bd9a052ed7d06695a2d15 Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Mon, 3 Nov 2025 13:17:02 -0800 Subject: [PATCH 3/4] [raphael] Fix for TS 6.0 (#74011) --- types/raphael/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/raphael/index.d.ts b/types/raphael/index.d.ts index d5b742772bc69f..bdecc88ca54979 100644 --- a/types/raphael/index.d.ts +++ b/types/raphael/index.d.ts @@ -453,8 +453,8 @@ export type RaphaelPaperPluginRegistry< [P in keyof T]: RaphaelPaperPluginMethodOrRegistry; }; -type RaphaelPaperPluginMethodOrRegistry = T extends (...args: any) => any - ? RaphaelPaperPluginMethod, ReturnType> +type RaphaelPaperPluginMethodOrRegistry = T extends readonly any[] ? {} + : T extends (...args: any) => any ? RaphaelPaperPluginMethod, ReturnType> : RaphaelPaperPluginRegistry; /** * You can add your own method to elements. This is useful when you want to hack default functionality or want From 3163a004f6eafe02051a8e197d5d1a5992d428ba Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Mon, 3 Nov 2025 13:33:30 -0800 Subject: [PATCH 4/4] [leaflet-deepzoom] mark as type=module (#74014) --- types/leaflet-deepzoom/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/types/leaflet-deepzoom/package.json b/types/leaflet-deepzoom/package.json index 535ccc3c4c4c07..64148ade78c1fe 100644 --- a/types/leaflet-deepzoom/package.json +++ b/types/leaflet-deepzoom/package.json @@ -2,6 +2,7 @@ "private": true, "name": "@types/leaflet-deepzoom", "version": "2.0.9999", + "type": "module", "projects": [ "https://github.com/alfarisi/leaflet-deepzoom/" ],