@devopness/sdk-js 2.164.4 → 2.164.5

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.
@@ -135,13 +135,13 @@ export interface ActionRetryResponse {
135
135
  * @type {EnvironmentRelation}
136
136
  * @memberof ActionRetryResponse
137
137
  */
138
- environment?: EnvironmentRelation | null;
138
+ environment: EnvironmentRelation | null;
139
139
  /**
140
140
  *
141
141
  * @type {ProjectRelation}
142
142
  * @memberof ActionRetryResponse
143
143
  */
144
- project?: ProjectRelation | null;
144
+ project: ProjectRelation | null;
145
145
  /**
146
146
  * List of actions dispatched to cloud resource targets
147
147
  * @type {Array<ActionTarget>}
@@ -24,13 +24,13 @@ export interface ActionTarget {
24
24
  * @type {number}
25
25
  * @memberof ActionTarget
26
26
  */
27
- id?: number;
27
+ id: number;
28
28
  /**
29
29
  * The type of the cloud resource on which the action must be performed
30
30
  * @type {string}
31
31
  * @memberof ActionTarget
32
32
  */
33
- resource_type?: string;
33
+ resource_type: string;
34
34
  /**
35
35
  * Human readable version of the resource type
36
36
  * @type {string}
@@ -42,13 +42,13 @@ export interface ActionTarget {
42
42
  * @type {number}
43
43
  * @memberof ActionTarget
44
44
  */
45
- resource_id?: number;
45
+ resource_id: number;
46
46
  /**
47
47
  *
48
48
  * @type {ActionStatus}
49
49
  * @memberof ActionTarget
50
50
  */
51
- status?: ActionStatus;
51
+ status: ActionStatus;
52
52
  /**
53
53
  * Human readable version of the action status
54
54
  * @type {string}
@@ -60,7 +60,7 @@ export interface ActionTarget {
60
60
  * @type {ActionStatusReasonCode}
61
61
  * @memberof ActionTarget
62
62
  */
63
- status_reason_code?: ActionStatusReasonCode;
63
+ status_reason_code: ActionStatusReasonCode;
64
64
  /**
65
65
  * Human readable version of the status reason code
66
66
  * @type {string}
@@ -72,13 +72,13 @@ export interface ActionTarget {
72
72
  * @type {number}
73
73
  * @memberof ActionTarget
74
74
  */
75
- total_steps?: number | null;
75
+ total_steps: number | null;
76
76
  /**
77
77
  *
78
78
  * @type {ActionStep}
79
79
  * @memberof ActionTarget
80
80
  */
81
- current_step?: ActionStep | null;
81
+ current_step: ActionStep | null;
82
82
  /**
83
83
  * The list of action steps
84
84
  * @type {Array<ActionStep>}
@@ -90,7 +90,7 @@ export interface ActionTarget {
90
90
  * @type {ActionTargetData}
91
91
  * @memberof ActionTarget
92
92
  */
93
- resource_data?: ActionTargetData | null;
93
+ resource_data: ActionTargetData | null;
94
94
  /**
95
95
  * The date and time when the action started execution (i.e., left the `pending/queued` status)
96
96
  * @type {string}
@@ -108,11 +108,11 @@ export interface ActionTarget {
108
108
  * @type {string}
109
109
  * @memberof ActionTarget
110
110
  */
111
- created_at?: string;
111
+ created_at: string;
112
112
  /**
113
113
  * The date and time when the record was last updated
114
114
  * @type {string}
115
115
  * @memberof ActionTarget
116
116
  */
117
- updated_at?: string;
117
+ updated_at: string;
118
118
  }
@@ -135,13 +135,13 @@ export interface Action {
135
135
  * @type {EnvironmentRelation}
136
136
  * @memberof Action
137
137
  */
138
- environment?: EnvironmentRelation | null;
138
+ environment: EnvironmentRelation | null;
139
139
  /**
140
140
  *
141
141
  * @type {ProjectRelation}
142
142
  * @memberof Action
143
143
  */
144
- project?: ProjectRelation | null;
144
+ project: ProjectRelation | null;
145
145
  /**
146
146
  * List of actions dispatched to cloud resource targets
147
147
  * @type {Array<ActionTarget>}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@devopness/sdk-js",
4
- "version": "2.164.4",
4
+ "version": "2.164.5",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -54,19 +54,19 @@
54
54
  "@eslint/js": "^9.30.0",
55
55
  "@openapitools/openapi-generator-cli": "^2.21.0",
56
56
  "@types/jest": "^30.0.0",
57
- "@typescript-eslint/parser": "^8.35.1",
57
+ "@typescript-eslint/parser": "^8.36.0",
58
58
  "axios-mock-adapter": "^2.1.0",
59
59
  "eslint": "^9.30.1",
60
60
  "eslint-import-resolver-typescript": "^4.4.4",
61
61
  "eslint-plugin-import": "^2.32.0",
62
- "eslint-plugin-n": "^17.20.0",
62
+ "eslint-plugin-n": "^17.21.0",
63
63
  "eslint-plugin-promise": "^7.2.1",
64
64
  "husky": "9.1.7",
65
65
  "jest": "^30.0.4",
66
66
  "ts-jest": "^29.4.0",
67
67
  "typedoc": "^0.28.7",
68
68
  "typescript": "^5.8.3",
69
- "typescript-eslint": "^8.35.1"
69
+ "typescript-eslint": "^8.36.0"
70
70
  },
71
71
  "dependencies": {
72
72
  "@types/parse-link-header": "^2.0.3",