Hi! I was wondering if there could be an update to the update-feature-flag tool, with support for updating the payload for the feature flag.
I was having trouble doing this with Claude Code connected, and couldn't find any payload properties in the schema.
export const FeatureFlagSchema = z.object({
id: z.number(),
key: z.string(),
name: z.string(),
description: z.string().nullish(),
filters: z.any().nullish(),
active: z.boolean(),
tags: z.array(z.string()).optional(),
});
Is there another way to do this?