@datashaper/schema
Advanced tools
Comparing version 6.2.2 to 6.3.0
@@ -64,2 +64,12 @@ /*! | ||
} | ||
export interface InputKeyValueArgs { | ||
/** | ||
* Key column for the operation | ||
*/ | ||
key: string; | ||
/** | ||
* Value column for the operation | ||
*/ | ||
value: string; | ||
} | ||
export interface OutputColumnArgs { | ||
@@ -382,5 +392,3 @@ /** | ||
} | ||
export interface PivotArgs { | ||
key: string; | ||
value: string; | ||
export interface PivotArgs extends InputKeyValueArgs { | ||
operation: FieldAggregateOperation; | ||
@@ -430,6 +438,3 @@ } | ||
} | ||
export interface UnfoldArgs { | ||
key: string; | ||
value: string; | ||
} | ||
export declare type UnfoldArgs = InputKeyValueArgs; | ||
export interface UnhotArgs extends InputColumnListArgs, OutputColumnArgs { | ||
@@ -436,0 +441,0 @@ prefix?: string; |
@@ -73,2 +73,3 @@ <!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
| [InputColumnRecordArgs](./schema.inputcolumnrecordargs.md) | | | ||
| [InputKeyValueArgs](./schema.inputkeyvalueargs.md) | | | ||
| [JoinArgs](./schema.joinargs.md) | | | ||
@@ -94,3 +95,2 @@ | [JoinArgsBase](./schema.joinargsbase.md) | | | ||
| [TypeHints](./schema.typehints.md) | Configuration values for interpreting data types when parsing a delimited file. By default, all values are read as strings - applying these type hints can derive primitive types from the strings. | | ||
| [UnfoldArgs](./schema.unfoldargs.md) | | | ||
| [UnhotArgs](./schema.unhotargs.md) | | | ||
@@ -122,4 +122,5 @@ | [VariadicInput](./schema.variadicinput.md) | Multi-input, single output step I/O | | ||
| [Step](./schema.step.md) | Specification for step items | | ||
| [UnfoldArgs](./schema.unfoldargs.md) | | | ||
| [UnrollArgs](./schema.unrollargs.md) | | | ||
| [Value](./schema.value.md) | A cell/property value of any type. | | ||
@@ -10,4 +10,5 @@ <!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
```typescript | ||
export interface PivotArgs | ||
export interface PivotArgs extends InputKeyValueArgs | ||
``` | ||
<b>Extends:</b> [InputKeyValueArgs](./schema.inputkeyvalueargs.md) | ||
@@ -18,5 +19,3 @@ ## Properties | ||
| --- | --- | --- | --- | | ||
| [key](./schema.pivotargs.key.md) | | string | | | ||
| [operation](./schema.pivotargs.operation.md) | | [FieldAggregateOperation](./schema.fieldaggregateoperation.md) | | | ||
| [value](./schema.pivotargs.value.md) | | string | | | ||
@@ -5,3 +5,3 @@ <!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
## UnfoldArgs interface | ||
## UnfoldArgs type | ||
@@ -11,11 +11,5 @@ <b>Signature:</b> | ||
```typescript | ||
export interface UnfoldArgs | ||
export declare type UnfoldArgs = InputKeyValueArgs; | ||
``` | ||
<b>References:</b> [InputKeyValueArgs](./schema.inputkeyvalueargs.md) | ||
## Properties | ||
| Property | Modifiers | Type | Description | | ||
| --- | --- | --- | --- | | ||
| [key](./schema.unfoldargs.key.md) | | string | | | ||
| [value](./schema.unfoldargs.value.md) | | string | | | ||
@@ -482,2 +482,10 @@ ## API Report File for "@datashaper/schema" | ||
// Warning: (ae-missing-release-tag) "InputKeyValueArgs" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) | ||
// | ||
// @public (undocumented) | ||
export interface InputKeyValueArgs { | ||
key: string; | ||
value: string; | ||
} | ||
// Warning: (ae-missing-release-tag) "JoinArgs" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) | ||
@@ -708,9 +716,5 @@ // | ||
// @public (undocumented) | ||
export interface PivotArgs { | ||
export interface PivotArgs extends InputKeyValueArgs { | ||
// (undocumented) | ||
key: string; | ||
// (undocumented) | ||
operation: FieldAggregateOperation; | ||
// (undocumented) | ||
value: string; | ||
} | ||
@@ -957,8 +961,3 @@ | ||
// @public (undocumented) | ||
export interface UnfoldArgs { | ||
// (undocumented) | ||
key: string; | ||
// (undocumented) | ||
value: string; | ||
} | ||
export type UnfoldArgs = InputKeyValueArgs; | ||
@@ -965,0 +964,0 @@ // Warning: (ae-missing-release-tag) "UnhotArgs" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) |
@@ -482,2 +482,10 @@ ## API Report File for "@datashaper/schema" | ||
// Warning: (ae-missing-release-tag) "InputKeyValueArgs" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) | ||
// | ||
// @public (undocumented) | ||
export interface InputKeyValueArgs { | ||
key: string; | ||
value: string; | ||
} | ||
// Warning: (ae-missing-release-tag) "JoinArgs" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) | ||
@@ -708,9 +716,5 @@ // | ||
// @public (undocumented) | ||
export interface PivotArgs { | ||
export interface PivotArgs extends InputKeyValueArgs { | ||
// (undocumented) | ||
key: string; | ||
// (undocumented) | ||
operation: FieldAggregateOperation; | ||
// (undocumented) | ||
value: string; | ||
} | ||
@@ -957,8 +961,3 @@ | ||
// @public (undocumented) | ||
export interface UnfoldArgs { | ||
// (undocumented) | ||
key: string; | ||
// (undocumented) | ||
value: string; | ||
} | ||
export type UnfoldArgs = InputKeyValueArgs; | ||
@@ -965,0 +964,0 @@ // Warning: (ae-missing-release-tag) "UnhotArgs" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) |
{ | ||
"name": "@datashaper/schema", | ||
"version": "6.2.2", | ||
"version": "6.3.0", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -69,2 +69,13 @@ /*! | ||
export interface InputKeyValueArgs { | ||
/** | ||
* Key column for the operation | ||
*/ | ||
key: string | ||
/** | ||
* Value column for the operation | ||
*/ | ||
value: string | ||
} | ||
export interface OutputColumnArgs { | ||
@@ -429,5 +440,3 @@ /** | ||
export interface PivotArgs { | ||
key: string | ||
value: string | ||
export interface PivotArgs extends InputKeyValueArgs { | ||
operation: FieldAggregateOperation | ||
@@ -484,6 +493,3 @@ } | ||
export interface UnfoldArgs { | ||
key: string | ||
value: string | ||
} | ||
export type UnfoldArgs = InputKeyValueArgs | ||
@@ -490,0 +496,0 @@ export interface UnhotArgs extends InputColumnListArgs, OutputColumnArgs { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
734065
0
344
14270