@ductape/sdk 0.1.121 → 0.1.124

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -380,9 +380,9 @@ export default class ProcessorService implements IProcessorService {
380
380
  runBrokerPublish(data: IStepEvent, additional_logs?: Partial<ILogData>): Promise<{
381
381
  published: boolean;
382
382
  }>;
383
- processStorageRequest(data: IStepEvent, input: IStorageRequest, storageEnv: IProductStorageEnvs, additional_logs: Partial<ILogData>, decryptionKey?: string): Promise<{
383
+ processStorageRequest(data: IStepEvent, input: IStorageRequest, storageEnv: IProductStorageEnvs, additional_logs: Partial<ILogData>, decryptionKey?: string): Promise<IProcessingFailure | {
384
384
  url: string;
385
- } | IProcessingFailure>;
385
+ }>;
386
386
  writeResult(status: LogEventStatus, retryable?: boolean): Promise<void>;
387
387
  /**
388
388
  * Separate credentials into prefixed (e.g., 'headers:Authorization') and non-prefixed (e.g., 'api_key').