Skip to content

Commit

Permalink
Merge master into release
Browse files Browse the repository at this point in the history
  • Loading branch information
google-oss-bot authored Jul 3, 2024
2 parents b73a0cc + 766a53e commit 6d2775b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions docs-devsite/vertexai-preview.errordetails.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export interface ErrorDetails
| Property | Type | Description |
| --- | --- | --- |
| ["@type"](./vertexai-preview.errordetails.md#errordetails"@type") | string | |
| [domain](./vertexai-preview.errordetails.md#errordetailsdomain) | string | The domain where the error occured. |
| [metadata](./vertexai-preview.errordetails.md#errordetailsmetadata) | Record<string, unknown> | Additonal metadata about the error. |
| [domain](./vertexai-preview.errordetails.md#errordetailsdomain) | string | The domain where the error occurred. |
| [metadata](./vertexai-preview.errordetails.md#errordetailsmetadata) | Record<string, unknown> | Additional metadata about the error. |
| [reason](./vertexai-preview.errordetails.md#errordetailsreason) | string | The reason for the error. |

## ErrorDetails."@type"
Expand All @@ -37,7 +37,7 @@ export interface ErrorDetails

## ErrorDetails.domain

The domain where the error occured.
The domain where the error occurred.

<b>Signature:</b>

Expand All @@ -47,7 +47,7 @@ domain?: string;

## ErrorDetails.metadata

Additonal metadata about the error.
Additional metadata about the error.

<b>Signature:</b>

Expand Down
1 change: 1 addition & 0 deletions packages/vertexai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"testsetup": "yarn update-responses && yarn ts-node ./test-utils/convert-mocks.ts",
"test": "run-p --npm-path npm lint test:browser",
"test:ci": "yarn testsetup && node ../../scripts/run_tests_in_ci.js -s test",
"test:skip-clone": "karma start --single-run",
"test:browser": "yarn testsetup && karma start --single-run",
"api-report": "api-extractor run --local --verbose",
"typings:public": "node ../../scripts/build/use_typings.js ./dist/vertexai-preview-public.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/vertexai/src/types/error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ export interface ErrorDetails {
/** The reason for the error. */
reason?: string;

/** The domain where the error occured. */
/** The domain where the error occurred. */
domain?: string;

/** Additonal metadata about the error. */
/** Additional metadata about the error. */
metadata?: Record<string, unknown>;

/** Any other relevant information about the error. */
Expand Down

0 comments on commit 6d2775b

Please sign in to comment.