Directus / @directus/sdk / rest / updateExtension
Function: updateExtension() ​
updateExtension<
Schema>(bundle,name,data):RestCommand<DirectusExtension<Schema>,Schema>
Defined in: rest/commands/update/extensions.ts:14
Update an existing extension.
Type Parameters ​
• Schema
Parameters ​
bundle ​
Bundle this extension is in
null | string
name ​
string
Unique name of the extension
data ​
Partial extension object
bundle ​
null | string
meta ​
NestedUnion<IfAny<Schema, { enabled: boolean; }, "directus_extensions" extends keyof Schema ? UnpackList<Schema[keyof Schema & "directus_extensions"]> extends Item ? { [Field in string | number | symbol]: Item[Field] } & object : never : object>>
name ​
string
schema ​
null | { local: boolean; type: "interface" | "display" | "layout" | "module" | "panel" | "hook" | "endpoint" | "operation" | "bundle"; version: string; }
Returns ​
RestCommand<DirectusExtension<Schema>, Schema>
Returns the extension that was updated