@maxim_mazurok/gapi.client.firebaseml-v2beta 0.1.20251207 → 0.1.20251217

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.d.ts +34 -26
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://firebaseml.googleapis.com/$discovery/rest?version=v2beta
12
- // Revision: 20251207
12
+ // Revision: 20251217
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -714,55 +714,55 @@ declare namespace gapi.client {
714
714
  threshold?: string;
715
715
  }
716
716
  interface GoogleCloudAiplatformV1beta1Schema {
717
- /** Optional. Can either be a boolean or an object; controls the presence of additional properties. */
717
+ /** Optional. If `type` is `OBJECT`, specifies how to handle properties not defined in `properties`. If it is a boolean `false`, no additional properties are allowed. If it is a schema, additional properties are allowed if they conform to the schema. */
718
718
  additionalProperties?: any;
719
- /** Optional. The value should be validated against any (one or more) of the subschemas in the list. */
719
+ /** Optional. The instance must be valid against any (one or more) of the subschemas listed in `any_of`. */
720
720
  anyOf?: GoogleCloudAiplatformV1beta1Schema[];
721
- /** Optional. Default value of the data. */
721
+ /** Optional. Default value to use if the field is not specified. */
722
722
  default?: any;
723
- /** Optional. A map of definitions for use by `ref` Only allowed at the root of the schema. */
723
+ /** Optional. `defs` provides a map of schema definitions that can be reused by `ref` elsewhere in the schema. Only allowed at root level of the schema. */
724
724
  defs?: {[P in string]: GoogleCloudAiplatformV1beta1Schema};
725
- /** Optional. The description of the data. */
725
+ /** Optional. Description of the schema. */
726
726
  description?: string;
727
- /** Optional. Possible values of the element of primitive type with enum format. Examples: 1. We can define direction as : {type:STRING, format:enum, enum:["EAST", NORTH", "SOUTH", "WEST"]} 2. We can define apartment number as : {type:INTEGER, format:enum, enum:["101", "201", "301"]} */
727
+ /** Optional. Possible values of the field. This field can be used to restrict a value to a fixed set of values. To mark a field as an enum, set `format` to `enum` and provide the list of possible values in `enum`. For example: 1. To define directions: `{type:STRING, format:enum, enum:["EAST", "NORTH", "SOUTH", "WEST"]}` 2. To define apartment numbers: `{type:INTEGER, format:enum, enum:["101", "201", "301"]}` */
728
728
  enum?: string[];
729
- /** Optional. Example of the object. Will only populated when the object is the root. */
729
+ /** Optional. Example of an instance of this schema. */
730
730
  example?: any;
731
- /** Optional. The format of the data. Supported formats: for NUMBER type: "float", "double" for INTEGER type: "int32", "int64" for STRING type: "email", "byte", etc */
731
+ /** Optional. The format of the data. For `NUMBER` type, format can be `float` or `double`. For `INTEGER` type, format can be `int32` or `int64`. For `STRING` type, format can be `email`, `byte`, `date`, `date-time`, `password`, and other formats to further refine the data type. */
732
732
  format?: string;
733
- /** Optional. SCHEMA FIELDS FOR TYPE ARRAY Schema of the elements of Type.ARRAY. */
733
+ /** Optional. If type is `ARRAY`, `items` specifies the schema of elements in the array. */
734
734
  items?: GoogleCloudAiplatformV1beta1Schema;
735
- /** Optional. Maximum value of the Type.INTEGER and Type.NUMBER */
735
+ /** Optional. If type is `INTEGER` or `NUMBER`, `maximum` specifies the maximum allowed value. */
736
736
  maximum?: number;
737
- /** Optional. Maximum number of the elements for Type.ARRAY. */
737
+ /** Optional. If type is `ARRAY`, `max_items` specifies the maximum number of items in an array. */
738
738
  maxItems?: string;
739
- /** Optional. Maximum length of the Type.STRING */
739
+ /** Optional. If type is `STRING`, `max_length` specifies the maximum length of the string. */
740
740
  maxLength?: string;
741
- /** Optional. Maximum number of the properties for Type.OBJECT. */
741
+ /** Optional. If type is `OBJECT`, `max_properties` specifies the maximum number of properties that can be provided. */
742
742
  maxProperties?: string;
743
- /** Optional. SCHEMA FIELDS FOR TYPE INTEGER and NUMBER Minimum value of the Type.INTEGER and Type.NUMBER */
743
+ /** Optional. If type is `INTEGER` or `NUMBER`, `minimum` specifies the minimum allowed value. */
744
744
  minimum?: number;
745
- /** Optional. Minimum number of the elements for Type.ARRAY. */
745
+ /** Optional. If type is `ARRAY`, `min_items` specifies the minimum number of items in an array. */
746
746
  minItems?: string;
747
- /** Optional. SCHEMA FIELDS FOR TYPE STRING Minimum length of the Type.STRING */
747
+ /** Optional. If type is `STRING`, `min_length` specifies the minimum length of the string. */
748
748
  minLength?: string;
749
- /** Optional. Minimum number of the properties for Type.OBJECT. */
749
+ /** Optional. If type is `OBJECT`, `min_properties` specifies the minimum number of properties that can be provided. */
750
750
  minProperties?: string;
751
- /** Optional. Indicates if the value may be null. */
751
+ /** Optional. Indicates if the value of this field can be null. */
752
752
  nullable?: boolean;
753
- /** Optional. Pattern of the Type.STRING to restrict a string to a regular expression. */
753
+ /** Optional. If type is `STRING`, `pattern` specifies a regular expression that the string must match. */
754
754
  pattern?: string;
755
- /** Optional. SCHEMA FIELDS FOR TYPE OBJECT Properties of Type.OBJECT. */
755
+ /** Optional. If type is `OBJECT`, `properties` is a map of property names to schema definitions for each property of the object. */
756
756
  properties?: {[P in string]: GoogleCloudAiplatformV1beta1Schema};
757
- /** Optional. The order of the properties. Not a standard field in open api spec. Only used to support the order of the properties. */
757
+ /** Optional. Order of properties displayed or used where order matters. This is not a standard field in OpenAPI specification, but can be used to control the order of properties. */
758
758
  propertyOrdering?: string[];
759
- /** Optional. Allows indirect references between schema nodes. The value should be a valid reference to a child of the root `defs`. For example, the following schema defines a reference to a schema node named "Pet": type: object properties: pet: ref: #/defs/Pet defs: Pet: type: object properties: name: type: string The value of the "pet" property is a reference to the schema node named "Pet". See details in https://json-schema.org/understanding-json-schema/structuring */
759
+ /** Optional. Allows referencing another schema definition to use in place of this schema. The value must be a valid reference to a schema in `defs`. For example, the following schema defines a reference to a schema node named "Pet": type: object properties: pet: ref: #/defs/Pet defs: Pet: type: object properties: name: type: string The value of the "pet" property is a reference to the schema node named "Pet". See details in https://json-schema.org/understanding-json-schema/structuring */
760
760
  ref?: string;
761
- /** Optional. Required properties of Type.OBJECT. */
761
+ /** Optional. If type is `OBJECT`, `required` lists the names of properties that must be present. */
762
762
  required?: string[];
763
- /** Optional. The title of the Schema. */
763
+ /** Optional. Title for the schema. */
764
764
  title?: string;
765
- /** Optional. The type of the data. */
765
+ /** Optional. Data type of the schema field. */
766
766
  type?: string;
767
767
  }
