@wix/auto_sdk_ai-gateway_generators 1.0.124 → 1.0.125

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.
@@ -14370,8 +14370,10 @@ interface GetContentTaskRequest {
14370
14370
  }
14371
14371
  interface FalGetQueueResultRequest {
14372
14372
  /**
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.
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.
14375
14377
  * @maxLength 1000
14376
14378
  */
14377
14379
  modelVendorId?: string;
@@ -14490,6 +14492,11 @@ interface GetContentTaskResponse {
14490
14492
  interface FalGetQueueResultResponse {
14491
14493
  /** Raw FAL queue result JSON body. */
14492
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;
14493
14500
  }
14494
14501
  interface DomainEvent extends DomainEventBodyOneOf {
14495
14502
  createdEvent?: EntityCreatedEvent;