@shapediver/api.geometry-api-dto-v1
Advanced tools
Comparing version 1.6.0 to 1.7.0
@@ -106,5 +106,23 @@ import { ShapeDiverCommonsGroup } from "../commons/SdCommonsGroup"; | ||
tooltip?: string; | ||
/** | ||
* The chunk definitions of the sdTF file that is generated by the output. | ||
* If specified, all existing sdTF chunks of the output must be given. | ||
* The order of the given chunk items determines the order in that the chunks will be shown in the UI. | ||
*/ | ||
chunks?: ShapeDiverRequestOutputDefinitionChunk[]; | ||
}; | ||
/** Group information of an output definition */ | ||
export type ShapeDiverRequestOutputDefinitionGroup = ShapeDiverCommonsGroup; | ||
/** Definition of a single "chunk" of data in the sdTF file that is generated by the output component. */ | ||
export interface ShapeDiverRequestOutputDefinitionChunk { | ||
/** ID of the chunk. */ | ||
id: string; | ||
/** | ||
* Custom name to display instead of the chunk {@link name}. | ||
* This value can be unset by specifying an empty string. | ||
*/ | ||
displayname?: string; | ||
/** Controls whether the chunk should be hidden in the UI. */ | ||
hidden?: boolean; | ||
} | ||
//# sourceMappingURL=SdRequestDtoExportOutput.d.ts.map |
@@ -100,3 +100,3 @@ import { ShapeDiverCommonsGroup } from "../commons/SdCommonsGroup"; | ||
export interface ShapeDiverResponseOutputChunk { | ||
/** Id of the chunk */ | ||
/** ID of the chunk */ | ||
id: string; | ||
@@ -109,3 +109,7 @@ /** Name of the chunk */ | ||
tooltip?: string; | ||
/** Custom name to display instead of {@link name}. Empty string if not set. */ | ||
displayname: string; | ||
/** Controls whether the chunk should be hidden in the UI */ | ||
hidden: boolean; | ||
} | ||
//# sourceMappingURL=SdResponseDtoOutput.d.ts.map |
{ | ||
"name": "@shapediver/api.geometry-api-dto-v1", | ||
"version": "1.6.0", | ||
"version": "1.7.0", | ||
"description": "Data Transfer Object Definitions of the Geometry API v1", | ||
@@ -18,5 +18,8 @@ "keywords": [], | ||
"scripts": { | ||
"test": "bash ../../scripts/test.sh", | ||
"check": "tsc --noEmit", | ||
"build": "bash ../../scripts/build.sh", | ||
"build-dep": "bash ../../scripts/build-dep.sh" | ||
"build-dep": "bash ../../scripts/build-dep.sh", | ||
"pre-publish": "bash ../../scripts/pre-publish.sh", | ||
"post-publish": "bash ../../scripts/post-publish.sh" | ||
}, | ||
@@ -29,5 +32,5 @@ "bugs": { | ||
"devDependencies": { | ||
"lerna": "3.22.1", | ||
"typescript": "^4.9.4" | ||
"lerna": "~6.6.1", | ||
"typescript": "~4.9.5" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
81297
1215