github-schema 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19328,7 +19328,10 @@ type RepositoryConnection = {
19328
19328
  pageInfo: PageInfo;
19329
19329
  /** Identifies the total count of items in the connection. */
19330
19330
  totalCount: Scalars['Int']['output'];
19331
- /** The total size in kilobytes of all repositories in the connection. */
19331
+ /**
19332
+ * The total size in kilobytes of all repositories in the connection. Value will
19333
+ * never be larger than max 32-bit signed integer.
19334
+ */
19332
19335
  totalDiskUsage: Scalars['Int']['output'];
19333
19336
  };
19334
19337
  /** A repository contact link. */
@@ -19823,8 +19826,6 @@ type RepositoryRuleType =
19823
19826
  | 'CREATION'
19824
19827
  /** Only allow users with bypass permissions to delete matching refs. */
19825
19828
  | 'DELETION'
19826
- /** File path pattern */
19827
- | 'FILE_PATH_PATTERN'
19828
19829
  /** Branch is read-only. Users cannot push to the branch. */
19829
19830
  | 'LOCK_BRANCH'
19830
19831
  /** Max ref updates */
@@ -19328,7 +19328,10 @@ type RepositoryConnection = {
19328
19328
  pageInfo: PageInfo;
19329
19329
  /** Identifies the total count of items in the connection. */
19330
19330
  totalCount: Scalars['Int']['output'];
19331
- /** The total size in kilobytes of all repositories in the connection. */
19331
+ /**
19332
+ * The total size in kilobytes of all repositories in the connection. Value will
19333
+ * never be larger than max 32-bit signed integer.
19334
+ */
19332
19335
  totalDiskUsage: Scalars['Int']['output'];
19333
19336
  };
19334
19337
  /** A repository contact link. */
@@ -19823,8 +19826,6 @@ type RepositoryRuleType =
19823
19826
  | 'CREATION'
19824
19827
  /** Only allow users with bypass permissions to delete matching refs. */
19825
19828
  | 'DELETION'
19826
- /** File path pattern */
19827
- | 'FILE_PATH_PATTERN'
19828
19829
  /** Branch is read-only. Users cannot push to the branch. */
19829
19830
  | 'LOCK_BRANCH'
19830
19831
  /** Max ref updates */
@@ -42666,7 +42666,8 @@ type RepositoryConnection {
42666
42666
  totalCount: Int!
42667
42667
 
42668
42668
  """
42669
- The total size in kilobytes of all repositories in the connection.
42669
+ The total size in kilobytes of all repositories in the connection. Value will
42670
+ never be larger than max 32-bit signed integer.
42670
42671
  """
42671
42672
  totalDiskUsage: Int!
42672
42673
  }
@@ -43799,11 +43800,6 @@ enum RepositoryRuleType {
43799
43800
  """
43800
43801
  DELETION
43801
43802
 
43802
- """
43803
- File path pattern
43804
- """
43805
- FILE_PATH_PATTERN
43806
-
43807
43803
  """
43808
43804
  Branch is read-only. Users cannot push to the branch.
43809
43805
  """
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "github-schema",
3
3
  "type": "module",
4
- "version": "1.1.0",
4
+ "version": "1.1.1",
5
5
  "packageManager": "bun@1.0.7",
6
6
  "description": "GitHub's GraphQL schema",
7
7
  "author": {