Skip to content

Commit

Permalink
Fix Deployment issue
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcibotari committed Feb 3, 2025
1 parent ec2ee2c commit 4f1fbd2
Show file tree
Hide file tree
Showing 6 changed files with 118 additions and 185 deletions.
205 changes: 77 additions & 128 deletions functions/package-lock.json

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

6 changes: 3 additions & 3 deletions functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,26 +23,26 @@
"compressing": "^1.10.1",
"cors": "^2.8.5",
"deepl-node": "^1.15.0",
"exiftool-vendored": "^29.1.0",
"express": "^4.21.2",
"firebase-admin": "^13.0.2",
"firebase-functions": "^6.2.0",
"fluent-ffmpeg": "^2.1.3",
"ffmpeg-static": "^5.2.0",
"sharp": "^0.33.5",
"stripe": "^17.4.0",
"uuid": "^11.0.5",
"zod": "^3.24.1"
},
"devDependencies": {
"openapi3-ts": "^4.4.0",
"@types/express": "^4.17.21",
"@types/uuid": "^10.0.0",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.57.1",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.31.0",
"openapi3-ts": "^4.4.0",
"typescript": "^5.6.2"
},
"private": true
Expand Down
4 changes: 1 addition & 3 deletions functions/src/models/asset.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,15 @@ export type AssetMetadata =
height?: number;
orientation?: 'landscape' | 'portrait' | 'squarish';
progressive?: boolean;
animated?: boolean;
pages?: number;
}
| {
type: 'video';
format?: string;
formatLong?: string;
width?: number;
height?: number;
orientation?: 'landscape' | 'portrait' | 'squarish';
duration?: number;
bitRate?: number;
};

// Import and Export
Expand Down
Loading

0 comments on commit 4f1fbd2

Please sign in to comment.