@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.
@@ -8323,6 +8323,15 @@ interface ContentGenerationRequestedEvent {
8323
8323
  /** Dynamic request configuration, including dynamic tools and messages. */
8324
8324
  dynamicRequestConfig?: DynamicRequestConfig;
8325
8325
  }
8326
+ /**
8327
+ * The WixAiGatewayAuditor service used to live in this file, along with its request, response and
8328
+ * quota-policy messages. It was replaced by wix.ds.ai.gateway.auditor.v2.WixAiGatewayAuditorV2 and
8329
+ * removed once nothing called it any more.
8330
+ *
8331
+ * UserRequestInfo outlived it. The AI gateway's public API, and around a dozen services outside this
8332
+ * repo, declare their user_request_info field with this exact type, so both the file name and the
8333
+ * message name have to stay as they are - callers compile against them.
8334
+ */
8326
8335
  interface UserRequestInfo {
8327
8336
  /**
8328
8337
  * Interaction id
@@ -12635,7 +12644,11 @@ interface V1Segment {
12635
12644
  interface GenerateAudioRequest extends GenerateAudioRequestAudioRequestOneOf {
12636
12645
  /** OpenAi create speech request */
12637
12646
  openAiCreateSpeechRequest?: CreateSpeechRequest;
12638
- /** ElevenLabs text to speech request */
12647
+ /**
12648
+ * ElevenLabs text to speech request
12649
+ * @deprecated ElevenLabs text to speech request
12650
+ * @targetRemovalDate 2026-07-31
12651
+ */
12639
12652
  elevenlabsTextToSpeechRequest?: TextToSpeechRequest;
12640
12653
  /** Contains additional information for the request. */
12641
12654
  userRequestInfo?: UserRequestInfo;
@@ -12644,7 +12657,11 @@ interface GenerateAudioRequest extends GenerateAudioRequestAudioRequestOneOf {
12644
12657
  interface GenerateAudioRequestAudioRequestOneOf {
12645
12658
  /** OpenAi create speech request */
12646
12659
  openAiCreateSpeechRequest?: CreateSpeechRequest;
12647
- /** ElevenLabs text to speech request */
12660
+ /**
12661
+ * ElevenLabs text to speech request
12662
+ * @deprecated ElevenLabs text to speech request
12663
+ * @targetRemovalDate 2026-07-31
12664
+ */
12648
12665
  elevenlabsTextToSpeechRequest?: TextToSpeechRequest;
12649
12666
  }
12650
12667
  interface CreateSpeechRequest {