@devopness/sdk-js 2.57.0 → 2.58.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/index.d.ts +1 -0
- package/dist/api/generated/models/index.js +1 -0
- package/dist/api/generated/models/pipeline-settings.d.ts +2 -2
- package/dist/api/generated/models/resource-operation.d.ts +37 -0
- package/dist/api/generated/models/resource-operation.js +14 -0
- package/dist/api/generated/models/resource-type-relation.d.ts +4 -3
- package/package.json +1 -1
|
@@ -131,6 +131,7 @@ export * from './request-relation';
|
|
|
131
131
|
export * from './resource-event';
|
|
132
132
|
export * from './resource-event-relation';
|
|
133
133
|
export * from './resource-link-relation';
|
|
134
|
+
export * from './resource-operation';
|
|
134
135
|
export * from './resource-type';
|
|
135
136
|
export * from './resource-type-relation';
|
|
136
137
|
export * from './role';
|
|
@@ -147,6 +147,7 @@ __exportStar(require("./request-relation"), exports);
|
|
|
147
147
|
__exportStar(require("./resource-event"), exports);
|
|
148
148
|
__exportStar(require("./resource-event-relation"), exports);
|
|
149
149
|
__exportStar(require("./resource-link-relation"), exports);
|
|
150
|
+
__exportStar(require("./resource-operation"), exports);
|
|
150
151
|
__exportStar(require("./resource-type"), exports);
|
|
151
152
|
__exportStar(require("./resource-type-relation"), exports);
|
|
152
153
|
__exportStar(require("./role"), exports);
|
|
@@ -22,11 +22,11 @@ export interface PipelineSettings {
|
|
|
22
22
|
* @type {Array<PipelineSettingsStage>}
|
|
23
23
|
* @memberof PipelineSettings
|
|
24
24
|
*/
|
|
25
|
-
stages?: Array<PipelineSettingsStage
|
|
25
|
+
stages?: Array<PipelineSettingsStage> | null;
|
|
26
26
|
/**
|
|
27
27
|
* The list of pipeline setting variable
|
|
28
28
|
* @type {Array<PipelineSettingsVariable>}
|
|
29
29
|
* @memberof PipelineSettings
|
|
30
30
|
*/
|
|
31
|
-
variables?: Array<PipelineSettingsVariable
|
|
31
|
+
variables?: Array<PipelineSettingsVariable> | null;
|
|
32
32
|
}
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { PipelineSettings } from './pipeline-settings';
|
|
13
|
+
/**
|
|
14
|
+
* An operation supported by this resource type that can have pipelines associated to it.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ResourceOperation
|
|
17
|
+
*/
|
|
18
|
+
export interface ResourceOperation {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof ResourceOperation
|
|
23
|
+
*/
|
|
24
|
+
operation?: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ResourceOperation
|
|
29
|
+
*/
|
|
30
|
+
operation_human_readable?: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {PipelineSettings}
|
|
34
|
+
* @memberof ResourceOperation
|
|
35
|
+
*/
|
|
36
|
+
pipeline_settings?: PipelineSettings;
|
|
37
|
+
}
|
|
@@ -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,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { ResourceOperation } from './resource-operation';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -34,9 +35,9 @@ export interface ResourceTypeRelation {
|
|
|
34
35
|
*/
|
|
35
36
|
resource_type_human_readable_plural: string;
|
|
36
37
|
/**
|
|
37
|
-
*
|
|
38
|
-
* @type {
|
|
38
|
+
* A list of resource operations
|
|
39
|
+
* @type {Array<ResourceOperation>}
|
|
39
40
|
* @memberof ResourceTypeRelation
|
|
40
41
|
*/
|
|
41
|
-
supported_operations:
|
|
42
|
+
supported_operations: Array<ResourceOperation>;
|
|
42
43
|
}
|