tangled
alpha
login
or
join now
danabra.mov
/
statusphere-react
forked from
samuel.fm/statusphere-react
0
fork
atom
the statusphere demo reworked into a vite/react app in a monorepo
0
fork
atom
overview
issues
pulls
pipelines
rm cursor from getStatuses
samuel.fm
1 year ago
6c0a3d20
2a126cbb
+1
-10
5 changed files
expand all
collapse all
unified
split
lexicons
xyz
statusphere
getStatuses.json
packages
appview
src
lexicons
lexicons.ts
types
xyz
statusphere
getStatuses.ts
lexicon
src
lexicons.ts
types
xyz
statusphere
getStatuses.ts
+1
-2
lexicons/xyz/statusphere/getStatuses.json
···
13
13
"minimum": 1,
14
14
"maximum": 100,
15
15
"default": 50
16
16
-
},
17
17
-
"cursor": { "type": "string" }
16
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
74
-
cursor: {
75
75
-
type: 'string',
76
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
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
74
-
cursor: {
75
75
-
type: 'string',
76
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
18
-
cursor?: string
19
18
}
20
19
21
20
export type InputSchema = undefined