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.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/openapi.json +2 -2
- package/package.json +1 -1
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", "
|
|
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", "
|
|
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(),
|