decentralised message store

refactor: nullish cursor

serenity b2e7d334 0bc7204a

Changed files
+1 -1
src
lib
+1 -1
src/lib/types/constellation.ts
···
export const constellationBacklinkResponseSchema = z.object({
total: z.number(),
records: z.array(constellationBacklinkSchema),
-
cursor: z.optional(z.string()),
+
cursor: z.optional(z.string().nullish()),
});
export type ConstellationBacklinkResponse = z.infer<
typeof constellationBacklinkResponseSchema