the statusphere demo reworked into a vite/react app in a monorepo

rm cursor from getStatuses

+1 -10
+1 -2
lexicons/xyz/statusphere/getStatuses.json
··· 13 13 "minimum": 1, 14 14 "maximum": 100, 15 15 "default": 50 16 - }, 17 - "cursor": { "type": "string" } 16 + } 18 17 } 19 18 }, 20 19 "output": {
-3
packages/appview/src/lexicons/lexicons.ts
··· 71 71 maximum: 100, 72 72 default: 50, 73 73 }, 74 - cursor: { 75 - type: 'string', 76 - }, 77 74 }, 78 75 }, 79 76 output: {
-1
packages/appview/src/lexicons/types/xyz/statusphere/getStatuses.ts
··· 16 16 17 17 export interface QueryParams { 18 18 limit: number 19 - cursor?: string 20 19 } 21 20 22 21 export type InputSchema = undefined
-3
packages/lexicon/src/lexicons.ts
··· 71 71 maximum: 100, 72 72 default: 50, 73 73 }, 74 - cursor: { 75 - type: 'string', 76 - }, 77 74 }, 78 75 }, 79 76 output: {
-1
packages/lexicon/src/types/xyz/statusphere/getStatuses.ts
··· 15 15 16 16 export interface QueryParams { 17 17 limit?: number 18 - cursor?: string 19 18 } 20 19 21 20 export type InputSchema = undefined