diff --git a/types/office-js-preview/index.d.ts b/types/office-js-preview/index.d.ts index 43513859044de4..cc6c449bec7251 100644 --- a/types/office-js-preview/index.d.ts +++ b/types/office-js-preview/index.d.ts @@ -196393,12 +196393,14 @@ declare namespace PowerPoint { enum ThemeColor { /** * Specifies a mixed theme color. + Not applicable as input to {@link PowerPoint.ThemeColorScheme | ThemeColorScheme.getThemeColor} nor {@link PowerPoint.ThemeColorScheme| ThemeColorScheme.setThemeColor}. * @remarks * [Api set: PowerPointApi 1.10] */ mixed = "Mixed", /** * Specifies no theme color. + Not applicable as input to {@link PowerPoint.ThemeColorScheme | ThemeColorScheme.getThemeColor} nor {@link PowerPoint.ThemeColorScheme| ThemeColorScheme.setThemeColor}. * @remarks * [Api set: PowerPointApi 1.10] */ @@ -196491,7 +196493,7 @@ declare namespace PowerPoint { * @remarks * [Api set: PowerPointApi 1.10] * - * @param color The theme color. + * @param color The theme color. The values `none` and `mixed` are invalid for this API. * @returns The color value in #RRGGBB format (e.g., "FFA500"). */ getThemeColor(color: PowerPoint.ThemeColor): OfficeExtension.ClientResult; @@ -196501,7 +196503,7 @@ declare namespace PowerPoint { * @remarks * [Api set: PowerPointApi 1.10] * - * @param color The theme color. + * @param color The theme color. The values `none` and `mixed` are invalid for this API. * @returns The color value in #RRGGBB format (e.g., "FFA500"). */ getThemeColor(color: "Mixed" | "None" | "Accent1" | "Accent2" | "Accent3" | "Accent4" | "Accent5" | "Accent6" | "Dark1" | "Dark2" | "FollowedHyperlink" | "Hyperlink" | "Light1" | "Light2"): OfficeExtension.ClientResult; @@ -196511,7 +196513,7 @@ declare namespace PowerPoint { * @remarks * [Api set: PowerPointApi 1.10] * - * @param color The theme color. + * @param color The theme color. The values `none` and `mixed` are invalid for this API. * @param rgbColor The color value in #RRGGBB format (e.g., "FFA500") or as a named HTML color (e.g., "orange"). */ setThemeColor(color: PowerPoint.ThemeColor, rgbColor: string): void; @@ -196521,7 +196523,7 @@ declare namespace PowerPoint { * @remarks * [Api set: PowerPointApi 1.10] * - * @param color The theme color. + * @param color The theme color. The values `none` and `mixed` are invalid for this API. * @param rgbColor The color value in #RRGGBB format (e.g., "FFA500") or as a named HTML color (e.g., "orange"). */ setThemeColor(color: "Mixed" | "None" | "Accent1" | "Accent2" | "Accent3" | "Accent4" | "Accent5" | "Accent6" | "Dark1" | "Dark2" | "FollowedHyperlink" | "Hyperlink" | "Light1" | "Light2", rgbColor: string): void; diff --git a/types/office-js/index.d.ts b/types/office-js/index.d.ts index 5e2b5a9b944e29..f3d752f69b7f8f 100644 --- a/types/office-js/index.d.ts +++ b/types/office-js/index.d.ts @@ -185881,12 +185881,14 @@ declare namespace PowerPoint { enum ThemeColor { /** * Specifies a mixed theme color. + Not applicable as input to {@link PowerPoint.ThemeColorScheme | ThemeColorScheme.getThemeColor} nor {@link PowerPoint.ThemeColorScheme| ThemeColorScheme.setThemeColor}. * @remarks * [Api set: PowerPointApi 1.10] */ mixed = "Mixed", /** * Specifies no theme color. + Not applicable as input to {@link PowerPoint.ThemeColorScheme | ThemeColorScheme.getThemeColor} nor {@link PowerPoint.ThemeColorScheme| ThemeColorScheme.setThemeColor}. * @remarks * [Api set: PowerPointApi 1.10] */ @@ -185979,7 +185981,7 @@ declare namespace PowerPoint { * @remarks * [Api set: PowerPointApi 1.10] * - * @param color The theme color. + * @param color The theme color. The values `none` and `mixed` are invalid for this API. * @returns The color value in #RRGGBB format (e.g., "FFA500"). */ getThemeColor(color: PowerPoint.ThemeColor): OfficeExtension.ClientResult; @@ -185989,7 +185991,7 @@ declare namespace PowerPoint { * @remarks * [Api set: PowerPointApi 1.10] * - * @param color The theme color. + * @param color The theme color. The values `none` and `mixed` are invalid for this API. * @returns The color value in #RRGGBB format (e.g., "FFA500"). */ getThemeColor(color: "Mixed" | "None" | "Accent1" | "Accent2" | "Accent3" | "Accent4" | "Accent5" | "Accent6" | "Dark1" | "Dark2" | "FollowedHyperlink" | "Hyperlink" | "Light1" | "Light2"): OfficeExtension.ClientResult; @@ -185999,7 +186001,7 @@ declare namespace PowerPoint { * @remarks * [Api set: PowerPointApi 1.10] * - * @param color The theme color. + * @param color The theme color. The values `none` and `mixed` are invalid for this API. * @param rgbColor The color value in #RRGGBB format (e.g., "FFA500") or as a named HTML color (e.g., "orange"). */ setThemeColor(color: PowerPoint.ThemeColor, rgbColor: string): void; @@ -186009,7 +186011,7 @@ declare namespace PowerPoint { * @remarks * [Api set: PowerPointApi 1.10] * - * @param color The theme color. + * @param color The theme color. The values `none` and `mixed` are invalid for this API. * @param rgbColor The color value in #RRGGBB format (e.g., "FFA500") or as a named HTML color (e.g., "orange"). */ setThemeColor(color: "Mixed" | "None" | "Accent1" | "Accent2" | "Accent3" | "Accent4" | "Accent5" | "Accent6" | "Dark1" | "Dark2" | "FollowedHyperlink" | "Hyperlink" | "Light1" | "Light2", rgbColor: string): void; @@ -192755,6 +192757,7 @@ declare namespace PowerPoint { constructor(url?: string); readonly presentation: Presentation; readonly application: Application; + readonly sensitivityLabelsCatalog: any; } /** * Executes a batch script that performs actions on the PowerPoint object model, using a new RequestContext. When the promise is resolved, any tracked objects that were automatically allocated during execution will be released.