@devopness/sdk-js 2.133.0 → 2.134.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.
@@ -75,28 +75,10 @@ export interface ApplicationEnvironmentCreate {
75
75
  * @memberof ApplicationEnvironmentCreate
76
76
  */
77
77
  deployments_keep?: number;
78
- /**
79
- * 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 a 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 initializes 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 - every time the application needs to be started. Must not be greater than 120 characters.
80
- * @type {string}
81
- * @memberof ApplicationEnvironmentCreate
82
- */
83
- entrypoint: string;
84
78
  /**
85
79
  * Indicates command that Devopness must execute to install application dependencies.
86
80
  * @type {string}
87
81
  * @memberof ApplicationEnvironmentCreate
88
82
  */
89
83
  install_dependencies_command?: string;
90
- /**
91
- * Indicates if push to deploy webhooks are enabled for this application. If enabled an app deployment will be automatically triggered when new changes are committed to the `default_branch`.
92
- * @type {boolean}
93
- * @memberof ApplicationEnvironmentCreate
94
- */
95
- push_to_deploy?: boolean;
96
- /**
97
- * Indicates if the application requires a daemon to keep it alive.
98
- * @type {boolean}
99
- * @memberof ApplicationEnvironmentCreate
100
- */
101
- requires_daemon: boolean;
102
84
  }
@@ -71,12 +71,6 @@ export interface ApplicationRelation {
71
71
  * @memberof ApplicationRelation
72
72
  */
73
73
  default_branch: string;
74
- /**
75
- * Indicates if push to deploy webhooks are enabled for this application. If enabled an app deployment will be automatically triggered when new changes are committed to the `default_branch`
76
- * @type {boolean}
77
- * @memberof ApplicationRelation
78
- */
79
- push_to_deploy: boolean;
80
74
  /**
81
75
  * The programming language runtime environment to be used to serve the application. E.g.: if a front-end web app is developed using Node.js, but should be served statically (a SPA application, for instance) then this field value should be `html`.
82
76
  * @type {string}
@@ -101,12 +95,6 @@ export interface ApplicationRelation {
101
95
  * @memberof ApplicationRelation
102
96
  */
103
97
  root_directory: string;
104
- /**
105
- * The application\'s entrypoint
106
- * @type {string}
107
- * @memberof ApplicationRelation
108
- */
109
- entrypoint: string;
110
98
  /**
111
99
  * The number of deployment history, logs and artifacts to keep stored in both devopness servers and user\'s servers. OR The number of deployment artifacts to be retained in the user\'s servers, making it easier and faster to rollback to previous versions
112
100
  * @type {number}
@@ -125,12 +113,6 @@ export interface ApplicationRelation {
125
113
  * @memberof ApplicationRelation
126
114
  */
127
115
  build_command: string | null;
128
- /**
129
- * Indicates if the application requires a daemon to keep it alive
130
- * @type {boolean}
131
- * @memberof ApplicationRelation
132
- */
133
- requires_daemon: boolean;
134
116
  /**
135
117
  *
136
118
  * @type {ApplicationLastDeployments}
@@ -81,28 +81,10 @@ export interface ApplicationUpdate {
81
81
  * @memberof ApplicationUpdate
82
82
  */
83
83
  deployments_keep?: number;
84
- /**
85
- * 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 a 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 initializes 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 - every time the application needs to be started. Must not be greater than 120 characters.
86
- * @type {string}
87
- * @memberof ApplicationUpdate
88
- */
89
- entrypoint: string;
90
84
  /**
91
85
  * Indicates command that Devopness must execute to install application dependencies.
92
86
  * @type {string}
93
87
  * @memberof ApplicationUpdate
94
88
  */
95
89
  install_dependencies_command?: string;
96
- /**
97
- * Indicates if push to deploy webhooks are enabled for this application. If enabled an app deployment will be automatically triggered when new changes are committed to the `default_branch`.
98
- * @type {boolean}
99
- * @memberof ApplicationUpdate
100
- */
101
- push_to_deploy?: boolean;
102
- /**
103
- * Indicates if the application requires a daemon to keep it alive.
104
- * @type {boolean}
105
- * @memberof ApplicationUpdate
106
- */
107
- requires_daemon: boolean;
108
90
  }
@@ -75,12 +75,6 @@ export interface Application {
75
75
  * @memberof Application
76
76
  */
77
77
  default_branch: string;
78
- /**
79
- * Indicates if push to deploy webhooks are enabled for this application. If enabled an app deployment will be automatically triggered when new changes are committed to the `default_branch`
80
- * @type {boolean}
81
- * @memberof Application
82
- */
83
- push_to_deploy: boolean;
84
78
  /**
85
79
  * The programming language runtime environment to be used to serve the application. E.g.: if a front-end web app is developed using Node.js, but should be served statically (a SPA application, for instance) then this field value should be `html`.
86
80
  * @type {string}
@@ -105,12 +99,6 @@ export interface Application {
105
99
  * @memberof Application
106
100
  */
107
101
  root_directory: string;
108
- /**
109
- * The application\'s entrypoint
110
- * @type {string}
111
- * @memberof Application
112
- */
113
- entrypoint: string;
114
102
  /**
115
103
  * The number of deployment history, logs and artifacts to keep stored in both devopness servers and user\'s servers. OR The number of deployment artifacts to be retained in the user\'s servers, making it easier and faster to rollback to previous versions
116
104
  * @type {number}
@@ -129,12 +117,6 @@ export interface Application {
129
117
  * @memberof Application
130
118
  */
131
119
  build_command: string | null;
132
- /**
133
- * Indicates if the application requires a daemon to keep it alive
134
- * @type {boolean}
135
- * @memberof Application
136
- */
137
- requires_daemon: boolean;
138
120
  /**
139
121
  *
140
122
  * @type {UserRelation}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.133.0",
3
+ "version": "2.134.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },