@better-giving/fundraiser 3.0.24 → 3.0.25
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/interfaces.d.mts +1 -1
- package/package.json +1 -1
- package/src/interfaces.mts +1 -0
package/dist/interfaces.d.mts
CHANGED
|
@@ -23,7 +23,7 @@ export interface IFundInternal extends IFundCreator {
|
|
|
23
23
|
}
|
|
24
24
|
export interface IFund extends IFundNew, IFundInternal {
|
|
25
25
|
}
|
|
26
|
-
export interface IFundItem extends Pick<IFundNew, "name" | "description" | "logo" | "banner" | "featured" | "members" | "target">, Pick<IFundInternal, "env" | "active" | "verified" | "donation_total_usd" | "creator_id" | "creator_name"> {
|
|
26
|
+
export interface IFundItem extends Pick<IFundNew, "name" | "description" | "logo" | "banner" | "featured" | "members" | "target">, Pick<IFundInternal, "id" | "env" | "active" | "verified" | "donation_total_usd" | "creator_id" | "creator_name"> {
|
|
27
27
|
/** Unix timestamp @default - 253402300799 */
|
|
28
28
|
expiration: number;
|
|
29
29
|
members_csv: string;
|
package/package.json
CHANGED