@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 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(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roundtable-bb/sdk",
3
- "version": "0.1.41",
3
+ "version": "0.1.42",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"