@gugananuvem/aws-local-simulator 1.0.26 → 1.0.27

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gugananuvem/aws-local-simulator",
3
- "version": "1.0.26",
3
+ "version": "1.0.27",
4
4
  "description": "Simulador local completo para serviços AWS",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -66,6 +66,6 @@
66
66
  "publishConfig": {
67
67
  "directory": "dist"
68
68
  },
69
- "buildDate": "2026-04-27T11:03:00.202Z",
69
+ "buildDate": "2026-04-30T13:14:35.548Z",
70
70
  "published": true
71
71
  }
@@ -480,7 +480,9 @@ class DynamoDBSimulator {
480
480
  }
481
481
 
482
482
  this.store.write(tableName, items);
483
- responses[tableName] = { UnprocessedItems: unprocessedItems };
483
+ if (unprocessedItems.length > 0) {
484
+ responses[tableName] = unprocessedItems;
485
+ }
484
486
  }
485
487
 
486
488
  this.persistTables();