Skip to content

Commit

Permalink
fix: addon schema validation (#4643)
Browse files Browse the repository at this point in the history
Fix addon schema breaking build
  • Loading branch information
Tymek authored Sep 8, 2023
1 parent b835efc commit 2aa63fb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lib/addons/addon-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export const addonDefinitionSchema = joi.object().keys({
displayName: joi.string(),
documentationUrl: joi.string().uri({ scheme: [/https?/] }),
description: joi.string().allow(''),
howTo: joi.string().optional().allow(''),
deprecated: joi.boolean().optional().default(false),
parameters: joi
.array()
Expand Down

0 comments on commit 2aa63fb

Please sign in to comment.