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.
1 parent bbea3ae commit 2f32d4aCopy full SHA for 2f32d4a
packages/app/src/cli/models/extensions/specifications/channel.ts
@@ -6,6 +6,7 @@ import {joinPath} from '@shopify/cli-kit/node/path'
6
const ChannelSpecificationSchema = BaseSchemaWithHandle.extend({
7
type: zod.literal('channel_config'),
8
name: zod.string().optional(),
9
+ description: zod.string().optional(),
10
})
11
12
const SUBDIRECTORY_NAME = 'specifications'
@@ -23,6 +24,7 @@ const channelSpecificationSpec = createExtensionSpecification({
23
24
return {
25
handle: config.handle,
26
name: config.name,
27
+ description: config.description,
28
}
29
},
30
0 commit comments