Skip to content

Commit 892d464

Browse files
committed
Update API reports
1 parent d3700b8 commit 892d464

File tree

1 file changed

+0
-74
lines changed

1 file changed

+0
-74
lines changed

common/api-review/vertexai.api.md

-74
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,6 @@ export class ArraySchema extends Schema {
1818
toJSON(): SchemaRequest;
1919
}
2020

21-
// @public
22-
export class ArraySchema extends Schema {
23-
constructor(schemaParams: SchemaParams, items: TypedSchema);
24-
// (undocumented)
25-
items: TypedSchema;
26-
// @internal (undocumented)
27-
toJSON(): SchemaRequest;
28-
}
29-
3021
// @public
3122
export interface BaseParams {
3223
// (undocumented)
@@ -48,11 +39,6 @@ export class BooleanSchema extends Schema {
4839
constructor(schemaParams?: SchemaParams);
4940
}
5041

51-
// @public
52-
export class BooleanSchema extends Schema {
53-
constructor(schemaParams?: SchemaParams);
54-
}
55-
5642
// @public
5743
export class ChatSession {
5844
// Warning: (ae-forgotten-export) The symbol "ApiSettings" needs to be exported by the entry point index.d.ts
@@ -461,11 +447,6 @@ export class IntegerSchema extends Schema {
461447
constructor(schemaParams?: SchemaParams);
462448
}
463449

464-
// @public
465-
export class IntegerSchema extends Schema {
466-
constructor(schemaParams?: SchemaParams);
467-
}
468-
469450
// @public
470451
export interface ModelParams extends BaseParams {
471452
// (undocumented)
@@ -506,34 +487,6 @@ export interface ObjectSchemaInterface extends SchemaInterface {
506487
type: SchemaType.OBJECT;
507488
}
508489

509-
// @public
510-
export class NumberSchema extends Schema {
511-
constructor(schemaParams?: SchemaParams);
512-
}
513-
514-
// @public
515-
export class ObjectSchema extends Schema {
516-
constructor(schemaParams: SchemaParams, properties: {
517-
[k: string]: TypedSchema;
518-
}, optionalProperties?: string[]);
519-
// (undocumented)
520-
optionalProperties: string[];
521-
// (undocumented)
522-
properties: {
523-
[k: string]: TypedSchema;
524-
};
525-
// @internal (undocumented)
526-
toJSON(): SchemaRequest;
527-
}
528-
529-
// @public
530-
export interface ObjectSchemaInterface extends SchemaInterface {
531-
// (undocumented)
532-
optionalProperties?: string[];
533-
// (undocumented)
534-
type: SchemaType.OBJECT;
535-
}
536-
537490
// @public
538491
export type Part = TextPart | InlineDataPart | FunctionCallPart | FunctionResponsePart | FileDataPart;
539492

@@ -659,21 +612,6 @@ export interface SchemaShared<T> {
659612
};
660613
}
661614

662-
// @public
663-
export interface SchemaShared<T> {
664-
// (undocumented)
665-
[key: string]: unknown;
666-
description?: string;
667-
enum?: string[];
668-
example?: unknown;
669-
format?: string;
670-
items?: T;
671-
nullable?: boolean;
672-
properties?: {
673-
[k: string]: T;
674-
};
675-
}
676-
677615
// @public
678616
export enum SchemaType {
679617
ARRAY = "array",
@@ -715,15 +653,6 @@ export class StringSchema extends Schema {
715653
toJSON(): SchemaRequest;
716654
}
717655

718-
// @public
719-
export class StringSchema extends Schema {
720-
constructor(schemaParams?: SchemaParams, enumValues?: string[]);
721-
// (undocumented)
722-
enum?: string[];
723-
// @internal (undocumented)
724-
toJSON(): SchemaRequest;
725-
}
726-
727656
// @public
728657
export interface TextPart {
729658
// (undocumented)
@@ -748,9 +677,6 @@ export interface ToolConfig {
748677
// @public
749678
export type TypedSchema = IntegerSchema | NumberSchema | StringSchema | BooleanSchema | ObjectSchema | ArraySchema;
750679

751-
// @public
752-
export type TypedSchema = IntegerSchema | NumberSchema | StringSchema | BooleanSchema | ObjectSchema | ArraySchema;
753-
754680
// @public
755681
export interface UsageMetadata {
756682
// (undocumented)

0 commit comments

Comments
 (0)