@devopness/sdk-js 2.118.0 → 2.119.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.
@@ -11,15 +11,15 @@
11
11
  */
12
12
  import { VariableTargets } from './variable-targets';
13
13
  /**
14
- *
14
+ * An application of type `private_application` does not use a web server/reverse proxy to serve public content. All appplications that are intented to be accessible only locally in their own servers, or from servers in the same internal network, should be defined as `private_application`.
15
15
  * @export
16
- * @interface ApplicationTypesPublic
16
+ * @interface ApplicationTypesPrivateApplication
17
17
  */
18
- export interface ApplicationTypesPublic {
18
+ export interface ApplicationTypesPrivateApplication {
19
19
  /**
20
20
  * The list of VariableTarget
21
21
  * @type {Array<VariableTargets>}
22
- * @memberof ApplicationTypesPublic
22
+ * @memberof ApplicationTypesPrivateApplication
23
23
  */
24
24
  variables_targets?: Array<VariableTargets>;
25
25
  }
@@ -0,0 +1,25 @@
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 { VariableTargets } from './variable-targets';
13
+ /**
14
+ * An application of type `public_application` is configured by Devopness to be accessed through a web server/reverse proxy to handle network requests and response, so it can be exposed as an `internet-facing` application. All applications that are intented to be accessible from the internet, exposed via a DNS record pointing to the application\'s server IP address, should be defined as `public_application`.
15
+ * @export
16
+ * @interface ApplicationTypesPublicApplication
17
+ */
18
+ export interface ApplicationTypesPublicApplication {
19
+ /**
20
+ * The list of VariableTarget
21
+ * @type {Array<VariableTargets>}
22
+ * @memberof ApplicationTypesPublicApplication
23
+ */
24
+ variables_targets?: Array<VariableTargets>;
25
+ }
@@ -0,0 +1,14 @@
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 });
@@ -9,7 +9,8 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { ApplicationTypesPublic } from './application-types-public';
12
+ import { ApplicationTypesPrivateApplication } from './application-types-private-application';
13
+ import { ApplicationTypesPublicApplication } from './application-types-public-application';
13
14
  /**
14
15
  *
15
16
  * @export
@@ -18,14 +19,14 @@ import { ApplicationTypesPublic } from './application-types-public';
18
19
  export interface ApplicationTypes {
19
20
  /**
20
21
  *
21
- * @type {ApplicationTypesPublic}
22
+ * @type {ApplicationTypesPublicApplication}
22
23
  * @memberof ApplicationTypes
23
24
  */
24
- _public: ApplicationTypesPublic;
25
+ public_application: ApplicationTypesPublicApplication;
25
26
  /**
26
27
  *
27
- * @type {ApplicationTypesPublic}
28
+ * @type {ApplicationTypesPrivateApplication}
28
29
  * @memberof ApplicationTypes
29
30
  */
30
- _private: ApplicationTypesPublic;
31
+ private_application: ApplicationTypesPrivateApplication;
31
32
  }
@@ -31,7 +31,8 @@ export * from './application-pipeline';
31
31
  export * from './application-relation';
32
32
  export * from './application-type';
33
33
  export * from './application-types';
34
- export * from './application-types-public';
34
+ export * from './application-types-private-application';
35
+ export * from './application-types-public-application';
35
36
  export * from './application-update';
36
37
  export * from './archived-environment-relation';
37
38
  export * from './blueprint-service';
@@ -47,7 +47,8 @@ __exportStar(require("./application-pipeline"), exports);
47
47
  __exportStar(require("./application-relation"), exports);
48
48
  __exportStar(require("./application-type"), exports);
49
49
  __exportStar(require("./application-types"), exports);
50
- __exportStar(require("./application-types-public"), exports);
50
+ __exportStar(require("./application-types-private-application"), exports);
51
+ __exportStar(require("./application-types-public-application"), exports);
51
52
  __exportStar(require("./application-update"), exports);
52
53
  __exportStar(require("./archived-environment-relation"), exports);
53
54
  __exportStar(require("./blueprint-service"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.118.0",
3
+ "version": "2.119.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },