@nodaro/shared 1.16.0 → 1.17.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nodaro/shared",
3
- "version": "1.16.0",
3
+ "version": "1.17.0",
4
4
  "description": "Shared types, model catalog, wire contracts, and structural vocabularies for the Nodaro platform and SDK.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -410,6 +410,11 @@ describe("LLM_FEATURE_DEFAULTS", () => {
410
410
  expect(LLM_FEATURE_DEFAULTS["generate-script"]).toBe("gemini-3.6-flash")
411
411
  })
412
412
 
413
+ it('"qa-check" defaults to "gemini-3.6-flash" (economy)', () => {
414
+ expect(LLM_FEATURE_DEFAULTS["qa-check"]).toBe("gemini-3.6-flash")
415
+ expect(getLlmTier(LLM_FEATURE_DEFAULTS["qa-check"])).toBe("economy")
416
+ })
417
+
413
418
  it('"translate" defaults to "gemini-3.6-flash" (economy)', () => {
414
419
  expect(LLM_FEATURE_DEFAULTS["translate"]).toBe("gemini-3.6-flash")
415
420
  })
@@ -27,6 +27,8 @@ export interface FreecutImportFile {
27
27
 
28
28
  export interface NodaroLoadVideoPayload {
29
29
  readonly videoUrl: string
30
+ /** Display/file name for the primary video ("Shot 1.mp4") — optional; absent = URL-derived name (fork default). */
31
+ readonly videoName?: string
30
32
  readonly videoBuffer?: ArrayBuffer
31
33
  readonly projectJson?: unknown
32
34
  readonly additionalFiles?: ReadonlyArray<FreecutImportFile>
package/src/llm-models.ts CHANGED
@@ -324,7 +324,7 @@ export const LLM_FEATURE_DEFAULTS: Record<LlmFeature, string> = {
324
324
  "3d-title": "claude-sonnet-4.6",
325
325
  "image-to-text": "claude-sonnet-4.6",
326
326
  "describe-to-picker": "claude-opus-4.7",
327
- "qa-check": "claude-sonnet-4.6",
327
+ "qa-check": "gemini-3.6-flash",
328
328
  "generate-script": "gemini-3.6-flash",
329
329
  "translate": "gemini-3.6-flash",
330
330
  "image-critic": "claude-sonnet-4.6",