@misofm/api-client 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/schemas.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@misofm/api-client",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Typed client and response contract for the Miso API read layer. The one definition of what a Miso read returns.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
package/src/schemas.ts CHANGED
@@ -98,6 +98,8 @@ const releaseDetailBaseSchema = z.object({
98
98
  id: suiIdSchema,
99
99
  title: z.string(),
100
100
  subtitle: z.string().nullable(),
101
+ /** Self-declared `release_kind`, or null when the extension is absent. */
102
+ kind: z.string().nullable(),
101
103
  state: workStateSchema,
102
104
  publishedAtMs: z.number().int().nullable(),
103
105
  cover: coverSchema.nullable(),