@better-giving/fundraiser 3.0.25 → 3.0.26
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/schema.d.mts +2 -1
- package/dist/schema.mjs +2 -1
- package/package.json +1 -1
- package/src/schema.mts +2 -1
package/dist/schema.d.mts
CHANGED
|
@@ -147,4 +147,5 @@ export interface IFundsSearchObj extends InferOutput<typeof funds_search> {
|
|
|
147
147
|
}
|
|
148
148
|
export interface IFundsNpoMemberOfSearchObj extends InferOutput<typeof funds_npo_memberof_search> {
|
|
149
149
|
}
|
|
150
|
-
export declare const
|
|
150
|
+
export declare const MAX_EXPIRATION_ISO = "9999-12-31T23:59:59Z";
|
|
151
|
+
export declare const MAX_EXPIRATION_UNIX = 253402300799;
|
package/dist/schema.mjs
CHANGED
|
@@ -53,4 +53,5 @@ export const funds_npo_memberof_search = object({
|
|
|
53
53
|
*/
|
|
54
54
|
npo_profile_featured: optional(pipe($, transform((x) => x === "true"), boolean())),
|
|
55
55
|
});
|
|
56
|
-
export const
|
|
56
|
+
export const MAX_EXPIRATION_ISO = "9999-12-31T23:59:59Z";
|
|
57
|
+
export const MAX_EXPIRATION_UNIX = 253402300799;
|
package/package.json
CHANGED
package/src/schema.mts
CHANGED
|
@@ -111,4 +111,5 @@ export interface IFundsSearchObj extends InferOutput<typeof funds_search> {}
|
|
|
111
111
|
export interface IFundsNpoMemberOfSearchObj
|
|
112
112
|
extends InferOutput<typeof funds_npo_memberof_search> {}
|
|
113
113
|
|
|
114
|
-
export const
|
|
114
|
+
export const MAX_EXPIRATION_ISO = "9999-12-31T23:59:59Z";
|
|
115
|
+
export const MAX_EXPIRATION_UNIX = 253402300799;
|