adyou 0.6.10 โ†’ 0.6.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.
@@ -7,7 +7,8 @@ import { FORMAT_DESC, genreStyle, PACE, playbookFor, sceneCuts, TONE_WORDS } fro
7
7
  import { fit, GOOGLE_LIMITS, policyIssues, wlen } from './specs.js';
8
8
  const BoardSchema = z.object({
9
9
  format: z.string(), genre: z.string().optional(), hook: z.string(), captions: z.array(z.string()).min(1).max(5), voice: z.string().optional().nullable(), music: z.string().optional(),
10
- clips: z.array(z.object({ sec: z.number(), kind: z.enum(['gen', 'ui_demo']).default('gen'), prompt: z.string(), speech: z.string().optional().nullable(), continues: z.boolean().optional().nullable() })).min(1).max(4),
10
+ // ๐Ÿ”ด kind ๋Š” ์šฐ๋ฆฌ ํด๋ฆฝ ๊ณ„ํš(clipPlan)์ด ์ •ํ•˜๋ฏ€๋กœ ๋ชจ๋ธ์ด ใ€Œugcใ€ใ€Œspeechใ€ ๊ฐ™์€ ๊ฐ’์„ ์จ๋„ ๊ฑฐ์ ˆํ•˜์ง€ ์•Š๋Š”๋‹ค(์—์–ด์„œ์šธ ์ฝ˜ํ‹ฐ 2ํšŒ ์‹คํŒจ ยท 2026-09-17) ยท sec ๋„ ๊ณ„ํš๊ฐ’์„ ์“ด๋‹ค
11
+ clips: z.array(z.object({ sec: z.number().optional().nullable(), kind: z.string().optional().nullable(), prompt: z.string(), speech: z.string().optional().nullable(), continues: z.boolean().optional().nullable() })).min(1).max(6),
11
12
  cast: z.string().optional().nullable(),
12
13
  });
13
14
  const LANG_NAME = { ko: 'Korean', en: 'English', ja: 'Japanese', 'zh-TW': 'Traditional Chinese', zh: 'Chinese', de: 'German', fr: 'French', es: 'Spanish', vi: 'Vietnamese', th: 'Thai', id: 'Indonesian', pt: 'Portuguese', it: 'Italian', nl: 'Dutch' };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adyou",
3
- "version": "0.6.10",
3
+ "version": "0.6.11",
4
4
  "description": "ADYou โ€” ๋Œ€ํ–‰์‚ฌ ์—†์ด, ๋‹น์‹ ์ด ์ง์ ‘. ์‚ฌ์ดํŠธ ์ฃผ์†Œ ํ•˜๋‚˜๋กœ ๊ด‘๊ณ  ์†Œ์žฌยท๋งค์ฒด ๋“ฑ๋กยท์ž๋™ ์šด์˜ยท๋ณด๊ณ ๊นŒ์ง€: AI ๊ด‘๊ณ  ์ž์œจ์ฃผํ–‰ CLI + MCP ์„œ๋ฒ„(MetaยทGoogle ยท ์ƒ์„ฑ์€ ํ•ญ์ƒ PAUSED ยท ์Šน์ธ ๋’ค ์‹œ์ž‘)",
5
5
  "type": "module",
6
6
  "license": "MIT",