Skip to content

Commit 1f59dce

Browse files
committed
More fixes to doc comments
1 parent 34baa7b commit 1f59dce

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

common/api-review/vertexai.api.md

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@ export class ArraySchema extends Schema {
1414
constructor(schemaParams: SchemaParams, items: TypedSchema);
1515
// (undocumented)
1616
items: TypedSchema;
17-
// Warning: (ae-incompatible-release-tags) The symbol "toRequest" is marked as @public, but its signature references "_SchemaRequest" which is marked as @internal
18-
//
19-
// (undocumented)
20-
toRequest(): _SchemaRequest;
17+
// @internal (undocumented)
18+
_toRequest(): _SchemaRequest;
2119
}
2220

2321
// @public
@@ -496,10 +494,8 @@ export class ObjectSchema extends Schema {
496494
properties: {
497495
[k: string]: TypedSchema;
498496
};
499-
// Warning: (ae-incompatible-release-tags) The symbol "toRequest" is marked as @public, but its signature references "_SchemaRequest" which is marked as @internal
500-
//
501-
// (undocumented)
502-
toRequest(): _SchemaRequest;
497+
// @internal (undocumented)
498+
_toRequest(): _SchemaRequest;
503499
}
504500

505501
// @public
@@ -700,10 +696,8 @@ export class StringSchema extends Schema {
700696
constructor(schemaParams?: SchemaParams, enumValues?: string[]);
701697
// (undocumented)
702698
enum?: string[];
703-
// Warning: (ae-incompatible-release-tags) The symbol "toRequest" is marked as @public, but its signature references "_SchemaRequest" which is marked as @internal
704-
//
705-
// (undocumented)
706-
toRequest(): _SchemaRequest;
699+
// @internal (undocumented)
700+
_toRequest(): _SchemaRequest;
707701
}
708702

709703
// @public

0 commit comments

Comments
 (0)