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

@datashaper/schema

Package Overview
Dependencies
Maintainers
4
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@datashaper/schema - npm Package Compare versions

Comparing version 6.0.0 to 6.1.0

1

dist/datatable/index.d.ts

@@ -5,4 +5,5 @@ /*!

*/
export * from './DataShape.js';
export * from './DataTableSchema.js';
export * from './ParserOptions.js';
export * from './TypeHints.js';

3

dist/datatable/index.js
/*!
* Copyright (c) Microsoft. All rights reserved.
* Licensed under the MIT license. See LICENSE file in the project.
*/ export * from './DataTableSchema.js';
*/ export * from './DataShape.js';
export * from './DataTableSchema.js';
export * from './ParserOptions.js';
export * from './TypeHints.js';

@@ -9,3 +9,3 @@ import type { CodebookSchema } from './codebook/CodebookSchema.js';

export declare const LATEST_CODEBOOK_SCHEMA: string;
export declare type FactoryInput<T> = Omit<T, '$schema' | 'id' | 'name'> & {
export declare type FactoryInput<T> = Omit<T, '$schema' | 'id' | 'name' | 'profile'> & {
id?: string;

@@ -12,0 +12,0 @@ name?: string;

@@ -11,2 +11,3 @@ /*!

export * from './factories.js';
export * from './Named.js';
export * from './workflow/index.js';

@@ -10,2 +10,3 @@ /*!

export * from './factories.js';
export * from './Named.js';
export * from './workflow/index.js';

@@ -204,3 +204,2 @@ ## API Report File for "@datashaper/schema"

// Warning: (ae-forgotten-export) The symbol "Named" needs to be exported by the entry point index.d.ts
// Warning: (ae-missing-release-tag) "DataPackageSchema" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)

@@ -215,2 +214,11 @@ //

// Warning: (ae-missing-release-tag) "DataShape" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public
export interface DataShape {
matrix?: [width: number, height: number];
nature?: DataNature;
orientation?: DataOrientation;
}
// Warning: (ae-missing-release-tag) "DataTableSchema" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)

@@ -226,3 +234,2 @@ //

rows?: number;
// Warning: (ae-forgotten-export) The symbol "DataShape" needs to be exported by the entry point index.d.ts
shape?: DataShape;

@@ -316,3 +323,3 @@ typeHints?: TypeHints;

// @public (undocumented)
export type FactoryInput<T> = Omit<T, '$schema' | 'id' | 'name'> & {
export type FactoryInput<T> = Omit<T, '$schema' | 'id' | 'name' | 'profile'> & {
id?: string;

@@ -582,2 +589,12 @@ name?: string;

// Warning: (ae-missing-release-tag) "Named" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public
export interface Named {
description?: string;
id: string;
name: string;
title?: string;
}
// Warning: (ae-missing-release-tag) "NamedOutputPortBinding" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)

@@ -584,0 +601,0 @@ //

@@ -204,3 +204,2 @@ ## API Report File for "@datashaper/schema"

// Warning: (ae-forgotten-export) The symbol "Named" needs to be exported by the entry point index.d.ts
// Warning: (ae-missing-release-tag) "DataPackageSchema" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)

@@ -215,2 +214,11 @@ //

// Warning: (ae-missing-release-tag) "DataShape" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public
export interface DataShape {
matrix?: [width: number, height: number];
nature?: DataNature;
orientation?: DataOrientation;
}
// Warning: (ae-missing-release-tag) "DataTableSchema" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)

@@ -226,3 +234,2 @@ //

rows?: number;
// Warning: (ae-forgotten-export) The symbol "DataShape" needs to be exported by the entry point index.d.ts
shape?: DataShape;

@@ -316,3 +323,3 @@ typeHints?: TypeHints;

// @public (undocumented)
export type FactoryInput<T> = Omit<T, '$schema' | 'id' | 'name'> & {
export type FactoryInput<T> = Omit<T, '$schema' | 'id' | 'name' | 'profile'> & {
id?: string;

@@ -582,2 +589,12 @@ name?: string;

// Warning: (ae-missing-release-tag) "Named" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public
export interface Named {
description?: string;
id: string;
name: string;
title?: string;
}
// Warning: (ae-missing-release-tag) "NamedOutputPortBinding" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)

@@ -584,0 +601,0 @@ //

{
"name": "@datashaper/schema",
"version": "6.0.0",
"version": "6.1.0",
"type": "module",

@@ -43,3 +43,3 @@ "main": "dist/index.js",

"bundle-workflow": "typescript-json-schema tsconfig.json WorkflowSchema > ../../schema/workflow.json",
"bundle": "run-p bundle-codebook bundle-datapackage bundle-datatable bundle-workflow",
"bundle": "yarn node create_versions_file.js && run-p bundle-codebook bundle-datapackage bundle-datatable bundle-workflow",
"release": "yarn npm publish --tolerate-republish --access public"

@@ -46,0 +46,0 @@ },

@@ -5,4 +5,5 @@ /*!

*/
export * from './DataShape.js'
export * from './DataTableSchema.js'
export * from './ParserOptions.js'
export * from './TypeHints.js'

@@ -18,3 +18,3 @@ /*!

export type FactoryInput<T> = Omit<T, '$schema' | 'id' | 'name'> & {
export type FactoryInput<T> = Omit<T, '$schema' | 'id' | 'name' | 'profile'> & {
id?: string

@@ -21,0 +21,0 @@ name?: string

@@ -11,2 +11,3 @@ /*!

export * from './factories.js'
export * from './Named.js'
export * from './workflow/index.js'

Sorry, the diff of this file is not supported yet

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