@wix/auto_sdk_ai-gateway_generators 1.0.128 → 1.0.129
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 +39 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +19 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +39 -6
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +19 -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 +39 -6
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +19 -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 +39 -6
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +19 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.d.ts
CHANGED
|
@@ -8319,6 +8319,15 @@ interface ContentGenerationRequestedEvent {
|
|
|
8319
8319
|
/** Dynamic request configuration, including dynamic tools and messages. */
|
|
8320
8320
|
dynamicRequestConfig?: DynamicRequestConfig;
|
|
8321
8321
|
}
|
|
8322
|
+
/**
|
|
8323
|
+
* The WixAiGatewayAuditor service used to live in this file, along with its request, response and
|
|
8324
|
+
* quota-policy messages. It was replaced by wix.ds.ai.gateway.auditor.v2.WixAiGatewayAuditorV2 and
|
|
8325
|
+
* removed once nothing called it any more.
|
|
8326
|
+
*
|
|
8327
|
+
* UserRequestInfo outlived it. The AI gateway's public API, and around a dozen services outside this
|
|
8328
|
+
* repo, declare their user_request_info field with this exact type, so both the file name and the
|
|
8329
|
+
* message name have to stay as they are - callers compile against them.
|
|
8330
|
+
*/
|
|
8322
8331
|
interface UserRequestInfo {
|
|
8323
8332
|
/**
|
|
8324
8333
|
* Interaction id
|
|
@@ -12631,7 +12640,11 @@ interface V1Segment {
|
|
|
12631
12640
|
interface GenerateAudioRequest extends GenerateAudioRequestAudioRequestOneOf {
|
|
12632
12641
|
/** OpenAi create speech request */
|
|
12633
12642
|
openAiCreateSpeechRequest?: CreateSpeechRequest;
|
|
12634
|
-
/**
|
|
12643
|
+
/**
|
|
12644
|
+
* ElevenLabs text to speech request
|
|
12645
|
+
* @deprecated ElevenLabs text to speech request
|
|
12646
|
+
* @targetRemovalDate 2026-07-31
|
|
12647
|
+
*/
|
|
12635
12648
|
elevenlabsTextToSpeechRequest?: TextToSpeechRequest;
|
|
12636
12649
|
/** Contains additional information for the request. */
|
|
12637
12650
|
userRequestInfo?: UserRequestInfo;
|
|
@@ -12640,7 +12653,11 @@ interface GenerateAudioRequest extends GenerateAudioRequestAudioRequestOneOf {
|
|
|
12640
12653
|
interface GenerateAudioRequestAudioRequestOneOf {
|
|
12641
12654
|
/** OpenAi create speech request */
|
|
12642
12655
|
openAiCreateSpeechRequest?: CreateSpeechRequest;
|
|
12643
|
-
/**
|
|
12656
|
+
/**
|
|
12657
|
+
* ElevenLabs text to speech request
|
|
12658
|
+
* @deprecated ElevenLabs text to speech request
|
|
12659
|
+
* @targetRemovalDate 2026-07-31
|
|
12660
|
+
*/
|
|
12644
12661
|
elevenlabsTextToSpeechRequest?: TextToSpeechRequest;
|
|
12645
12662
|
}
|
|
12646
12663
|
interface CreateSpeechRequest {
|
|
@@ -14969,7 +14986,11 @@ interface GenerateTranscriptionOptionsTranscriptionRequestOneOf {
|
|
|
14969
14986
|
interface GenerateAudioOptions extends GenerateAudioOptionsAudioRequestOneOf {
|
|
14970
14987
|
/** OpenAi create speech request */
|
|
14971
14988
|
openAiCreateSpeechRequest?: CreateSpeechRequest;
|
|
14972
|
-
/**
|
|
14989
|
+
/**
|
|
14990
|
+
* ElevenLabs text to speech request
|
|
14991
|
+
* @deprecated ElevenLabs text to speech request
|
|
14992
|
+
* @targetRemovalDate 2026-07-31
|
|
14993
|
+
*/
|
|
14973
14994
|
elevenlabsTextToSpeechRequest?: TextToSpeechRequest;
|
|
14974
14995
|
/** Contains additional information for the request. */
|
|
14975
14996
|
userRequestInfo?: UserRequestInfo;
|
|
@@ -14978,13 +14999,21 @@ interface GenerateAudioOptions extends GenerateAudioOptionsAudioRequestOneOf {
|
|
|
14978
14999
|
interface GenerateAudioOptionsAudioRequestOneOf {
|
|
14979
15000
|
/** OpenAi create speech request */
|
|
14980
15001
|
openAiCreateSpeechRequest?: CreateSpeechRequest;
|
|
14981
|
-
/**
|
|
15002
|
+
/**
|
|
15003
|
+
* ElevenLabs text to speech request
|
|
15004
|
+
* @deprecated ElevenLabs text to speech request
|
|
15005
|
+
* @targetRemovalDate 2026-07-31
|
|
15006
|
+
*/
|
|
14982
15007
|
elevenlabsTextToSpeechRequest?: TextToSpeechRequest;
|
|
14983
15008
|
}
|
|
14984
15009
|
interface GenerateAudioStreamedOptions extends GenerateAudioStreamedOptionsAudioRequestOneOf {
|
|
14985
15010
|
/** OpenAi create speech request */
|
|
14986
15011
|
openAiCreateSpeechRequest?: CreateSpeechRequest;
|
|
14987
|
-
/**
|
|
15012
|
+
/**
|
|
15013
|
+
* ElevenLabs text to speech request
|
|
15014
|
+
* @deprecated ElevenLabs text to speech request
|
|
15015
|
+
* @targetRemovalDate 2026-07-31
|
|
15016
|
+
*/
|
|
14988
15017
|
elevenlabsTextToSpeechRequest?: TextToSpeechRequest;
|
|
14989
15018
|
/** Contains additional information for the request. */
|
|
14990
15019
|
userRequestInfo?: UserRequestInfo;
|
|
@@ -14993,7 +15022,11 @@ interface GenerateAudioStreamedOptions extends GenerateAudioStreamedOptionsAudio
|
|
|
14993
15022
|
interface GenerateAudioStreamedOptionsAudioRequestOneOf {
|
|
14994
15023
|
/** OpenAi create speech request */
|
|
14995
15024
|
openAiCreateSpeechRequest?: CreateSpeechRequest;
|
|
14996
|
-
/**
|
|
15025
|
+
/**
|
|
15026
|
+
* ElevenLabs text to speech request
|
|
15027
|
+
* @deprecated ElevenLabs text to speech request
|
|
15028
|
+
* @targetRemovalDate 2026-07-31
|
|
15029
|
+
*/
|
|
14997
15030
|
elevenlabsTextToSpeechRequest?: TextToSpeechRequest;
|
|
14998
15031
|
}
|
|
14999
15032
|
interface PublishPromptOptions {
|