@wix/auto_sdk_ai-gateway_prompts 1.0.22 → 1.0.24

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.
@@ -5444,11 +5444,6 @@ interface McpServer {
5444
5444
  * @maxLength 10000
5445
5445
  */
5446
5446
  url?: string | null;
5447
- /**
5448
- * Authorization token
5449
- * @maxLength 10000
5450
- */
5451
- authorizationToken?: string | null;
5452
5447
  /** Tool configuration */
5453
5448
  toolConfiguration?: ToolConfiguration;
5454
5449
  }
@@ -5667,11 +5662,6 @@ interface GoogleproxyV1McpServer {
5667
5662
  * @maxLength 10000
5668
5663
  */
5669
5664
  url?: string | null;
5670
- /**
5671
- * Authorization token
5672
- * @maxLength 10000
5673
- */
5674
- authorizationToken?: string | null;
5675
5665
  /** Tool configuration */
5676
5666
  toolConfiguration?: V1McpServerToolConfiguration;
5677
5667
  }
@@ -6066,11 +6056,6 @@ interface V1McpServer {
6066
6056
  * @maxLength 10000
6067
6057
  */
6068
6058
  url?: string | null;
6069
- /**
6070
- * Authorization token
6071
- * @maxLength 10000
6072
- */
6073
- authorizationToken?: string | null;
6074
6059
  /** Tool configuration */
6075
6060
  toolConfiguration?: McpServerToolConfiguration;
6076
6061
  }
@@ -8024,7 +8009,7 @@ interface V1ResponsesFunctionToolCallOutput {
8024
8009
  status?: string | null;
8025
8010
  /**
8026
8011
  * The output/result of the function call.
8027
- * @maxLength 100000
8012
+ * @maxLength 1000000000
8028
8013
  */
8029
8014
  output?: string | null;
8030
8015
  /**
@@ -8036,6 +8021,12 @@ interface V1ResponsesFunctionToolCallOutput {
8036
8021
  interface V1ResponsesTextFormat extends V1ResponsesTextFormatFormatOneOf {
8037
8022
  /** Structured Outputs configuration options, including a JSON Schema. */
8038
8023
  jsonSchema?: ResponsesTextFormatJsonSchema;
8024
+ /**
8025
+ * Constrains the verbosity of the model's response. Lower values will result in more concise responses,
8026
+ * while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
8027
+ * @maxLength 100
8028
+ */
8029
+ verbosity?: string | null;
8039
8030
  }
8040
8031
  /** @oneof */
8041
8032
  interface V1ResponsesTextFormatFormatOneOf {
@@ -8411,7 +8402,7 @@ interface ResponsesFunctionToolCallOutput {
8411
8402
  status?: string | null;
8412
8403
  /**
8413
8404
  * The output/result of the function call.
8414
- * @maxLength 100000
8405
+ * @maxLength 1000000000
8415
8406
  */
8416
8407
  output?: string | null;
8417
8408
  /**
@@ -8423,6 +8414,12 @@ interface ResponsesFunctionToolCallOutput {
8423
8414
  interface ResponsesTextFormat extends ResponsesTextFormatFormatOneOf {
8424
8415
  /** Structured Outputs configuration options, including a JSON Schema. */
8425
8416
  jsonSchema?: JsonSchema;
8417
+ /**
8418
+ * Constrains the verbosity of the model's response. Lower values will result in more concise responses,
8419
+ * while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
8420
+ * @maxLength 100
8421
+ */
8422
+ verbosity?: string | null;
8426
8423
  }
8427
8424
  /** @oneof */
8428
8425
  interface ResponsesTextFormatFormatOneOf {