@platformatic/foundation 3.58.1 → 3.59.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/schema.js +12 -0
- package/package.json +1 -1
package/lib/schema.js
CHANGED
|
@@ -784,6 +784,17 @@ export const application = {
|
|
|
784
784
|
id: {
|
|
785
785
|
type: 'string'
|
|
786
786
|
},
|
|
787
|
+
enabled: {
|
|
788
|
+
anyOf: [
|
|
789
|
+
{ type: 'boolean' },
|
|
790
|
+
{ type: 'string' },
|
|
791
|
+
{
|
|
792
|
+
type: 'object',
|
|
793
|
+
additionalProperties: { type: 'boolean' }
|
|
794
|
+
}
|
|
795
|
+
],
|
|
796
|
+
default: true
|
|
797
|
+
},
|
|
787
798
|
path: {
|
|
788
799
|
type: 'string',
|
|
789
800
|
// This is required for the resolve command to allow empty paths after environment variable replacement
|
|
@@ -1518,6 +1529,7 @@ export const runtimeUnwrappablePropertiesList = [
|
|
|
1518
1529
|
|
|
1519
1530
|
export const applicationsUnwrappablePropertiesList = [
|
|
1520
1531
|
'id',
|
|
1532
|
+
'enabled',
|
|
1521
1533
|
'path',
|
|
1522
1534
|
'config',
|
|
1523
1535
|
'url',
|