@devopness/sdk-js 1.102.0 → 1.103.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 (43) hide show
  1. package/dist/DevopnessApiClient.d.ts +0 -2
  2. package/dist/DevopnessApiClient.js +0 -2
  3. package/dist/api/generated/apis/actions-api.d.ts +0 -20
  4. package/dist/api/generated/apis/actions-api.js +0 -62
  5. package/dist/api/generated/apis/actions-resources-api.d.ts +39 -0
  6. package/dist/api/generated/apis/actions-resources-api.js +95 -0
  7. package/dist/api/generated/apis/applications-deployments-api.d.ts +3 -13
  8. package/dist/api/generated/apis/applications-deployments-api.js +3 -28
  9. package/dist/api/generated/apis/logs-api.d.ts +0 -7
  10. package/dist/api/generated/apis/logs-api.js +0 -20
  11. package/dist/api/generated/apis/resource-events-api.d.ts +1 -1
  12. package/dist/api/generated/apis/resource-events-api.js +1 -1
  13. package/dist/api/generated/models/{deployment-create.js → action-trigger-type.d.ts} +9 -3
  14. package/dist/api/generated/models/action-trigger-type.js +25 -0
  15. package/dist/api/generated/models/action-triggered-from.d.ts +73 -0
  16. package/dist/api/generated/models/{deployment-create-application.js → action-triggered-from.js} +0 -0
  17. package/dist/api/generated/models/action.d.ts +8 -1
  18. package/dist/api/generated/models/{deployment-create.d.ts → application-deployment.d.ts} +6 -6
  19. package/dist/api/generated/models/{deployment-create-server.js → application-deployment.js} +0 -0
  20. package/dist/api/generated/models/application-last-deployments.d.ts +5 -5
  21. package/dist/api/generated/models/index.d.ts +3 -6
  22. package/dist/api/generated/models/index.js +3 -6
  23. package/dist/api/generated/models/resource.d.ts +2 -3
  24. package/dist/api/generated/models/script.d.ts +11 -4
  25. package/dist/services/ActionService.d.ts +2 -0
  26. package/dist/services/ActionService.js +5 -0
  27. package/dist/services/ProjectService.d.ts +0 -2
  28. package/dist/services/ProjectService.js +0 -2
  29. package/package.json +1 -1
  30. package/dist/api/generated/apis/deployments-api.d.ts +0 -25
  31. package/dist/api/generated/apis/deployments-api.js +0 -49
  32. package/dist/api/generated/apis/projects-deployments-api.d.ts +0 -27
  33. package/dist/api/generated/apis/projects-deployments-api.js +0 -58
  34. package/dist/api/generated/models/deployment-create-application.d.ts +0 -42
  35. package/dist/api/generated/models/deployment-create-server.d.ts +0 -30
  36. package/dist/api/generated/models/deployment-relation.d.ts +0 -103
  37. package/dist/api/generated/models/deployment-relation.js +0 -14
  38. package/dist/api/generated/models/deployment-step.d.ts +0 -61
  39. package/dist/api/generated/models/deployment-step.js +0 -14
  40. package/dist/api/generated/models/deployment.d.ts +0 -110
  41. package/dist/api/generated/models/deployment.js +0 -14
  42. package/dist/services/DeploymentService.d.ts +0 -3
  43. package/dist/services/DeploymentService.js +0 -7
@@ -1,110 +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 { ActionRelation } from './action-relation';
13
- import { ActionStatus } from './action-status';
14
- import { ApplicationRelation } from './application-relation';
15
- import { Commit } from './commit';
16
- import { DeploymentSource } from './deployment-source';
17
- import { DeploymentStep } from './deployment-step';
18
- import { DeploymentType } from './deployment-type';
19
- import { UserRelation } from './user-relation';
20
- /**
21
- *
22
- * @export
23
- * @interface Deployment
24
- */
25
- export interface Deployment {
26
- /**
27
- * The unique id of the given record
28
- * @type {number}
29
- * @memberof Deployment
30
- */
31
- id: number;
32
- /**
33
- * The application\'s name that the deployment belongs to
34
- * @type {string}
35
- * @memberof Deployment
36
- */
37
- name: string;
38
- /**
39
- *
40
- * @type {ActionStatus}
41
- * @memberof Deployment
42
- */
43
- status: ActionStatus;
44
- /**
45
- *
46
- * @type {DeploymentType}
47
- * @memberof Deployment
48
- */
49
- type: DeploymentType;
50
- /**
51
- *
52
- * @type {DeploymentSource}
53
- * @memberof Deployment
54
- */
55
- source: DeploymentSource;
56
- /**
57
- *
58
- * @type {ApplicationRelation}
59
- * @memberof Deployment
60
- */
61
- application: ApplicationRelation | null;
62
- /**
63
- *
64
- * @type {Commit}
65
- * @memberof Deployment
66
- */
67
- commit: Commit;
68
- /**
69
- * The steps that were meant to be executed when the deployment was triggered
70
- * @type {Array<DeploymentStep>}
71
- * @memberof Deployment
72
- */
73
- steps: Array<DeploymentStep>;
74
- /**
75
- *
76
- * @type {UserRelation}
77
- * @memberof Deployment
78
- */
79
- triggered_by_user: UserRelation;
80
- /**
81
- *
82
- * @type {ActionRelation}
83
- * @memberof Deployment
84
- */
85
- last_action: ActionRelation | null;
86
- /**
87
- * The date and time when the action started execution (i.e., left the `pending/queued` status)
88
- * @type {string}
89
- * @memberof Deployment
90
- */
91
- started_at?: string | null;
92
- /**
93
- * The date and time when the action has finished execution
94
- * @type {string}
95
- * @memberof Deployment
96
- */
97
- completed_at?: string | null;
98
- /**
99
- * The date and time when the record was created
100
- * @type {string}
101
- * @memberof Deployment
102
- */
103
- created_at?: string | null;
104
- /**
105
- * The date and time when the record was last updated
106
- * @type {string}
107
- * @memberof Deployment
108
- */
109
- updated_at?: string | null;
110
- }
@@ -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,3 +0,0 @@
1
- import { DeploymentsApiService } from '../api/generated/apis/deployments-api';
2
- export declare class DeploymentService extends DeploymentsApiService {
3
- }
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeploymentService = void 0;
4
- const deployments_api_1 = require("../api/generated/apis/deployments-api");
5
- class DeploymentService extends deployments_api_1.DeploymentsApiService {
6
- }
7
- exports.DeploymentService = DeploymentService;