create sub
All checks were successful
Tests / Tests (pull_request) Successful in 56s

This commit is contained in:
2025-07-09 11:41:57 -07:00
parent 49d43b2703
commit ddee57f4c2
2 changed files with 17 additions and 0 deletions

View File

@@ -907,6 +907,7 @@ type Mutation {
retireTags(tagIds: [Int!]!): Boolean!
ensureStripeCustomerExists: UserGQL!
deleteUser: Boolean!
createSubscription(priceId: String!): CreateSubscriptionResultGQL!
findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL
createUploadStream(
videoMetadata: VideoMetadataInput!
@@ -1016,6 +1017,11 @@ input EditUserInputGQL {
videosPrivateByDefault: Boolean = null
}
type CreateSubscriptionResultGQL {
checkoutUrl: String!
sessionId: String!
}
type CreateUploadStreamReturn {
videoId: Int!
}