You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@platformatic/foundation

Package Overview
Dependencies
Maintainers
9
Versions
75
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@platformatic/foundation - npm Package Compare versions

Comparing version
3.9.0
to
3.10.0
+31
-30
lib/schema.js

@@ -64,3 +64,4 @@ export function overridableValue (spec, defaultValue) {

cooldownSec: { type: 'number', minimum: 0 },
scaleIntervalSec: { type: 'number', minimum: 0 }
scaleIntervalSec: { type: 'number', minimum: 0 },
gracePeriod: { type: 'number', minimum: 0 }
},

@@ -739,2 +740,26 @@ additionalProperties: false

},
permissions: {
type: 'object',
properties: {
fs: {
type: 'object',
properties: {
read: {
type: 'array',
items: {
type: 'string'
}
},
write: {
type: 'array',
items: {
type: 'string'
}
}
},
additionalProperties: false
}
},
additionalProperties: false
},
telemetry: {

@@ -819,31 +844,3 @@ type: 'object',

required: ['id'],
properties: {
id: {
type: 'string'
},
config: {
type: 'string'
},
useHttp: {
type: 'boolean'
},
workers,
health: { ...healthWithoutDefaults },
preload,
dependencies: {
type: 'array',
items: {
type: 'string'
}
},
arguments: {
type: 'array',
items: {
type: 'string'
}
},
nodeOptions: {
type: 'string'
}
}
properties: omitProperties(applications.items.properties, ['path', 'url', 'gitBranch'])
}

@@ -1126,2 +1123,6 @@ }

}
},
timeout: {
anyOf: [{ type: 'integer' }, { type: 'string' }],
default: 10000
}

@@ -1128,0 +1129,0 @@ },

{
"name": "@platformatic/foundation",
"version": "3.9.0",
"version": "3.10.0",
"description": "Platformatic Foundation",

@@ -5,0 +5,0 @@ "main": "index.js",