add name to all extension manifests

This commit is contained in:
Mads Rasmussen
2022-09-09 15:31:11 +02:00
parent bf42583733
commit 4aacbdcf40
4 changed files with 46 additions and 37 deletions

View File

@@ -409,19 +409,19 @@ components:
- section
meta:
$ref: '#/components/schemas/MetaSection'
name:
type: string
js:
type: string
elementName:
type: string
alias:
type: string
name:
type: string
required:
- type
- meta
- name
- alias
- name
MetaTree:
type: object
properties:
@@ -444,19 +444,19 @@ components:
- tree
meta:
$ref: '#/components/schemas/MetaTree'
name:
type: string
js:
type: string
elementName:
type: string
alias:
type: string
name:
type: string
required:
- type
- meta
- name
- alias
- name
MetaEditor:
type: object
properties:
@@ -473,19 +473,19 @@ components:
- editor
meta:
$ref: '#/components/schemas/MetaEditor'
name:
type: string
js:
type: string
elementName:
type: string
alias:
type: string
name:
type: string
required:
- type
- meta
- name
- alias
- name
MetaTreeItemAction:
type: object
properties:
@@ -514,19 +514,19 @@ components:
- treeItemAction
meta:
$ref: '#/components/schemas/MetaTreeItemAction'
name:
type: string
js:
type: string
elementName:
type: string
alias:
type: string
name:
type: string
required:
- type
- meta
- name
- alias
- name
IPrevalueField:
type: object
properties:
@@ -571,19 +571,19 @@ components:
- propertyEditorUI
meta:
$ref: '#/components/schemas/MetaPropertyEditorUI'
name:
type: string
js:
type: string
elementName:
type: string
alias:
type: string
name:
type: string
required:
- type
- meta
- name
- alias
- name
MetaDashboard:
type: object
properties:
@@ -611,19 +611,19 @@ components:
- dashboard
meta:
$ref: '#/components/schemas/MetaDashboard'
name:
type: string
js:
type: string
elementName:
type: string
alias:
type: string
name:
type: string
required:
- type
- meta
- name
- alias
- name
MetaEditorView:
type: object
properties:
@@ -652,19 +652,19 @@ components:
- editorView
meta:
$ref: '#/components/schemas/MetaEditorView'
name:
type: string
js:
type: string
elementName:
type: string
alias:
type: string
name:
type: string
required:
- type
- meta
- name
- alias
- name
MetaPropertyAction:
type: object
properties:
@@ -683,19 +683,19 @@ components:
- propertyAction
meta:
$ref: '#/components/schemas/MetaPropertyAction'
name:
type: string
js:
type: string
elementName:
type: string
alias:
type: string
name:
type: string
required:
- type
- meta
- name
- alias
- name
MetaPackageView:
type: object
properties:
@@ -712,19 +712,19 @@ components:
- packageView
meta:
$ref: '#/components/schemas/MetaPackageView'
name:
type: string
js:
type: string
elementName:
type: string
alias:
type: string
name:
type: string
required:
- type
- meta
- name
- alias
- name
IManifestEntrypoint:
type: object
properties:
@@ -736,10 +736,13 @@ components:
type: string
alias:
type: string
name:
type: string
required:
- type
- js
- alias
- name
IManifestCustom:
type: object
properties:
@@ -751,9 +754,12 @@ components:
type: object
alias:
type: string
name:
type: string
required:
- type
- alias
- name
Manifest:
oneOf:
- $ref: '#/components/schemas/IManifestSection'