···167167 "type": "ref",
168168 "ref": "app.rocksky.feed.defs#feedItemView"
169169 }
170170+ },
171171+ "cursor": {
172172+ "type": "string",
173173+ "description": "The pagination cursor for the next set of results."
170174 }
171175 }
172176 }
+4
apps/api/pkl/defs/feed/defs.pkl
···171171 ref = "app.rocksky.feed.defs#feedItemView"
172172 }
173173 }
174174+ ["cursor"] = new StringType {
175175+ type = "string"
176176+ description = "The pagination cursor for the next set of results."
177177+ }
174178 }
175179 }
176180}
···164164165165export interface FeedView {
166166 feed?: FeedItemView[];
167167+ /** The pagination cursor for the next set of results. */
168168+ cursor?: string;
167169 [k: string]: unknown;
168170}
169171