@dynatrace-sdk/client-automation
Advanced tools
Comparing version 1.5.0 to 1.6.1
@@ -5,2 +5,14 @@ # Automation | ||
## 1.6.1 | ||
### Patch Changes | ||
- Update JSDoc examples. | ||
## 1.6.0 | ||
### Minor Changes | ||
- Add "actor" field in Execution | ||
## 1.5.0 | ||
@@ -7,0 +19,0 @@ |
{ | ||
"dynagen": { | ||
"version": "0.12.3", | ||
"version": "0.12.5", | ||
"generatedAt": "", | ||
"template": { | ||
"name": "@dynatrace-sdk/template-typescript-client", | ||
"version": "0.17.10" | ||
"version": "0.17.13" | ||
} | ||
@@ -9,0 +9,0 @@ }, |
{ | ||
"name": "@dynatrace-sdk/client-automation", | ||
"version": "1.5.0", | ||
"version": "1.6.1", | ||
"description": "Automation API allows working with workflows and various trigger options.", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
# @dynatrace-sdk/client-automation | ||
[![npm](https://img.shields.io/badge/npm-v1.5.0-blue)](https://www.npmjs.com/package/@dynatrace-sdk/client-automation/v/1.5.0) | ||
[![npm](https://img.shields.io/badge/npm-v1.6.1-blue)](https://www.npmjs.com/package/@dynatrace-sdk/client-automation/v/1.6.1) | ||
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) | ||
@@ -5,0 +5,0 @@ |
@@ -9,3 +9,3 @@ import { AbortSignal, HttpClient } from '@dynatrace-sdk/http-client'; | ||
* @example | ||
* const queryClientNodeJs = new QueryClient(yourCustomImplementation); | ||
* const actionExecutionsClientNodeJs = new ActionExecutionsClient(yourCustomImplementation); | ||
*/ | ||
@@ -12,0 +12,0 @@ constructor(httpClientImplementation: HttpClient); |
@@ -13,3 +13,3 @@ import { AbortSignal, HttpClient } from '@dynatrace-sdk/http-client'; | ||
* @example | ||
* const queryClientNodeJs = new QueryClient(yourCustomImplementation); | ||
* const businessCalendarsClientNodeJs = new BusinessCalendarsClient(yourCustomImplementation); | ||
*/ | ||
@@ -16,0 +16,0 @@ constructor(httpClientImplementation: HttpClient); |
@@ -9,3 +9,3 @@ import { AbortSignal, HttpClient } from '@dynatrace-sdk/http-client'; | ||
* @example | ||
* const queryClientNodeJs = new QueryClient(yourCustomImplementation); | ||
* const eventTriggersClientNodeJs = new EventTriggersClient(yourCustomImplementation); | ||
*/ | ||
@@ -12,0 +12,0 @@ constructor(httpClientImplementation: HttpClient); |
@@ -14,3 +14,3 @@ import { AbortSignal, HttpClient } from '@dynatrace-sdk/http-client'; | ||
* @example | ||
* const queryClientNodeJs = new QueryClient(yourCustomImplementation); | ||
* const executionsClientNodeJs = new ExecutionsClient(yourCustomImplementation); | ||
*/ | ||
@@ -17,0 +17,0 @@ constructor(httpClientImplementation: HttpClient); |
@@ -10,3 +10,3 @@ import { AbortSignal, HttpClient } from '@dynatrace-sdk/http-client'; | ||
* @example | ||
* const queryClientNodeJs = new QueryClient(yourCustomImplementation); | ||
* const schedulesClientNodeJs = new SchedulesClient(yourCustomImplementation); | ||
*/ | ||
@@ -13,0 +13,0 @@ constructor(httpClientImplementation: HttpClient); |
@@ -15,3 +15,3 @@ import { AbortSignal, HttpClient } from '@dynatrace-sdk/http-client'; | ||
* @example | ||
* const queryClientNodeJs = new QueryClient(yourCustomImplementation); | ||
* const schedulingRulesClientNodeJs = new SchedulingRulesClient(yourCustomImplementation); | ||
*/ | ||
@@ -18,0 +18,0 @@ constructor(httpClientImplementation: HttpClient); |
@@ -10,3 +10,3 @@ import { AbortSignal, HttpClient } from '@dynatrace-sdk/http-client'; | ||
* @example | ||
* const queryClientNodeJs = new QueryClient(yourCustomImplementation); | ||
* const settingsClientNodeJs = new SettingsClient(yourCustomImplementation); | ||
*/ | ||
@@ -13,0 +13,0 @@ constructor(httpClientImplementation: HttpClient); |
@@ -8,3 +8,3 @@ import { AbortSignal, HttpClient } from '@dynatrace-sdk/http-client'; | ||
* @example | ||
* const queryClientNodeJs = new QueryClient(yourCustomImplementation); | ||
* const versionClientNodeJs = new VersionClient(yourCustomImplementation); | ||
*/ | ||
@@ -11,0 +11,0 @@ constructor(httpClientImplementation: HttpClient); |
@@ -18,3 +18,3 @@ import { AbortSignal, HttpClient } from '@dynatrace-sdk/http-client'; | ||
* @example | ||
* const queryClientNodeJs = new QueryClient(yourCustomImplementation); | ||
* const workflowsClientNodeJs = new WorkflowsClient(yourCustomImplementation); | ||
*/ | ||
@@ -21,0 +21,0 @@ constructor(httpClientImplementation: HttpClient); |
@@ -32,4 +32,5 @@ import { ExecutionInput } from './execution-input'; | ||
user?: string | null; | ||
actor: string; | ||
title: string; | ||
triggerType: string; | ||
} |
@@ -26,2 +26,3 @@ import { Execution } from './execution'; | ||
user?: string | null; | ||
actor: string; | ||
title: string; | ||
@@ -28,0 +29,0 @@ triggerType: string; |
@@ -7,3 +7,6 @@ import * as types from '../types'; | ||
readonly response: HttpClientResponse; | ||
constructor(response: Response); | ||
readonly requestMethod?: string; | ||
constructor(response: Response, data?: { | ||
requestMethod?: string; | ||
}); | ||
} |
@@ -11,2 +11,4 @@ import { ErrorType } from './error-type'; | ||
errorRef?: string; | ||
cause?: any; | ||
details?: any; | ||
} |
@@ -11,4 +11,7 @@ import { ErrorType } from './error-type'; | ||
status: number; | ||
/** @deprecated */ | ||
body?: unknown; | ||
errorRef?: string; | ||
cause?: any; | ||
details?: any; | ||
} |
@@ -8,2 +8,4 @@ import { CommonSerializedError } from './common-serialized-error'; | ||
*/ | ||
export declare type SerializedError = HttpSerializedError | CommonSerializedError; | ||
export declare type SerializedError = (HttpSerializedError | CommonSerializedError) & { | ||
traceId?: string; | ||
}; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
1188314
24551