File tree 3 files changed +7
-6
lines changed
3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ export interface ErrorDetails
23
23
| Property | Type | Description |
24
24
| --- | --- | --- |
25
25
| ["@type "](./vertexai -preview .errordetails .md #errordetails "@type ") | string | |
26
- | [domain ](./vertexai -preview .errordetails .md #errordetailsdomain ) | string | The domain where the error occured . |
27
- | [metadata ](./vertexai -preview .errordetails .md #errordetailsmetadata ) | Record < ;string , unknown > ; | Additonal metadata about the error . |
26
+ | [domain ](./vertexai -preview .errordetails .md #errordetailsdomain ) | string | The domain where the error occurred . |
27
+ | [metadata ](./vertexai -preview .errordetails .md #errordetailsmetadata ) | Record < ;string , unknown > ; | Additional metadata about the error . |
28
28
| [reason ](./vertexai -preview .errordetails .md #errordetailsreason ) | string | The reason for the error . |
29
29
30
30
## ErrorDetails ."@type "
@@ -37,7 +37,7 @@ export interface ErrorDetails
37
37
38
38
## ErrorDetails .domain
39
39
40
- The domain where the error occured .
40
+ The domain where the error occurred .
41
41
42
42
<b >Signature :</b >
43
43
@@ -47,7 +47,7 @@ domain?: string;
47
47
48
48
## ErrorDetails .metadata
49
49
50
- Additonal metadata about the error .
50
+ Additional metadata about the error .
51
51
52
52
<b >Signature :</b >
53
53
Original file line number Diff line number Diff line change 37
37
"testsetup" : " yarn update-responses && yarn ts-node ./test-utils/convert-mocks.ts" ,
38
38
"test" : " run-p --npm-path npm lint test:browser" ,
39
39
"test:ci" : " yarn testsetup && node ../../scripts/run_tests_in_ci.js -s test" ,
40
+ "test:skip-clone" : " karma start --single-run" ,
40
41
"test:browser" : " yarn testsetup && karma start --single-run" ,
41
42
"api-report" : " api-extractor run --local --verbose" ,
42
43
"typings:public" : " node ../../scripts/build/use_typings.js ./dist/vertexai-preview-public.d.ts" ,
Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ export interface ErrorDetails {
28
28
/** The reason for the error. */
29
29
reason ?: string ;
30
30
31
- /** The domain where the error occured . */
31
+ /** The domain where the error occurred . */
32
32
domain ?: string ;
33
33
34
- /** Additonal metadata about the error. */
34
+ /** Additional metadata about the error. */
35
35
metadata ?: Record < string , unknown > ;
36
36
37
37
/** Any other relevant information about the error. */
You can’t perform that action at this time.
0 commit comments