@@ -18,15 +18,6 @@ export class ArraySchema extends Schema {
18
18
toJSON(): SchemaRequest ;
19
19
}
20
20
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
-
30
21
// @public
31
22
export interface BaseParams {
32
23
// (undocumented)
@@ -48,11 +39,6 @@ export class BooleanSchema extends Schema {
48
39
constructor (schemaParams ? : SchemaParams );
49
40
}
50
41
51
- // @public
52
- export class BooleanSchema extends Schema {
53
- constructor (schemaParams ? : SchemaParams );
54
- }
55
-
56
42
// @public
57
43
export class ChatSession {
58
44
// 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 {
461
447
constructor (schemaParams ? : SchemaParams );
462
448
}
463
449
464
- // @public
465
- export class IntegerSchema extends Schema {
466
- constructor (schemaParams ? : SchemaParams );
467
- }
468
-
469
450
// @public
470
451
export interface ModelParams extends BaseParams {
471
452
// (undocumented)
@@ -506,34 +487,6 @@ export interface ObjectSchemaInterface extends SchemaInterface {
506
487
type: SchemaType .OBJECT ;
507
488
}
508
489
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
-
537
490
// @public
538
491
export type Part = TextPart | InlineDataPart | FunctionCallPart | FunctionResponsePart | FileDataPart ;
539
492
@@ -659,21 +612,6 @@ export interface SchemaShared<T> {
659
612
};
660
613
}
661
614
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
-
677
615
// @public
678
616
export enum SchemaType {
679
617
ARRAY = " array" ,
@@ -715,15 +653,6 @@ export class StringSchema extends Schema {
715
653
toJSON(): SchemaRequest ;
716
654
}
717
655
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
-
727
656
// @public
728
657
export interface TextPart {
729
658
// (undocumented)
@@ -748,9 +677,6 @@ export interface ToolConfig {
748
677
// @public
749
678
export type TypedSchema = IntegerSchema | NumberSchema | StringSchema | BooleanSchema | ObjectSchema | ArraySchema ;
750
679
751
- // @public
752
- export type TypedSchema = IntegerSchema | NumberSchema | StringSchema | BooleanSchema | ObjectSchema | ArraySchema ;
753
-
754
680
// @public
755
681
export interface UsageMetadata {
756
682
// (undocumented)
0 commit comments