You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "A comma-separated list of ecosystems. If specified, only alerts for these ecosystems will be returned.\n\nCan be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `rubygems`, `rust`",
110604
+
"description": "A comma-separated list of ecosystems. If specified, only alerts for these ecosystems will be returned.\n\nCan be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust`",
110576
110605
"schema": {
110577
110606
"type": "string"
110578
110607
}
@@ -110618,6 +110647,29 @@
110618
110647
"default": "created"
110619
110648
}
110620
110649
},
110650
+
"pagination-first": {
110651
+
"name": "first",
110652
+
"description": "The number of results per page (max 100), starting from the first matching result.\nThis parameter must not be used in combination with `last`.",
110653
+
"in": "query",
110654
+
"required": false,
110655
+
"schema": {
110656
+
"type": "integer",
110657
+
"minimum": 1,
110658
+
"maximum": 100,
110659
+
"default": 30
110660
+
}
110661
+
},
110662
+
"pagination-last": {
110663
+
"name": "last",
110664
+
"description": "The number of results per page (max 100), starting from the last matching result.\nThis parameter must not be used in combination with `first`.",
Copy file name to clipboardExpand all lines: descriptions/api.github.com/dereferenced/api.github.com.deref.json
+106-3Lines changed: 106 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -207480,7 +207480,7 @@
207480
207480
{
207481
207481
"name": "ecosystem",
207482
207482
"in": "query",
207483
-
"description": "A comma-separated list of ecosystems. If specified, only alerts for these ecosystems will be returned.\n\nCan be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `rubygems`, `rust`",
207483
+
"description": "A comma-separated list of ecosystems. If specified, only alerts for these ecosystems will be returned.\n\nCan be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust`",
207484
207484
"schema": {
207485
207485
"type": "string"
207486
207486
}
@@ -207542,7 +207542,8 @@
207542
207542
},
207543
207543
{
207544
207544
"name": "page",
207545
-
"description": "Page number of the results to fetch.",
207545
+
"description": "**Deprecated**. Page number of the results to fetch. Use cursor-based pagination with `before` or `after` instead.",
207546
+
"deprecated": true,
207546
207547
"in": "query",
207547
207548
"schema": {
207548
207549
"type": "integer",
@@ -207551,12 +207552,54 @@
207551
207552
},
207552
207553
{
207553
207554
"name": "per_page",
207554
-
"description": "The number of results per page (max 100).",
207555
+
"description": "**Deprecated**. The number of results per page (max 100). Use cursor-based pagination with `first` or `last` instead.",
207556
+
"deprecated": true,
207557
+
"in": "query",
207558
+
"schema": {
207559
+
"type": "integer",
207560
+
"default": 30
207561
+
}
207562
+
},
207563
+
{
207564
+
"name": "before",
207565
+
"description": "A cursor, as given in the [Link header](https://docs.github.com/rest/overview/resources-in-the-rest-api#link-header). If specified, the query only searches for results before this cursor.",
207566
+
"in": "query",
207567
+
"required": false,
207568
+
"schema": {
207569
+
"type": "string"
207570
+
}
207571
+
},
207572
+
{
207573
+
"name": "after",
207574
+
"description": "A cursor, as given in the [Link header](https://docs.github.com/rest/overview/resources-in-the-rest-api#link-header). If specified, the query only searches for results after this cursor.",
207575
+
"in": "query",
207576
+
"required": false,
207577
+
"schema": {
207578
+
"type": "string"
207579
+
}
207580
+
},
207581
+
{
207582
+
"name": "first",
207583
+
"description": "The number of results per page (max 100), starting from the first matching result.\nThis parameter must not be used in combination with `last`.",
207555
207584
"in": "query",
207585
+
"required": false,
207556
207586
"schema": {
207557
207587
"type": "integer",
207588
+
"minimum": 1,
207589
+
"maximum": 100,
207558
207590
"default": 30
207559
207591
}
207592
+
},
207593
+
{
207594
+
"name": "last",
207595
+
"description": "The number of results per page (max 100), starting from the last matching result.\nThis parameter must not be used in combination with `first`.",
0 commit comments