Socket
Socket
Sign inDemoInstall

@octokit/openapi-types

Package Overview
Dependencies
0
Maintainers
4
Versions
150
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @octokit/openapi-types

Generated TypeScript definitions based on GitHub's OpenAPI spec for api.github.com


Version published
Weekly downloads
9.3M
decreased by-16.94%
Maintainers
4
Install size
4.28 MB
Created
Weekly downloads
 

Package description

What is @octokit/openapi-types?

The @octokit/openapi-types npm package provides TypeScript definitions based on GitHub's OpenAPI specification. This package is useful for developers working with GitHub's REST API, as it offers type definitions that can help ensure that API requests and responses are correctly structured according to the GitHub API schema.

What are @octokit/openapi-types's main functionalities?

Type Definitions for GitHub API

This code sample demonstrates how to use the type definitions for GitHub API objects provided by @octokit/openapi-types. In this example, we define an 'issue' object with properties that match the expected structure of a GitHub issue according to the API's schema.

import { components } from '@octokit/openapi-types';

const issue: components['schemas']['issue'] = {
  id: 1,
  number: 1347,
  state: 'open',
  title: 'Found a bug',
  body: 'I'm having a problem with this.',
  user: {
    login: 'octocat',
    id: 1,
    node_id: 'MDQ6VXNlcjE=',
    avatar_url: 'https://github.com/images/error/octocat_happy.gif',
    gravatar_id: '',
    url: 'https://api.github.com/users/octocat',
    html_url: 'https://github.com/octocat',
    followers_url: 'https://api.github.com/users/octocat/followers',
    following_url: 'https://api.github.com/users/octocat/following{/other_user}',
    gists_url: 'https://api.github.com/users/octocat/gists{/gist_id}',
    starred_url: 'https://api.github.com/users/octocat/starred{/owner}{/repo}',
    subscriptions_url: 'https://api.github.com/users/octocat/subscriptions',
    organizations_url: 'https://api.github.com/users/octocat/orgs',
    repos_url: 'https://api.github.com/users/octocat/repos',
    events_url: 'https://api.github.com/users/octocat/events{/privacy}',
    received_events_url: 'https://api.github.com/users/octocat/received_events',
    type: 'User',
    site_admin: false
  }
};

Other packages similar to @octokit/openapi-types

Readme

Source

@octokit/openapi-types

Generated TypeScript definitions based on GitHub's OpenAPI spec

This package is continuously updated based on GitHub's OpenAPI specification

Usage

import { components } from "@octokit/openapi-types";

type Repository = components["schemas"]["full-repository"];

License

MIT

FAQs

Last updated on 15 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc