/** * Salesforce Execution metadata (list response) */ export interface SalesforceExecutionListItem { /** * Account identifier */ account?: string; /** * Salesforce Changeset identifier */ changesetId?: string; /** * Creation timestamp * @format int64 */ created?: number; /** * Validated deploy request ID (set after a successful VALIDATE step) */ deployId?: string; /** * Description of the Salesforce Execution */ description?: string; /** * Identifier of the Salesforce Execution */ identifier?: string; /** * Name of the Salesforce Execution */ name?: string; /** * Organization identifier */ org?: string; /** * Harness pipeline execution ID */ pipelineExecutionId?: string; /** * Harness pipeline identifier */ pipelineId?: string; /** * Project identifier */ project?: string; /** * Execution status */ status?: 'ABORTED' | 'FAILED' | 'IN_PROGRESS' | 'SUCCEEDED'; /** * Tags */ tags?: { [key: string]: string; }; /** * Target Salesforce org for the VALIDATE execution */ target?: string; /** * Execution type */ type?: 'DEPLOY' | 'EVALUATE_DIFF' | 'QUICK_DEPLOY' | 'VALIDATE'; /** * Last update timestamp * @format int64 */ updated?: number; }