Feat: Displaying the file option in the webhook's request body #10427 (#11928)

### What problem does this PR solve?

Feat: Displaying the file option in the webhook's request body #10427

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-12-12 16:16:34 +08:00
committed by GitHub
parent 50715ba332
commit 0fcb1680fd
3 changed files with 21 additions and 4 deletions

View File

@ -1030,3 +1030,10 @@ export enum WebhookSecurityAuthType {
export const RateLimitPerList = ['minute', 'hour', 'day'];
export const WebhookMaxBodySize = ['10MB', '50MB', '100MB', '1000MB'];
export enum WebhookRequestParameters {
File = VariableType.File,
String = TypesWithArray.String,
Number = TypesWithArray.Number,
Boolean = TypesWithArray.Boolean,
}