Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More

swagger-definitions-to-react-proptypes

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

swagger-definitions-to-react-proptypes

CLI that generates React propType definitions from a swagger endpoint

latest
73

Supply Chain Security

100

Vulnerability

95

Quality

76

Maintenance

100

License

Network access

Supply chain risk

This module accesses the network.

Found 1 instance in 1 package

Unpopular package

Quality

This package is not very popular.

Found 1 instance in 1 package

Dependencies have 17 high and critical alerts.

Critical CVE, High CVE, Socket optimized override available, Telemetry, and Unstable ownership

Version
1.2.4
Version published
Maintainers
1
Created

swagger-definitions-to-react-proptypes

CLI that consumes a swagger endpoint and spits out React propType definitions.

Installation:

npm install -g swagger-definitions-to-react-proptypes

or

yarn add --dev swagger-definitions-to-react-proptypes

Usage:

swagger-definitions-to-react-proptypes http://petstore.swagger.io/v2/swagger.json

swagger-definitions-to-react-proptypes ./swagger.yml

./node_modules/bin/swagger-definitions-to-react-proptypes ./swagger.yml ./src/definitions.js

/**
Generated PropTypes for http://127.0.0.1:1337/petstore-v2.0.json
**/

import PropTypes from "prop-types";


export const Order = PropTypes.shape({
    id: PropTypes.number,
    petId: PropTypes.number,
    quantity: PropTypes.number,
    shipDate: PropTypes.date,
    status: PropTypes.oneOf([
        "placed",
        "approved",
        "delivered"
    ]),
    complete: PropTypes.bool
});

export const Category = PropTypes.shape({
    id: PropTypes.number,
    name: PropTypes.string
});

export const User = PropTypes.shape({
    id: PropTypes.number,
    username: PropTypes.string,
    firstName: PropTypes.string,
    lastName: PropTypes.string,
    email: PropTypes.string,
    password: PropTypes.string,
    phone: PropTypes.string,
    userStatus: PropTypes.number
});

export const Tag = PropTypes.shape({
    id: PropTypes.number,
    name: PropTypes.string
});

export const ApiResponse = PropTypes.shape({
    code: PropTypes.number,
    type: PropTypes.string,
    message: PropTypes.string
});

export const Pet = PropTypes.shape({
    id: PropTypes.number,
    category: PropTypes.shape({
        id: PropTypes.number,
        name: PropTypes.string
    }),
    name: PropTypes.string.isRequired,
    photoUrls: PropTypes.arrayOf(PropTypes.string).isRequired,
    tags: PropTypes.arrayOf(PropTypes.shape({
        id: PropTypes.number,
        name: PropTypes.string
    })),
    status: PropTypes.oneOf([
        "available",
        "pending",
        "sold"
    ]),
    createdAt: PropTypes.date
});

FAQs

Package last updated on 03 Jul 2017

Did you know?

Socket

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