We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 88c22cc + cc5a06f commit 4bfeba3Copy full SHA for 4bfeba3
packages/app/src/cli/models/extensions/specifications/app_config_webhook_subscription.ts
@@ -29,7 +29,7 @@ export const SingleWebhookSubscriptionSchema = zod.object({
29
include_fields: zod.array(zod.string({invalid_type_error: 'Value must be a string'})).optional(),
30
filter: zod.string({invalid_type_error: 'Value must be a string'}).optional(),
31
payload_query: zod.string({invalid_type_error: 'Value must be a string'}).trim().min(1).optional(),
32
- name: zod.string({invalid_type_error: 'Value must be a string'}).min(1).max(50).optional(),
+ name: zod.string({invalid_type_error: 'Value must be a string'}).trim().min(1).max(50).optional(),
33
})
34
35
/* this transforms webhooks remotely to be accepted by the TOML
0 commit comments