@devopness/sdk-js 2.124.0 → 2.126.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}
@@ -9,6 +9,8 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { SourceProviderDisplayableName } from './source-provider-displayable-name';
13
+ import { SourceProviderName } from './source-provider-name';
12
14
  /**
13
15
  *
14
16
  * @export
@@ -16,17 +18,17 @@
16
18
  */
17
19
  export interface SourceProviderOptionsRelation {
18
20
  /**
19
- * Name of source provider
20
- * @type {string}
21
+ *
22
+ * @type {SourceProviderName}
21
23
  * @memberof SourceProviderOptionsRelation
22
24
  */
23
- provider_name: string;
25
+ provider_name: SourceProviderName;
24
26
  /**
25
- * Human readable version of the provider name
26
- * @type {string}
27
+ *
28
+ * @type {SourceProviderDisplayableName}
27
29
  * @memberof SourceProviderOptionsRelation
28
30
  */
29
- provider_name_human_readable: string;
31
+ provider_name_human_readable: SourceProviderDisplayableName;
30
32
  /**
31
33
  * URL of the connection
32
34
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.124.0",
3
+ "version": "2.126.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },