This update action changes the order of the assets array. The new order is defined by listing the ids of the Assets.

interface CategoryChangeAssetOrderAction {
    action: "changeAssetOrder";
    assetOrder: string[];
}

Properties

Properties

action: "changeAssetOrder"
assetOrder: string[]

New value to set. Must contain all Asset ids.

Generated using TypeDoc