Skip to content

Commit

Permalink
Merge pull request #61 from TypingMind/plugin-powerpoint-generator
Browse files Browse the repository at this point in the history
Plugin Server - Powerpoint generator
  • Loading branch information
dat-devuap authored Dec 18, 2024
2 parents 12aa51d + 758971d commit 264f358
Show file tree
Hide file tree
Showing 5 changed files with 698 additions and 2 deletions.
150 changes: 148 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@
"helmet": "^7.1.0",
"http-status-codes": "^2.3.0",
"jsdom": "^24.0.0",
"node-cron": "^3.0.3",
"path": "^0.12.7",
"pino-http": "^9.0.0",
"pptxgenjs": "^3.12.0",
"swagger-ui-express": "^5.0.0",
"uuidv4": "^6.2.13",
"youtube-transcript": "^1.1.0",
Expand All @@ -47,6 +49,7 @@
"@release-it/conventional-changelog": "^8.0.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node-cron": "^3.0.11",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^7.13.1",
Expand Down
9 changes: 9 additions & 0 deletions src/routes/powerpointGenerator/powerpointGeneratorModel.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { extendZodWithOpenApi } from '@asteasolutions/zod-to-openapi';
import { z } from 'zod';

extendZodWithOpenApi(z);

export type PowerPointGeneratorResponse = z.infer<typeof PowerpointGeneratorResponseSchema>;
export const PowerpointGeneratorResponseSchema = z.object({
filepath: z.string(),
});
Loading

0 comments on commit 264f358

Please sign in to comment.