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

@shapediver/api.geometry-api-dto-v2

Package Overview
Dependencies
Maintainers
5
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@shapediver/api.geometry-api-dto-v2 - npm Package Compare versions

Comparing version 1.7.0 to 1.8.0

52

dist/request/SdRequestDtoExportOutput.d.ts

@@ -308,2 +308,17 @@ import { ShapeDiverCommonsGroup } from "../commons/SdCommonsGroup";

tooltip?: string;
/**
* @swagger {components.schemas.RequestOutputDefinitionPart.properties} chunks {
"description": "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.",
"type": "array",
"items": {
"$ref": "#/components/schemas/RequestOutputDefinitionChunk"
}
}
*/
/**
* 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[];
};

@@ -323,2 +338,39 @@ /**

export type ShapeDiverRequestOutputDefinitionGroup = ShapeDiverCommonsGroup;
/**
* @swagger {components.schemas} RequestOutputDefinitionChunk {
"description": "Definition of a single \"chunk\" of data in an sdTF file that is generated by the output component.",
"type": "object"
}
*/
/** Definition of a single "chunk" of data in the sdTF file that is generated by the output component. */
export interface ShapeDiverRequestOutputDefinitionChunk {
/**
* @swagger {components.schemas.RequestOutputDefinitionChunk.properties} id {
"description": "ID of the chunk.",
"type": "string"
}
* @swagger {components.schemas.RequestOutputDefinitionChunk} required [ "id" ]
*/
/** ID of the chunk. */
id: string;
/**
* @swagger {components.schemas.RequestOutputDefinitionChunk.properties} displayname {
"description": "Chunk name to display instead of the chunk <code>name</code>. This value can be unset by specifying an empty string.",
"type": "string"
}
*/
/**
* Custom name to display instead of the chunk {@link name}.
* This value can be unset by specifying an empty string.
*/
displayname?: string;
/**
* @swagger {components.schemas.RequestOutputDefinitionChunk.properties} hidden {
"description": "Controls whether the chunk should be hidden in the UI.",
"type": "boolean"
}
*/
/** Controls whether the chunk should be hidden in the UI. */
hidden?: boolean;
}
//# sourceMappingURL=SdRequestDtoExportOutput.d.ts.map

@@ -338,3 +338,24 @@ import { ShapeDiverCommonsGroup } from "../commons/SdCommonsGroup";

tooltip?: string;
/**
* @swagger {components.schemas.ResponseOutputChunk.properties} displayname {
"description": "Custom name to display instead of <code>name</code>. Empty string if not set.",
"type": "string"
}
* @swagger {components.schemas.ResponseOutputChunk} required [ "displayname" ]
*/
/**
* Custom name to display instead of {@link name}.
* Empty string if not set.
*/
displayname: string;
/**
* @swagger {components.schemas.ResponseOutputChunk.properties} hidden {
"description": "Controls whether the chunk should be hidden in the UI.",
"type": "boolean"
}
* @swagger {components.schemas.ResponseOutputChunk} required [ "hidden" ]
*/
/** Controls whether the chunk should be hidden in the UI. */
hidden: boolean;
}
//# sourceMappingURL=SdResponseDtoOutput.d.ts.map

11

package.json
{
"name": "@shapediver/api.geometry-api-dto-v2",
"version": "1.7.0",
"version": "1.8.0",
"description": "Data Transfer Object Definitions of the Geometry API v2",

@@ -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",
"pre-publish": "bash ../../scripts/pre-publish.sh",
"post-publish": "bash ../../scripts/post-publish.sh",
"oas-generate": "sd-oas3 generate -s ./src -e ts"

@@ -30,6 +33,6 @@ },

"devDependencies": {
"@shapediver/util.oas3": "^1.0.0",
"lerna": "3.22.1",
"typescript": "^4.9.4"
"@shapediver/util.oas3": "~1.0.0",
"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

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