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`",
113385
+
"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`",
113357
113386
"schema": {
113358
113387
"type": "string"
113359
113388
}
@@ -113399,6 +113428,29 @@
113399
113428
"default": "created"
113400
113429
}
113401
113430
},
113431
+
"pagination-first": {
113432
+
"name": "first",
113433
+
"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`.",
113434
+
"in": "query",
113435
+
"required": false,
113436
+
"schema": {
113437
+
"type": "integer",
113438
+
"minimum": 1,
113439
+
"maximum": 100,
113440
+
"default": 30
113441
+
}
113442
+
},
113443
+
"pagination-last": {
113444
+
"name": "last",
113445
+
"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-next/api.github.com/dereferenced/api.github.com.deref.json
+114-3Lines changed: 114 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -243337,7 +243337,7 @@
243337
243337
{
243338
243338
"name": "ecosystem",
243339
243339
"in": "query",
243340
-
"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`",
243340
+
"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`",
243341
243341
"schema": {
243342
243342
"type": "string"
243343
243343
}
@@ -243399,7 +243399,8 @@
243399
243399
},
243400
243400
{
243401
243401
"name": "page",
243402
-
"description": "Page number of the results to fetch.",
243402
+
"description": "**Deprecated**. Page number of the results to fetch. Use cursor-based pagination with `before` or `after` instead.",
243403
+
"deprecated": true,
243403
243404
"in": "query",
243404
243405
"schema": {
243405
243406
"type": "integer",
@@ -243408,12 +243409,54 @@
243408
243409
},
243409
243410
{
243410
243411
"name": "per_page",
243411
-
"description": "The number of results per page (max 100).",
243412
+
"description": "**Deprecated**. The number of results per page (max 100). Use cursor-based pagination with `first` or `last` instead.",
243413
+
"deprecated": true,
243414
+
"in": "query",
243415
+
"schema": {
243416
+
"type": "integer",
243417
+
"default": 30
243418
+
}
243419
+
},
243420
+
{
243421
+
"name": "before",
243422
+
"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.",
243423
+
"in": "query",
243424
+
"required": false,
243425
+
"schema": {
243426
+
"type": "string"
243427
+
}
243428
+
},
243429
+
{
243430
+
"name": "after",
243431
+
"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.",
243432
+
"in": "query",
243433
+
"required": false,
243434
+
"schema": {
243435
+
"type": "string"
243436
+
}
243437
+
},
243438
+
{
243439
+
"name": "first",
243440
+
"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`.",
243412
243441
"in": "query",
243442
+
"required": false,
243413
243443
"schema": {
243414
243444
"type": "integer",
243445
+
"minimum": 1,
243446
+
"maximum": 100,
243415
243447
"default": 30
243416
243448
}
243449
+
},
243450
+
{
243451
+
"name": "last",
243452
+
"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