@better-giving/fundraiser 3.0.11 → 3.0.13
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/index.d.mts +1 -1
- package/dist/index.mjs +1 -1
- package/dist/schema.d.mts +1 -0
- package/dist/schema.mjs +1 -0
- package/package.json +2 -4
- package/src/index.mts +1 -2
- package/src/schema.mts +2 -0
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export type { CloudsearchFund as FundItem } from "./cloudsearch.mjs";
|
|
2
2
|
export type { IFundNew, IFundUpdate, IFundsNpoMemberOfSearchObj, IFundsSearchObj, DonateMethodId, Environment, } from "./schema.mjs";
|
|
3
|
+
export { MAX_EXPIRATION } from "./schema.mjs";
|
|
3
4
|
export type * from "./interfaces.mjs";
|
|
4
5
|
export { FundDb } from "./db.mjs";
|
|
5
|
-
export declare const MAX_EXPIRATION = "9999-12-31T23:59:59Z";
|
package/dist/index.mjs
CHANGED
package/dist/schema.d.mts
CHANGED
package/dist/schema.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@better-giving/fundraiser",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.13",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"valibot": "0.42.0",
|
|
6
6
|
"@better-giving/schemas": "2.0.0",
|
|
@@ -17,9 +17,7 @@
|
|
|
17
17
|
],
|
|
18
18
|
"exports": {
|
|
19
19
|
".": "./dist/index.mjs",
|
|
20
|
-
"
|
|
21
|
-
"./db": "./dist/db.mjs",
|
|
22
|
-
"./cloudsearch": "./dist/cloudsearch.mjs"
|
|
20
|
+
"./*": "./dist/*.mjs"
|
|
23
21
|
},
|
|
24
22
|
"scripts": {
|
|
25
23
|
"build": "tsc --outDir dist"
|
package/src/index.mts
CHANGED
package/src/schema.mts
CHANGED
|
@@ -110,3 +110,5 @@ export interface IFundUpdate extends InferOutput<typeof fund_update> {}
|
|
|
110
110
|
export interface IFundsSearchObj extends InferOutput<typeof funds_search> {}
|
|
111
111
|
export interface IFundsNpoMemberOfSearchObj
|
|
112
112
|
extends InferOutput<typeof funds_npo_memberof_search> {}
|
|
113
|
+
|
|
114
|
+
export const MAX_EXPIRATION = "9999-12-31T23:59:59Z";
|