@devopness/sdk-js 2.31.0 → 2.32.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/models/index.d.ts +0 -7
  2. package/dist/api/generated/models/index.js +0 -7
  3. package/dist/services/ProjectService.d.ts +0 -14
  4. package/dist/services/ProjectService.js +0 -14
  5. package/package.json +1 -1
  6. package/dist/api/generated/apis/projects-applications-api.d.ts +0 -36
  7. package/dist/api/generated/apis/projects-applications-api.js +0 -78
  8. package/dist/api/generated/apis/projects-cron-jobs-api.d.ts +0 -36
  9. package/dist/api/generated/apis/projects-cron-jobs-api.js +0 -78
  10. package/dist/api/generated/apis/projects-daemons-api.d.ts +0 -36
  11. package/dist/api/generated/apis/projects-daemons-api.js +0 -78
  12. package/dist/api/generated/apis/projects-network-rules-api.d.ts +0 -27
  13. package/dist/api/generated/apis/projects-network-rules-api.js +0 -58
  14. package/dist/api/generated/apis/projects-servers-api.d.ts +0 -36
  15. package/dist/api/generated/apis/projects-servers-api.js +0 -78
  16. package/dist/api/generated/apis/projects-services-api.d.ts +0 -27
  17. package/dist/api/generated/apis/projects-services-api.js +0 -58
  18. package/dist/api/generated/apis/projects-sshkeys-api.d.ts +0 -36
  19. package/dist/api/generated/apis/projects-sshkeys-api.js +0 -78
  20. package/dist/api/generated/models/application-project-create.d.ts +0 -140
  21. package/dist/api/generated/models/application-project-create.js +0 -14
  22. package/dist/api/generated/models/cron-job-project-create.d.ts +0 -61
  23. package/dist/api/generated/models/cron-job-project-create.js +0 -14
  24. package/dist/api/generated/models/daemon-project-create.d.ts +0 -61
  25. package/dist/api/generated/models/daemon-project-create.js +0 -14
  26. package/dist/api/generated/models/network-rule-project-create.d.ts +0 -69
  27. package/dist/api/generated/models/network-rule-project-create.js +0 -14
  28. package/dist/api/generated/models/server-project-create.d.ts +0 -50
  29. package/dist/api/generated/models/server-project-create.js +0 -14
  30. package/dist/api/generated/models/service-project-create.d.ts +0 -51
  31. package/dist/api/generated/models/service-project-create.js +0 -14
  32. package/dist/api/generated/models/ssh-key-project-create.d.ts +0 -37
  33. package/dist/api/generated/models/ssh-key-project-create.js +0 -14
@@ -1,50 +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 { ServerBlueprint } from './server-blueprint';
13
- import { ServerProvisionSettings } from './server-provision-settings';
14
- /**
15
- *
16
- * @export
17
- * @interface ServerProjectCreate
18
- */
19
- export interface ServerProjectCreate {
20
- /**
21
- * The hostname to be set on Linux servers. Accepts numbers (0-9), dash (-) and lower case non accented characters. Must contain only letters, numbers, dashes and underscores. Must not be greater than 60 characters.
22
- * @type {string}
23
- * @memberof ServerProjectCreate
24
- */
25
- hostname: string;
26
- /**
27
- * Public ipv4 address for server access. This field is required when <code>provision_settings.self_hosted</code> is <code>true</code>.
28
- * @type {string}
29
- * @memberof ServerProjectCreate
30
- */
31
- ip_address?: string;
32
- /**
33
- * The network port to which the SSH daemon is listening to SSH connections on the server. This field is required when <code>provision_settings.self_hosted</code> is <code>true</code>.
34
- * @type {number}
35
- * @memberof ServerProjectCreate
36
- */
37
- ssh_port?: number;
38
- /**
39
- *
40
- * @type {ServerBlueprint}
41
- * @memberof ServerProjectCreate
42
- */
43
- blueprint: ServerBlueprint;
44
- /**
45
- *
46
- * @type {ServerProvisionSettings}
47
- * @memberof ServerProjectCreate
48
- */
49
- provision_settings: ServerProvisionSettings;
50
- }
@@ -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,51 +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 { EnvironmentLinkItem } from './environment-link-item';
13
- import { ServiceInitialState } from './service-initial-state';
14
- import { ServiceType } from './service-type';
15
- /**
16
- *
17
- * @export
18
- * @interface ServiceProjectCreate
19
- */
20
- export interface ServiceProjectCreate {
21
- /**
22
- * Tells if the service should start automatically on operating system boot.
23
- * @type {boolean}
24
- * @memberof ServiceProjectCreate
25
- */
26
- auto_start?: boolean;
27
- /**
28
- *
29
- * @type {ServiceInitialState}
30
- * @memberof ServiceProjectCreate
31
- */
32
- initial_state?: ServiceInitialState;
33
- /**
34
- *
35
- * @type {ServiceType}
36
- * @memberof ServiceProjectCreate
37
- */
38
- type: ServiceType;
39
- /**
40
- * The service version to be installed. Must be one of <code></code> Must be at least 3 characters. Must not be greater than 30 characters.
41
- * @type {string}
42
- * @memberof ServiceProjectCreate
43
- */
44
- version: string;
45
- /**
46
- *
47
- * @type {Array<EnvironmentLinkItem>}
48
- * @memberof ServiceProjectCreate
49
- */
50
- environments?: Array<EnvironmentLinkItem>;
51
- }
@@ -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,37 +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 { EnvironmentLinkItem } from './environment-link-item';
13
- /**
14
- *
15
- * @export
16
- * @interface SshKeyProjectCreate
17
- */
18
- export interface SshKeyProjectCreate {
19
- /**
20
- * The ssh key\'s name. Must not be greater than 60 characters.
21
- * @type {string}
22
- * @memberof SshKeyProjectCreate
23
- */
24
- name: string;
25
- /**
26
- * The public key of the ssh key.
27
- * @type {string}
28
- * @memberof SshKeyProjectCreate
29
- */
30
- public_key: string;
31
- /**
32
- *
33
- * @type {Array<EnvironmentLinkItem>}
34
- * @memberof SshKeyProjectCreate
35
- */
36
- environments?: Array<EnvironmentLinkItem>;
37
- }
@@ -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 });