@spaceandtimelabs/makeinfinite-ui 0.63.0 → 0.64.0

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.ts CHANGED
@@ -159,6 +159,8 @@ export declare const APIHandler: (baseUrl: string) => {
159
159
  }) => Promise<Response>;
160
160
  initializeProject: (projectName: string) => Promise<Response>;
161
161
  getUserSpendAnalytics: () => Promise<Response>;
162
+ getCreatorPointsSum: (projectName?: string | null) => Promise<Response>;
163
+ getCreatorPointsTop: (n?: number) => Promise<Response>;
162
164
  };
163
165
 
164
166
  declare type APIHandlerType = ReturnType<typeof APIHandler>;