@raycast/api 1.39.1 → 1.39.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/api.d.ts CHANGED
@@ -4766,7 +4766,7 @@ declare interface ItemProps extends ActionsInterface {
4766
4766
  * An optional subtitle displayed next to the main title, optionally with a tooltip.
4767
4767
  */
4768
4768
  subtitle?: string | {
4769
- value: string;
4769
+ value: string | undefined | null;
4770
4770
  tooltip: string;
4771
4771
  };
4772
4772
  /**
@@ -4778,7 +4778,7 @@ declare interface ItemProps extends ActionsInterface {
4778
4778
  * An optional icon displayed for the list item.
4779
4779
  */
4780
4780
  icon?: Image.ImageLike | {
4781
- value: Image.ImageLike;
4781
+ value: Image.ImageLike | undefined | null;
4782
4782
  tooltip: string;
4783
4783
  };
4784
4784
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raycast/api",
3
- "version": "1.39.1",
3
+ "version": "1.39.2",
4
4
  "description": "Build extensions for Raycast with React and Node.js.",
5
5
  "author": "Raycast Technologies Ltd.",
6
6
  "homepage": "https://developers.raycast.com",
package/types/index.d.ts CHANGED
@@ -4766,7 +4766,7 @@ declare interface ItemProps extends ActionsInterface {
4766
4766
  * An optional subtitle displayed next to the main title, optionally with a tooltip.
4767
4767
  */
4768
4768
  subtitle?: string | {
4769
- value: string;
4769
+ value: string | undefined | null;
4770
4770
  tooltip: string;
4771
4771
  };
4772
4772
  /**
@@ -4778,7 +4778,7 @@ declare interface ItemProps extends ActionsInterface {
4778
4778
  * An optional icon displayed for the list item.
4779
4779
  */
4780
4780
  icon?: Image.ImageLike | {
4781
- value: Image.ImageLike;
4781
+ value: Image.ImageLike | undefined | null;
4782
4782
  tooltip: string;
4783
4783
  };
4784
4784
  /**