@octokit/plugin-paginate-rest
Advanced tools
Comparing version 2.2.2 to 2.2.3
@@ -5,3 +5,3 @@ 'use strict'; | ||
const VERSION = "2.2.2"; | ||
const VERSION = "2.2.3"; | ||
@@ -8,0 +8,0 @@ /** |
@@ -1,1 +0,1 @@ | ||
export const VERSION = "2.2.2"; | ||
export const VERSION = "2.2.3"; |
@@ -849,2 +849,65 @@ import { Endpoints } from "@octokit/types"; | ||
/** | ||
* @see https://developer.github.com/v3/search/#search-code | ||
*/ | ||
"GET /search/code": { | ||
parameters: Endpoints["GET /search/code"]["parameters"]; | ||
response: Endpoints["GET /search/code"]["response"] & { | ||
data: Endpoints["GET /search/code"]["response"]["data"]["items"]; | ||
}; | ||
}; | ||
/** | ||
* @see https://developer.github.com/v3/search/#search-commits | ||
*/ | ||
"GET /search/commits": { | ||
parameters: Endpoints["GET /search/commits"]["parameters"]; | ||
response: Endpoints["GET /search/commits"]["response"] & { | ||
data: Endpoints["GET /search/commits"]["response"]["data"]["items"]; | ||
}; | ||
}; | ||
/** | ||
* @see https://developer.github.com/v3/search/#search-issues-and-pull-requests | ||
*/ | ||
"GET /search/issues": { | ||
parameters: Endpoints["GET /search/issues"]["parameters"]; | ||
response: Endpoints["GET /search/issues"]["response"] & { | ||
data: Endpoints["GET /search/issues"]["response"]["data"]["items"]; | ||
}; | ||
}; | ||
/** | ||
* @see https://developer.github.com/v3/search/#search-labels | ||
*/ | ||
"GET /search/labels": { | ||
parameters: Endpoints["GET /search/labels"]["parameters"]; | ||
response: Endpoints["GET /search/labels"]["response"] & { | ||
data: Endpoints["GET /search/labels"]["response"]["data"]["items"]; | ||
}; | ||
}; | ||
/** | ||
* @see https://developer.github.com/v3/search/#search-repositories | ||
*/ | ||
"GET /search/repositories": { | ||
parameters: Endpoints["GET /search/repositories"]["parameters"]; | ||
response: Endpoints["GET /search/repositories"]["response"] & { | ||
data: Endpoints["GET /search/repositories"]["response"]["data"]["items"]; | ||
}; | ||
}; | ||
/** | ||
* @see https://developer.github.com/v3/search/#search-topics | ||
*/ | ||
"GET /search/topics": { | ||
parameters: Endpoints["GET /search/topics"]["parameters"]; | ||
response: Endpoints["GET /search/topics"]["response"] & { | ||
data: Endpoints["GET /search/topics"]["response"]["data"]["items"]; | ||
}; | ||
}; | ||
/** | ||
* @see https://developer.github.com/v3/search/#search-users | ||
*/ | ||
"GET /search/users": { | ||
parameters: Endpoints["GET /search/users"]["parameters"]; | ||
response: Endpoints["GET /search/users"]["response"] & { | ||
data: Endpoints["GET /search/users"]["response"]["data"]["items"]; | ||
}; | ||
}; | ||
/** | ||
* @see https://developer.github.com/v3/teams/discussions/#list-discussions-legacy | ||
@@ -851,0 +914,0 @@ */ |
@@ -1,1 +0,1 @@ | ||
export declare const VERSION = "2.2.2"; | ||
export declare const VERSION = "2.2.3"; |
@@ -1,2 +0,2 @@ | ||
const VERSION = "2.2.2"; | ||
const VERSION = "2.2.3"; | ||
@@ -3,0 +3,0 @@ /** |
{ | ||
"name": "@octokit/plugin-paginate-rest", | ||
"description": "Octokit plugin to paginate REST API endpoint responses", | ||
"version": "2.2.2", | ||
"version": "2.2.3", | ||
"license": "MIT", | ||
@@ -23,4 +23,4 @@ "files": [ | ||
"devDependencies": { | ||
"@octokit/core": "^2.0.0", | ||
"@octokit/plugin-rest-endpoint-methods": "^3.7.1", | ||
"@octokit/core": "^3.0.0", | ||
"@octokit/plugin-rest-endpoint-methods": "^4.0.0", | ||
"@pika/pack": "^0.5.0", | ||
@@ -27,0 +27,0 @@ "@pika/plugin-build-node": "^0.9.0", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
105382
1688