@devopness/sdk-js 2.36.0 → 2.38.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 (59) hide show
  1. package/dist/api/generated/apis/environments-applications-api.d.ts +2 -2
  2. package/dist/api/generated/apis/environments-applications-api.js +2 -2
  3. package/dist/api/generated/apis/social-accounts-api.d.ts +12 -11
  4. package/dist/api/generated/apis/social-accounts-api.js +18 -18
  5. package/dist/api/generated/models/action-retry-response.d.ts +1 -1
  6. package/dist/api/generated/models/action-trigger-type.d.ts +1 -1
  7. package/dist/api/generated/models/action-trigger-type.js +1 -1
  8. package/dist/api/generated/models/action.d.ts +1 -1
  9. package/dist/api/generated/models/application.d.ts +1 -1
  10. package/dist/api/generated/models/cron-job.d.ts +1 -1
  11. package/dist/api/generated/models/daemon.d.ts +1 -1
  12. package/dist/api/generated/models/{environment-link-item.d.ts → environment-link.d.ts} +5 -5
  13. package/dist/api/generated/models/{action-list-item-params.js → environment-link.js} +0 -0
  14. package/dist/api/generated/models/environment-relation.d.ts +2 -2
  15. package/dist/api/generated/models/environment-type.d.ts +2 -2
  16. package/dist/api/generated/models/environment-type.js +1 -1
  17. package/dist/api/generated/models/environment-update.d.ts +7 -7
  18. package/dist/api/generated/models/index.d.ts +2 -14
  19. package/dist/api/generated/models/index.js +2 -14
  20. package/dist/api/generated/models/network-rule.d.ts +1 -1
  21. package/dist/api/generated/models/related-action.d.ts +6 -0
  22. package/dist/api/generated/models/server.d.ts +1 -1
  23. package/dist/api/generated/models/service.d.ts +1 -1
  24. package/dist/api/generated/models/social-account-create.d.ts +4 -4
  25. package/dist/api/generated/models/social-account-displayable-name.d.ts +1 -2
  26. package/dist/api/generated/models/social-account-displayable-name.js +0 -1
  27. package/dist/api/generated/models/social-account-provider.d.ts +1 -2
  28. package/dist/api/generated/models/social-account-provider.js +0 -1
  29. package/dist/api/generated/models/social-account-relation.d.ts +74 -0
  30. package/dist/api/generated/models/{action-list-item.js → social-account-relation.js} +0 -0
  31. package/dist/api/generated/models/social-account-status.d.ts +7 -8
  32. package/dist/api/generated/models/social-account.d.ts +15 -9
  33. package/dist/api/generated/models/ssh-key.d.ts +1 -1
  34. package/package.json +1 -1
  35. package/dist/api/generated/models/action-list-item-params.d.ts +0 -25
  36. package/dist/api/generated/models/action-list-item.d.ts +0 -18
  37. package/dist/api/generated/models/action-step-log.d.ts +0 -38
  38. package/dist/api/generated/models/action-step-log.js +0 -14
  39. package/dist/api/generated/models/application-deployment.d.ts +0 -49
  40. package/dist/api/generated/models/application-deployment.js +0 -14
  41. package/dist/api/generated/models/deployment-origin.d.ts +0 -20
  42. package/dist/api/generated/models/deployment-origin.js +0 -25
  43. package/dist/api/generated/models/deployment-source.d.ts +0 -49
  44. package/dist/api/generated/models/deployment-source.js +0 -14
  45. package/dist/api/generated/models/environment-id-request.d.ts +0 -24
  46. package/dist/api/generated/models/environment-id-request.js +0 -14
  47. package/dist/api/generated/models/environment-link-item.js +0 -14
  48. package/dist/api/generated/models/environment-link-server.d.ts +0 -24
  49. package/dist/api/generated/models/environment-link-server.js +0 -14
  50. package/dist/api/generated/models/environment-member-profile.d.ts +0 -49
  51. package/dist/api/generated/models/environment-member-profile.js +0 -14
  52. package/dist/api/generated/models/environment-member.d.ts +0 -36
  53. package/dist/api/generated/models/environment-member.js +0 -14
  54. package/dist/api/generated/models/environment-option-type.d.ts +0 -36
  55. package/dist/api/generated/models/environment-option-type.js +0 -14
  56. package/dist/api/generated/models/environment-team-link.d.ts +0 -24
  57. package/dist/api/generated/models/environment-team-link.js +0 -14
  58. package/dist/api/generated/models/environment-team.d.ts +0 -55
  59. package/dist/api/generated/models/environment-team.js +0 -14
@@ -18,11 +18,17 @@ import { SocialAccountProvider } from './social-account-provider';
18
18
  */
