@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/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/__tests__/llm-models.test.ts +5 -0
- package/src/freecut-protocol.ts +2 -0
- package/src/llm-models.ts +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -479,6 +479,8 @@ interface FreecutImportFile {
|
|
|
479
479
|
}
|
|
480
480
|
interface NodaroLoadVideoPayload {
|
|
481
481
|
readonly videoUrl: string;
|
|
482
|
+
/** Display/file name for the primary video ("Shot 1.mp4") — optional; absent = URL-derived name (fork default). */
|
|
483
|
+
readonly videoName?: string;
|
|
482
484
|
readonly videoBuffer?: ArrayBuffer;
|
|
483
485
|
readonly projectJson?: unknown;
|
|
484
486
|
readonly additionalFiles?: ReadonlyArray<FreecutImportFile>;
|
package/dist/index.d.ts
CHANGED
|
@@ -479,6 +479,8 @@ interface FreecutImportFile {
|
|
|
479
479
|
}
|
|
480
480
|
interface NodaroLoadVideoPayload {
|
|
481
481
|
readonly videoUrl: string;
|
|
482
|
+
/** Display/file name for the primary video ("Shot 1.mp4") — optional; absent = URL-derived name (fork default). */
|
|
483
|
+
readonly videoName?: string;
|
|
482
484
|
readonly videoBuffer?: ArrayBuffer;
|
|
483
485
|
readonly projectJson?: unknown;
|
|
484
486
|
readonly additionalFiles?: ReadonlyArray<FreecutImportFile>;
|
package/dist/index.js
CHANGED
|
@@ -4503,7 +4503,7 @@ var LLM_FEATURE_DEFAULTS = {
|
|
|
4503
4503
|
"3d-title": "claude-sonnet-4.6",
|
|
4504
4504
|
"image-to-text": "claude-sonnet-4.6",
|
|
4505
4505
|
"describe-to-picker": "claude-opus-4.7",
|
|
4506
|
-
"qa-check": "
|
|
4506
|
+
"qa-check": "gemini-3.6-flash",
|
|
4507
4507
|
"generate-script": "gemini-3.6-flash",
|
|
4508
4508
|
"translate": "gemini-3.6-flash",
|
|
4509
4509
|
"image-critic": "claude-sonnet-4.6"
|