github-schema 1.18.0 → 1.19.0

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.
@@ -9660,6 +9660,8 @@ type LabelOrder = {
9660
9660
  type LabelOrderField =
9661
9661
  /** Order labels by creation time */
9662
9662
  'CREATED_AT'
9663
+ /** Order labels by issue count */
9664
+ | 'ISSUE_COUNT'
9663
9665
  /** Order labels by name */
9664
9666
  | 'NAME';
9665
9667
  /** An object that can have labels assigned to it. */
@@ -21522,6 +21524,8 @@ type ReleaseAsset = Node & {
21522
21524
  contentType: Scalars['String']['output'];
21523
21525
  /** Identifies the date and time when the object was created. */
21524
21526
  createdAt: Scalars['DateTime']['output'];
21527
+ /** The SHA256 digest of the asset */
21528
+ digest?: Maybe<Scalars['String']['output']>;
21525
21529
  /** The number of times this asset was downloaded */
21526
21530
  downloadCount: Scalars['Int']['output'];
21527
21531
  /** Identifies the URL where you can download the release asset via the browser. */
@@ -9660,6 +9660,8 @@ type LabelOrder = {
9660
9660
  type LabelOrderField =
9661
9661
  /** Order labels by creation time */
9662
9662
  'CREATED_AT'
9663
+ /** Order labels by issue count */
9664
+ | 'ISSUE_COUNT'
9663
9665
  /** Order labels by name */
9664
9666
  | 'NAME';
9665
9667
  /** An object that can have labels assigned to it. */
@@ -21522,6 +21524,8 @@ type ReleaseAsset = Node & {
21522
21524
  contentType: Scalars['String']['output'];
21523
21525
  /** Identifies the date and time when the object was created. */
21524
21526
  createdAt: Scalars['DateTime']['output'];
21527
+ /** The SHA256 digest of the asset */
21528
+ digest?: Maybe<Scalars['String']['output']>;
21525
21529
  /** The number of times this asset was downloaded */
21526
21530
  downloadCount: Scalars['Int']['output'];
21527
21531
  /** Identifies the URL where you can download the release asset via the browser. */
@@ -20678,6 +20678,11 @@ enum LabelOrderField {
20678
20678
  """
20679
20679
  CREATED_AT
20680
20680
 
20681
+ """
20682
+ Order labels by issue count
20683
+ """
20684
+ ISSUE_COUNT
20685
+
20681
20686
  """
20682
20687
  Order labels by name
20683
20688
  """
@@ -42293,6 +42298,11 @@ type ReleaseAsset implements Node {
42293
42298
  """
42294
42299
  createdAt: DateTime!
42295
42300
 
42301
+ """
42302
+ The SHA256 digest of the asset
42303
+ """
42304
+ digest: String
42305
+
42296
42306
  """
42297
42307
  The number of times this asset was downloaded
42298
42308
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.18.0",
3
+ "version": "1.19.0",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {
@@ -8,7 +8,7 @@
8
8
  "email": "lucasnrgaard@gmail.com",
9
9
  "url": "https://luxass.dev"
10
10
  },
11
- "packageManager": "pnpm@10.10.0",
11
+ "packageManager": "pnpm@10.11.0",
12
12
  "license": "MIT",
13
13
  "homepage": "https://github.com/luxass/github-schema",
14
14
  "repository": {