@@ -186,7 +186,7 @@ export type CurrentUser = {
186
186
collections : Array < Collection > ;
187
187
deletionRequested : Scalars [ 'Boolean' ] ;
188
188
email : Scalars [ 'String' ] ;
189
- /** Get enabled feature flags for all teams user is in */
189
+ /** @deprecated Field no longer supported */
190
190
featureFlags : Array < FeatureFlag > ;
191
191
/** Get all of the current user's GitHub organizations */
192
192
githubOrganizations : Maybe < Array < GithubOrganization > > ;
@@ -297,6 +297,7 @@ export type FeatureFlag = {
297
297
enabled : Scalars [ 'Boolean' ] ;
298
298
id : Scalars [ 'UUID4' ] ;
299
299
name : Scalars [ 'String' ] ;
300
+ /** @deprecated Field no longer supported */
300
301
teams : Array < Team > ;
301
302
} ;
302
303
@@ -596,9 +597,11 @@ export enum ProviderName {
596
597
597
598
export type PullRequest = {
598
599
__typename ?: 'PullRequest' ;
600
+ baseRepository : Repository ;
599
601
creator : Maybe < User > ;
600
602
creatorUsername : Scalars [ 'String' ] ;
601
603
draft : Scalars [ 'Boolean' ] ;
604
+ htmlUrl : Scalars [ 'String' ] ;
602
605
number : Scalars [ 'Int' ] ;
603
606
prClosedAt : Maybe < Scalars [ 'DateTime' ] > ;
604
607
prCreatedAt : Maybe < Scalars [ 'DateTime' ] > ;
@@ -671,7 +674,7 @@ export type RootMutationType = {
671
674
/** Create a collection */
672
675
createCollection : Collection ;
673
676
createComment : Comment ;
674
- /** Create a feature flag */
677
+ /** @deprecated Field no longer supported */
675
678
createFeatureFlag : FeatureFlag ;
676
679
/** Create or Update a private registry */
677
680
createOrUpdatePrivateNpmRegistry : PrivateRegistry ;
@@ -691,13 +694,13 @@ export type RootMutationType = {
691
694
/** Delete sandboxes */
692
695
deleteSandboxes : Array < Sandbox > ;
693
696
deleteWorkspace : Scalars [ 'String' ] ;
694
- /** Disable a feature flag globally */
697
+ /** @deprecated Field no longer supported */
695
698
disableFeatureFlag : FeatureFlag ;
696
- /** Disable a feature flag for a team */
699
+ /** @deprecated Field no longer supported */
697
700
disableFeatureFlagForTeam : TeamsFeatureFlag ;
698
- /** Enable a feature flag globally */
701
+ /** @deprecated Field no longer supported */
699
702
enableFeatureFlag : FeatureFlag ;
700
- /** Enable a feature flag for a team */
703
+ /** @deprecated Field no longer supported */
701
704
enableFeatureFlagForTeam : TeamsFeatureFlag ;
702
705
/** Enable beta-access for team and all members */
703
706
enableTeamBetaAccess : Team ;
@@ -1163,7 +1166,7 @@ export type RootQueryType = {
1163
1166
album : Maybe < Album > ;
1164
1167
albums : Array < Album > ;
1165
1168
curatedAlbums : Array < Album > ;
1166
- /** Get all feature flags */
1169
+ /** @deprecated Field no longer supported */
1167
1170
featureFlags : Array < FeatureFlag > ;
1168
1171
/** Get git repo and related V1 sandboxes */
1169
1172
git : Maybe < Git > ;
@@ -1621,46 +1624,6 @@ export type ListPersonalTemplatesQuery = { __typename?: 'RootQueryType' } & {
1621
1624
> ;
1622
1625
} ;
1623
1626
1624
- export type ListTemplatesQueryVariables = Exact < {
1625
- showAll : Maybe < Scalars [ 'Boolean' ] > ;
1626
- } > ;
1627
-
1628
- export type ListTemplatesQuery = { __typename ?: 'RootQueryType' } & {
1629
- me : Maybe <
1630
- { __typename ?: 'CurrentUser' } & {
1631
- templates : Array < { __typename ?: 'Template' } & TemplateFragment > ;
1632
- teams : Array <
1633
- { __typename ?: 'Team' } & Pick < Team , 'id' | 'name' > & {
1634
- templates : Array < { __typename ?: 'Template' } & TemplateFragment > ;
1635
- }
1636
- > ;
1637
- }
1638
- > ;
1639
- } ;
1640
-
1641
- export type ListPersonalBookmarkedTemplatesQueryVariables = Exact < {
1642
- [ key : string ] : never ;
1643
- } > ;
1644
-
1645
- export type ListPersonalBookmarkedTemplatesQuery = {
1646
- __typename ?: 'RootQueryType' ;
1647
- } & {
1648
- me : Maybe <
1649
- { __typename ?: 'CurrentUser' } & {
1650
- teams : Array <
1651
- { __typename ?: 'Team' } & Pick < Team , 'id' | 'name' > & {
1652
- bookmarkedTemplates : Array <
1653
- { __typename ?: 'Template' } & TemplateFragment
1654
- > ;
1655
- }
1656
- > ;
1657
- bookmarkedTemplates : Array <
1658
- { __typename ?: 'Template' } & TemplateFragment
1659
- > ;
1660
- }
1661
- > ;
1662
- } ;
1663
-
1664
1627
export type GetGithubRepoQueryVariables = Exact < {
1665
1628
owner : Scalars [ 'String' ] ;
1666
1629
name : Scalars [ 'String' ] ;
@@ -1705,30 +1668,6 @@ export type GetGithubOrganizationsQuery = { __typename?: 'RootQueryType' } & {
1705
1668
> ;
1706
1669
} ;
1707
1670
1708
- export type MakeSandboxesTemplateMutationVariables = Exact < {
1709
- sandboxIds : Array < Scalars [ 'ID' ] > ;
1710
- } > ;
1711
-
1712
- export type MakeSandboxesTemplateMutation = {
1713
- __typename ?: 'RootMutationType' ;
1714
- } & {
1715
- makeSandboxesTemplates : Array <
1716
- { __typename ?: 'Template' } & Pick < Template , 'id' >
1717
- > ;
1718
- } ;
1719
-
1720
- export type UnmakeSandboxesTemplateMutationVariables = Exact < {
1721
- sandboxIds : Array < Scalars [ 'ID' ] > ;
1722
- } > ;
1723
-
1724
- export type UnmakeSandboxesTemplateMutation = {
1725
- __typename ?: 'RootMutationType' ;
1726
- } & {
1727
- unmakeSandboxesTemplates : Array <
1728
- { __typename ?: 'Template' } & Pick < Template , 'id' >
1729
- > ;
1730
- } ;
1731
-
1732
1671
export type CollaboratorFragment = { __typename ?: 'Collaborator' } & Pick <
1733
1672
Collaborator ,
1734
1673
'id' | 'authorization' | 'lastSeenAt' | 'warning'
@@ -2360,7 +2299,7 @@ export type ProjectFragment = { __typename?: 'Project' } & {
2360
2299
branches : Array < { __typename ?: 'Branch' } & BranchFragment > ;
2361
2300
repository : { __typename ?: 'GitHubRepository' } & Pick <
2362
2301
GitHubRepository ,
2363
- 'owner' | 'name'
2302
+ 'owner' | 'name' | 'defaultBranch'
2364
2303
> ;
2365
2304
} ;
2366
2305
0 commit comments