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,