@better-giving/endowment 1.1.0 → 1.1.2
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.d.mts +2 -0
- package/package.json +4 -4
- package/src/db.mts +2 -0
package/dist/db.d.mts
CHANGED
|
@@ -19,6 +19,8 @@ export declare namespace Endow {
|
|
|
19
19
|
SK: Environment;
|
|
20
20
|
};
|
|
21
21
|
type NonKeyAttributes = EndowmentShape & {
|
|
22
|
+
/** will only be present for unclaimed NPOs */
|
|
23
|
+
updated_at_auto?: string;
|
|
22
24
|
/** in USD @deprecated */
|
|
23
25
|
payout_minimum?: number;
|
|
24
26
|
/** @deprecated */
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@better-giving/endowment",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@better-giving/schemas": "1.1.
|
|
6
|
-
"@better-giving/types": "1.1.
|
|
5
|
+
"@better-giving/schemas": "1.1.2",
|
|
6
|
+
"@better-giving/types": "1.1.2",
|
|
7
7
|
"valibot": "0.42.0"
|
|
8
8
|
},
|
|
9
9
|
"devDependencies": {
|
|
10
|
-
"@better-giving/config": "1.1.
|
|
10
|
+
"@better-giving/config": "1.1.2"
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
13
|
"src",
|
package/src/db.mts
CHANGED