@purpleschool/gptbot 0.7.96 → 0.7.97

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.
@@ -7,11 +7,10 @@ exports.WriterDocumentOutlineSubsectionSchema = zod_1.z.object({
7
7
  title: zod_1.z
8
8
  .string()
9
9
  .min(3)
10
- .max(120)
11
10
  .describe(`Concise title of the subsection. Meant to elaborate on its parent section's title.`),
12
11
  });
13
12
  exports.WriterDocumentOutlineSectionSchema = zod_1.z.object({
14
- title: zod_1.z.string().min(3).max(120).describe(`Concise title of the paper section.`),
13
+ title: zod_1.z.string().min(3).describe(`Concise title of the paper section.`),
15
14
  type: zod_1.z.nativeEnum(constants_1.WRITER_DOCUMENT_SECTION_TYPE),
16
15
  subsections: zod_1.z
17
16
  .array(exports.WriterDocumentOutlineSubsectionSchema)
@@ -5,7 +5,6 @@ export const WriterDocumentOutlineSubsectionSchema = z.object({
5
5
  title: z
6
6
  .string()
7
7
  .min(3)
8
- .max(120)
9
8
  .describe(
10
9
  `Concise title of the subsection. Meant to elaborate on its parent section's title.`,
11
10
  ),
@@ -13,7 +12,7 @@ export const WriterDocumentOutlineSubsectionSchema = z.object({
13
12
  export type WriterDocumentOutlineSubsection = z.infer<typeof WriterDocumentOutlineSubsectionSchema>;
14
13
 
15
14
  export const WriterDocumentOutlineSectionSchema = z.object({
16
- title: z.string().min(3).max(120).describe(`Concise title of the paper section.`),
15
+ title: z.string().min(3).describe(`Concise title of the paper section.`),
17
16
  type: z.nativeEnum(WRITER_DOCUMENT_SECTION_TYPE),
18
17
  subsections: z
19
18
  .array(WriterDocumentOutlineSubsectionSchema)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@purpleschool/gptbot",
3
- "version": "0.7.96",
3
+ "version": "0.7.97",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",