@devopness/sdk-js 2.91.0 → 2.92.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.
@@ -9,9 +9,9 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { ApplicationTypes } from './application-types';
12
13
  import { LanguageRuntime } from './language-runtime';
13
14
  import { ScriptRunner } from './script-runner';
14
- import { StaticApplicationType } from './static-application-type';
15
15
  /**
16
16
  *
17
17
  * @export
@@ -32,8 +32,8 @@ export interface ApplicationOptions {
32
32
  script_runners: Array<ScriptRunner>;
33
33
  /**
34
34
  *
35
- * @type {StaticApplicationType}
35
+ * @type {ApplicationTypes}
36
36
  * @memberof ApplicationOptions
37
37
  */
38
- application_types: StaticApplicationType;
38
+ application_types: ApplicationTypes;
39
39
  }
@@ -9,16 +9,17 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { VariableTargets } from './variable-targets';
12
13
  /**
13
14
  *
14
15
  * @export
15
- * @interface StaticApplicationTypePublic
16
+ * @interface ApplicationTypesPublic
16
17
  */
17
- export interface StaticApplicationTypePublic {
18
+ export interface ApplicationTypesPublic {
18
19
  /**
19
- * The array of target defining how the variable key/value pair will be deployed
20
- * @type {Array<object>}
21
- * @memberof StaticApplicationTypePublic
20
+ * The list of VariableTarget
21
+ * @type {Array<VariableTargets>}
22
+ * @memberof ApplicationTypesPublic
22
23
  */
23
- variables_targets?: Array<object>;
24
+ variables_targets?: Array<VariableTargets>;
24
25
  }
@@ -0,0 +1,31 @@
1
+ /**
2
+ * devopness API
3
+ * Devopness API - Painless essential DevOps to everyone
4
+ *
5
+ * The version of the OpenAPI document: latest
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { ApplicationTypesPublic } from './application-types-public';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ApplicationTypes
17
+ */
18
+ export interface ApplicationTypes {
19
+ /**
20
+ *
21
+ * @type {ApplicationTypesPublic}
22
+ * @memberof ApplicationTypes
23
+ */
24
+ _public: ApplicationTypesPublic;
25
+ /**
26
+ *
27
+ * @type {ApplicationTypesPublic}
28
+ * @memberof ApplicationTypes
29
+ */
30
+ _private: ApplicationTypesPublic;
31
+ }
@@ -30,6 +30,8 @@ export * from './application-options';
30
30
  export * from './application-pipeline';
31
31
  export * from './application-relation';
32
32
  export * from './application-type';
33
+ export * from './application-types';
34
+ export * from './application-types-public';
33
35
  export * from './application-update';
34
36
  export * from './archived-environment-relation';
35
37
  export * from './blueprint-service';
@@ -202,8 +204,6 @@ export * from './ssl-certificate-issuer';
202
204
  export * from './ssl-certificate-relation';
203
205
  export * from './ssl-certificate-type';
204
206
  export * from './ssl-certificate-validation-level';
205
- export * from './static-application-type';
206
- export * from './static-application-type-public';
207
207
  export * from './static-billing-info';
208
208
  export * from './static-cloud-provider-code';
209
209
  export * from './static-cron-job-frequency';
@@ -263,5 +263,6 @@ export * from './variable-application-create';
263
263
  export * from './variable-relation';
264
264
  export * from './variable-service-create';
265
265
  export * from './variable-target';
266
+ export * from './variable-targets';
266
267
  export * from './variable-type';
267
268
  export * from './variable-update';
@@ -46,6 +46,8 @@ __exportStar(require("./application-options"), exports);
46
46
  __exportStar(require("./application-pipeline"), exports);
47
47
  __exportStar(require("./application-relation"), exports);
48
48
  __exportStar(require("./application-type"), exports);
49
+ __exportStar(require("./application-types"), exports);
50
+ __exportStar(require("./application-types-public"), exports);
49
51
  __exportStar(require("./application-update"), exports);
50
52
  __exportStar(require("./archived-environment-relation"), exports);
51
53
  __exportStar(require("./blueprint-service"), exports);
@@ -218,8 +220,6 @@ __exportStar(require("./ssl-certificate-issuer"), exports);
218
220
  __exportStar(require("./ssl-certificate-relation"), exports);
219
221
  __exportStar(require("./ssl-certificate-type"), exports);
220
222
  __exportStar(require("./ssl-certificate-validation-level"), exports);
221
- __exportStar(require("./static-application-type"), exports);
222
- __exportStar(require("./static-application-type-public"), exports);
223
223
  __exportStar(require("./static-billing-info"), exports);
224
224
  __exportStar(require("./static-cloud-provider-code"), exports);
225
225
  __exportStar(require("./static-cron-job-frequency"), exports);
@@ -279,5 +279,6 @@ __exportStar(require("./variable-application-create"), exports);
279
279
  __exportStar(require("./variable-relation"), exports);
280
280
  __exportStar(require("./variable-service-create"), exports);
281
281
  __exportStar(require("./variable-target"), exports);
282
+ __exportStar(require("./variable-targets"), exports);
282
283
  __exportStar(require("./variable-type"), exports);
283
284
  __exportStar(require("./variable-update"), exports);
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { VariableTargets } from './variable-targets';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -22,9 +23,9 @@ export interface StaticServiceTypeSupportedVersions {
22
23
  */
23
24
  version?: string;
24
25
  /**
25
- * The array of target defining how the variable key/value pair will be deployed
26
- * @type {Array<object>}
26
+ * The list of VariableTarget
27
+ * @type {Array<VariableTargets>}
27
28
  * @memberof StaticServiceTypeSupportedVersions
28
29
  */
29
- variable_targets?: Array<object>;
30
+ variable_targets?: Array<VariableTargets>;
30
31
  }
@@ -0,0 +1,56 @@
1
+ /**
2
+ * devopness API
3
+ * Devopness API - Painless essential DevOps to everyone
4
+ *
5
+ * The version of the OpenAPI document: latest
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * The object of target defining how the variable key/value pair will be deployed
14
+ * @export
15
+ * @interface VariableTargets
16
+ */
17
+ export interface VariableTargets {
18
+ /**
19
+ * The variable target name
20
+ * @type {string}
21
+ * @memberof VariableTargets
22
+ */
23
+ name?: VariableTargetsNameEnum;
24
+ /**
25
+ * Human readable version of the variable target name
26
+ * @type {string}
27
+ * @memberof VariableTargets
28
+ */
29
+ name_human_readable?: string;
30
+ /**
31
+ * Text describing what is the variable target
32
+ * @type {string}
33
+ * @memberof VariableTargets
34
+ */
35
+ hint?: string;
36
+ }
37
+ /**
38
+ * @export
39
+ * @enum {string}
40
+ */
41
+ export declare enum VariableTargetsNameEnum {
42
+ ResourceConfigFile = "resource-config-file",
43
+ NginxHttpServer = "nginx-http-server",
44
+ MyCnf = "my-cnf",
45
+ NewrelicInfraYml = "newrelic-infra-yml",
46
+ NginxConf = "nginx-conf",
47
+ NginxMain = "nginx-main",
48
+ NginxHttp = "nginx-http",
49
+ OsEnvVar = "os-env-var",
50
+ PhpCliPhpIni = "php-cli_php-ini",
51
+ PhpFpmPhpFpmConf = "php-fpm_php-fpm-conf",
52
+ PhpFpmPhpIni = "php-fpm_php-ini",
53
+ PhpFpmPoolDWwwConf = "php-fpm_pool-d-www-conf",
54
+ RedisConf = "redis-conf",
55
+ SupervisordConf = "supervisord-conf"
56
+ }
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ /* eslint-disable */
3
+ /**
4
+ * devopness API
5
+ * Devopness API - Painless essential DevOps to everyone
6
+ *
7
+ * The version of the OpenAPI document: latest
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.VariableTargetsNameEnum = void 0;
16
+ /**
17
+ * @export
18
+ * @enum {string}
19
+ */
20
+ var VariableTargetsNameEnum;
21
+ (function (VariableTargetsNameEnum) {
22
+ VariableTargetsNameEnum["ResourceConfigFile"] = "resource-config-file";
23
+ VariableTargetsNameEnum["NginxHttpServer"] = "nginx-http-server";
24
+ VariableTargetsNameEnum["MyCnf"] = "my-cnf";
25
+ VariableTargetsNameEnum["NewrelicInfraYml"] = "newrelic-infra-yml";
26
+ VariableTargetsNameEnum["NginxConf"] = "nginx-conf";
27
+ VariableTargetsNameEnum["NginxMain"] = "nginx-main";
28
+ VariableTargetsNameEnum["NginxHttp"] = "nginx-http";
29
+ VariableTargetsNameEnum["OsEnvVar"] = "os-env-var";
30
+ VariableTargetsNameEnum["PhpCliPhpIni"] = "php-cli_php-ini";
31
+ VariableTargetsNameEnum["PhpFpmPhpFpmConf"] = "php-fpm_php-fpm-conf";
32
+ VariableTargetsNameEnum["PhpFpmPhpIni"] = "php-fpm_php-ini";
33
+ VariableTargetsNameEnum["PhpFpmPoolDWwwConf"] = "php-fpm_pool-d-www-conf";
34
+ VariableTargetsNameEnum["RedisConf"] = "redis-conf";
35
+ VariableTargetsNameEnum["SupervisordConf"] = "supervisord-conf";
36
+ })(VariableTargetsNameEnum = exports.VariableTargetsNameEnum || (exports.VariableTargetsNameEnum = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.91.0",
3
+ "version": "2.92.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -1,31 +0,0 @@
1
- /**
2
- * devopness API
3
- * Devopness API - Painless essential DevOps to everyone
4
- *
5
- * The version of the OpenAPI document: latest
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { StaticApplicationTypePublic } from './static-application-type-public';
13
- /**
14
- *
15
- * @export
16
- * @interface StaticApplicationType
17
- */
18
- export interface StaticApplicationType {
19
- /**
20
- *
21
- * @type {StaticApplicationTypePublic}
22
- * @memberof StaticApplicationType
23
- */
24
- _public: StaticApplicationTypePublic;
25
- /**
26
- *
27
- * @type {StaticApplicationTypePublic}
28
- * @memberof StaticApplicationType
29
- */
30
- _private: StaticApplicationTypePublic;
31
- }