File tree 1 file changed +3
-0
lines changed
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -164,6 +164,7 @@ export class DynamoPlus {
164
164
} ,
165
165
} )
166
166
} , Promise . resolve ( ) )
167
+ . catch ( throwErrorWithCallstack )
167
168
}
168
169
169
170
async getAll < ExpectedReturnType = unknown > ( params : GetAllInput ) : Promise < ExpectedReturnType [ ] > {
@@ -189,6 +190,7 @@ export class DynamoPlus {
189
190
} )
190
191
return [ ...previousResults , ...( output [ TableName ] ? output [ TableName ] as ExpectedReturnType [ ] : [ ] ) ]
191
192
} , Promise . resolve ( [ ] ) )
193
+ . catch ( throwErrorWithCallstack )
192
194
}
193
195
194
196
async putAll ( params : PutAllInput ) : Promise < void > {
@@ -211,6 +213,7 @@ export class DynamoPlus {
211
213
} ,
212
214
} )
213
215
} , Promise . resolve ( ) )
216
+ . catch ( throwErrorWithCallstack )
214
217
}
215
218
216
219
async * queryIterator < ExpectedReturnType = unknown > ( params : QueryCommandInput , pageSize = 100 ) : AsyncGenerator < Awaited < ExpectedReturnType > > {
You can’t perform that action at this time.
0 commit comments