Skip to content

Commit

Permalink
chore: add since tags
Browse files Browse the repository at this point in the history
  • Loading branch information
Caele committed Jan 20, 2021
1 parent fb920b9 commit e100d8e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions apis/conversion/src/hypercube/index.js
Expand Up @@ -4,6 +4,7 @@ import importProperties from './import-properties';
/**
* @interface hyperCubeConversion
* @experimental
* @since 1.1.0
* @implements {ConversionType}
*/

Expand Down
3 changes: 3 additions & 0 deletions apis/conversion/src/index.js
Expand Up @@ -79,6 +79,7 @@ export const convertTo = async ({ halo, model, cellRef, newType }) => {
/**
* @interface ConversionType
* @experimental
* @since 1.1.0
* @property {importProperties} importProperties
* @property {exportProperties} exportProperties
*/
Expand All @@ -87,6 +88,7 @@ export const convertTo = async ({ halo, model, cellRef, newType }) => {
* @interface
* @alias Conversion
* @experimental
* @since 1.1.0
* @description Provides conversion functionality to extensions
* @example
* import { conversion } from '@nebula.js/stardust';
Expand All @@ -107,6 +109,7 @@ const conversion = {
/**
* @type {hyperCubeConversion}
* @experimental
* @since 1.1.0
* @description Provides conversion functionality for extensions with hyperCubes
*/
hypercube,
Expand Down
12 changes: 12 additions & 0 deletions apis/stardust/api-spec/spec.json
Expand Up @@ -572,12 +572,18 @@
"Conversion": {
"description": "Provides conversion functionality to extensions",
"stability": "experimental",
"availability": {
"since": "1.1.0"
},
"kind": "interface",
"params": [],
"entries": {
"hypercube": {
"description": "Provides conversion functionality for extensions with hyperCubes",
"stability": "experimental",
"availability": {
"since": "1.1.0"
},
"type": "#/definitions/hyperCubeConversion"
}
},
Expand All @@ -587,6 +593,9 @@
},
"ConversionType": {
"stability": "experimental",
"availability": {
"since": "1.1.0"
},
"kind": "interface",
"entries": {
"importProperties": {
Expand Down Expand Up @@ -1044,6 +1053,9 @@
},
"hyperCubeConversion": {
"stability": "experimental",
"availability": {
"since": "1.1.0"
},
"implements": [
{
"type": "#/definitions/ConversionType"
Expand Down

0 comments on commit e100d8e

Please sign in to comment.