Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Remove javascript browser variable type #2043

Merged
merged 1 commit into from
Feb 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Regenerate client from commit 1ff7c087 of spec repo
  • Loading branch information
ci.datadog-api-spec committed Feb 7, 2025
commit e59201ae3ed8104c4d8d07380cbe8ef102b65f19
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
@@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-02-06 17:59:38.553956",
"spec_repo_commit": "b89b292b"
"regenerated": "2025-02-07 15:58:47.022889",
"spec_repo_commit": "1ff7c087"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-02-06 17:59:38.570636",
"spec_repo_commit": "b89b292b"
"regenerated": "2025-02-07 15:58:47.038214",
"spec_repo_commit": "1ff7c087"
}
}
}
2 changes: 0 additions & 2 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
@@ -14988,15 +14988,13 @@ components:
- element
- email
- global
- javascript
- text
example: text
type: string
x-enum-varnames:
- ELEMENT
- EMAIL
- GLOBAL
- JAVASCRIPT
- TEXT
SyntheticsCIBatchMetadata:
description: Metadata for the Synthetic tests run.
2 changes: 1 addition & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
@@ -193,7 +193,7 @@ components:
schema:
type: string
ConfluentAccountID:
description: Confluent Account id.
description: Confluent Account ID.
in: path
name: account_id
required: true
8 changes: 1 addition & 7 deletions packages/datadog-api-client-v1/models/ObjectSerializer.ts
Original file line number Diff line number Diff line change
@@ -1344,13 +1344,7 @@ const enumsMap: { [key: string]: any[] } = {
"UPLOAD_FILES_NAME",
],
SyntheticsBrowserTestType: ["browser"],
SyntheticsBrowserVariableType: [
"element",
"email",
"global",
"javascript",
"text",
],
SyntheticsBrowserVariableType: ["element", "email", "global", "text"],
SyntheticsCheckType: [
"equals",
"notEquals",
Original file line number Diff line number Diff line change
@@ -14,11 +14,9 @@ export type SyntheticsBrowserVariableType =
| typeof ELEMENT
| typeof EMAIL
| typeof GLOBAL
| typeof JAVASCRIPT
| typeof TEXT
| UnparsedObject;
export const ELEMENT = "element";
export const EMAIL = "email";
export const GLOBAL = "global";
export const JAVASCRIPT = "javascript";
export const TEXT = "text";
16 changes: 8 additions & 8 deletions packages/datadog-api-client-v2/apis/ConfluentCloudApi.ts
Original file line number Diff line number Diff line change
@@ -1064,7 +1064,7 @@ export interface ConfluentCloudApiCreateConfluentAccountRequest {

export interface ConfluentCloudApiCreateConfluentResourceRequest {
/**
* Confluent Account id.
* Confluent Account ID.
* @type string
*/
accountId: string;
@@ -1077,15 +1077,15 @@ export interface ConfluentCloudApiCreateConfluentResourceRequest {

export interface ConfluentCloudApiDeleteConfluentAccountRequest {
/**
* Confluent Account id.
* Confluent Account ID.
* @type string
*/
accountId: string;
}

export interface ConfluentCloudApiDeleteConfluentResourceRequest {
/**
* Confluent Account id.
* Confluent Account ID.
* @type string
*/
accountId: string;
@@ -1098,15 +1098,15 @@ export interface ConfluentCloudApiDeleteConfluentResourceRequest {

export interface ConfluentCloudApiGetConfluentAccountRequest {
/**
* Confluent Account id.
* Confluent Account ID.
* @type string
*/
accountId: string;
}

export interface ConfluentCloudApiGetConfluentResourceRequest {
/**
* Confluent Account id.
* Confluent Account ID.
* @type string
*/
accountId: string;
@@ -1119,15 +1119,15 @@ export interface ConfluentCloudApiGetConfluentResourceRequest {

export interface ConfluentCloudApiListConfluentResourceRequest {
/**
* Confluent Account id.
* Confluent Account ID.
* @type string
*/
accountId: string;
}

export interface ConfluentCloudApiUpdateConfluentAccountRequest {
/**
* Confluent Account id.
* Confluent Account ID.
* @type string
*/
accountId: string;
@@ -1140,7 +1140,7 @@ export interface ConfluentCloudApiUpdateConfluentAccountRequest {

export interface ConfluentCloudApiUpdateConfluentResourceRequest {
/**
* Confluent Account id.
* Confluent Account ID.
* @type string
*/
accountId: string;