@devopness/sdk-js 2.69.0 → 2.71.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 (29) hide show
  1. package/dist/api/generated/apis/pipelines-actions-api.d.ts +9 -0
  2. package/dist/api/generated/apis/pipelines-actions-api.js +25 -0
  3. package/dist/api/generated/models/action-relation.d.ts +1 -1
  4. package/dist/api/generated/models/action-retry-response.d.ts +1 -1
  5. package/dist/api/generated/models/action-status.d.ts +2 -0
  6. package/dist/api/generated/models/action-status.js +2 -0
  7. package/dist/api/generated/models/action-type.d.ts +6 -5
  8. package/dist/api/generated/models/action-type.js +5 -4
  9. package/dist/api/generated/models/action.d.ts +1 -1
  10. package/dist/api/generated/models/cloud-provider-service-code.d.ts +2 -1
  11. package/dist/api/generated/models/cloud-provider-service-code.js +1 -0
  12. package/dist/api/generated/models/hook-trigger-when.d.ts +3 -3
  13. package/dist/api/generated/models/index.d.ts +3 -2
  14. package/dist/api/generated/models/index.js +3 -2
  15. package/dist/api/generated/models/pipeline-create.d.ts +13 -0
  16. package/dist/api/generated/models/pipeline-relation.d.ts +13 -0
  17. package/dist/api/generated/models/pipeline-trigger-when.d.ts +25 -0
  18. package/dist/api/generated/models/pipeline-update.d.ts +13 -0
  19. package/dist/api/generated/models/pipeline.d.ts +13 -0
  20. package/dist/api/generated/models/server-environment-create.d.ts +6 -0
  21. package/dist/api/generated/models/server-update.d.ts +8 -2
  22. package/dist/api/generated/models/server.d.ts +6 -0
  23. package/dist/api/generated/models/{hook-incoming-trigger-when-condition-type.d.ts → trigger-when-condition-type.d.ts} +2 -2
  24. package/dist/api/generated/models/trigger-when-condition-type.js +24 -0
  25. package/dist/api/generated/models/{hook-incoming-trigger-when-condition.d.ts → trigger-when-condition.d.ts} +9 -9
  26. package/dist/api/generated/models/trigger-when-condition.js +14 -0
  27. package/package.json +1 -1
  28. package/dist/api/generated/models/hook-incoming-trigger-when-condition-type.js +0 -24
  29. /package/dist/api/generated/models/{hook-incoming-trigger-when-condition.js → pipeline-trigger-when.js} +0 -0
@@ -13,6 +13,7 @@ import { ApiBaseService } from "../../../services/ApiBaseService";
13
13
  import { ApiResponse } from "../../../common/ApiResponse";
14
14
  import { Action } from '../../generated/models';
15
15
  import { ActionPipelineCreate } from '../../generated/models';
16
+ import { ActionRelation } from '../../generated/models';
16
17
  /**
17
18
  * PipelinesActionsApiService - Auto-generated
18
19
  */
@@ -24,4 +25,12 @@ export declare class PipelinesActionsApiService extends ApiBaseService {
24
25
  * @param {ActionPipelineCreate} actionPipelineCreate A JSON object containing the resource data
25
26
  */
26
27
  addPipelineAction(pipelineId: number, actionPipelineCreate: ActionPipelineCreate): Promise<ApiResponse<Action>>;
28
+ /**
29
+ *
30
+ * @summary Return a list of pipeline\'s actions
31
+ * @param {number} pipelineId The ID of the pipeline.
32
+ * @param {number} [page] Number of the page to be retrieved
33
+ * @param {number} [perPage] Number of items returned per page
34
+ */
35
+ listPipelineActions(pipelineId: number, page?: number, perPage?: number): Promise<ApiResponse<Array<ActionRelation>>>;
27
36
  }
@@ -49,5 +49,30 @@ class PipelinesActionsApiService extends ApiBaseService_1.ApiBaseService {
49
49
  return new ApiResponse_1.ApiResponse(response);
50
50
  });
