import type { CommonEntityNames } from './CommonEntityNames'; import type { Meta } from './Meta'; /** * Request to derive a new entity from an existing entity (clone). Meta object allows to pass in current user name to override the logged in user context in the Connector */ export declare type EntityDeriveRequest = { names: CommonEntityNames; meta?: Meta; };