From d7d90556d95d3e6f0c799733cb09e8f9a5bb80ae Mon Sep 17 00:00:00 2001 From: Matthew Mauer Date: Mon, 20 Apr 2026 14:37:46 -0400 Subject: [PATCH 1/2] re-export types for user-insights apis --- src/index.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/index.ts b/src/index.ts index a84d825..53cd623 100644 --- a/src/index.ts +++ b/src/index.ts @@ -109,6 +109,26 @@ export type { MfaTotpType, } from "@propelauth/node" +export { + ReengagementReportInterval, + ChampionReportInterval, + ChurnReportInterval, + GrowthReportInterval, + AttritionReportInterval, + TopInviterReportInterval, + ChartMetric, + ChartMetricCadence, +} from "@propelauth/node" +export type { + ReportPagination, + UserReport, + UserReportRecord, + OrgReport, + OrgReportRecord, + UserOrgMembershipForReport, + ChartData, + ChartDataPoint, +} from "@propelauth/node" export { AuthOptions, initAuth } from "./auth" export type { RequireOrgMemberArgs } from "./auth" export type { BaseAuthOptions, User, OrgMemberInfo } From 6d328bb76fc01b6a76cc3d2a38ee730006df602c Mon Sep 17 00:00:00 2001 From: Matthew Mauer Date: Tue, 21 Apr 2026 15:23:16 -0400 Subject: [PATCH 2/2] bump node dep to 2.1.35 and this version to same --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 5c50bb1..fff7528 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "type": "git", "url": "https://github.com/PropelAuth/express" }, - "version": "2.1.34", + "version": "2.1.35", "license": "MIT", "keywords": [ "auth", @@ -12,7 +12,7 @@ "user" ], "dependencies": { - "@propelauth/node": "^2.1.34" + "@propelauth/node": "^2.1.35" }, "devDependencies": { "@rollup/plugin-commonjs": "^19.0.0",