@raycast/api 1.67.0 → 1.68.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +8 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raycast/api",
3
- "version": "1.67.0",
3
+ "version": "1.68.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
@@ -6099,7 +6099,7 @@ declare interface LabelProps {
6099
6099
  export declare interface ListProps extends List.Props {
6100
6100
  }
6101
6101
 
6102
- declare interface ListProps_2 extends ActionsInterface, NavigationChildInterface, SearchBarInterface {
6102
+ declare interface ListProps_2 extends ActionsInterface, NavigationChildInterface, SearchBarInterface, PaginationInterface {
6103
6103
  /**
6104
6104
  * A reference to an {@link ActionPanel}. It will only be shown when there aren't any children.
6105
6105
  */
@@ -7025,6 +7025,13 @@ declare interface LabelProps {
7025
7025
  onOpen?: (path: string) => void;
7026
7026
  }
7027
7027
 
7028
+ /**
7029
+ * Views that support pagination
7030
+ */
7031
+ declare interface PaginationInterface {
7032
+
7033
+ }
7034
+
7028
7035
  /**
7029
7036
  * See {@link Form.PasswordField}
7030
7037
  */