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