51
51
  }
52
+ /**
53
+ *
54
+ * @summary Return a list of pipeline\'s actions
55
+ * @param {number} pipelineId The ID of the pipeline.
56
+ * @param {number} [page] Number of the page to be retrieved
57
+ * @param {number} [perPage] Number of items returned per page
58
+ */
59
+ listPipelineActions(pipelineId, page, perPage) {
60
+ return __awaiter(this, void 0, void 0, function* () {
61
+ if (pipelineId === null || pipelineId === undefined) {
62
+ throw new Exceptions_1.ArgumentNullException('pipelineId', 'listPipelineActions');
63
+ }
64
+ let queryString = '';
65
+ const queryParams = { page: page, per_page: perPage, };
66
+ for (const key in queryParams) {
67
+ if (queryParams[key] === undefined || queryParams[key] === null) {
68
+ continue;
69
+ }
70
+ queryString += (queryString ? '&' : '') + `${key}=${encodeURI(queryParams[key])}`;
71
+ }
72
+ const requestUrl = '/pipelines/{pipeline_id}/actions' + (queryString ? `?${queryString}` : '');
73
+ const response = yield this.get(requestUrl.replace(`{${"pipeline_id"}}`, encodeURIComponent(String(pipelineId))));
74
+ return new ApiResponse_1.ApiResponse(response);
75
+ });
76
+ }
52
77
  }
53
78
  exports.PipelinesActionsApiService = PipelinesActionsApiService;
