From b06b6a8a8645057f9bb13db9d1cf5b6e9a856b64 Mon Sep 17 00:00:00 2001 From: Matthew Mauer Date: Fri, 17 Apr 2026 16:22:15 -0400 Subject: [PATCH] re-export user-insights types from node-apis package --- packages/cloudflare-worker/src/index.ts | 20 ++++++++++++++++++++ packages/node/src/index.ts | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/packages/cloudflare-worker/src/index.ts b/packages/cloudflare-worker/src/index.ts index dd53336..7bff216 100644 --- a/packages/cloudflare-worker/src/index.ts +++ b/packages/cloudflare-worker/src/index.ts @@ -69,6 +69,26 @@ export { IdpProvider, ApiKeyImportException } from "@propelauth/node-apis" +export { + ReengagementReportInterval, + ChampionReportInterval, + ChurnReportInterval, + GrowthReportInterval, + AttritionReportInterval, + TopInviterReportInterval, + ChartMetric, + ChartMetricCadence, +} from "@propelauth/node-apis" +export type { + ReportPagination, + UserReport, + UserReportRecord, + OrgReport, + OrgReportRecord, + UserOrgMembershipForReport, + ChartData, + ChartDataPoint, +} from "@propelauth/node-apis" export { User, Org, diff --git a/packages/node/src/index.ts b/packages/node/src/index.ts index d98b3b8..dd2a658 100644 --- a/packages/node/src/index.ts +++ b/packages/node/src/index.ts @@ -36,6 +36,26 @@ export { RevokePendingOrgInviteException, ApiKeyImportException, } from "@propelauth/node-apis" +export { + ReengagementReportInterval, + ChampionReportInterval, + ChurnReportInterval, + GrowthReportInterval, + AttritionReportInterval, + TopInviterReportInterval, + ChartMetric, + ChartMetricCadence, +} from "@propelauth/node-apis" +export type { + ReportPagination, + UserReport, + UserReportRecord, + OrgReport, + OrgReportRecord, + UserOrgMembershipForReport, + ChartData, + ChartDataPoint, +} from "@propelauth/node-apis" export type { AccessToken, AddUserToOrgRequest,