@better-giving/fundraiser 5.0.0 → 5.0.1

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 CHANGED
@@ -25,6 +25,8 @@ export declare class FundDb extends Db {
25
25
  readonly npo_owner: number;
26
26
  readonly slug?: string | undefined;
27
27
  readonly id: string;
28
+ readonly spam_score?: number;
29
+ readonly date_created?: string;
28
30
  readonly env: import("@better-giving/schemas").Environment;
29
31
  readonly active: boolean;
30
32
  readonly verified: boolean;
@@ -13,6 +13,8 @@ export interface IFundCreator {
13
13
  export interface IFundInternal extends IFundCreator {
14
14
  /** uuid */
15
15
  id: string;
16
+ spam_score?: number;
17
+ date_created?: string;
16
18
  env: Environment;
17
19
  /** fund can be closed before expiration */
18
20
  active: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@better-giving/fundraiser",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "peerDependencies": {
5
5
  "valibot": "1.2.0",
6
6
  "@better-giving/schemas": "2.2.0",
@@ -16,6 +16,8 @@ export interface IFundCreator {
16
16
  export interface IFundInternal extends IFundCreator {
17
17
  /** uuid */
18
18
  id: string;
19
+ spam_score?: number;
20
+ date_created?: string;
19
21
  env: Environment;
20
22
  /** fund can be closed before expiration */
21
23
  active: boolean;