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

apibuilder-js

Package Overview
Dependencies
Maintainers
2
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apibuilder-js - npm Package Compare versions

Comparing version 0.0.15 to 0.0.16

5

dist/type/definition.d.ts

@@ -12,2 +12,5 @@ import { FullyQualifiedName } from '../language';

declare type StrictUnion<T> = Compute<StrictUnionHelper<T, T>>;
declare type JSONValue = string | number | boolean | null | JSONValue[] | {
[key: string]: JSONValue;
};
export interface ApiBuilderAnnotationConfig {

@@ -46,3 +49,3 @@ readonly name: string;

readonly name: string;
readonly value: Record<string, string>;
readonly value: JSONValue;
readonly description?: string;

@@ -49,0 +52,0 @@ readonly deprecation?: ApiBuilderDeprecationConfig;

2

package.json
{
"name": "apibuilder-js",
"version": "0.0.15",
"version": "0.0.16",
"description": "A reference implementation of API Builder for JavaScript",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -29,2 +29,10 @@ /* eslint-disable max-classes-per-file, import/no-cycle, @typescript-eslint/no-use-before-define */

type JSONValue =
| string
| number
| boolean
| null
| JSONValue[]
| { [key: string]: JSONValue };
export interface ApiBuilderAnnotationConfig {

@@ -73,3 +81,3 @@ readonly name: string;

readonly name: string;
readonly value: Record<string, string>;
readonly value: JSONValue;
readonly description?: string;

@@ -76,0 +84,0 @@ readonly deprecation?: ApiBuilderDeprecationConfig;

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