@shapediver/api.geometry-api-dto-v2
Advanced tools
Comparing version 1.6.0 to 1.7.0
@@ -169,2 +169,11 @@ /** | ||
/** | ||
* @swagger {components.schemas.ResponseSystemWorkers.properties} grasshopperVersion { | ||
"description": "Version of the Grasshopper application.", | ||
"type": "string" | ||
} | ||
* @swagger {components.schemas.ResponseSystemWorkers} required [ "grasshopperVersion" ] | ||
*/ | ||
/** Version of the Grasshopper application. */ | ||
grasshopperVersion: string; | ||
/** | ||
* @swagger {components.schemas.ResponseSystemWorkers.properties} plugins { | ||
@@ -179,2 +188,20 @@ "description": "Holds information of all installed and allowed Grasshopper plugins.", | ||
plugins: ShapeDiverResponseSystemWorkerPlugins; | ||
/** | ||
* @swagger {components.schemas.ResponseSystemWorkers.properties} rhinoVersion { | ||
"description": "Version of the Rhino application.", | ||
"type": "string" | ||
} | ||
* @swagger {components.schemas.ResponseSystemWorkers} required [ "rhinoVersion" ] | ||
*/ | ||
/** Version of the Rhino application. */ | ||
rhinoVersion: string; | ||
/** | ||
* @swagger {components.schemas.ResponseSystemWorkers.properties} shapeDiverVersion { | ||
"description": "Version of the ShapeDiver worker plugin.", | ||
"type": "string" | ||
} | ||
* @swagger {components.schemas.ResponseSystemWorkers} required [ "shapeDiverVersion" ] | ||
*/ | ||
/** Version of the ShapeDiver worker plugin. */ | ||
shapeDiverVersion: string; | ||
} | ||
@@ -289,2 +316,26 @@ /** | ||
/** | ||
* @swagger {components.schemas.ResponseSystemWorkerPluginInstalled.properties} assemblyVersion { | ||
"description": "Assembly version of the Grasshopper plugin DLL.<br/>Please see the <a href='https://learn.microsoft.com/en-us/dotnet/api/system.reflection.assemblyname.version?view=netframework-4.7.2'>documentation</a> for more information.", | ||
"type": "string" | ||
} | ||
* @swagger {components.schemas.ResponseSystemWorkerPluginInstalled} required [ "assemblyVersion" ] | ||
*/ | ||
/** | ||
* Assembly version of the Grasshopper plugin DLL. | ||
* [GH Docs](https://learn.microsoft.com/en-us/dotnet/api/system.reflection.assemblyname.version?view=netframework-4.7.2) | ||
*/ | ||
assemblyVersion: string; | ||
/** | ||
* @swagger {components.schemas.ResponseSystemWorkerPluginInstalled.properties} assemblyFullName { | ||
"description": "Full assembly name of the Grasshopper plugin DLL.<br/>Please see the <a href='https://learn.microsoft.com/en-us/dotnet/api/system.reflection.assemblyname.fullname?view=netframework-4.7.2'>documentation</a> for more information.", | ||
"type": "string" | ||
} | ||
* @swagger {components.schemas.ResponseSystemWorkerPluginInstalled} required [ "assemblyFullName" ] | ||
*/ | ||
/** | ||
* Full assembly name of the Grasshopper plugin DLL. | ||
* [GH Docs](https://learn.microsoft.com/en-us/dotnet/api/system.reflection.assemblyname.fullname?view=netframework-4.7.2) | ||
*/ | ||
assemblyFullName: string; | ||
/** | ||
* @swagger {components.schemas.ResponseSystemWorkerPluginInstalled.properties} isCoreLibrary { | ||
@@ -381,2 +432,74 @@ "description": "Gets whether this library is a Grasshopper core library. Core libraries are installed along with Grasshopper and thus should always be available anywhere.<br/>Please see the <a href='https://developer.rhino3d.com/api/grasshopper/html/P_Grasshopper_Kernel_GH_AssemblyInfo_IsCoreLibrary.htm'>documentation</a> for more information.", | ||
/** | ||
* @swagger {components.schemas.ResponseSystemWorkerPluginAllowed.properties} authorName { | ||
"description": "Name of the plugin author.", | ||
"type": "string" | ||
} | ||
*/ | ||
/** Name of the plugin author. */ | ||
authorName?: string; | ||
/** | ||
* @swagger {components.schemas.ResponseSystemWorkerPluginAllowed.properties} description { | ||
"description": "General description of the Grasshopper plugin.", | ||
"type": "string" | ||
} | ||
*/ | ||
/** General description of the Grasshopper plugin. */ | ||
description?: string; | ||
/** | ||
* @swagger {components.schemas.ResponseSystemWorkerPluginAllowed.properties} description { | ||
"description": "Link to a website related to the plugin.", | ||
"type": "string" | ||
} | ||
*/ | ||
/** Link to a website related to the plugin. */ | ||
href?: string; | ||
/** | ||
* @swagger {components.schemas.ResponseSystemWorkerPluginAllowed.properties} allowFallbackToAssemblyVersion { | ||
"description": "When <code>true</code> then <code>GH_AssemblyInfo.AssemblyVersion</code> may be used instead of <code>GH_AssemblyInfo.Version</code> for version checking.<br/>Defaults to <code>false</code>.", | ||
"type": "boolean" | ||
} | ||
* @swagger {components.schemas.ResponseSystemWorkerPluginAllowed} required [ "allowFallbackToAssemblyVersion" ] | ||
*/ | ||
/** | ||
* When `true` then `GH_AssemblyInfo.AssemblyVersion` may be used instead of `GH_AssemblyInfo.Version` for version checking. | ||
* Defaults to `false`. | ||
*/ | ||
allowFallbackToAssemblyVersion: boolean; | ||
/** | ||
* @swagger {components.schemas.ResponseSystemWorkerPluginAllowed.properties} checkMajorMinorVersionOnly { | ||
"description": "When <code>true</code> then only the major and minor version numbers recorded in Grasshopper models will be checked.<br/>Defaults to <code>false</code>.", | ||
"type": "boolean" | ||
} | ||
* @swagger {components.schemas.ResponseSystemWorkerPluginAllowed} required [ "checkMajorMinorVersionOnly" ] | ||
*/ | ||
/** | ||
* When `true` then only the major and minor version numbers recorded in Grasshopper models will be checked. | ||
* Defaults to `false`. | ||
*/ | ||
checkMajorMinorVersionOnly: boolean; | ||
/** | ||
* @swagger {components.schemas.ResponseSystemWorkerPluginAllowed.properties} checkIfInstalled { | ||
"description": "When <code>false</code> then the installation check of the plugin will be skipped.<br/>Defaults to <code>true</code>.", | ||
"type": "boolean" | ||
} | ||
* @swagger {components.schemas.ResponseSystemWorkerPluginAllowed} required [ "checkIfInstalled" ] | ||
*/ | ||
/** | ||
* When `false` then the installation check of the plugin will be skipped. | ||
* Defaults to `true`. | ||
*/ | ||
checkIfInstalled: boolean; | ||
/** | ||
* @swagger {components.schemas.ResponseSystemWorkerPluginAllowed.properties} previousIds { | ||
"description": "List of previous plugin IDs supported by this plugin version. This is used for the obscure case of the plugin developer changing the plugin ID.", | ||
"type": "string" | ||
} | ||
* @swagger {components.schemas.ResponseSystemWorkerPluginAllowed} required [ "previousIds" ] | ||
*/ | ||
/** | ||
* List of previous plugin IDs supported by this plugin version. | ||
* This is used for the obscure case of the plugin developer changing the plugin ID. | ||
*/ | ||
previousIds: string[]; | ||
/** | ||
* @swagger {components.schemas.ResponseSystemWorkerPluginAllowed.properties} disallowedComponents { | ||
@@ -383,0 +506,0 @@ "description": "List of plugin components which may not be used.", |
{ | ||
"name": "@shapediver/api.geometry-api-dto-v2", | ||
"version": "1.6.0", | ||
"version": "1.7.0", | ||
"description": "Data Transfer Object Definitions of the Geometry API v2", | ||
@@ -5,0 +5,0 @@ "keywords": [], |
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
315885
5787