mark elementName as optional

This commit is contained in:
Jacob Overgaard
2022-08-25 09:41:26 +02:00
parent 3311af3d7f
commit a808bf8cab
3 changed files with 6 additions and 11 deletions

View File

@@ -389,7 +389,6 @@ components:
- type
- meta
- name
- elementName
- alias
MetaPropertyEditorUI:
type: object
@@ -422,7 +421,6 @@ components:
- type
- meta
- name
- elementName
- alias
MetaDashboard:
type: object
@@ -463,7 +461,6 @@ components:
- type
- meta
- name
- elementName
- alias
MetaEditorView:
type: object
@@ -505,7 +502,6 @@ components:
- type
- meta
- name
- elementName
- alias
MetaPropertyAction:
type: object
@@ -537,7 +533,6 @@ components:
- type
- meta
- name
- elementName
- alias
IManifestEntrypoint:
type: object

View File

@@ -116,7 +116,7 @@ export interface components {
meta: components["schemas"]["MetaSection"];
name: string;
js?: string;
elementName: string;
elementName?: string;
alias: string;
};
MetaPropertyEditorUI: {
@@ -129,7 +129,7 @@ export interface components {
meta: components["schemas"]["MetaPropertyEditorUI"];
name: string;
js?: string;
elementName: string;
elementName?: string;
alias: string;
};
MetaDashboard: {
@@ -145,7 +145,7 @@ export interface components {
meta: components["schemas"]["MetaDashboard"];
name: string;
js?: string;
elementName: string;
elementName?: string;
alias: string;
};
MetaEditorView: {
@@ -161,7 +161,7 @@ export interface components {
meta: components["schemas"]["MetaEditorView"];
name: string;
js?: string;
elementName: string;
elementName?: string;
alias: string;
};
MetaPropertyAction: {
@@ -173,7 +173,7 @@ export interface components {
meta: components["schemas"]["MetaPropertyAction"];
name: string;
js?: string;
elementName: string;
elementName?: string;
alias: string;
};
IManifestEntrypoint: {

View File

@@ -66,7 +66,7 @@ export interface MetaPropertyAction {
export interface IManifestElement extends IManifest {
name: string;
js?: string;
elementName: string;
elementName?: string;
}
export interface IManifestSection extends IManifestElement {