@jsonapi-serde/server 1.5.0 → 1.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.
- package/dist/request/body.d.ts +2 -2
- package/package.json +1 -1
package/dist/request/body.d.ts
CHANGED
|
@@ -53,11 +53,11 @@ export type RelationshipsSchema = $ZodType<Record<string, z.output<RelationshipS
|
|
|
53
53
|
/**
|
|
54
54
|
* Zod schema for a generic JSON:API attributes object
|
|
55
55
|
*/
|
|
56
|
-
export type AttributesSchema = $ZodType<Record<string, unknown
|
|
56
|
+
export type AttributesSchema = $ZodType<Record<string, unknown> | undefined>;
|
|
57
57
|
/**
|
|
58
58
|
* Zod schema for a generic JSON:API meta object
|
|
59
59
|
*/
|
|
60
|
-
export type MetaSchema = $ZodType<Record<string, unknown
|
|
60
|
+
export type MetaSchema = $ZodType<Record<string, unknown> | undefined>;
|
|
61
61
|
/**
|
|
62
62
|
* Configuration object for parsing a resource request
|
|
63
63
|
*
|