@purpleschool/gptbot-tools 0.2.11-stage → 0.2.12-stage
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/build/video/enums/video-strategy.enum.js +1 -0
- package/build/video-editor/enums/video-editor-model-strategy.enum.js +1 -0
- package/package.json +1 -1
- package/tools/models/tools-with-configs.schema.ts +1 -1
- package/video/enums/video-strategy.enum.ts +1 -0
- package/video-editor/enums/video-editor-model-strategy.enum.ts +1 -0
|
@@ -12,5 +12,6 @@ var VIDEO_GENERATION_STRATEGY;
|
|
|
12
12
|
VIDEO_GENERATION_STRATEGY["SEEDANCE_VIDEO_GENERATION_CALLBACK"] = "SEEDANCE_VIDEO_GENERATION_CALLBACK";
|
|
13
13
|
VIDEO_GENERATION_STRATEGY["KLING_VIDEO_GENERATION_CALLBACK"] = "KLING_VIDEO_GENERATION_CALLBACK";
|
|
14
14
|
VIDEO_GENERATION_STRATEGY["WAN_2_6_VIDEO_GENERATION_CALLBACK"] = "WAN_2_6_VIDEO_GENERATION_CALLBACK";
|
|
15
|
+
VIDEO_GENERATION_STRATEGY["WAN_2_7_VIDEO_GENERATION_CALLBACK"] = "WAN_2_7_VIDEO_GENERATION_CALLBACK";
|
|
15
16
|
VIDEO_GENERATION_STRATEGY["GROK_VIDEO_GENERATION_CALLBACK"] = "GROK_VIDEO_GENERATION_CALLBACK";
|
|
16
17
|
})(VIDEO_GENERATION_STRATEGY || (exports.VIDEO_GENERATION_STRATEGY = VIDEO_GENERATION_STRATEGY = {}));
|
|
@@ -8,4 +8,5 @@ var VIDEO_EDITOR_MODEL_STRATEGY;
|
|
|
8
8
|
VIDEO_EDITOR_MODEL_STRATEGY["LUMA_MODIFY_CALLBACK"] = "LUMA_MODIFY_CALLBACK";
|
|
9
9
|
VIDEO_EDITOR_MODEL_STRATEGY["ALEPH_EDITING_CALLBACK"] = "ALEPH_EDITING_CALLBACK";
|
|
10
10
|
VIDEO_EDITOR_MODEL_STRATEGY["WAN_2_6_VIDEO_TO_VIDEO_CALLBACK"] = "WAN_2_6_VIDEO_TO_VIDEO_CALLBACK";
|
|
11
|
+
VIDEO_EDITOR_MODEL_STRATEGY["WAN_2_7_VIDEO_TO_VIDEO_CALLBACK"] = "WAN_2_7_VIDEO_TO_VIDEO_CALLBACK";
|
|
11
12
|
})(VIDEO_EDITOR_MODEL_STRATEGY || (exports.VIDEO_EDITOR_MODEL_STRATEGY = VIDEO_EDITOR_MODEL_STRATEGY = {}));
|
package/package.json
CHANGED
|
@@ -110,7 +110,7 @@ export const ToolWithConfigSchema = z.discriminatedUnion('contentType', [
|
|
|
110
110
|
config: DiagramsConfigSchema,
|
|
111
111
|
}),
|
|
112
112
|
),
|
|
113
|
-
|
|
113
|
+
ToolSchema.merge(
|
|
114
114
|
z.object({
|
|
115
115
|
contentType: z.literal(TOOL_CONTENT_TYPE.HTML_PAGE_BUILDER),
|
|
116
116
|
config: HtmlPageBuilderConfigSchema,
|
|
@@ -8,5 +8,6 @@ export enum VIDEO_GENERATION_STRATEGY {
|
|
|
8
8
|
SEEDANCE_VIDEO_GENERATION_CALLBACK = 'SEEDANCE_VIDEO_GENERATION_CALLBACK',
|
|
9
9
|
KLING_VIDEO_GENERATION_CALLBACK = 'KLING_VIDEO_GENERATION_CALLBACK',
|
|
10
10
|
WAN_2_6_VIDEO_GENERATION_CALLBACK = 'WAN_2_6_VIDEO_GENERATION_CALLBACK',
|
|
11
|
+
WAN_2_7_VIDEO_GENERATION_CALLBACK = 'WAN_2_7_VIDEO_GENERATION_CALLBACK',
|
|
11
12
|
GROK_VIDEO_GENERATION_CALLBACK = 'GROK_VIDEO_GENERATION_CALLBACK',
|
|
12
13
|
}
|
|
@@ -4,4 +4,5 @@ export enum VIDEO_EDITOR_MODEL_STRATEGY {
|
|
|
4
4
|
LUMA_MODIFY_CALLBACK = 'LUMA_MODIFY_CALLBACK',
|
|
5
5
|
ALEPH_EDITING_CALLBACK = 'ALEPH_EDITING_CALLBACK',
|
|
6
6
|
WAN_2_6_VIDEO_TO_VIDEO_CALLBACK = 'WAN_2_6_VIDEO_TO_VIDEO_CALLBACK',
|
|
7
|
+
WAN_2_7_VIDEO_TO_VIDEO_CALLBACK = 'WAN_2_7_VIDEO_TO_VIDEO_CALLBACK',
|
|
7
8
|
}
|