@ductape/sdk 0.1.150 → 0.1.152
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.
- package/dist/database/actions/action-manager.d.ts +4 -0
- package/dist/database/actions/action-manager.js +47 -4
- package/dist/database/actions/action-manager.js.map +1 -1
- package/dist/database/databases.service.js +16 -10
- package/dist/database/databases.service.js.map +1 -1
- package/dist/features/feature-executor.d.ts +2 -0
- package/dist/features/feature-executor.js +34 -27
- package/dist/features/feature-executor.js.map +1 -1
- package/dist/features/features.service.js +19 -10
- package/dist/features/features.service.js.map +1 -1
- package/dist/index.d.ts +3 -4
- package/dist/index.js +2 -4
- package/dist/index.js.map +1 -1
- package/dist/processor/services/processor.service.d.ts +2 -2
- package/dist/processor/services/processor.service.js +1 -1
- package/dist/processor/services/processor.service.js.map +1 -1
- package/dist/resilience/fallback.service.d.ts +1 -0
- package/dist/resilience/fallback.service.js +4 -1
- package/dist/resilience/fallback.service.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/vector/vector-database.service.d.ts +3 -0
- package/dist/vector/vector-database.service.js +47 -0
- package/dist/vector/vector-database.service.js.map +1 -1
- package/package.json +2 -3
|
@@ -384,9 +384,9 @@ export default class ProcessorService implements IProcessorService {
|
|
|
384
384
|
runBrokerPublish(data: IStepEvent, additional_logs?: Partial<ILogData>): Promise<{
|
|
385
385
|
published: boolean;
|
|
386
386
|
}>;
|
|
387
|
-
processStorageRequest(data: IStepEvent, input: IStorageRequest, storageEnv: IProductStorageEnvs, additional_logs: Partial<ILogData>, decryptionKey?: string): Promise<{
|
|
387
|
+
processStorageRequest(data: IStepEvent, input: IStorageRequest, storageEnv: IProductStorageEnvs, additional_logs: Partial<ILogData>, decryptionKey?: string): Promise<IProcessingFailure | {
|
|
388
388
|
url: string;
|
|
389
|
-
}
|
|
389
|
+
}>;
|
|
390
390
|
writeResult(status: LogEventStatus, retryable?: boolean): Promise<void>;
|
|
391
391
|
/**
|
|
392
392
|
* Separate credentials into prefixed (e.g., 'headers:Authorization') and non-prefixed (e.g., 'api_key').
|
|
@@ -4951,7 +4951,7 @@ class ProcessorService {
|
|
|
4951
4951
|
}
|
|
4952
4952
|
catch (e) {
|
|
4953
4953
|
if (e instanceof utils_1.InputResolutionError) {
|
|
4954
|
-
throw new Error(`Input resolution failed for action '${event}': ${e.message}`);
|
|
4954
|
+
throw Object.assign(new Error(`Input resolution failed for action '${event}': ${e.message}`), { code: 'INPUT_RESOLUTION_FAILED', retryable: false });
|
|
4955
4955
|
}
|
|
4956
4956
|
throw e;
|
|
4957
4957
|
}
|