Skip to content

Commit

Permalink
refactor: fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikbossart committed Nov 30, 2023
1 parent f9f8a06 commit e832f8e
Show file tree
Hide file tree
Showing 458 changed files with 28,393 additions and 27,822 deletions.
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"packages/dm-core": "1.19.0",
"packages/dm-core-plugins": "1.23.0"
"packages/dm-core": "1.19.0",
"packages/dm-core-plugins": "1.23.0"
}
122 changes: 61 additions & 61 deletions _schema/blueprint.schema.json
Original file line number Diff line number Diff line change
@@ -1,63 +1,63 @@
{
"type": "object",
"description": "Schema for writing correct blueprints",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Blueprint schema",
"additionalItems": false,
"$defs": {
"type": {
"type": "string",
"enum": ["CORE:Blueprint", "dmss://system/SIMOS/Blueprint"]
},
"attributeTypes": {
"type": "string",
"enum": [
"CORE:BlueprintAttribute",
"dmss://system/SIMOS/BlueprintAttribute"
]
}
},
"properties": {
"name": {
"type": "string"
},
"type": {
"$ref": "#/$defs/type"
},
"description": {
"type": "string"
},
"attributes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"$ref": "#/$defs/attributeTypes"
},
"description": {
"type": "string"
},
"attributeType": {
"type": "string"
},
"optional": {
"type": "boolean"
},
"label": {
"type": "string"
},
"dimensions": {
"type": "string"
},
"default": true
},
"required": ["type", "attributeType"]
}
}
},
"required": ["name", "type"]
"type": "object",
"description": "Schema for writing correct blueprints",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Blueprint schema",
"additionalItems": false,
"$defs": {
"type": {
"type": "string",
"enum": ["CORE:Blueprint", "dmss://system/SIMOS/Blueprint"]
},
"attributeTypes": {
"type": "string",
"enum": [
"CORE:BlueprintAttribute",
"dmss://system/SIMOS/BlueprintAttribute"
]
}
},
"properties": {
"name": {
"type": "string"
},
"type": {
"$ref": "#/$defs/type"
},
"description": {
"type": "string"
},
"attributes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"$ref": "#/$defs/attributeTypes"
},
"description": {
"type": "string"
},
"attributeType": {
"type": "string"
},
"optional": {
"type": "boolean"
},
"label": {
"type": "string"
},
"dimensions": {
"type": "string"
},
"default": true
},
"required": ["type", "attributeType"]
}
}
},
"required": ["name", "type"]
}
126 changes: 63 additions & 63 deletions _schema/recipe.schema.json
Original file line number Diff line number Diff line change
@@ -1,65 +1,65 @@
{
"type": "object",
"description": "Schema for writing correct blueprints",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Blueprint schema",
"additionalItems": false,
"$defs": {
"type": {
"type": "string",
"enum": ["CORE:RecipeLink", "dmss://system/SIMOS/RecipeLink"]
},
"uiRecipes": {
"type": "string",
"enum": ["CORE:UiRecipe", "dmss://system/SIMOS/UiRecipe"]
}
},
"properties": {
"type": {
"$ref": "#/$defs/type"
},
"_blueprintPath_": {
"type": "string"
},
"initialUiRecipe": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"$ref": "#/$defs/uiRecipes"
},
"plugin": {
"type": "string"
},
"config": {
"$ref": "recipeConfig.schema.json"
}
},
"required": ["type", "plugin", "config"]
},
"uiRecipes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"description": {
"type": "string"
},
"plugin": {
"type": "string"
}
},
"required": ["type", "plugin"]
}
}
},
"required": ["type", "_blueprintPath_"]
"type": "object",
"description": "Schema for writing correct blueprints",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Blueprint schema",
"additionalItems": false,
"$defs": {
"type": {
"type": "string",
"enum": ["CORE:RecipeLink", "dmss://system/SIMOS/RecipeLink"]
},
"uiRecipes": {
"type": "string",
"enum": ["CORE:UiRecipe", "dmss://system/SIMOS/UiRecipe"]
}
},
"properties": {
"type": {
"$ref": "#/$defs/type"
},
"_blueprintPath_": {
"type": "string"
},
"initialUiRecipe": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"$ref": "#/$defs/uiRecipes"
},
"plugin": {
"type": "string"
},
"config": {
"$ref": "recipeConfig.schema.json"
}
},
"required": ["type", "plugin", "config"]
},
"uiRecipes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"description": {
"type": "string"
},
"plugin": {
"type": "string"
}
},
"required": ["type", "plugin"]
}
}
},
"required": ["type", "_blueprintPath_"]
}
Loading

0 comments on commit e832f8e

Please sign in to comment.