@devopness/sdk-js 2.124.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.
@@ -143,13 +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
147
  /**
148
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
149
  * @type {string}
150
150
  * @memberof ApplicationRelation
151
151
  */
152
- build_command?: string;
152
+ build_command: string | null;
153
153
  /**
154
154
  * Indicates if the application requires a daemon to keep it alive
155
155
  * @type {boolean}
@@ -147,13 +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
151
  /**
152
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
153
  * @type {string}
154
154
  * @memberof Application
155
155
  */
156
- build_command?: string;
156
+ build_command: string | null;
157
157
  /**
158
158
  * Indicates if the application requires a daemon to keep it alive
159
159
  * @type {boolean}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.124.0",
3
+ "version": "2.125.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },