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