New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@devopness/sdk-js

Package Overview
Dependencies
Maintainers
1
Versions
324
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@devopness/sdk-js - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

6

dist/api/generated/models/application-create.d.ts

@@ -63,2 +63,8 @@ /**

/**
* The applicaton initialization file/module/function from which the application execution starts. It might be a file name, a package manager script or a module/class/function exported by application code and invoked by a run time environment of the technology used by the application.
* @type {string}
* @memberof ApplicationCreate
*/
entrypoint: string;
/**
* The list of deployment settings for each application environment

@@ -65,0 +71,0 @@ * @type {Array<ApplicationDeploymentSettings>}

8

dist/api/generated/models/application-deployment-settings.d.ts

@@ -91,13 +91,13 @@ /**

/**
* The entrypoint tells devopness how an application should be started and has basically two forms: 1) `File`: if it\'s a simple file name/path an web app will be served using the entrypoint value as its index file. Example: `index.html` 2) `Command`: if a command line instruction is provided as the entrypoint value, it will be handled as the start up command that initalizes the application. It will be assumed that the user is an advanced user that knows what she/he is doing, therefore the command specified here will be run - as is - everytime the application needs to be started.
* The command that should be executed once to build the application source code. If set, `devopness` will not execute it\'s own build process to resolve package dependencies and get the application in a ready state. It will be assumed that the user is an advanced user that knows what she/he is doing, therefore the command specified here will be run as is everytime the application needs to be started.
* @type {string}
* @memberof ApplicationDeploymentSettings
*/
entrypoint: string;
build_command?: string;
/**
* The optional command that should be executed once during deployment to build the source code and get the application in a ready state.
* The start up command that should be executed every time the application needs to be started. If set, `devopness` will not generate it\'s own start up script. It will be assumed that the user is an advanced user that knows what she/he is doing, therefore the command specified here will be run as is everytime the application needs to be built.
* @type {string}
* @memberof ApplicationDeploymentSettings
*/
build_command?: string;
init_command?: string;
/**

@@ -104,0 +104,0 @@ * Useful, for instance, when deploying `docker` containerized applications. If the application is not initialized by `devopness` itself, the user should inform the address at which the application listens to external calls. The address can be an IP, IP:PORT, HOSTNAME, HOSTNAME:PORT or unix:PATH

@@ -76,2 +76,8 @@ /**

/**
* The applicaton initialization file/module/function from which the application execution starts. It might be a file name, a package manager script or a module/class/function exported by application code and invoked by a run time environment of the technology used by the application.
* @type {string}
* @memberof Application
*/
entrypoint: string;
/**
* The relative directory where package manager\'s manifest files (`package.json`, `composer.json`, `yarn.lock`, etc) are located. It needs to be set for applications where the actual source code is not located in the top level directory of the repository.

@@ -78,0 +84,0 @@ * @type {string}

{
"name": "@devopness/sdk-js",
"version": "2.0.0",
"version": "2.0.1",
"publishConfig": {

@@ -5,0 +5,0 @@ "access": "public"

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc