We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a75191 commit 2e92016Copy full SHA for 2e92016
1 file changed
packages/global/openapi/core/plugin/team/api.ts
@@ -15,7 +15,7 @@ export const TeamPluginListItemSchema = z.object({
15
status: PluginStatusSchema.optional().default(PluginStatusEnum.Normal),
16
installed: z.boolean(),
17
associatedPluginId: z.string().optional(),
18
- isPromoted: z.boolean().optional()
+ isPromoted: z.boolean().nullish()
19
});
20
export const GetTeamPluginListResponseSchema = z.array(TeamPluginListItemSchema);
21
export type GetTeamPluginListResponseType = z.infer<typeof GetTeamPluginListResponseSchema>;
0 commit comments