@shapediver/api.geometry-api-dto-v1
Advanced tools
Comparing version 1.13.2 to 1.14.0
@@ -1,12 +0,12 @@ | ||
export * from "./request/SdRequestDto"; | ||
export * from "./request/SdRequestDtoExportOutput"; | ||
export * from "./request/SdRequestDtoModel"; | ||
export * from "./request/SdRequestDtoUpload"; | ||
export * from "./response/SdResponseDto"; | ||
export * from "./response/SdResponseDtoError"; | ||
export * from "./response/SdResponseDtoExport"; | ||
export * from "./response/SdResponseDtoModel"; | ||
export * from "./response/SdResponseDtoModelComputation"; | ||
export * from "./response/SdResponseDtoModelStatistics"; | ||
export * from "./response/SdResponseDtoOutput"; | ||
export * from './request/SdRequestDto'; | ||
export * from './request/SdRequestDtoExportOutput'; | ||
export * from './request/SdRequestDtoModel'; | ||
export * from './request/SdRequestDtoUpload'; | ||
export * from './response/SdResponseDto'; | ||
export * from './response/SdResponseDtoError'; | ||
export * from './response/SdResponseDtoExport'; | ||
export * from './response/SdResponseDtoModel'; | ||
export * from './response/SdResponseDtoModelComputation'; | ||
export * from './response/SdResponseDtoModelStatistics'; | ||
export * from './response/SdResponseDtoOutput'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -23,10 +23,10 @@ /** Type of a ticket */ | ||
export interface ShapeDiverRequestModelStatisticsPart { | ||
"modelid": string | string[]; | ||
"timestamp"?: string | string[]; | ||
"timestamp_from"?: string; | ||
"timestamp_to"?: string; | ||
modelid: string | string[]; | ||
timestamp?: string | string[]; | ||
timestamp_from?: string; | ||
timestamp_to?: string; | ||
} | ||
/** Body of a model statistics request */ | ||
export type ShapeDiverRequestModelStatistics = { | ||
"parameters": ShapeDiverRequestModelStatisticsPart[]; | ||
parameters: ShapeDiverRequestModelStatisticsPart[]; | ||
}; | ||
@@ -33,0 +33,0 @@ /** Body of an configure request */ |
@@ -1,2 +0,2 @@ | ||
import { ShapeDiverCommonsGroup } from "../commons/SdCommonsGroup"; | ||
import { ShapeDiverCommonsGroup } from '../commons/SdCommonsGroup'; | ||
/** | ||
@@ -3,0 +3,0 @@ * Body of a customization request. |
@@ -1,2 +0,2 @@ | ||
import { ShapeDiverCommonsGroup } from "../commons/SdCommonsGroup"; | ||
import { ShapeDiverCommonsGroup } from '../commons/SdCommonsGroup'; | ||
/** | ||
@@ -85,2 +85,4 @@ * Body of a template request | ||
tooltip?: string; | ||
/** Holds parameter-type specific information. */ | ||
settings?: Record<string, any>; | ||
}; | ||
@@ -87,0 +89,0 @@ /** Group information of a parameter */ |
@@ -20,3 +20,3 @@ /** | ||
* Otherwise, a signature mismatch will occur. | ||
*/ | ||
*/ | ||
filename?: string; | ||
@@ -23,0 +23,0 @@ /** Content-Type (MIME type) of the file to be uploaded */ |
@@ -1,6 +0,6 @@ | ||
import { ShapeDiverCommonsGroup } from "../commons/SdCommonsGroup"; | ||
import { ShapeDiverResponseExport, ShapeDiverResponseExportDefinition } from "./SdResponseDtoExport"; | ||
import { ShapeDiverResponseCollection } from "./SdResponseDtoModel"; | ||
import { ShapeDiverResponseModelStatistics } from "./SdResponseDtoModelStatistics"; | ||
import { ShapeDiverResponseOutput, ShapeDiverResponseOutputDefinition } from "./SdResponseDtoOutput"; | ||
import { ShapeDiverCommonsGroup } from '../commons/SdCommonsGroup'; | ||
import { ShapeDiverResponseExport, ShapeDiverResponseExportDefinition } from './SdResponseDtoExport'; | ||
import { ShapeDiverResponseCollection } from './SdResponseDtoModel'; | ||
import { ShapeDiverResponseModelStatistics } from './SdResponseDtoModelStatistics'; | ||
import { ShapeDiverResponseOutput, ShapeDiverResponseOutputDefinition } from './SdResponseDtoOutput'; | ||
/** | ||
@@ -167,2 +167,4 @@ * ShapeDiver API response | ||
hidden: boolean; | ||
/** Holds parameter-type specific information. */ | ||
settings?: Record<string, any>; | ||
} | ||
@@ -198,5 +200,7 @@ /** | ||
COLOR = "Color", | ||
DRAWING = "Drawing", | ||
EVEN = "Even", | ||
FILE = "File", | ||
FLOAT = "Float", | ||
INTERACTION = "Interaction", | ||
INT = "Int", | ||
@@ -203,0 +207,0 @@ ODD = "Odd", |
@@ -34,5 +34,7 @@ "use strict"; | ||
ShapeDiverResponseParameterType["COLOR"] = "Color"; | ||
ShapeDiverResponseParameterType["DRAWING"] = "Drawing"; | ||
ShapeDiverResponseParameterType["EVEN"] = "Even"; | ||
ShapeDiverResponseParameterType["FILE"] = "File"; | ||
ShapeDiverResponseParameterType["FLOAT"] = "Float"; | ||
ShapeDiverResponseParameterType["INTERACTION"] = "Interaction"; | ||
ShapeDiverResponseParameterType["INT"] = "Int"; | ||
@@ -39,0 +41,0 @@ ShapeDiverResponseParameterType["ODD"] = "Odd"; |
@@ -1,3 +0,3 @@ | ||
import { ShapeDiverCommonsGroup } from "../commons/SdCommonsGroup"; | ||
import { ShapeDiverResponseModelComputationStatus } from "./SdResponseDtoModelComputation"; | ||
import { ShapeDiverCommonsGroup } from '../commons/SdCommonsGroup'; | ||
import { ShapeDiverResponseModelComputationStatus } from './SdResponseDtoModelComputation'; | ||
/** types of exports */ | ||
@@ -4,0 +4,0 @@ export declare enum ShapeDiverResponseExportDefinitionType { |
@@ -1,3 +0,3 @@ | ||
import { ShapeDiverCommonsGroup } from "../commons/SdCommonsGroup"; | ||
import { ShapeDiverResponseModelComputationStatus } from "./SdResponseDtoModelComputation"; | ||
import { ShapeDiverCommonsGroup } from '../commons/SdCommonsGroup'; | ||
import { ShapeDiverResponseModelComputationStatus } from './SdResponseDtoModelComputation'; | ||
/** Group information of an output definition */ | ||
@@ -4,0 +4,0 @@ export type ShapeDiverResponseOutputDefinitionGroup = ShapeDiverCommonsGroup; |
{ | ||
"name": "@shapediver/api.geometry-api-dto-v1", | ||
"version": "1.13.2", | ||
"description": "Data Transfer Object Definitions of the Geometry API v1", | ||
"keywords": [], | ||
"author": "Matthias Reisacher <matt@shapediver.com>", | ||
"license": "ISC", | ||
"main": "dist/index.js", | ||
"directories": {}, | ||
"files": [ | ||
"dist" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/shapediver/ShapeDiverBackend.git" | ||
}, | ||
"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" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/shapediver/ShapeDiverBackend/issues" | ||
}, | ||
"homepage": "https://github.com/shapediver/ShapeDiverBackend#readme", | ||
"typings": "dist/index.d.ts", | ||
"devDependencies": { | ||
"lerna": "~8.1.3", | ||
"typescript": "~5.4.5" | ||
} | ||
"name": "@shapediver/api.geometry-api-dto-v1", | ||
"version": "1.14.0", | ||
"description": "Data Transfer Object Definitions of the Geometry API v1", | ||
"keywords": [], | ||
"author": "Matthias Reisacher <matt@shapediver.com>", | ||
"license": "ISC", | ||
"main": "dist/index.js", | ||
"directories": {}, | ||
"files": [ | ||
"dist" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/shapediver/ShapeDiverBackend.git" | ||
}, | ||
"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" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/shapediver/ShapeDiverBackend/issues" | ||
}, | ||
"homepage": "https://github.com/shapediver/ShapeDiverBackend#readme", | ||
"typings": "dist/index.d.ts", | ||
"devDependencies": { | ||
"lerna": "8.1.3", | ||
"typescript": "~5.5.2" | ||
} | ||
} |
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
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
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
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
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
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
Sorry, the diff of this file is not supported yet
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
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
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
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
89014
1351