| 13 | const LOG_PREFIX = '[appGenerator]'; |
| 14 | |
| 15 | interface AppInput { |
| 16 | id: string; |
| 17 | name: string; |
| 18 | keywords?: string[]; |
| 19 | format?: string; |
| 20 | tags: Array<{ name: string; type?: string; description?: string }>; |
| 21 | example: string; |
| 22 | resources: Record<string, string[]>; |
| 23 | scripts?: Array<{ |
| 24 | name: string; |
| 25 | type: string; |
| 26 | findRegex: string; |
| 27 | replaceString: string; |
| 28 | }>; |
| 29 | imageTagPairs?: Array<{ tag: string; imgStyle: string }>; |
| 30 | } |
| 31 | |
| 32 | interface LlmConfig { |
| 33 | apiKey?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected