@datadog/datadog-api-client 2.0.0-beta.1 → 2.0.0-beta.2

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 2.0.0-beta.2/2025-12-17
4
+
5
+ ### Security
6
+ * Bump form-data to 4.0.4 [#2853](https://github.com/DataDog/datadog-api-client-typescript/pull/2853)
7
+
3
8
  ## 2.0.0-beta.1/2025-06-05
package/README.md ADDED
@@ -0,0 +1,447 @@
1
+ # @datadog/datadog-api-client
2
+ ## Description
3
+
4
+ This package contains the common code for the @datadog/datadog-api-client-{ serviceName } clients. See [Clients](#clients) section
5
+ for all available clients.
6
+
7
+ ## Navigation
8
+
9
+ - [Usage](#usage)
10
+ - [Authentication](#authentication)
11
+ - [Unstable Endpoints](#unstable-endpoints)
12
+ - [Changing Server](#changing-server)
13
+ - [Disable compressed payloads](#disable-compressed-payloads)
14
+ - [Enable requests logging](#enable-requests-logging)
15
+ - [Enable retry](#enable-retry)
16
+ - [Adding timeout to requests](#adding-timeout-to-requests)
17
+ - [Pagination](#pagination)
18
+ - [Zstd compression](#zstd-compression)
19
+ - [Configure proxy](#configure-proxy)
20
+ - [Clients](#clients)
21
+
22
+ ## Usage
23
+
24
+ ```typescript
25
+ import { createConfiguration } from "@datadog/datadog-api-client";
26
+
27
+ const configuration = createConfiguration();
28
+ ```
29
+
30
+ ### Authentication
31
+
32
+ By default the library will use the `DD_API_KEY` and `DD_APP_KEY` environment variables to authenticate against the Datadog API.
33
+ To provide your own set of credentials, you need to set the appropriate keys on the configuration:
34
+
35
+ ```typescript
36
+ import { createConfiguration } from '@datadog/datadog-api-client';
37
+ import { v1 } from '@datadog/datadog-api-client-monitors';
38
+
39
+ const configurationOpts = {
40
+ authMethods: {
41
+ apiKeyAuth: "<API KEY>",
42
+ appKeyAuth: "<APPLICATION KEY>"
43
+ },
44
+ };
45
+
46
+ const configuration = createConfiguration(configurationOpts);
47
+ const apiInstance = new v1.MonitorsApiV1(configuration);
48
+ ```
49
+
50
+ ### Unstable Endpoints
51
+
52
+ Clients can include access to Datadog API endpoints while they are in an unstable state and may undergo breaking changes. An extra configuration step is required to enable these endpoints:
53
+
54
+ ```typescript
55
+ const configurationOpts = {
56
+ unstableOperations: {
57
+ "<api_name>.<version>.<operationName>": true
58
+ }
59
+ }
60
+
61
+ const configuration = createConfiguration(configurationOpts);
62
+ ```
63
+ - `<api_name>` is the name of the API client.
64
+ - `<version>` is the version of the API client.
65
+ - `<operationName>` is the name of the operation to enable.
66
+
67
+ #### Example:
68
+
69
+ ```typescript
70
+ const configurationOpts = {
71
+ unstableOperations: {
72
+ "AWSIntegrationApi.v2.updateAWSAccount": true
73
+ }
74
+ }
75
+
76
+ const configuration = createConfiguration(configurationOpts);
77
+ ```
78
+
79
+ ### Changing Server
80
+
81
+ When talking to a different server, like the `eu` instance, change the server variables:
82
+
83
+ ```typescript
84
+ import { createConfiguration } from '@datadog/datadog-api-client';
85
+
86
+ const configurationOpts = {
87
+ serverVariables: {
88
+ "site": "datadoghq.eu"
89
+ }
90
+ };
91
+
92
+ const configuration = createConfiguration(configurationOpts);
93
+ ```
94
+
95
+ #### Changing Server on operations
96
+
97
+ Some operations may require a different server than the one specified in the configuration.
98
+ See individual services READMEs and `operationServers` property in the API client for more details.
99
+
100
+ ```typescript
101
+ const configurationOpts = {
102
+ operationServerIndices: {
103
+ "LogsApi.v2.submitLog": 0
104
+ },
105
+ operationServerVariables: {
106
+ "LogsApi.v2.submitLog": {
107
+ "site": "datadoghq.eu"
108
+ }
109
+ }
110
+ };
111
+
112
+ const configuration = createConfiguration(configurationOpts);
113
+ ```
114
+ ### Disable compressed payloads
115
+
116
+ If you want to disable GZIP compressed responses, set the `compress` flag
117
+ on your configuration options:
118
+
119
+ ```typescript
120
+ import { createConfiguration } from '@datadog/datadog-api-client';
121
+ const configurationOpts = {
122
+ httpConfig: {
123
+ compress: false
124
+ },
125
+ };
126
+
127
+ const configuration = createConfiguration(configurationOpts);
128
+ ```
129
+
130
+ ### Enable requests logging
131
+
132
+ If you want to enable requests logging, set the `debug` flag on your configuration object:
133
+
134
+ ```typescript
135
+ import { createConfiguration } from '@datadog/datadog-api-client';
136
+ const configurationOpts = {
137
+ debug: true
138
+ };
139
+
140
+ const configuration = createConfiguration(configurationOpts);
141
+ ```
142
+
143
+ ### Enable retry
144
+
145
+ To enable the client to retry when rate limited (status 429) or status 500 and above:
146
+
147
+ ```typescript
148
+ import { createConfiguration } from '@datadog/datadog-api-client';
149
+ const configurationOpts = {
150
+ enableRetry: true
151
+ };
152
+
153
+ const configuration = createConfiguration(configurationOpts);
154
+ ```
155
+ The interval between 2 retry attempts will be the value of the x-ratelimit-reset response header when available. If not, it will be :
156
+
157
+ ```typescript
158
+ (backoffMultiplier ** current_retry_count) * backoffBase
159
+ ```
160
+ The maximum number of retry attempts is 3 by default and can be modified with
161
+
162
+ ```typescript
163
+ maxRetries
164
+ ```
165
+
166
+ ### Adding timeout to requests
167
+
168
+ To add timeout or other mechanism to cancel requests, you need an abort
169
+ controller, for example the one implemented by
170
+ [abort-controller](https://www.npmjs.com/package/abort-controller). You can
171
+ then pass the `signal method to the HTTP configuration options:
172
+
173
+ ```typescript
174
+ import { createConfiguration } from '@datadog/datadog-api-client';
175
+ import { v1 } from '@datadog/datadog-api-client-monitors'
176
+
177
+ import AbortController from 'abort-controller';
178
+
179
+ const controller = new AbortController();
180
+ const timeout = setTimeout(
181
+ () => { controller.abort(); },
182
+ 1000,
183
+ );
184
+ const configurationOpts = {
185
+ httpConfig: {
186
+ signal: controller.signal
187
+ },
188
+ };
189
+
190
+ const configuration = createConfiguration(configurationOpts);
191
+
192
+ const apiInstance = new v1.MonitorsApi(configuration);
193
+ apiInstance.listMonitors().then((data: v1.Monitor[]) => {
194
+ console.log('API called successfully. Returned data: ' + data);
195
+ }).catch((error:any) => console.error(error)).finally(() => clearTimeout(timeout));
196
+ ```
197
+
198
+ ### Pagination
199
+
200
+ Several listing operations have a pagination method to help consume all the items available.
201
+ For example, to retrieve all your incidents:
202
+
203
+ ```typescript
204
+ import { createConfiguration } from "@datadog/datadog-api-client";
205
+ import { v2 } from "@datadog/datadog-api-client-incidents";
206
+
207
+ async function main() {
208
+ const configuration = createConfiguration();
209
+ const configurationOpts = {
210
+ unstableOperations: {
211
+ "IncidentsApi.v2.listIncidents": true
212
+ }
213
+ }
214
+ const configuration = createConfiguration(configurationOpts);
215
+ const apiInstance = new v2.IncidentsApi(configuration);
216
+
217
+ for await (const incident of apiInstance.listIncidentsWithPagination()) {
218
+ console.log("Got incident " + incident.id);
219
+ }
220
+ }
221
+
222
+ main();
223
+ ```
224
+
225
+ ### Zstd compression
226
+
227
+ Zstd compression support requires users to supply their own zstd compressor callback function.
228
+ The callback should accept string arg and return compressed Buffer data.
229
+ Callback signature `(body: string) => Buffer`.
230
+ For example, using `zstd.ts` package:
231
+
232
+ ```typescript
233
+ import { compressSync } from 'zstd.ts'
234
+ import { createConfiguration } from "@datadog/datadog-api-client";
235
+ import { v2 } from "@datadog/datadog-api-client-metrics";
236
+
237
+ async function main() {
238
+ const configurationOpts = {
239
+ zstdCompressorCallback: (body: string) => compressSync({input: Buffer.from(body, "utf8")})
240
+ }
241
+ const configuration = createConfiguration(configurationOpts);
242
+ const apiInstance = new v2.MetricsApi(configuration);
243
+ const params: v2.MetricsApiSubmitMetricsRequest = {
244
+ body: {
245
+ series: [
246
+ {
247
+ metric: "system.load.1",
248
+ type: 0,
249
+ points: [
250
+ {
251
+ timestamp: Math.round(new Date().getTime() / 1000),
252
+ value: 0.7,
253
+ },
254
+ ],
255
+ },
256
+ ],
257
+ },
258
+ contentEncoding: "zstd1",
259
+ };
260
+
261
+ apiInstance.submitMetrics(params).then((data: v2.IntakePayloadAccepted) => {
262
+ console.log(
263
+ "API called successfully. Returned data: " + JSON.stringify(data)
264
+ );
265
+ }).catch((error: any) => console.error(error));
266
+ }
267
+
268
+ main();
269
+ ```
270
+
271
+ ### Configure proxy
272
+
273
+ You can provide custom `HttpLibrary` implementation with proxy support to `configuration` object. See example below:
274
+
275
+ ```typescript
276
+ import pako from "pako";
277
+ import bufferFrom from "buffer-from";
278
+ import fetch from "node-fetch";
279
+ import { HttpsProxyAgent } from "https-proxy-agent";
280
+
281
+ import { createConfiguration, ResponseContext, RequestContext, HttpLibrary } from "@datadog/datadog-api-client";
282
+ import { v1 } from "@datadog/datadog-api-client";
283
+
284
+ const proxyAgent = new HttpsProxyAgent('http://127.0.0.11:3128');
285
+
286
+ class HttpLibraryWithProxy implements HttpLibrary {
287
+ public debug = false;
288
+
289
+ public send(request: RequestContext): Promise<ResponseContext> {
290
+ const method = request.getHttpMethod().toString();
291
+ let body = request.getBody();
292
+
293
+ let compress = request.getHttpConfig().compress;
294
+ if (compress === undefined) {
295
+ compress = true;
296
+ }
297
+
298
+ const headers = request.getHeaders();
299
+ if (typeof body === "string") {
300
+ if (headers["Content-Encoding"] === "gzip") {
301
+ body = bufferFrom(pako.gzip(body).buffer);
302
+ } else if (headers["Content-Encoding"] === "deflate") {
303
+ body = bufferFrom(pako.deflate(body).buffer);
304
+ }
305
+ }
306
+
307
+ const resultPromise = fetch(request.getUrl(), {
308
+ method: method,
309
+ body: body as any,
310
+ headers: headers,
311
+ signal: request.getHttpConfig().signal,
312
+ compress: compress,
313
+ agent: proxyAgent,
314
+ }).then((resp: any) => {
315
+ const headers: { [name: string]: string } = {};
316
+ resp.headers.forEach((value: string, name: string) => {
317
+ headers[name] = value;
318
+ });
319
+
320
+ const body = {
321
+ text: () => resp.text(),
322
+ binary: () => resp.buffer(),
323
+ };
324
+ const response = new ResponseContext(resp.status, headers, body);
325
+ return response;
326
+ });
327
+
328
+ return resultPromise;
329
+ }
330
+ }
331
+
332
+ const configuration = createConfiguration({httpApi: new HttpLibraryWithProxy()});
333
+ const apiInstance = new v1.DashboardsApi(configuration);
334
+
335
+ apiInstance
336
+ .listDashboards()
337
+ .then((data: v1.DashboardSummary) => {
338
+ console.log(
339
+ "API called successfully. Returned data: " + JSON.stringify(data)
340
+ );
341
+ })
342
+ .catch((error: any) => console.error(error));
343
+ ```
344
+
345
+ ## Clients
346
+
347
+ | Service | Package | README |
348
+ |---------|---------|--------|
349
+ | Action Connection | @datadog/datadog-api-client-action-connection | [README.md](../../services/action-connection/README.md) |
350
+ | Actions Datastores | @datadog/datadog-api-client-actions-datastores | [README.md](../../services/actions-datastores/README.md) |
351
+ | Agentless Scanning | @datadog/datadog-api-client-agentless-scanning | [README.md](../../services/agentless-scanning/README.md) |
352
+ | API Management | @datadog/datadog-api-client-api-management | [README.md](../../services/api-management/README.md) |
353
+ | APM Retention Filters | @datadog/datadog-api-client-apm-retention-filters | [README.md](../../services/apm-retention-filters/README.md) |
354
+ | App Builder | @datadog/datadog-api-client-app-builder | [README.md](../../services/app-builder/README.md) |
355
+ | Application Security | @datadog/datadog-api-client-application-security | [README.md](../../services/application-security/README.md) |
356
+ | Audit | @datadog/datadog-api-client-audit | [README.md](../../services/audit/README.md) |
357
+ | Authentication | @datadog/datadog-api-client-authentication | [README.md](../../services/authentication/README.md) |
358
+ | AuthN Mappings | @datadog/datadog-api-client-auth-n-mappings | [README.md](../../services/auth-n-mappings/README.md) |
359
+ | AWS Integration | @datadog/datadog-api-client-aws-integration | [README.md](../../services/aws-integration/README.md) |
360
+ | AWS Logs Integration | @datadog/datadog-api-client-aws-logs-integration | [README.md](../../services/aws-logs-integration/README.md) |
361
+ | Azure Integration | @datadog/datadog-api-client-azure-integration | [README.md](../../services/azure-integration/README.md) |
362
+ | Case Management | @datadog/datadog-api-client-case-management | [README.md](../../services/case-management/README.md) |
363
+ | Case Management Attribute | @datadog/datadog-api-client-case-management-attribute | [README.md](../../services/case-management-attribute/README.md) |
364
+ | Case Management Type | @datadog/datadog-api-client-case-management-type | [README.md](../../services/case-management-type/README.md) |
365
+ | CI Visibility Pipelines | @datadog/datadog-api-client-ci-visibility-pipelines | [README.md](../../services/ci-visibility-pipelines/README.md) |
366
+ | CI Visibility Tests | @datadog/datadog-api-client-ci-visibility-tests | [README.md](../../services/ci-visibility-tests/README.md) |
367
+ | Cloud Cost Management | @datadog/datadog-api-client-cloud-cost-management | [README.md](../../services/cloud-cost-management/README.md) |
368
+ | Cloud Network Monitoring | @datadog/datadog-api-client-cloud-network-monitoring | [README.md](../../services/cloud-network-monitoring/README.md) |
369
+ | Cloudflare Integration | @datadog/datadog-api-client-cloudflare-integration | [README.md](../../services/cloudflare-integration/README.md) |
370
+ | Confluent Cloud | @datadog/datadog-api-client-confluent-cloud | [README.md](../../services/confluent-cloud/README.md) |
371
+ | Container Images | @datadog/datadog-api-client-container-images | [README.md](../../services/container-images/README.md) |
372
+ | Containers | @datadog/datadog-api-client-containers | [README.md](../../services/containers/README.md) |
373
+ | CSM Agents | @datadog/datadog-api-client-csm-agents | [README.md](../../services/csm-agents/README.md) |
374
+ | CSM Coverage Analysis | @datadog/datadog-api-client-csm-coverage-analysis | [README.md](../../services/csm-coverage-analysis/README.md) |
375
+ | CSM Threats | @datadog/datadog-api-client-csm-threats | [README.md](../../services/csm-threats/README.md) |
376
+ | Dashboard Lists | @datadog/datadog-api-client-dashboard-lists | [README.md](../../services/dashboard-lists/README.md) |
377
+ | Dashboards | @datadog/datadog-api-client-dashboards | [README.md](../../services/dashboards/README.md) |
378
+ | Data Deletion | @datadog/datadog-api-client-data-deletion | [README.md](../../services/data-deletion/README.md) |
379
+ | Datasets | @datadog/datadog-api-client-datasets | [README.md](../../services/datasets/README.md) |
380
+ | Deployment Gates | @datadog/datadog-api-client-deployment-gates | [README.md](../../services/deployment-gates/README.md) |
381
+ | Domain Allowlist | @datadog/datadog-api-client-domain-allowlist | [README.md](../../services/domain-allowlist/README.md) |
382
+ | DORA Metrics | @datadog/datadog-api-client-dora-metrics | [README.md](../../services/dora-metrics/README.md) |
383
+ | Downtimes | @datadog/datadog-api-client-downtimes | [README.md](../../services/downtimes/README.md) |
384
+ | Error Tracking | @datadog/datadog-api-client-error-tracking | [README.md](../../services/error-tracking/README.md) |
385
+ | Events | @datadog/datadog-api-client-events | [README.md](../../services/events/README.md) |
386
+ | Fastly Integration | @datadog/datadog-api-client-fastly-integration | [README.md](../../services/fastly-integration/README.md) |
387
+ | Fleet Automation | @datadog/datadog-api-client-fleet-automation | [README.md](../../services/fleet-automation/README.md) |
388
+ | GCP Integration | @datadog/datadog-api-client-gcp-integration | [README.md](../../services/gcp-integration/README.md) |
389
+ | Hosts | @datadog/datadog-api-client-hosts | [README.md](../../services/hosts/README.md) |
390
+ | Incident Services | @datadog/datadog-api-client-incident-services | [README.md](../../services/incident-services/README.md) |
391
+ | Incident Teams | @datadog/datadog-api-client-incident-teams | [README.md](../../services/incident-teams/README.md) |
392
+ | Incidents | @datadog/datadog-api-client-incidents | [README.md](../../services/incidents/README.md) |
393
+ | IP Allowlist | @datadog/datadog-api-client-ip-allowlist | [README.md](../../services/ip-allowlist/README.md) |
394
+ | IP Ranges | @datadog/datadog-api-client-ip-ranges | [README.md](../../services/ip-ranges/README.md) |
395
+ | Key Management | @datadog/datadog-api-client-key-management | [README.md](../../services/key-management/README.md) |
396
+ | Logs | @datadog/datadog-api-client-logs | [README.md](../../services/logs/README.md) |
397
+ | Logs Archives | @datadog/datadog-api-client-logs-archives | [README.md](../../services/logs-archives/README.md) |
398
+ | Logs Custom Destinations | @datadog/datadog-api-client-logs-custom-destinations | [README.md](../../services/logs-custom-destinations/README.md) |
399
+ | Logs Indexes | @datadog/datadog-api-client-logs-indexes | [README.md](../../services/logs-indexes/README.md) |
400
+ | Logs Metrics | @datadog/datadog-api-client-logs-metrics | [README.md](../../services/logs-metrics/README.md) |
401
+ | Logs Pipelines | @datadog/datadog-api-client-logs-pipelines | [README.md](../../services/logs-pipelines/README.md) |
402
+ | Logs Restriction Queries | @datadog/datadog-api-client-logs-restriction-queries | [README.md](../../services/logs-restriction-queries/README.md) |
403
+ | Metrics | @datadog/datadog-api-client-metrics | [README.md](../../services/metrics/README.md) |
404
+ | Microsoft Teams Integration | @datadog/datadog-api-client-microsoft-teams-integration | [README.md](../../services/microsoft-teams-integration/README.md) |
405
+ | Monitors | @datadog/datadog-api-client-monitors | [README.md](../../services/monitors/README.md) |
406
+ | Network Device Monitoring | @datadog/datadog-api-client-network-device-monitoring | [README.md](../../services/network-device-monitoring/README.md) |
407
+ | Notebooks | @datadog/datadog-api-client-notebooks | [README.md](../../services/notebooks/README.md) |
408
+ | Observability Pipelines | @datadog/datadog-api-client-observability-pipelines | [README.md](../../services/observability-pipelines/README.md) |
409
+ | Okta Integration | @datadog/datadog-api-client-okta-integration | [README.md](../../services/okta-integration/README.md) |
410
+ | On-Call | @datadog/datadog-api-client-on-call | [README.md](../../services/on-call/README.md) |
411
+ | On-Call Paging | @datadog/datadog-api-client-on-call-paging | [README.md](../../services/on-call-paging/README.md) |
412
+ | Opsgenie Integration | @datadog/datadog-api-client-opsgenie-integration | [README.md](../../services/opsgenie-integration/README.md) |
413
+ | Org Connections | @datadog/datadog-api-client-org-connections | [README.md](../../services/org-connections/README.md) |
414
+ | Organizations | @datadog/datadog-api-client-organizations | [README.md](../../services/organizations/README.md) |
415
+ | PagerDuty Integration | @datadog/datadog-api-client-pager-duty-integration | [README.md](../../services/pager-duty-integration/README.md) |
416
+ | Powerpack | @datadog/datadog-api-client-powerpack | [README.md](../../services/powerpack/README.md) |
417
+ | Processes | @datadog/datadog-api-client-processes | [README.md](../../services/processes/README.md) |
418
+ | Reference Tables | @datadog/datadog-api-client-reference-tables | [README.md](../../services/reference-tables/README.md) |
419
+ | Restriction Policies | @datadog/datadog-api-client-restriction-policies | [README.md](../../services/restriction-policies/README.md) |
420
+ | Roles | @datadog/datadog-api-client-roles | [README.md](../../services/roles/README.md) |
421
+ | RUM | @datadog/datadog-api-client-rum | [README.md](../../services/rum/README.md) |
422
+ | Rum Audience Management | @datadog/datadog-api-client-rum-audience-management | [README.md](../../services/rum-audience-management/README.md) |
423
+ | Rum Metrics | @datadog/datadog-api-client-rum-metrics | [README.md](../../services/rum-metrics/README.md) |
424
+ | Rum Retention Filters | @datadog/datadog-api-client-rum-retention-filters | [README.md](../../services/rum-retention-filters/README.md) |
425
+ | Security Monitoring | @datadog/datadog-api-client-security-monitoring | [README.md](../../services/security-monitoring/README.md) |
426
+ | Sensitive Data Scanner | @datadog/datadog-api-client-sensitive-data-scanner | [README.md](../../services/sensitive-data-scanner/README.md) |
427
+ | Service Accounts | @datadog/datadog-api-client-service-accounts | [README.md](../../services/service-accounts/README.md) |
428
+ | Service Checks | @datadog/datadog-api-client-service-checks | [README.md](../../services/service-checks/README.md) |
429
+ | Service Definition | @datadog/datadog-api-client-service-definition | [README.md](../../services/service-definition/README.md) |
430
+ | Service Level Objective Corrections | @datadog/datadog-api-client-service-level-objective-corrections | [README.md](../../services/service-level-objective-corrections/README.md) |
431
+ | Service Level Objectives | @datadog/datadog-api-client-service-level-objectives | [README.md](../../services/service-level-objectives/README.md) |
432
+ | Service Scorecards | @datadog/datadog-api-client-service-scorecards | [README.md](../../services/service-scorecards/README.md) |
433
+ | Slack Integration | @datadog/datadog-api-client-slack-integration | [README.md](../../services/slack-integration/README.md) |
434
+ | Snapshots | @datadog/datadog-api-client-snapshots | [README.md](../../services/snapshots/README.md) |
435
+ | Software Catalog | @datadog/datadog-api-client-software-catalog | [README.md](../../services/software-catalog/README.md) |
436
+ | Spa | @datadog/datadog-api-client-spa | [README.md](../../services/spa/README.md) |
437
+ | Spans | @datadog/datadog-api-client-spans | [README.md](../../services/spans/README.md) |
438
+ | Spans Metrics | @datadog/datadog-api-client-spans-metrics | [README.md](../../services/spans-metrics/README.md) |
439
+ | Static Analysis | @datadog/datadog-api-client-static-analysis | [README.md](../../services/static-analysis/README.md) |
440
+ | Synthetics | @datadog/datadog-api-client-synthetics | [README.md](../../services/synthetics/README.md) |
441
+ | Tags | @datadog/datadog-api-client-tags | [README.md](../../services/tags/README.md) |
442
+ | Teams | @datadog/datadog-api-client-teams | [README.md](../../services/teams/README.md) |
443
+ | Test Optimization | @datadog/datadog-api-client-test-optimization | [README.md](../../services/test-optimization/README.md) |
444
+ | Usage Metering | @datadog/datadog-api-client-usage-metering | [README.md](../../services/usage-metering/README.md) |
445
+ | Users | @datadog/datadog-api-client-users | [README.md](../../services/users/README.md) |
446
+ | Webhooks Integration | @datadog/datadog-api-client-webhooks-integration | [README.md](../../services/webhooks-integration/README.md) |
447
+ | Workflow Automation | @datadog/datadog-api-client-workflow-automation | [README.md](../../services/workflow-automation/README.md) |
@@ -1 +1 @@
1
- {"version":3,"file":"configuration.js","sourceRoot":"","sources":["../src/configuration.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"configuration.js","sourceRoot":"","sources":["../src/configuration.ts"],"names":[],"mappings":"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"}
package/dist/servers.d.ts CHANGED
@@ -50,7 +50,7 @@ export declare class ServerConfiguration<T extends {
50
50
  }> extends BaseServerConfiguration {
51
51
  }
52
52
  export declare const server1: ServerConfiguration<{
53
- site: "datadoghq.com" | "us3.datadoghq.com" | "us5.datadoghq.com" | "ap1.datadoghq.com" | "datadoghq.eu" | "ddog-gov.com";
53
+ site: "datadoghq.com" | "us3.datadoghq.com" | "us5.datadoghq.com" | "ap1.datadoghq.com" | "ap2.datadoghq.com" | "datadoghq.eu" | "ddog-gov.com";
54
54
  subdomain: string;
55
55
  }>;
56
56
  export declare const server2: ServerConfiguration<{
@@ -62,6 +62,6 @@ export declare const server3: ServerConfiguration<{
62
62
  subdomain: string;
63
63
  }>;
64
64
  export declare const servers: ServerConfiguration<{
65
- site: "datadoghq.com" | "us3.datadoghq.com" | "us5.datadoghq.com" | "ap1.datadoghq.com" | "datadoghq.eu" | "ddog-gov.com";
65
+ site: "datadoghq.com" | "us3.datadoghq.com" | "us5.datadoghq.com" | "ap1.datadoghq.com" | "ap2.datadoghq.com" | "datadoghq.eu" | "ddog-gov.com";
66
66
  subdomain: string;
67
67
  }>[];
@@ -1 +1 @@
1
- {"version":3,"file":"servers.js","sourceRoot":"","sources":["../src/servers.ts"],"names":[],"mappings":";;;AAAA,sCAAyD;AAEzD;;;;GAIG;AACH,MAAa,uBAAuB;IAClC,YACS,GAAW,EACX,qBAAgD;QADhD,QAAG,GAAH,GAAG,CAAQ;QACX,0BAAqB,GAArB,qBAAqB,CAA2B;IACtD,CAAC;IAEJ;;;;OAIG;IACI,YAAY,CAAC,qBAAgD;QAClE,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,qBAAqB,EAAE,qBAAqB,CAAC,CAAC;IACnE,CAAC;IAEM,gBAAgB;QACrB,OAAO,IAAI,CAAC,qBAAqB,CAAC;IACpC,CAAC;IAEM,KAAK;QACV,OAAO,IAAI,uBAAuB,CAAC,IAAI,CAAC,GAAG,oBACtC,IAAI,CAAC,qBAAqB,EAC7B,CAAC;IACL,CAAC;IAEM,MAAM,CAAC,SAAqC;QACjD,IAAI,WAAW,GAAG,IAAI,CAAC,GAAG,CAAC;QAC3B,KAAK,MAAM,GAAG,IAAI,IAAI,CAAC,qBAAqB,EAAE,CAAC;YAC7C,IAAI,KAAK,GAAG,IAAI,CAAC,qBAAqB,CAAC,GAAG,CAAC,CAAC;YAC5C,IAAI,SAAS,IAAI,GAAG,IAAI,SAAS,EAAE,CAAC;gBAClC,KAAK,GAAG,SAAS,CAAC,GAAG,CAAC,CAAC;YACzB,CAAC;YAED,MAAM,EAAE,GAAG,IAAI,MAAM,CAAC,GAAG,GAAG,GAAG,GAAG,GAAG,EAAE,GAAG,CAAC,CAAC;YAC5C,WAAW,GAAG,WAAW,CAAC,OAAO,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;QAC/C,CAAC;QACD,OAAO,WAAW,CAAC;IACrB,CAAC;IAED;;;;;;;OAOG;IACI,kBAAkB,CACvB,QAAgB,EAChB,UAAsB,EACtB,SAAqC;QAErC,OAAO,IAAI,qBAAc,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,QAAQ,EAAE,UAAU,CAAC,CAAC;IAC3E,CAAC;CACF;AAtDD,0DAsDC;AAED;;;;;GAKG;AACH,MAAa,mBAEX,SAAQ,uBAAuB;CAAG;AAFpC,kDAEoC;AACvB,QAAA,OAAO,GAAG,IAAI,mBAAmB,CAS3C,4BAA4B,EAAE;IAC/B,IAAI,EAAE,eAAe;IACrB,SAAS,EAAE,KAAK;CACjB,CAAC,CAAC;AACU,QAAA,OAAO,GAAG,IAAI,mBAAmB,CAG3C,qBAAqB,EAAE;IACxB,IAAI,EAAE,mBAAmB;IACzB,QAAQ,EAAE,OAAO;CAClB,CAAC,CAAC;AACU,QAAA,OAAO,GAAG,IAAI,mBAAmB,CAG3C,4BAA4B,EAAE;IAC/B,IAAI,EAAE,eAAe;IACrB,SAAS,EAAE,KAAK;CACjB,CAAC,CAAC;AAEU,QAAA,OAAO,GAAG,CAAC,eAAO,EAAE,eAAO,EAAE,eAAO,CAAC,CAAC"}
1
+ {"version":3,"file":"servers.js","sourceRoot":"","sources":["../src/servers.ts"],"names":[],"mappings":";;;AAAA,sCAAyD;AAEzD;;;;GAIG;AACH,MAAa,uBAAuB;IAClC,YACS,GAAW,EACX,qBAAgD;QADhD,QAAG,GAAH,GAAG,CAAQ;QACX,0BAAqB,GAArB,qBAAqB,CAA2B;IACtD,CAAC;IAEJ;;;;OAIG;IACI,YAAY,CAAC,qBAAgD;QAClE,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,qBAAqB,EAAE,qBAAqB,CAAC,CAAC;IACnE,CAAC;IAEM,gBAAgB;QACrB,OAAO,IAAI,CAAC,qBAAqB,CAAC;IACpC,CAAC;IAEM,KAAK;QACV,OAAO,IAAI,uBAAuB,CAAC,IAAI,CAAC,GAAG,oBACtC,IAAI,CAAC,qBAAqB,EAC7B,CAAC;IACL,CAAC;IAEM,MAAM,CAAC,SAAqC;QACjD,IAAI,WAAW,GAAG,IAAI,CAAC,GAAG,CAAC;QAC3B,KAAK,MAAM,GAAG,IAAI,IAAI,CAAC,qBAAqB,EAAE,CAAC;YAC7C,IAAI,KAAK,GAAG,IAAI,CAAC,qBAAqB,CAAC,GAAG,CAAC,CAAC;YAC5C,IAAI,SAAS,IAAI,GAAG,IAAI,SAAS,EAAE,CAAC;gBAClC,KAAK,GAAG,SAAS,CAAC,GAAG,CAAC,CAAC;YACzB,CAAC;YAED,MAAM,EAAE,GAAG,IAAI,MAAM,CAAC,GAAG,GAAG,GAAG,GAAG,GAAG,EAAE,GAAG,CAAC,CAAC;YAC5C,WAAW,GAAG,WAAW,CAAC,OAAO,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;QAC/C,CAAC;QACD,OAAO,WAAW,CAAC;IACrB,CAAC;IAED;;;;;;;OAOG;IACI,kBAAkB,CACvB,QAAgB,EAChB,UAAsB,EACtB,SAAqC;QAErC,OAAO,IAAI,qBAAc,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,QAAQ,EAAE,UAAU,CAAC,CAAC;IAC3E,CAAC;CACF;AAtDD,0DAsDC;AAED;;;;;GAKG;AACH,MAAa,mBAEX,SAAQ,uBAAuB;CAAG;AAFpC,kDAEoC;AACvB,QAAA,OAAO,GAAG,IAAI,mBAAmB,CAU3C,4BAA4B,EAAE;IAC/B,IAAI,EAAE,eAAe;IACrB,SAAS,EAAE,KAAK;CACjB,CAAC,CAAC;AACU,QAAA,OAAO,GAAG,IAAI,mBAAmB,CAG3C,qBAAqB,EAAE;IACxB,IAAI,EAAE,mBAAmB;IACzB,QAAQ,EAAE,OAAO;CAClB,CAAC,CAAC;AACU,QAAA,OAAO,GAAG,IAAI,mBAAmB,CAG3C,4BAA4B,EAAE;IAC/B,IAAI,EAAE,eAAe;IACrB,SAAS,EAAE,KAAK;CACjB,CAAC,CAAC;AAEU,QAAA,OAAO,GAAG,CAAC,eAAO,EAAE,eAAO,EAAE,eAAO,CAAC,CAAC"}
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const version = "2.0.0-beta.1";
1
+ export declare const version = "2.0.0-beta.2";
package/dist/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.version = void 0;
4
- exports.version = "2.0.0-beta.1";
4
+ exports.version = "2.0.0-beta.2";
5
5
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -35,7 +35,7 @@
35
35
  "buffer-from": "^1.1.2",
36
36
  "cross-fetch": "^3.1.5",
37
37
  "es6-promise": "^4.2.8",
38
- "form-data": "^4.0.0",
38
+ "form-data": "^4.0.4",
39
39
  "loglevel": "^1.8.1",
40
40
  "pako": "^2.0.4"
41
41
  },
@@ -45,6 +45,6 @@
45
45
  "engines": {
46
46
  "node": ">=18.0.0"
47
47
  },
48
- "version": "2.0.0-beta.1",
48
+ "version": "2.0.0-beta.2",
49
49
  "packageManager": "yarn@4.9.1"
50
50
  }