@shapediver/api.platform-api-dto-v1
Advanced tools
Comparing version 2.18.11 to 2.18.12
@@ -52,16 +52,44 @@ import { SdPlatformModelFileType } from "../commons/SdPlatformModelCommons"; | ||
Unknown = "unknown", | ||
/** unsupported plug-in */ | ||
Plugin = "plugin", | ||
/** denied script */ | ||
Script = "script", | ||
/** timeout in phase "computation" of model checking (solver took more than max_comp_time but less than 2x max_comp_time) */ | ||
Timeout = "timeout", | ||
/** model does not have outputs */ | ||
NoOutputs = "no_outputs", | ||
/** size of outputs exceeds limit */ | ||
Size = "size", | ||
/** technical limit of outputs */ | ||
OutputLimits = "output_limits", | ||
/** model does not output geometry for default parameter values */ | ||
NoDefaultGeometry = "no_default_geometry", | ||
/** timeout in phase "computation" of model checking (solver took more than 2x max_comp_time) */ | ||
TimeoutSmall = "timeout_small", | ||
/** catchall worker timeout during model checking */ | ||
ComputationFailed = "computation_failed", | ||
/** workers could not process check request (typically due to workload) */ | ||
NotProcessed = "not_processed", | ||
/** unsupported component */ | ||
Component = "component", | ||
/** denied encrypted cluster */ | ||
EncryptedCluster = "encrypted_cluster", | ||
/** usage of scripts not allowed */ | ||
ScriptsNotAllowed = "scripts_not_allowed", | ||
ScriptsPending = "scripts_pending" | ||
/** script check pending */ | ||
ScriptsPending = "scripts_pending", | ||
/** timeout in phase "analysis" of model checking */ | ||
AnalysisTimeout = "analysis_timeout", | ||
/** timeout in phase "loading" of model checking */ | ||
LoadingTimeout = "loading_timeout", | ||
/** timeout in phase "preparation" of model checking */ | ||
PreparationTimeout = "preparation_timeout", | ||
/** timeout in phase "collect results" of model checking (solver and collection took more than max_charge_time but less than 2x max_charge_time) */ | ||
CollectTimeout = "collect_timeout", | ||
/** timeout in phase "collect results" of model checking (solver and collection took more than 2x max_charge_time) */ | ||
CollectTimeoutSmall = "collect_timeout_small", | ||
/** the model requires at least Rhino 8 */ | ||
RequiresRhino8 = "requires_rhino_8", | ||
/** the Grasshopper version of the model is unknown */ | ||
UnknownGrasshopperVersion = "unknown_grasshopper_version" | ||
} | ||
@@ -156,2 +184,11 @@ /** | ||
/** | ||
* Model-specific settings on the geometry backend. | ||
*/ | ||
interface ModelBackendSettingsModel { | ||
/** Use CDN */ | ||
readonly use_cdn: boolean; | ||
/** Is CDN supported? */ | ||
readonly cdn_supported: boolean; | ||
} | ||
/** | ||
* Settings of the model on the geometry backend. | ||
@@ -166,2 +203,4 @@ */ | ||
readonly token?: ModelBackendSettingsToken; | ||
/** Model-specific settings on the geometry backend. */ | ||
readonly model?: ModelBackendSettingsModel; | ||
} | ||
@@ -168,0 +207,0 @@ /** |
@@ -40,17 +40,45 @@ "use strict"; | ||
SdPlatformModelDenyReason["Unknown"] = "unknown"; | ||
/** unsupported plug-in */ | ||
SdPlatformModelDenyReason["Plugin"] = "plugin"; | ||
/** denied script */ | ||
SdPlatformModelDenyReason["Script"] = "script"; | ||
/** timeout in phase "computation" of model checking (solver took more than max_comp_time but less than 2x max_comp_time) */ | ||
SdPlatformModelDenyReason["Timeout"] = "timeout"; | ||
/** model does not have outputs */ | ||
SdPlatformModelDenyReason["NoOutputs"] = "no_outputs"; | ||
/** size of outputs exceeds limit */ | ||
SdPlatformModelDenyReason["Size"] = "size"; | ||
/** technical limit of outputs */ | ||
SdPlatformModelDenyReason["OutputLimits"] = "output_limits"; | ||
/** model does not output geometry for default parameter values */ | ||
SdPlatformModelDenyReason["NoDefaultGeometry"] = "no_default_geometry"; | ||
/** timeout in phase "computation" of model checking (solver took more than 2x max_comp_time) */ | ||
SdPlatformModelDenyReason["TimeoutSmall"] = "timeout_small"; | ||
/** catchall worker timeout during model checking */ | ||
SdPlatformModelDenyReason["ComputationFailed"] = "computation_failed"; | ||
/** workers could not process check request (typically due to workload) */ | ||
SdPlatformModelDenyReason["NotProcessed"] = "not_processed"; | ||
/** unsupported component */ | ||
SdPlatformModelDenyReason["Component"] = "component"; | ||
/** denied encrypted cluster */ | ||
SdPlatformModelDenyReason["EncryptedCluster"] = "encrypted_cluster"; | ||
/** usage of scripts not allowed */ | ||
SdPlatformModelDenyReason["ScriptsNotAllowed"] = "scripts_not_allowed"; | ||
/** script check pending */ | ||
SdPlatformModelDenyReason["ScriptsPending"] = "scripts_pending"; | ||
/** timeout in phase "analysis" of model checking */ | ||
SdPlatformModelDenyReason["AnalysisTimeout"] = "analysis_timeout"; | ||
/** timeout in phase "loading" of model checking */ | ||
SdPlatformModelDenyReason["LoadingTimeout"] = "loading_timeout"; | ||
/** timeout in phase "preparation" of model checking */ | ||
SdPlatformModelDenyReason["PreparationTimeout"] = "preparation_timeout"; | ||
/** timeout in phase "collect results" of model checking (solver and collection took more than max_charge_time but less than 2x max_charge_time) */ | ||
SdPlatformModelDenyReason["CollectTimeout"] = "collect_timeout"; | ||
/** timeout in phase "collect results" of model checking (solver and collection took more than 2x max_charge_time) */ | ||
SdPlatformModelDenyReason["CollectTimeoutSmall"] = "collect_timeout_small"; | ||
/** the model requires at least Rhino 8 */ | ||
SdPlatformModelDenyReason["RequiresRhino8"] = "requires_rhino_8"; | ||
/** the Grasshopper version of the model is unknown */ | ||
SdPlatformModelDenyReason["UnknownGrasshopperVersion"] = "unknown_grasshopper_version"; | ||
})(SdPlatformModelDenyReason || (SdPlatformModelDenyReason = {})); | ||
//# sourceMappingURL=SdPlatformResponseModel.js.map |
@@ -84,8 +84,6 @@ import { SdPlatformPolicyCommonAliasesSavedState, SdPlatformPolicyPermissionsSavedState } from "../commons/SdPlatformPolicyCommons"; | ||
readonly updated_at: number; | ||
/** | ||
* Applying session settings. | ||
*/ | ||
readonly settings: SdPlatformResponseSavedStateSettings; | ||
} | ||
/** | ||
* Saved state - owner access level | ||
*/ | ||
export interface SdPlatformResponseSavedStateOwner extends SdPlatformResponseSavedStatePublic { | ||
/** | ||
@@ -105,2 +103,7 @@ * Visibility of the saved state. Might be limited by the visibility of the model, the owner, or an organization. | ||
/** | ||
* Saved state - owner access level | ||
*/ | ||
export interface SdPlatformResponseSavedStateOwner extends SdPlatformResponseSavedStatePublic { | ||
} | ||
/** | ||
* Saved state - admin access level | ||
@@ -107,0 +110,0 @@ */ |
{ | ||
"name": "@shapediver/api.platform-api-dto-v1", | ||
"version": "2.18.11", | ||
"version": "2.18.12", | ||
"description": "Data Transfer Object Definitions of the Platform API v1", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
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
292564
5333