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