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