@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.
@@ -905,10 +905,11 @@ declare enum GoogleproxyV1Model {
905
905
  GEMINI_3_1_FLASH_LITE = "GEMINI_3_1_FLASH_LITE",
906
906
  GEMINI_3_5_FLASH = "GEMINI_3_5_FLASH",
907
907
  GEMINI_3_5_PRO_FAST = "GEMINI_3_5_PRO_FAST",
908
- GEMINI_3_5_FLASH_LITE = "GEMINI_3_5_FLASH_LITE"
908
+ GEMINI_3_5_FLASH_LITE = "GEMINI_3_5_FLASH_LITE",
909
+ GEMINI_3_6_FLASH = "GEMINI_3_6_FLASH"
909
910
  }
910
911
  /** @enumType */
911
- 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';
912
+ 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';
912
913
  interface Content {
913
914
  /**
914
915
  * The role in a conversation associated with the content.
@@ -14369,8 +14370,10 @@ interface GetContentTaskRequest {
14369
14370
  }
14370
14371
  interface FalGetQueueResultRequest {
14371
14372
  /**
14372
- * FAL queue model vendor id (owner/app, e.g. "fal-ai/flux") NOT the full submit model (e.g. "fal-ai/flux/schnell").
14373
- * FAL polls results at /{model_vendor_id}/requests/{request_id}, so the trailing model segment must be dropped here.
14373
+ * FAL queue model id. Pass either the owner/app vendor id ("fal-ai/flux") or the full submit
14374
+ * model ("fal-ai/flux/schnell"). Passing the full model lets the proxy price the poll; the proxy
14375
+ * truncates it to owner/app for the fal results URL (/{owner}/{app}/requests/{request_id}). The
14376
+ * 2-segment form still works but is priced only when it is itself the fal pricing-catalog key.
14374
14377
  * @maxLength 1000
14375
14378
  */
14376
14379
  modelVendorId?: string;
@@ -14489,6 +14492,11 @@ interface GetContentTaskResponse {
14489
14492
  interface FalGetQueueResultResponse {
14490
14493
  /** Raw FAL queue result JSON body. */
14491
14494
  body?: Record<string, any> | null;
14495
+ /**
14496
+ * Cost of the poll in microcents. Set only for Gateway-key requests when fal pricing resolved
14497
+ * (i.e. the caller passed a full model id that matches the fal pricing catalog).
14498
+ */
14499
+ microcentsSpent?: string | null;
14492
14500
  }
14493
14501
  interface DomainEvent extends DomainEventBodyOneOf {
14494
14502
  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) => {