@shapediver/api.geometry-api-dto-v1
Advanced tools
Comparing version 1.3.1 to 1.4.0
@@ -29,7 +29,7 @@ /** Type of a ticket */ | ||
/** Body of a model statistics request */ | ||
export declare type ShapeDiverRequestModelStatistics = { | ||
export type ShapeDiverRequestModelStatistics = { | ||
"parameters": ShapeDiverRequestModelStatisticsPart[]; | ||
}; | ||
/** Body of an configure request */ | ||
export declare type ShapeDiverRequestConfigure = { | ||
export type ShapeDiverRequestConfigure = { | ||
[key: string]: any; | ||
@@ -36,0 +36,0 @@ }; |
@@ -0,1 +1,2 @@ | ||
import { ShapeDiverCommonsGroup } from "../commons/SdCommonsGroup"; | ||
/** | ||
@@ -10,3 +11,3 @@ * Body of a customization request. | ||
*/ | ||
export declare type ShapeDiverRequestCustomization = { | ||
export type ShapeDiverRequestCustomization = { | ||
[key: string]: ShapeDiverRequestParameterBasic | ShapeDiverRequestParameterSType; | ||
@@ -22,3 +23,3 @@ }; | ||
*/ | ||
export declare type ShapeDiverRequestParameterBasic = string | number | boolean; | ||
export type ShapeDiverRequestParameterBasic = string | number | boolean; | ||
/** Definition of a Shape Diver s-type parameter */ | ||
@@ -63,13 +64,18 @@ export interface ShapeDiverRequestParameterSType { | ||
*/ | ||
export declare type ShapeDiverRequestCache = { | ||
export type ShapeDiverRequestCache = { | ||
[key: string]: string; | ||
}; | ||
/** Definition of an export parameter */ | ||
export declare type ShapeDiverRequestExportDefinition = { | ||
export type ShapeDiverRequestExportDefinition = { | ||
[exportId: string]: ShapeDiverRequestExportDefinitionPart; | ||
}; | ||
export declare type ShapeDiverRequestExportDefinitionPart = { | ||
export type ShapeDiverRequestExportDefinitionPart = { | ||
[exportId: string]: { | ||
/** Parameter name to display instead of name */ | ||
displayname?: string; | ||
/** | ||
* Group of an export. | ||
* Set to `null` to remove the export from the currently assigned group. | ||
*/ | ||
group?: ShapeDiverRequestExportDefinitionGroup | null; | ||
/** Controls whether the parameter should be hidden in the UI */ | ||
@@ -83,9 +89,16 @@ hidden?: boolean; | ||
}; | ||
/** Group information of an export definition */ | ||
export type ShapeDiverRequestExportDefinitionGroup = ShapeDiverCommonsGroup; | ||
/** Definition of an output parameter */ | ||
export declare type ShapeDiverRequestOutputDefinition = { | ||
export type ShapeDiverRequestOutputDefinition = { | ||
[outputId: string]: ShapeDiverRequestOutputDefinitionPart; | ||
}; | ||
export declare type ShapeDiverRequestOutputDefinitionPart = { | ||
export type ShapeDiverRequestOutputDefinitionPart = { | ||
/** Parameter name to display instead of name */ | ||
displayname?: string; | ||
/** | ||
* Group of an output. | ||
* Set to `null` to remove the output from the currently assigned group. | ||
*/ | ||
group?: ShapeDiverRequestOutputDefinitionGroup | null; | ||
/** Controls whether the parameter should be hidden in the UI */ | ||
@@ -98,2 +111,4 @@ hidden?: boolean; | ||
}; | ||
/** Group information of an output definition */ | ||
export type ShapeDiverRequestOutputDefinitionGroup = ShapeDiverCommonsGroup; | ||
//# sourceMappingURL=SdRequestDtoExportOutput.d.ts.map |
@@ -0,1 +1,2 @@ | ||
import { ShapeDiverCommonsGroup } from "../commons/SdCommonsGroup"; | ||
/** | ||
@@ -65,8 +66,13 @@ * Body of a template request | ||
/** Definition of a model parameter */ | ||
export declare type ShapeDiverRequestParameterDefinition = { | ||
export type ShapeDiverRequestParameterDefinition = { | ||
[paramId: string]: ShapeDiverRequestParameterDefinitionPart; | ||
}; | ||
export declare type ShapeDiverRequestParameterDefinitionPart = { | ||
export type ShapeDiverRequestParameterDefinitionPart = { | ||
/** Parameter name to display instead of name */ | ||
displayname?: string; | ||
/** | ||
* Group of a parameter. | ||
* Set to `null` to remove the parameter from the currently assigned group. | ||
*/ | ||
group?: ShapeDiverRequestParameterDefinitionGroup | null; | ||
/** Controls whether the parameter should be hidden in the UI */ | ||
@@ -79,2 +85,4 @@ hidden?: boolean; | ||
}; | ||
/** Group information of a parameter */ | ||
export type ShapeDiverRequestParameterDefinitionGroup = ShapeDiverCommonsGroup; | ||
//# sourceMappingURL=SdRequestDtoModel.d.ts.map |
@@ -9,3 +9,3 @@ /** | ||
*/ | ||
export declare type ShapeDiverRequestFileUpload = { | ||
export type ShapeDiverRequestFileUpload = { | ||
[paramId: string]: ShapeDiverRequestFileUploadPart; | ||
@@ -21,3 +21,3 @@ }; | ||
/** Body of a sdtf upload request */ | ||
export declare type ShapeDiverRequestSdtfUpload = ShapeDiverRequestSdtfUploadPart[]; | ||
export type ShapeDiverRequestSdtfUpload = ShapeDiverRequestSdtfUploadPart[]; | ||
/** Data for a single file parameter part of a sdtf upload request */ | ||
@@ -24,0 +24,0 @@ export interface ShapeDiverRequestSdtfUploadPart { |
@@ -0,1 +1,2 @@ | ||
import { ShapeDiverCommonsGroup } from "../commons/SdCommonsGroup"; | ||
import { ShapeDiverResponseExport, ShapeDiverResponseExportDefinition } from "./SdResponseDtoExport"; | ||
@@ -8,3 +9,3 @@ import { ShapeDiverResponseCollection } from "./SdResponseDtoModel"; | ||
*/ | ||
export declare type ShapeDiverResponseDto = ShapeDiverResponseBase | ShapeDiverModelConfig | ShapeDiverResponseModelStatistics; | ||
export type ShapeDiverResponseDto = ShapeDiverResponseBase | ShapeDiverModelConfig | ShapeDiverResponseModelStatistics; | ||
export interface ShapeDiverResponseBase { | ||
@@ -65,3 +66,3 @@ /** | ||
/** Definition of a ShapeDiver model config object */ | ||
export declare type ShapeDiverModelConfig = object; | ||
export type ShapeDiverModelConfig = object; | ||
/** | ||
@@ -170,6 +171,3 @@ * Defines the actions to be taken on the response data | ||
/** Group information of a parameter */ | ||
export interface ShapeDiverResponseParameterGroup { | ||
id: string; | ||
name: string; | ||
} | ||
export type ShapeDiverResponseParameterGroup = ShapeDiverCommonsGroup; | ||
/** | ||
@@ -184,6 +182,6 @@ * Result part for the response to an upload request for "file" parameters | ||
} | ||
export declare type ShapeDiverResponseFileUpload = { | ||
export type ShapeDiverResponseFileUpload = { | ||
[key: string]: ShapeDiverResponseUploadPart; | ||
}; | ||
export declare type ShapeDiverResponseSdtfUpload = ShapeDiverResponseUploadPart[]; | ||
export type ShapeDiverResponseSdtfUpload = ShapeDiverResponseUploadPart[]; | ||
/** | ||
@@ -190,0 +188,0 @@ * Information about uploaded glTF object |
@@ -1,2 +0,2 @@ | ||
import { ShapeDiverResponseParameterGroup } from "./SdResponseDto"; | ||
import { ShapeDiverCommonsGroup } from "../commons/SdCommonsGroup"; | ||
import { ShapeDiverResponseModelComputationStatus } from "./SdResponseDtoModelComputation"; | ||
@@ -10,2 +10,4 @@ /** types of exports */ | ||
} | ||
/** group information of an export definition */ | ||
export type ShapeDiverResponseExportDefinitionGroup = ShapeDiverCommonsGroup; | ||
/** | ||
@@ -28,4 +30,4 @@ * export definition WITHOUT results as exposed on the API | ||
dependency: string[]; | ||
/** parameter group of an export */ | ||
group?: ShapeDiverResponseParameterGroup; | ||
/** group of an export */ | ||
group?: ShapeDiverResponseExportDefinitionGroup; | ||
/** ordering of the export in client applications */ | ||
@@ -32,0 +34,0 @@ order?: number; |
/** | ||
* Model statistics components | ||
*/ | ||
export declare type ShapeDiverResponseModelStatistics = ShapeDiverResponseModelStatisticsPart[]; | ||
export type ShapeDiverResponseModelStatistics = ShapeDiverResponseModelStatisticsPart[]; | ||
export interface ShapeDiverResponseModelStatisticsPart { | ||
@@ -6,0 +6,0 @@ modelid: string; |
@@ -0,2 +1,5 @@ | ||
import { ShapeDiverCommonsGroup } from "../commons/SdCommonsGroup"; | ||
import { ShapeDiverResponseModelComputationStatus } from "./SdResponseDtoModelComputation"; | ||
/** Group information of an output definition */ | ||
export type ShapeDiverResponseOutputDefinitionGroup = ShapeDiverCommonsGroup; | ||
/** | ||
@@ -21,2 +24,4 @@ * output definition WITHOUT results as exposed on the API | ||
dependency: string[]; | ||
/** group of an output */ | ||
group?: ShapeDiverResponseOutputDefinitionGroup; | ||
/** ordering of the output in client applications */ | ||
@@ -23,0 +28,0 @@ order?: number; |
{ | ||
"name": "@shapediver/api.geometry-api-dto-v1", | ||
"version": "1.3.1", | ||
"version": "1.4.0", | ||
"description": "Data Transfer Object Definitions of the Geometry API v1", | ||
@@ -29,4 +29,4 @@ "keywords": [], | ||
"lerna": "3.22.1", | ||
"typescript": "^4.8.3" | ||
"typescript": "^4.9.3" | ||
} | ||
} |
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
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
77538
54
1171