19
19
  export interface SocialAccount {
20
20
  /**
21
- * The unique id of the given record
21
+ * The ID of the given social account
22
22
  * @type {number}
23
23
  * @memberof SocialAccount
24
24
  */
25
25
  id: number;
26
+ /**
27
+ * The current user\'s ID
28
+ * @type {number}
29
+ * @memberof SocialAccount
30
+ */
31
+ user_id: number;
26
32
  /**
27
33
  *
28
34
  * @type {SocialAccountProvider}
@@ -34,9 +40,9 @@ export interface SocialAccount {
34
40
  * @type {SocialAccountDisplayableName}
35
41
  * @memberof SocialAccount
36
42
  */
37
- provider_human_readable?: SocialAccountDisplayableName;
43
+ provider_human_readable: SocialAccountDisplayableName;
38
44
  /**
39
- * The nickname of the user on the Social Authentication provider
45
+ * The nickname of the user on the Source Authentication provider
40
46
  * @type {string}
41
47
  * @memberof SocialAccount
42
48
  */
@@ -46,23 +52,23 @@ export interface SocialAccount {
46
52
  * @type {boolean}
47
53
  * @memberof SocialAccount
48
54
  */
49
- is_vcs?: boolean;
55
+ is_vcs: boolean;
50
56
  /**
51
- * The current user\'s id
52
- * @type {number}
57
+ * The date and time indicating when the authentication token will expire at
58
+ * @type {string}
53
59
  * @memberof SocialAccount
54
60
  */
55
- user_id?: number;
61
+ token_expires_at: string | null;
56
62
  /**
57
63
  * The date and time when the record was created
58
64
  * @type {string}
59
65
  * @memberof SocialAccount
60
66
  */
61
- created_at?: string;
67
+ created_at: string;
62
68
  /**
63
69
  * The date and time when the record was last updated
64
70
  * @type {string}
65
71
  * @memberof SocialAccount
66
72
  */
67
- updated_at?: string;
73
+ updated_at: string;
68
74
  }
@@ -66,7 +66,7 @@ export interface SshKey {
66
66
  * @type {EnvironmentRelation}
67
67
  * @memberof SshKey
68
68
  */
69
- environment: EnvironmentRelation;
69
+ environment: EnvironmentRelation | null;
70
70
  /**
71
71
  *
72
72
  * @type {Array<ServerRelation>}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.36.0",
3
+ "version": "2.38.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -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 { ServerAction } from './server-action';
13
- /**
14
- *
15
- * @export
16
- * @interface ActionListItemParams
17
- */
18
- export interface ActionListItemParams {
19
- /**
20
- * List of actions dispatched to servers
21
- * @type {Array<ServerAction>}
22
- * @memberof ActionListItemParams
23
- */
24
- servers?: Array<ServerAction>;
25
- }
@@ -1,18 +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 { ActionListItemParams } from './action-list-item-params';
13
- import { ActionRelation } from './action-relation';
14
- /**
15
- * @type ActionListItem
16
- * @export
17
- */
18
- export declare type ActionListItem = ActionListItemParams & ActionRelation;
@@ -1,38 +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 { ServerActionLogStep } from './server-action-log-step';
13
- import { ServerRelation } from './server-relation';
14
- /**
15
- *
16
- * @export
17
- * @interface ActionStepLog
18
- */
19
- export interface ActionStepLog {
20
- /**
21
- * The date and time when the requested log record was last updated
22
- * @type {string}
23
- * @memberof ActionStepLog
24
- */
25
- updated_at: string | null;
26
- /**
27
- *
28
- * @type {ServerRelation}
29
- * @memberof ActionStepLog
30
- */
31
- server?: ServerRelation | null;
32
- /**
33
- *
34
- * @type {ServerActionLogStep}
35
- * @memberof ActionStepLog
36
- */
37
- step?: ServerActionLogStep | null;
38
- }
@@ -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,49 +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 { DeploymentType } from './deployment-type';
13
- /**
14
- *
15
- * @export
16
- * @interface ApplicationDeployment
17
- */
18
- export interface ApplicationDeployment {
19
- /**
20
- *
21
- * @type {DeploymentType}
22
- * @memberof ApplicationDeployment
23
- */
24
- type: DeploymentType;
25
- /**
26
- * The pipeline\'s ID to use for deployment
27
- * @type {number}
28
- * @memberof ApplicationDeployment
29
- */
30
- pipeline_id?: number;
31
- /**
32
- * The name of the branch from which the application source code will be retrieved and deployed. This parameter is ignored when `hash` is provided.
33
- * @type {string}
34
- * @memberof ApplicationDeployment
35
- */
36
- branch: string;
37
- /**
38
- * The commit hash from which the application source code will be retrieved and deployed. When provided `branch` parameter is ignored
39
- * @type {string}
40
- * @memberof ApplicationDeployment
41
- */
42
- hash?: string;
43
- /**
44
- * List of servers ids that the deploy will be triggered to
45
- * @type {Array<number>}
46
- * @memberof ApplicationDeployment
47
- */
48
- servers?: Array<number>;
49
- }
@@ -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,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
- * Source/channel from which the deployment has been triggered
14
- * @export
15
- * @enum {string}
16
- */
17
- export declare enum DeploymentOrigin {
18
- Hook = "hook",
19
- Manual = "manual"
20
- }
@@ -1,25 +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 });
15
- exports.DeploymentOrigin = void 0;
16
- /**
17
- * Source/channel from which the deployment has been triggered
18
- * @export
19
- * @enum {string}
20
- */
21
- var DeploymentOrigin;
22
- (function (DeploymentOrigin) {
23
- DeploymentOrigin["Hook"] = "hook";
24
- DeploymentOrigin["Manual"] = "manual";
25
- })(DeploymentOrigin = exports.DeploymentOrigin || (exports.DeploymentOrigin = {}));
@@ -1,49 +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 { DeploymentOrigin } from './deployment-origin';
13
- /**
14
- * Deployment source information
15
- * @export
16
- * @interface DeploymentSource
17
- */
18
- export interface DeploymentSource {
19
- /**
20
- *
21
- * @type {DeploymentOrigin}
22
- * @memberof DeploymentSource
23
- */
24
- origin: DeploymentOrigin;
25
- /**
26
- * The IP address from the deployment has been triggered
27
- * @type {string}
28
- * @memberof DeploymentSource
29
- */
30
- ip_address: string | null;
31
- /**
32
- * The hook that has been triggered the deployment
33
- * @type {number}
34
- * @memberof DeploymentSource
35
- */
36
- hook_id: number | null;
37
- /**
38
- * The hook request\'s ID that have triggered the deployment
39
- * @type {number}
40
- * @memberof DeploymentSource
41
- */
42
- hook_request_id: number | null;
43
- /**
44
- * The pull request that have triggered the deployment
45
- * @type {number}
46
- * @memberof DeploymentSource
47
- */
48
- pull_request_id: number | null;
49
- }
@@ -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,24 +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
- *
14
- * @export
15
- * @interface EnvironmentIdRequest
16
- */
17
- export interface EnvironmentIdRequest {
18
- /**
19
- * The unique environment id
20
- * @type {number}
21
- * @memberof EnvironmentIdRequest
22
- */
23
- environment_id: number;
24
- }
@@ -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 });
@@ -1,24 +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
- *
14
- * @export
15
- * @interface EnvironmentLinkServer
16
- */
17
- export interface EnvironmentLinkServer {
18
- /**
19
- * Environment\'s unique id
20
- * @type {number}
21
- * @memberof EnvironmentLinkServer
22
- */
23
- id: number;
24
- }
@@ -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,49 +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 { EnvironmentTeam } from './environment-team';
13
- /**
14
- *
15
- * @export
16
- * @interface EnvironmentMemberProfile
17
- */
18
- export interface EnvironmentMemberProfile {
19
- /**
20
- * The ID of the member
21
- * @type {number}
22
- * @memberof EnvironmentMemberProfile
23
- */
24
- id: number;
25
- /**
26
- * Member\'s full name
27
- * @type {string}
28
- * @memberof EnvironmentMemberProfile
29
- */
30
- name: string;
31
- /**
32
- * Member\'s email
33
- * @type {string}
34
- * @memberof EnvironmentMemberProfile
35
- */
36
- email: string;
37
- /**
38
- * Tells if the user is active or not
39
- * @type {boolean}
40
- * @memberof EnvironmentMemberProfile
41
- */
42
- active: boolean;
43
- /**
44
- *
45
- * @type {Array<EnvironmentTeam>}
46
- * @memberof EnvironmentMemberProfile
47
- */
48
- teams: Array<EnvironmentTeam>;
49
- }
@@ -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,36 +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
- *
14
- * @export
15
- * @interface EnvironmentMember
16
- */
17
- export interface EnvironmentMember {
18
- /**
19
- * The ID of the member
20
- * @type {number}
21
- * @memberof EnvironmentMember
22
- */
23
- id: number;
24
- /**
25
- * Member\'s full name
26
- * @type {string}
27
- * @memberof EnvironmentMember
28
- */
29
- name: string;
30
- /**
31
- * Member\'s email
32
- * @type {string}
33
- * @memberof EnvironmentMember
34
- */
35
- email: string;
36
- }
@@ -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,36 +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
- *
14
- * @export
15
- * @interface EnvironmentOptionType
16
- */
17
- export interface EnvironmentOptionType {
18
- /**
19
- * The internal name of the environment
20
- * @type {string}
21
- * @memberof EnvironmentOptionType
22
- */
23
- value: string;
24
- /**
25
- * The formatted name to be displayed in user interfaces
26
- * @type {string}
27
- * @memberof EnvironmentOptionType
28
- */
29
- human_readable: string;
30
- /**
31
- * Text describing the environment purpose
32
- * @type {string}
33
- * @memberof EnvironmentOptionType
34
- */
35
- hint: string;
36
- }
@@ -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,24 +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
- *
14
- * @export
15
- * @interface EnvironmentTeamLink
16
- */
17
- export interface EnvironmentTeamLink {
18
- /**
19
- * The role\'s ID to use for this team on environment
20
- * @type {number}
21
- * @memberof EnvironmentTeamLink
22
- */
23
- role_id: number;
24
- }
@@ -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 });