import type { BasePipelineMinimalResponse } from './base-pipeline-minimal-response.js'; import type { GoogleDriveConfigurationMinimal } from './google-drive-configuration-minimal.js'; /** * Representation of the 'GoogleDrivePipelineMinimalResponse' schema. */ export type GoogleDrivePipelineMinimalResponse = BasePipelineMinimalResponse & { type: 'GoogleDrive'; configuration?: GoogleDriveConfigurationMinimal; /** * @example true */ metadata?: boolean; } & Record; //# sourceMappingURL=google-drive-pipeline-minimal-response.d.ts.map