@better-giving/endowment 4.0.27 → 4.0.28

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/db.mjs CHANGED
@@ -1,3 +1,4 @@
1
+ import crypto from "node:crypto";
1
2
  import { BatchGetCommand, DeleteCommand, GetCommand, PutCommand, QueryCommand, TransactWriteCommand, UpdateCommand, } from "@aws-sdk/lib-dynamodb";
2
3
  import { Db, Txs, UpdateBuilder, } from "@better-giving/db";
3
4
  import KSUID from "ksuid";
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@better-giving/endowment",
3
- "version": "4.0.27",
3
+ "version": "4.0.28",
4
4
  "dependencies": {
5
5
  "ksuid": "3.0.0"
6
6
  },
7
7
  "peerDependencies": {
8
- "@better-giving/schemas": "2.0.1",
8
+ "@better-giving/schemas": "2.0.2",
9
9
  "@better-giving/types": "1.1.8",
10
10
  "@better-giving/db": "2.0.6",
11
11
  "@aws-sdk/lib-dynamodb": "3.485.0",
package/src/db.mts CHANGED
@@ -1,3 +1,4 @@
1
+ import crypto from "node:crypto";
1
2
  import {
2
3
  BatchGetCommand,
3
4
  DeleteCommand,