File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -463,7 +463,7 @@ export class AtlasUserData<T extends z.Schema> extends IUserData<T> {
463463 const json = await getResponse . json ( ) ;
464464 const data = this . validator . parse ( this . deserialize ( json . data as string ) ) ;
465465 return data ;
466- } catch {
466+ } catch ( error ) {
467467 log . error (
468468 mongoLogId ( 1_001_000_365 ) ,
469469 'Atlas Backend' ,
Original file line number Diff line number Diff line change @@ -5,8 +5,11 @@ export interface PipelineStorage {
55 loadMany (
66 predicate : ( arg0 : SavedPipeline ) => boolean
77 ) : Promise < SavedPipeline [ ] > ;
8- createOrUpdate ( id : string , attributes : SavedPipeline ) : Promise < boolean > ;
9- create ( attributes : SavedPipeline ) : Promise < boolean > ;
8+ createOrUpdate (
9+ id : string ,
10+ attributes : Omit < SavedPipeline , 'lastModified' >
11+ ) : Promise < boolean > ;
12+ create ( attributes : Omit < SavedPipeline , 'lastModified' > ) : Promise < boolean > ;
1013 updateAttributes (
1114 id : string ,
1215 attributes : Partial < SavedPipeline >
You can’t perform that action at this time.
0 commit comments