@devopness/sdk-js 2.106.0 → 2.108.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.
@@ -53,7 +53,7 @@ export interface ApplicationEnvironmentCreate {
53
53
  */
54
54
  framework: string;
55
55
  /**
56
- * The programming language runtime environment to be used to serve the application. E.g.: if a front-end web app is developed using Node.js, but should be served statically (a SPA application, for instance) then this field value should be `html`. Must be one of <code>docker</code>, <code>dotnetcore</code>, <code>html</code>, <code>nodejs</code>, <code>php</code>, or <code>python</code> Must not be greater than 30 characters.
56
+ * The programming language runtime environment to be used to serve the application. E.g.: if a front-end web app is developed using Node.js, but should be served statically (a SPA application, for instance) then this field value should be `html`. Must be one of <code>docker</code>, <code>dotnetcore</code>, <code>html</code>, <code>java</code>, <code>nodejs</code>, <code>php</code>, or <code>python</code> Must not be greater than 30 characters.
57
57
  * @type {string}
58
58
  * @memberof ApplicationEnvironmentCreate
59
59
  */
@@ -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 60 characters.
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
  */
@@ -59,7 +59,7 @@ export interface ApplicationUpdate {
59
59
  */
60
60
  framework: string;
61
61
  /**
62
- * The programming language runtime environment to be used to serve the application. E.g.: if a front-end web app is developed using Node.js, but should be served statically (a SPA application, for instance) then this field value should be `html`. Must be one of <code>docker</code>, <code>dotnetcore</code>, <code>html</code>, <code>nodejs</code>, <code>php</code>, or <code>python</code> Must not be greater than 30 characters.
62
+ * The programming language runtime environment to be used to serve the application. E.g.: if a front-end web app is developed using Node.js, but should be served statically (a SPA application, for instance) then this field value should be `html`. Must be one of <code>docker</code>, <code>dotnetcore</code>, <code>html</code>, <code>java</code>, <code>nodejs</code>, <code>php</code>, or <code>python</code> Must not be greater than 30 characters.
63
63
  * @type {string}
64
64
  * @memberof ApplicationUpdate
65
65
  */
@@ -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 60 characters.
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
- can_keep_disk_after_server_delete?: boolean;
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.106.0",
3
+ "version": "2.108.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },