Updated to a presentation

Signed-off-by: Bogdan Nechyporenko <bnechyporenko@bol.com>
This commit is contained in:
Bogdan Nechyporenko
2023-10-23 11:05:30 +02:00
parent c35bb33065
commit 5cdcf77a45
6 changed files with 24 additions and 15 deletions
@@ -47,9 +47,9 @@ export interface TemplateEntityV1beta3 extends Entity {
type: string;
/**
* Template specific configurations.
* Template specific configuration of the presentation layer.
*/
configurations?: TemplateConfigurationsV1beta3;
presentation?: TemplatePresentationV1beta3;
/**
* This is a JSONSchema or an array of JSONSchema's which is used to render a form in the frontend
@@ -74,11 +74,11 @@ export interface TemplateEntityV1beta3 extends Entity {
}
/**
* The configuration of the template.
* The presentation of the template.
*
* @public
*/
export interface TemplateConfigurationsV1beta3 extends JsonObject {
export interface TemplatePresentationV1beta3 extends JsonObject {
/**
* Overrides default buttons' text
*/
+1 -1
View File
@@ -27,7 +27,7 @@ export {
isTemplateEntityV1beta3,
} from './TemplateEntityV1beta3';
export type {
TemplateConfigurationsV1beta3,
TemplatePresentationV1beta3,
TemplateEntityV1beta3,
TemplateEntityStepV1beta3,
TemplateParametersV1beta3,