import type { CachePurgeResponse } from './CachePurgeResponse'; /** * @type CachePurgeResponseEnvelope: * * @property data: * */ export type CachePurgeResponseEnvelope = { data: CachePurgeResponse; } & { [key: string]: any; };