Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@devup-api/core

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@devup-api/core

npmnpm
Version
0.1.4
Version published
Maintainers
1
Created
Source

@devup-api/core

Core types and interfaces for devup-api.

Installation

npm install @devup-api/core

Exports

Types

  • DevupApiOptions - Plugin configuration options
  • DevupApiTypeGeneratorOptions - Type generation options
  • UrlMapValue - URL map entry structure
  • DevupApiStruct - API structure types for type-safe API calls

Interfaces

interface DevupApiOptions {
  openapiFile?: string
  tempDir?: string
  convertCase?: 'snake' | 'camel' | 'pascal' | 'maintain'
  requestDefaultNonNullable?: boolean
  responseDefaultNonNullable?: boolean
}

interface UrlMapValue {
  method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH'
  url: string
}

Usage

This package is primarily used internally by other devup-api packages. You typically don't need to import from this package directly unless you're building custom integrations.

import type { DevupApiOptions } from '@devup-api/core'

License

Apache 2.0

FAQs

Package last updated on 01 Dec 2025

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