@wraps.dev/cli 2.19.5 → 2.19.6

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/cli.js CHANGED
@@ -17628,8 +17628,10 @@ async function createDynamoDBTables(config2) {
17628
17628
  globalSecondaryIndexes: [
17629
17629
  {
17630
17630
  name: "accountId-sentAt-index",
17631
- hashKey: "accountId",
17632
- rangeKey: "sentAt",
17631
+ keySchemas: [
17632
+ { attributeName: "accountId", keyType: "HASH" },
17633
+ { attributeName: "sentAt", keyType: "RANGE" }
17634
+ ],
17633
17635
  projectionType: "ALL"
17634
17636
  }
17635
17637
  ],
@@ -17659,8 +17661,10 @@ async function createDynamoDBTables(config2) {
17659
17661
  globalSecondaryIndexes: [
17660
17662
  {
17661
17663
  name: "accountId-sentAt-index",
17662
- hashKey: "accountId",
17663
- rangeKey: "sentAt",
17664
+ keySchemas: [
17665
+ { attributeName: "accountId", keyType: "HASH" },
17666
+ { attributeName: "sentAt", keyType: "RANGE" }
17667
+ ],
17664
17668
  projectionType: "ALL"
17665
17669
  }
17666
17670
  ],