Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5642f56
feat: add CreateVideoTasksWithAI component and integrate with context…
iacopolea Mar 5, 2026
b2abb3f
feat: add API endpoint and types for generating video tasks with AI
iacopolea Mar 6, 2026
81d82c8
chore: update api and schema
iacopolea Mar 12, 2026
c1aa40c
feat: refactor CreateVideoTasksWithAI to use new API for generating v…
iacopolea Mar 13, 2026
87873c4
feat: add translations and update CreateVideoTasksWithAI component fo…
iacopolea Mar 13, 2026
816fbf1
refactor: clean up imports and update MODULES_TO_PROMPT in CreateTask…
iacopolea Mar 13, 2026
22cff27
refactor: improve readability and structure in context and modal comp…
iacopolea Mar 13, 2026
b7016ef
update MODULES_TO_PROMPT in CreateTaskListsWithAI and CreateVideoTask…
iacopolea Mar 16, 2026
4ed95c5
chore: update api
iacopolea Mar 16, 2026
3542165
refactor: update variable names for consistency in CreateVideoTasksWi…
iacopolea Mar 16, 2026
2defc66
refactor: remove unused constants and simplify input prompt handling …
iacopolea Mar 16, 2026
5f6cad4
fix: update AI disclaimer text for clarity in task modal
iacopolea Mar 16, 2026
8079a17
feat: add tooltip for AI prompt in CreateVideoTasksWithAI component
iacopolea Mar 16, 2026
4c868d9
refactor: replace Tabs.Panel with StyledTabsPanel for better styling …
iacopolea Mar 16, 2026
6e130e1
feat: add AI disclaimer text for video task modal and update translat…
iacopolea Mar 17, 2026
b74f956
refactor: simplify label rendering in AiGeneratorSection component
iacopolea Mar 17, 2026
46225cf
fix: remove unnecessary type assertion for usecaseNumber in generateV…
iacopolea Mar 17, 2026
deadbb5
refactor: enhance type safety for modulesInfo in CreateVideoTasksWith…
marcbon Mar 17, 2026
bf4ddbb
feat: add ModuleAcnSaver type for ACN saver personas in API
iacopolea Mar 18, 2026
de47e4b
fix: display error message for use cases API request in CreateVideoTa…
iacopolea Mar 18, 2026
24e98fc
Merge pull request #1539 from AppQuality/UN-2425
iacopolea Mar 18, 2026
4c5de91
chore: remove unused settings.json file
iDome89 Mar 18, 2026
a45b43d
Merge pull request #1545 from AppQuality/fix-remove-claude-settings
sinatragianpaolo Mar 18, 2026
de705a8
fix: refine filtering logic for modules info in CreateVideoTasksWithA…
iacopolea Mar 18, 2026
91f158c
Merge pull request #1546 from AppQuality/fix-modules
marcbon Mar 18, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .claude/settings.json

This file was deleted.

29 changes: 29 additions & 0 deletions src/common/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ export interface paths {
get: operations["get-root"];
parameters: {};
};
"/ai/agents/generate-video-tasks": {
post: operations["post-ai-agents-generate-video-tasks"];
};
"/analytics/views/campaigns/{cid}": {
post: operations["post-analytics-views-campaigns-cid"];
parameters: {
Expand Down Expand Up @@ -2113,6 +2116,32 @@ export interface operations {
500: components["responses"]["Error"];
};
};
"post-ai-agents-generate-video-tasks": {
responses: {
/** OK */
200: {
content: {
"application/json": {
tasks: components["schemas"]["OutputModuleTaskVideo"][];
};
};
};
400: components["responses"]["Error"];
403: components["responses"]["Error"];
500: components["responses"]["Error"];
502: components["responses"]["Error"];
};
requestBody: {
content: {
"application/json": {
modules: components["schemas"]["Module"][];
plan_id?: number;
input_prompt?: string;
usecase_number?: number;
};
};
};
};
"post-analytics-views-campaigns-cid": {
parameters: {
path: {
Expand Down
Loading
Loading