Add disjoint activated segment to cohorts for stacking
All checks were successful
Tests / Tests (pull_request) Successful in 10s
All checks were successful
Tests / Tests (pull_request) Successful in 10s
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
@@ -263,6 +263,7 @@ export type ClusterAssignmentInput = {
|
|||||||
export type CohortStatsGql = {
|
export type CohortStatsGql = {
|
||||||
__typename?: "CohortStatsGQL";
|
__typename?: "CohortStatsGQL";
|
||||||
activated7d: Scalars["Int"]["output"];
|
activated7d: Scalars["Int"]["output"];
|
||||||
|
activatedNotPaid7d: Scalars["Int"]["output"];
|
||||||
paid7d: Scalars["Int"]["output"];
|
paid7d: Scalars["Int"]["output"];
|
||||||
signups: Scalars["Int"]["output"];
|
signups: Scalars["Int"]["output"];
|
||||||
weekStart: Scalars["Date"]["output"];
|
weekStart: Scalars["Date"]["output"];
|
||||||
@@ -7490,6 +7491,7 @@ export type GetUsageStatsQuery = {
|
|||||||
signups: number;
|
signups: number;
|
||||||
activated7d: number;
|
activated7d: number;
|
||||||
paid7d: number;
|
paid7d: number;
|
||||||
|
activatedNotPaid7d: number;
|
||||||
}>;
|
}>;
|
||||||
windows: Array<{
|
windows: Array<{
|
||||||
__typename?: "UsageStatsWindowGQL";
|
__typename?: "UsageStatsWindowGQL";
|
||||||
@@ -15809,6 +15811,7 @@ export const GetUsageStatsDocument = gql`
|
|||||||
signups
|
signups
|
||||||
activated7d
|
activated7d
|
||||||
paid7d
|
paid7d
|
||||||
|
activatedNotPaid7d
|
||||||
}
|
}
|
||||||
totalUsers
|
totalUsers
|
||||||
totalVideos
|
totalVideos
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ query getUsageStats($days: Int! = 30) {
|
|||||||
signups
|
signups
|
||||||
activated7d
|
activated7d
|
||||||
paid7d
|
paid7d
|
||||||
|
activatedNotPaid7d
|
||||||
}
|
}
|
||||||
totalUsers
|
totalUsers
|
||||||
totalVideos
|
totalVideos
|
||||||
|
|||||||
@@ -1199,6 +1199,7 @@ type CohortStatsGQL {
|
|||||||
signups: Int!
|
signups: Int!
|
||||||
activated7d: Int!
|
activated7d: Int!
|
||||||
paid7d: Int!
|
paid7d: Int!
|
||||||
|
activatedNotPaid7d: Int!
|
||||||
}
|
}
|
||||||
|
|
||||||
type UsageStatsWindowGQL {
|
type UsageStatsWindowGQL {
|
||||||
|
|||||||
Reference in New Issue
Block a user