@musnows/scriverse 0.6.4 → 0.6.6

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/app.js CHANGED
@@ -156,6 +156,7 @@ const draftSchema = z.object({
156
156
  }).strict();
157
157
  const characterSchema = z.object({
158
158
  name: nonEmpty.max(200),
159
+ isDead: z.boolean().optional(),
159
160
  code: z.string().trim().max(200).optional(),
160
161
  aliases: z.array(z.string().trim().min(1).max(200)).max(100).optional(),
161
162
  raceId: identifier.nullable().optional(),
@@ -243,6 +244,7 @@ const knowledgeSectionsSchema = knowledgeSectionSchema.array().max(200).superRef
243
244
  });
244
245
  const organizationSchema = z.object({
245
246
  name: nonEmpty.max(200),
247
+ isDissolved: z.boolean().optional(),
246
248
  description: z.string().max(100_000).optional(),
247
249
  settings: z.array(z.string().trim().min(1).max(20_000)).max(200).optional(),
248
250
  settingsMarkdown: z.string().max(200_000).optional(),
@@ -251,6 +253,7 @@ const organizationSchema = z.object({
251
253
  }).strict();
252
254
  const raceSchema = z.object({
253
255
  name: nonEmpty.max(200),
256
+ isExtinct: z.boolean().optional(),
254
257
  parentRaceId: identifier.nullable().optional(),
255
258
  description: z.string().max(100_000).optional(),
256
259
  settings: z.array(z.string().trim().min(1).max(20_000)).max(200).optional(),
@@ -431,6 +434,7 @@ const workAiSettingsSchema = z.object({
431
434
  agentToolCallLimit: z.number().int().min(5).max(48).optional(),
432
435
  agentToolCallGlobalMultiplier: z.number().int().min(1).max(6).optional(),
433
436
  agentTools: z.array(z.enum(["story_index", "read_chapters", "grep", "search_story_entities", "read_character_sections", "search_drafts"])).max(6).optional(),
437
+ alwaysIncludeSettingInfo: z.boolean().optional(),
434
438
  titleGenerationModelId: z.string().trim().max(200).optional()
435
439
  }).strict();
436
440
  const contextSchema = z.object({