@@ -1125,7 +1125,6 @@ export enum SubscriptionOrigin {
1125
1125
}
1126
1126
1127
1127
export enum SubscriptionPaymentProvider {
1128
- Paddle = 'PADDLE' ,
1129
1128
Stripe = 'STRIPE' ,
1130
1129
}
1131
1130
@@ -2013,6 +2012,7 @@ export type RootMutationType = {
2013
2012
* with Stripe in a way that is more appropriate for a mutation than a query.
2014
2013
*/
2015
2014
previewConvertToUsageBilling : InvoicePreview ;
2015
+ /** @deprecated Subscription management no longer supported via GraphQL */
2016
2016
previewUpdateSubscriptionBillingInterval : BillingPreview ;
2017
2017
reactivateSubscription : ProSubscription ;
2018
2018
redeemSandboxInvitation : Invitation ;
@@ -2167,8 +2167,12 @@ export type RootMutationType = {
2167
2167
* Not passing a specific argument will leave it unchanged, explicitly passing `null` will revert it to the default.
2168
2168
*/
2169
2169
updateSandboxSettings : SandboxSettings ;
2170
- /** update subscription details (not billing details) */
2170
+ /**
2171
+ * update subscription details (not billing details)
2172
+ * @deprecated Subscription management no longer supported via GraphQL
2173
+ */
2171
2174
updateSubscription : ProSubscription ;
2175
+ /** @deprecated Subscription management no longer supported via GraphQL */
2172
2176
updateSubscriptionBillingInterval : ProSubscription ;
2173
2177
/**
2174
2178
* Update an active usage-based billing subscription.
@@ -2273,7 +2277,6 @@ export type RootMutationTypeCreateCollectionArgs = {
2273
2277
} ;
2274
2278
2275
2279
export type RootMutationTypeCreateCommentArgs = {
2276
- codeReference : InputMaybe < CodeReference > ;
2277
2280
codeReferences : InputMaybe < Array < CodeReference > > ;
2278
2281
content : Scalars [ 'String' ] ;
2279
2282
id : InputMaybe < Scalars [ 'ID' ] > ;
@@ -4558,6 +4561,7 @@ export type SandboxFragmentDashboardFragment = {
4558
4561
path : string ;
4559
4562
id : any | null ;
4560
4563
} | null ;
4564
+ author : { __typename ?: 'User' ; username : string } | null ;
4561
4565
permissions : {
4562
4566
__typename ?: 'SandboxProtectionSettings' ;
4563
4567
preventSandboxLeaving : boolean ;
@@ -4621,6 +4625,7 @@ export type RepoFragmentDashboardFragment = {
4621
4625
path : string ;
4622
4626
id : any | null ;
4623
4627
} | null ;
4628
+ author : { __typename ?: 'User' ; username : string } | null ;
4624
4629
permissions : {
4625
4630
__typename ?: 'SandboxProtectionSettings' ;
4626
4631
preventSandboxLeaving : boolean ;
@@ -4880,6 +4885,7 @@ export type BranchFragment = {
4880
4885
contribution : boolean ;
4881
4886
lastAccessedAt : string | null ;
4882
4887
upstream : boolean ;
4888
+ owner : { __typename ?: 'User' ; username : string } | null ;
4883
4889
project : {
4884
4890
__typename ?: 'Project' ;
4885
4891
repository : {
@@ -4900,6 +4906,7 @@ export type BranchWithPrFragment = {
4900
4906
contribution : boolean ;
4901
4907
lastAccessedAt : string | null ;
4902
4908
upstream : boolean ;
4909
+ owner : { __typename ?: 'User' ; username : string } | null ;
4903
4910
project : {
4904
4911
__typename ?: 'Project' ;
4905
4912
repository : {
@@ -4945,6 +4952,7 @@ export type ProjectWithBranchesFragment = {
4945
4952
contribution : boolean ;
4946
4953
lastAccessedAt : string | null ;
4947
4954
upstream : boolean ;
4955
+ owner : { __typename ?: 'User' ; username : string } | null ;
4948
4956
project : {
4949
4957
__typename ?: 'Project' ;
4950
4958
repository : {
@@ -5152,6 +5160,7 @@ export type AddToFolderMutation = {
5152
5160
path : string ;
5153
5161
id : any | null ;
5154
5162
} | null ;
5163
+ author : { __typename ?: 'User' ; username : string } | null ;
5155
5164
permissions : {
5156
5165
__typename ?: 'SandboxProtectionSettings' ;
5157
5166
preventSandboxLeaving : boolean ;
@@ -5205,6 +5214,7 @@ export type MoveToTrashMutation = {
5205
5214
path : string ;
5206
5215
id : any | null ;
5207
5216
} | null ;
5217
+ author : { __typename ?: 'User' ; username : string } | null ;
5208
5218
permissions : {
5209
5219
__typename ?: 'SandboxProtectionSettings' ;
5210
5220
preventSandboxLeaving : boolean ;
@@ -5259,6 +5269,7 @@ export type ChangePrivacyMutation = {
5259
5269
path : string ;
5260
5270
id : any | null ;
5261
5271
} | null ;
5272
+ author : { __typename ?: 'User' ; username : string } | null ;
5262
5273
permissions : {
5263
5274
__typename ?: 'SandboxProtectionSettings' ;
5264
5275
preventSandboxLeaving : boolean ;
@@ -5313,6 +5324,7 @@ export type ChangeFrozenMutation = {
5313
5324
path : string ;
5314
5325
id : any | null ;
5315
5326
} | null ;
5327
+ author : { __typename ?: 'User' ; username : string } | null ;
5316
5328
permissions : {
5317
5329
__typename ?: 'SandboxProtectionSettings' ;
5318
5330
preventSandboxLeaving : boolean ;
@@ -5367,6 +5379,7 @@ export type _RenameSandboxMutation = {
5367
5379
path : string ;
5368
5380
id : any | null ;
5369
5381
} | null ;
5382
+ author : { __typename ?: 'User' ; username : string } | null ;
5370
5383
permissions : {
5371
5384
__typename ?: 'SandboxProtectionSettings' ;
5372
5385
preventSandboxLeaving : boolean ;
@@ -5860,6 +5873,7 @@ export type RecentlyDeletedTeamSandboxesQuery = {
5860
5873
path : string ;
5861
5874
id : any | null ;
5862
5875
} | null ;
5876
+ author : { __typename ?: 'User' ; username : string } | null ;
5863
5877
permissions : {
5864
5878
__typename ?: 'SandboxProtectionSettings' ;
5865
5879
preventSandboxLeaving : boolean ;
@@ -5928,6 +5942,7 @@ export type SandboxesByPathQuery = {
5928
5942
path : string ;
5929
5943
id : any | null ;
5930
5944
} | null ;
5945
+ author : { __typename ?: 'User' ; username : string } | null ;
5931
5946
permissions : {
5932
5947
__typename ?: 'SandboxProtectionSettings' ;
5933
5948
preventSandboxLeaving : boolean ;
@@ -5988,6 +6003,7 @@ export type TeamDraftsQuery = {
5988
6003
path : string ;
5989
6004
id : any | null ;
5990
6005
} | null ;
6006
+ author : { __typename ?: 'User' ; username : string } | null ;
5991
6007
permissions : {
5992
6008
__typename ?: 'SandboxProtectionSettings' ;
5993
6009
preventSandboxLeaving : boolean ;
@@ -6081,6 +6097,7 @@ export type GetTeamReposQuery = {
6081
6097
path : string ;
6082
6098
id : any | null ;
6083
6099
} | null ;
6100
+ author : { __typename ?: 'User' ; username : string } | null ;
6084
6101
permissions : {
6085
6102
__typename ?: 'SandboxProtectionSettings' ;
6086
6103
preventSandboxLeaving : boolean ;
@@ -6287,6 +6304,7 @@ export type _SearchTeamSandboxesQuery = {
6287
6304
path : string ;
6288
6305
id : any | null ;
6289
6306
} | null ;
6307
+ author : { __typename ?: 'User' ; username : string } | null ;
6290
6308
permissions : {
6291
6309
__typename ?: 'SandboxProtectionSettings' ;
6292
6310
preventSandboxLeaving : boolean ;
@@ -6345,6 +6363,7 @@ export type RecentlyAccessedSandboxesQuery = {
6345
6363
path : string ;
6346
6364
id : any | null ;
6347
6365
} | null ;
6366
+ author : { __typename ?: 'User' ; username : string } | null ;
6348
6367
permissions : {
6349
6368
__typename ?: 'SandboxProtectionSettings' ;
6350
6369
preventSandboxLeaving : boolean ;
@@ -6370,6 +6389,7 @@ export type RecentlyAccessedBranchesQuery = {
6370
6389
contribution : boolean ;
6371
6390
lastAccessedAt : string | null ;
6372
6391
upstream : boolean ;
6392
+ owner : { __typename ?: 'User' ; username : string } | null ;
6373
6393
project : {
6374
6394
__typename ?: 'Project' ;
6375
6395
repository : {
@@ -6432,6 +6452,7 @@ export type SharedWithMeSandboxesQuery = {
6432
6452
path : string ;
6433
6453
id : any | null ;
6434
6454
} | null ;
6455
+ author : { __typename ?: 'User' ; username : string } | null ;
6435
6456
permissions : {
6436
6457
__typename ?: 'SandboxProtectionSettings' ;
6437
6458
preventSandboxLeaving : boolean ;
@@ -6581,6 +6602,7 @@ export type ContributionBranchesQuery = {
6581
6602
contribution : boolean ;
6582
6603
lastAccessedAt : string | null ;
6583
6604
upstream : boolean ;
6605
+ owner : { __typename ?: 'User' ; username : string } | null ;
6584
6606
project : {
6585
6607
__typename ?: 'Project' ;
6586
6608
repository : {
@@ -6645,6 +6667,7 @@ export type RepositoryByDetailsQuery = {
6645
6667
contribution : boolean ;
6646
6668
lastAccessedAt : string | null ;
6647
6669
upstream : boolean ;
6670
+ owner : { __typename ?: 'User' ; username : string } | null ;
6648
6671
project : {
6649
6672
__typename ?: 'Project' ;
6650
6673
repository : {
@@ -7026,6 +7049,7 @@ export type TeamSidebarDataQuery = {
7026
7049
path : string ;
7027
7050
id : any | null ;
7028
7051
} | null ;
7052
+ author : { __typename ?: 'User' ; username : string } | null ;
7029
7053
permissions : {
7030
7054
__typename ?: 'SandboxProtectionSettings' ;
7031
7055
preventSandboxLeaving : boolean ;
0 commit comments