import type { ResourceMetadata } from "./ResourceMetadata.js"; /** * Represents a pending update submitted by the creator of a Published resource. * The live resource remains unchanged until the update is approved or rejected. */ export type ResourcePendingUpdate = { /** * Proposed new metadata (applied to the resource on approve) */ metadata: ResourceMetadata; /** * ID of the pending resource data document in the type-specific collection */ dataId: string; /** * When the pending update was submitted */ updatedAt: string; }; //# sourceMappingURL=ResourcePendingUpdate.d.ts.map