@raycast/api 1.57.2 → 1.58.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raycast/api",
3
- "version": "1.57.2",
3
+ "version": "1.58.0",
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
@@ -1584,6 +1584,10 @@ declare interface DatePickerMembers {
1584
1584
  * * `DateTime` - hour and second can be picked in addition to year, month and day
1585
1585
  */
1586
1586
  Type: typeof DatePickerType;
1587
+ /**
1588
+ * Determines if the given date represents a full day or a specific time.
1589
+ */
1590
+ isFullDay(date?: Date | null): boolean;
1587
1591
  }
1588
1592
 
1589
1593
  declare interface DatePickerMembers_2 {