@devopness/sdk-js 2.118.0 → 2.120.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.
- package/dist/api/generated/models/{application-types-public.d.ts → application-types-private-application.d.ts} +4 -4
- package/dist/api/generated/models/application-types-public-application.d.ts +25 -0
- package/dist/api/generated/models/application-types-public-application.js +14 -0
- package/dist/api/generated/models/application-types.d.ts +6 -5
- package/dist/api/generated/models/hook-update.d.ts +0 -13
- package/dist/api/generated/models/index.d.ts +2 -1
- package/dist/api/generated/models/index.js +2 -1
- package/package.json +1 -1
- /package/dist/api/generated/models/{application-types-public.js → application-types-private-application.js} +0 -0
|
@@ -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
|
|
16
|
+
* @interface ApplicationTypesPrivateApplication
|
|
17
17
|
*/
|
|
18
|
-
export interface
|
|
18
|
+
export interface ApplicationTypesPrivateApplication {
|
|
19
19
|
/**
|
|
20
20
|
* The list of VariableTarget
|
|
21
21
|
* @type {Array<VariableTargets>}
|
|
22
|
-
* @memberof
|
|
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 {
|
|
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 {
|
|
22
|
+
* @type {ApplicationTypesPublicApplication}
|
|
22
23
|
* @memberof ApplicationTypes
|
|
23
24
|
*/
|
|
24
|
-
|
|
25
|
+
public_application: ApplicationTypesPublicApplication;
|
|
25
26
|
/**
|
|
26
27
|
*
|
|
27
|
-
* @type {
|
|
28
|
+
* @type {ApplicationTypesPrivateApplication}
|
|
28
29
|
* @memberof ApplicationTypes
|
|
29
30
|
*/
|
|
30
|
-
|
|
31
|
+
private_application: ApplicationTypesPrivateApplication;
|
|
31
32
|
}
|
|
@@ -13,7 +13,6 @@ import { ActionType } from './action-type';
|
|
|
13
13
|
import { HookIncomingSettings } from './hook-incoming-settings';
|
|
14
14
|
import { HookOutgoingSettings } from './hook-outgoing-settings';
|
|
15
15
|
import { HookTriggerWhen } from './hook-trigger-when';
|
|
16
|
-
import { ResourceType } from './resource-type';
|
|
17
16
|
/**
|
|
18
17
|
*
|
|
19
18
|
* @export
|
|
@@ -26,18 +25,6 @@ export interface HookUpdate {
|
|
|
26
25
|
* @memberof HookUpdate
|
|
27
26
|
*/
|
|
28
27
|
name: string;
|
|
29
|
-
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {ResourceType}
|
|
32
|
-
* @memberof HookUpdate
|
|
33
|
-
*/
|
|
34
|
-
resource_type?: ResourceType;
|
|
35
|
-
/**
|
|
36
|
-
* The hooks\' resource ID.
|
|
37
|
-
* @type {number}
|
|
38
|
-
* @memberof HookUpdate
|
|
39
|
-
*/
|
|
40
|
-
resource_id?: number;
|
|
41
28
|
/**
|
|
42
29
|
*
|
|
43
30
|
* @type {ActionType}
|
|
@@ -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-
|
|
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-
|
|
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
|
File without changes
|