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.
package/dist/github-schema.d.cts
CHANGED
|
@@ -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
|
-
/**
|
|
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 */
|
package/dist/github-schema.d.ts
CHANGED
|
@@ -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
|
-
/**
|
|
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 */
|
package/github-schema.graphql
CHANGED
|
@@ -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
|
"""
|