Skip to content
Snippets Groups Projects

Resolve "Add UI for parameter translation layer"

Merged Daniel Göbel requested to merge feature/105-add-ui-for-parameter-translation-layer into main
16 files
+ 58
131
Compare changes
  • Side-by-side
  • Inline
Files
16
@@ -2,15 +2,14 @@
@@ -2,15 +2,14 @@
/* istanbul ignore file */
/* istanbul ignore file */
/* tslint:disable */
/* tslint:disable */
/* eslint-disable */
/* eslint-disable */
import type { ResourcePath_Input } from './ResourcePath_Input';
export type ParameterExtension = {
export type ParameterExtension_Input = {
/**
/**
* The inner dictionary contains the display name as key and the parameter value as value. The outer dictionary has the parameter name as key.
* The inner dictionary contains the display name as key and the parameter value as value. The outer dictionary has the parameter name as key.
*/
*/
mapping?: Record<string, Record<string, (ResourcePath_Input | string | number)>>;
mapping?: Record<string, Record<string, (string | number)>>;
/**
/**
* Dictionary with parameter name as key and default value as value
* Dictionary with parameter name as key and default value as value
*/
*/
defaults?: Record<string, (ResourcePath_Input | string | number | boolean)>;
defaults?: Record<string, (string | number | boolean)>;
};
};
Loading