Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@octokit/plugin-paginate-rest

Package Overview
Dependencies
Maintainers
2
Versions
114
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@octokit/plugin-paginate-rest - npm Package Compare versions

Comparing version 2.3.0 to 2.3.1

2

dist-node/index.js

@@ -5,3 +5,3 @@ 'use strict';

const VERSION = "2.3.0";
const VERSION = "2.3.1";

@@ -8,0 +8,0 @@ /**

@@ -1,1 +0,1 @@

export const VERSION = "2.3.0";
export const VERSION = "2.3.1";

@@ -25,2 +25,45 @@ import { Endpoints } from "@octokit/types";

/**
* @see https://developer.github.com/v3/enterprise-admin/actions/#list-self-hosted-runner-groups-for-an-enterprise
*/
"GET /enterprises/:enterprise/actions/runner-groups": {
parameters: Endpoints["GET /enterprises/:enterprise/actions/runner-groups"]["parameters"];
response: Endpoints["GET /enterprises/:enterprise/actions/runner-groups"]["response"] & {
data: Endpoints["GET /enterprises/:enterprise/actions/runner-groups"]["response"]["data"]["runner_groups"];
};
};
/**
* @see https://developer.github.com/v3/enterprise-admin/actions/#list-organization-access-to-a-self-hosted-runner-group-in-a-enterprise
*/
"GET /enterprises/:enterprise/actions/runner-groups/:runner_group_id/organizations": {
parameters: Endpoints["GET /enterprises/:enterprise/actions/runner-groups/:runner_group_id/organizations"]["parameters"];
response: Endpoints["GET /enterprises/:enterprise/actions/runner-groups/:runner_group_id/organizations"]["response"] & {
data: Endpoints["GET /enterprises/:enterprise/actions/runner-groups/:runner_group_id/organizations"]["response"]["data"]["organizations"];
};
};
/**
* @see https://developer.github.com/v3/enterprise-admin/actions/#list-self-hosted-runners-in-a-group-for-an-enterprise
*/
"GET /enterprises/:enterprise/actions/runner-groups/:runner_group_id/runners": {
parameters: Endpoints["GET /enterprises/:enterprise/actions/runner-groups/:runner_group_id/runners"]["parameters"];
response: Endpoints["GET /enterprises/:enterprise/actions/runner-groups/:runner_group_id/runners"]["response"] & {
data: Endpoints["GET /enterprises/:enterprise/actions/runner-groups/:runner_group_id/runners"]["response"]["data"]["runners"];
};
};
/**
* @see https://developer.github.com/v3/enterprise-admin/actions/#list-self-hosted-runners-for-an-enterprise
*/
"GET /enterprises/:enterprise/actions/runners": {
parameters: Endpoints["GET /enterprises/:enterprise/actions/runners"]["parameters"];
response: Endpoints["GET /enterprises/:enterprise/actions/runners"]["response"] & {
data: Endpoints["GET /enterprises/:enterprise/actions/runners"]["response"]["data"]["runners"];
};
};
/**
* @see https://developer.github.com/v3/enterprise-admin/actions/#list-runner-applications-for-an-enterprise
*/
"GET /enterprises/:enterprise/actions/runners/downloads": {
parameters: Endpoints["GET /enterprises/:enterprise/actions/runners/downloads"]["parameters"];
response: Endpoints["GET /enterprises/:enterprise/actions/runners/downloads"]["response"];
};
/**
* @see https://developer.github.com/v3/gists/#list-gists-for-the-authenticated-user

@@ -126,2 +169,29 @@ */

/**
* @see https://developer.github.com/v3/actions/self-hosted-runner-groups/#list-self-hosted-runner-groups-for-an-organization
*/
"GET /orgs/:org/actions/runner-groups": {
parameters: Endpoints["GET /orgs/:org/actions/runner-groups"]["parameters"];
response: Endpoints["GET /orgs/:org/actions/runner-groups"]["response"] & {
data: Endpoints["GET /orgs/:org/actions/runner-groups"]["response"]["data"]["runner_groups"];
};
};
/**
* @see https://developer.github.com/v3/actions/self-hosted-runner-groups/#list-repository-access-to-a-self-hosted-runner-group-in-an-organization
*/
"GET /orgs/:org/actions/runner-groups/:runner_group_id/repositories": {
parameters: Endpoints["GET /orgs/:org/actions/runner-groups/:runner_group_id/repositories"]["parameters"];
response: Endpoints["GET /orgs/:org/actions/runner-groups/:runner_group_id/repositories"]["response"] & {
data: Endpoints["GET /orgs/:org/actions/runner-groups/:runner_group_id/repositories"]["response"]["data"]["repositories"];
};
};
/**
* @see https://developer.github.com/v3/actions/self-hosted-runner-groups/#list-self-hosted-runners-in-a-group-for-an-organization
*/
"GET /orgs/:org/actions/runner-groups/:runner_group_id/runners": {
parameters: Endpoints["GET /orgs/:org/actions/runner-groups/:runner_group_id/runners"]["parameters"];
response: Endpoints["GET /orgs/:org/actions/runner-groups/:runner_group_id/runners"]["response"] & {
data: Endpoints["GET /orgs/:org/actions/runner-groups/:runner_group_id/runners"]["response"]["data"]["runners"];
};
};
/**
* @see https://developer.github.com/v3/actions/self-hosted-runners/#list-self-hosted-runners-for-an-organization

@@ -128,0 +198,0 @@ */

import { PaginateInterface } from "./types";
export { PaginateInterface } from "./types";
import { Octokit } from "@octokit/core";
import type { Octokit } from "@octokit/core";
/**

@@ -5,0 +5,0 @@ * @param octokit Octokit instance

@@ -1,1 +0,1 @@

export declare const VERSION = "2.3.0";
export declare const VERSION = "2.3.1";

@@ -1,2 +0,2 @@

const VERSION = "2.3.0";
const VERSION = "2.3.1";

@@ -3,0 +3,0 @@ /**

{
"name": "@octokit/plugin-paginate-rest",
"description": "Octokit plugin to paginate REST API endpoint responses",
"version": "2.3.0",
"version": "2.3.1",
"license": "MIT",

@@ -20,4 +20,7 @@ "files": [

"dependencies": {
"@octokit/types": "^5.2.0"
"@octokit/types": "^5.3.0"
},
"peerDependencies": {
"@octokit/core": ">=3"
},
"devDependencies": {

@@ -24,0 +27,0 @@ "@octokit/core": "^3.0.0",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc