import type { BasePipelineMinimalResponse } from './base-pipeline-minimal-response.js'; /** * Representation of the 'ServiceNowPipelineMinimalResponse' schema. */ export type ServiceNowPipelineMinimalResponse = BasePipelineMinimalResponse & { type: 'ServiceNow'; /** * @example true */ metadata?: boolean; } & Record; //# sourceMappingURL=service-now-pipeline-minimal-response.d.ts.map