768
768
  interface GoogleCloudAiplatformV1beta1SearchEntryPoint {
@@ -810,6 +810,8 @@ declare namespace gapi.client {
810
810
  googleSearch?: GoogleCloudAiplatformV1beta1ToolGoogleSearch;
811
811
  /** Optional. Specialized retrieval tool that is powered by Google Search. */
812
812
  googleSearchRetrieval?: GoogleCloudAiplatformV1beta1GoogleSearchRetrieval;
813
+ /** Optional. If specified, Vertex AI will use Parallel.ai to search for information to answer user queries. The search results will be grounded on Parallel.ai and presented to the model for response generation */
814
+ parallelAiSearch?: GoogleCloudAiplatformV1beta1ToolParallelAiSearch;
813
815
  /** Optional. Retrieval tool type. System will always execute the provided retrieval tool(s) to get external knowledge to answer the prompt. Retrieval results are presented to the model for generation. */
814
816
  retrieval?: GoogleCloudAiplatformV1beta1Retrieval;
815
817
  /** Optional. Tool to support URL context retrieval. */
@@ -834,6 +836,12 @@ declare namespace gapi.client {
834
836
  /** Optional. List of domains to be excluded from the search results. The default limit is 2000 domains. Example: ["amazon.com", "facebook.com"]. */
835
837
  excludeDomains?: string[];
836
838
  }
839
+ interface GoogleCloudAiplatformV1beta1ToolParallelAiSearch {
840
+ /** Optional. The API key for ParallelAiSearch. If an API key is not provided, the system will attempt to verify access by checking for an active Parallel.ai subscription through the Google Cloud Marketplace. See https://docs.parallel.ai/search/search-quickstart for more details. */
841
+ apiKey?: string;
842
+ /** Optional. Custom configs for ParallelAiSearch. This field can be used to pass any parameter from the Parallel.ai Search API. See the Parallel.ai documentation for the full list of available parameters and their usage: https://docs.parallel.ai/api-reference/search-beta/search Currently only `source_policy`, `excerpts`, `max_results`, `mode`, `fetch_policy` can be set via this field. For example: { "source_policy": { "include_domains": ["google.com", "wikipedia.org"], "exclude_domains": ["example.com"] }, "fetch_policy": { "max_age_seconds": 3600 } } */
843
+ customConfigs?: {[P in string]: any};
844
+ }
837
845
  interface GoogleCloudAiplatformV1beta1UrlContext {}
838
846
  interface GoogleCloudAiplatformV1beta1UrlContextMetadata {
839
847
  /** Output only. A list of URL metadata, with one entry for each URL retrieved by the tool. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.firebaseml-v2beta",
3
- "version": "0.1.20251207",
3
+ "version": "0.1.20251217",
4
4
  "description": "TypeScript typings for Firebase ML API v2beta",
5
5
  "repository": {
6
6
  "type": "git",