@wix/auto_sdk_ai-gateway_generators 1.0.33 → 1.0.35
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.
- package/build/cjs/index.d.ts +20 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +20 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +20 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +20 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +20 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +20 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +20 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +20 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.d.ts
CHANGED
|
@@ -1822,6 +1822,8 @@ interface McpServer {
|
|
|
1822
1822
|
/**
|
|
1823
1823
|
* Authorization token
|
|
1824
1824
|
* @maxLength 10000
|
|
1825
|
+
* @deprecated Authorization token
|
|
1826
|
+
* @targetRemovalDate 2025-11-21
|
|
1825
1827
|
*/
|
|
1826
1828
|
authorizationToken?: string | null;
|
|
1827
1829
|
/** Tool configuration */
|
|
@@ -2223,6 +2225,8 @@ interface GoogleproxyV1McpServer {
|
|
|
2223
2225
|
/**
|
|
2224
2226
|
* Authorization token
|
|
2225
2227
|
* @maxLength 10000
|
|
2228
|
+
* @deprecated Authorization token
|
|
2229
|
+
* @targetRemovalDate 2025-11-21
|
|
2226
2230
|
*/
|
|
2227
2231
|
authorizationToken?: string | null;
|
|
2228
2232
|
/** Tool configuration */
|
|
@@ -3341,6 +3345,8 @@ interface V1McpServer {
|
|
|
3341
3345
|
/**
|
|
3342
3346
|
* Authorization token
|
|
3343
3347
|
* @maxLength 10000
|
|
3348
|
+
* @deprecated Authorization token
|
|
3349
|
+
* @targetRemovalDate 2025-11-21
|
|
3344
3350
|
*/
|
|
3345
3351
|
authorizationToken?: string | null;
|
|
3346
3352
|
/** Tool configuration */
|
|
@@ -5677,7 +5683,7 @@ interface V1ResponsesFunctionToolCallOutput {
|
|
|
5677
5683
|
status?: string | null;
|
|
5678
5684
|
/**
|
|
5679
5685
|
* The output/result of the function call.
|
|
5680
|
-
* @maxLength
|
|
5686
|
+
* @maxLength 1000000000
|
|
5681
5687
|
*/
|
|
5682
5688
|
output?: string | null;
|
|
5683
5689
|
/**
|
|
@@ -5799,6 +5805,12 @@ interface V1ResponsesReasoning {
|
|
|
5799
5805
|
interface V1ResponsesTextFormat extends V1ResponsesTextFormatFormatOneOf {
|
|
5800
5806
|
/** Structured Outputs configuration options, including a JSON Schema. */
|
|
5801
5807
|
jsonSchema?: ResponsesTextFormatJsonSchema;
|
|
5808
|
+
/**
|
|
5809
|
+
* Constrains the verbosity of the model's response. Lower values will result in more concise responses,
|
|
5810
|
+
* while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
|
|
5811
|
+
* @maxLength 100
|
|
5812
|
+
*/
|
|
5813
|
+
verbosity?: string | null;
|
|
5802
5814
|
}
|
|
5803
5815
|
/** @oneof */
|
|
5804
5816
|
interface V1ResponsesTextFormatFormatOneOf {
|
|
@@ -6341,7 +6353,7 @@ interface ResponsesFunctionToolCallOutput {
|
|
|
6341
6353
|
status?: string | null;
|
|
6342
6354
|
/**
|
|
6343
6355
|
* The output/result of the function call.
|
|
6344
|
-
* @maxLength
|
|
6356
|
+
* @maxLength 1000000000
|
|
6345
6357
|
*/
|
|
6346
6358
|
output?: string | null;
|
|
6347
6359
|
/**
|
|
@@ -6463,6 +6475,12 @@ interface ResponsesReasoning {
|
|
|
6463
6475
|
interface ResponsesTextFormat extends ResponsesTextFormatFormatOneOf {
|
|
6464
6476
|
/** Structured Outputs configuration options, including a JSON Schema. */
|
|
6465
6477
|
jsonSchema?: JsonSchema;
|
|
6478
|
+
/**
|
|
6479
|
+
* Constrains the verbosity of the model's response. Lower values will result in more concise responses,
|
|
6480
|
+
* while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
|
|
6481
|
+
* @maxLength 100
|
|
6482
|
+
*/
|
|
6483
|
+
verbosity?: string | null;
|
|
6466
6484
|
}
|
|
6467
6485
|
/** @oneof */
|
|
6468
6486
|
interface ResponsesTextFormatFormatOneOf {
|