@@ -14,8 +14,8 @@ export class ArraySchema extends Schema {
14
14
constructor (schemaParams : SchemaParams , items : TypedSchema );
15
15
// (undocumented)
16
16
items: TypedSchema ;
17
- // @internal (undocumented)
18
- toJSON(): _SchemaRequest ;
17
+ // (undocumented)
18
+ toJSON(): SchemaRequest ;
19
19
}
20
20
21
21
// @public
@@ -494,8 +494,8 @@ export class ObjectSchema extends Schema {
494
494
properties: {
495
495
[k : string ]: TypedSchema ;
496
496
};
497
- // @internal (undocumented)
498
- toJSON(): _SchemaRequest ;
497
+ // (undocumented)
498
+ toJSON(): SchemaRequest ;
499
499
}
500
500
501
501
// @public
@@ -644,7 +644,7 @@ export interface SchemaRequest extends SchemaShared<SchemaRequest> {
644
644
type: SchemaType ;
645
645
}
646
646
647
- // @public (undocumented)
647
+ // @public
648
648
export interface SchemaShared <T > {
649
649
// (undocumented)
650
650
[key : string ]: unknown ;
@@ -711,8 +711,8 @@ export class StringSchema extends Schema {
711
711
constructor (schemaParams ? : SchemaParams , enumValues ? : string []);
712
712
// (undocumented)
713
713
enum? : string [];
714
- // @internal (undocumented)
715
- toJSON(): _SchemaRequest ;
714
+ // (undocumented)
715
+ toJSON(): SchemaRequest ;
716
716
}
717
717
718
718
// @public
@@ -772,6 +772,8 @@ export interface VertexAI {
772
772
export class VertexAIError extends FirebaseError {
773
773
constructor (code : VertexAIErrorCode , message : string , customErrorData ? : CustomErrorData | undefined );
774
774
// (undocumented)
775
+ readonly code: VertexAIErrorCode ;
776
+ // (undocumented)
775
777
readonly customErrorData? : CustomErrorData | undefined ;
776
778
}
777
779
0 commit comments