forked from gitroomhq/postiz-app
-
-
Notifications
You must be signed in to change notification settings - Fork 0
chore(sync): promote upstream v1.1.1, RevenueCat billing, and OpenAI-compatible support to main #29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
9ee6cba
feat: migrate Veo3 video provider from kie.ai to EvoLink
giladresisi 83c33dc
faet: rc
nevo-david e2734f4
Merge remote-tracking branch 'origin/main' into feat/rc
nevo-david 6ca278a
feat: tc
nevo-david 1450d87
chore: add EVOLINK_API_KEY to .env.example
Copilot 6d661f7
feat(organization-repository): enhance organization filtering and use…
egelhaus d2a7b50
feat(pr-template): enhance QA section requirements and clarity in PR …
egelhaus a1b9456
feat(pr-template): improve clarity and detail in PR description guide…
egelhaus 295fbc0
feat: change evolink model
nevo-david e436a1c
Merge remote-tracking branch 'origin/feat/evolink-video-provider' int…
nevo-david 8417aa6
Merge remote-tracking branch 'origin/main' into feat/rc
nevo-david 2d9adb8
feat: stripe changes
nevo-david 60ffa4d
feat: fix X
nevo-david e1baea0
feat: dynamic path
nevo-david 0d8d0f2
feat: localhost for mcp
nevo-david 94778db
feat: remove filter
nevo-david 50b171e
feat: mcp changes
nevo-david 6b6ca12
feat: evolink
nevo-david c98ea04
feat: fix linkedin dto
nevo-david 8833276
video status tool
nevo-david 47580d1
feat: fix video
nevo-david 342f700
feat: failures
nevo-david eae605d
feat(orchestrator): post workflow v1.1.1 retries never-started activi…
giladresisi b2e438f
feat: reminders
nevo-david db1a49e
Merge pull request #1996 from gitroomhq/feat/heartbeat-timeout-retry
egelhaus bfbba88
chore(sync): merge latest upstream main (Post Workflow v1.1.1, Revenu…
JOY File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| import { | ||
| Controller, | ||
| HttpException, | ||
| Param, | ||
| Post, | ||
| RawBodyRequest, | ||
| Req, | ||
| } from '@nestjs/common'; | ||
| import { ApiTags } from '@nestjs/swagger'; | ||
| import { PaymentService } from '@gitroom/nestjs-libraries/services/payment/payment.service'; | ||
|
|
||
| @ApiTags('Payment') | ||
| @Controller('/payment') | ||
| export class PaymentController { | ||
| constructor(private readonly _paymentService: PaymentService) {} | ||
|
|
||
| @Post('/:provider') | ||
| async webhook( | ||
| @Param('provider') provider: string, | ||
| @Req() req: RawBodyRequest<Request> | ||
| ) { | ||
| try { | ||
| return await this._paymentService.webhook( | ||
| provider, | ||
| req.rawBody, | ||
| // @ts-ignore | ||
| req.headers | ||
| ); | ||
| } catch (e) { | ||
| if (e instanceof HttpException) { | ||
| throw e; | ||
| } | ||
| throw new HttpException(e, 500); | ||
| } | ||
| } | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Passing a raw
Erroror unknown objectedirectly as the first argument toHttpExceptioncan lead to poor serialization (such as an empty object{}or a blank message) becauseErrorproperties likemessageare non-enumerable. It is better to extract the error message or pass a user-friendly generic message.