@devopness/sdk-js 2.123.0 → 2.125.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.
@@ -35,7 +35,7 @@ export interface ApplicationEnvironmentCreate {
35
35
  */
36
36
  domain_name?: string;
37
37
  /**
38
- * The optional command that should be executed once during deployment to build the source code and get the application in a ready state. Must be at least 10 characters. Must not be greater than 300 characters.
38
+ * The optional command that should be executed once during deployment to build the source code and get the application in a ready state.
39
39
  * @type {string}
40
40
  * @memberof ApplicationEnvironmentCreate
41
41
  */
@@ -143,7 +143,13 @@ export interface ApplicationRelation {
143
143
  * @type {string}
144
144
  * @memberof ApplicationRelation
145
145
  */
146
- install_dependencies_command?: string;
146
+ install_dependencies_command: string | null;
147
+ /**
148
+ * The optional command that should be executed once during deployment to build the source code and get the application in a ready state
149
+ * @type {string}
150
+ * @memberof ApplicationRelation
151
+ */
152
+ build_command: string | null;
147
153
  /**
148
154
  * Indicates if the application requires a daemon to keep it alive
149
155
  * @type {boolean}
@@ -41,7 +41,7 @@ export interface ApplicationUpdate {
41
41
  */
42
42
  domain_name?: string;
43
43
  /**
44
- * The optional command that should be executed once during deployment to build the source code and get the application in a ready state. Must be at least 10 characters. Must not be greater than 300 characters.
44
+ * The optional command that should be executed once during deployment to build the source code and get the application in a ready state.
45
45
  * @type {string}
46
46
  * @memberof ApplicationUpdate
47
47
  */
@@ -147,7 +147,13 @@ export interface Application {
147
147
  * @type {string}
148
148
  * @memberof Application
149
149
  */
150
- install_dependencies_command?: string;
150
+ install_dependencies_command: string | null;
151
+ /**
152
+ * The optional command that should be executed once during deployment to build the source code and get the application in a ready state
153
+ * @type {string}
154
+ * @memberof Application
155
+ */
156
+ build_command: string | null;
151
157
  /**
152
158
  * Indicates if the application requires a daemon to keep it alive
153
159
  * @type {boolean}
@@ -88,4 +88,10 @@ export interface LanguageRuntimeFrameworkDefaults {
88
88
  * @memberof LanguageRuntimeFrameworkDefaults
89
89
  */
90
90
  install_dependencies_command?: string | null;
91
+ /**
92
+ * The optional command that should be executed once during deployment to build the source code and get the application in a ready state
93
+ * @type {string}
94
+ * @memberof LanguageRuntimeFrameworkDefaults
95
+ */
96
+ build_command?: string | null;
91
97
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.123.0",
3
+ "version": "2.125.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },