triangle-utils 1.4.104 → 1.4.105
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.
|
@@ -182,7 +182,6 @@ export class UtilsDynamoDB {
|
|
|
182
182
|
}
|
|
183
183
|
}
|
|
184
184
|
});
|
|
185
|
-
console.log(response);
|
|
186
185
|
const new_items = response.Responses?.[table_name]?.map(item => convert_output({ M: item })) || [];
|
|
187
186
|
items.push(...new_items);
|
|
188
187
|
next_dynamodb_keys = response.UnprocessedKeys?.[table_name]?.Keys || [];
|
package/package.json
CHANGED
package/src/UtilsDynamoDB.ts
CHANGED
|
@@ -218,7 +218,6 @@ export class UtilsDynamoDB {
|
|
|
218
218
|
}
|
|
219
219
|
}
|
|
220
220
|
})
|
|
221
|
-
console.log(response)
|
|
222
221
|
const new_items : any[] = response.Responses?.[table_name]?.map(item => convert_output({ M : item })) || []
|
|
223
222
|
items.push(...new_items)
|
|
224
223
|
next_dynamodb_keys = response.UnprocessedKeys?.[table_name]?.Keys || []
|