add createSubscription
All checks were successful
Tests / Tests (pull_request) Successful in 9s

This commit is contained in:
2025-07-08 16:20:14 -07:00
parent 2b43493a4f
commit 567cbc549c
2 changed files with 17 additions and 0 deletions

View File

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