@better-giving/fundraiser 3.0.13 → 3.0.14

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 CHANGED
@@ -1,5 +1,9 @@
1
+ import type { IPageNumbered } from "@better-giving/types/api";
2
+ import type { CloudsearchFund } from "./cloudsearch.mjs";
1
3
  export type { CloudsearchFund as FundItem } from "./cloudsearch.mjs";
2
4
  export type { IFundNew, IFundUpdate, IFundsNpoMemberOfSearchObj, IFundsSearchObj, DonateMethodId, Environment, } from "./schema.mjs";
3
5
  export { MAX_EXPIRATION } from "./schema.mjs";
4
6
  export type * from "./interfaces.mjs";
5
7
  export { FundDb } from "./db.mjs";
8
+ export interface IFundsPage extends IPageNumbered<CloudsearchFund> {
9
+ }
@@ -1,6 +1,4 @@
1
1
  import type { DonateMethodId, Environment } from "@better-giving/schemas";
2
- import type { IPageNumbered } from "@better-giving/types/api";
3
- import type { CloudsearchFund } from "./cloudsearch.mjs";
4
2
  import type { IFundNew } from "./schema.mjs";
5
3
  export interface IFundSettings {
6
4
  hide_bg_tip: boolean;
@@ -24,5 +22,3 @@ export interface IFundInternal extends IFundCreator {
24
22
  }
25
23
  export interface IFund extends IFundNew, IFundInternal {
26
24
  }
27
- export interface IFundsPage extends IPageNumbered<CloudsearchFund> {
28
- }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@better-giving/fundraiser",
3
- "version": "3.0.13",
3
+ "version": "3.0.14",
4
4
  "peerDependencies": {
5
5
  "valibot": "0.42.0",
6
6
  "@better-giving/schemas": "2.0.0",
package/src/index.mts CHANGED
@@ -1,3 +1,6 @@
1
+ import type { IPageNumbered } from "@better-giving/types/api";
2
+ import type { CloudsearchFund } from "./cloudsearch.mjs";
3
+
1
4
  export type { CloudsearchFund as FundItem } from "./cloudsearch.mjs";
2
5
  export type {
3
6
  IFundNew,
@@ -10,3 +13,5 @@ export type {
10
13
  export { MAX_EXPIRATION } from "./schema.mjs";
11
14
  export type * from "./interfaces.mjs";
12
15
  export { FundDb } from "./db.mjs";
16
+
17
+ export interface IFundsPage extends IPageNumbered<CloudsearchFund> {}
@@ -1,6 +1,4 @@
1
1
  import type { DonateMethodId, Environment } from "@better-giving/schemas";
2
- import type { IPageNumbered } from "@better-giving/types/api";
3
- import type { CloudsearchFund } from "./cloudsearch.mjs";
4
2
  import type { IFundNew } from "./schema.mjs";
5
3
 
6
4
  export interface IFundSettings {
@@ -27,5 +25,3 @@ export interface IFundInternal extends IFundCreator {
27
25
  }
28
26
 
29
27
  export interface IFund extends IFundNew, IFundInternal {}
30
-
31
- export interface IFundsPage extends IPageNumbered<CloudsearchFund> {}