Compare commits
2 Commits
dean/shot-
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 032fa6b898 | |||
|
|
81565b7676 |
@@ -265,6 +265,7 @@ export type CohortStatsGql = {
|
|||||||
activated7d: Scalars["Int"]["output"];
|
activated7d: Scalars["Int"]["output"];
|
||||||
activatedNotPaid7d: Scalars["Int"]["output"];
|
activatedNotPaid7d: Scalars["Int"]["output"];
|
||||||
paid7d: Scalars["Int"]["output"];
|
paid7d: Scalars["Int"]["output"];
|
||||||
|
paidTotal: Scalars["Int"]["output"];
|
||||||
signups: Scalars["Int"]["output"];
|
signups: Scalars["Int"]["output"];
|
||||||
weekStart: Scalars["Date"]["output"];
|
weekStart: Scalars["Date"]["output"];
|
||||||
};
|
};
|
||||||
@@ -2323,6 +2324,8 @@ export type FunnelStatsGql = {
|
|||||||
freemiumEpoch: Scalars["Date"]["output"];
|
freemiumEpoch: Scalars["Date"]["output"];
|
||||||
newPaid7d: Scalars["Int"]["output"];
|
newPaid7d: Scalars["Int"]["output"];
|
||||||
newPaid30d: Scalars["Int"]["output"];
|
newPaid30d: Scalars["Int"]["output"];
|
||||||
|
newPaidToday: Scalars["Int"]["output"];
|
||||||
|
pastDueUsers: Scalars["Int"]["output"];
|
||||||
payingUsers: Scalars["Int"]["output"];
|
payingUsers: Scalars["Int"]["output"];
|
||||||
retentionPrevActive: Scalars["Int"]["output"];
|
retentionPrevActive: Scalars["Int"]["output"];
|
||||||
retentionReturned: Scalars["Int"]["output"];
|
retentionReturned: Scalars["Int"]["output"];
|
||||||
@@ -8155,6 +8158,8 @@ export type GetUsageStatsQuery = {
|
|||||||
activationCohort: number;
|
activationCohort: number;
|
||||||
activationActivated: number;
|
activationActivated: number;
|
||||||
payingUsers: number;
|
payingUsers: number;
|
||||||
|
pastDueUsers: number;
|
||||||
|
newPaidToday: number;
|
||||||
newPaid7d: number;
|
newPaid7d: number;
|
||||||
newPaid30d: number;
|
newPaid30d: number;
|
||||||
retentionPrevActive: number;
|
retentionPrevActive: number;
|
||||||
@@ -8167,6 +8172,7 @@ export type GetUsageStatsQuery = {
|
|||||||
activated7d: number;
|
activated7d: number;
|
||||||
paid7d: number;
|
paid7d: number;
|
||||||
activatedNotPaid7d: number;
|
activatedNotPaid7d: number;
|
||||||
|
paidTotal: number;
|
||||||
}>;
|
}>;
|
||||||
windows: Array<{
|
windows: Array<{
|
||||||
__typename?: "UsageStatsWindowGQL";
|
__typename?: "UsageStatsWindowGQL";
|
||||||
@@ -17254,6 +17260,8 @@ export const GetUsageStatsDocument = gql`
|
|||||||
activationCohort
|
activationCohort
|
||||||
activationActivated
|
activationActivated
|
||||||
payingUsers
|
payingUsers
|
||||||
|
pastDueUsers
|
||||||
|
newPaidToday
|
||||||
newPaid7d
|
newPaid7d
|
||||||
newPaid30d
|
newPaid30d
|
||||||
retentionPrevActive
|
retentionPrevActive
|
||||||
@@ -17265,6 +17273,7 @@ export const GetUsageStatsDocument = gql`
|
|||||||
activated7d
|
activated7d
|
||||||
paid7d
|
paid7d
|
||||||
activatedNotPaid7d
|
activatedNotPaid7d
|
||||||
|
paidTotal
|
||||||
}
|
}
|
||||||
totalUsers
|
totalUsers
|
||||||
totalVideos
|
totalVideos
|
||||||
|
|||||||
@@ -7,6 +7,8 @@ query getUsageStats($days: Int! = 30) {
|
|||||||
activationCohort
|
activationCohort
|
||||||
activationActivated
|
activationActivated
|
||||||
payingUsers
|
payingUsers
|
||||||
|
pastDueUsers
|
||||||
|
newPaidToday
|
||||||
newPaid7d
|
newPaid7d
|
||||||
newPaid30d
|
newPaid30d
|
||||||
retentionPrevActive
|
retentionPrevActive
|
||||||
@@ -18,6 +20,7 @@ query getUsageStats($days: Int! = 30) {
|
|||||||
activated7d
|
activated7d
|
||||||
paid7d
|
paid7d
|
||||||
activatedNotPaid7d
|
activatedNotPaid7d
|
||||||
|
paidTotal
|
||||||
}
|
}
|
||||||
totalUsers
|
totalUsers
|
||||||
totalVideos
|
totalVideos
|
||||||
|
|||||||
@@ -214,6 +214,7 @@ type CohortStatsGQL {
|
|||||||
activated7d: Int!
|
activated7d: Int!
|
||||||
paid7d: Int!
|
paid7d: Int!
|
||||||
activatedNotPaid7d: Int!
|
activatedNotPaid7d: Int!
|
||||||
|
paidTotal: Int!
|
||||||
}
|
}
|
||||||
|
|
||||||
type CommentGQL {
|
type CommentGQL {
|
||||||
@@ -264,6 +265,11 @@ input CreatePoolHallInput {
|
|||||||
timezone: String = null
|
timezone: String = null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input CreateShotShareLinkInput {
|
||||||
|
shotIds: [Int!]!
|
||||||
|
paddingSeconds: Float = null
|
||||||
|
}
|
||||||
|
|
||||||
type CreateSubscriptionResultGQL {
|
type CreateSubscriptionResultGQL {
|
||||||
checkoutUrl: String!
|
checkoutUrl: String!
|
||||||
sessionId: String!
|
sessionId: String!
|
||||||
@@ -464,6 +470,8 @@ type FunnelStatsGQL {
|
|||||||
activationCohort: Int!
|
activationCohort: Int!
|
||||||
activationActivated: Int!
|
activationActivated: Int!
|
||||||
payingUsers: Int!
|
payingUsers: Int!
|
||||||
|
pastDueUsers: Int!
|
||||||
|
newPaidToday: Int!
|
||||||
newPaid7d: Int!
|
newPaid7d: Int!
|
||||||
newPaid30d: Int!
|
newPaid30d: Int!
|
||||||
retentionPrevActive: Int!
|
retentionPrevActive: Int!
|
||||||
@@ -1459,6 +1467,11 @@ enum SessionCoachStateEnum {
|
|||||||
FAILED
|
FAILED
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type ShareLinkGQL {
|
||||||
|
slug: String!
|
||||||
|
url: String!
|
||||||
|
}
|
||||||
|
|
||||||
type ShotAnnotationGQL {
|
type ShotAnnotationGQL {
|
||||||
shotId: Int!
|
shotId: Int!
|
||||||
type: ShotAnnotationTypeGQL!
|
type: ShotAnnotationTypeGQL!
|
||||||
|
|||||||
Reference in New Issue
Block a user