@devopness/sdk-js 2.106.0 → 2.107.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-environment-create.d.ts +1 -1
- package/dist/api/generated/models/application-update.d.ts +1 -1
- package/dist/api/generated/models/cloud-provider-service-resource-type.d.ts +1 -1
- package/dist/api/generated/models/index.d.ts +1 -0
- package/dist/api/generated/models/index.js +1 -0
- package/dist/api/generated/models/repository-tag.d.ts +24 -0
- package/dist/api/generated/models/repository-tag.js +14 -0
- package/dist/api/generated/models/repository.d.ts +7 -0
- package/package.json +1 -1
|
@@ -65,7 +65,7 @@ export interface ApplicationEnvironmentCreate {
|
|
|
65
65
|
*/
|
|
66
66
|
listening_address?: string;
|
|
67
67
|
/**
|
|
68
|
-
* The full name of a repository (`repository_owner/repository_name`) containing the application source code. Required when the `source_provider_id` field is informed. Must not be greater than
|
|
68
|
+
* The full name of a repository (`repository_owner/repository_name`) containing the application source code. Required when the `source_provider_id` field is informed. Must not be greater than 100 characters.
|
|
69
69
|
* @type {string}
|
|
70
70
|
* @memberof ApplicationEnvironmentCreate
|
|
71
71
|
*/
|
|
@@ -71,7 +71,7 @@ export interface ApplicationUpdate {
|
|
|
71
71
|
*/
|
|
72
72
|
listening_address?: string;
|
|
73
73
|
/**
|
|
74
|
-
* The full name of a repository (`repository_owner/repository_name`) containing the application source code. Required when the `source_provider_id` field is informed. Must not be greater than
|
|
74
|
+
* The full name of a repository (`repository_owner/repository_name`) containing the application source code. Required when the `source_provider_id` field is informed. Must not be greater than 100 characters.
|
|
75
75
|
* @type {string}
|
|
76
76
|
* @memberof ApplicationUpdate
|
|
77
77
|
*/
|
|
@@ -54,7 +54,7 @@ export interface CloudProviderServiceResourceType {
|
|
|
54
54
|
* @type {boolean}
|
|
55
55
|
* @memberof CloudProviderServiceResourceType
|
|
56
56
|
*/
|
|
57
|
-
|
|
57
|
+
can_keep_disk_after_delete_server?: boolean;
|
|
58
58
|
/**
|
|
59
59
|
*
|
|
60
60
|
* @type {OperationCustomSettings}
|
|
@@ -152,6 +152,7 @@ export * from './related-action';
|
|
|
152
152
|
export * from './repository';
|
|
153
153
|
export * from './repository-branch';
|
|
154
154
|
export * from './repository-relation';
|
|
155
|
+
export * from './repository-tag';
|
|
155
156
|
export * from './request-relation';
|
|
156
157
|
export * from './resource-event';
|
|
157
158
|
export * from './resource-event-relation';
|
|
@@ -168,6 +168,7 @@ __exportStar(require("./related-action"), exports);
|
|
|
168
168
|
__exportStar(require("./repository"), exports);
|
|
169
169
|
__exportStar(require("./repository-branch"), exports);
|
|
170
170
|
__exportStar(require("./repository-relation"), exports);
|
|
171
|
+
__exportStar(require("./repository-tag"), exports);
|
|
171
172
|
__exportStar(require("./request-relation"), exports);
|
|
172
173
|
__exportStar(require("./resource-event"), exports);
|
|
173
174
|
__exportStar(require("./resource-event-relation"), exports);
|
|
@@ -0,0 +1,24 @@
|
|
|
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
|
+
* A repository tag
|
|
14
|
+
* @export
|
|
15
|
+
* @interface RepositoryTag
|
|
16
|
+
*/
|
|
17
|
+
export interface RepositoryTag {
|
|
18
|
+
/**
|
|
19
|
+
* The name of the tag
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof RepositoryTag
|
|
22
|
+
*/
|
|
23
|
+
name: string;
|
|
24
|
+
}
|
|
@@ -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 });
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { RepositoryBranch } from './repository-branch';
|
|
13
|
+
import { RepositoryTag } from './repository-tag';
|
|
13
14
|
/**
|
|
14
15
|
*
|
|
15
16
|
* @export
|
|
@@ -46,4 +47,10 @@ export interface Repository {
|
|
|
46
47
|
* @memberof Repository
|
|
47
48
|
*/
|
|
48
49
|
branches: Array<RepositoryBranch>;
|
|
50
|
+
/**
|
|
51
|
+
* List of repository tags
|
|
52
|
+
* @type {Array<RepositoryTag>}
|
|
53
|
+
* @memberof Repository
|
|
54
|
+
*/
|
|
55
|
+
tags: Array<RepositoryTag>;
|
|
49
56
|
}
|