@wix/auto_sdk_ai-gateway_generators 1.0.124 → 1.0.126

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.
@@ -903,10 +903,11 @@ declare enum GoogleproxyV1Model {
903
903
  GEMINI_3_1_FLASH_LITE = "GEMINI_3_1_FLASH_LITE",
904
904
  GEMINI_3_5_FLASH = "GEMINI_3_5_FLASH",
905
905
  GEMINI_3_5_PRO_FAST = "GEMINI_3_5_PRO_FAST",
906
- GEMINI_3_5_FLASH_LITE = "GEMINI_3_5_FLASH_LITE"
906
+ GEMINI_3_5_FLASH_LITE = "GEMINI_3_5_FLASH_LITE",
907
+ GEMINI_3_6_FLASH = "GEMINI_3_6_FLASH"
907
908
  }
908
909
  /** @enumType */
909
- type GoogleproxyV1ModelWithLiterals = GoogleproxyV1Model | 'UNKNOWN_MODEL' | 'GEMINI_1_0_PRO' | 'GEMINI_1_0_PRO_VISION' | 'GEMINI_1_5_PRO' | 'GEMINI_1_5_FLASH' | 'GEMINI_2_0_FLASH' | 'GEMINI_2_0_FLASH_LITE' | 'GEMINI_2_5_PRO' | 'GEMINI_2_5_FLASH' | 'GEMINI_2_5_FLASH_LITE' | 'GEMINI_2_5_FLASH_IMAGE' | 'GEMINI_2_5_COMPUTER_USE' | 'GEMINI_3_0_PRO' | 'GEMINI_3_0_PRO_IMAGE' | 'GEMINI_3_0_FLASH' | 'GEMINI_3_1_PRO' | 'GEMINI_3_1_FLASH_IMAGE' | 'GEMINI_3_1_FLASH_LITE' | 'GEMINI_3_5_FLASH' | 'GEMINI_3_5_PRO_FAST' | 'GEMINI_3_5_FLASH_LITE';
910
+ type GoogleproxyV1ModelWithLiterals = GoogleproxyV1Model | 'UNKNOWN_MODEL' | 'GEMINI_1_0_PRO' | 'GEMINI_1_0_PRO_VISION' | 'GEMINI_1_5_PRO' | 'GEMINI_1_5_FLASH' | 'GEMINI_2_0_FLASH' | 'GEMINI_2_0_FLASH_LITE' | 'GEMINI_2_5_PRO' | 'GEMINI_2_5_FLASH' | 'GEMINI_2_5_FLASH_LITE' | 'GEMINI_2_5_FLASH_IMAGE' | 'GEMINI_2_5_COMPUTER_USE' | 'GEMINI_3_0_PRO' | 'GEMINI_3_0_PRO_IMAGE' | 'GEMINI_3_0_FLASH' | 'GEMINI_3_1_PRO' | 'GEMINI_3_1_FLASH_IMAGE' | 'GEMINI_3_1_FLASH_LITE' | 'GEMINI_3_5_FLASH' | 'GEMINI_3_5_PRO_FAST' | 'GEMINI_3_5_FLASH_LITE' | 'GEMINI_3_6_FLASH';
910
911
  interface Content {
911
912
  /**
912
913
  * The role in a conversation associated with the content.
@@ -14367,8 +14368,10 @@ interface GetContentTaskRequest {
14367
14368
  }
14368
14369
  interface FalGetQueueResultRequest {
14369
14370
  /**
14370
- * FAL queue model vendor id (owner/app, e.g. "fal-ai/flux") NOT the full submit model (e.g. "fal-ai/flux/schnell").
14371
- * FAL polls results at /{model_vendor_id}/requests/{request_id}, so the trailing model segment must be dropped here.
14371
+ * FAL queue model id. Pass either the owner/app vendor id ("fal-ai/flux") or the full submit
14372
+ * model ("fal-ai/flux/schnell"). Passing the full model lets the proxy price the poll; the proxy
14373
+ * truncates it to owner/app for the fal results URL (/{owner}/{app}/requests/{request_id}). The
14374
+ * 2-segment form still works but is priced only when it is itself the fal pricing-catalog key.
14372
14375
  * @maxLength 1000
14373
14376
  */
14374
14377
  modelVendorId?: string;
@@ -14487,6 +14490,11 @@ interface GetContentTaskResponse {
14487
14490
  interface FalGetQueueResultResponse {
14488
14491
  /** Raw FAL queue result JSON body. */
14489
14492
  body?: Record<string, any> | null;
14493
+ /**
14494
+ * Cost of the poll in microcents. Set only for Gateway-key requests when fal pricing resolved
14495
+ * (i.e. the caller passed a full model id that matches the fal pricing catalog).
14496
+ */
14497
+ microcentsSpent?: string | null;
14490
14498
  }
14491
14499
  interface DomainEvent extends DomainEventBodyOneOf {
14492
14500
  createdEvent?: EntityCreatedEvent;
@@ -3529,6 +3529,7 @@ var GoogleproxyV1Model = /* @__PURE__ */ ((GoogleproxyV1Model2) => {
3529
3529
  GoogleproxyV1Model2["GEMINI_3_5_FLASH"] = "GEMINI_3_5_FLASH";
3530
3530
  GoogleproxyV1Model2["GEMINI_3_5_PRO_FAST"] = "GEMINI_3_5_PRO_FAST";
3531
3531
  GoogleproxyV1Model2["GEMINI_3_5_FLASH_LITE"] = "GEMINI_3_5_FLASH_LITE";
3532
+ GoogleproxyV1Model2["GEMINI_3_6_FLASH"] = "GEMINI_3_6_FLASH";
3532
3533
  return GoogleproxyV1Model2;
3533
3534
  })(GoogleproxyV1Model || {});
3534
3535
  var ContentRole = /* @__PURE__ */ ((ContentRole2) => {