production_syncAssemblyStepMaterialsFromMappings
WRITESync assembly step materials from mappings.
Parameters
assemblyInstructionIdstringrequired/** Limit to these steps (default: every step of the instruction) */
stepIdsstring[]optional/** Limit to these mappings (e.g. one just created) */
geometryHashesstring[]optional/** Limit to component groups containing one of these instances */
onlyComponentNodeIdsstring[]optionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "production_syncAssemblyStepMaterialsFromMappings",
"arguments": {
"assemblyInstructionId": "string"
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"assemblyInstructionId": {
"type": "string"
},
"/** Limit to these steps (default: every step of the instruction) */\n stepIds": {
"type": "array",
"items": {
"type": "string"
}
},
"/** Limit to these mappings (e.g. one just created) */\n geometryHashes": {
"type": "array",
"items": {
"type": "string"
}
},
"/** Limit to component groups containing one of these instances */\n onlyComponentNodeIds": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"assemblyInstructionId"
]
}