import type { MetadataOperation } from './metadata-operation.js'; /** * Representation of the 'MetadataKeyUpdate' schema. */ export type MetadataKeyUpdate = { /** * Key to update * Min Length: 1. */ key: string; /** * Update operation executed for the key */ operations?: MetadataOperation[] | null; } & Record; //# sourceMappingURL=metadata-key-update.d.ts.map