@roundtable-bb/sdk 0.1.41 → 0.1.42
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/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -165,6 +165,7 @@ declare const CreateForumSchema: z.ZodObject<{
|
|
|
165
165
|
isHidden: z.ZodOptional<z.ZodBoolean>;
|
|
166
166
|
}, z.core.$strip>;
|
|
167
167
|
declare const UpdateForumSchema: z.ZodObject<{
|
|
168
|
+
categoryId: z.ZodOptional<z.ZodUUID>;
|
|
168
169
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodUUID>>;
|
|
169
170
|
name: z.ZodOptional<z.ZodString>;
|
|
170
171
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
package/dist/index.js
CHANGED
|
@@ -494,6 +494,7 @@ const CreateForumSchema = z.object({
|
|
|
494
494
|
isHidden: z.boolean().optional(),
|
|
495
495
|
});
|
|
496
496
|
const UpdateForumSchema = z.object({
|
|
497
|
+
categoryId: IdSchema.optional(),
|
|
497
498
|
parentId: IdSchema.nullable().optional(),
|
|
498
499
|
name: z.string().min(1).max(200).optional(),
|
|
499
500
|
description: z.string().max(1000).nullable().optional(),
|