@@ -63,7 +63,7 @@ export interface ActionRelation {
63
63
  * @type {ActionData}
64
64
  * @memberof ActionRelation
65
65
  */
66
- action_data: ActionData | null;
66
+ action_data: ActionData;
67
67
  /**
68
68
  *
69
69
  * @type {ActionTriggeredFrom}
@@ -80,7 +80,7 @@ export interface ActionRetryResponse {
80
80
  * @type {ActionData}
81
81
  * @memberof ActionRetryResponse
82
82
  */
83
- action_data: ActionData | null;
83
+ action_data: ActionData;
84
84
  /**
85
85
  *
86
86
  * @type {ActionTriggeredFrom}
@@ -16,6 +16,8 @@
16
16
  */
17
17
  export declare enum ActionStatus {
18
18
  Pending = "pending",
19
+ Waiting = "waiting",
20
+ Skipped = "skipped",
19
21
  Queued = "queued",
20
22
  InProgress = "in-progress",
21
23
  Completed = "completed",
@@ -21,6 +21,8 @@ exports.ActionStatus = void 0;
21
21
  var ActionStatus;
22
22
  (function (ActionStatus) {
23
23
  ActionStatus["Pending"] = "pending";
24
+ ActionStatus["Waiting"] = "waiting";
25
+ ActionStatus["Skipped"] = "skipped";
24
26
  ActionStatus["Queued"] = "queued";
25
27
  ActionStatus["InProgress"] = "in-progress";
26
28
  ActionStatus["Completed"] = "completed";
@@ -16,15 +16,16 @@
16
16
  */
17
17
  export declare enum ActionType {
18
18
  Add = "add",
19
- Remove = "remove",
20
19
  Deploy = "deploy",
20
+ Disable = "disable",
21
+ Enable = "enable",
22
+ GetStatus = "get-status",
21
23
  Redeploy = "redeploy",
22
- Rollback = "rollback",
23
24
  Reload = "reload",
25
+ Remove = "remove",
24
26
  Restart = "restart",
27
+ Rollback = "rollback",
25
28
  Start = "start",
26
29
  Status = "status",
27
- Stop = "stop",
28
- Enable = "enable",
29
- Disable = "disable"
30
+ Stop = "stop"
30
31
  }
@@ -21,15 +21,16 @@ exports.ActionType = void 0;
21
21
  var ActionType;
22
22
  (function (ActionType) {
23
23
  ActionType["Add"] = "add";
24
- ActionType["Remove"] = "remove";
25
24
  ActionType["Deploy"] = "deploy";
25
+ ActionType["Disable"] = "disable";
26
+ ActionType["Enable"] = "enable";
27
+ ActionType["GetStatus"] = "get-status";
26
28
  ActionType["Redeploy"] = "redeploy";
27
- ActionType["Rollback"] = "rollback";
28
29
  ActionType["Reload"] = "reload";
30
+ ActionType["Remove"] = "remove";
29
31
  ActionType["Restart"] = "restart";
32
+ ActionType["Rollback"] = "rollback";
30
33
  ActionType["Start"] = "start";
31
34
  ActionType["Status"] = "status";
32
35
  ActionType["Stop"] = "stop";
33
- ActionType["Enable"] = "enable";
34
- ActionType["Disable"] = "disable";
35
36
  })(ActionType = exports.ActionType || (exports.ActionType = {}));
@@ -80,7 +80,7 @@ export interface Action {
80
80
  * @type {ActionData}
81
81
  * @memberof Action
82
82
  */
83
- action_data: ActionData | null;
83
+ action_data: ActionData;
84
84
  /**
85
85
  *
86
86
  * @type {ActionTriggeredFrom}
@@ -17,5 +17,6 @@
17
17
  export declare enum CloudProviderServiceCode {
18
18
  AwsEc2 = "aws-ec2",
19
19
  DigitaloceanDroplet = "digitalocean-droplet",
20
- GcpGce = "gcp-gce"
20
+ GcpGce = "gcp-gce",
21
+ SelfHostedCustom = "self-hosted-custom"
21
22
  }
@@ -23,4 +23,5 @@ var CloudProviderServiceCode;
23
23
  CloudProviderServiceCode["AwsEc2"] = "aws-ec2";
24
24
  CloudProviderServiceCode["DigitaloceanDroplet"] = "digitalocean-droplet";
25
25
  CloudProviderServiceCode["GcpGce"] = "gcp-gce";
26
+ CloudProviderServiceCode["SelfHostedCustom"] = "self-hosted-custom";
26
27
  })(CloudProviderServiceCode = exports.CloudProviderServiceCode || (exports.CloudProviderServiceCode = {}));
@@ -9,8 +9,8 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { HookIncomingTriggerWhenCondition } from './hook-incoming-trigger-when-condition';
13
12
  import { HookOutgoingTriggerWhenCondition } from './hook-outgoing-trigger-when-condition';
13
+ import { TriggerWhenCondition } from './trigger-when-condition';
14
14
  /**
15
15
  *
16
16
  * @export
@@ -25,8 +25,8 @@ export interface HookTriggerWhen {
25
25
  events?: Array<string>;
26
26
  /**
27
27
  * Conditions that must be met to trigger the hook
28
- * @type {Array<HookIncomingTriggerWhenCondition | HookOutgoingTriggerWhenCondition>}
28
+ * @type {Array<TriggerWhenCondition | HookOutgoingTriggerWhenCondition>}
29
29
  * @memberof HookTriggerWhen
30
30
  */
31
- conditions?: Array<HookIncomingTriggerWhenCondition | HookOutgoingTriggerWhenCondition>;
31
+ conditions?: Array<TriggerWhenCondition | HookOutgoingTriggerWhenCondition>;
32
32
  }
@@ -76,8 +76,6 @@ export * from './environment-update';
76
76
  export * from './hook';
77
77
  export * from './hook-create';
78
78
  export * from './hook-incoming-settings';
79
- export * from './hook-incoming-trigger-when-condition';
80
- export * from './hook-incoming-trigger-when-condition-type';
81
79
  export * from './hook-outgoing-request-header';
82
80
  export * from './hook-outgoing-settings';
83
81
  export * from './hook-outgoing-trigger-when-condition';
@@ -121,6 +119,7 @@ export * from './pipeline-settings';
121
119
  export * from './pipeline-settings-stage';
122
120
  export * from './pipeline-settings-variable';
123
121
  export * from './pipeline-step-runner-name';
122
+ export * from './pipeline-trigger-when';
124
123
  export * from './pipeline-update';
125
124
  export * from './project';
126
125
  export * from './project-create';
@@ -210,6 +209,8 @@ export * from './team-project-create';
210
209
  export * from './team-relation';
211
210
  export * from './team-update';
212
211
  export * from './trigger-event';
212
+ export * from './trigger-when-condition';
213
+ export * from './trigger-when-condition-type';
213
214
  export * from './triggered-action-stats';
214
215
  export * from './triggered-action-summary';
215
216
  export * from './triggered-actions';
@@ -92,8 +92,6 @@ __exportStar(require("./environment-update"), exports);
92
92
  __exportStar(require("./hook"), exports);
93
93
  __exportStar(require("./hook-create"), exports);
94
94
  __exportStar(require("./hook-incoming-settings"), exports);
95
- __exportStar(require("./hook-incoming-trigger-when-condition"), exports);
96
- __exportStar(require("./hook-incoming-trigger-when-condition-type"), exports);
97
95
  __exportStar(require("./hook-outgoing-request-header"), exports);
98
96
  __exportStar(require("./hook-outgoing-settings"), exports);
99
97
  __exportStar(require("./hook-outgoing-trigger-when-condition"), exports);
@@ -137,6 +135,7 @@ __exportStar(require("./pipeline-settings"), exports);
137
135
  __exportStar(require("./pipeline-settings-stage"), exports);
138
136
  __exportStar(require("./pipeline-settings-variable"), exports);
139
137
  __exportStar(require("./pipeline-step-runner-name"), exports);
138
+ __exportStar(require("./pipeline-trigger-when"), exports);
140
139
  __exportStar(require("./pipeline-update"), exports);
141
140
  __exportStar(require("./project"), exports);
142
141
  __exportStar(require("./project-create"), exports);
@@ -226,6 +225,8 @@ __exportStar(require("./team-project-create"), exports);
226
225
  __exportStar(require("./team-relation"), exports);
227
226
  __exportStar(require("./team-update"), exports);
228
227
  __exportStar(require("./trigger-event"), exports);
228
+ __exportStar(require("./trigger-when-condition"), exports);
229
+ __exportStar(require("./trigger-when-condition-type"), exports);
229
230
  __exportStar(require("./triggered-action-stats"), exports);
230
231
  __exportStar(require("./triggered-action-summary"), exports);
231
232
  __exportStar(require("./triggered-actions"), exports);
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { PipelineTriggerWhen } from './pipeline-trigger-when';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -27,4 +28,16 @@ export interface PipelineCreate {
27
28
  * @memberof PipelineCreate
28
29
  */
29
30
  operation: string;
31
+ /**
32
+ * Maximum number of actions that can run in parallel for this pipeline. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run this pipeline. Must be between 0 and 65535.
33
+ * @type {number}
34
+ * @memberof PipelineCreate
35
+ */
36
+ max_parallel_actions?: number;
37
+ /**
38
+ *
39
+ * @type {PipelineTriggerWhen}
40
+ * @memberof PipelineCreate
41
+ */
42
+ trigger_when?: PipelineTriggerWhen | null;
30
43
  }
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { PipelineTriggerWhen } from './pipeline-trigger-when';
12
13
  import { UserRelation } from './user-relation';
13
14
  /**
14
15
  *
@@ -70,6 +71,18 @@ export interface PipelineRelation {
70
71
  * @memberof PipelineRelation
71
72
  */
72
73
  operation_human_readable: string;
74
+ /**
75
+ * Maximum number of actions that can run in parallel for this pipeline. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run this pipeline.
76
+ * @type {number}
77
+ * @memberof PipelineRelation
78
+ */
79
+ max_parallel_actions: number;
80
+ /**
81
+ *
82
+ * @type {PipelineTriggerWhen}
83
+ * @memberof PipelineRelation
84
+ */
85
+ trigger_when: PipelineTriggerWhen | null;
73
86
  /**
74
87
  *
75
88
  * @type {UserRelation}
@@ -0,0 +1,25 @@
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 { TriggerWhenCondition } from './trigger-when-condition';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface PipelineTriggerWhen
17
+ */
18
+ export interface PipelineTriggerWhen {
19
+ /**
20
+ * Conditions that must be met to trigger the pipeline
21
+ * @type {Array<TriggerWhenCondition>}
22
+ * @memberof PipelineTriggerWhen
23
+ */
24
+ conditions?: Array<TriggerWhenCondition>;
25
+ }
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { PipelineTriggerWhen } from './pipeline-trigger-when';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -27,4 +28,16 @@ export interface PipelineUpdate {
27
28
  * @memberof PipelineUpdate
28
29
  */
29
30
  name: string;
31
+ /**
32
+ * Maximum number of actions that can run in parallel for this pipeline. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run this pipeline. Must be between 0 and 65535.
33
+ * @type {number}
34
+ * @memberof PipelineUpdate
35
+ */
36
+ max_parallel_actions?: number;
37
+ /**
38
+ *
39
+ * @type {PipelineTriggerWhen}
40
+ * @memberof PipelineUpdate
41
+ */
42
+ trigger_when?: PipelineTriggerWhen | null;
30
43
  }
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { PipelineTriggerWhen } from './pipeline-trigger-when';
12
13
  import { ResourceType } from './resource-type';
13
14
  import { Step } from './step';
14
15
  import { UserRelation } from './user-relation';
@@ -72,6 +73,18 @@ export interface Pipeline {
72
73
  * @memberof Pipeline
73
74
  */
74
75
  operation_human_readable: string;
76
+ /**
77
+ * Maximum number of actions that can run in parallel for this pipeline. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run this pipeline.
78
+ * @type {number}
79
+ * @memberof Pipeline
80
+ */
81
+ max_parallel_actions: number;
82
+ /**
83
+ *
84
+ * @type {PipelineTriggerWhen}
85
+ * @memberof Pipeline
86
+ */
87
+ trigger_when: PipelineTriggerWhen | null;
75
88
  /**
76
89
  *
77
90
  * @type {Array<Step>}
@@ -35,6 +35,12 @@ export interface ServerEnvironmentCreate {
35
35
  * @memberof ServerEnvironmentCreate
36
36
  */
37
37
  ssh_port?: number;
38
+ /**
39
+ * Maximum number of actions that can run in parallel on this server. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run on this server. Must be between 0 and 65535.
40
+ * @type {number}
41
+ * @memberof ServerEnvironmentCreate
42
+ */
43
+ max_parallel_actions?: number;
38
44
  /**
39
45
  * The service names and their respective versions for a blueprint.
40
46
  * @type {Array<BlueprintService>}
@@ -22,15 +22,21 @@ export interface ServerUpdate {
22
22
  */
23
23
  id: number;
24
24
  /**
25
- * Public ipv4 address for server access. This field is required when <code>provision_settings.self_hosted</code> is <code>true</code>.
25
+ * Public ipv4 address for server access.
26
26
  * @type {string}
27
27
  * @memberof ServerUpdate
28
28
  */
29
29
  ip_address?: string;
30
30
  /**
31
- * 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>. Must be between 22 and 65535.
31
+ * The network port to which the SSH daemon is listening to SSH connections on the server. Must be between 0 and 65535.
32
32
  * @type {number}
33
33
  * @memberof ServerUpdate
34
34
  */
35
35
  ssh_port?: number;
36
+ /**
37
+ * Maximum number of actions that can run in parallel on this server. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run on this server. Must be between 0 and 65535.
38
+ * @type {number}
39
+ * @memberof ServerUpdate
40
+ */
41
+ max_parallel_actions?: number;
36
42
  }
@@ -89,6 +89,12 @@ export interface Server {
89
89
  * @memberof Server
90
90
  */
91
91
  status: ActionStatus;
92
+ /**
93
+ * Maximum number of actions that can run in parallel on this server. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run on this server,
94
+ * @type {number}
95
+ * @memberof Server
96
+ */
97
+ max_parallel_actions: number;
92
98
  /**
93
99
  *
94
100
  * @type {ServerBlueprint}
@@ -10,10 +10,10 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * Type of the incoming hook condition.\\n* `request_body` - Validate request body for incoming hooks.
13
+ * The type of the condition to define where the values to be validated should be retrieved from. Example: `request_body` - Validate the condition using values of attributes sent in the request body.
14
14
  * @export
15
15
  * @enum {string}
16
16
  */
17
- export declare enum HookIncomingTriggerWhenConditionType {
17
+ export declare enum TriggerWhenConditionType {
18
18
  RequestBody = "request_body"
19
19
  }
@@ -0,0 +1,24 @@
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.TriggerWhenConditionType = void 0;
16
+ /**
17
+ * The type of the condition to define where the values to be validated should be retrieved from. Example: `request_body` - Validate the condition using values of attributes sent in the request body.
18
+ * @export
19
+ * @enum {string}
20
+ */
21
+ var TriggerWhenConditionType;
22
+ (function (TriggerWhenConditionType) {
23
+ TriggerWhenConditionType["RequestBody"] = "request_body";
24
+ })(TriggerWhenConditionType = exports.TriggerWhenConditionType || (exports.TriggerWhenConditionType = {}));
@@ -9,35 +9,35 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { HookIncomingTriggerWhenConditionType } from './hook-incoming-trigger-when-condition-type';
12
+ import { TriggerWhenConditionType } from './trigger-when-condition-type';
13
13
  /**
14
14
  *
15
15
  * @export
16
- * @interface HookIncomingTriggerWhenCondition
16
+ * @interface TriggerWhenCondition
17
17
  */
18
- export interface HookIncomingTriggerWhenCondition {
18
+ export interface TriggerWhenCondition {
19
19
  /**
20
20
  * Name of the condition
21
21
  * @type {string}
22
- * @memberof HookIncomingTriggerWhenCondition
22
+ * @memberof TriggerWhenCondition
23
23
  */
24
24
  name?: string;
25
25
  /**
26
26
  *
27
- * @type {HookIncomingTriggerWhenConditionType}
28
- * @memberof HookIncomingTriggerWhenCondition
27
+ * @type {TriggerWhenConditionType}
28
+ * @memberof TriggerWhenCondition
29
29
  */
30
- type: HookIncomingTriggerWhenConditionType;
30
+ type: TriggerWhenConditionType;
31
31
  /**
32
32
  * A dot-notation path of the request body attribute to be used as the value to evaluate this condition.
33
33
  * @type {string}
34
- * @memberof HookIncomingTriggerWhenCondition
34
+ * @memberof TriggerWhenCondition
35
35
  */
36
36
  path: string;
37
37
  /**
38
38
  * List of accepted values for this condition.
39
39
  * @type {Array<boolean | number | string>}
40
- * @memberof HookIncomingTriggerWhenCondition
40
+ * @memberof TriggerWhenCondition
41
41
  */
42
42
  accepted_values: Array<boolean | number | string>;
43
43
  }
@@ -0,0 +1,14 @@
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 });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.69.0",
3
+ "version": "2.71.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -1,24 +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.HookIncomingTriggerWhenConditionType = void 0;
16
- /**
17
- * Type of the incoming hook condition.\\n* `request_body` - Validate request body for incoming hooks.
18
- * @export
19
- * @enum {string}
20
- */
21
- var HookIncomingTriggerWhenConditionType;
22
- (function (HookIncomingTriggerWhenConditionType) {
23
- HookIncomingTriggerWhenConditionType["RequestBody"] = "request_body";
24
- })(HookIncomingTriggerWhenConditionType = exports.HookIncomingTriggerWhenConditionType || (exports.HookIncomingTriggerWhenConditionType = {}));