@devopness/sdk-js 2.131.0 → 2.132.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.
Files changed (33) hide show
  1. package/dist/api/generated/apis/{applications-sslcertificates-api.d.ts → environments-sslcertificates-api.d.ts} +10 -10
  2. package/dist/api/generated/apis/{applications-sslcertificates-api.js → environments-sslcertificates-api.js} +21 -21
  3. package/dist/api/generated/apis/virtual-hosts-api.d.ts +1 -1
  4. package/dist/api/generated/apis/virtual-hosts-api.js +1 -1
  5. package/dist/api/generated/models/application-environment-create.d.ts +0 -25
  6. package/dist/api/generated/models/application-options.d.ts +0 -7
  7. package/dist/api/generated/models/application-relation.d.ts +0 -25
  8. package/dist/api/generated/models/application-update.d.ts +0 -25
  9. package/dist/api/generated/models/application.d.ts +0 -32
  10. package/dist/api/generated/models/environment.d.ts +14 -0
  11. package/dist/api/generated/models/index.d.ts +2 -5
  12. package/dist/api/generated/models/index.js +2 -5
  13. package/dist/api/generated/models/{ssl-certificate-application-create.d.ts → ssl-certificate-environment-create.d.ts} +13 -13
  14. package/dist/api/generated/models/ssl-certificate-relation.d.ts +0 -6
  15. package/dist/api/generated/models/ssl-certificate.d.ts +0 -20
  16. package/dist/api/generated/models/virtual-host-environment-create.d.ts +10 -4
  17. package/dist/api/generated/models/virtual-host-relation.d.ts +22 -7
  18. package/dist/api/generated/models/{application-types-public-application.js → virtual-host-type.d.ts} +9 -3
  19. package/dist/api/generated/models/{application-type.js → virtual-host-type.js} +7 -7
  20. package/dist/api/generated/models/virtual-host-update.d.ts +9 -3
  21. package/dist/api/generated/models/virtual-host.d.ts +22 -7
  22. package/dist/services/ApplicationService.d.ts +1 -2
  23. package/dist/services/ApplicationService.js +0 -2
  24. package/dist/services/EnvironmentService.d.ts +2 -0
  25. package/dist/services/EnvironmentService.js +2 -0
  26. package/package.json +1 -1
  27. package/dist/api/generated/models/application-type.d.ts +0 -20
  28. package/dist/api/generated/models/application-types-private-application.d.ts +0 -25
  29. package/dist/api/generated/models/application-types-public-application.d.ts +0 -25
  30. package/dist/api/generated/models/application-types.d.ts +0 -32
  31. package/dist/api/generated/models/application-types.js +0 -14
  32. package/dist/api/generated/models/ssl-certificate-application-create.js +0 -14
  33. /package/dist/api/generated/models/{application-types-private-application.js → ssl-certificate-environment-create.js} +0 -0
@@ -12,25 +12,25 @@
12
12
  import { ApiBaseService } from "../../../services/ApiBaseService";
13
13
  import { ApiResponse } from "../../../common/ApiResponse";
14
14
  import { SslCertificate } from '../../generated/models';
15
- import { SslCertificateApplicationCreate } from '../../generated/models';
15
+ import { SslCertificateEnvironmentCreate } from '../../generated/models';
16
16
  import { SslCertificateRelation } from '../../generated/models';
17
17
  /**
18
- * ApplicationsSSLCertificatesApiService - Auto-generated
18
+ * EnvironmentsSSLCertificatesApiService - Auto-generated
19
19
  */
20
- export declare class ApplicationsSSLCertificatesApiService extends ApiBaseService {
20
+ export declare class EnvironmentsSSLCertificatesApiService extends ApiBaseService {
21
21
  /**
22
22
  *
23
- * @summary Add a new SSL certificate to the current application
24
- * @param {number} applicationId The ID of the application.
25
- * @param {SslCertificateApplicationCreate} sslCertificateApplicationCreate A JSON object containing the resource data
23
+ * @summary Create a new ssl certificate
24
+ * @param {number} environmentId The ID of the environment.
25
+ * @param {SslCertificateEnvironmentCreate} sslCertificateEnvironmentCreate A JSON object containing the resource data
26
26
  */
27
- addApplicationSslCertificate(applicationId: number, sslCertificateApplicationCreate: SslCertificateApplicationCreate): Promise<ApiResponse<SslCertificate>>;
27
+ addEnvironmentSslCertificate(environmentId: number, sslCertificateEnvironmentCreate: SslCertificateEnvironmentCreate): Promise<ApiResponse<SslCertificate>>;
28
28
  /**
29
29
  *
30
- * @summary Return a list of SSL certificates issued to an application
31
- * @param {number} applicationId The ID of the application.
30
+ * @summary Return a list of all SSL Certificates belonging to an environment
31
+ * @param {number} environmentId The ID of the environment.
32
32
  * @param {number} [page] Number of the page to be retrieved
33
33
  * @param {number} [perPage] Number of items returned per page
34
34
  */
35
- listApplicationSslCertificates(applicationId: number, page?: number, perPage?: number): Promise<ApiResponse<Array<SslCertificateRelation>>>;
35
+ listEnvironmentSslCertificates(environmentId: number, page?: number, perPage?: number): Promise<ApiResponse<Array<SslCertificateRelation>>>;
36
36
  }
@@ -21,45 +21,45 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
21
21
  });
22
22
  };
23
23
  Object.defineProperty(exports, "__esModule", { value: true });
24
- exports.ApplicationsSSLCertificatesApiService = void 0;
24
+ exports.EnvironmentsSSLCertificatesApiService = void 0;
25
25
  const ApiBaseService_1 = require("../../../services/ApiBaseService");
26
26
  const ApiResponse_1 = require("../../../common/ApiResponse");
27
27
  const Exceptions_1 = require("../../../common/Exceptions");
28
28
  /**
29
- * ApplicationsSSLCertificatesApiService - Auto-generated
29
+ * EnvironmentsSSLCertificatesApiService - Auto-generated
30
30
  */
