/** * Type definitions for Metadata API operations */ /** * Response containing the metadata generation status */ export interface MetadataGenerationStatusResponse { /** * The current status of metadata generation * Possible values: "NotStarted", "Queued", "Generating", "Enriching", "Completed", "Failed" */ status: string; /** * Indicates whether the metadata has been initialized */ isInitialized: boolean; } //# sourceMappingURL=metadata.types.d.ts.map