Skip to content

Commit

Permalink
Fix: Add network-active to valid options in PluginStatus Type def…
Browse files Browse the repository at this point in the history
…inition (#62450)

Co-authored-by: fabiankaegy <[email protected]>
Co-authored-by: Mamaduka <[email protected]>
  • Loading branch information
3 people authored Jun 10, 2024
1 parent bd6e764 commit 3b10cb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core-data/src/entity-types/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ declare module './base-entity-records' {
}
}

export type PluginStatus = 'active' | 'inactive';
export type PluginStatus = 'active' | 'inactive' | 'network-active';
export type Plugin< C extends Context = 'edit' > = OmitNevers<
_BaseEntityRecords.Plugin< C >
>;

0 comments on commit 3b10cb6

Please sign in to comment.