31
- class ApplicationsSSLCertificatesApiService extends ApiBaseService_1.ApiBaseService {
31
+ class EnvironmentsSSLCertificatesApiService extends ApiBaseService_1.ApiBaseService {
32
32
  /**
33
33
  *
34
- * @summary Add a new SSL certificate to the current application
35
- * @param {number} applicationId The ID of the application.
36
- * @param {SslCertificateApplicationCreate} sslCertificateApplicationCreate A JSON object containing the resource data
34
+ * @summary Create a new ssl certificate
35
+ * @param {number} environmentId The ID of the environment.
36
+ * @param {SslCertificateEnvironmentCreate} sslCertificateEnvironmentCreate A JSON object containing the resource data
37
37
  */
38
- addApplicationSslCertificate(applicationId, sslCertificateApplicationCreate) {
38
+ addEnvironmentSslCertificate(environmentId, sslCertificateEnvironmentCreate) {
39
39
  return __awaiter(this, void 0, void 0, function* () {
40
- if (applicationId === null || applicationId === undefined) {
41
- throw new Exceptions_1.ArgumentNullException('applicationId', 'addApplicationSslCertificate');
40
+ if (environmentId === null || environmentId === undefined) {
41
+ throw new Exceptions_1.ArgumentNullException('environmentId', 'addEnvironmentSslCertificate');
42
42
  }
43
- if (sslCertificateApplicationCreate === null || sslCertificateApplicationCreate === undefined) {
44
- throw new Exceptions_1.ArgumentNullException('sslCertificateApplicationCreate', 'addApplicationSslCertificate');
43
+ if (sslCertificateEnvironmentCreate === null || sslCertificateEnvironmentCreate === undefined) {
44
+ throw new Exceptions_1.ArgumentNullException('sslCertificateEnvironmentCreate', 'addEnvironmentSslCertificate');
45
45
  }
46
46
  let queryString = '';
47
- const requestUrl = '/applications/{application_id}/ssl-certificates' + (queryString ? `?${queryString}` : '');
48
- const response = yield this.post(requestUrl.replace(`{${"application_id"}}`, encodeURIComponent(String(applicationId))), sslCertificateApplicationCreate);
47
+ const requestUrl = '/environments/{environment_id}/ssl-certificates' + (queryString ? `?${queryString}` : '');
48
+ const response = yield this.post(requestUrl.replace(`{${"environment_id"}}`, encodeURIComponent(String(environmentId))), sslCertificateEnvironmentCreate);
49
49
  return new ApiResponse_1.ApiResponse(response);
50
50
  });
51
51
  }
52
52
  /**
53
53
  *
54
- * @summary Return a list of SSL certificates issued to an application
55
- * @param {number} applicationId The ID of the application.
54
+ * @summary Return a list of all SSL Certificates belonging to an environment
55
+ * @param {number} environmentId The ID of the environment.
56
56
  * @param {number} [page] Number of the page to be retrieved
57
57
  * @param {number} [perPage] Number of items returned per page
58
58
  */
59
- listApplicationSslCertificates(applicationId, page, perPage) {
59
+ listEnvironmentSslCertificates(environmentId, page, perPage) {
60
60
  return __awaiter(this, void 0, void 0, function* () {
61
- if (applicationId === null || applicationId === undefined) {
62
- throw new Exceptions_1.ArgumentNullException('applicationId', 'listApplicationSslCertificates');
61
+ if (environmentId === null || environmentId === undefined) {
62
+ throw new Exceptions_1.ArgumentNullException('environmentId', 'listEnvironmentSslCertificates');
63
63
  }
64
64
  let queryString = '';
65
65
  const queryParams = { page: page, per_page: perPage, };
@@ -69,10 +69,10 @@ class ApplicationsSSLCertificatesApiService extends ApiBaseService_1.ApiBaseServ
69
69
  }
70
70
  queryString += (queryString ? '&' : '') + `${key}=${encodeURI(queryParams[key])}`;
71
71
  }
72
- const requestUrl = '/applications/{application_id}/ssl-certificates' + (queryString ? `?${queryString}` : '');
73
- const response = yield this.get(requestUrl.replace(`{${"application_id"}}`, encodeURIComponent(String(applicationId))));
72
+ const requestUrl = '/environments/{environment_id}/ssl-certificates' + (queryString ? `?${queryString}` : '');
73
+ const response = yield this.get(requestUrl.replace(`{${"environment_id"}}`, encodeURIComponent(String(environmentId))));
74
74
  return new ApiResponse_1.ApiResponse(response);
75
75
  });
76
76
  }
77
77
  }
78
- exports.ApplicationsSSLCertificatesApiService = ApplicationsSSLCertificatesApiService;
78
+ exports.EnvironmentsSSLCertificatesApiService = EnvironmentsSSLCertificatesApiService;
@@ -25,7 +25,7 @@ export declare class VirtualHostsApiService extends ApiBaseService {
25
25
  deleteVirtualHost(virtualHostId: number): Promise<ApiResponse<void>>;
26
26
  /**
27
27
  *
28
- * @summary Get an virtual host by ID
28
+ * @summary Get a virtual host by ID
29
29
  * @param {number} virtualHostId The ID of the virtual host.
30
30
  */
31
31
  getVirtualHost(virtualHostId: number): Promise<ApiResponse<VirtualHost>>;
@@ -47,7 +47,7 @@ class VirtualHostsApiService extends ApiBaseService_1.ApiBaseService {
47
47
  }
48
48
  /**
49
49
  *
50
- * @summary Get an virtual host by ID
50
+ * @summary Get a virtual host by ID
51
51
  * @param {number} virtualHostId The ID of the virtual host.
52
52
  */
53
53
  getVirtualHost(virtualHostId) {
@@ -9,7 +9,6 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { ApplicationType } from './application-type';
13
12
  /**
14
13
  *
15
14
  * @export
@@ -22,18 +21,6 @@ export interface ApplicationEnvironmentCreate {
22
21
  * @memberof ApplicationEnvironmentCreate
23
22
  */
24
23
  name: string;
25
- /**
26
- *
27
- * @type {ApplicationType}
28
- * @memberof ApplicationEnvironmentCreate
29
- */
30
- type: ApplicationType;
31
- /**
32
- * The domain or sub-domain through which the application deployed with these settings will be accessible. It can be a naked domain or any subdomain. If app has domain names `testing.my-app.com`, `staging.my-app.com` and `www.my-app.com` a possible good candidate for the application name would be the \"naked\" domain `my-app.com`. Must not be greater than 60 characters.
33
- * @type {string}
34
- * @memberof ApplicationEnvironmentCreate
35
- */
36
- domain_name?: string;
37
24
  /**
38
25
  * The optional command that should be executed once during deployment to build the source code and get the application in a ready state.
39
26
  * @type {string}
@@ -58,12 +45,6 @@ export interface ApplicationEnvironmentCreate {
58
45
  * @memberof ApplicationEnvironmentCreate
59
46
  */
60
47
  programming_language: string;
61
- /**
62
- * Required for CGI|FastCGI|SCGI|WSGI based applications or `docker` containerized applications. It tells `devopness` the private address at which the application listens to external calls.The address has `http` or `https` protocol, an domain name or IP address, optional port and optional path. Or you can specify a UNIX-socket using `unix:` prefix after protocol.
63
- * @type {string}
64
- * @memberof ApplicationEnvironmentCreate
65
- */
66
- listening_address?: string;
67
48
  /**
68
49
  * 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
50
  * @type {string}
@@ -82,12 +63,6 @@ export interface ApplicationEnvironmentCreate {
82
63
  * @memberof ApplicationEnvironmentCreate
83
64
  */
84
65
  root_directory?: string;
85
- /**
86
- * The relative web directory where publicly accessible assets are located and the web content should be served from. Must start with one of <code>/</code>.
87
- * @type {string}
88
- * @memberof ApplicationEnvironmentCreate
89
- */
90
- public_directory: string;
91
66
  /**
92
67
  * The version control branch that, by default, will be used when a deployment is triggered and no other branch name is informed. Must not be greater than 200 characters.
93
68
  * @type {string}
@@ -9,7 +9,6 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { ApplicationTypes } from './application-types';
13
12
  import { LanguageRuntime } from './language-runtime';
14
13
  import { ScriptRunner } from './script-runner';
15
14
  /**
@@ -30,10 +29,4 @@ export interface ApplicationOptions {
30
29
  * @memberof ApplicationOptions
31
30
  */
32
31
  script_runners: Array<ScriptRunner>;
33
- /**
34
- *
35
- * @type {ApplicationTypes}
36
- * @memberof ApplicationOptions
37
- */
38
- application_types: ApplicationTypes;
39
32
  }
@@ -10,7 +10,6 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import { ApplicationLastDeployments } from './application-last-deployments';
13
- import { ApplicationType } from './application-type';
14
13
  import { SourceProvider } from './source-provider';
15
14
  /**
16
15
  *
@@ -48,18 +47,6 @@ export interface ApplicationRelation {
48
47
  * @memberof ApplicationRelation
49
48
  */
50
49
  name: string;
51
- /**
52
- *
53
- * @type {ApplicationType}
54
- * @memberof ApplicationRelation
55
- */
56
- type: ApplicationType;
57
- /**
58
- * The domain or sub-domain through which the application deployed with these settings will be accessible. It can be a naked domain or any subdomain. If app has domain names `testing.my-app.com`, `staging.my-app.com` and `www.my-app.com` a possible good candidate for the application name would be the \"naked\" domain `my-app.com`
59
- * @type {string}
60
- * @memberof ApplicationRelation
61
- */
62
- domain_name: string;
63
50
  /**
64
51
  * The full name of a repository (`repository_owner/repository_name`) containing the application source code. Required when the `source_provider_id` field is informed.
65
52
  * @type {string}
@@ -114,24 +101,12 @@ export interface ApplicationRelation {
114
101
  * @memberof ApplicationRelation
115
102
  */
116
103
  root_directory: string;
117
- /**
118
- * The relative web directory where publicly accessible assets are located and the web content should be served from
119
- * @type {string}
120
- * @memberof ApplicationRelation
121
- */
122
- public_directory: string;
123
104
  /**
124
105
  * The application\'s entrypoint
125
106
  * @type {string}
126
107
  * @memberof ApplicationRelation
127
108
  */
128
109
  entrypoint: string;
129
- /**
130
- * Application\'s listening address
131
- * @type {string}
132
- * @memberof ApplicationRelation
133
- */
134
- listening_address: string;
135
110
  /**
136
111
  * The number of deployment history, logs and artifacts to keep stored in both devopness servers and user\'s servers. OR The number of deployment artifacts to be retained in the user\'s servers, making it easier and faster to rollback to previous versions
137
112
  * @type {number}
@@ -9,7 +9,6 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { ApplicationType } from './application-type';
13
12
  /**
14
13
  *
15
14
  * @export
@@ -28,18 +27,6 @@ export interface ApplicationUpdate {
28
27
  * @memberof ApplicationUpdate
29
28
  */
30
29
  name: string;
31
- /**
32
- *
33
- * @type {ApplicationType}
34
- * @memberof ApplicationUpdate
35
- */
36
- type: ApplicationType;
37
- /**
38
- * The domain or sub-domain through which the application deployed with these settings will be accessible. It can be a naked domain or any subdomain. If app has domain names `testing.my-app.com`, `staging.my-app.com` and `www.my-app.com` a possible good candidate for the application name would be the \"naked\" domain `my-app.com`. Must not be greater than 60 characters.
39
- * @type {string}
40
- * @memberof ApplicationUpdate
41
- */
42
- domain_name?: string;
43
30
  /**
44
31
  * The optional command that should be executed once during deployment to build the source code and get the application in a ready state.
45
32
  * @type {string}
@@ -64,12 +51,6 @@ export interface ApplicationUpdate {
64
51
  * @memberof ApplicationUpdate
65
52
  */
66
53
  programming_language: string;
67
- /**
68
- * Required for CGI|FastCGI|SCGI|WSGI based applications or `docker` containerized applications. It tells `devopness` the private address at which the application listens to external calls.The address has `http` or `https` protocol, an domain name or IP address, optional port and optional path. Or you can specify a UNIX-socket using `unix:` prefix after protocol.
69
- * @type {string}
70
- * @memberof ApplicationUpdate
71
- */
72
- listening_address?: string;
73
54
  /**
74
55
  * 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
56
  * @type {string}
@@ -88,12 +69,6 @@ export interface ApplicationUpdate {
88
69
  * @memberof ApplicationUpdate
89
70
  */
90
71
  root_directory?: string;
91
- /**
92
- * The relative web directory where publicly accessible assets are located and the web content should be served from. Must start with one of <code>/</code>.
93
- * @type {string}
94
- * @memberof ApplicationUpdate
95
- */
96
- public_directory: string;
97
72
  /**
98
73
  * The version control branch that, by default, will be used when a deployment is triggered and no other branch name is informed. Must not be greater than 200 characters.
99
74
  * @type {string}
@@ -10,11 +10,9 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import { ApplicationLastDeployments } from './application-last-deployments';
13
- import { ApplicationType } from './application-type';
14
13
  import { EnvironmentRelation } from './environment-relation';
15
14
  import { ServerRelation } from './server-relation';
16
15
  import { SourceProvider } from './source-provider';
17
- import { SslCertificateRelation } from './ssl-certificate-relation';
18
16
  import { UserRelation } from './user-relation';
19
17
  /**
20
18
  *
@@ -52,18 +50,6 @@ export interface Application {
52
50
  * @memberof Application
53
51
  */
54
52
  name: string;
55
- /**
56
- *
57
- * @type {ApplicationType}
58
- * @memberof Application
59
- */
60
- type: ApplicationType;
61
- /**
62
- * The domain or sub-domain through which the application deployed with these settings will be accessible. It can be a naked domain or any subdomain. If app has domain names `testing.my-app.com`, `staging.my-app.com` and `www.my-app.com` a possible good candidate for the application name would be the \"naked\" domain `my-app.com`
63
- * @type {string}
64
- * @memberof Application
65
- */
66
- domain_name: string;
67
53
  /**
68
54
  * The full name of a repository (`repository_owner/repository_name`) containing the application source code. Required when the `source_provider_id` field is informed.
69
55
  * @type {string}
@@ -118,24 +104,12 @@ export interface Application {
118
104
  * @memberof Application
119
105
  */
120
106
  root_directory: string;
121
- /**
122
- * The relative web directory where publicly accessible assets are located and the web content should be served from
123
- * @type {string}
124
- * @memberof Application
125
- */
126
- public_directory: string;
127
107
  /**
128
108
  * The application\'s entrypoint
129
109
  * @type {string}
130
110
  * @memberof Application
131
111
  */
132
112
  entrypoint: string;
133
- /**
134
- * Application\'s listening address
135
- * @type {string}
136
- * @memberof Application
137
- */
138
- listening_address: string;
139
113
  /**
140
114
  * The number of deployment history, logs and artifacts to keep stored in both devopness servers and user\'s servers. OR The number of deployment artifacts to be retained in the user\'s servers, making it easier and faster to rollback to previous versions
141
115
  * @type {number}
@@ -190,12 +164,6 @@ export interface Application {
190
164
  * @memberof Application
191
165
  */
192
166
  source_provider: SourceProvider;
193
- /**
194
- *
195
- * @type {Array<SslCertificateRelation>}
196
- * @memberof Application
197
- */
198
- ssl_certificates: Array<SslCertificateRelation>;
199
167
  /**
200
168
  * The date and time when the record was created
201
169
  * @type {string}
@@ -18,8 +18,10 @@ import { NetworkRuleRelation } from './network-rule-relation';
18
18
  import { ServerRelation } from './server-relation';
19
19
  import { ServiceRelation } from './service-relation';
20
20
  import { SshKeyRelation } from './ssh-key-relation';
21
+ import { SslCertificateRelation } from './ssl-certificate-relation';
21
22
  import { TeamRelation } from './team-relation';
22
23
  import { UserRelation } from './user-relation';
24
+ import { VirtualHostRelation } from './virtual-host-relation';
23
25
  /**
24
26
  *
25
27
  * @export
@@ -104,12 +106,24 @@ export interface Environment {
104
106
  * @memberof Environment
105
107
  */
106
108
  ssh_keys: Array<SshKeyRelation>;
109
+ /**
110
+ *
111
+ * @type {Array<SslCertificateRelation>}
112
+ * @memberof Environment
113
+ */
114
+ ssl_certificates: Array<SslCertificateRelation>;
107
115
  /**
108
116
  *
109
117
  * @type {Array<TeamRelation>}
110
118
  * @memberof Environment
111
119
  */
112
120
  teams: Array<TeamRelation>;
121
+ /**
122
+ *
123
+ * @type {Array<VirtualHostRelation>}
124
+ * @memberof Environment
125
+ */
126
+ virtual_hosts: Array<VirtualHostRelation>;
113
127
  /**
114
128
  *
115
129
  * @type {UserRelation}
@@ -29,10 +29,6 @@ export * from './application-last-deployments';
29
29
  export * from './application-options';
30
30
  export * from './application-pipeline';
31
31
  export * from './application-relation';
32
- export * from './application-type';
33
- export * from './application-types';
34
- export * from './application-types-private-application';
35
- export * from './application-types-public-application';
36
32
  export * from './application-update';
37
33
  export * from './archived-environment-relation';
38
34
  export * from './blueprint-service';
@@ -210,7 +206,7 @@ export * from './ssh-key-environment-create';
210
206
  export * from './ssh-key-relation';
211
207
  export * from './ssh-key-update';
212
208
  export * from './ssl-certificate';
213
- export * from './ssl-certificate-application-create';
209
+ export * from './ssl-certificate-environment-create';
214
210
  export * from './ssl-certificate-issuer';
215
211
  export * from './ssl-certificate-relation';
216
212
  export * from './ssl-certificate-type';
@@ -285,4 +281,5 @@ export * from './virtual-host';
285
281
  export * from './virtual-host-environment-create';
286
282
  export * from './virtual-host-options';
287
283
  export * from './virtual-host-relation';
284
+ export * from './virtual-host-type';
288
285
  export * from './virtual-host-update';
@@ -45,10 +45,6 @@ __exportStar(require("./application-last-deployments"), exports);
45
45
  __exportStar(require("./application-options"), exports);
46
46
  __exportStar(require("./application-pipeline"), exports);
47
47
  __exportStar(require("./application-relation"), exports);
48
- __exportStar(require("./application-type"), exports);
49
- __exportStar(require("./application-types"), exports);
50
- __exportStar(require("./application-types-private-application"), exports);
51
- __exportStar(require("./application-types-public-application"), exports);
52
48
  __exportStar(require("./application-update"), exports);
53
49
  __exportStar(require("./archived-environment-relation"), exports);
54
50
  __exportStar(require("./blueprint-service"), exports);
@@ -226,7 +222,7 @@ __exportStar(require("./ssh-key-environment-create"), exports);
226
222
  __exportStar(require("./ssh-key-relation"), exports);
227
223
  __exportStar(require("./ssh-key-update"), exports);
228
224
  __exportStar(require("./ssl-certificate"), exports);
229
- __exportStar(require("./ssl-certificate-application-create"), exports);
225
+ __exportStar(require("./ssl-certificate-environment-create"), exports);
230
226
  __exportStar(require("./ssl-certificate-issuer"), exports);
231
227
  __exportStar(require("./ssl-certificate-relation"), exports);
232
228
  __exportStar(require("./ssl-certificate-type"), exports);
@@ -301,4 +297,5 @@ __exportStar(require("./virtual-host"), exports);
301
297
  __exportStar(require("./virtual-host-environment-create"), exports);
302
298
  __exportStar(require("./virtual-host-options"), exports);
303
299
  __exportStar(require("./virtual-host-relation"), exports);
300
+ __exportStar(require("./virtual-host-type"), exports);
304
301
  __exportStar(require("./virtual-host-update"), exports);
@@ -15,43 +15,43 @@ import { SslCertificateValidationLevel } from './ssl-certificate-validation-leve
15
15
  /**
16
16
  *
17
17
  * @export
18
- * @interface SslCertificateApplicationCreate
18
+ * @interface SslCertificateEnvironmentCreate
19
19
  */
20
- export interface SslCertificateApplicationCreate {
20
+ export interface SslCertificateEnvironmentCreate {
21
+ /**
22
+ * The ID of the virtual host to which this SSL certificate will be issued.
23
+ * @type {number}
24
+ * @memberof SslCertificateEnvironmentCreate
25
+ */
26
+ virtual_host_id: number;
21
27
  /**
22
28
  *
23
29
  * @type {SslCertificateIssuer}
24
- * @memberof SslCertificateApplicationCreate
30
+ * @memberof SslCertificateEnvironmentCreate
25
31
  */
26
32
  issuer: SslCertificateIssuer;
27
- /**
28
- * The list of domain names to which the SSL certificate refers to
29
- * @type {Array<string>}
30
- * @memberof SslCertificateApplicationCreate
31
- */
32
- domains: Array<string>;
33
33
  /**
34
34
  *
35
35
  * @type {SslCertificateType}
36
- * @memberof SslCertificateApplicationCreate
36
+ * @memberof SslCertificateEnvironmentCreate
37
37
  */
38
38
  type?: SslCertificateType;
39
39
  /**
40
40
  *
41
41
  * @type {SslCertificateValidationLevel}
42
- * @memberof SslCertificateApplicationCreate
42
+ * @memberof SslCertificateEnvironmentCreate
43
43
  */
44
44
  validation_level?: SslCertificateValidationLevel;
45
45
  /**
46
46
  * The private key provided by the Certification Authority, when the certificate has not been automatically issued through `devopness`. This field is required when <code>issuer</code> is <code>custom</code>. Must be at least 100 characters. Must not be greater than 4096 characters.
47
47
  * @type {string}
48
- * @memberof SslCertificateApplicationCreate
48
+ * @memberof SslCertificateEnvironmentCreate
49
49
  */
50
50
  custom_private_key?: string;
51
51
  /**
52
52
  * The contents of the certificate provided by the Certification Authority, when the certificate has not been automatically issued through `devopness`. This field is required when <code>issuer</code> is <code>custom</code>. Must be at least 100 characters. Must not be greater than 4096 characters.
53
53
  * @type {string}
54
- * @memberof SslCertificateApplicationCreate
54
+ * @memberof SslCertificateEnvironmentCreate
55
55
  */
56
56
  custom_certificate?: string;
57
57
  }
@@ -55,12 +55,6 @@ export interface SslCertificateRelation {
55
55
  * @memberof SslCertificateRelation
56
56
  */
57
57
  active: boolean;
58
- /**
59
- * The list of domain names to which the SSL certificate refers to
60
- * @type {Array<string>}
61
- * @memberof SslCertificateRelation
62
- */
63
- domains: Array<string>;
64
58
  /**
65
59
  *
66
60
  * @type {ActionRelation}
@@ -10,8 +10,6 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import { ActionRelation } from './action-relation';
13
- import { ApplicationRelation } from './application-relation';
14
- import { ServerRelation } from './server-relation';
15
13
  import { SslCertificateIssuer } from './ssl-certificate-issuer';
16
14
  import { SslCertificateType } from './ssl-certificate-type';
17
15
  import { SslCertificateValidationLevel } from './ssl-certificate-validation-level';
@@ -58,12 +56,6 @@ export interface SslCertificate {
58
56
  * @memberof SslCertificate
59
57
  */
60
58
  active: boolean;
61
- /**
62
- * The list of domain names to which the SSL certificate refers to
63
- * @type {Array<string>}
64
- * @memberof SslCertificate
65
- */
66
- domains: Array<string>;
67
59
  /**
68
60
  *
69
61
  * @type {UserRelation}
@@ -76,18 +68,6 @@ export interface SslCertificate {
76
68
  * @memberof SslCertificate
77
69
  */
78
70
  last_action: ActionRelation | null;
79
- /**
80
- *
81
- * @type {ApplicationRelation}
82
- * @memberof SslCertificate
83
- */
84
- application: ApplicationRelation | null;
85
- /**
86
- *
87
- * @type {Array<ServerRelation>}
88
- * @memberof SslCertificate
89
- */
90
- servers: Array<ServerRelation>;
91
71
  /**
92
72
  * The date and time when this certificate will no longer be valid, down to minute precision
93
73
  * @type {string}
@@ -28,15 +28,21 @@ export interface VirtualHostEnvironmentCreate {
28
28
  */
29
29
  name: string;
30
30
  /**
31
- * The relative path for the virtual host root directory. Must not be greater than 255 characters.
31
+ * The document root location, within the application directory, that contains the public files to be served when a user visits the domain name associated with this virtual host. Must not be greater than 255 characters.
32
32
  * @type {string}
33
33
  * @memberof VirtualHostEnvironmentCreate
34
34
  */
35
- root_directory: string;
35
+ root_directory?: string;
36
36
  /**
37
- * The IP address of the server that will be used for forwarding. Must not be greater than 255 characters.
37
+ * The network name or IP address on which the application linked to this virtual host is configured to listen for incoming requests. A valid address has `http` or `https` protocol, a domain name or IP address, an optional port and optional path. You can also specify a UNIX-socket using `unix:` protocol. Examples: `http://127.0.0.1:8080` (for applications exposing port `8080`, for example running in a Docker container), `http://127.0.0.1:3000` (for applications kept alive by a daemon/background process that listens on port `3000`), `unix:/var/run/example.sock` (for applications listening on a custom socket). Must not be greater than 255 characters.
38
38
  * @type {string}
39
39
  * @memberof VirtualHostEnvironmentCreate
40
40
  */
41
- forward_server_address?: string;
41
+ application_listen_address?: string | null;
42
+ /**
43
+ * The ID of the application to be associated with the virtual host. The value of `root_directory` will be relative to this application directory.
44
+ * @type {number}
45
+ * @memberof VirtualHostEnvironmentCreate
46
+ */
47
+ application_id?: number | null;
42
48
  }
@@ -9,7 +9,10 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { ActionRelation } from './action-relation';
13
+ import { ApplicationRelation } from './application-relation';
12
14
  import { UserRelation } from './user-relation';
15
+ import { VirtualHostType } from './virtual-host-type';
13
16
  /**
14
17
  *
15
18
  * @export
@@ -23,11 +26,11 @@ export interface VirtualHostRelation {
23
26
  */
24
27
  id: number;
25
28
  /**
26
- * The type of the Virtual Host (`name-based` or `ip-based`)
27
- * @type {string}
29
+ *
30
+ * @type {VirtualHostType}
28
31
  * @memberof VirtualHostRelation
29
32
  */
30
- type: string;
33
+ type: VirtualHostType;
31
34
  /**
32
35
  * The name of the Virtual Host
33
36
  * @type {string}
@@ -35,17 +38,29 @@ export interface VirtualHostRelation {
35
38
  */
36
39
  name: string;
37
40
  /**
38
- * The relative path to the root directory of the Virtual Host
41
+ *
42
+ * @type {ApplicationRelation}
43
+ * @memberof VirtualHostRelation
44
+ */
45
+ application: ApplicationRelation | null;
46
+ /**
47
+ * The document root location, within the application directory, that contains the public files to be served when a user visits the domain name associated with this virtual host
39
48
  * @type {string}
40
49
  * @memberof VirtualHostRelation
41
50
  */
42
- root_directory: string;
51
+ root_directory: string | null;
43
52
  /**
44
- * The address of the forward server
53
+ * The network name or IP address on which the application linked to this virtual host is configured to listen for incoming requests. A valid address has `http` or `https` protocol, a domain name or IP address, an optional port and optional path. You can also specify a UNIX-socket using `unix:` protocol. Examples: `http://127.0.0.1:8080` (for applications exposing port `8080`, for example running in a Docker container), `http://127.0.0.1:3000` (for applications kept alive by a daemon/background process that listens on port `3000`), `unix:/var/run/example.sock` (for applications listening on a custom socket)
45
54
  * @type {string}
46
55
  * @memberof VirtualHostRelation
47
56
  */
48
- forward_server_address: string;
57
+ application_listen_address: string | null;
58
+ /**
59
+ *
60
+ * @type {ActionRelation}
61
+ * @memberof VirtualHostRelation
62
+ */
63
+ last_action: ActionRelation | null;
49
64
  /**
50
65
  *
51
66
  * @type {UserRelation}
@@ -1,5 +1,3 @@
1
- "use strict";
2
- /* eslint-disable */
3
1
  /**
4
2
  * devopness API
5
3
  * Devopness API - Painless essential DevOps to everyone
@@ -11,4 +9,12 @@
11
9
  * https://openapi-generator.tech
12
10
  * Do not edit the class manually.
13
11
  */
14
- Object.defineProperty(exports, "__esModule", { value: true });
12
+ /**
13
+ * The type of Virtual Host
14
+ * @export
15
+ * @enum {string}
16
+ */
17
+ export declare enum VirtualHostType {
18
+ IpBased = "ip-based",
19
+ NameBased = "name-based"
20
+ }
@@ -12,14 +12,14 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
  Object.defineProperty(exports, "__esModule", { value: true });
15
- exports.ApplicationType = void 0;
15
+ exports.VirtualHostType = void 0;
16
16
  /**
17
- * The application\'s type, which will mainly define if it is publicly accessible through a web domain or not
17
+ * The type of Virtual Host
18
18
  * @export
19
19
  * @enum {string}
20
20
  */
21
- var ApplicationType;
22
- (function (ApplicationType) {
23
- ApplicationType["Web"] = "web";
24
- ApplicationType["NonWeb"] = "non-web";
25
- })(ApplicationType = exports.ApplicationType || (exports.ApplicationType = {}));
21
+ var VirtualHostType;
22
+ (function (VirtualHostType) {
23
+ VirtualHostType["IpBased"] = "ip-based";
24
+ VirtualHostType["NameBased"] = "name-based";
25
+ })(VirtualHostType = exports.VirtualHostType || (exports.VirtualHostType = {}));
@@ -28,15 +28,21 @@ export interface VirtualHostUpdate {
28
28
  */
29
29
  name?: string;
30
30
  /**
31
- * The relative path to the virtual host root directory. Must not be greater than 255 characters.
31
+ * The document root location, within the application directory, that contains the public files to be served when a user visits the domain name associated with this virtual host. Must not be greater than 255 characters.
32
32
  * @type {string}
33
33
  * @memberof VirtualHostUpdate
34
34
  */
35
35
  root_directory?: string;
36
36
  /**
37
- * The IP address of the server that will be used for forwarding. Must not be greater than 255 characters.
37
+ * The network name or IP address on which the application linked to this virtual host is configured to listen for incoming requests. A valid address has `http` or `https` protocol, a domain name or IP address, an optional port and optional path. You can also specify a UNIX-socket using `unix:` protocol. Examples: `http://127.0.0.1:8080` (for applications exposing port `8080`, for example running in a Docker container), `http://127.0.0.1:3000` (for applications kept alive by a daemon/background process that listens on port `3000`), `unix:/var/run/example.sock` (for applications listening on a custom socket). Must not be greater than 255 characters.
38
38
  * @type {string}
39
39
  * @memberof VirtualHostUpdate
40
40
  */
41
- forward_server_address?: string;
41
+ application_listen_address?: string | null;
42
+ /**
43
+ * The ID of the application to be associated with the virtual host. The value of `root_directory` will be relative to this application directory.
44
+ * @type {number}
45
+ * @memberof VirtualHostUpdate
46
+ */
47
+ application_id?: number | null;
42
48
  }
@@ -9,7 +9,10 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { ActionRelation } from './action-relation';
13
+ import { ApplicationRelation } from './application-relation';
12
14
  import { UserRelation } from './user-relation';
15
+ import { VirtualHostType } from './virtual-host-type';
13
16
  /**
14
17
  *
15
18
  * @export
@@ -23,11 +26,11 @@ export interface VirtualHost {
23
26
  */
24
27
  id: number;
25
28
  /**
26
- * The type of Virtual Host (`name-based` or `ip-based`)
27
- * @type {string}
29
+ *
30
+ * @type {VirtualHostType}
28
31
  * @memberof VirtualHost
29
32
  */
30
- type: string;
33
+ type: VirtualHostType;
31
34
  /**
32
35
  * The name of the Virtual Host
33
36
  * @type {string}
@@ -35,17 +38,29 @@ export interface VirtualHost {
35
38
  */
36
39
  name: string;
37
40
  /**
38
- * The relative path to the root directory of the Virtual Host
41
+ *
42
+ * @type {ApplicationRelation}
43
+ * @memberof VirtualHost
44
+ */
45
+ application: ApplicationRelation | null;
46
+ /**
47
+ * The document root location, within the application directory, that contains the public files to be served when a user visits the domain name associated with this virtual host
39
48
  * @type {string}
40
49
  * @memberof VirtualHost
41
50
  */
42
- root_directory: string;
51
+ root_directory: string | null;
43
52
  /**
44
- * The address of the forward server
53
+ * The network name or IP address on which the application linked to this virtual host is configured to listen for incoming requests. A valid address has `http` or `https` protocol, a domain name or IP address, an optional port and optional path. You can also specify a UNIX-socket using `unix:` protocol. Examples: `http://127.0.0.1:8080` (for applications exposing port `8080`, for example running in a Docker container), `http://127.0.0.1:3000` (for applications kept alive by a daemon/background process that listens on port `3000`), `unix:/var/run/example.sock` (for applications listening on a custom socket)
45
54
  * @type {string}
46
55
  * @memberof VirtualHost
47
56
  */
48
- forward_server_address: string;
57
+ application_listen_address: string | null;
58
+ /**
59
+ *
60
+ * @type {ActionRelation}
61
+ * @memberof VirtualHost
62
+ */
63
+ last_action: ActionRelation | null;
49
64
  /**
50
65
  *
51
66
  * @type {UserRelation}
@@ -1,10 +1,9 @@
1
1
  import { ApiBaseService } from './ApiBaseService';
2
2
  import { ApplicationsApiService } from '../api/generated/apis/applications-api';
3
3
  import { ApplicationsDeploymentsApiService } from '../api/generated/apis/applications-deployments-api';
4
- import { ApplicationsSSLCertificatesApiService } from '../api/generated/apis/applications-sslcertificates-api';
5
4
  import { ApplicationsVariablesApiService } from '../api/generated/apis/applications-variables-api';
6
5
  import { ApplicationsHooksApiService } from '../api/generated/apis/applications-hooks-api';
7
6
  export declare class ApplicationService extends ApiBaseService {
8
7
  }
9
- export interface ApplicationService extends ApplicationsApiService, ApplicationsDeploymentsApiService, ApplicationsApiService, ApplicationsSSLCertificatesApiService, ApplicationsVariablesApiService, ApplicationsHooksApiService {
8
+ export interface ApplicationService extends ApplicationsApiService, ApplicationsDeploymentsApiService, ApplicationsApiService, ApplicationsVariablesApiService, ApplicationsHooksApiService {
10
9
  }
@@ -5,7 +5,6 @@ const ApiBaseService_1 = require("./ApiBaseService");
5
5
  const MergeSiblingClasses_1 = require("../common/MergeSiblingClasses");
6
6
  const applications_api_1 = require("../api/generated/apis/applications-api");
7
7
  const applications_deployments_api_1 = require("../api/generated/apis/applications-deployments-api");
8
- const applications_sslcertificates_api_1 = require("../api/generated/apis/applications-sslcertificates-api");
9
8
  const applications_variables_api_1 = require("../api/generated/apis/applications-variables-api");
10
9
  const applications_hooks_api_1 = require("../api/generated/apis/applications-hooks-api");
11
10
  class ApplicationService extends ApiBaseService_1.ApiBaseService {
@@ -14,7 +13,6 @@ exports.ApplicationService = ApplicationService;
14
13
  (0, MergeSiblingClasses_1.mergeSiblingClasses)(ApplicationService, [
15
14
  applications_api_1.ApplicationsApiService,
16
15
  applications_deployments_api_1.ApplicationsDeploymentsApiService,
17
- applications_sslcertificates_api_1.ApplicationsSSLCertificatesApiService,
18
16
  applications_variables_api_1.ApplicationsVariablesApiService,
19
17
  applications_hooks_api_1.ApplicationsHooksApiService,
20
18
  ]);
@@ -7,6 +7,7 @@ import { EnvironmentsNetworkRulesApiService } from '../api/generated/apis/enviro
7
7
  import { EnvironmentsServersApiService } from '../api/generated/apis/environments-servers-api';
8
8
  import { EnvironmentsServicesApiService } from '../api/generated/apis/environments-services-api';
9
9
  import { EnvironmentsSSHKeysApiService } from '../api/generated/apis/environments-sshkeys-api';
10
+ import { EnvironmentsSSLCertificatesApiService } from '../api/generated/apis/environments-sslcertificates-api';
10
11
  import { EnvironmentsTeamMembershipsApiService } from '../api/generated/apis/environments-team-memberships-api';
11
12
  import { EnvironmentsTeamsApiService } from '../api/generated/apis/environments-teams-api';
12
13
  import { EnvironmentsNetworksApiService } from '../api/generated/apis/environments-networks-api';
@@ -21,6 +22,7 @@ export declare class EnvironmentService extends EnvironmentsApiService {
21
22
  servers: EnvironmentsServersApiService;
22
23
  services: EnvironmentsServicesApiService;
23
24
  sshKeys: EnvironmentsSSHKeysApiService;
25
+ sslCertificates: EnvironmentsSSLCertificatesApiService;
24
26
  teams: EnvironmentsTeamsApiService;
25
27
  teamMemberships: EnvironmentsTeamMembershipsApiService;
26
28
  virtualHosts: EnvironmentsVirtualHostsApiService;
@@ -10,6 +10,7 @@ const environments_network_rules_api_1 = require("../api/generated/apis/environm
10
10
  const environments_servers_api_1 = require("../api/generated/apis/environments-servers-api");
11
11
  const environments_services_api_1 = require("../api/generated/apis/environments-services-api");
12
12
  const environments_sshkeys_api_1 = require("../api/generated/apis/environments-sshkeys-api");
13
+ const environments_sslcertificates_api_1 = require("../api/generated/apis/environments-sslcertificates-api");
13
14
  const environments_team_memberships_api_1 = require("../api/generated/apis/environments-team-memberships-api");
14
15
  const environments_teams_api_1 = require("../api/generated/apis/environments-teams-api");
15
16
  const environments_networks_api_1 = require("../api/generated/apis/environments-networks-api");
@@ -26,6 +27,7 @@ class EnvironmentService extends environments_api_1.EnvironmentsApiService {
26
27
  this.servers = new environments_servers_api_1.EnvironmentsServersApiService();
27
28
  this.services = new environments_services_api_1.EnvironmentsServicesApiService();
28
29
  this.sshKeys = new environments_sshkeys_api_1.EnvironmentsSSHKeysApiService();
30
+ this.sslCertificates = new environments_sslcertificates_api_1.EnvironmentsSSLCertificatesApiService();
29
31
  this.teams = new environments_teams_api_1.EnvironmentsTeamsApiService();
30
32
  this.teamMemberships = new environments_team_memberships_api_1.EnvironmentsTeamMembershipsApiService();
31
33
  this.virtualHosts = new environments_virtual_hosts_api_1.EnvironmentsVirtualHostsApiService();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.131.0",
3
+ "version": "2.132.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -1,20 +0,0 @@
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
- * The application\'s type, which will mainly define if it is publicly accessible through a web domain or not
14
- * @export
15
- * @enum {string}
16
- */
17
- export declare enum ApplicationType {
18
- Web = "web",
19
- NonWeb = "non-web"
20
- }
@@ -1,25 +0,0 @@
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 `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
- * @export
16
- * @interface ApplicationTypesPrivateApplication
17
- */
18
- export interface ApplicationTypesPrivateApplication {
19
- /**
20
- * The list of VariableTarget
21
- * @type {Array<VariableTargets>}
22
- * @memberof ApplicationTypesPrivateApplication
23
- */
24
- variable_targets?: Array<VariableTargets>;
25
- }
@@ -1,25 +0,0 @@
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
- variable_targets?: Array<VariableTargets>;
25
- }
@@ -1,32 +0,0 @@
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 { ApplicationTypesPrivateApplication } from './application-types-private-application';
13
- import { ApplicationTypesPublicApplication } from './application-types-public-application';
14
- /**
15
- *
16
- * @export
17
- * @interface ApplicationTypes
18
- */
19
- export interface ApplicationTypes {
20
- /**
21
- *
22
- * @type {ApplicationTypesPublicApplication}
23
- * @memberof ApplicationTypes
24
- */
25
- public_application: ApplicationTypesPublicApplication;
26
- /**
27
- *
28
- * @type {ApplicationTypesPrivateApplication}
29
- * @memberof ApplicationTypes
30
- */
31
- private_application: ApplicationTypesPrivateApplication;
32
- }
@@ -1,14 +0,0 @@
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 });
@@ -1,14 +0,0 @@
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 });