@purpleschool/gptbot-tools 0.0.78 → 0.0.80

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.
@@ -196,15 +196,19 @@ exports.TimelineSlideDataSchema = zod_1.z.object({
196
196
  .describe('Date or time period label. MUST be general/approximate if exact date unknown (e.g., "Early 2020s", "Mid-1990s", "Recent years")')
197
197
  .min(2)
198
198
  .max(50),
199
- title: zod_1.z.string().describe('Event title in 2-4 words').min(5).max(80),
199
+ title: zod_1.z
200
+ .string()
201
+ .describe('Event title. Prefer 2 words, max 3 words. Keep it short and punchy.')
202
+ .min(5)
203
+ .max(60),
200
204
  description: zod_1.z
201
205
  .string()
202
206
  .describe('Brief description of the event or milestone')
203
207
  .min(20)
204
208
  .max(150),
205
209
  }))
206
- .length(5)
207
- .describe('Timeline must contain exactly 5 chronological events'),
210
+ .length(4)
211
+ .describe('Timeline must contain exactly 4 chronological events'),
208
212
  }),
209
213
  version: zod_1.z.literal(1),
210
214
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@purpleschool/gptbot-tools",
3
- "version": "0.0.78",
3
+ "version": "0.0.80",
4
4
  "main": "build/index.js",
5
5
  "types": "build/index.d.ts",
6
6
  "scripts": {
@@ -342,7 +342,13 @@ export const TimelineSlideDataSchema = z.object({
342
342
  )
343
343
  .min(2)
344
344
  .max(50),
345
- title: z.string().describe('Event title in 2-4 words').min(5).max(80),
345
+ title: z
346
+ .string()
347
+ .describe(
348
+ 'Event title. Prefer 2 words, max 3 words. Keep it short and punchy.',
349
+ )
350
+ .min(5)
351
+ .max(60),
346
352
  description: z
347
353
  .string()
348
354
  .describe('Brief description of the event or milestone')
@@ -350,8 +356,8 @@ export const TimelineSlideDataSchema = z.object({
350
356
  .max(150),
351
357
  }),
352
358
  )
353
- .length(5)
354
- .describe('Timeline must contain exactly 5 chronological events'),
359
+ .length(4)
360
+ .describe('Timeline must contain exactly 4 chronological events'),
355
361
  }),
356
362
  version: z.literal(1),
357
363
  }) satisfies z.ZodType<ITimelineSlideDataStructure>;