basecamp-client 1.0.10 → 1.0.11

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.mjs CHANGED
@@ -424,7 +424,7 @@ var MessageListQuerySchema = z7.object({
424
424
  });
425
425
  var MessageCreateBodySchema = z7.object({
426
426
  subject: z7.string().min(1),
427
- status: z7.enum(["active", "draft"]).or(z7.string()),
427
+ status: z7.enum(["active", "drafted"]).or(z7.string()),
428
428
  content: HtmlStringSchema.optional(),
429
429
  category_id: BasecampIdSchema.optional(),
430
430
  subscriptions: z7.array(BasecampIdSchema).optional()
@@ -1233,7 +1233,7 @@ var DocumentListQuerySchema = z28.object({
1233
1233
  var DocumentCreateBodySchema = z28.object({
1234
1234
  title: z28.string().min(1),
1235
1235
  content: HtmlStringSchema,
1236
- status: z28.enum(["active", "draft"]).or(z28.string()).optional()
1236
+ status: z28.enum(["active", "drafted"]).or(z28.string()).optional()
1237
1237
  });
1238
1238
  var DocumentUpdateBodySchema = z28.object({
1239
1239
  title: z28.string().min(1).optional(),