(parameters)
| 83 | } |
| 84 | |
| 85 | function generateKeyForParameters (parameters) { |
| 86 | // Generate a key string to identify these parameter values, preserving the order of parameters defined in ParameterSchema |
| 87 | const result = [] |
| 88 | for (const key of Object.keys(ParametersSchema.properties)) { |
| 89 | result.push(parameters[key]) |
| 90 | } |
| 91 | return result.join('_') |
| 92 | } |
| 93 | |
| 94 | // ---- Output Properties ---- |
| 95 |